From 739029b062fa20ab128c1b357f9c6afa7633f7d1 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 26 Jun 2024 18:13:57 -0400 Subject: [PATCH 01/25] Created lookahead profiler (restored changes from previous branch) --- utils/route_diag/src/main.cpp | 2 +- vpr/src/base/vpr_types.h | 2 + vpr/src/place/timing_place_lookup.cpp | 4 +- vpr/src/route/connection_router.cpp | 16 +- vpr/src/route/connection_router.h | 6 + vpr/src/route/heap_type.cpp | 2 + vpr/src/route/heap_type.h | 2 + vpr/src/route/lookahead_profiler.cpp | 164 ++++++++++ vpr/src/route/lookahead_profiler.h | 35 +++ vpr/src/route/route_common.cpp | 6 +- vpr/src/route/route_common.h | 13 +- vpr/src/route/route_net.tpp | 17 +- vpr/src/route/route_path_manager.cpp | 4 +- vpr/src/route/route_path_manager.h | 2 +- vpr/src/route/route_tree.cpp | 22 +- vpr/src/route/route_tree.h | 5 +- vpr/src/route/router_delay_profiling.cpp | 7 +- vpr/src/route/router_delay_profiling.h | 7 +- vpr/src/route/router_lookahead.cpp | 12 +- vpr/src/route/router_lookahead.h | 6 +- .../route/router_lookahead_compressed_map.cpp | 20 +- .../route/router_lookahead_compressed_map.h | 5 +- .../route/router_lookahead_extended_map.cpp | 13 +- vpr/src/route/router_lookahead_extended_map.h | 2 +- vpr/src/route/router_lookahead_map.cpp | 288 +++++++++++------- vpr/src/route/router_lookahead_map.h | 5 +- vpr/src/route/router_lookahead_map_utils.cpp | 42 +-- vpr/src/route/router_lookahead_map_utils.h | 9 + 28 files changed, 524 insertions(+), 194 deletions(-) create mode 100644 vpr/src/route/lookahead_profiler.cpp create mode 100644 vpr/src/route/lookahead_profiler.h diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index d322890e8ec..adb5b365e2c 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -209,7 +209,7 @@ static void profile_source(const Netlist<>& net_list, RRNodeId(sink_rr_node), router_opts, &delays[sink_x][sink_y], - layer_num); + layer_num, net_list); } if (successfully_routed) { diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 2f22bc2d1d2..666ae7d4a68 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1746,6 +1746,8 @@ struct t_rr_node_route_inf { float acc_cost; float path_cost; float backward_path_cost; + float backward_path_delay; + float backward_path_congestion; public: //Accessors short occ() const { return occ_; } diff --git a/vpr/src/place/timing_place_lookup.cpp b/vpr/src/place/timing_place_lookup.cpp index 43d3b735f5e..f11afe13b4d 100644 --- a/vpr/src/place/timing_place_lookup.cpp +++ b/vpr/src/place/timing_place_lookup.cpp @@ -441,7 +441,7 @@ static void add_delay_to_matrix( } static void generic_compute_matrix_dijkstra_expansion( - RouterDelayProfiler& /*route_profiler*/, + RouterDelayProfiler& route_profiler, vtr::Matrix>& matrix, int layer_num, int source_x, @@ -489,7 +489,7 @@ static void generic_compute_matrix_dijkstra_expansion( RRNodeId source_rr_node = device_ctx.rr_graph.node_lookup().find_node(layer_num, source_x, source_y, SOURCE, driver_ptc); VTR_ASSERT(source_rr_node != RRNodeId::INVALID()); - auto delays = calculate_all_path_delays_from_rr_node(source_rr_node, router_opts, is_flat); + auto delays = calculate_all_path_delays_from_rr_node(source_rr_node, router_opts, is_flat, route_profiler.get_net_list()); bool path_to_all_sinks = true; for (int sink_x = start_x; sink_x <= end_x; sink_x++) { diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 2af58298fa3..4644583ddc6 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -230,7 +230,7 @@ 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(cheapest->path_data, cheapest->cost, cheapest->backward_path_cost, cheapest->backward_path_delay, cheapest->backward_path_congestion, 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; @@ -549,6 +549,8 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& // Costs initialized to current next.cost = std::numeric_limits::infinity(); //Not used directly next.backward_path_cost = current->backward_path_cost; + next.backward_path_delay = current->backward_path_delay; + next.backward_path_congestion = current->backward_path_congestion; // path_data variables are initialized to current values if (rcv_path_manager.is_enabled() && current->path_data) { @@ -594,6 +596,8 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& next_ptr->cost = next.cost; next_ptr->R_upstream = next.R_upstream; next_ptr->backward_path_cost = next.backward_path_cost; + next_ptr->backward_path_delay = next.backward_path_delay; + next_ptr->backward_path_congestion = next.backward_path_congestion; next_ptr->index = to_node; next_ptr->set_prev_edge(from_edge); @@ -653,7 +657,7 @@ float ConnectionRouter::compute_node_cost_using_rcv(const t_conn_cost_para const t_conn_delay_budget* delay_budget = cost_params.delay_budget; // TODO: This function is not tested for is_flat == true VTR_ASSERT(is_flat_ != true); - std::tie(expected_delay, expected_cong) = router_lookahead_.get_expected_delay_and_cong(to_node, target_node, cost_params, R_upstream); + std::tie(expected_delay, expected_cong) = router_lookahead_.get_expected_delay_and_cong(to_node, target_node, cost_params, R_upstream, false); float expected_total_delay_cost; float expected_total_cong_cost; @@ -781,6 +785,8 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(t_heap* to, //Update the backward cost (upstream already included) to->backward_path_cost += (1. - cost_params.criticality) * cong_cost; //Congestion cost to->backward_path_cost += cost_params.criticality * Tdel; //Delay cost + to->backward_path_delay += Tdel; + to->backward_path_congestion += cong_cost; if (cost_params.bend_cost != 0.) { t_rr_type from_type = rr_graph_->node_type(from_node); @@ -829,6 +835,8 @@ void ConnectionRouter::empty_heap_annotating_node_route_inf() { rr_node_route_inf_[tmp->index].path_cost = tmp->cost; rr_node_route_inf_[tmp->index].backward_path_cost = tmp->backward_path_cost; + rr_node_route_inf_[tmp->index].backward_path_delay = tmp->backward_path_delay; + rr_node_route_inf_[tmp->index].backward_path_congestion = tmp->backward_path_congestion; modified_rr_node_inf_.push_back(tmp->index); rcv_path_manager.free_path_struct(tmp->path_data); @@ -892,6 +900,8 @@ void ConnectionRouter::add_route_tree_node_to_heap( const auto& device_ctx = g_vpr_ctx.device(); const RRNodeId inode = rt_node.inode; float backward_path_cost = cost_params.criticality * rt_node.Tdel; + float backward_path_delay = rt_node.Tdel; + float backward_path_congestion = 0.0; float R_upstream = rt_node.R_upstream; /* Don't push to heap if not in bounding box: no-op for serial router, important for parallel router */ @@ -919,7 +929,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( push_back_node(&heap_, rr_node_route_inf_, inode, tot_cost, RREdgeId::INVALID(), - backward_path_cost, R_upstream); + backward_path_cost, backward_path_delay, backward_path_congestion, R_upstream); } else { float expected_total_cost = compute_node_cost_using_rcv(cost_params, inode, target_node, rt_node.Tdel, 0, R_upstream); diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index c5bbdff48be..895340f8167 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -127,6 +127,10 @@ class ConnectionRouter : public ConnectionRouterInterface { // Ensure route budgets have been calculated before enabling this void set_rcv_enabled(bool enable) final; + const RouterLookahead& get_router_lookahead() const { + return router_lookahead_; + } + private: // Mark that data associated with rr_node "inode" has been modified, and // needs to be reset in reset_path_costs. @@ -148,6 +152,8 @@ class ConnectionRouter : public ConnectionRouterInterface { route_inf->prev_edge = cheapest->prev_edge(); route_inf->path_cost = cheapest->cost; route_inf->backward_path_cost = cheapest->backward_path_cost; + route_inf->backward_path_delay = cheapest->backward_path_delay; + route_inf->backward_path_congestion = cheapest->backward_path_congestion; } /** Common logic from timing_driven_route_connection_from_route_tree and diff --git a/vpr/src/route/heap_type.cpp b/vpr/src/route/heap_type.cpp index 3b160d3fb84..77545755e23 100644 --- a/vpr/src/route/heap_type.cpp +++ b/vpr/src/route/heap_type.cpp @@ -26,6 +26,8 @@ HeapStorage::alloc() { temp_ptr->set_next_heap_item(nullptr); temp_ptr->cost = 0.; temp_ptr->backward_path_cost = 0.; + temp_ptr->backward_path_delay = 0.; + temp_ptr->backward_path_congestion = 0.; temp_ptr->R_upstream = 0.; temp_ptr->index = RRNodeId::INVALID(); temp_ptr->path_data = nullptr; diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index 3f4ff7ecb48..0ad042b035a 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -37,6 +37,8 @@ struct t_heap { float cost = 0.; float backward_path_cost = 0.; + float backward_path_delay = 0.; + float backward_path_congestion = 0.; float R_upstream = 0.; RRNodeId index = RRNodeId::INVALID(); diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp new file mode 100644 index 00000000000..419a832c901 --- /dev/null +++ b/vpr/src/route/lookahead_profiler.cpp @@ -0,0 +1,164 @@ +// +// Created by shrevena on 08/06/24. +// + +#include +#include "lookahead_profiler.h" +#include "vtr_error.h" +#include "vtr_log.h" +#include "globals.h" +#include "router_lookahead_map_utils.h" +#include "vpr_utils.h" +#include "re_cluster_util.h" + +LookaheadProfiler lookahead_profiler = LookaheadProfiler(); + +LookaheadProfiler::LookaheadProfiler() { + lookahead_verifier_csv.open("lookahead_verifier_info.csv", std::ios::out); + + if (!lookahead_verifier_csv.is_open()) { + VTR_LOG_ERROR("Could not open lookahead_verifier_info.csv", "error"); + } + + lookahead_verifier_csv + << "iteration no." + << ",source node" + << ",sink node" + << ",sink block name" + << ",sink atom block model" + << ",sink cluster block type" + << ",sink cluster tile height" + << ",sink cluster tile width" + << ",current node" + << ",node type" + << ",node length" + << ",num. nodes from sink" + << ",delta x" + << ",delta y" + << ",actual cost" + << ",actual delay" + << ",actual congestion" + << ",predicted cost" + << ",predicted delay" + << ",predicted congestion" + << ",criticality" + << std::endl; +} + +void LookaheadProfiler::record(const int iteration, + const int target_net_pin_index, + const RRNodeId source_inode, + const RRNodeId sink_inode, + const RRNodeId curr_inode, + const size_t nodes_from_sink, + const t_conn_cost_params& cost_params, + const RouterLookahead& router_lookahead, + const ParentNetId& net_id, + const Netlist<>& net_list) { + auto& device_ctx = g_vpr_ctx.device(); + const auto& rr_graph = device_ctx.rr_graph; + auto& route_ctx = g_vpr_ctx.routing(); + + float total_backward_cost = route_ctx.rr_node_route_inf[sink_inode].backward_path_cost; + float total_backward_delay = route_ctx.rr_node_route_inf[sink_inode].backward_path_delay; + float total_backward_congestion = route_ctx.rr_node_route_inf[sink_inode].backward_path_congestion; + + auto current_node = route_ctx.rr_node_route_inf[curr_inode]; + float current_backward_cost = current_node.backward_path_cost; + float current_backward_delay = current_node.backward_path_delay; + float current_backward_congestion = current_node.backward_path_congestion; + + auto [from_x, from_y] = util::get_adjusted_rr_position(curr_inode); + auto [to_x, to_y] = util::get_adjusted_rr_position(sink_inode); + + int delta_x = to_x - from_x; + int delta_y = to_y - from_y; + + float djikstra_cost = total_backward_cost - current_backward_cost; + float djikstra_delay = total_backward_delay - current_backward_delay; + float djikstra_congestion = total_backward_congestion - current_backward_congestion; + + float lookahead_cost = router_lookahead.get_expected_cost(curr_inode, sink_inode, cost_params, + 0.0); + float lookahead_delay, lookahead_congestion; + std::tie(lookahead_delay, lookahead_congestion) = router_lookahead.get_expected_delay_and_cong(curr_inode, sink_inode, cost_params, 0.0, true); + + std::string block_name = "--"; + std::string atom_block_model = "--"; + std::string cluster_block_type = "--"; + std::string tile_height = "--"; + std::string tile_width = "--"; + + if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { + block_name = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); + + AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(block_name); + atom_block_model = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; + + ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); + + cluster_block_type = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; + + auto tile_type = physical_tile_type(cluster_block_id); + tile_height = std::to_string(tile_type->height); + tile_width = std::to_string(tile_type->width); + } + + auto node_type = rr_graph.node_type(curr_inode); + std::string node_type_str; + std::string node_length; + + switch (node_type) { + case SOURCE: + node_type_str = "SOURCE"; + node_length = "--"; + break; + case SINK: + node_type_str = "SINK"; + node_length = "--"; + break; + case IPIN: + node_type_str = "IPIN"; + node_length = "--"; + break; + case OPIN: + node_type_str = "OPIN"; + node_length = "--"; + break; + case CHANX: + node_type_str = "CHANX"; + node_length = std::to_string(rr_graph.node_length(curr_inode)); + break; + case CHANY: + node_type_str = "CHANY"; + node_length = std::to_string(rr_graph.node_length(curr_inode)); + break; + default: + node_type_str = "--"; + node_length = "--"; + break; + } + + lookahead_verifier_csv << iteration << ","; // iteration no. + lookahead_verifier_csv << source_inode << ","; // source node + lookahead_verifier_csv << sink_inode << ","; // sink node + lookahead_verifier_csv << block_name << ","; // sink block name + lookahead_verifier_csv << atom_block_model << ","; // sink atom block model + lookahead_verifier_csv << cluster_block_type << ","; // sink cluster block type + lookahead_verifier_csv << tile_height << ","; // sink cluster tile height + lookahead_verifier_csv << tile_width << ","; // sink cluster tile width + lookahead_verifier_csv << curr_inode << ","; // current node + lookahead_verifier_csv << node_type_str << ","; // node type + lookahead_verifier_csv << node_length << ","; // node length + lookahead_verifier_csv << nodes_from_sink << ","; // num. nodes from sink + lookahead_verifier_csv << delta_x << ","; // delta x + lookahead_verifier_csv << delta_y << ","; // delta y + lookahead_verifier_csv << djikstra_cost << ","; // actual cost + lookahead_verifier_csv << djikstra_delay << ","; // actual delay + lookahead_verifier_csv << djikstra_congestion << ","; // actual congestion + lookahead_verifier_csv << lookahead_cost << ","; // predicted cost + lookahead_verifier_csv << lookahead_delay << ","; // predicted delay + lookahead_verifier_csv << lookahead_congestion << ","; // predicted congestion + lookahead_verifier_csv << cost_params.criticality; // criticality + lookahead_verifier_csv << std::endl; +} \ No newline at end of file diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h new file mode 100644 index 00000000000..6953efc022d --- /dev/null +++ b/vpr/src/route/lookahead_profiler.h @@ -0,0 +1,35 @@ +// +// Created by shrevena on 08/06/24. +// + +#ifndef VTR_LOOKAHEAD_PROFILER_H +#define VTR_LOOKAHEAD_PROFILER_H + +#include +#include +#include "rr_graph_fwd.h" +#include "connection_router_interface.h" +#include "router_lookahead.h" + +class LookaheadProfiler { + public: + LookaheadProfiler(); + + void record(int iteration, + int target_net_pin_index, + RRNodeId source_inode, + RRNodeId sink_inode, + RRNodeId curr_inode, + size_t nodes_from_sink, + const t_conn_cost_params& cost_params, + const RouterLookahead& router_lookahead, + const ParentNetId& net_id, + const Netlist<>& net_list); + + private: + std::ofstream lookahead_verifier_csv; +}; + +extern LookaheadProfiler lookahead_profiler; + +#endif //VTR_LOOKAHEAD_PROFILER_H \ No newline at end of file diff --git a/vpr/src/route/route_common.cpp b/vpr/src/route/route_common.cpp index 466c1ab8b95..ce26f9f96b2 100644 --- a/vpr/src/route/route_common.cpp +++ b/vpr/src/route/route_common.cpp @@ -286,6 +286,8 @@ void reset_path_costs(const std::vector& visited_rr_nodes) { for (auto node : 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].backward_path_delay = std::numeric_limits::infinity(); + route_ctx.rr_node_route_inf[node].backward_path_congestion = std::numeric_limits::infinity(); route_ctx.rr_node_route_inf[node].prev_edge = RREdgeId::INVALID(); } } @@ -423,6 +425,8 @@ void reset_rr_node_route_structs() { node_inf.acc_cost = 1.0; node_inf.path_cost = std::numeric_limits::infinity(); node_inf.backward_path_cost = std::numeric_limits::infinity(); + node_inf.backward_path_delay = std::numeric_limits::infinity(); + node_inf.backward_path_congestion = std::numeric_limits::infinity(); node_inf.set_occ(0); } } @@ -811,7 +815,7 @@ void reserve_locally_used_opins(HeapInterface* heap, float pres_fac, float acc_f 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.); + 0., 0., 0., 0.); } for (ipin = 0; ipin < num_local_opin; ipin++) { diff --git a/vpr/src/route/route_common.h b/vpr/src/route/route_common.h index a6f18f3af38..7fc1f9f24be 100644 --- a/vpr/src/route/route_common.h +++ b/vpr/src/route/route_common.h @@ -161,6 +161,8 @@ t_heap* prepare_to_add_node_to_heap( float total_cost, RREdgeId prev_edge, float backward_path_cost, + float backward_path_delay, + float backward_path_congestion, float R_upstream) { if (total_cost >= rr_node_route_inf[inode].path_cost) return nullptr; @@ -171,6 +173,8 @@ t_heap* prepare_to_add_node_to_heap( hptr->cost = total_cost; hptr->set_prev_edge(prev_edge); hptr->backward_path_cost = backward_path_cost; + hptr->backward_path_delay = backward_path_delay; + hptr->backward_path_congestion = backward_path_congestion; hptr->R_upstream = R_upstream; return hptr; } @@ -184,11 +188,14 @@ void add_node_to_heap( float total_cost, RREdgeId prev_edge, float backward_path_cost, + float backward_path_delay, + float backward_path_congestion, 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); + prev_edge, backward_path_cost, backward_path_delay, + backward_path_congestion, R_upstream); if (hptr) { heap->add_to_heap(hptr); } @@ -205,11 +212,13 @@ void push_back_node( float total_cost, RREdgeId prev_edge, float backward_path_cost, + float backward_path_delay, + float backward_path_congestion, 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); + backward_path_cost, backward_path_delay, backward_path_congestion, R_upstream); if (hptr) { heap->push_back(hptr); } diff --git a/vpr/src/route/route_net.tpp b/vpr/src/route/route_net.tpp index 45cff71dd37..2c23f20c9f6 100644 --- a/vpr/src/route/route_net.tpp +++ b/vpr/src/route/route_net.tpp @@ -190,7 +190,8 @@ inline NetResultFlags route_net(ConnectionRouter& router, tree, spatial_route_tree_lookup, router_stats, - is_flat); + is_flat, + itry); if (flags.success == false) return flags; @@ -236,7 +237,8 @@ inline NetResultFlags route_net(ConnectionRouter& router, routing_predictor, choking_spots, is_flat, - net_bb); + net_bb, + itry); flags.retry_with_full_bb |= sink_flags.retry_with_full_bb; @@ -296,7 +298,8 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, RouteTree& tree, SpatialRouteTreeLookup& spatial_rt_lookup, RouterStats& router_stats, - bool is_flat) { + bool is_flat, + int itry) { const auto& device_ctx = g_vpr_ctx.device(); auto& route_ctx = g_vpr_ctx.mutable_routing(); auto& m_route_ctx = g_vpr_ctx.mutable_routing(); @@ -352,7 +355,8 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, * points. Therefore, we can set the net pin index of the sink node to * * OPEN (meaning illegal) as it is not meaningful for this sink. */ vtr::optional new_branch, new_sink; - std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, OPEN, ((high_fanout) ? &spatial_rt_lookup : nullptr), is_flat); + std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, OPEN, ((high_fanout) ? &spatial_rt_lookup : nullptr), is_flat, router.get_router_lookahead(), cost_params, itry, net_list, + conn_params.net_id_); VTR_ASSERT_DEBUG(!high_fanout || validate_route_tree_spatial_lookup(tree.root(), spatial_rt_lookup)); @@ -415,7 +419,8 @@ inline NetResultFlags route_sink(ConnectionRouter& router, const RoutingPredictor& routing_predictor, const std::vector>& choking_spots, bool is_flat, - const t_bb& net_bb) { + const t_bb& net_bb, + int itry) { const auto& device_ctx = g_vpr_ctx.device(); auto& route_ctx = g_vpr_ctx.mutable_routing(); @@ -479,7 +484,7 @@ inline NetResultFlags route_sink(ConnectionRouter& router, profiling::sink_criticality_end(cost_params.criticality); vtr::optional new_branch, new_sink; - std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, target_pin, ((high_fanout) ? &spatial_rt_lookup : nullptr), is_flat); + std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, target_pin, ((high_fanout) ? &spatial_rt_lookup : nullptr), is_flat, router.get_router_lookahead(), cost_params, itry, net_list, conn_params.net_id_); VTR_ASSERT_DEBUG(!high_fanout || validate_route_tree_spatial_lookup(tree.root(), spatial_rt_lookup)); diff --git a/vpr/src/route/route_path_manager.cpp b/vpr/src/route/route_path_manager.cpp index 03dec823993..9265f64f975 100644 --- a/vpr/src/route/route_path_manager.cpp +++ b/vpr/src/route/route_path_manager.cpp @@ -39,7 +39,7 @@ void PathManager::mark_node_visited(RRNodeId node) { } } -void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, RoutingContext& route_ctx) { +void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, float backward_path_delay, float backward_path_congestion, RoutingContext& route_ctx) { if (!is_enabled_) return; for (unsigned i = 1; i < path_data->edge.size() - 1; i++) { @@ -48,6 +48,8 @@ void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, f route_ctx.rr_node_route_inf[node_2].prev_edge = edge; route_ctx.rr_node_route_inf[node_2].path_cost = cost; route_ctx.rr_node_route_inf[node_2].backward_path_cost = backward_path_cost; + route_ctx.rr_node_route_inf[node_2].backward_path_delay = backward_path_delay; + route_ctx.rr_node_route_inf[node_2].backward_path_congestion = backward_path_congestion; } } diff --git a/vpr/src/route/route_path_manager.h b/vpr/src/route/route_path_manager.h index 73f0ddae9ef..ec63818c96f 100644 --- a/vpr/src/route/route_path_manager.h +++ b/vpr/src/route/route_path_manager.h @@ -74,7 +74,7 @@ class PathManager { void set_enabled(bool enable); // Insert the partial path data into the main route context traceback - void insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, RoutingContext& route_ctx); + void insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, float backward_path_delay, float backward_path_congestion, RoutingContext& route_ctx); // Dynamically create a t_heap_path structure to be used in the heap // Will return unless RCV is enabled diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index daf21bd1eb8..53754ad7440 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -486,13 +486,13 @@ void RouteTree::print(void) const { * 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(t_heap* hptr, int target_net_pin_index, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id) { /* 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); //Create a new subtree from the target in hptr to existing routing vtr::optional start_of_new_subtree_rt_node, sink_rt_node; - std::tie(start_of_new_subtree_rt_node, sink_rt_node) = add_subtree_from_heap(hptr, target_net_pin_index, is_flat); + std::tie(start_of_new_subtree_rt_node, sink_rt_node) = add_subtree_from_heap(hptr, target_net_pin_index, is_flat, router_lookahead, cost_params, itry, net_list, net_id); if (!start_of_new_subtree_rt_node) return {vtr::nullopt, *sink_rt_node}; @@ -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(t_heap* hptr, int target_net_pin_index, bool is_flat, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id) { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); @@ -549,6 +549,22 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is } new_branch_iswitches.push_back(new_iswitch); + /* + * ROUTER LOOKAHEAD VERIFIER + */ + for (size_t i = 2; i < new_branch_inodes.size(); ++i) { /* Distance one node away is always 0.0 */ + lookahead_profiler.record(itry, + target_net_pin_index, + new_branch_inodes.back(), + new_branch_inodes.front(), + new_branch_inodes[i], + i, + cost_params, + router_lookahead, + net_id, + net_list); + } + /* Build the new tree branch starting from the existing node we found */ RouteTreeNode* last_node = _rr_node_to_rt_node[new_inode]; all_visited.insert(last_node->inode); diff --git a/vpr/src/route/route_tree.h b/vpr/src/route/route_tree.h index 4991d57f301..8278f87ed41 100644 --- a/vpr/src/route/route_tree.h +++ b/vpr/src/route/route_tree.h @@ -87,6 +87,7 @@ #include #include "connection_based_routing_fwd.h" +#include "lookahead_profiler.h" #include "route_tree_fwd.h" #include "vtr_assert.h" #include "spatial_route_tree_lookup.h" @@ -357,7 +358,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(t_heap* hptr, int target_net_pin_index, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id); /** Reload timing values (R_upstream, C_downstream, Tdel). * Can take a RouteTreeNode& to do an incremental update. @@ -491,7 +492,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(t_heap* hptr, int target_net_pin_index, bool is_flat, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id); void add_non_configurable_nodes(RouteTreeNode* rt_node, bool reached_by_non_configurable_edge, diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index d669c5f07b5..eb25e4a8537 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -120,7 +120,7 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, VTR_ASSERT(cheapest.index == sink_node); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, is_flat_); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, is_flat_, router_.get_router_lookahead(), cost_params, -1, net_list_, conn_params.net_id_); //find delay *net_delay = rt_node_of_sink->Tdel; @@ -145,7 +145,8 @@ float RouterDelayProfiler::get_min_delay(int physical_tile_type_idx, int from_la //Returns the shortest path delay from src_node to all RR nodes in the RR graph, or NaN if no path exists vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src_rr_node, const t_router_opts& router_opts, - bool is_flat) { + bool is_flat, + const Netlist<>& net_list) { auto& device_ctx = g_vpr_ctx.device(); auto& route_ctx = g_vpr_ctx.mutable_routing(); @@ -205,7 +206,7 @@ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src //Build the routing tree to get the delay tree = RouteTree(RRNodeId(src_rr_node)); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&shortest_paths[sink_rr_node], OPEN, nullptr, router_opts.flat_routing); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&shortest_paths[sink_rr_node], OPEN, nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, -1, net_list, conn_params.net_id_); VTR_ASSERT(rt_node_of_sink->inode == RRNodeId(sink_rr_node)); diff --git a/vpr/src/route/router_delay_profiling.h b/vpr/src/route/router_delay_profiling.h index 542d4e90de4..bc2f885b12d 100644 --- a/vpr/src/route/router_delay_profiling.h +++ b/vpr/src/route/router_delay_profiling.h @@ -42,6 +42,10 @@ class RouterDelayProfiler { */ float get_min_delay(int physical_tile_type_idx, int from_layer, int to_layer, int dx, int dy) const; + const Netlist<>& get_net_list() { + return net_list_; + } + private: const Netlist<>& net_list_; RouterStats router_stats_; @@ -52,7 +56,8 @@ class RouterDelayProfiler { vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src_rr_node, const t_router_opts& router_opts, - bool is_flat); + bool is_flat, + const Netlist<>& net_list); void alloc_routing_structs(const t_chan_width& chan_width, const t_router_opts& router_opts, diff --git a/vpr/src/route/router_lookahead.cpp b/vpr/src/route/router_lookahead.cpp index 240aeafbd61..bf5b9a7e7f4 100644 --- a/vpr/src/route/router_lookahead.cpp +++ b/vpr/src/route/router_lookahead.cpp @@ -62,12 +62,12 @@ std::unique_ptr make_router_lookahead(const t_det_routing_arch& } float ClassicLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const { - auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); return delay_cost + cong_cost; } -std::pair ClassicLookahead::get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const { +std::pair ClassicLookahead::get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; @@ -96,7 +96,11 @@ std::pair ClassicLookahead::get_expected_delay_and_cong(RRNodeId n + R_upstream * (num_segs_same_dir * same_data.C_load + num_segs_ortho_dir * ortho_data.C_load) + ipin_data.T_linear; - return std::make_pair(params.criticality * Tdel, (1 - params.criticality) * cong_cost); + if (ignore_criticality) { + return std::make_pair(Tdel, cong_cost); + } else { + return std::make_pair(params.criticality * Tdel, (1 - params.criticality) * cong_cost); + } } else if (rr_type == IPIN) { /* Change if you're allowing route-throughs */ return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); @@ -109,7 +113,7 @@ float NoOpLookahead::get_expected_cost(RRNodeId /*current_node*/, RRNodeId /*tar return 0.; } -std::pair NoOpLookahead::get_expected_delay_and_cong(RRNodeId /*node*/, RRNodeId /*target_node*/, const t_conn_cost_params& /*params*/, float /*R_upstream*/) const { +std::pair NoOpLookahead::get_expected_delay_and_cong(RRNodeId, RRNodeId, const t_conn_cost_params&, float, bool /*ignore_criticality*/) const { return std::make_pair(0., 0.); } diff --git a/vpr/src/route/router_lookahead.h b/vpr/src/route/router_lookahead.h index 2a13dd55aa1..e37885ebb91 100644 --- a/vpr/src/route/router_lookahead.h +++ b/vpr/src/route/router_lookahead.h @@ -23,7 +23,7 @@ class RouterLookahead { * @return */ virtual float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; - virtual std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; + virtual std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const = 0; /** * @brief Compute router lookahead (if needed) @@ -123,7 +123,7 @@ const RouterLookahead* get_cached_router_lookahead(const t_det_routing_arch& det class ClassicLookahead : public RouterLookahead { public: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; void compute(const std::vector& /*segment_inf*/) override { } @@ -159,7 +159,7 @@ class ClassicLookahead : public RouterLookahead { class NoOpLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; void compute(const std::vector& /*segment_inf*/) override { } diff --git a/vpr/src/route/router_lookahead_compressed_map.cpp b/vpr/src/route/router_lookahead_compressed_map.cpp index 4c50beb175e..4ac912b4043 100644 --- a/vpr/src/route/router_lookahead_compressed_map.cpp +++ b/vpr/src/route/router_lookahead_compressed_map.cpp @@ -412,7 +412,7 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId if (from_rr_type == CHANX || from_rr_type == CHANY || from_rr_type == SOURCE || from_rr_type == OPIN) { // Get the total cost using the combined delay and congestion costs - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); return delay_cost + cong_cost; } else if (from_rr_type == IPIN) { /* Change if you're allowing route-throughs */ return (device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); @@ -421,10 +421,7 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId } } -std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, - RRNodeId to_node, - const t_conn_cost_params& params, - float /* R_upstream */) const { +std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float, bool ignore_criticality) const { auto& device_ctx = g_vpr_ctx.device(); auto& rr_graph = device_ctx.rr_graph; @@ -458,8 +455,10 @@ std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNo to_layer_num, get_wire_cost_entry_compressed_lookahead); - expected_delay_cost *= params.criticality; - expected_cong_cost *= (1 - params.criticality); + if (!ignore_criticality) { + expected_delay_cost *= params.criticality; + expected_cong_cost *= (1 - params.criticality); + } VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", @@ -500,8 +499,11 @@ std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNo is_flat_) .c_str()) .c_str()); - expected_delay_cost = cost_entry.delay * params.criticality; - expected_cong_cost = cost_entry.congestion * (1 - params.criticality); + + if (!ignore_criticality) { + expected_delay_cost = cost_entry.delay * params.criticality; + expected_cong_cost = cost_entry.congestion * (1 - params.criticality); + } } else if (from_type == IPIN) { /* Change if you're allowing route-throughs */ return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); } else { /* Change this if you want to investigate route-throughs */ diff --git a/vpr/src/route/router_lookahead_compressed_map.h b/vpr/src/route/router_lookahead_compressed_map.h index a111089c826..02c45be6e7c 100644 --- a/vpr/src/route/router_lookahead_compressed_map.h +++ b/vpr/src/route/router_lookahead_compressed_map.h @@ -27,10 +27,7 @@ class CompressedMapLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId from_node, - RRNodeId to_node, - const t_conn_cost_params& params, - float R_upstream) const override; + std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; void compute(const std::vector& segment_inf) override; diff --git a/vpr/src/route/router_lookahead_extended_map.cpp b/vpr/src/route/router_lookahead_extended_map.cpp index d72f5471130..12771de32b5 100644 --- a/vpr/src/route/router_lookahead_extended_map.cpp +++ b/vpr/src/route/router_lookahead_extended_map.cpp @@ -181,7 +181,7 @@ float ExtendedMapLookahead::get_chan_ipin_delays(RRNodeId to_node) const { // // The from_node can be of one of the following types: CHANX, CHANY, SOURCE, OPIN // The to_node is always a SINK -std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float /*R_upstream*/) const { +std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float, bool ignore_criticality) const { if (from_node == to_node) { return std::make_pair(0., 0.); } @@ -237,8 +237,13 @@ std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNode float site_pin_delay = this->get_chan_ipin_delays(to_node); expected_delay += site_pin_delay; - float expected_delay_cost = params.criticality * expected_delay; - float expected_cong_cost = (1.0 - params.criticality) * expected_congestion; + float expected_delay_cost = expected_delay; + float expected_cong_cost = expected_congestion; + + if (!ignore_criticality) { + expected_delay_cost *= params.criticality; + expected_cong_cost *= 1.0 - params.criticality; + } float expected_cost = expected_delay_cost + expected_cong_cost; @@ -593,7 +598,7 @@ float ExtendedMapLookahead::get_expected_cost( float delay_cost, cong_cost; // Get the total cost using the combined delay and congestion costs - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); return delay_cost + cong_cost; } else if (rr_type == IPIN) { /* Change if you're allowing route-throughs */ // This is to return only the cost between the IPIN and SINK. No need to diff --git a/vpr/src/route/router_lookahead_extended_map.h b/vpr/src/route/router_lookahead_extended_map.h index 589ea06e6a4..bd901b874b8 100644 --- a/vpr/src/route/router_lookahead_extended_map.h +++ b/vpr/src/route/router_lookahead_extended_map.h @@ -69,7 +69,7 @@ class ExtendedMapLookahead : public RouterLookahead { /** * @brief Returns a pair of expected delay and congestion */ - std::pair get_expected_delay_and_cong(RRNodeId inode, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong(RRNodeId inode, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; /** * @brief Computes the extended lookahead map diff --git a/vpr/src/route/router_lookahead_map.cpp b/vpr/src/route/router_lookahead_map.cpp index 9e7061b4dc6..fadb2ad2498 100644 --- a/vpr/src/route/router_lookahead_map.cpp +++ b/vpr/src/route/router_lookahead_map.cpp @@ -176,11 +176,12 @@ float MapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target_nod VTR_ASSERT_SAFE(rr_graph.node_type(target_node) == t_rr_type::SINK); if (is_flat_) { - return get_expected_cost_flat_router(current_node, target_node, params, R_upstream); + auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); + return delay_cost + cong_cost; } else { if (from_rr_type == CHANX || from_rr_type == CHANY || from_rr_type == SOURCE || from_rr_type == OPIN) { // Get the total cost using the combined delay and congestion costs - auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); return delay_cost + cong_cost; } else if (from_rr_type == IPIN) { /* Change if you're allowing route-throughs */ return (device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); @@ -190,7 +191,100 @@ float MapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target_nod } } -float MapLookahead::get_expected_cost_flat_router(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const { +std::pair MapLookahead::get_expected_delay_and_cong_default(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float, bool ignore_criticality) const { + auto& device_ctx = g_vpr_ctx.device(); + auto& rr_graph = device_ctx.rr_graph; + + int from_layer_num = rr_graph.node_layer(from_node); + int to_layer_num = rr_graph.node_layer(to_node); + auto [delta_x, delta_y] = util::get_xy_deltas(from_node, to_node); + delta_x = abs(delta_x); + delta_y = abs(delta_y); + + float expected_delay_cost = std::numeric_limits::infinity(); + float expected_cong_cost = std::numeric_limits::infinity(); + + e_rr_type from_type = rr_graph.node_type(from_node); + if (from_type == SOURCE || from_type == OPIN) { + //When estimating costs from a SOURCE/OPIN we look-up to find which wire types (and the + //cost to reach them) in src_opin_delays. Once we know what wire types are + //reachable, we query the f_wire_cost_map (i.e. the wire lookahead) to get the final + //delay to reach the sink. + + t_physical_tile_type_ptr from_tile_type = device_ctx.grid.get_physical_type({rr_graph.node_xlow(from_node), + rr_graph.node_ylow(from_node), + from_layer_num}); + + auto from_tile_index = std::distance(&device_ctx.physical_tile_types[0], from_tile_type); + + auto from_ptc = rr_graph.node_ptc_num(from_node); + + std::tie(expected_delay_cost, expected_cong_cost) = util::get_cost_from_src_opin(src_opin_delays[from_layer_num][from_tile_index][from_ptc][to_layer_num], + delta_x, + delta_y, + to_layer_num, + get_wire_cost_entry); + + if (!ignore_criticality) { + expected_delay_cost *= params.criticality; + expected_cong_cost *= (1 - params.criticality); + } + + VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), + vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", + rr_node_arch_name(from_node, is_flat_).c_str(), + describe_rr_node(rr_graph, + device_ctx.grid, + device_ctx.rr_indexed_data, + from_node, + is_flat_) + .c_str()) + .c_str()); + + } else if (from_type == CHANX || from_type == CHANY) { + //When estimating costs from a wire, we directly look-up the result in the wire lookahead (f_wire_cost_map) + + auto from_cost_index = rr_graph.node_cost_index(from_node); + int from_seg_index = device_ctx.rr_indexed_data[from_cost_index].seg_index; + + VTR_ASSERT(from_seg_index >= 0); + + /* now get the expected cost from our lookahead map */ + util::Cost_Entry cost_entry = get_wire_cost_entry(from_type, + from_seg_index, + from_layer_num, + delta_x, + delta_y, + to_layer_num); + + expected_delay_cost = cost_entry.delay; + expected_cong_cost = cost_entry.congestion; + + VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), + vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", + rr_node_arch_name(from_node, is_flat_).c_str(), + describe_rr_node(rr_graph, + device_ctx.grid, + device_ctx.rr_indexed_data, + from_node, + is_flat_) + .c_str()) + .c_str()); + + if (!ignore_criticality) { + expected_delay_cost = cost_entry.delay * params.criticality; + expected_cong_cost = cost_entry.congestion * (1 - params.criticality); + } + } else if (from_type == IPIN) { /* Change if you're allowing route-throughs */ + return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); + } else { /* Change this if you want to investigate route-throughs */ + return std::make_pair(0., 0.); + } + + return std::make_pair(expected_delay_cost, expected_cong_cost); +} + +std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; @@ -215,22 +309,34 @@ float MapLookahead::get_expected_cost_flat_router(RRNodeId current_node, RRNodeI // We have not checked the multi-layer FPGA for flat routing VTR_ASSERT(rr_graph.node_layer(current_node) == rr_graph.node_layer(target_node)); if (from_rr_type == CHANX || from_rr_type == CHANY) { - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong_default(current_node, target_node, params, R_upstream, ignore_criticality); // delay_cost and cong_cost only represent the cost to get to the root-level pins. The below offsets are used to represent the intra-cluster cost // of getting to a sink - delay_offset_cost = params.criticality * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; - cong_offset_cost = (1. - params.criticality) * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; + delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; + cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - return delay_cost + cong_cost + delay_offset_cost + cong_offset_cost; + if (!ignore_criticality) { + delay_offset_cost *= params.criticality; + cong_offset_cost *= (1. - params.criticality); + } + + return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; } else if (from_rr_type == OPIN) { if (is_inter_cluster_node(rr_graph, current_node)) { // Similar to CHANX and CHANY - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong_default(current_node, target_node, params, R_upstream, ignore_criticality); + + delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; + cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - delay_offset_cost = params.criticality * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; - cong_offset_cost = (1. - params.criticality) * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - return delay_cost + cong_cost + delay_offset_cost + cong_offset_cost; + if (!ignore_criticality) { + delay_offset_cost *= params.criticality; + cong_offset_cost *= (1. - params.criticality); + } + + return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; + ; } else { if (node_in_same_physical_tile(current_node, target_node)) { delay_offset_cost = 0.; @@ -241,12 +347,23 @@ float MapLookahead::get_expected_cost_flat_router(RRNodeId current_node, RRNodeI // There isn't any intra-cluster path to connect the current OPIN to the SINK, thus it has to outside. // The best estimation we have now, it the minimum intra-cluster delay to the sink. However, this cost is incomplete, // since it does not consider the cost of going outside of the cluster and, then, returning to it. - delay_cost = params.criticality * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; - cong_cost = (1. - params.criticality) * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - return delay_cost + cong_cost; + delay_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; + cong_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; + + if (!ignore_criticality) { + delay_cost *= params.criticality; + cong_cost *= (1. - params.criticality); + } + + return {delay_cost, cong_cost}; } else { - delay_cost = params.criticality * pin_delay_itr->second.delay; - cong_cost = (1. - params.criticality) * pin_delay_itr->second.congestion; + delay_cost = pin_delay_itr->second.delay; + cong_cost = pin_delay_itr->second.congestion; + + if (!ignore_criticality) { + delay_cost *= params.criticality; + cong_cost *= (1. - params.criticality); + } } } else { // Since we don't know which type of wires are accessible from an OPIN inside the cluster, we use @@ -255,13 +372,21 @@ float MapLookahead::get_expected_cost_flat_router(RRNodeId current_node, RRNodeI auto [delta_x, delta_y] = util::get_xy_deltas(current_node, target_node); delta_x = abs(delta_x); delta_y = abs(delta_y); - delay_cost = params.criticality * chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].delay; - cong_cost = (1. - params.criticality) * chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].congestion; + delay_cost = chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].delay; + cong_cost = chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].congestion; + + delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; + cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; + + if (!ignore_criticality) { + delay_cost *= params.criticality; + cong_cost *= (1. - params.criticality); - delay_offset_cost = params.criticality * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; - cong_offset_cost = (1. - params.criticality) * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; + delay_offset_cost *= params.criticality; + cong_offset_cost *= (1. - params.criticality); + } } - return delay_cost + cong_cost + delay_offset_cost + cong_offset_cost; + return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; } } else if (from_rr_type == IPIN) { // we assume that route-through is not enabled. @@ -272,10 +397,15 @@ float MapLookahead::get_expected_cost_flat_router(RRNodeId current_node, RRNodeI delay_cost = std::numeric_limits::max() / 1e12; cong_cost = std::numeric_limits::max() / 1e12; } else { - delay_cost = params.criticality * pin_delay_itr->second.delay; - cong_cost = (1. - params.criticality) * pin_delay_itr->second.congestion; + delay_cost = pin_delay_itr->second.delay; + cong_cost = pin_delay_itr->second.congestion; + + if (!ignore_criticality) { + delay_cost *= params.criticality; + cong_cost *= (1. - params.criticality); + } } - return delay_cost + cong_cost; + return {delay_cost, cong_cost}; } else if (from_rr_type == SOURCE) { if (node_in_same_physical_tile(current_node, target_node)) { delay_cost = 0.; @@ -286,107 +416,35 @@ float MapLookahead::get_expected_cost_flat_router(RRNodeId current_node, RRNodeI auto [delta_x, delta_y] = util::get_xy_deltas(current_node, target_node); delta_x = abs(delta_x); delta_y = abs(delta_y); - delay_cost = params.criticality * chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].delay; - cong_cost = (1. - params.criticality) * chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].congestion; + delay_cost = chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].delay; + cong_cost = chann_distance_based_min_cost[rr_graph.node_layer(current_node)][to_layer_num][delta_x][delta_y].congestion; + + delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; + cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; + + if (!ignore_criticality) { + delay_cost *= params.criticality; + cong_cost *= (1. - params.criticality); - delay_offset_cost = params.criticality * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; - cong_offset_cost = (1. - params.criticality) * tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; + delay_offset_cost *= params.criticality; + cong_offset_cost *= (1. - params.criticality); + } } - return delay_cost + cong_cost + delay_offset_cost + cong_offset_cost; + return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; } else { VTR_ASSERT(from_rr_type == SINK); - return (0.); + return {0., 0.}; } } /******** Function Definitions ********/ /* queries the lookahead_map (should have been computed prior to routing) to get the expected cost * from the specified source to the specified target */ -std::pair MapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float /*R_upstream*/) const { - auto& device_ctx = g_vpr_ctx.device(); - auto& rr_graph = device_ctx.rr_graph; - - int from_layer_num = rr_graph.node_layer(from_node); - int to_layer_num = rr_graph.node_layer(to_node); - auto [delta_x, delta_y] = util::get_xy_deltas(from_node, to_node); - delta_x = abs(delta_x); - delta_y = abs(delta_y); - - float expected_delay_cost = std::numeric_limits::infinity(); - float expected_cong_cost = std::numeric_limits::infinity(); - - e_rr_type from_type = rr_graph.node_type(from_node); - if (from_type == SOURCE || from_type == OPIN) { - //When estimating costs from a SOURCE/OPIN we look-up to find which wire types (and the - //cost to reach them) in src_opin_delays. Once we know what wire types are - //reachable, we query the f_wire_cost_map (i.e. the wire lookahead) to get the final - //delay to reach the sink. - - t_physical_tile_type_ptr from_tile_type = device_ctx.grid.get_physical_type({rr_graph.node_xlow(from_node), - rr_graph.node_ylow(from_node), - from_layer_num}); - - auto from_tile_index = std::distance(&device_ctx.physical_tile_types[0], from_tile_type); - - auto from_ptc = rr_graph.node_ptc_num(from_node); - - std::tie(expected_delay_cost, expected_cong_cost) = util::get_cost_from_src_opin(src_opin_delays[from_layer_num][from_tile_index][from_ptc][to_layer_num], - delta_x, - delta_y, - to_layer_num, - get_wire_cost_entry); - - expected_delay_cost *= params.criticality; - expected_cong_cost *= (1 - params.criticality); - - VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), - vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", - rr_node_arch_name(from_node, is_flat_).c_str(), - describe_rr_node(rr_graph, - device_ctx.grid, - device_ctx.rr_indexed_data, - from_node, - is_flat_) - .c_str()) - .c_str()); - - } else if (from_type == CHANX || from_type == CHANY) { - //When estimating costs from a wire, we directly look-up the result in the wire lookahead (f_wire_cost_map) - - auto from_cost_index = rr_graph.node_cost_index(from_node); - int from_seg_index = device_ctx.rr_indexed_data[from_cost_index].seg_index; - - VTR_ASSERT(from_seg_index >= 0); - - /* now get the expected cost from our lookahead map */ - util::Cost_Entry cost_entry = get_wire_cost_entry(from_type, - from_seg_index, - from_layer_num, - delta_x, - delta_y, - to_layer_num); - expected_delay_cost = cost_entry.delay; - expected_cong_cost = cost_entry.congestion; - - VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), - vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", - rr_node_arch_name(from_node, is_flat_).c_str(), - describe_rr_node(rr_graph, - device_ctx.grid, - device_ctx.rr_indexed_data, - from_node, - is_flat_) - .c_str()) - .c_str()); - expected_delay_cost = cost_entry.delay * params.criticality; - expected_cong_cost = cost_entry.congestion * (1 - params.criticality); - } else if (from_type == IPIN) { /* Change if you're allowing route-throughs */ - return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); - } else { /* Change this if you want to investigate route-throughs */ - return std::make_pair(0., 0.); - } - - return std::make_pair(expected_delay_cost, expected_cong_cost); +std::pair MapLookahead::get_expected_delay_and_cong(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const { + if (is_flat_) + return get_expected_delay_and_cong_flat_router(current_node, target_node, params, R_upstream, ignore_criticality); + else + return get_expected_delay_and_cong_default(current_node, target_node, params, R_upstream, ignore_criticality); } void MapLookahead::compute(const std::vector& segment_inf) { diff --git a/vpr/src/route/router_lookahead_map.h b/vpr/src/route/router_lookahead_map.h index de48d99e37b..355fed6bb8b 100644 --- a/vpr/src/route/router_lookahead_map.h +++ b/vpr/src/route/router_lookahead_map.h @@ -11,7 +11,8 @@ class MapLookahead : public RouterLookahead { explicit MapLookahead(const t_det_routing_arch& det_routing_arch, bool is_flat); private: - float get_expected_cost_flat_router(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const; + std::pair get_expected_delay_and_cong_default(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const; + std::pair get_expected_delay_and_cong_flat_router(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const; //Look-up table from SOURCE/OPIN to CHANX/CHANY of various types util::t_src_opin_delays src_opin_delays; // Lookup table from a tile pins to the primitive classes inside that tile @@ -27,7 +28,7 @@ class MapLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; void compute(const std::vector& segment_inf) override; void compute_intra_tile() override; diff --git a/vpr/src/route/router_lookahead_map_utils.cpp b/vpr/src/route/router_lookahead_map_utils.cpp index c48ee90e073..5e1297b9c51 100644 --- a/vpr/src/route/router_lookahead_map_utils.cpp +++ b/vpr/src/route/router_lookahead_map_utils.cpp @@ -58,16 +58,6 @@ static void expand_dijkstra_neighbours(util::PQ_Entry parent_entry, vtr::vector& node_expanded, std::priority_queue& pq); - -/** - * @brief Computes the adjusted position of an RR graph node. - * This function does not modify the position of the given node. - * It only returns the computed adjusted position. - * @param rr The ID of the node whose adjusted position is desired. - * @return The adjusted position (x, y). - */ -static std::pair get_adjusted_rr_position(RRNodeId rr); - /** * @brief Computes the adjusted location of a pin to match the position of * the channel it can reach based on which side of the block it is at. @@ -679,6 +669,22 @@ std::pair get_xy_deltas(RRNodeId from_node, RRNodeId to_node) { return {delta_x, delta_y}; } +std::pair get_adjusted_rr_position(const RRNodeId rr) { + auto& device_ctx = g_vpr_ctx.device(); + const auto& rr_graph = device_ctx.rr_graph; + + e_rr_type rr_type = rr_graph.node_type(rr); + + if (is_chan(rr_type)) { + return get_adjusted_rr_wire_position(rr); + } else if (is_pin(rr_type)) { + return get_adjusted_rr_pin_position(rr); + } else { + VTR_ASSERT_SAFE(is_src_sink(rr_type)); + return get_adjusted_rr_src_sink_position(rr); + } +} + t_routing_cost_map get_routing_cost_map(int longest_seg_length, int from_layer_num, const e_rr_type& chan_type, @@ -1410,22 +1416,6 @@ static void expand_dijkstra_neighbours(util::PQ_Entry parent_entry, } } -static std::pair get_adjusted_rr_position(const RRNodeId rr) { - auto& device_ctx = g_vpr_ctx.device(); - const auto& rr_graph = device_ctx.rr_graph; - - e_rr_type rr_type = rr_graph.node_type(rr); - - if (is_chan(rr_type)) { - return get_adjusted_rr_wire_position(rr); - } else if (is_pin(rr_type)) { - return get_adjusted_rr_pin_position(rr); - } else { - VTR_ASSERT_SAFE(is_src_sink(rr_type)); - return get_adjusted_rr_src_sink_position(rr); - } -} - static std::pair get_adjusted_rr_pin_position(const RRNodeId rr) { /* * VPR uses a co-ordinate system where wires above and to the right of a block diff --git a/vpr/src/route/router_lookahead_map_utils.h b/vpr/src/route/router_lookahead_map_utils.h index 217bd0d2206..4765a0b6b44 100644 --- a/vpr/src/route/router_lookahead_map_utils.h +++ b/vpr/src/route/router_lookahead_map_utils.h @@ -337,6 +337,15 @@ RRNodeId get_start_node(int layer, int start_x, int start_y, int target_x, int t */ std::pair get_xy_deltas(RRNodeId from_node, RRNodeId to_node); +/** + * @brief Computes the adjusted position of an RR graph node. + * This function does not modify the position of the given node. + * It only returns the computed adjusted position. + * @param rr The ID of the node whose adjusted position is desired. + * @return The adjusted position (x, y). + */ +std::pair get_adjusted_rr_position(RRNodeId rr); + t_routing_cost_map get_routing_cost_map(int longest_seg_length, int from_layer_num, const e_rr_type& chan_type, From aa5570bef686e7765ce65fc46c711a8613c91634 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 26 Jun 2024 18:59:04 -0400 Subject: [PATCH 02/25] LookaheadProfiler now saves sink node info for efficiency --- parse_lookahead_data.py | 1089 ++++++++++++++++++++++++++ utils/route_diag/src/main.cpp | 4 +- vpr/src/route/lookahead_profiler.cpp | 42 +- vpr/src/route/lookahead_profiler.h | 4 + vpr/src/route/route_tree.cpp | 24 +- vpr/test/test_connection_router.cpp | 2 +- 6 files changed, 1138 insertions(+), 27 deletions(-) create mode 100644 parse_lookahead_data.py diff --git a/parse_lookahead_data.py b/parse_lookahead_data.py new file mode 100644 index 00000000000..7cb4aed554e --- /dev/null +++ b/parse_lookahead_data.py @@ -0,0 +1,1089 @@ +import os +import shutil +import sys +import pandas as pd +from sklearn.metrics import mean_squared_error +import matplotlib.pyplot as plt +import distinctipy as dp +from colour import Color +from enum import Enum +import seaborn as sns +import argparse +from pathlib import Path +from multiprocessing import Process, Lock + +max_additional_threads: int +graph_types: list +components: list +absolute_output: bool +signed_output: bool +csv_data: bool +first_it_output: bool +all_it_output: bool +no_replace: bool +should_print: bool +percent_error_threshold: float +exclusions = {} + +column_names = [ + "iteration no.", + "source node", + "sink node", + "sink block name", + "sink atom block model", + "sink cluster block type", + "sink cluster tile height", + "sink cluster tile width", + "current node", + "node type", + "node length", + "num. nodes from sink", + "delta x", + "delta y", + "actual cost", + "actual delay", + "actual congestion", + "predicted cost", + "predicted delay", + "predicted congestion", + "criticality", + "cost error", + "cost absolute error", + "cost % error", + "delay error", + "delay absolute error", + "delay % error", + "congestion error", + "congestion absolute error", + "congestion % error", + "test name" +] + +processes = [] +lock = Lock() + + +def check_valid_component(comp: str): + if not (comp == "cost" or comp == "delay" or comp == "congestion"): + raise Exception("ComponentType") + + +def check_valid_column(column: str): + if column not in column_names: + raise Exception("ColumnName") + + +def check_valid_df(df: pd.DataFrame): + if df.columns.to_list() != column_names: + raise Exception("IncompleteDataFrame") + + +def make_dir(directory: str, clean: bool): + if len(processes) != 0: + lock.acquire() + + if os.path.exists(directory): + if clean: + shutil.rmtree(directory) + else: + if len(processes) != 0: + lock.release() + + return + + os.makedirs(directory) + + if len(processes) != 0: + lock.release() + + +def column_file_name(column_name: str) -> str: + file_name = "" + + if len(column_name.split()) > 2: + if column_name == "sink block name": + file_name = "block_name" + elif column_name == "sink atom block model": + file_name = "atom_model" + elif column_name == "sink cluster block type": + file_name = "cluster_type" + elif column_name == "sink cluster tile height": + file_name = "tile_height" + elif column_name == "sink cluster tile width": + file_name = "tile_width" + elif column_name == "num. nodes from sink": + file_name = "node_distance" + else: + for char in column_name: + if not char.isalnum() and char != " ": + continue + + if char == " ": + char = "_" + + file_name += char + + return file_name + + +def custom_sort(column: list) -> list: + try: + list(map(int, column)) + except ValueError: + new_column = [value for value in column if value != "--"] + + try: + new_column = list(map(int, new_column)) + except ValueError: + return sorted(column) + + return ["--"] + list(map(str, sorted(new_column))) + + return sorted(column) + + +def start_process(proc: Process): + while len(processes) == max_additional_threads: + for p in processes: + if not p.is_alive(): + processes.remove(p) + break + + processes.append(proc) + assert len(processes) <= max_additional_threads + + proc.start() + + +class ScatterPlotType(Enum): + PREDICTION = 0 + ERROR = 1 + + +class Graphs: + def __init__(self, df: pd.DataFrame, results_folder: str, test_name: str): + self.__df = df.copy() + self.__df.insert(len(self.__df.columns), "color", "#0000ff") + + self.__df_first_it = self.__df[self.__df["iteration no."].isin([1])][:] + + self.__directory = "./lookahead_verifier_output/" + results_folder + + for directory in self.__sub_dirs: + make_dir(directory, False) + + self.__test_name = test_name + + __df: pd.DataFrame + __df_first_it: pd.DataFrame + __df_ra: pd.DataFrame + __directory = "./lookahead_verifier_output/unspecified" + __test_name = "" + + __sub_dirs = [ + __directory + "/actual_vs_prediction", + __directory + "/actual_vs_error", + __directory + "/bar_absolute_error", + __directory + "/bar_error", + __directory + "/heatmap_absolute_error", + __directory + "/heatmap_error", + __directory + "/proportion_under_threshold", + __directory + "/routing_attempt_rate" + ] + + __standard_scatter_columns = [ + "iteration no.", + "sink atom block model", + "sink cluster block type", + "node type", + "node length", + "test name", + ] + __standard_bar_columns = [ + "num. nodes from sink", + "sink atom block model", + "sink cluster block type", + "node type", + "node length", + "test name", + ] + + __barh_types = ["sink block name", "sink atom block model", "sink cluster block type", "node type", "test name"] + + __sink_block_attributes = ["sink atom block model", "sink cluster block type", "sink cluster tile height", + "test name"] + __sinks_by_attribute = {} + + def make_scatter_plot( + self, comp: str, plot_type: ScatterPlotType, legend_column: str, first_it_only: bool + ): + if (not first_it_output and first_it_only) or (not all_it_output and not first_it_only): + return + + check_valid_component(comp) + check_valid_column(legend_column) + + title, curr_dir = "", "" + if plot_type == ScatterPlotType.PREDICTION: + title = "Actual vs Predicted " + comp + " for " + curr_dir = self.__directory + "/actual_vs_prediction/" + comp + elif plot_type == ScatterPlotType.ERROR: + title = "Actual " + comp + " vs Error for " + curr_dir = self.__directory + "/actual_vs_error/" + comp + + title = title.title() + title += self.__test_name + + if first_it_only: + title += " (first iteration)" + file_name = "_first_it" + curr_df = self.__df_first_it + curr_dir += "/first_it" + else: + title += " (all iterations)" + file_name = "_all_it" + curr_df = self.__df + curr_dir += "/all_it" + + file_name = "color_" + column_file_name(legend_column) + "_" + comp + file_name + ".png" + + if no_replace and os.path.exists(curr_dir + "/" + file_name): + return + + make_dir(curr_dir, False) + + num_colors = self.__df[legend_column].nunique() + 1 + if legend_column == "iteration no.": + green = Color("green") + colors_c = list(green.range_to(Color("red"), num_colors)) + colors = [color.hex_l for color in colors_c] + else: + colors_rgb = dp.get_colors(num_colors) + colors = [] + for color in colors_rgb: + color = tuple(map(round, tuple(255 * i for i in color))) + colors.append("#{:02x}{:02x}{:02x}".format(color[0], color[1], color[2])) + + value_map = {} + + i = 0 + for name in curr_df[legend_column].unique(): + value_map[name] = i + i += 1 + + for row in curr_df.index: + curr_df.at[row, "color"] = colors[ + value_map[(curr_df.at[row, legend_column])] % len(colors) + ] + + fig, ax = plt.subplots() + for elem in custom_sort(list(curr_df[legend_column].unique())): + section = curr_df[curr_df[legend_column].isin([elem])][:] + section = section.reset_index(drop=True) + + if plot_type == ScatterPlotType.PREDICTION: + y_data = list(section.loc[:, f"predicted {comp}"]) + else: + y_data = list(section.loc[:, f"{comp} error"]) + + ax.scatter( + x=list(section.loc[:, f"actual {comp}"]), + y=y_data, + color=section.at[0, "color"], + label=elem, + edgecolors="none", + s=40, + ) + + ax.legend(title=legend_column, loc="upper left", bbox_to_anchor=(1.04, 1)) + ax.grid(True) + plt.xlabel(f"actual {comp}") + plt.title(title) + + if plot_type == ScatterPlotType.PREDICTION: + ax.plot(curr_df[f"actual {comp}"], curr_df[f"actual {comp}"], color="black") + plt.ylabel(f"predicted {comp}") + elif plot_type == ScatterPlotType.ERROR: + ax.plot(curr_df[f"actual {comp}"], [0.0] * len(curr_df), color="black") + plt.ylabel(f"{comp} error") + + if len(exclusions) > 0: + excl_msg = "Exclusions: " + for key, val in exclusions.items(): + for item in val: + excl_msg += key + " " + item[0] + " " + item[1] + ", " + + excl_msg = excl_msg[0:-2] + + plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") + + plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + plt.close() + + if should_print: + print("Created ", curr_dir + "/" + file_name, sep="") + + def make_standard_scatter_plots(self, test_name_plot: bool): + scatter_types = [ScatterPlotType.PREDICTION, ScatterPlotType.ERROR] + + if test_name_plot: + legend_columns = self.__standard_scatter_columns + else: + legend_columns = self.__standard_scatter_columns[0:-1] + + bool_opts = [True, False] + + for comp in components: + for plot_type in scatter_types: + for col in legend_columns: + for first_it in bool_opts: + if first_it and col == "iteration no.": + continue + + if max_additional_threads == 0: + self.make_scatter_plot(comp, plot_type, col, first_it) + else: + proc = Process( + target=self.make_scatter_plot, args=(comp, plot_type, col, first_it) + ) + start_process(proc) + + def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolute: bool): + if ( + (not absolute_output and use_absolute) + or (not signed_output and not use_absolute) + or (not first_it_output and first_it_only) + or (not all_it_output and not first_it_only) + ): + return + + check_valid_component(comp) + check_valid_column(column) + + title = "Average " + comp + + if use_absolute: + title += " Absolute" + curr_dir = self.__directory + "/bar_absolute_error/" + comp + y_label = "average absolute error" + else: + curr_dir = self.__directory + "/bar_error/" + comp + y_label = "average error" + + title += " Error by " + column + " for " + title = title.title() + title += self.__test_name + + if first_it_only: + title += " (first iteration)" + file_name = "_first_it" + curr_df = self.__df_first_it + curr_dir += "/first_it" + else: + title += " (all iterations)" + file_name = "_all_it" + curr_df = self.__df + curr_dir += "/all_it" + + file_name = "by_" + column_file_name(column) + "_" + comp + file_name + ".png" + + if no_replace and os.path.exists(curr_dir + "/" + file_name): + return + + make_dir(curr_dir, False) + + avg_error = {} + + for elem in custom_sort(list(curr_df[column].unique())): + rows = curr_df[column].isin([elem]) + + if use_absolute: + error_by_elem = curr_df[rows][f"{comp} absolute error"] + else: + error_by_elem = curr_df[rows][f"{comp} error"] + + avg_error[elem] = error_by_elem.mean() + + avg_error_df = pd.DataFrame({"col": avg_error}) + + if column in self.__barh_types: + avg_error_df.plot.barh(title=title, xlabel=y_label, ylabel=column, legend=False) + else: + avg_error_df.plot.bar(title=title, xlabel=column, ylabel=y_label, legend=False) + + if len(exclusions) > 0: + excl_msg = "Exclusions: " + for key, val in exclusions.items(): + for item in val: + excl_msg += key + " " + item[0] + " " + item[1] + ", " + + excl_msg = excl_msg[0:-2] + + plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") + + plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + plt.close() + + if should_print: + print("Created ", curr_dir + "/" + file_name, sep="") + + def make_standard_bar_graphs(self, test_name_plot: bool): + if test_name_plot: + columns = self.__standard_bar_columns + else: + columns = self.__standard_bar_columns[0:-1] + + bool_opts = [True, False] + + for comp in components: + for col in columns: + for use_abs in bool_opts: + for first_it in bool_opts: + if max_additional_threads == 0: + self.make_bar_graph(comp, col, use_abs, first_it) + else: + proc = Process( + target=self.make_bar_graph, args=(comp, col, use_abs, first_it) + ) + start_process(proc) + + def make_heatmap( + self, comp: str, x_column: str, y_column: str, first_it_only: bool, use_absolute: bool + ): + if ( + (not absolute_output and use_absolute) + or (not signed_output and not use_absolute) + or (not first_it_output and first_it_only) + or (not all_it_output and not first_it_only) + ): + return + + check_valid_component(comp) + check_valid_column(x_column) + check_valid_column(y_column) + + title = "Average " + comp + + if use_absolute: + title += " Absolute" + curr_dir = self.__directory + "/heatmap_absolute_error/" + comp + scale_column = f"{comp} absolute error" + else: + curr_dir = self.__directory + "/heatmap_error/" + comp + scale_column = f"{comp} error" + + title += " Error Heatmap for " + + title = title.title() + title += self.__test_name + + if first_it_only: + title += " (first iteration)" + file_name = "_first_it" + curr_df = self.__df_first_it + curr_dir += "/first_it" + else: + title += " (all iterations)" + file_name = "_all_it" + curr_df = self.__df + curr_dir += "/all_it" + + file_name = ( + column_file_name(x_column) + + "_and_" + + column_file_name(y_column) + + "_" + + comp + + file_name + + ".png" + ) + + if no_replace and os.path.exists(curr_dir + "/" + file_name): + return + + make_dir(curr_dir, False) + + df_avgs = pd.DataFrame(columns=[x_column, y_column, scale_column]) + + for i in custom_sort(list(curr_df[x_column].unique())): + section = curr_df[curr_df[x_column].isin([i])][:] + + for j in custom_sort(list(curr_df[y_column].unique())): + subsection = section[section[y_column].isin([j])][:] + + if subsection.empty: + continue + + new_row = { + x_column: [i], + y_column: [j], + scale_column: [subsection[scale_column].mean()], + } + df_avgs = pd.concat([df_avgs, pd.DataFrame(new_row)], ignore_index=True) + + df_avgs = df_avgs.reset_index(drop=True) + df_avgs = df_avgs.pivot(index=y_column, columns=x_column, values=scale_column) + df_avgs = df_avgs.reindex(index=df_avgs.index[::-1]) + + if use_absolute: + ax = sns.heatmap(df_avgs, cmap="rocket_r", vmin=0.0) + else: + ax = sns.heatmap(df_avgs, cmap="rocket_r") + + if len(exclusions) > 0: + excl_msg = "Exclusions: " + for key, val in exclusions.items(): + for item in val: + excl_msg += key + " " + item[0] + " " + item[1] + ", " + + excl_msg = excl_msg[0:-2] + + plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") + + ax.set_title(title, y=1.08) + plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + plt.close() + + if should_print: + print("Created ", curr_dir + "/" + file_name, sep="") + + def make_standard_heatmaps(self): + bool_opts = [True, False] + + for comp in components: + for first_it in bool_opts: + for use_abs in bool_opts: + if max_additional_threads == 0: + self.make_heatmap( + comp, + "sink cluster tile width", + "sink cluster tile height", + first_it, + use_abs, + ) + self.make_heatmap(comp, "delta x", "delta y", first_it, use_abs) + else: + proc = Process( + target=self.make_heatmap, + args=( + comp, + "sink cluster tile width", + "sink cluster tile height", + first_it, + use_abs, + ), + ) + start_process(proc) + + proc = Process( + target=self.make_heatmap, + args=(comp, "delta x", "delta y", first_it, use_abs), + ) + start_process(proc) + + def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: bool): + if (not first_it_output and first_it_only) or (not all_it_output and not first_it_only): + return + + check_valid_component(comp) + check_valid_column(column) + + title = f"Num. Mispredicts Under {percent_error_threshold:.1f}% {comp} Error" + + if weighted: + title += ", Weighted by % Error," + + title += " for " + title = title.title() + title += self.__test_name + + curr_dir = self.__directory + "/proportion_under_threshold/" + comp + + if first_it_only: + title += " (first iteration)" + file_name = "_first_it" + curr_df = self.__df_first_it + curr_dir += "/first_it" + else: + title += " (all iterations)" + file_name = "_all_it" + curr_df = self.__df + curr_dir += "/all_it" + + file_name = "by_" + column_file_name(column) + "_" + comp + file_name + + if weighted: + file_name += "_weighted" + curr_dir += "/weighted" + else: + curr_dir += "/unweighted" + + file_name += ".png" + + if no_replace and os.path.exists(curr_dir + "/" + file_name): + return + + make_dir(curr_dir, False) + + curr_df = curr_df[curr_df[f"{comp} % error"] < percent_error_threshold] + + num_colors = self.__df[column].nunique() + 1 + colors_rgb = dp.get_colors(num_colors) + colors = [] + for color in colors_rgb: + color = tuple(map(round, tuple(255 * i for i in color))) + colors.append("#{:02x}{:02x}{:02x}".format(color[0], color[1], color[2])) + + proportion = {} + + for elem in custom_sort(list(curr_df[column].unique())): + section = curr_df[curr_df[column].isin([elem])][:] + + proportion[elem] = len(section) + + if weighted: + proportion[elem] *= abs(section[f"{comp} % error"].mean()) + + pie_df = pd.DataFrame.from_dict(proportion, orient="index", columns=[" "]) + + pie_df.plot.pie(y=" ", labeldistance=None, colors=colors) + + if len(exclusions) > 0: + excl_msg = "Exclusions: " + for key, val in exclusions.items(): + for item in val: + excl_msg += key + " " + item[0] + " " + item[1] + ", " + + excl_msg = excl_msg[0:-2] + + plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") + + plt.title(title, fontsize=8) + plt.legend(loc="upper left", bbox_to_anchor=(1.08, 1), title=column) + + plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + plt.close() + + if should_print: + print("Created ", curr_dir + "/" + file_name, sep='') + + def make_standard_pie_charts(self, test_name_plot: bool): + if test_name_plot: + columns = self.__standard_bar_columns + else: + columns = self.__standard_bar_columns[0:-1] + + bool_opts = [True, False] + + for comp in components: + for col in columns: + for first_it in bool_opts: + for weighted in bool_opts: + if max_additional_threads == 0: + self.make_pie_chart(comp, col, first_it, weighted) + else: + proc = Process( + target=self.make_pie_chart, args=(comp, col, first_it, weighted) + ) + start_process(proc) + + def make_standard_plots(self, test_name_plot: bool): + if "pie" in graph_types: + self.make_standard_pie_charts(test_name_plot) + + if "heatmap" in graph_types: + self.make_standard_heatmaps() + + if "bar" in graph_types: + self.make_standard_bar_graphs(test_name_plot) + + if "scatter" in graph_types: + self.make_standard_scatter_plots(test_name_plot) + + +def print_and_write(eggs, directory: str): + if should_print: + print(eggs, sep="") + + orig_out = sys.stdout + stats_file = open(directory + "/lookahead_stats_summary.txt", "a") + sys.stdout = stats_file + + print(eggs, sep="") + + sys.stdout = orig_out + + +def print_stats(df: pd.DataFrame, comp: str, directory: str): + check_valid_component(comp) + + print_and_write("\n#### BACKWARDS PATH " + comp.upper() + " ####", directory) + print_and_write("Mean error: " + str(df[f"{comp} error"].mean()), directory) + print_and_write("Mean absolute error: " + str(df[f"{comp} absolute error"].mean()), directory) + print_and_write("Median error: " + str(df[f"{comp} error"].median()), directory) + print_and_write("Highest error: " + str(df[f"{comp} error"].max()), directory) + print_and_write("Lowest error: " + str(df[f"{comp} error"].min()), directory) + print_and_write( + "Mean squared error: " + + str(mean_squared_error(df[f"actual {comp}"], df[f"predicted {comp}"])), + directory, + ) + + +def print_df_info(df: pd.DataFrame, directory: str): + print_and_write(df, directory) + + for comp in components: + print_stats(df, comp, directory) + + +def record_df_info(df: pd.DataFrame, directory: str): + check_valid_df(df) + + df_first_iteration = df[df["iteration no."].isin([1])][:] + + print_and_write( + "\nFIRST ITERATION RESULTS ----------------------------------------------------------------------\n", + directory, + ) + + print_df_info(df_first_iteration, directory) + + print_and_write( + "\nALL ITERATIONS RESULTS -----------------------------------------------------------------------\n", + directory, + ) + + print_df_info(df, directory) + + print_and_write( + "\n----------------------------------------------------------------------------------------------\n", + directory, + ) + + def make_csv(df_out: pd.DataFrame, file_name: str) -> None: + df_out.to_csv(file_name, index=False) + + if csv_data and (not os.path.exists(directory + "/data.csv") or not no_replace): + if max_additional_threads == 0: + df.to_csv(directory + "/data.csv", index=False) + else: + proc = Process( + target=make_csv, args=(df, directory + "/data.csv") + ) + start_process(proc) + + if should_print: + print("Created ", directory + "/data.csv", sep="") + + +def create_error_columns(df: pd.DataFrame): + df["cost error"] = df["predicted cost"] - df["actual cost"] + df["cost absolute error"] = abs(df["cost error"]) + df["cost % error"] = 100.0 * ((df["predicted cost"] / df["actual cost"]) - 1.0) + + df["delay error"] = df["predicted delay"] - df["actual delay"] + df["delay absolute error"] = abs(df["delay error"]) + df["delay % error"] = 100.0 * ((df["predicted delay"] / df["actual delay"]) - 1.0) + + df["congestion error"] = df["predicted congestion"] - df["actual congestion"] + df["congestion absolute error"] = abs(df["congestion error"]) + df["congestion % error"] = 100.0 * ( + (df["predicted congestion"] / df["actual congestion"]) - 1.0 + ) + + df.fillna(0.0, inplace=True) + + +def main(): + description = ( + "Parses data from lookahead_verifier_info.csv file(s) generated when running VPR on this branch. " + + "Create one or more csv files with, in the first column, the circuit/test name, and in the second " + + "column, the corresponding path to its lookahead info csv file. Give it a unique name, and pass " + + "it in as csv_files_list." + ) + parser = argparse.ArgumentParser(prog="ParseLookaheadData", description=description, epilog="") + + parser.add_argument( + "csv_files_list", + help="the text file which contains the csv files that will be parsed", + nargs="+", + ) + parser.add_argument( + "-j", type=int, default=1, help="number of processes to use", metavar="NUM_PROC" + ) + parser.add_argument( + "-g", + "--graph-types", + type=str, + default="", + metavar="GRAPH_TYPE", + nargs="+", + help="create graphs of this type (bar, scatter, heatmap, pie, all)", + choices=["bar", "scatter", "heatmap", "pie", "all"], + ) + parser.add_argument( + "-c", + "--components", + type=str, + default="", + metavar="COMPONENT", + nargs="+", + help="produce results investigating this backwards-path component (cost, delay, congestion, " + "all)", + choices=["cost", "delay", "congestion", "all"], + ) + parser.add_argument( + "--absolute", action="store_true", help="create graphs using absolute error" + ) + parser.add_argument( + "--signed", action="store_true", help="create graphs graphs using signed error" + ) + parser.add_argument( + "--first-it", action="store_true", help="produce results using data from first iteration" + ) + parser.add_argument( + "--all-it", action="store_true", help="produce results using data from all iterations" + ) + parser.add_argument("--csv-data", action="store_true", help="create csv file with all data") + parser.add_argument( + "--all", + action="store_true", + help="create all graphs, regardless of other options", + ) + parser.add_argument("--exclude", type=str, default="", metavar="EXCLUSION", nargs="+", + help="exclude cells that meet a given condition, in the form \"column_name [comparison " + "operator] value\"") + parser.add_argument( + "--collect", + type=str, + default="", + metavar="FOLDER_NAME", + nargs=1, + help="instead of producing results from individual input csv files, collect data from all input" + "files, and produce results for this collection (note: FOLDER_NAME should not be a path)", + ) + parser.add_argument( + "--threshold", + type=float, + default=-16.7, + metavar="THRESHOLD", + nargs=1, + help="the percent threshold to the be upper limit for the error of the data used to create " + "pie graphs", + ) + parser.add_argument( + "--replace", + action="store_true", + help="overwrite existing csv files and images if encountered", + ) + parser.add_argument( + "--dir-app", type=str, + default="", + metavar="FOLDER_SUFFIX", + nargs=1, help="append output results folder name (ignored when using --collect)" + ) + parser.add_argument( + "--print", + action="store_true", + help="print summaries and file creation messages to terminal", + ) + + args = parser.parse_args() + + global max_additional_threads + max_additional_threads = args.j - 1 + + global graph_types + global components + global absolute_output + global signed_output + global first_it_output + global all_it_output + + if args.all: + graph_types = ["bar", "scatter", "heatmap", "pie"] + components = ["cost", "delay", "congestion"] + absolute_output = True + signed_output = True + first_it_output = True + all_it_output = True + else: + graph_types = args.graph_types + if "all" in graph_types: + graph_types = ["bar", "scatter", "heatmap", "pie"] + + if len(graph_types) == 0: + print( + "Warning: no graphs will be produced. Use -g to select graph types (bar, scatter, heatmap, pie, all).") + + components = args.components + if "all" in components: + components = ["cost", "delay", "congestion"] + + if len(components) == 0: + print("Warning: no graphs will be produced. Use -c to select components (cost, delay, congestion, all).") + + absolute_output = args.absolute + signed_output = args.signed + + if not absolute_output and not signed_output: + print("Warning: no graphs will be produced. Use --signed and/or --absolute.") + + first_it_output = args.first_it + all_it_output = args.all_it + + if not first_it_output and not all_it_output: + print("Warning: no graphs will be produced. Use --first_it and/or --all_it.") + + global csv_data + csv_data = args.csv_data + + global percent_error_threshold + percent_error_threshold = args.threshold + + global no_replace + no_replace = not args.replace + + global should_print + should_print = args.print + + global exclusions + + global exclusions + for excl in args.exclude: + operators = ["==", "!=", ">=", "<=", ">", "<"] + key, val, op = "", "", "" + for op_check in operators: + try: + key, val = excl.split(op_check) + op = op_check + break + except ValueError: + continue + + key, val = key.strip(), val.strip() + + if len(key) == 0 or len(val) == 0 or key not in column_names: + print("Invalid entry in --exclusions:", excl) + exit() + + if key not in exclusions: + exclusions[key] = [] + + try: + int(val) + exclusions[key] += [(op, val)] + except ValueError: + exclusions[key] += [(op, "\"" + val + "\"")] + + main_dir = "./lookahead_verifier_output" + make_dir(main_dir, False) + + df_complete = pd.DataFrame(columns=column_names) + + csv_files_list = args.csv_files_list + for file_list in csv_files_list: + output_folder = Path(file_list).stem + if len(args.dir_app) > 0: + output_folder += f"{args.dir_app[0]}" + + df_files = pd.read_csv(file_list, header=None) + tests = list(df_files.itertuples(index=False, name=None)) + + if len(tests) < 1: + continue + + df_global = pd.DataFrame(columns=column_names) + + for test_name, file_path in tests: + if not os.path.isfile(file_path): + print("ERROR:", file_path, "could not be found") + continue + + if should_print: + print("Reading data at " + file_path) + + results_folder = f"{output_folder}/{test_name}" + results_folder_path = main_dir + "/" + results_folder + make_dir(results_folder_path, False) + + df = pd.read_csv(file_path) + df = df.reset_index(drop=True) + df = df.drop(columns=["cost error", + "cost absolute error", + "cost % error", + "delay error", + "delay absolute error", + "delay % error", + "congestion error", + "congestion absolute error", + "congestion % error", + "test name"], errors="ignore") + + for key, val in exclusions.items(): + for item in val: + ldict = {} + code_line = f"df = df.drop(index=df[df[\"{key}\"] {item[0]} {item[1]}].index.values.tolist())" + exec(code_line, locals(), ldict) + df = ldict["df"] + df = df.reset_index(drop=True) + + create_error_columns(df) + df.insert(len(df.columns), "test name", test_name) + + df_global = pd.concat([df_global, df]) + if args.collect != "": + continue + + print_and_write("Test: " + test_name, results_folder_path) + record_df_info(df, results_folder_path) + + curr_plots = Graphs(df, f"{results_folder}/plots", test_name) + curr_plots.make_standard_plots(False) + + if should_print: + print( + "\n----------------------------------------------------------------------------------------------" + ) + + if len(tests) == 1: + continue + + results_folder = f"{output_folder}/__all__" + results_folder_path = main_dir + "/" + results_folder + make_dir(results_folder_path, False) + + df_global = df_global.reset_index(drop=True) + if args.collect != "": + df_complete = pd.concat([df_complete, df_global]) + continue + + print_and_write("Global results:\n", results_folder_path) + record_df_info(df_global, results_folder_path) + + global_plots = Graphs(df_global, f"{results_folder}/plots", f"All Tests ({output_folder})") + global_plots.make_standard_plots(True) + + if args.collect == "": + return + + results_folder = args.collect[0] + results_folder_path = main_dir + "/" + results_folder + if len(args.dir_app) > 0: + results_folder_path += f"{args.dir_app[0]}" + make_dir(results_folder_path, False) + + df_complete = df_complete.reset_index(drop=True) + + record_df_info(df_complete, results_folder_path) + + global_plots = Graphs(df_complete, f"{results_folder}/plots", "All Tests") + global_plots.make_standard_plots(True) + + for p in processes: + p.join() + + +if __name__ == "__main__": + main() diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index adb5b365e2c..8bc99bc614f 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -130,7 +130,7 @@ static void do_one_route(const Netlist<>& net_list, VTR_ASSERT(cheapest.index == sink_node); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, router_opts.flat_routing); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, -1, net_list, conn_params.net_id_); //find delay float net_delay = rt_node_of_sink.value().Tdel; @@ -209,7 +209,7 @@ static void profile_source(const Netlist<>& net_list, RRNodeId(sink_rr_node), router_opts, &delays[sink_x][sink_y], - layer_num, net_list); + layer_num); } if (successfully_routed) { diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 419a832c901..d7cb90a6dd2 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -89,19 +89,35 @@ void LookaheadProfiler::record(const int iteration, std::string tile_height = "--"; std::string tile_width = "--"; - if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { - block_name = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); - - AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(block_name); - atom_block_model = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; - - ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); - - cluster_block_type = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; - - auto tile_type = physical_tile_type(cluster_block_id); - tile_height = std::to_string(tile_type->height); - tile_width = std::to_string(tile_type->width); + if (atom_block_names.find(sink_inode) != atom_block_names.end()) { + VTR_ASSERT_SAFE(atom_block_models.find(sink_inode) != atom_block_models.end()); + VTR_ASSERT_SAFE(cluster_block_types.find(sink_inode) != cluster_block_types.end()); + VTR_ASSERT_SAFE(tile_dimensions.find(sink_inode) != tile_dimensions.end()); + + block_name = atom_block_names[sink_inode]; + atom_block_model = atom_block_models[sink_inode]; + cluster_block_type = cluster_block_types[sink_inode]; + std::tie(tile_width, tile_height) = tile_dimensions[sink_inode]; + } else { + if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { + block_name = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); + + AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(block_name); + atom_block_model = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; + + ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); + + cluster_block_type = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; + + auto tile_type = physical_tile_type(cluster_block_id); + tile_height = std::to_string(tile_type->height); + tile_width = std::to_string(tile_type->width); + } + + atom_block_names[sink_inode] = block_name; + atom_block_models[sink_inode] = atom_block_model; + cluster_block_types[sink_inode] = cluster_block_type; + tile_dimensions[sink_inode] = {tile_width, tile_height}; } auto node_type = rr_graph.node_type(curr_inode); diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index 6953efc022d..2e079db8eb0 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -28,6 +28,10 @@ class LookaheadProfiler { private: std::ofstream lookahead_verifier_csv; + std::unordered_map atom_block_names; + std::unordered_map atom_block_models; + std::unordered_map cluster_block_types; + std::unordered_map> tile_dimensions; }; extern LookaheadProfiler lookahead_profiler; diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index 53754ad7440..24caf098034 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -552,17 +552,19 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is /* * ROUTER LOOKAHEAD VERIFIER */ - for (size_t i = 2; i < new_branch_inodes.size(); ++i) { /* Distance one node away is always 0.0 */ - lookahead_profiler.record(itry, - target_net_pin_index, - new_branch_inodes.back(), - new_branch_inodes.front(), - new_branch_inodes[i], - i, - cost_params, - router_lookahead, - net_id, - net_list); + if (itry >= 1) { + for (size_t i = 2; i < new_branch_inodes.size(); ++i) { /* Distance one node away is always 0.0 */ + lookahead_profiler.record(itry, + target_net_pin_index, + new_branch_inodes.back(), + new_branch_inodes.front(), + new_branch_inodes[i], + i, + cost_params, + router_lookahead, + net_id, + net_list); + } } /* Build the new tree branch starting from the existing node we found */ diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index 1b0c236a29a..3530861ba52 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -86,7 +86,7 @@ static float do_one_route(RRNodeId source_node, // Get the delay vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, router_opts.flat_routing); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, -1, net_list, conn_params.net_id_); delay = rt_node_of_sink.value().Tdel; } From d406c577f45cd0db3c84ba87b4e520ce7630a626 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Mon, 12 Aug 2024 14:21:46 -0400 Subject: [PATCH 03/25] Refactor --- vpr/src/base/vpr_context.h | 3 + vpr/src/route/connection_router.cpp | 3 +- vpr/src/route/lookahead_profiler.cpp | 188 ++++----- vpr/src/route/lookahead_profiler.h | 13 +- vpr/src/route/route_tree.cpp | 23 +- vpr/src/route/router_lookahead.cpp | 18 +- vpr/src/route/router_lookahead.h | 7 +- .../route/router_lookahead_compressed_map.cpp | 16 +- .../route/router_lookahead_compressed_map.h | 2 +- .../route/router_lookahead_extended_map.cpp | 16 +- vpr/src/route/router_lookahead_extended_map.h | 2 +- vpr/src/route/router_lookahead_map.cpp | 398 ++++++++---------- vpr/src/route/router_lookahead_map.h | 8 +- 13 files changed, 287 insertions(+), 410 deletions(-) diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index 376a5c6e01e..62d566f3837 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -37,6 +37,7 @@ #ifndef NO_SERVER #include "gateio.h" +# include "lookahead_profiler.h" #include "taskresolver.h" class SetupHoldTimingInfo; @@ -496,6 +497,8 @@ struct RoutingContext : public Context { * @brief User specified routing constraints */ UserRouteConstraints constraints; + + LookaheadProfiler lookahead_profiler; }; /** diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 7978bb0106b..07e6539557e 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -660,7 +660,8 @@ float ConnectionRouter::compute_node_cost_using_rcv(const t_conn_cost_para const t_conn_delay_budget* delay_budget = cost_params.delay_budget; // TODO: This function is not tested for is_flat == true VTR_ASSERT(is_flat_ != true); - std::tie(expected_delay, expected_cong) = router_lookahead_.get_expected_delay_and_cong(to_node, target_node, cost_params, R_upstream, false); + std::tie(expected_delay, expected_cong) = router_lookahead_.get_expected_delay_and_cong(to_node, target_node, cost_params, R_upstream); + router_lookahead_.scale_delay_and_cong_by_criticality(expected_delay, expected_cong, cost_params); float expected_total_delay_cost; float expected_total_cong_cost; diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index d7cb90a6dd2..a172ed10438 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -11,8 +11,6 @@ #include "vpr_utils.h" #include "re_cluster_util.h" -LookaheadProfiler lookahead_profiler = LookaheadProfiler(); - LookaheadProfiler::LookaheadProfiler() { lookahead_verifier_csv.open("lookahead_verifier_info.csv", std::ios::out); @@ -45,136 +43,104 @@ LookaheadProfiler::LookaheadProfiler() { << std::endl; } -void LookaheadProfiler::record(const int iteration, - const int target_net_pin_index, - const RRNodeId source_inode, - const RRNodeId sink_inode, - const RRNodeId curr_inode, - const size_t nodes_from_sink, +void LookaheadProfiler::record(int iteration, + int target_net_pin_index, const t_conn_cost_params& cost_params, const RouterLookahead& router_lookahead, const ParentNetId& net_id, - const Netlist<>& net_list) { + const Netlist<>& net_list, + std::vector branch_inodes) { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); - float total_backward_cost = route_ctx.rr_node_route_inf[sink_inode].backward_path_cost; - float total_backward_delay = route_ctx.rr_node_route_inf[sink_inode].backward_path_delay; - float total_backward_congestion = route_ctx.rr_node_route_inf[sink_inode].backward_path_congestion; + if (iteration < 1) + return; - auto current_node = route_ctx.rr_node_route_inf[curr_inode]; - float current_backward_cost = current_node.backward_path_cost; - float current_backward_delay = current_node.backward_path_delay; - float current_backward_congestion = current_node.backward_path_congestion; + for (size_t i = 2; i < branch_inodes.size(); ++i) { /* Distance one node away is always 0.0 (IPIN->SINK) */ + RRNodeId source_inode = branch_inodes.back(); + RRNodeId sink_inode = branch_inodes.front(); + RRNodeId curr_inode = branch_inodes[i]; - auto [from_x, from_y] = util::get_adjusted_rr_position(curr_inode); - auto [to_x, to_y] = util::get_adjusted_rr_position(sink_inode); + float total_backward_cost = route_ctx.rr_node_route_inf[sink_inode].backward_path_cost; + float total_backward_delay = route_ctx.rr_node_route_inf[sink_inode].backward_path_delay; + float total_backward_congestion = route_ctx.rr_node_route_inf[sink_inode].backward_path_congestion; - int delta_x = to_x - from_x; - int delta_y = to_y - from_y; + auto current_node = route_ctx.rr_node_route_inf[curr_inode]; + float current_backward_cost = current_node.backward_path_cost; + float current_backward_delay = current_node.backward_path_delay; + float current_backward_congestion = current_node.backward_path_congestion; - float djikstra_cost = total_backward_cost - current_backward_cost; - float djikstra_delay = total_backward_delay - current_backward_delay; - float djikstra_congestion = total_backward_congestion - current_backward_congestion; + auto [from_x, from_y] = util::get_adjusted_rr_position(curr_inode); + auto [to_x, to_y] = util::get_adjusted_rr_position(sink_inode); - float lookahead_cost = router_lookahead.get_expected_cost(curr_inode, sink_inode, cost_params, - 0.0); - float lookahead_delay, lookahead_congestion; - std::tie(lookahead_delay, lookahead_congestion) = router_lookahead.get_expected_delay_and_cong(curr_inode, sink_inode, cost_params, 0.0, true); + int delta_x = to_x - from_x; + int delta_y = to_y - from_y; - std::string block_name = "--"; - std::string atom_block_model = "--"; - std::string cluster_block_type = "--"; - std::string tile_height = "--"; - std::string tile_width = "--"; + float djikstra_cost = total_backward_cost - current_backward_cost; + float djikstra_delay = total_backward_delay - current_backward_delay; + float djikstra_congestion = total_backward_congestion - current_backward_congestion; - if (atom_block_names.find(sink_inode) != atom_block_names.end()) { - VTR_ASSERT_SAFE(atom_block_models.find(sink_inode) != atom_block_models.end()); - VTR_ASSERT_SAFE(cluster_block_types.find(sink_inode) != cluster_block_types.end()); - VTR_ASSERT_SAFE(tile_dimensions.find(sink_inode) != tile_dimensions.end()); + float lookahead_cost = router_lookahead.get_expected_cost(curr_inode, sink_inode, cost_params, 0.0); + auto [lookahead_delay, lookahead_congestion] = router_lookahead.get_expected_delay_and_cong(curr_inode, sink_inode, cost_params, 0.0); - block_name = atom_block_names[sink_inode]; - atom_block_model = atom_block_models[sink_inode]; - cluster_block_type = cluster_block_types[sink_inode]; - std::tie(tile_width, tile_height) = tile_dimensions[sink_inode]; - } else { - if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { - block_name = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); + if (atom_block_names.find(sink_inode) == atom_block_names.end()) { + if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { + atom_block_names[sink_inode] = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); - AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(block_name); - atom_block_model = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; + AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(atom_block_names[sink_inode]); + atom_block_models[sink_inode] = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; - ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); + ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); - cluster_block_type = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; + cluster_block_types[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; - auto tile_type = physical_tile_type(cluster_block_id); - tile_height = std::to_string(tile_type->height); - tile_width = std::to_string(tile_type->width); + auto tile_type = physical_tile_type(cluster_block_id); + tile_dimensions[sink_inode] = std::pair(std::to_string(tile_type->width), std::to_string(tile_type->height)); + } else { + atom_block_names[sink_inode] = "--"; + atom_block_models[sink_inode] = "--"; + cluster_block_types[sink_inode] = "--"; + tile_dimensions[sink_inode] = {"--", "--"}; + } } - atom_block_names[sink_inode] = block_name; - atom_block_models[sink_inode] = atom_block_model; - cluster_block_types[sink_inode] = cluster_block_type; - tile_dimensions[sink_inode] = {tile_width, tile_height}; - } + VTR_ASSERT_SAFE(atom_block_names.find(sink_inode) != atom_block_names.end()); + VTR_ASSERT_SAFE(atom_block_models.find(sink_inode) != atom_block_models.end()); + VTR_ASSERT_SAFE(cluster_block_types.find(sink_inode) != cluster_block_types.end()); + VTR_ASSERT_SAFE(tile_dimensions.find(sink_inode) != tile_dimensions.end()); - auto node_type = rr_graph.node_type(curr_inode); - std::string node_type_str; - std::string node_length; - - switch (node_type) { - case SOURCE: - node_type_str = "SOURCE"; - node_length = "--"; - break; - case SINK: - node_type_str = "SINK"; - node_length = "--"; - break; - case IPIN: - node_type_str = "IPIN"; - node_length = "--"; - break; - case OPIN: - node_type_str = "OPIN"; - node_length = "--"; - break; - case CHANX: - node_type_str = "CHANX"; - node_length = std::to_string(rr_graph.node_length(curr_inode)); - break; - case CHANY: - node_type_str = "CHANY"; - node_length = std::to_string(rr_graph.node_length(curr_inode)); - break; - default: - node_type_str = "--"; - node_length = "--"; - break; + std::string block_name = atom_block_names[sink_inode]; + std::string atom_block_model = atom_block_models[sink_inode]; + std::string cluster_block_type = cluster_block_types[sink_inode]; + auto [tile_width, tile_height] = tile_dimensions[sink_inode]; + + std::string node_type_str = rr_graph.node_type_string(curr_inode); + std::string node_length = (node_type_str == "CHANX" || node_type_str == "CHANX") + ? std::to_string(rr_graph.node_length(curr_inode)) + : "--"; + + lookahead_verifier_csv << iteration << ","; // iteration no. + lookahead_verifier_csv << source_inode << ","; // source node + lookahead_verifier_csv << sink_inode << ","; // sink node + lookahead_verifier_csv << block_name << ","; // sink block name + lookahead_verifier_csv << atom_block_model << ","; // sink atom block model + lookahead_verifier_csv << cluster_block_type << ","; // sink cluster block type + lookahead_verifier_csv << tile_height << ","; // sink cluster tile height + lookahead_verifier_csv << tile_width << ","; // sink cluster tile width + lookahead_verifier_csv << curr_inode << ","; // current node + lookahead_verifier_csv << node_type_str << ","; // node type + lookahead_verifier_csv << node_length << ","; // node length + lookahead_verifier_csv << i << ","; // num. nodes from sink + lookahead_verifier_csv << delta_x << ","; // delta x + lookahead_verifier_csv << delta_y << ","; // delta y + lookahead_verifier_csv << djikstra_cost << ","; // actual cost + lookahead_verifier_csv << djikstra_delay << ","; // actual delay + lookahead_verifier_csv << djikstra_congestion << ","; // actual congestion + lookahead_verifier_csv << lookahead_cost << ","; // predicted cost + lookahead_verifier_csv << lookahead_delay << ","; // predicted delay + lookahead_verifier_csv << lookahead_congestion << ","; // predicted congestion + lookahead_verifier_csv << cost_params.criticality; // criticality + lookahead_verifier_csv << std::endl; } - - lookahead_verifier_csv << iteration << ","; // iteration no. - lookahead_verifier_csv << source_inode << ","; // source node - lookahead_verifier_csv << sink_inode << ","; // sink node - lookahead_verifier_csv << block_name << ","; // sink block name - lookahead_verifier_csv << atom_block_model << ","; // sink atom block model - lookahead_verifier_csv << cluster_block_type << ","; // sink cluster block type - lookahead_verifier_csv << tile_height << ","; // sink cluster tile height - lookahead_verifier_csv << tile_width << ","; // sink cluster tile width - lookahead_verifier_csv << curr_inode << ","; // current node - lookahead_verifier_csv << node_type_str << ","; // node type - lookahead_verifier_csv << node_length << ","; // node length - lookahead_verifier_csv << nodes_from_sink << ","; // num. nodes from sink - lookahead_verifier_csv << delta_x << ","; // delta x - lookahead_verifier_csv << delta_y << ","; // delta y - lookahead_verifier_csv << djikstra_cost << ","; // actual cost - lookahead_verifier_csv << djikstra_delay << ","; // actual delay - lookahead_verifier_csv << djikstra_congestion << ","; // actual congestion - lookahead_verifier_csv << lookahead_cost << ","; // predicted cost - lookahead_verifier_csv << lookahead_delay << ","; // predicted delay - lookahead_verifier_csv << lookahead_congestion << ","; // predicted congestion - lookahead_verifier_csv << cost_params.criticality; // criticality - lookahead_verifier_csv << std::endl; } \ No newline at end of file diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index 2e079db8eb0..6a75632ced0 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -15,16 +15,7 @@ class LookaheadProfiler { public: LookaheadProfiler(); - void record(int iteration, - int target_net_pin_index, - RRNodeId source_inode, - RRNodeId sink_inode, - RRNodeId curr_inode, - size_t nodes_from_sink, - const t_conn_cost_params& cost_params, - const RouterLookahead& router_lookahead, - const ParentNetId& net_id, - const Netlist<>& net_list); + void record(int iteration, int target_net_pin_index, const t_conn_cost_params& cost_params, const RouterLookahead& router_lookahead, const ParentNetId& net_id, const Netlist<>& net_list, std::vector branch_inodes); private: std::ofstream lookahead_verifier_csv; @@ -34,6 +25,4 @@ class LookaheadProfiler { std::unordered_map> tile_dimensions; }; -extern LookaheadProfiler lookahead_profiler; - #endif //VTR_LOOKAHEAD_PROFILER_H \ No newline at end of file diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index 24caf098034..c56d52184a6 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -549,23 +549,12 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is } new_branch_iswitches.push_back(new_iswitch); - /* - * ROUTER LOOKAHEAD VERIFIER - */ - if (itry >= 1) { - for (size_t i = 2; i < new_branch_inodes.size(); ++i) { /* Distance one node away is always 0.0 */ - lookahead_profiler.record(itry, - target_net_pin_index, - new_branch_inodes.back(), - new_branch_inodes.front(), - new_branch_inodes[i], - i, - cost_params, - router_lookahead, - net_id, - net_list); - } - } + g_vpr_ctx.mutable_routing().lookahead_profiler.record(itry, + target_net_pin_index, + cost_params, + router_lookahead, + net_id, + net_list, std::vector()); /* Build the new tree branch starting from the existing node we found */ RouteTreeNode* last_node = _rr_node_to_rt_node[new_inode]; diff --git a/vpr/src/route/router_lookahead.cpp b/vpr/src/route/router_lookahead.cpp index bf5b9a7e7f4..2bf4000361c 100644 --- a/vpr/src/route/router_lookahead.cpp +++ b/vpr/src/route/router_lookahead.cpp @@ -61,13 +61,19 @@ std::unique_ptr make_router_lookahead(const t_det_routing_arch& return router_lookahead; } +void RouterLookahead::scale_delay_and_cong_by_criticality(float& delay, float& cong, const t_conn_cost_params& params) const { + delay *= params.criticality; + cong *= 1. - params.criticality; +} + float ClassicLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const { - auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); + auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; } -std::pair ClassicLookahead::get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const { +std::pair ClassicLookahead::get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& /*params*/, float R_upstream) const { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; @@ -96,11 +102,7 @@ std::pair ClassicLookahead::get_expected_delay_and_cong(RRNodeId n + R_upstream * (num_segs_same_dir * same_data.C_load + num_segs_ortho_dir * ortho_data.C_load) + ipin_data.T_linear; - if (ignore_criticality) { - return std::make_pair(Tdel, cong_cost); - } else { - return std::make_pair(params.criticality * Tdel, (1 - params.criticality) * cong_cost); - } + return std::make_pair(Tdel, cong_cost); } else if (rr_type == IPIN) { /* Change if you're allowing route-throughs */ return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); @@ -113,7 +115,7 @@ float NoOpLookahead::get_expected_cost(RRNodeId /*current_node*/, RRNodeId /*tar return 0.; } -std::pair NoOpLookahead::get_expected_delay_and_cong(RRNodeId, RRNodeId, const t_conn_cost_params&, float, bool /*ignore_criticality*/) const { +std::pair NoOpLookahead::get_expected_delay_and_cong(RRNodeId, RRNodeId, const t_conn_cost_params&, float) const { return std::make_pair(0., 0.); } diff --git a/vpr/src/route/router_lookahead.h b/vpr/src/route/router_lookahead.h index e37885ebb91..3deff54a312 100644 --- a/vpr/src/route/router_lookahead.h +++ b/vpr/src/route/router_lookahead.h @@ -23,7 +23,8 @@ class RouterLookahead { * @return */ virtual float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; - virtual std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const = 0; + virtual std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; + void scale_delay_and_cong_by_criticality(float& delay, float& cong, const t_conn_cost_params& params) const; /** * @brief Compute router lookahead (if needed) @@ -123,7 +124,7 @@ const RouterLookahead* get_cached_router_lookahead(const t_det_routing_arch& det class ClassicLookahead : public RouterLookahead { public: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; + std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; void compute(const std::vector& /*segment_inf*/) override { } @@ -159,7 +160,7 @@ class ClassicLookahead : public RouterLookahead { class NoOpLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; + std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; void compute(const std::vector& /*segment_inf*/) override { } diff --git a/vpr/src/route/router_lookahead_compressed_map.cpp b/vpr/src/route/router_lookahead_compressed_map.cpp index 4ac912b4043..e9060cd0425 100644 --- a/vpr/src/route/router_lookahead_compressed_map.cpp +++ b/vpr/src/route/router_lookahead_compressed_map.cpp @@ -412,7 +412,8 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId if (from_rr_type == CHANX || from_rr_type == CHANY || from_rr_type == SOURCE || from_rr_type == OPIN) { // Get the total cost using the combined delay and congestion costs - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; } else if (from_rr_type == IPIN) { /* Change if you're allowing route-throughs */ return (device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); @@ -421,7 +422,7 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId } } -std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float, bool ignore_criticality) const { +std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float) const { auto& device_ctx = g_vpr_ctx.device(); auto& rr_graph = device_ctx.rr_graph; @@ -455,11 +456,6 @@ std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNo to_layer_num, get_wire_cost_entry_compressed_lookahead); - if (!ignore_criticality) { - expected_delay_cost *= params.criticality; - expected_cong_cost *= (1 - params.criticality); - } - VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", rr_node_arch_name(from_node, is_flat_).c_str(), @@ -470,7 +466,6 @@ std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNo is_flat_) .c_str()) .c_str()); - } else if (from_type == CHANX || from_type == CHANY) { //When estimating costs from a wire, we directly look-up the result in the wire lookahead (f_wire_cost_map) @@ -499,11 +494,6 @@ std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNo is_flat_) .c_str()) .c_str()); - - if (!ignore_criticality) { - expected_delay_cost = cost_entry.delay * params.criticality; - expected_cong_cost = cost_entry.congestion * (1 - params.criticality); - } } else if (from_type == IPIN) { /* Change if you're allowing route-throughs */ return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); } else { /* Change this if you want to investigate route-throughs */ diff --git a/vpr/src/route/router_lookahead_compressed_map.h b/vpr/src/route/router_lookahead_compressed_map.h index 02c45be6e7c..e57e9a27f14 100644 --- a/vpr/src/route/router_lookahead_compressed_map.h +++ b/vpr/src/route/router_lookahead_compressed_map.h @@ -27,7 +27,7 @@ class CompressedMapLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; + std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream) const override; void compute(const std::vector& segment_inf) override; diff --git a/vpr/src/route/router_lookahead_extended_map.cpp b/vpr/src/route/router_lookahead_extended_map.cpp index 12771de32b5..b0d9fdcaf2a 100644 --- a/vpr/src/route/router_lookahead_extended_map.cpp +++ b/vpr/src/route/router_lookahead_extended_map.cpp @@ -181,7 +181,7 @@ float ExtendedMapLookahead::get_chan_ipin_delays(RRNodeId to_node) const { // // The from_node can be of one of the following types: CHANX, CHANY, SOURCE, OPIN // The to_node is always a SINK -std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float, bool ignore_criticality) const { +std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float) const { if (from_node == to_node) { return std::make_pair(0., 0.); } @@ -237,13 +237,8 @@ std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNode float site_pin_delay = this->get_chan_ipin_delays(to_node); expected_delay += site_pin_delay; - float expected_delay_cost = expected_delay; - float expected_cong_cost = expected_congestion; - - if (!ignore_criticality) { - expected_delay_cost *= params.criticality; - expected_cong_cost *= 1.0 - params.criticality; - } + float expected_delay_cost = expected_delay * params.criticality; + float expected_cong_cost = expected_congestion * (1. - params.criticality); float expected_cost = expected_delay_cost + expected_cong_cost; @@ -268,7 +263,7 @@ std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNode VTR_ASSERT(0); } - return std::make_pair(expected_delay_cost, expected_cong_cost); + return std::make_pair(expected_delay, expected_congestion); } // Adds a best cost routing path from start_node_ind to node_ind to routing costs @@ -598,7 +593,8 @@ float ExtendedMapLookahead::get_expected_cost( float delay_cost, cong_cost; // Get the total cost using the combined delay and congestion costs - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; } else if (rr_type == IPIN) { /* Change if you're allowing route-throughs */ // This is to return only the cost between the IPIN and SINK. No need to diff --git a/vpr/src/route/router_lookahead_extended_map.h b/vpr/src/route/router_lookahead_extended_map.h index bd901b874b8..589ea06e6a4 100644 --- a/vpr/src/route/router_lookahead_extended_map.h +++ b/vpr/src/route/router_lookahead_extended_map.h @@ -69,7 +69,7 @@ class ExtendedMapLookahead : public RouterLookahead { /** * @brief Returns a pair of expected delay and congestion */ - std::pair get_expected_delay_and_cong(RRNodeId inode, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; + std::pair get_expected_delay_and_cong(RRNodeId inode, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; /** * @brief Computes the extended lookahead map diff --git a/vpr/src/route/router_lookahead_map.cpp b/vpr/src/route/router_lookahead_map.cpp index fadb2ad2498..7a71cb09ec9 100644 --- a/vpr/src/route/router_lookahead_map.cpp +++ b/vpr/src/route/router_lookahead_map.cpp @@ -1,25 +1,25 @@ /* - * The router lookahead provides an estimate of the cost from an intermediate node to the target node - * during directed (A*-like) routing. - * - * The VPR 7.0 lookahead (route/route_timing.c ==> get_timing_driven_expected_cost) lower-bounds the remaining delay and - * congestion by assuming that a minimum number of wires, of the same type as the current node being expanded, can be used - * to complete the route. While this method is efficient, it can run into trouble with architectures that use - * multiple interconnected wire types. - * - * The lookahead in this file performs undirected Dijkstra searches to evaluate many paths through the routing network, - * starting from all the different wire types in the routing architecture. This ensures the lookahead captures the - * effect of inter-wire connectivity. This information is then reduced into a delta_x delta_y based lookup table for - * reach source wire type (f_cost_map). This is used for estimates from CHANX/CHANY -> SINK nodes. See Section 3.2.4 - * in Oleg Petelin's MASc thesis (2016) for more discussion. - * - * To handle estimates starting from SOURCE/OPIN's the lookahead also creates a small side look-up table of the wire types - * which are reachable from each physical tile type's SOURCEs/OPINs (f_src_opin_delays). This is used for - * SRC/OPIN -> CHANX/CHANY estimates. - * - * In the case of SRC/OPIN -> SINK estimates the results from the two look-ups are added together (and the minimum taken - * if there are multiple possibilities). - */ +* The router lookahead provides an estimate of the cost from an intermediate node to the target node +* during directed (A*-like) routing. +* +* The VPR 7.0 lookahead (route/route_timing.c ==> get_timing_driven_expected_cost) lower-bounds the remaining delay and +* congestion by assuming that a minimum number of wires, of the same type as the current node being expanded, can be used +* to complete the route. While this method is efficient, it can run into trouble with architectures that use +* multiple interconnected wire types. +* +* The lookahead in this file performs undirected Dijkstra searches to evaluate many paths through the routing network, +* starting from all the different wire types in the routing architecture. This ensures the lookahead captures the +* effect of inter-wire connectivity. This information is then reduced into a delta_x delta_y based lookup table for +* reach source wire type (f_cost_map). This is used for estimates from CHANX/CHANY -> SINK nodes. See Section 3.2.4 +* in Oleg Petelin's MASc thesis (2016) for more discussion. +* +* To handle estimates starting from SOURCE/OPIN's the lookahead also creates a small side look-up table of the wire types +* which are reachable from each physical tile type's SOURCEs/OPINs (f_src_opin_delays). This is used for +* SRC/OPIN -> CHANX/CHANY estimates. +* +* In the case of SRC/OPIN -> SINK estimates the results from the two look-ups are added together (and the minimum taken +* if there are multiple possibilities). +*/ #include #include @@ -51,8 +51,8 @@ static constexpr int VALID_NEIGHBOR_NUMBER = 3; /* when a list of delay/congestion entries at a coordinate in Cost_Entry is boiled down to a single - * representative entry, this enum is passed-in to specify how that representative entry should be - * calculated */ +* representative entry, this enum is passed-in to specify how that representative entry should be +* calculated */ enum e_representative_entry_method { FIRST = 0, //the first cost that was recorded SMALLEST, //the smallest-delay cost recorded @@ -69,9 +69,9 @@ t_wire_cost_map f_wire_cost_map; /******** File-Scope Functions ********/ /*** - * @brief Fill f_wire_cost_map. It is a look-up table from CHANX/CHANY (to SINKs) for various distances - * @param segment_inf - */ +* @brief Fill f_wire_cost_map. It is a look-up table from CHANX/CHANY (to SINKs) for various distances +* @param segment_inf +*/ static util::Cost_Entry get_wire_cost_entry(e_rr_type rr_type, int seg_index, int from_layer_num, @@ -82,50 +82,50 @@ static util::Cost_Entry get_wire_cost_entry(e_rr_type rr_type, static void compute_router_wire_lookahead(const std::vector& segment_inf); /*** - * @brief Compute the cost from pin to sinks of tiles - Compute the minimum cost to get to each tile sink from pins on the cluster - * @param intra_tile_pin_primitive_pin_delay - * @param tile_min_cost - * @param det_routing_arch - * @param device_ctx - */ +* @brief Compute the cost from pin to sinks of tiles - Compute the minimum cost to get to each tile sink from pins on the cluster +* @param intra_tile_pin_primitive_pin_delay +* @param tile_min_cost +* @param det_routing_arch +* @param device_ctx +*/ static void compute_tiles_lookahead(std::unordered_map& intra_tile_pin_primitive_pin_delay, std::unordered_map>& tile_min_cost, const t_det_routing_arch& det_routing_arch, const DeviceContext& device_ctx); /*** - * @brief Compute the cose from tile pins to tile sinks - * @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost - * @param physical_tile - * @param det_routing_arch - * @param delayless_switch - */ +* @brief Compute the cose from tile pins to tile sinks +* @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost +* @param physical_tile +* @param det_routing_arch +* @param delayless_switch +*/ static void compute_tile_lookahead(std::unordered_map& intra_tile_pin_primitive_pin_delay, t_physical_tile_type_ptr physical_tile, const t_det_routing_arch& det_routing_arch, const int delayless_switch); /*** - * @brief Compute the minimum cost to get to the sinks from pins on the cluster - * @param tile_min_cost [physical_tile_idx][sink_ptc_num] -> min_cost - * @param physical_tile - * @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost - */ +* @brief Compute the minimum cost to get to the sinks from pins on the cluster +* @param tile_min_cost [physical_tile_idx][sink_ptc_num] -> min_cost +* @param physical_tile +* @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost +*/ static void store_min_cost_to_sinks(std::unordered_map>& tile_min_cost, t_physical_tile_type_ptr physical_tile, const std::unordered_map& intra_tile_pin_primitive_pin_delay); /** - * @brief Iterate over the first (channel type) and second (segment type) dimensions of f_wire_cost_map to get the minimum cost for each dx and dy_ - * @param internal_opin_global_cost_map This map is populated in this function. [dx][dy] -> cost - */ +* @brief Iterate over the first (channel type) and second (segment type) dimensions of f_wire_cost_map to get the minimum cost for each dx and dy_ +* @param internal_opin_global_cost_map This map is populated in this function. [dx][dy] -> cost +*/ static void min_chann_global_cost_map(vtr::NdMatrix& distance_min_cost); /** - * @brief // Given the src/opin map of each physical tile type, iterate over all OPINs/sources of a type and create - * the minimum cost map across all of them for each tile type. - * @param src_opin_delays - * @param distance_min_cost - */ +* @brief // Given the src/opin map of each physical tile type, iterate over all OPINs/sources of a type and create +* the minimum cost map across all of them for each tile type. +* @param src_opin_delays +* @param distance_min_cost +*/ static void min_opin_distance_cost_map(const util::t_src_opin_delays& src_opin_delays, vtr::NdMatrix& distance_min_cost); // Read the file and fill intra_tile_pin_primitive_pin_delay and tile_min_cost @@ -144,17 +144,17 @@ static void fill_in_missing_lookahead_entries(int segment_index, e_rr_type chan_ static util::Cost_Entry get_nearby_cost_entry(int from_layer_num, int x, int y, int to_layer_num, int segment_index, int chan_index); /** - * @brief Fill in the missing entry in router lookahead map - * If there is a missing entry in the router lookahead, search among its neighbors in a 3x3 window. If there are `VALID_NEIGHBOR_NUMBER` valid entries, - * take the average of them and fill in the missing entry. - * @param from_layer_num The layer num of the source node - * @param missing_dx Dx of the missing input - * @param missing_dy Dy of the missing input - * @param to_layer_num The layer num of the destination point - * @param segment_index The segment index of the source node - * @param chan_index The channel index of the source node - * @return The cost for the missing entry - */ +* @brief Fill in the missing entry in router lookahead map +* If there is a missing entry in the router lookahead, search among its neighbors in a 3x3 window. If there are `VALID_NEIGHBOR_NUMBER` valid entries, +* take the average of them and fill in the missing entry. +* @param from_layer_num The layer num of the source node +* @param missing_dx Dx of the missing input +* @param missing_dy Dy of the missing input +* @param to_layer_num The layer num of the destination point +* @param segment_index The segment index of the source node +* @param chan_index The channel index of the source node +* @return The cost for the missing entry +*/ static util::Cost_Entry get_nearby_cost_entry_average_neighbour(int from_layer_num, int missing_dx, int missing_dy, @@ -175,116 +175,19 @@ float MapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target_nod VTR_ASSERT_SAFE(rr_graph.node_type(target_node) == t_rr_type::SINK); - if (is_flat_) { - auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); + if (is_flat_ || from_rr_type == CHANX || from_rr_type == CHANY || from_rr_type == SOURCE || from_rr_type == OPIN) { + // Get the total cost using the combined delay and congestion costs + auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); + scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; - } else { - if (from_rr_type == CHANX || from_rr_type == CHANY || from_rr_type == SOURCE || from_rr_type == OPIN) { - // Get the total cost using the combined delay and congestion costs - auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream, false); - return delay_cost + cong_cost; - } else if (from_rr_type == IPIN) { /* Change if you're allowing route-throughs */ - return (device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); - } else { /* Change this if you want to investigate route-throughs */ - return (0.); - } - } -} - -std::pair MapLookahead::get_expected_delay_and_cong_default(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float, bool ignore_criticality) const { - auto& device_ctx = g_vpr_ctx.device(); - auto& rr_graph = device_ctx.rr_graph; - - int from_layer_num = rr_graph.node_layer(from_node); - int to_layer_num = rr_graph.node_layer(to_node); - auto [delta_x, delta_y] = util::get_xy_deltas(from_node, to_node); - delta_x = abs(delta_x); - delta_y = abs(delta_y); - - float expected_delay_cost = std::numeric_limits::infinity(); - float expected_cong_cost = std::numeric_limits::infinity(); - - e_rr_type from_type = rr_graph.node_type(from_node); - if (from_type == SOURCE || from_type == OPIN) { - //When estimating costs from a SOURCE/OPIN we look-up to find which wire types (and the - //cost to reach them) in src_opin_delays. Once we know what wire types are - //reachable, we query the f_wire_cost_map (i.e. the wire lookahead) to get the final - //delay to reach the sink. - - t_physical_tile_type_ptr from_tile_type = device_ctx.grid.get_physical_type({rr_graph.node_xlow(from_node), - rr_graph.node_ylow(from_node), - from_layer_num}); - - auto from_tile_index = std::distance(&device_ctx.physical_tile_types[0], from_tile_type); - - auto from_ptc = rr_graph.node_ptc_num(from_node); - - std::tie(expected_delay_cost, expected_cong_cost) = util::get_cost_from_src_opin(src_opin_delays[from_layer_num][from_tile_index][from_ptc][to_layer_num], - delta_x, - delta_y, - to_layer_num, - get_wire_cost_entry); - - if (!ignore_criticality) { - expected_delay_cost *= params.criticality; - expected_cong_cost *= (1 - params.criticality); - } - - VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), - vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", - rr_node_arch_name(from_node, is_flat_).c_str(), - describe_rr_node(rr_graph, - device_ctx.grid, - device_ctx.rr_indexed_data, - from_node, - is_flat_) - .c_str()) - .c_str()); - - } else if (from_type == CHANX || from_type == CHANY) { - //When estimating costs from a wire, we directly look-up the result in the wire lookahead (f_wire_cost_map) - - auto from_cost_index = rr_graph.node_cost_index(from_node); - int from_seg_index = device_ctx.rr_indexed_data[from_cost_index].seg_index; - - VTR_ASSERT(from_seg_index >= 0); - - /* now get the expected cost from our lookahead map */ - util::Cost_Entry cost_entry = get_wire_cost_entry(from_type, - from_seg_index, - from_layer_num, - delta_x, - delta_y, - to_layer_num); - - expected_delay_cost = cost_entry.delay; - expected_cong_cost = cost_entry.congestion; - - VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), - vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", - rr_node_arch_name(from_node, is_flat_).c_str(), - describe_rr_node(rr_graph, - device_ctx.grid, - device_ctx.rr_indexed_data, - from_node, - is_flat_) - .c_str()) - .c_str()); - - if (!ignore_criticality) { - expected_delay_cost = cost_entry.delay * params.criticality; - expected_cong_cost = cost_entry.congestion * (1 - params.criticality); - } - } else if (from_type == IPIN) { /* Change if you're allowing route-throughs */ - return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); + } else if (from_rr_type == IPIN) { /* Change if you're allowing route-throughs */ + return (device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); } else { /* Change this if you want to investigate route-throughs */ - return std::make_pair(0., 0.); + return (0.); } - - return std::make_pair(expected_delay_cost, expected_cong_cost); } -std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const { +std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RRNodeId current_node, RRNodeId target_node) const { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; @@ -309,34 +212,22 @@ std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RR // We have not checked the multi-layer FPGA for flat routing VTR_ASSERT(rr_graph.node_layer(current_node) == rr_graph.node_layer(target_node)); if (from_rr_type == CHANX || from_rr_type == CHANY) { - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong_default(current_node, target_node, params, R_upstream, ignore_criticality); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong_default(current_node, target_node); // delay_cost and cong_cost only represent the cost to get to the root-level pins. The below offsets are used to represent the intra-cluster cost // of getting to a sink delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - if (!ignore_criticality) { - delay_offset_cost *= params.criticality; - cong_offset_cost *= (1. - params.criticality); - } - return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; } else if (from_rr_type == OPIN) { if (is_inter_cluster_node(rr_graph, current_node)) { // Similar to CHANX and CHANY - std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong_default(current_node, target_node, params, R_upstream, ignore_criticality); + std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong_default(current_node, target_node); delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - - if (!ignore_criticality) { - delay_offset_cost *= params.criticality; - cong_offset_cost *= (1. - params.criticality); - } - return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; - ; } else { if (node_in_same_physical_tile(current_node, target_node)) { delay_offset_cost = 0.; @@ -349,21 +240,10 @@ std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RR // since it does not consider the cost of going outside of the cluster and, then, returning to it. delay_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; cong_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - - if (!ignore_criticality) { - delay_cost *= params.criticality; - cong_cost *= (1. - params.criticality); - } - return {delay_cost, cong_cost}; } else { delay_cost = pin_delay_itr->second.delay; cong_cost = pin_delay_itr->second.congestion; - - if (!ignore_criticality) { - delay_cost *= params.criticality; - cong_cost *= (1. - params.criticality); - } } } else { // Since we don't know which type of wires are accessible from an OPIN inside the cluster, we use @@ -377,14 +257,6 @@ std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RR delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - - if (!ignore_criticality) { - delay_cost *= params.criticality; - cong_cost *= (1. - params.criticality); - - delay_offset_cost *= params.criticality; - cong_offset_cost *= (1. - params.criticality); - } } return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; } @@ -399,11 +271,6 @@ std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RR } else { delay_cost = pin_delay_itr->second.delay; cong_cost = pin_delay_itr->second.congestion; - - if (!ignore_criticality) { - delay_cost *= params.criticality; - cong_cost *= (1. - params.criticality); - } } return {delay_cost, cong_cost}; } else if (from_rr_type == SOURCE) { @@ -421,14 +288,6 @@ std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RR delay_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).delay; cong_offset_cost = tile_min_cost.at(to_physical_type->index).at(to_node_ptc_num).congestion; - - if (!ignore_criticality) { - delay_cost *= params.criticality; - cong_cost *= (1. - params.criticality); - - delay_offset_cost *= params.criticality; - cong_offset_cost *= (1. - params.criticality); - } } return {delay_cost + delay_offset_cost, cong_cost + cong_offset_cost}; } else { @@ -437,14 +296,95 @@ std::pair MapLookahead::get_expected_delay_and_cong_flat_router(RR } } +std::pair MapLookahead::get_expected_delay_and_cong_default(RRNodeId current_node, RRNodeId target_node) const { + auto& device_ctx = g_vpr_ctx.device(); + auto& rr_graph = device_ctx.rr_graph; + + int from_layer_num = rr_graph.node_layer(current_node); + int to_layer_num = rr_graph.node_layer(current_node); + auto [delta_x, delta_y] = util::get_xy_deltas(current_node, target_node); + delta_x = abs(delta_x); + delta_y = abs(delta_y); + + float expected_delay_cost = std::numeric_limits::infinity(); + float expected_cong_cost = std::numeric_limits::infinity(); + + e_rr_type from_type = rr_graph.node_type(current_node); + if (from_type == SOURCE || from_type == OPIN) { + //When estimating costs from a SOURCE/OPIN we look-up to find which wire types (and the + //cost to reach them) in src_opin_delays. Once we know what wire types are + //reachable, we query the f_wire_cost_map (i.e. the wire lookahead) to get the final + //delay to reach the sink. + + t_physical_tile_type_ptr from_tile_type = device_ctx.grid.get_physical_type({rr_graph.node_xlow(current_node), + rr_graph.node_ylow(current_node), + from_layer_num}); + + auto from_tile_index = std::distance(&device_ctx.physical_tile_types[0], from_tile_type); + + auto from_ptc = rr_graph.node_ptc_num(current_node); + + std::tie(expected_delay_cost, expected_cong_cost) = util::get_cost_from_src_opin(src_opin_delays[from_layer_num][from_tile_index][from_ptc][to_layer_num], + delta_x, + delta_y, + to_layer_num, + get_wire_cost_entry); + + VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), + vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", + rr_node_arch_name(current_node, is_flat_).c_str(), + describe_rr_node(rr_graph, + device_ctx.grid, + device_ctx.rr_indexed_data, + current_node, + is_flat_) + .c_str()) + .c_str()); + + } else if (from_type == CHANX || from_type == CHANY) { + //When estimating costs from a wire, we directly look-up the result in the wire lookahead (f_wire_cost_map) + + auto from_cost_index = rr_graph.node_cost_index(current_node); + int from_seg_index = device_ctx.rr_indexed_data[from_cost_index].seg_index; + + VTR_ASSERT(from_seg_index >= 0); + + /* now get the expected cost from our lookahead map */ + util::Cost_Entry cost_entry = get_wire_cost_entry(from_type, + from_seg_index, + from_layer_num, + delta_x, + delta_y, + to_layer_num); + + expected_delay_cost = cost_entry.delay; + expected_cong_cost = cost_entry.congestion; + + VTR_ASSERT_SAFE_MSG(std::isfinite(expected_delay_cost), + vtr::string_fmt("Lookahead failed to estimate cost from %s: %s", + rr_node_arch_name(current_node, is_flat_).c_str(), + describe_rr_node(rr_graph, + device_ctx.grid, + device_ctx.rr_indexed_data, + current_node, + is_flat_) + .c_str()) + .c_str()); + } else if (from_type == IPIN) { /* Change if you're allowing route-throughs */ + return std::make_pair(0., device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); + } else { /* Change this if you want to investigate route-throughs */ + return std::make_pair(0., 0.); + } + + return std::make_pair(expected_delay_cost, expected_cong_cost); +} + /******** Function Definitions ********/ /* queries the lookahead_map (should have been computed prior to routing) to get the expected cost - * from the specified source to the specified target */ -std::pair MapLookahead::get_expected_delay_and_cong(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const { - if (is_flat_) - return get_expected_delay_and_cong_flat_router(current_node, target_node, params, R_upstream, ignore_criticality); - else - return get_expected_delay_and_cong_default(current_node, target_node, params, R_upstream, ignore_criticality); +* from the specified source to the specified target */ +std::pair MapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& /*params*/, float /*R_upstream*/) const { + return (is_flat_) ? get_expected_delay_and_cong_flat_router(from_node, to_node) + : get_expected_delay_and_cong_default(from_node, to_node); } void MapLookahead::compute(const std::vector& segment_inf) { @@ -587,11 +527,11 @@ static void compute_router_wire_lookahead(const std::vector& segm } /* boil down the cost list in routing_cost_map at each coordinate to a representative cost entry and store it in the lookahead - * cost map */ + * cost map */ set_lookahead_map_costs(from_layer_num, segment_inf.seg_index, chan_type, routing_cost_map); /* fill in missing entries in the lookahead cost map by copying the closest cost entries (cost map was computed based on - * a reference coordinate > (0,0) so some entries that represent a cross-chip distance have not been computed) */ + * a reference coordinate > (0,0) so some entries that represent a cross-chip distance have not been computed) */ fill_in_missing_lookahead_entries(segment_inf.seg_index, chan_type); } } @@ -645,7 +585,7 @@ static void fill_in_missing_lookahead_entries(int segment_index, e_rr_type chan_ /* returns a cost entry in the f_wire_cost_map that is near the specified coordinates (and preferably towards (0,0)) */ static util::Cost_Entry get_nearby_cost_entry(int from_layer_num, int x, int y, int to_layer_num, int segment_index, int chan_index) { /* compute the slope from x,y to 0,0 and then move towards 0,0 by one unit to get the coordinates - * of the cost entry to be copied */ + * of the cost entry to be copied */ //VTR_ASSERT(x > 0 || y > 0); //Asertion fails in practise. TODO: debug @@ -856,12 +796,12 @@ static void min_chann_global_cost_map(vtr::NdMatrix& distan static void min_opin_distance_cost_map(const util::t_src_opin_delays& src_opin_delays, vtr::NdMatrix& distance_min_cost) { /** - * This function calculates and stores the minimum cost to reach a point on layer `n_sink`, which is `dx` and `dy` further from the current point - * on layer `n_source` and is located on physical tile type `t`. To compute this cost, the function iterates over all output pins of tile `t`, - * and for each pin, iterates over all segment types accessible by it. It then determines and stores the minimum cost to the destination point. - * "src_opin_delays" stores the routing segments accessible by each OPIN of each physical type on each layer. After getting the accessible segment types, - * "get_wire_cost_entry" is called to get the cost from that segment type to the destination point. - */ + * This function calculates and stores the minimum cost to reach a point on layer `n_sink`, which is `dx` and `dy` further from the current point + * on layer `n_source` and is located on physical tile type `t`. To compute this cost, the function iterates over all output pins of tile `t`, + * and for each pin, iterates over all segment types accessible by it. It then determines and stores the minimum cost to the destination point. + * "src_opin_delays" stores the routing segments accessible by each OPIN of each physical type on each layer. After getting the accessible segment types, + * "get_wire_cost_entry" is called to get the cost from that segment type to the destination point. + */ int num_tile_types = g_vpr_ctx.device().physical_tile_types.size(); int num_layers = g_vpr_ctx.device().grid.get_num_layers(); int width = (int)g_vpr_ctx.device().grid.width(); @@ -1150,4 +1090,4 @@ void write_router_lookahead(const std::string& file) { writeMessageToFile(file, &builder); } -#endif +#endif \ No newline at end of file diff --git a/vpr/src/route/router_lookahead_map.h b/vpr/src/route/router_lookahead_map.h index 66e66748639..dc6c224853e 100644 --- a/vpr/src/route/router_lookahead_map.h +++ b/vpr/src/route/router_lookahead_map.h @@ -14,8 +14,8 @@ class MapLookahead : public RouterLookahead { explicit MapLookahead(const t_det_routing_arch& det_routing_arch, bool is_flat); private: - std::pair get_expected_delay_and_cong_default(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const; - std::pair get_expected_delay_and_cong_flat_router(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const; + std::pair get_expected_delay_and_cong_flat_router(RRNodeId current_node, RRNodeId target_node) const; + std::pair get_expected_delay_and_cong_default(RRNodeId current_node, RRNodeId target_node) const; //Look-up table from SOURCE/OPIN to CHANX/CHANY of various types util::t_src_opin_delays src_opin_delays; // Lookup table from a tile pins to the primitive classes inside that tile @@ -31,7 +31,7 @@ class MapLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream, bool ignore_criticality) const override; + std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream) const override; void compute(const std::vector& segment_inf) override; void compute_intra_tile() override; @@ -54,4 +54,4 @@ typedef vtr::NdMatrix t_wire_cost_map; //[0..num_layers][0. // is the layer number that the target node is on. void read_router_lookahead(const std::string& file); -void write_router_lookahead(const std::string& file); +void write_router_lookahead(const std::string& file); \ No newline at end of file From c86ff7c82c3fa8f7b220e080c4bffddbde53babc Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Mon, 12 Aug 2024 15:24:29 -0400 Subject: [PATCH 04/25] Added command-line option for profiler --- utils/route_diag/src/main.cpp | 9 ++- vpr/src/base/SetupVPR.cpp | 1 + vpr/src/base/read_options.cpp | 8 +++ vpr/src/base/read_options.h | 1 + vpr/src/base/vpr_types.h | 1 + vpr/src/route/lookahead_profiler.cpp | 61 +++++++++++-------- vpr/src/route/lookahead_profiler.h | 13 ++-- vpr/src/route/route_net.tpp | 29 +++++++-- vpr/src/route/route_tree.cpp | 38 +++++++++--- vpr/src/route/route_tree.h | 21 ++++++- vpr/src/route/router_delay_profiling.cpp | 18 +++++- .../route/router_lookahead_compressed_map.cpp | 2 +- vpr/test/test_connection_router.cpp | 9 ++- 13 files changed, 159 insertions(+), 52 deletions(-) diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index a15d176337d..bf658bb731c 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -130,7 +130,14 @@ static void do_one_route(const Netlist<>& net_list, VTR_ASSERT(cheapest.index == sink_node); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, -1, net_list, conn_params.net_id_); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, + OPEN, + nullptr, + router_opts.flat_routing, + router.get_router_lookahead(), + cost_params, + net_list, + conn_params.net_id_); //find delay float net_delay = rt_node_of_sink.value().Tdel; diff --git a/vpr/src/base/SetupVPR.cpp b/vpr/src/base/SetupVPR.cpp index 2e7d273c267..47fb3290709 100644 --- a/vpr/src/base/SetupVPR.cpp +++ b/vpr/src/base/SetupVPR.cpp @@ -473,6 +473,7 @@ static void SetupRouterOpts(const t_options& Options, t_router_opts* RouterOpts) RouterOpts->router_debug_sink_rr = Options.router_debug_sink_rr; RouterOpts->router_debug_iteration = Options.router_debug_iteration; RouterOpts->lookahead_type = Options.router_lookahead_type; + RouterOpts->router_lookahead_profiling = Options.router_lookahead_profiler; RouterOpts->max_convergence_count = Options.router_max_convergence_count; RouterOpts->reconvergence_cpd_threshold = Options.router_reconvergence_cpd_threshold; RouterOpts->initial_timing = Options.router_initial_timing; diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 9e737b78d57..bb271251f11 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -2626,6 +2626,14 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio .default_value("map") .show_in(argparse::ShowIn::HELP_ONLY); + route_timing_grp.add_argument(args.router_lookahead_profiler, "--router_lookahead_profiler") + .help( + "For every routed sink, records the cost, delay, and congestion estimated by the router lookahead and the " + "actual cost, delay, and congestion, from every node along each route to the sink. These results, along with many " + "other attributes of the node, are recorded into lookahead_verifier_info.csv.") + .default_value("off") + .show_in(argparse::ShowIn::HELP_ONLY); + route_timing_grp.add_argument(args.router_max_convergence_count, "--router_max_convergence_count") .help( "Controls how many times the router is allowed to converge to a legal routing before halting." diff --git a/vpr/src/base/read_options.h b/vpr/src/base/read_options.h index de98e9c3ca8..68b6157fc5d 100644 --- a/vpr/src/base/read_options.h +++ b/vpr/src/base/read_options.h @@ -238,6 +238,7 @@ struct t_options { argparse::ArgValue router_debug_sink_rr; argparse::ArgValue router_debug_iteration; argparse::ArgValue router_lookahead_type; + argparse::ArgValue router_lookahead_profiler; argparse::ArgValue router_max_convergence_count; argparse::ArgValue router_reconvergence_cpd_threshold; argparse::ArgValue router_update_lower_bound_delays; diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 0caa0260d94..41356a3750c 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1458,6 +1458,7 @@ struct t_router_opts { int router_debug_sink_rr; int router_debug_iteration; e_router_lookahead lookahead_type; + bool router_lookahead_profiling; int max_convergence_count; float reconvergence_cpd_threshold; e_router_initial_timing initial_timing; diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index a172ed10438..e9a302e303f 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -11,36 +11,14 @@ #include "vpr_utils.h" #include "re_cluster_util.h" -LookaheadProfiler::LookaheadProfiler() { +LookaheadProfiler::LookaheadProfiler() + : is_empty(true) { lookahead_verifier_csv.open("lookahead_verifier_info.csv", std::ios::out); if (!lookahead_verifier_csv.is_open()) { - VTR_LOG_ERROR("Could not open lookahead_verifier_info.csv", "error"); + VTR_LOG_WARN("Could not open lookahead_verifier_info.csv"); + return; } - - lookahead_verifier_csv - << "iteration no." - << ",source node" - << ",sink node" - << ",sink block name" - << ",sink atom block model" - << ",sink cluster block type" - << ",sink cluster tile height" - << ",sink cluster tile width" - << ",current node" - << ",node type" - << ",node length" - << ",num. nodes from sink" - << ",delta x" - << ",delta y" - << ",actual cost" - << ",actual delay" - << ",actual congestion" - << ",predicted cost" - << ",predicted delay" - << ",predicted congestion" - << ",criticality" - << std::endl; } void LookaheadProfiler::record(int iteration, @@ -54,6 +32,37 @@ void LookaheadProfiler::record(int iteration, const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); + if (!lookahead_verifier_csv.is_open()) + return; + + if (is_empty) { + lookahead_verifier_csv + << "iteration no." + << ",source node" + << ",sink node" + << ",sink block name" + << ",sink atom block model" + << ",sink cluster block type" + << ",sink cluster tile height" + << ",sink cluster tile width" + << ",current node" + << ",node type" + << ",node length" + << ",num. nodes from sink" + << ",delta x" + << ",delta y" + << ",actual cost" + << ",actual delay" + << ",actual congestion" + << ",predicted cost" + << ",predicted delay" + << ",predicted congestion" + << ",criticality" + << std::endl; + + is_empty = false; + } + if (iteration < 1) return; diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index 6a75632ced0..8d1c6c0e3f9 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -1,7 +1,3 @@ -// -// Created by shrevena on 08/06/24. -// - #ifndef VTR_LOOKAHEAD_PROFILER_H #define VTR_LOOKAHEAD_PROFILER_H @@ -15,10 +11,17 @@ class LookaheadProfiler { public: LookaheadProfiler(); - void record(int iteration, int target_net_pin_index, const t_conn_cost_params& cost_params, const RouterLookahead& router_lookahead, const ParentNetId& net_id, const Netlist<>& net_list, std::vector branch_inodes); + void record(int iteration, + int target_net_pin_index, + const t_conn_cost_params& cost_params, + const RouterLookahead& router_lookahead, + const ParentNetId& net_id, + const Netlist<>& net_list, + std::vector branch_inodes); private: std::ofstream lookahead_verifier_csv; + bool is_empty; std::unordered_map atom_block_names; std::unordered_map atom_block_models; std::unordered_map cluster_block_types; diff --git a/vpr/src/route/route_net.tpp b/vpr/src/route/route_net.tpp index 9674b2d5d73..188e09e0a44 100644 --- a/vpr/src/route/route_net.tpp +++ b/vpr/src/route/route_net.tpp @@ -190,7 +190,8 @@ inline NetResultFlags route_net(ConnectionRouter& router, spatial_route_tree_lookup, router_stats, is_flat, - itry); + itry, + router_opts); if (flags.success == false) return flags; @@ -298,7 +299,8 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, SpatialRouteTreeLookup& spatial_rt_lookup, RouterStats& router_stats, bool is_flat, - int itry) { + int itry, + const t_router_opts& router_opts) { const auto& device_ctx = g_vpr_ctx.device(); auto& route_ctx = g_vpr_ctx.mutable_routing(); auto& m_route_ctx = g_vpr_ctx.mutable_routing(); @@ -354,8 +356,16 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, * points. Therefore, we can set the net pin index of the sink node to * * OPEN (meaning illegal) as it is not meaningful for this sink. */ vtr::optional new_branch, new_sink; - std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, OPEN, ((high_fanout) ? &spatial_rt_lookup : nullptr), is_flat, router.get_router_lookahead(), cost_params, itry, net_list, - conn_params.net_id_); + std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, + OPEN, + ((high_fanout) ? &spatial_rt_lookup : nullptr), + is_flat, + router.get_router_lookahead(), + cost_params, + net_list, + conn_params.net_id_, + itry, + router_opts.router_lookahead_profiling); VTR_ASSERT_DEBUG(!high_fanout || validate_route_tree_spatial_lookup(tree.root(), spatial_rt_lookup)); @@ -483,7 +493,16 @@ inline NetResultFlags route_sink(ConnectionRouter& router, profiling::sink_criticality_end(cost_params.criticality); vtr::optional new_branch, new_sink; - std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, target_pin, ((high_fanout) ? &spatial_rt_lookup : nullptr), is_flat, router.get_router_lookahead(), cost_params, itry, net_list, conn_params.net_id_); + std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, + target_pin, + ((high_fanout) ? &spatial_rt_lookup : nullptr), + is_flat, + router.get_router_lookahead(), + cost_params, + net_list, + conn_params.net_id_, + itry, + router_opts.router_lookahead_profiling); VTR_ASSERT_DEBUG(!high_fanout || validate_route_tree_spatial_lookup(tree.root(), spatial_rt_lookup)); diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index c56d52184a6..226d5b315d9 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -486,13 +486,22 @@ void RouteTree::print(void) const { * 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, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id) { +RouteTree::update_from_heap(t_heap* hptr, + int target_net_pin_index, + SpatialRouteTreeLookup* spatial_rt_lookup, + bool is_flat, + const RouterLookahead& router_lookahead, + const t_conn_cost_params cost_params, + const Netlist<>& net_list, + const ParentNetId& net_id, + const int itry, + bool profile_lookahead) { /* 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); //Create a new subtree from the target in hptr to existing routing vtr::optional start_of_new_subtree_rt_node, sink_rt_node; - std::tie(start_of_new_subtree_rt_node, sink_rt_node) = add_subtree_from_heap(hptr, target_net_pin_index, is_flat, router_lookahead, cost_params, itry, net_list, net_id); + std::tie(start_of_new_subtree_rt_node, sink_rt_node) = add_subtree_from_heap(hptr, target_net_pin_index, is_flat, router_lookahead, cost_params, itry, net_list, net_id, profile_lookahead); if (!start_of_new_subtree_rt_node) return {vtr::nullopt, *sink_rt_node}; @@ -515,7 +524,15 @@ 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, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id) { +RouteTree::add_subtree_from_heap(t_heap* hptr, + int target_net_pin_index, + bool is_flat, + const RouterLookahead& router_lookahead, + const t_conn_cost_params cost_params, + const int itry, + const Netlist<>& net_list, + const ParentNetId& net_id, + bool profile_lookahead) { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); @@ -549,12 +566,15 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is } new_branch_iswitches.push_back(new_iswitch); - g_vpr_ctx.mutable_routing().lookahead_profiler.record(itry, - target_net_pin_index, - cost_params, - router_lookahead, - net_id, - net_list, std::vector()); + if (profile_lookahead) { + g_vpr_ctx.mutable_routing().lookahead_profiler.record(itry, + target_net_pin_index, + cost_params, + router_lookahead, + net_id, + net_list, + new_branch_inodes); + } /* Build the new tree branch starting from the existing node we found */ RouteTreeNode* last_node = _rr_node_to_rt_node[new_inode]; diff --git a/vpr/src/route/route_tree.h b/vpr/src/route/route_tree.h index 8278f87ed41..cafdcedf802 100644 --- a/vpr/src/route/route_tree.h +++ b/vpr/src/route/route_tree.h @@ -358,7 +358,16 @@ 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, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id); + update_from_heap(t_heap* hptr, + int target_net_pin_index, + SpatialRouteTreeLookup* spatial_rt_lookup, + bool is_flat, + const RouterLookahead& router_lookahead, + t_conn_cost_params cost_params, + const Netlist<>& net_list, + const ParentNetId& net_id, + int itry = -1, + bool profile_lookahead = false); /** Reload timing values (R_upstream, C_downstream, Tdel). * Can take a RouteTreeNode& to do an incremental update. @@ -492,7 +501,15 @@ class RouteTree { private: std::tuple, vtr::optional> - add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is_flat, const RouterLookahead& router_lookahead, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id); + add_subtree_from_heap(t_heap* hptr, + int target_net_pin_index, + bool is_flat, + const RouterLookahead& router_lookahead, + const t_conn_cost_params cost_params, + const int itry, + const Netlist<>& net_list, + const ParentNetId& net_id, + bool profile_lookahead); void add_non_configurable_nodes(RouteTreeNode* rt_node, bool reached_by_non_configurable_edge, diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index cf559cad321..32d49256acf 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -121,7 +121,14 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, VTR_ASSERT(cheapest.index == sink_node); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, is_flat_, router_.get_router_lookahead(), cost_params, -1, net_list_, conn_params.net_id_); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, + OPEN, + nullptr, + is_flat_, + router_.get_router_lookahead(), + cost_params, + net_list_, + conn_params.net_id_); //find delay *net_delay = rt_node_of_sink->Tdel; @@ -208,7 +215,14 @@ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src //Build the routing tree to get the delay tree = RouteTree(RRNodeId(src_rr_node)); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&shortest_paths[sink_rr_node], OPEN, nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, -1, net_list, conn_params.net_id_); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&shortest_paths[sink_rr_node], + OPEN, + nullptr, + router_opts.flat_routing, + router.get_router_lookahead(), + cost_params, + net_list, + conn_params.net_id_); VTR_ASSERT(rt_node_of_sink->inode == RRNodeId(sink_rr_node)); diff --git a/vpr/src/route/router_lookahead_compressed_map.cpp b/vpr/src/route/router_lookahead_compressed_map.cpp index e9060cd0425..aed3319e8c9 100644 --- a/vpr/src/route/router_lookahead_compressed_map.cpp +++ b/vpr/src/route/router_lookahead_compressed_map.cpp @@ -422,7 +422,7 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId } } -std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float) const { +std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& /*params*/, float) const { auto& device_ctx = g_vpr_ctx.device(); auto& rr_graph = device_ctx.rr_graph; diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index 9fc3671285f..952333322d5 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -87,7 +87,14 @@ static float do_one_route(RRNodeId source_node, // Get the delay vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, OPEN, nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, -1, net_list, conn_params.net_id_); + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, + OPEN, + nullptr, + router_opts.flat_routing, + router.get_router_lookahead(), + cost_params, + net_list, + conn_params.net_id_); delay = rt_node_of_sink.value().Tdel; } From ddf34eb71f0b9efe82feb5a2ab8bac13625c5e1c Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Mon, 12 Aug 2024 16:17:06 -0400 Subject: [PATCH 05/25] Commented LookaheadProfiler --- vpr/src/route/lookahead_profiler.cpp | 147 +++++++++++++++------------ vpr/src/route/lookahead_profiler.h | 31 +++++- 2 files changed, 112 insertions(+), 66 deletions(-) diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index e9a302e303f..a5d1c873e6a 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -3,23 +3,14 @@ // #include -#include "lookahead_profiler.h" -#include "vtr_error.h" -#include "vtr_log.h" + #include "globals.h" +#include "lookahead_profiler.h" +#include "re_cluster_util.h" #include "router_lookahead_map_utils.h" #include "vpr_utils.h" -#include "re_cluster_util.h" - -LookaheadProfiler::LookaheadProfiler() - : is_empty(true) { - lookahead_verifier_csv.open("lookahead_verifier_info.csv", std::ios::out); - - if (!lookahead_verifier_csv.is_open()) { - VTR_LOG_WARN("Could not open lookahead_verifier_info.csv"); - return; - } -} +#include "vtr_error.h" +#include "vtr_log.h" void LookaheadProfiler::record(int iteration, int target_net_pin_index, @@ -32,10 +23,14 @@ void LookaheadProfiler::record(int iteration, const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); - if (!lookahead_verifier_csv.is_open()) - return; - + // If csv file hasn't been opened, open it and write out column headers if (is_empty) { + lookahead_verifier_csv.open("lookahead_verifier_info.csv", std::ios::out); + + if (!lookahead_verifier_csv.is_open()) { + VTR_LOG_ERROR("Could not open lookahead_verifier_info.csv", "error"); + } + lookahead_verifier_csv << "iteration no." << ",source node" @@ -63,72 +58,96 @@ void LookaheadProfiler::record(int iteration, is_empty = false; } + if (!lookahead_verifier_csv.is_open()) + return; + + // The default value in RouteTree::update_from_heap() is -1; only calls which descend from route_net() + // pass in an iteration value, which is the only context in which we want to profile. if (iteration < 1) return; - for (size_t i = 2; i < branch_inodes.size(); ++i) { /* Distance one node away is always 0.0 (IPIN->SINK) */ - RRNodeId source_inode = branch_inodes.back(); - RRNodeId sink_inode = branch_inodes.front(); - RRNodeId curr_inode = branch_inodes[i]; + RRNodeId source_inode = branch_inodes.back(); + RRNodeId sink_inode = branch_inodes.front(); - float total_backward_cost = route_ctx.rr_node_route_inf[sink_inode].backward_path_cost; - float total_backward_delay = route_ctx.rr_node_route_inf[sink_inode].backward_path_delay; - float total_backward_congestion = route_ctx.rr_node_route_inf[sink_inode].backward_path_congestion; + VTR_ASSERT(rr_graph.node_type(source_inode) == SOURCE); + VTR_ASSERT(rr_graph.node_type(sink_inode) == SINK); - auto current_node = route_ctx.rr_node_route_inf[curr_inode]; - float current_backward_cost = current_node.backward_path_cost; - float current_backward_delay = current_node.backward_path_delay; - float current_backward_congestion = current_node.backward_path_congestion; + /* Get sink node attributes (atom block name, atom block model, cluster type, tile dimensions) */ - auto [from_x, from_y] = util::get_adjusted_rr_position(curr_inode); - auto [to_x, to_y] = util::get_adjusted_rr_position(sink_inode); + if (atom_block_names.find(sink_inode) == atom_block_names.end()) { + if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { + atom_block_names[sink_inode] = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); - int delta_x = to_x - from_x; - int delta_y = to_y - from_y; + AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(atom_block_names[sink_inode]); + atom_block_models[sink_inode] = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; - float djikstra_cost = total_backward_cost - current_backward_cost; - float djikstra_delay = total_backward_delay - current_backward_delay; - float djikstra_congestion = total_backward_congestion - current_backward_congestion; + ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); - float lookahead_cost = router_lookahead.get_expected_cost(curr_inode, sink_inode, cost_params, 0.0); - auto [lookahead_delay, lookahead_congestion] = router_lookahead.get_expected_delay_and_cong(curr_inode, sink_inode, cost_params, 0.0); + cluster_block_types[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; + + auto tile_type = physical_tile_type(cluster_block_id); + tile_dimensions[sink_inode] = std::pair(std::to_string(tile_type->width), std::to_string(tile_type->height)); + } else { + atom_block_names[sink_inode] = "--"; + atom_block_models[sink_inode] = "--"; + cluster_block_types[sink_inode] = "--"; + tile_dimensions[sink_inode] = {"--", "--"}; + } + } - if (atom_block_names.find(sink_inode) == atom_block_names.end()) { - if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { - atom_block_names[sink_inode] = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); + VTR_ASSERT_SAFE(atom_block_models.find(sink_inode) != atom_block_models.end()); + VTR_ASSERT_SAFE(cluster_block_types.find(sink_inode) != cluster_block_types.end()); + VTR_ASSERT_SAFE(tile_dimensions.find(sink_inode) != tile_dimensions.end()); - AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(atom_block_names[sink_inode]); - atom_block_models[sink_inode] = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; + std::string block_name = atom_block_names[sink_inode]; + std::string atom_block_model = atom_block_models[sink_inode]; + std::string cluster_block_type = cluster_block_types[sink_inode]; + auto [tile_width, tile_height] = tile_dimensions[sink_inode]; - ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); + /* Iterate through the given path and record information for each node */ + for (size_t i = 2; i < branch_inodes.size(); ++i) { // Distance one node away is always 0. (IPIN->SINK) + RRNodeId curr_inode = branch_inodes[i]; - cluster_block_types[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; + // Get backwards path cost, delay, and congestion from sink node + t_rr_node_route_inf sink_node_info = route_ctx.rr_node_route_inf[sink_inode]; + float total_backward_cost = sink_node_info.backward_path_cost; + float total_backward_delay = sink_node_info.backward_path_delay; + float total_backward_congestion = sink_node_info.backward_path_congestion; + + // Get backwards path cost, delay, and congestion from current node + t_rr_node_route_inf curr_node_info = route_ctx.rr_node_route_inf[curr_inode]; + float current_backward_cost = curr_node_info.backward_path_cost; + float current_backward_delay = curr_node_info.backward_path_delay; + float current_backward_congestion = curr_node_info.backward_path_congestion; + + // Get the difference in the coordinates in the current and sink nodes. + // Note: we are not using util::get_xy_deltas() because this always gives positive values + // unless the current node is the source node. Using util::get_adjusted_rr_position therefore + // gives us more information. + auto [from_x, from_y] = util::get_adjusted_rr_position(curr_inode); + auto [to_x, to_y] = util::get_adjusted_rr_position(sink_inode); - auto tile_type = physical_tile_type(cluster_block_id); - tile_dimensions[sink_inode] = std::pair(std::to_string(tile_type->width), std::to_string(tile_type->height)); - } else { - atom_block_names[sink_inode] = "--"; - atom_block_models[sink_inode] = "--"; - cluster_block_types[sink_inode] = "--"; - tile_dimensions[sink_inode] = {"--", "--"}; - } - } + int delta_x = to_x - from_x; + int delta_y = to_y - from_y; - VTR_ASSERT_SAFE(atom_block_names.find(sink_inode) != atom_block_names.end()); - VTR_ASSERT_SAFE(atom_block_models.find(sink_inode) != atom_block_models.end()); - VTR_ASSERT_SAFE(cluster_block_types.find(sink_inode) != cluster_block_types.end()); - VTR_ASSERT_SAFE(tile_dimensions.find(sink_inode) != tile_dimensions.end()); + // Calculate the actual cost, delay, and congestion from the current node to the sink. + float actual_cost = total_backward_cost - current_backward_cost; + float actual_delay = total_backward_delay - current_backward_delay; + float actual_congestion = total_backward_congestion - current_backward_congestion; - std::string block_name = atom_block_names[sink_inode]; - std::string atom_block_model = atom_block_models[sink_inode]; - std::string cluster_block_type = cluster_block_types[sink_inode]; - auto [tile_width, tile_height] = tile_dimensions[sink_inode]; + // Get the cost, delay, and congestion estimates made by the lookahead. + // Note: lookahead_cost = lookahead_delay * criticality + lookahead_congestion * (1. - criticality) + float lookahead_cost = router_lookahead.get_expected_cost(curr_inode, sink_inode, cost_params, 0.0); + auto [lookahead_delay, lookahead_congestion] = router_lookahead.get_expected_delay_and_cong(curr_inode, sink_inode, cost_params, 0.0); + // Get the current node's type and length std::string node_type_str = rr_graph.node_type_string(curr_inode); std::string node_length = (node_type_str == "CHANX" || node_type_str == "CHANX") ? std::to_string(rr_graph.node_length(curr_inode)) : "--"; + /* Write out all info */ + lookahead_verifier_csv << iteration << ","; // iteration no. lookahead_verifier_csv << source_inode << ","; // source node lookahead_verifier_csv << sink_inode << ","; // sink node @@ -143,9 +162,9 @@ void LookaheadProfiler::record(int iteration, lookahead_verifier_csv << i << ","; // num. nodes from sink lookahead_verifier_csv << delta_x << ","; // delta x lookahead_verifier_csv << delta_y << ","; // delta y - lookahead_verifier_csv << djikstra_cost << ","; // actual cost - lookahead_verifier_csv << djikstra_delay << ","; // actual delay - lookahead_verifier_csv << djikstra_congestion << ","; // actual congestion + lookahead_verifier_csv << actual_cost << ","; // actual cost + lookahead_verifier_csv << actual_delay << ","; // actual delay + lookahead_verifier_csv << actual_congestion << ","; // actual congestion lookahead_verifier_csv << lookahead_cost << ","; // predicted cost lookahead_verifier_csv << lookahead_delay << ","; // predicted delay lookahead_verifier_csv << lookahead_congestion << ","; // predicted congestion diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index 8d1c6c0e3f9..82467996db1 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -3,14 +3,35 @@ #include #include -#include "rr_graph_fwd.h" + #include "connection_router_interface.h" #include "router_lookahead.h" +#include "rr_graph_fwd.h" +/** + * @brief A class which records information used to profile the router lookahead: most importantly, + * the actual cost (delay and congestion) from nodes to the sink to which they have been routed, as + * well as the lookahead's estimation of this cost. + */ class LookaheadProfiler { public: - LookaheadProfiler(); + LookaheadProfiler() + : is_empty(true) {} + /** + * @brief Record information on nodes on a path from a source to a sink. + * + * @param iteration The router iteration. + * @param target_net_pin_index Target pin of this sink in the net. + * @param cost_params + * @param router_lookahead + * @param net_id + * @param net_list + * @param branch_inodes A path from a sink to its source, as a vector of nodes. + * + * @warning + * branch_inodes must be a backwards path, from a sink node to a source node. + */ void record(int iteration, int target_net_pin_index, const t_conn_cost_params& cost_params, @@ -20,11 +41,17 @@ class LookaheadProfiler { std::vector branch_inodes); private: + ///@breif The output filestream. std::ofstream lookahead_verifier_csv; + ///@brief Whether the output file is empty/not yet opened. bool is_empty; + ///@brief A map from sink node IDs to the names of their atom blocks. std::unordered_map atom_block_names; + ///@brief A map from sink node IDs to the names of the models of their atom blocks. std::unordered_map atom_block_models; + ///@brief A map from sink node IDs to the names of the types of their clusters. std::unordered_map cluster_block_types; + ///@brief A map from sink node IDs to the dimensions of their tiles (width, height). std::unordered_map> tile_dimensions; }; From 0826ad72f318ecc0733f38ed7a15fae07afef569 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Mon, 12 Aug 2024 16:49:05 -0400 Subject: [PATCH 06/25] More comments --- vpr/src/base/vpr_context.h | 3 +- vpr/src/route/connection_router.cpp | 12 +- vpr/src/route/connection_router.h | 1 + vpr/src/route/lookahead_profiler.cpp | 2 +- vpr/src/route/lookahead_profiler.h | 2 +- vpr/src/route/route_common.cpp | 12 +- vpr/src/route/router_delay_profiling.cpp | 3 + vpr/src/route/router_delay_profiling.h | 7 +- vpr/src/route/router_lookahead.h | 29 ++++ .../route/router_lookahead_compressed_map.cpp | 5 +- vpr/src/route/router_lookahead_map.cpp | 144 +++++++++--------- vpr/src/route/router_lookahead_map.h | 2 +- 12 files changed, 136 insertions(+), 86 deletions(-) diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index 62d566f3837..f23330e52e0 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -37,9 +37,10 @@ #ifndef NO_SERVER #include "gateio.h" -# include "lookahead_profiler.h" #include "taskresolver.h" +# include "lookahead_profiler.h" + class SetupHoldTimingInfo; class PostClusterDelayCalculator; diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 07e6539557e..cf401c9c4a8 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -924,9 +924,15 @@ 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, backward_path_delay, backward_path_congestion, R_upstream); + push_back_node(&heap_, + rr_node_route_inf_, + inode, + tot_cost, + RREdgeId::INVALID(), + backward_path_cost, + backward_path_delay, + backward_path_congestion, + R_upstream); } else { float expected_total_cost = compute_node_cost_using_rcv(cost_params, inode, target_node, rt_node.Tdel, 0, R_upstream); diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index 400def4cf6c..4bb8a80fb7d 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -127,6 +127,7 @@ class ConnectionRouter : public ConnectionRouterInterface { // Ensure route budgets have been calculated before enabling this void set_rcv_enabled(bool enable) final; + // Get a const reference to the router's lookahead const RouterLookahead& get_router_lookahead() const { return router_lookahead_; } diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index a5d1c873e6a..a3c47ba56be 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -18,7 +18,7 @@ void LookaheadProfiler::record(int iteration, const RouterLookahead& router_lookahead, const ParentNetId& net_id, const Netlist<>& net_list, - std::vector branch_inodes) { + const std::vector& branch_inodes) { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index 82467996db1..ce81b1d02a5 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -38,7 +38,7 @@ class LookaheadProfiler { const RouterLookahead& router_lookahead, const ParentNetId& net_id, const Netlist<>& net_list, - std::vector branch_inodes); + const std::vector& branch_inodes); private: ///@breif The output filestream. diff --git a/vpr/src/route/route_common.cpp b/vpr/src/route/route_common.cpp index 0dd2dfb89a9..8a3de79134a 100644 --- a/vpr/src/route/route_common.cpp +++ b/vpr/src/route/route_common.cpp @@ -839,9 +839,15 @@ 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., 0., 0.); + add_node_to_heap(heap, + route_ctx.rr_node_route_inf, + to_node, + cost, + RREdgeId::INVALID(), + 0., + 0., + 0., + 0.); } for (ipin = 0; ipin < num_local_opin; ipin++) { diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index 32d49256acf..02cad1e9cb0 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -149,6 +149,9 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, float RouterDelayProfiler::get_min_delay(int physical_tile_type_idx, int from_layer, int to_layer, int dx, int dy) const { return min_delays_[physical_tile_type_idx][from_layer][to_layer][dx][dy]; } +const Netlist<>& RouterDelayProfiler::get_net_list() const { + return net_list_; +} //Returns the shortest path delay from src_node to all RR nodes in the RR graph, or NaN if no path exists vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src_rr_node, diff --git a/vpr/src/route/router_delay_profiling.h b/vpr/src/route/router_delay_profiling.h index e2b10d2fff5..5048f387c50 100644 --- a/vpr/src/route/router_delay_profiling.h +++ b/vpr/src/route/router_delay_profiling.h @@ -43,9 +43,10 @@ class RouterDelayProfiler { */ float get_min_delay(int physical_tile_type_idx, int from_layer, int to_layer, int dx, int dy) const; - const Netlist<>& get_net_list() { - return net_list_; - } + /** + * @brief Get a const reference to the netlist. + */ + const Netlist<>& get_net_list() const; private: const Netlist<>& net_list_; diff --git a/vpr/src/route/router_lookahead.h b/vpr/src/route/router_lookahead.h index 3deff54a312..70041d4caf5 100644 --- a/vpr/src/route/router_lookahead.h +++ b/vpr/src/route/router_lookahead.h @@ -15,15 +15,44 @@ class RouterLookahead { public: /** * @brief Get expected cost from node to target_node. + * * @attention Either compute or read methods must be invoked before invoking get_expected_cost. + * * @param node The source node from which the cost to the target node is obtained. * @param target_node The target node to which the cost is obtained. * @param params Contain the router parameter such as connection criticality, etc. Used to calculate the cost based on the delay and congestion costs. * @param R_upstream Upstream resistance to get to the "node". + * * @return */ virtual float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; + + /** + * @brief Get expected (delay, congestion) from node to target_node. + * + * @attention Either compute or read methods must be invoked before invoking get_expected_delay_and_cong. + * + * @param node The source node from which the cost to the target node is obtained. + * @param target_node The target node to which the cost is obtained. + * @param params Contain the router parameter such as connection criticality, etc. + * @param R_upstream Upstream resistance to get to the "node". + * + * @return (delay, congestion) + * + * @warning (delay, congestion) are NOT multiplied by (params.criticality, 1. - params.criticality), respectively. + * scale_delay_and_cong_by_criticality should be called after this function before adding these to calculate the + * expected total cost. + */ virtual std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; + + /** + * @brief Multiply delay by params.criticality and cong by (1. - params.criticality). Used in conjunction with + * get_expected_delay_and_cong to calculate the total expected cost. + * + * @param delay + * @param cong + * @param params + */ void scale_delay_and_cong_by_criticality(float& delay, float& cong, const t_conn_cost_params& params) const; /** diff --git a/vpr/src/route/router_lookahead_compressed_map.cpp b/vpr/src/route/router_lookahead_compressed_map.cpp index aed3319e8c9..9c313a7dd11 100644 --- a/vpr/src/route/router_lookahead_compressed_map.cpp +++ b/vpr/src/route/router_lookahead_compressed_map.cpp @@ -422,7 +422,10 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId } } -std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& /*params*/, float) const { +std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, + RRNodeId to_node, + const t_conn_cost_params& /*params*/, + float /*R_upstream*/) const { auto& device_ctx = g_vpr_ctx.device(); auto& rr_graph = device_ctx.rr_graph; diff --git a/vpr/src/route/router_lookahead_map.cpp b/vpr/src/route/router_lookahead_map.cpp index 7a71cb09ec9..549cd3a7b8f 100644 --- a/vpr/src/route/router_lookahead_map.cpp +++ b/vpr/src/route/router_lookahead_map.cpp @@ -1,25 +1,25 @@ /* -* The router lookahead provides an estimate of the cost from an intermediate node to the target node -* during directed (A*-like) routing. -* -* The VPR 7.0 lookahead (route/route_timing.c ==> get_timing_driven_expected_cost) lower-bounds the remaining delay and -* congestion by assuming that a minimum number of wires, of the same type as the current node being expanded, can be used -* to complete the route. While this method is efficient, it can run into trouble with architectures that use -* multiple interconnected wire types. -* -* The lookahead in this file performs undirected Dijkstra searches to evaluate many paths through the routing network, -* starting from all the different wire types in the routing architecture. This ensures the lookahead captures the -* effect of inter-wire connectivity. This information is then reduced into a delta_x delta_y based lookup table for -* reach source wire type (f_cost_map). This is used for estimates from CHANX/CHANY -> SINK nodes. See Section 3.2.4 -* in Oleg Petelin's MASc thesis (2016) for more discussion. -* -* To handle estimates starting from SOURCE/OPIN's the lookahead also creates a small side look-up table of the wire types -* which are reachable from each physical tile type's SOURCEs/OPINs (f_src_opin_delays). This is used for -* SRC/OPIN -> CHANX/CHANY estimates. -* -* In the case of SRC/OPIN -> SINK estimates the results from the two look-ups are added together (and the minimum taken -* if there are multiple possibilities). -*/ + * The router lookahead provides an estimate of the cost from an intermediate node to the target node + * during directed (A*-like) routing. + * + * The VPR 7.0 lookahead (route/route_timing.c ==> get_timing_driven_expected_cost) lower-bounds the remaining delay and + * congestion by assuming that a minimum number of wires, of the same type as the current node being expanded, can be used + * to complete the route. While this method is efficient, it can run into trouble with architectures that use + * multiple interconnected wire types. + * + * The lookahead in this file performs undirected Dijkstra searches to evaluate many paths through the routing network, + * starting from all the different wire types in the routing architecture. This ensures the lookahead captures the + * effect of inter-wire connectivity. This information is then reduced into a delta_x delta_y based lookup table for + * reach source wire type (f_cost_map). This is used for estimates from CHANX/CHANY -> SINK nodes. See Section 3.2.4 + * in Oleg Petelin's MASc thesis (2016) for more discussion. + * + * To handle estimates starting from SOURCE/OPIN's the lookahead also creates a small side look-up table of the wire types + * which are reachable from each physical tile type's SOURCEs/OPINs (f_src_opin_delays). This is used for + * SRC/OPIN -> CHANX/CHANY estimates. + * + * In the case of SRC/OPIN -> SINK estimates the results from the two look-ups are added together (and the minimum taken + * if there are multiple possibilities). + */ #include #include @@ -51,8 +51,8 @@ static constexpr int VALID_NEIGHBOR_NUMBER = 3; /* when a list of delay/congestion entries at a coordinate in Cost_Entry is boiled down to a single -* representative entry, this enum is passed-in to specify how that representative entry should be -* calculated */ + * representative entry, this enum is passed-in to specify how that representative entry should be + * calculated */ enum e_representative_entry_method { FIRST = 0, //the first cost that was recorded SMALLEST, //the smallest-delay cost recorded @@ -69,9 +69,9 @@ t_wire_cost_map f_wire_cost_map; /******** File-Scope Functions ********/ /*** -* @brief Fill f_wire_cost_map. It is a look-up table from CHANX/CHANY (to SINKs) for various distances -* @param segment_inf -*/ + * @brief Fill f_wire_cost_map. It is a look-up table from CHANX/CHANY (to SINKs) for various distances + * @param segment_inf + */ static util::Cost_Entry get_wire_cost_entry(e_rr_type rr_type, int seg_index, int from_layer_num, @@ -82,50 +82,50 @@ static util::Cost_Entry get_wire_cost_entry(e_rr_type rr_type, static void compute_router_wire_lookahead(const std::vector& segment_inf); /*** -* @brief Compute the cost from pin to sinks of tiles - Compute the minimum cost to get to each tile sink from pins on the cluster -* @param intra_tile_pin_primitive_pin_delay -* @param tile_min_cost -* @param det_routing_arch -* @param device_ctx -*/ + * @brief Compute the cost from pin to sinks of tiles - Compute the minimum cost to get to each tile sink from pins on the cluster + * @param intra_tile_pin_primitive_pin_delay + * @param tile_min_cost + * @param det_routing_arch + * @param device_ctx + */ static void compute_tiles_lookahead(std::unordered_map& intra_tile_pin_primitive_pin_delay, std::unordered_map>& tile_min_cost, const t_det_routing_arch& det_routing_arch, const DeviceContext& device_ctx); /*** -* @brief Compute the cose from tile pins to tile sinks -* @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost -* @param physical_tile -* @param det_routing_arch -* @param delayless_switch -*/ + * @brief Compute the cose from tile pins to tile sinks + * @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost + * @param physical_tile + * @param det_routing_arch + * @param delayless_switch + */ static void compute_tile_lookahead(std::unordered_map& intra_tile_pin_primitive_pin_delay, t_physical_tile_type_ptr physical_tile, const t_det_routing_arch& det_routing_arch, const int delayless_switch); /*** -* @brief Compute the minimum cost to get to the sinks from pins on the cluster -* @param tile_min_cost [physical_tile_idx][sink_ptc_num] -> min_cost -* @param physical_tile -* @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost -*/ + * @brief Compute the minimum cost to get to the sinks from pins on the cluster + * @param tile_min_cost [physical_tile_idx][sink_ptc_num] -> min_cost + * @param physical_tile + * @param intra_tile_pin_primitive_pin_delay [physical_tile_type_idx][from_pin_ptc_num][sink_ptc_num] -> cost + */ static void store_min_cost_to_sinks(std::unordered_map>& tile_min_cost, t_physical_tile_type_ptr physical_tile, const std::unordered_map& intra_tile_pin_primitive_pin_delay); /** -* @brief Iterate over the first (channel type) and second (segment type) dimensions of f_wire_cost_map to get the minimum cost for each dx and dy_ -* @param internal_opin_global_cost_map This map is populated in this function. [dx][dy] -> cost -*/ + * @brief Iterate over the first (channel type) and second (segment type) dimensions of f_wire_cost_map to get the minimum cost for each dx and dy_ + * @param internal_opin_global_cost_map This map is populated in this function. [dx][dy] -> cost + */ static void min_chann_global_cost_map(vtr::NdMatrix& distance_min_cost); /** -* @brief // Given the src/opin map of each physical tile type, iterate over all OPINs/sources of a type and create -* the minimum cost map across all of them for each tile type. -* @param src_opin_delays -* @param distance_min_cost -*/ + * @brief // Given the src/opin map of each physical tile type, iterate over all OPINs/sources of a type and create + * the minimum cost map across all of them for each tile type. + * @param src_opin_delays + * @param distance_min_cost + */ static void min_opin_distance_cost_map(const util::t_src_opin_delays& src_opin_delays, vtr::NdMatrix& distance_min_cost); // Read the file and fill intra_tile_pin_primitive_pin_delay and tile_min_cost @@ -144,17 +144,17 @@ static void fill_in_missing_lookahead_entries(int segment_index, e_rr_type chan_ static util::Cost_Entry get_nearby_cost_entry(int from_layer_num, int x, int y, int to_layer_num, int segment_index, int chan_index); /** -* @brief Fill in the missing entry in router lookahead map -* If there is a missing entry in the router lookahead, search among its neighbors in a 3x3 window. If there are `VALID_NEIGHBOR_NUMBER` valid entries, -* take the average of them and fill in the missing entry. -* @param from_layer_num The layer num of the source node -* @param missing_dx Dx of the missing input -* @param missing_dy Dy of the missing input -* @param to_layer_num The layer num of the destination point -* @param segment_index The segment index of the source node -* @param chan_index The channel index of the source node -* @return The cost for the missing entry -*/ + * @brief Fill in the missing entry in router lookahead map + * If there is a missing entry in the router lookahead, search among its neighbors in a 3x3 window. If there are `VALID_NEIGHBOR_NUMBER` valid entries, + * take the average of them and fill in the missing entry. + * @param from_layer_num The layer num of the source node + * @param missing_dx Dx of the missing input + * @param missing_dy Dy of the missing input + * @param to_layer_num The layer num of the destination point + * @param segment_index The segment index of the source node + * @param chan_index The channel index of the source node + * @return The cost for the missing entry + */ static util::Cost_Entry get_nearby_cost_entry_average_neighbour(int from_layer_num, int missing_dx, int missing_dy, @@ -527,11 +527,11 @@ static void compute_router_wire_lookahead(const std::vector& segm } /* boil down the cost list in routing_cost_map at each coordinate to a representative cost entry and store it in the lookahead - * cost map */ + * cost map */ set_lookahead_map_costs(from_layer_num, segment_inf.seg_index, chan_type, routing_cost_map); /* fill in missing entries in the lookahead cost map by copying the closest cost entries (cost map was computed based on - * a reference coordinate > (0,0) so some entries that represent a cross-chip distance have not been computed) */ + * a reference coordinate > (0,0) so some entries that represent a cross-chip distance have not been computed) */ fill_in_missing_lookahead_entries(segment_inf.seg_index, chan_type); } } @@ -585,7 +585,7 @@ static void fill_in_missing_lookahead_entries(int segment_index, e_rr_type chan_ /* returns a cost entry in the f_wire_cost_map that is near the specified coordinates (and preferably towards (0,0)) */ static util::Cost_Entry get_nearby_cost_entry(int from_layer_num, int x, int y, int to_layer_num, int segment_index, int chan_index) { /* compute the slope from x,y to 0,0 and then move towards 0,0 by one unit to get the coordinates - * of the cost entry to be copied */ + * of the cost entry to be copied */ //VTR_ASSERT(x > 0 || y > 0); //Asertion fails in practise. TODO: debug @@ -796,12 +796,12 @@ static void min_chann_global_cost_map(vtr::NdMatrix& distan static void min_opin_distance_cost_map(const util::t_src_opin_delays& src_opin_delays, vtr::NdMatrix& distance_min_cost) { /** - * This function calculates and stores the minimum cost to reach a point on layer `n_sink`, which is `dx` and `dy` further from the current point - * on layer `n_source` and is located on physical tile type `t`. To compute this cost, the function iterates over all output pins of tile `t`, - * and for each pin, iterates over all segment types accessible by it. It then determines and stores the minimum cost to the destination point. - * "src_opin_delays" stores the routing segments accessible by each OPIN of each physical type on each layer. After getting the accessible segment types, - * "get_wire_cost_entry" is called to get the cost from that segment type to the destination point. - */ + * This function calculates and stores the minimum cost to reach a point on layer `n_sink`, which is `dx` and `dy` further from the current point + * on layer `n_source` and is located on physical tile type `t`. To compute this cost, the function iterates over all output pins of tile `t`, + * and for each pin, iterates over all segment types accessible by it. It then determines and stores the minimum cost to the destination point. + * "src_opin_delays" stores the routing segments accessible by each OPIN of each physical type on each layer. After getting the accessible segment types, + * "get_wire_cost_entry" is called to get the cost from that segment type to the destination point. + */ int num_tile_types = g_vpr_ctx.device().physical_tile_types.size(); int num_layers = g_vpr_ctx.device().grid.get_num_layers(); int width = (int)g_vpr_ctx.device().grid.width(); @@ -1090,4 +1090,4 @@ void write_router_lookahead(const std::string& file) { writeMessageToFile(file, &builder); } -#endif \ No newline at end of file +#endif diff --git a/vpr/src/route/router_lookahead_map.h b/vpr/src/route/router_lookahead_map.h index dc6c224853e..2ae9c5912e5 100644 --- a/vpr/src/route/router_lookahead_map.h +++ b/vpr/src/route/router_lookahead_map.h @@ -54,4 +54,4 @@ typedef vtr::NdMatrix t_wire_cost_map; //[0..num_layers][0. // is the layer number that the target node is on. void read_router_lookahead(const std::string& file); -void write_router_lookahead(const std::string& file); \ No newline at end of file +void write_router_lookahead(const std::string& file); From e8ea974b8f2e1d73fb18535f9e353cf64802ff24 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Mon, 12 Aug 2024 17:02:50 -0400 Subject: [PATCH 07/25] Moved parse_lookahead_data.py --- vpr/src/route/lookahead_profiler.cpp | 3 +-- vpr/src/route/lookahead_profiler.h | 4 ++-- .../profiling_utils/parse_lookahead_data.py | 0 3 files changed, 3 insertions(+), 4 deletions(-) rename parse_lookahead_data.py => vtr_flow/profiling_utils/parse_lookahead_data.py (100%) diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index a3c47ba56be..d911667b3c7 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -66,10 +66,9 @@ void LookaheadProfiler::record(int iteration, if (iteration < 1) return; - RRNodeId source_inode = branch_inodes.back(); + RRNodeId source_inode = branch_inodes.back(); // Not necessarily an actual SOURCE node. RRNodeId sink_inode = branch_inodes.front(); - VTR_ASSERT(rr_graph.node_type(source_inode) == SOURCE); VTR_ASSERT(rr_graph.node_type(sink_inode) == SINK); /* Get sink node attributes (atom block name, atom block model, cluster type, tile dimensions) */ diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index ce81b1d02a5..4ca12414ca7 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -27,10 +27,10 @@ class LookaheadProfiler { * @param router_lookahead * @param net_id * @param net_list - * @param branch_inodes A path from a sink to its source, as a vector of nodes. + * @param branch_inodes A backwards path of nodes, starting at a sink. * * @warning - * branch_inodes must be a backwards path, from a sink node to a source node. + * branch_inodes must be a backwards path, starting at a sink node. */ void record(int iteration, int target_net_pin_index, diff --git a/parse_lookahead_data.py b/vtr_flow/profiling_utils/parse_lookahead_data.py similarity index 100% rename from parse_lookahead_data.py rename to vtr_flow/profiling_utils/parse_lookahead_data.py From 0b5a75211da32b44d8a0dcbd3fb7d96f10888e5f Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Mon, 12 Aug 2024 18:49:16 -0400 Subject: [PATCH 08/25] Moved, refactored, and commented parse_lookahead_data.py --- .../profiling_utils/parse_lookahead_data.py | 522 +++++++++--------- 1 file changed, 276 insertions(+), 246 deletions(-) rename vtr_flow/{ => scripts}/profiling_utils/parse_lookahead_data.py (66%) mode change 100644 => 100755 diff --git a/vtr_flow/profiling_utils/parse_lookahead_data.py b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py old mode 100644 new mode 100755 similarity index 66% rename from vtr_flow/profiling_utils/parse_lookahead_data.py rename to vtr_flow/scripts/profiling_utils/parse_lookahead_data.py index 7cb4aed554e..4a39099b780 --- a/vtr_flow/profiling_utils/parse_lookahead_data.py +++ b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import os import shutil import sys @@ -10,21 +12,35 @@ import seaborn as sns import argparse from pathlib import Path -from multiprocessing import Process, Lock +from multiprocessing import Process, Lock, Queue -max_additional_threads: int +# Output directory +output_dir = "../tasks/lookahead_verifier_output" +# The graph types (pie, heatmap, bar, scatter) that will be created graph_types: list +# The components that will be used for graphs (cost, delay, congestion) components: list +# Whether to create graphs of absolute error absolute_output: bool +# Whether to create graphs of signed error signed_output: bool +# Whether to create csv with all data extracted/calculated csv_data: bool +# Whether to create graphs using data from first iterations first_it_output: bool +# Whether to create graphs using data from all iterations all_it_output: bool +# Do not overwrite existing files no_replace: bool +# Print to terminal should_print: bool +# The percent threshold to the be upper limit for the error of the data used to create pie graphs percent_error_threshold: float +# Exclusions in the form exclusions[column_name] = [(boolean_op, value), (boolean_op, value), ...] exclusions = {} +# Column names. IMPORTANT: Up until "criticality", these column names must match +# those that are written out by LookaheadProfiler. column_names = [ "iteration no.", "source node", @@ -59,44 +75,46 @@ "test name" ] -processes = [] +# Lock and Queue for multithreading lock = Lock() +q = Queue() +# Check if a component is valid, otherwise raise exception def check_valid_component(comp: str): if not (comp == "cost" or comp == "delay" or comp == "congestion"): raise Exception("ComponentType") +# Check if a column name is valid, otherwise raise exception def check_valid_column(column: str): if column not in column_names: raise Exception("ColumnName") +# Check if a DataFrame is valid, otherwise raise exception def check_valid_df(df: pd.DataFrame): if df.columns.to_list() != column_names: raise Exception("IncompleteDataFrame") +# Create a directory def make_dir(directory: str, clean: bool): - if len(processes) != 0: - lock.acquire() + lock.acquire() if os.path.exists(directory): if clean: shutil.rmtree(directory) else: - if len(processes) != 0: - lock.release() - + lock.release() return os.makedirs(directory) - if len(processes) != 0: - lock.release() + lock.release() +# Convert column names with spaces to (shorter) path names with underscores def column_file_name(column_name: str) -> str: file_name = "" @@ -114,18 +132,13 @@ def column_file_name(column_name: str) -> str: elif column_name == "num. nodes from sink": file_name = "node_distance" else: - for char in column_name: - if not char.isalnum() and char != " ": - continue - - if char == " ": - char = "_" - - file_name += char + file_name = column_name.replace(" ", "_") return file_name +# For lists which include "--", make sure this comes at the top of the list, followed +# by the rest of the list sorted normally. def custom_sort(column: list) -> list: try: list(map(int, column)) @@ -142,19 +155,6 @@ def custom_sort(column: list) -> list: return sorted(column) -def start_process(proc: Process): - while len(processes) == max_additional_threads: - for p in processes: - if not p.is_alive(): - processes.remove(p) - break - - processes.append(proc) - assert len(processes) <= max_additional_threads - - proc.start() - - class ScatterPlotType(Enum): PREDICTION = 0 ERROR = 1 @@ -165,71 +165,86 @@ def __init__(self, df: pd.DataFrame, results_folder: str, test_name: str): self.__df = df.copy() self.__df.insert(len(self.__df.columns), "color", "#0000ff") + # Create a DataFrame with only data from first iteration self.__df_first_it = self.__df[self.__df["iteration no."].isin([1])][:] - self.__directory = "./lookahead_verifier_output/" + results_folder - + self.__directory = os.path.join(output_dir, results_folder) + + self.__sub_dirs = [ + os.path.join(self.__directory, "actual_vs_prediction"), + os.path.join(self.__directory, "actual_vs_error"), + os.path.join(self.__directory, "bar_absolute_error"), + os.path.join(self.__directory, "bar_error"), + os.path.join(self.__directory, "heatmap_absolute_error"), + os.path.join(self.__directory, "heatmap_error"), + os.path.join(self.__directory, "proportion_under_threshold"), + ] for directory in self.__sub_dirs: make_dir(directory, False) self.__test_name = test_name - __df: pd.DataFrame - __df_first_it: pd.DataFrame - __df_ra: pd.DataFrame - __directory = "./lookahead_verifier_output/unspecified" - __test_name = "" - - __sub_dirs = [ - __directory + "/actual_vs_prediction", - __directory + "/actual_vs_error", - __directory + "/bar_absolute_error", - __directory + "/bar_error", - __directory + "/heatmap_absolute_error", - __directory + "/heatmap_error", - __directory + "/proportion_under_threshold", - __directory + "/routing_attempt_rate" - ] - - __standard_scatter_columns = [ - "iteration no.", - "sink atom block model", - "sink cluster block type", - "node type", - "node length", - "test name", - ] - __standard_bar_columns = [ - "num. nodes from sink", - "sink atom block model", - "sink cluster block type", - "node type", - "node length", - "test name", - ] - - __barh_types = ["sink block name", "sink atom block model", "sink cluster block type", "node type", "test name"] - - __sink_block_attributes = ["sink atom block model", "sink cluster block type", "sink cluster tile height", - "test name"] - __sinks_by_attribute = {} + # The standard columns to use to color scatter plots + self.__standard_scatter_columns = [ + "iteration no.", + "sink atom block model", + "sink cluster block type", + "node type", + "node length", + "test name", + ] + # The standard columns to use to split data by for bar graphs and pie charts + self.__standard_bar_columns = [ + "num. nodes from sink", + "sink atom block model", + "sink cluster block type", + "node type", + "node length", + "test name", + ] + + # The columns for which horizontal bar graphs should be produced + self.__barh_types = ["sink block name", + "sink atom block model", + "sink cluster block type", + "node type", + "test name"] + + # Write list of exclusions onto output png + def write_exclusions_info(self): + if len(exclusions): + excl_msg = "Exclusions: " + for key, val in exclusions.items(): + for item in val: + excl_msg += key + " " + item[0] + " " + item[1] + ", " + + excl_msg = excl_msg[0:-2] + + plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") + # Create a scatter plot displaying actual [comp] vs. either predicted [comp] or error + # comp: The component (cost, delay, or congestion) + # plot_type: PREDICTION or ERROR (vs. actual [comp]) + # legend_column: The DF column to use to color the plot + # first_it_only: Whether to create a graph only using self.__df_first_it def make_scatter_plot( self, comp: str, plot_type: ScatterPlotType, legend_column: str, first_it_only: bool ): if (not first_it_output and first_it_only) or (not all_it_output and not first_it_only): return + # Check that the component and column name are valid check_valid_component(comp) check_valid_column(legend_column) + # Determine the graph title, directory, and file name title, curr_dir = "", "" if plot_type == ScatterPlotType.PREDICTION: title = "Actual vs Predicted " + comp + " for " - curr_dir = self.__directory + "/actual_vs_prediction/" + comp + curr_dir = os.path.join(self.__directory, "actual_vs_prediction", comp) elif plot_type == ScatterPlotType.ERROR: title = "Actual " + comp + " vs Error for " - curr_dir = self.__directory + "/actual_vs_error/" + comp + curr_dir = os.path.join(self.__directory, "actual_vs_error", comp) title = title.title() title += self.__test_name @@ -238,20 +253,21 @@ def make_scatter_plot( title += " (first iteration)" file_name = "_first_it" curr_df = self.__df_first_it - curr_dir += "/first_it" + curr_dir = os.path.join(curr_dir, "first_it") else: title += " (all iterations)" file_name = "_all_it" curr_df = self.__df - curr_dir += "/all_it" + curr_dir = os.path.join(curr_dir, "all_it") file_name = "color_" + column_file_name(legend_column) + "_" + comp + file_name + ".png" - if no_replace and os.path.exists(curr_dir + "/" + file_name): + if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return make_dir(curr_dir, False) + # Determine colors for legend num_colors = self.__df[legend_column].nunique() + 1 if legend_column == "iteration no.": green = Color("green") @@ -276,6 +292,7 @@ def make_scatter_plot( value_map[(curr_df.at[row, legend_column])] % len(colors) ] + # Create graph fig, ax = plt.subplots() for elem in custom_sort(list(curr_df[legend_column].unique())): section = curr_df[curr_df[legend_column].isin([elem])][:] @@ -307,22 +324,17 @@ def make_scatter_plot( ax.plot(curr_df[f"actual {comp}"], [0.0] * len(curr_df), color="black") plt.ylabel(f"{comp} error") - if len(exclusions) > 0: - excl_msg = "Exclusions: " - for key, val in exclusions.items(): - for item in val: - excl_msg += key + " " + item[0] + " " + item[1] + ", " - - excl_msg = excl_msg[0:-2] - - plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") - - plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + self.write_exclusions_info() + plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() if should_print: - print("Created ", curr_dir + "/" + file_name, sep="") + print("Created ", os.path.join(curr_dir, file_name), sep="") + # Make all scatter plots in self.__standard_scatter_columns + # test_name_plot: whether to create plots wherein legend is by test name. This option + # is useful when creating graphs for an entire benchmark, but not specific circuits + # (tests). def make_standard_scatter_plots(self, test_name_plot: bool): scatter_types = [ScatterPlotType.PREDICTION, ScatterPlotType.ERROR] @@ -331,23 +343,23 @@ def make_standard_scatter_plots(self, test_name_plot: bool): else: legend_columns = self.__standard_scatter_columns[0:-1] - bool_opts = [True, False] - for comp in components: for plot_type in scatter_types: for col in legend_columns: - for first_it in bool_opts: + for first_it in [True, False]: if first_it and col == "iteration no.": continue - if max_additional_threads == 0: - self.make_scatter_plot(comp, plot_type, col, first_it) - else: - proc = Process( - target=self.make_scatter_plot, args=(comp, plot_type, col, first_it) - ) - start_process(proc) + proc = Process( + target=self.make_scatter_plot, args=(comp, plot_type, col, first_it) + ) + q.put(proc) + # Create a bar graph displaying average error + # comp: The component (cost, delay, or congestion) + # column: The DF column to use to split data (i.e. create each bar) + # first_it_only: Whether to create a graph only using self.__df_first_it + # use_absolute: Whether to produce a graph using absolute error, as opposed to signed error def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolute: bool): if ( (not absolute_output and use_absolute) @@ -357,17 +369,19 @@ def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolu ): return + # Check that the component and column name are valid check_valid_component(comp) check_valid_column(column) + # Determine the graph title, directory, and file name title = "Average " + comp if use_absolute: title += " Absolute" - curr_dir = self.__directory + "/bar_absolute_error/" + comp + curr_dir = os.path.join(self.__directory, "bar_absolute_error", comp) y_label = "average absolute error" else: - curr_dir = self.__directory + "/bar_error/" + comp + curr_dir = os.path.join(self.__directory, "bar_error", comp) y_label = "average error" title += " Error by " + column + " for " @@ -378,22 +392,22 @@ def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolu title += " (first iteration)" file_name = "_first_it" curr_df = self.__df_first_it - curr_dir += "/first_it" + curr_dir = os.path.join(curr_dir, "first_it") else: title += " (all iterations)" file_name = "_all_it" curr_df = self.__df - curr_dir += "/all_it" + curr_dir = os.path.join(curr_dir, "all_it") file_name = "by_" + column_file_name(column) + "_" + comp + file_name + ".png" - if no_replace and os.path.exists(curr_dir + "/" + file_name): + if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return make_dir(curr_dir, False) + # Get DF with average error for each "type" encountered in column avg_error = {} - for elem in custom_sort(list(curr_df[column].unique())): rows = curr_df[column].isin([elem]) @@ -406,47 +420,44 @@ def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolu avg_error_df = pd.DataFrame({"col": avg_error}) + # Create graph if column in self.__barh_types: avg_error_df.plot.barh(title=title, xlabel=y_label, ylabel=column, legend=False) else: avg_error_df.plot.bar(title=title, xlabel=column, ylabel=y_label, legend=False) - if len(exclusions) > 0: - excl_msg = "Exclusions: " - for key, val in exclusions.items(): - for item in val: - excl_msg += key + " " + item[0] + " " + item[1] + ", " - - excl_msg = excl_msg[0:-2] - - plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") - - plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + self.write_exclusions_info() + plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() if should_print: - print("Created ", curr_dir + "/" + file_name, sep="") + print("Created ", os.path.join(curr_dir, file_name), sep="") + # Make all bar graphs in self.__standard_bar_columns + # test_name_plot: whether to create graph where data is split by test name. This option + # is useful when creating graphs for an entire benchmark, but not specific circuits + # (tests). def make_standard_bar_graphs(self, test_name_plot: bool): if test_name_plot: columns = self.__standard_bar_columns else: columns = self.__standard_bar_columns[0:-1] - bool_opts = [True, False] - for comp in components: for col in columns: - for use_abs in bool_opts: - for first_it in bool_opts: - if max_additional_threads == 0: - self.make_bar_graph(comp, col, use_abs, first_it) - else: - proc = Process( - target=self.make_bar_graph, args=(comp, col, use_abs, first_it) - ) - start_process(proc) - + for use_abs in [True, False]: + for first_it in [True, False]: + proc = Process( + target=self.make_bar_graph, args=(comp, col, use_abs, first_it) + ) + q.put(proc) + + # Create a heatmap comparing two quantitative columns + # comp: The component (cost, delay, or congestion) + # x_column: The column to be used for the x-axis + # y_column: The column to be used for the y-axis + # first_it_only: Whether to create a graph only using self.__df_first_it + # use_absolute: Whether to produce a graph using absolute error, as opposed to signed error def make_heatmap( self, comp: str, x_column: str, y_column: str, first_it_only: bool, use_absolute: bool ): @@ -458,18 +469,20 @@ def make_heatmap( ): return + # Check that the component and column names are valid check_valid_component(comp) check_valid_column(x_column) check_valid_column(y_column) + # Determine the graph title, directory, and file name title = "Average " + comp if use_absolute: title += " Absolute" - curr_dir = self.__directory + "/heatmap_absolute_error/" + comp + curr_dir = os.path.join(self.__directory, "heatmap_absolute_error", comp) scale_column = f"{comp} absolute error" else: - curr_dir = self.__directory + "/heatmap_error/" + comp + curr_dir = os.path.join(self.__directory, "heatmap_error", comp) scale_column = f"{comp} error" title += " Error Heatmap for " @@ -481,12 +494,12 @@ def make_heatmap( title += " (first iteration)" file_name = "_first_it" curr_df = self.__df_first_it - curr_dir += "/first_it" + curr_dir = os.path.join(curr_dir, "first_it") else: title += " (all iterations)" file_name = "_all_it" curr_df = self.__df - curr_dir += "/all_it" + curr_dir = os.path.join(curr_dir, "all_it") file_name = ( column_file_name(x_column) @@ -498,11 +511,12 @@ def make_heatmap( + ".png" ) - if no_replace and os.path.exists(curr_dir + "/" + file_name): + if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return make_dir(curr_dir, False) + # Get DF with average error for each "coordinate" in the heatmap df_avgs = pd.DataFrame(columns=[x_column, y_column, scale_column]) for i in custom_sort(list(curr_df[x_column].unique())): @@ -525,69 +539,58 @@ def make_heatmap( df_avgs = df_avgs.pivot(index=y_column, columns=x_column, values=scale_column) df_avgs = df_avgs.reindex(index=df_avgs.index[::-1]) + # Create heatmap if use_absolute: ax = sns.heatmap(df_avgs, cmap="rocket_r", vmin=0.0) else: ax = sns.heatmap(df_avgs, cmap="rocket_r") - if len(exclusions) > 0: - excl_msg = "Exclusions: " - for key, val in exclusions.items(): - for item in val: - excl_msg += key + " " + item[0] + " " + item[1] + ", " - - excl_msg = excl_msg[0:-2] - - plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") - + self.write_exclusions_info() ax.set_title(title, y=1.08) - plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() if should_print: - print("Created ", curr_dir + "/" + file_name, sep="") + print("Created ", os.path.join(curr_dir, file_name), sep="") + # Make "standard" heatmaps: (sink cluster tile width and sink cluster tile height) and + # (delta_x and delta_y) def make_standard_heatmaps(self): - bool_opts = [True, False] - for comp in components: - for first_it in bool_opts: - for use_abs in bool_opts: - if max_additional_threads == 0: - self.make_heatmap( + for first_it in [True, False]: + for use_abs in [True, False]: + proc = Process( + target=self.make_heatmap, + args=( comp, "sink cluster tile width", "sink cluster tile height", first_it, use_abs, - ) - self.make_heatmap(comp, "delta x", "delta y", first_it, use_abs) - else: - proc = Process( - target=self.make_heatmap, - args=( - comp, - "sink cluster tile width", - "sink cluster tile height", - first_it, - use_abs, - ), - ) - start_process(proc) - - proc = Process( - target=self.make_heatmap, - args=(comp, "delta x", "delta y", first_it, use_abs), - ) - start_process(proc) - + ), + ) + q.put(proc) + + proc = Process( + target=self.make_heatmap, + args=(comp, "delta x", "delta y", first_it, use_abs), + ) + q.put(proc) + + # Create a pie chart showing the proportion of cases where error is under percent_error_threshold + # comp: The component (cost, delay, or congestion) + # column: The column to split data by + # first_it_only: Whether to create a graph only using self.__df_first_it + # weighted: Whether to weight each section of the pie graph by the % error of that section def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: bool): if (not first_it_output and first_it_only) or (not all_it_output and not first_it_only): return + # Check that the component and column names are valid check_valid_component(comp) check_valid_column(column) + # Determine the graph title, directory, and file name title = f"Num. Mispredicts Under {percent_error_threshold:.1f}% {comp} Error" if weighted: @@ -597,36 +600,38 @@ def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: title = title.title() title += self.__test_name - curr_dir = self.__directory + "/proportion_under_threshold/" + comp + curr_dir = os.path.join(self.__directory, "proportion_under_threshold", comp) if first_it_only: title += " (first iteration)" file_name = "_first_it" curr_df = self.__df_first_it - curr_dir += "/first_it" + curr_dir = os.path.join(curr_dir, "first_it") else: title += " (all iterations)" file_name = "_all_it" curr_df = self.__df - curr_dir += "/all_it" + curr_dir = os.path.join(curr_dir, "all_it") file_name = "by_" + column_file_name(column) + "_" + comp + file_name if weighted: file_name += "_weighted" - curr_dir += "/weighted" + curr_dir = os.path.join(curr_dir, "weighted") else: - curr_dir += "/unweighted" + curr_dir = os.path.join(curr_dir, "unweighted") file_name += ".png" - if no_replace and os.path.exists(curr_dir + "/" + file_name): + if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return make_dir(curr_dir, False) + # Constrict DF to columns whose error is under threshold curr_df = curr_df[curr_df[f"{comp} % error"] < percent_error_threshold] + # Determine colors for sections num_colors = self.__df[column].nunique() + 1 colors_rgb = dp.get_colors(num_colors) colors = [] @@ -634,8 +639,8 @@ def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: color = tuple(map(round, tuple(255 * i for i in color))) colors.append("#{:02x}{:02x}{:02x}".format(color[0], color[1], color[2])) + # Get DF which is maps elements to the number of occurrences found in curr_df proportion = {} - for elem in custom_sort(list(curr_df[column].unique())): section = curr_df[curr_df[column].isin([elem])][:] @@ -646,47 +651,41 @@ def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: pie_df = pd.DataFrame.from_dict(proportion, orient="index", columns=[" "]) + # Create pie chart pie_df.plot.pie(y=" ", labeldistance=None, colors=colors) - if len(exclusions) > 0: - excl_msg = "Exclusions: " - for key, val in exclusions.items(): - for item in val: - excl_msg += key + " " + item[0] + " " + item[1] + ", " - - excl_msg = excl_msg[0:-2] - - plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") - + self.write_exclusions_info() plt.title(title, fontsize=8) plt.legend(loc="upper left", bbox_to_anchor=(1.08, 1), title=column) - - plt.savefig(curr_dir + "/" + file_name, dpi=300, bbox_inches="tight") + plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() if should_print: - print("Created ", curr_dir + "/" + file_name, sep='') + print("Created ", os.path.join(curr_dir, file_name), sep='') + # Make all pie chars in self.__standard_bar_columns + # test_name_plot: whether to create graph where data is split by test name. This option + # is useful when creating graphs for an entire benchmark, but not specific circuits + # (tests). def make_standard_pie_charts(self, test_name_plot: bool): if test_name_plot: columns = self.__standard_bar_columns else: columns = self.__standard_bar_columns[0:-1] - bool_opts = [True, False] - for comp in components: for col in columns: - for first_it in bool_opts: - for weighted in bool_opts: - if max_additional_threads == 0: - self.make_pie_chart(comp, col, first_it, weighted) - else: - proc = Process( - target=self.make_pie_chart, args=(comp, col, first_it, weighted) - ) - start_process(proc) + for first_it in [True, False]: + for weighted in [True, False]: + proc = Process( + target=self.make_pie_chart, args=(comp, col, first_it, weighted) + ) + q.put(proc) + # Make "standard" graphs of all types. + # test_name_plot: whether to create plots where data is split by test name. This option + # is useful when creating plots for an entire benchmark, but not specific circuits + # (tests). def make_standard_plots(self, test_name_plot: bool): if "pie" in graph_types: self.make_standard_pie_charts(test_name_plot) @@ -701,19 +700,24 @@ def make_standard_plots(self, test_name_plot: bool): self.make_standard_scatter_plots(test_name_plot) -def print_and_write(eggs, directory: str): +# Print to terminal and write to lookahead_stats_summary.txt +def print_and_write(string, directory: str): if should_print: - print(eggs, sep="") + print(string, sep="") orig_out = sys.stdout - stats_file = open(directory + "/lookahead_stats_summary.txt", "a") + stats_file = open(os.path.join(directory, "lookahead_stats_summary.txt"), "a") sys.stdout = stats_file - print(eggs, sep="") + print(string, sep="") sys.stdout = orig_out +# Print stats for a given component +# df: The DataFrame with all info +# comp: cost, delay, or congestion +# directory: output directory def print_stats(df: pd.DataFrame, comp: str, directory: str): check_valid_component(comp) @@ -730,6 +734,9 @@ def print_stats(df: pd.DataFrame, comp: str, directory: str): ) +# Write out stats for all components +# df: The DataFrame with all info +# directory: output directory def print_df_info(df: pd.DataFrame, directory: str): print_and_write(df, directory) @@ -737,6 +744,10 @@ def print_df_info(df: pd.DataFrame, directory: str): print_stats(df, comp, directory) +# Write out stats for the first iteration only, and for all iterations, as well +# as the csv_file containing the entire DataFrame +# df: The DataFrame with all info +# directory: output directory def record_df_info(df: pd.DataFrame, directory: str): check_valid_df(df) @@ -761,22 +772,21 @@ def record_df_info(df: pd.DataFrame, directory: str): directory, ) - def make_csv(df_out: pd.DataFrame, file_name: str) -> None: + def make_csv(df_out: pd.DataFrame, file_name: str): df_out.to_csv(file_name, index=False) - if csv_data and (not os.path.exists(directory + "/data.csv") or not no_replace): - if max_additional_threads == 0: - df.to_csv(directory + "/data.csv", index=False) - else: - proc = Process( - target=make_csv, args=(df, directory + "/data.csv") - ) - start_process(proc) + # Write out the csv + if csv_data and (not os.path.exists(os.path.join(directory, "data.csv")) or not no_replace): + proc = Process( + target=make_csv, args=(df, os.path.join(directory, "data.csv")) + ) + q.put(proc) if should_print: - print("Created ", directory + "/data.csv", sep="") + print("Created ", os.path.join(directory, "data.csv"), sep="") +# Calculate error columns from given csv file def create_error_columns(df: pd.DataFrame): df["cost error"] = df["predicted cost"] - df["actual cost"] df["cost absolute error"] = abs(df["cost error"]) @@ -796,6 +806,7 @@ def create_error_columns(df: pd.DataFrame): def main(): + # Parse arguments description = ( "Parses data from lookahead_verifier_info.csv file(s) generated when running VPR on this branch. " + "Create one or more csv files with, in the first column, the circuit/test name, and in the second " @@ -809,9 +820,11 @@ def main(): help="the text file which contains the csv files that will be parsed", nargs="+", ) + parser.add_argument( "-j", type=int, default=1, help="number of processes to use", metavar="NUM_PROC" ) + parser.add_argument( "-g", "--graph-types", @@ -822,6 +835,7 @@ def main(): help="create graphs of this type (bar, scatter, heatmap, pie, all)", choices=["bar", "scatter", "heatmap", "pie", "all"], ) + parser.add_argument( "-c", "--components", @@ -833,27 +847,34 @@ def main(): "all)", choices=["cost", "delay", "congestion", "all"], ) + parser.add_argument( "--absolute", action="store_true", help="create graphs using absolute error" ) + parser.add_argument( "--signed", action="store_true", help="create graphs graphs using signed error" ) + parser.add_argument( "--first-it", action="store_true", help="produce results using data from first iteration" ) + parser.add_argument( "--all-it", action="store_true", help="produce results using data from all iterations" ) + parser.add_argument("--csv-data", action="store_true", help="create csv file with all data") parser.add_argument( "--all", action="store_true", help="create all graphs, regardless of other options", ) + parser.add_argument("--exclude", type=str, default="", metavar="EXCLUSION", nargs="+", help="exclude cells that meet a given condition, in the form \"column_name [comparison " "operator] value\"") + parser.add_argument( "--collect", type=str, @@ -863,6 +884,7 @@ def main(): help="instead of producing results from individual input csv files, collect data from all input" "files, and produce results for this collection (note: FOLDER_NAME should not be a path)", ) + parser.add_argument( "--threshold", type=float, @@ -872,17 +894,20 @@ def main(): help="the percent threshold to the be upper limit for the error of the data used to create " "pie graphs", ) + parser.add_argument( "--replace", action="store_true", help="overwrite existing csv files and images if encountered", ) + parser.add_argument( "--dir-app", type=str, default="", metavar="FOLDER_SUFFIX", nargs=1, help="append output results folder name (ignored when using --collect)" ) + parser.add_argument( "--print", action="store_true", @@ -891,8 +916,8 @@ def main(): args = parser.parse_args() - global max_additional_threads - max_additional_threads = args.j - 1 + global q + q = Queue(args.j) global graph_types global components @@ -948,19 +973,15 @@ def main(): global should_print should_print = args.print - global exclusions - global exclusions for excl in args.exclude: operators = ["==", "!=", ">=", "<=", ">", "<"] key, val, op = "", "", "" for op_check in operators: - try: + if op_check in excl: key, val = excl.split(op_check) op = op_check break - except ValueError: - continue key, val = key.strip(), val.strip() @@ -973,14 +994,13 @@ def main(): try: int(val) - exclusions[key] += [(op, val)] + exclusions[key].append((op, val)) except ValueError: - exclusions[key] += [(op, "\"" + val + "\"")] + exclusions[key].append((op, "\"" + val + "\"")) - main_dir = "./lookahead_verifier_output" - make_dir(main_dir, False) + make_dir(output_dir, False) - df_complete = pd.DataFrame(columns=column_names) + df_complete = pd.DataFrame(columns=column_names) # The DF containing info across all given csv files csv_files_list = args.csv_files_list for file_list in csv_files_list: @@ -988,13 +1008,14 @@ def main(): if len(args.dir_app) > 0: output_folder += f"{args.dir_app[0]}" + # Get list of csv files with data df_files = pd.read_csv(file_list, header=None) tests = list(df_files.itertuples(index=False, name=None)) if len(tests) < 1: continue - df_global = pd.DataFrame(columns=column_names) + df_benchmark = pd.DataFrame(columns=column_names) # The DF containing all info for this benchmark for test_name, file_path in tests: if not os.path.isfile(file_path): @@ -1004,10 +1025,11 @@ def main(): if should_print: print("Reading data at " + file_path) - results_folder = f"{output_folder}/{test_name}" - results_folder_path = main_dir + "/" + results_folder + results_folder = os.path.join(output_folder, test_name) + results_folder_path = os.path.join(output_dir, results_folder) make_dir(results_folder_path, False) + # Read csv with lookahead data (or, a csv previously created by this script) df = pd.read_csv(file_path) df = df.reset_index(drop=True) df = df.drop(columns=["cost error", @@ -1021,6 +1043,7 @@ def main(): "congestion % error", "test name"], errors="ignore") + # Determine exclusions, and remove them from df for key, val in exclusions.items(): for item in val: ldict = {} @@ -1029,17 +1052,23 @@ def main(): df = ldict["df"] df = df.reset_index(drop=True) + # Calculate error columns and add test name column create_error_columns(df) df.insert(len(df.columns), "test name", test_name) - df_global = pd.concat([df_global, df]) + # Add current DF to DF for entire benchmark + df_benchmark = pd.concat([df_benchmark, df]) + + # If --collect option used, skip creating files for individual circuits if args.collect != "": continue + # Write out stats summary and csv file print_and_write("Test: " + test_name, results_folder_path) record_df_info(df, results_folder_path) - curr_plots = Graphs(df, f"{results_folder}/plots", test_name) + # Create plots + curr_plots = Graphs(df, os.path.join(results_folder, "plots"), test_name) curr_plots.make_standard_plots(False) if should_print: @@ -1047,29 +1076,33 @@ def main(): "\n----------------------------------------------------------------------------------------------" ) + # Create output files for entire benchmark + if len(tests) == 1: continue - results_folder = f"{output_folder}/__all__" - results_folder_path = main_dir + "/" + results_folder + results_folder = os.path.join(output_folder, "__all__") + results_folder_path = os.path.join(output_dir, results_folder) make_dir(results_folder_path, False) - df_global = df_global.reset_index(drop=True) + df_benchmark = df_benchmark.reset_index(drop=True) if args.collect != "": - df_complete = pd.concat([df_complete, df_global]) + df_complete = pd.concat([df_complete, df_benchmark]) continue print_and_write("Global results:\n", results_folder_path) - record_df_info(df_global, results_folder_path) + record_df_info(df_benchmark, results_folder_path) - global_plots = Graphs(df_global, f"{results_folder}/plots", f"All Tests ({output_folder})") + global_plots = Graphs(df_benchmark, os.path.join(results_folder, "plots"), f"All Tests ({output_folder})") global_plots.make_standard_plots(True) + # If --collect used, create output files for all csv files provided + if args.collect == "": return results_folder = args.collect[0] - results_folder_path = main_dir + "/" + results_folder + results_folder_path = os.path.join(output_dir, results_folder) if len(args.dir_app) > 0: results_folder_path += f"{args.dir_app[0]}" make_dir(results_folder_path, False) @@ -1078,12 +1111,9 @@ def main(): record_df_info(df_complete, results_folder_path) - global_plots = Graphs(df_complete, f"{results_folder}/plots", "All Tests") + global_plots = Graphs(df_complete, os.path.join(results_folder, "plots"), "All Tests") global_plots.make_standard_plots(True) - for p in processes: - p.join() - if __name__ == "__main__": main() From cbe1334634160571ca577fda3a69dce3cd83b314 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Mon, 12 Aug 2024 21:21:29 -0400 Subject: [PATCH 09/25] Fixed multithreading in parsing script --- .../profiling_utils/parse_lookahead_data.py | 85 +++++++------------ 1 file changed, 32 insertions(+), 53 deletions(-) diff --git a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py index 4a39099b780..0888af67295 100755 --- a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py +++ b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py @@ -12,10 +12,11 @@ import seaborn as sns import argparse from pathlib import Path -from multiprocessing import Process, Lock, Queue +from multiprocessing import Lock +from concurrent.futures import ThreadPoolExecutor # Output directory -output_dir = "../tasks/lookahead_verifier_output" +output_dir = "./vtr_flow/tasks/lookahead_verifier_output" # The graph types (pie, heatmap, bar, scatter) that will be created graph_types: list # The components that will be used for graphs (cost, delay, congestion) @@ -75,9 +76,9 @@ "test name" ] -# Lock and Queue for multithreading +# Lock and Pool for multithreading lock = Lock() -q = Queue() +pool = ThreadPoolExecutor(1) # Check if a component is valid, otherwise raise exception @@ -132,7 +133,7 @@ def column_file_name(column_name: str) -> str: elif column_name == "num. nodes from sink": file_name = "node_distance" else: - file_name = column_name.replace(" ", "_") + file_name = column_name.replace(" ", "_").replace(".", "") return file_name @@ -350,10 +351,7 @@ def make_standard_scatter_plots(self, test_name_plot: bool): if first_it and col == "iteration no.": continue - proc = Process( - target=self.make_scatter_plot, args=(comp, plot_type, col, first_it) - ) - q.put(proc) + pool.submit(self.make_scatter_plot, comp, plot_type, col, first_it) # Create a bar graph displaying average error # comp: The component (cost, delay, or congestion) @@ -427,6 +425,7 @@ def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolu avg_error_df.plot.bar(title=title, xlabel=column, ylabel=y_label, legend=False) self.write_exclusions_info() + print(os.path.join(curr_dir, file_name)) plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() @@ -447,10 +446,7 @@ def make_standard_bar_graphs(self, test_name_plot: bool): for col in columns: for use_abs in [True, False]: for first_it in [True, False]: - proc = Process( - target=self.make_bar_graph, args=(comp, col, use_abs, first_it) - ) - q.put(proc) + pool.submit(self.make_bar_graph, comp, col, use_abs, first_it) # Create a heatmap comparing two quantitative columns # comp: The component (cost, delay, or congestion) @@ -559,23 +555,14 @@ def make_standard_heatmaps(self): for comp in components: for first_it in [True, False]: for use_abs in [True, False]: - proc = Process( - target=self.make_heatmap, - args=( - comp, - "sink cluster tile width", - "sink cluster tile height", - first_it, - use_abs, - ), - ) - q.put(proc) - - proc = Process( - target=self.make_heatmap, - args=(comp, "delta x", "delta y", first_it, use_abs), - ) - q.put(proc) + pool.submit(self.make_heatmap, + comp, + "sink cluster tile width", + "sink cluster tile height", + first_it, + use_abs, + ) + pool.submit(self.make_heatmap, comp, "delta x", "delta y", first_it, use_abs) # Create a pie chart showing the proportion of cases where error is under percent_error_threshold # comp: The component (cost, delay, or congestion) @@ -671,16 +658,13 @@ def make_standard_pie_charts(self, test_name_plot: bool): if test_name_plot: columns = self.__standard_bar_columns else: - columns = self.__standard_bar_columns[0:-1] + columns = self.__standard_bar_columns[:-1] for comp in components: for col in columns: for first_it in [True, False]: for weighted in [True, False]: - proc = Process( - target=self.make_pie_chart, args=(comp, col, first_it, weighted) - ) - q.put(proc) + pool.submit(self.make_pie_chart, comp, col, first_it, weighted) # Make "standard" graphs of all types. # test_name_plot: whether to create plots where data is split by test name. This option @@ -777,10 +761,7 @@ def make_csv(df_out: pd.DataFrame, file_name: str): # Write out the csv if csv_data and (not os.path.exists(os.path.join(directory, "data.csv")) or not no_replace): - proc = Process( - target=make_csv, args=(df, os.path.join(directory, "data.csv")) - ) - q.put(proc) + pool.submit(make_csv, df, os.path.join(directory, "data.csv")) if should_print: print("Created ", os.path.join(directory, "data.csv"), sep="") @@ -916,8 +897,8 @@ def main(): args = parser.parse_args() - global q - q = Queue(args.j) + global pool + pool = ThreadPoolExecutor(max_workers=args.j) global graph_types global components @@ -1098,21 +1079,19 @@ def main(): # If --collect used, create output files for all csv files provided - if args.collect == "": - return - - results_folder = args.collect[0] - results_folder_path = os.path.join(output_dir, results_folder) - if len(args.dir_app) > 0: - results_folder_path += f"{args.dir_app[0]}" - make_dir(results_folder_path, False) + if args.collect != "": + results_folder = args.collect[0] + results_folder_path = os.path.join(output_dir, results_folder) + if len(args.dir_app) > 0: + results_folder_path += f"{args.dir_app[0]}" + make_dir(results_folder_path, False) - df_complete = df_complete.reset_index(drop=True) + df_complete = df_complete.reset_index(drop=True) - record_df_info(df_complete, results_folder_path) + record_df_info(df_complete, results_folder_path) - global_plots = Graphs(df_complete, os.path.join(results_folder, "plots"), "All Tests") - global_plots.make_standard_plots(True) + global_plots = Graphs(df_complete, os.path.join(results_folder, "plots"), "All Tests") + global_plots.make_standard_plots(True) if __name__ == "__main__": From 80086ff31d9621194992fb4fd4f32aa8189c7e5d Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Tue, 13 Aug 2024 15:26:51 -0400 Subject: [PATCH 10/25] More refactoring, commenting --- utils/route_diag/src/main.cpp | 6 +- vpr/src/base/vpr_context.h | 8 +- vpr/src/base/vpr_types.h | 24 +-- vpr/src/route/connection_router.cpp | 10 +- vpr/src/route/heap_type.h | 2 + vpr/src/route/lookahead_profiler.cpp | 144 +++++++++--------- vpr/src/route/lookahead_profiler.h | 23 +-- vpr/src/route/route_common.cpp | 10 +- vpr/src/route/route_net.tpp | 4 +- vpr/src/route/route_path_manager.cpp | 7 +- vpr/src/route/route_path_manager.h | 7 +- vpr/src/route/route_tree.cpp | 10 +- vpr/src/route/router_delay_profiling.cpp | 12 +- vpr/src/route/router_lookahead.cpp | 17 ++- vpr/src/route/router_lookahead.h | 32 +++- .../route/router_lookahead_compressed_map.cpp | 9 +- .../route/router_lookahead_compressed_map.h | 5 +- .../route/router_lookahead_extended_map.cpp | 10 +- vpr/src/route/router_lookahead_extended_map.h | 2 +- vpr/src/route/router_lookahead_map.cpp | 3 +- vpr/src/route/router_lookahead_map.h | 2 +- vpr/test/test_connection_router.cpp | 6 +- .../profiling_utils/parse_lookahead_data.py | 1 - 23 files changed, 208 insertions(+), 146 deletions(-) diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index bf658bb731c..6701062a25b 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -130,9 +130,9 @@ static void do_one_route(const Netlist<>& net_list, VTR_ASSERT(cheapest.index == sink_node); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, - OPEN, - nullptr, + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(/*htpr=*/&cheapest, + /*target_net_pin_index=*/OPEN, + /*spatial_rt_lookup=*/nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index f23330e52e0..72b952aac4a 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -39,13 +39,14 @@ #include "gateio.h" #include "taskresolver.h" -# include "lookahead_profiler.h" - class SetupHoldTimingInfo; class PostClusterDelayCalculator; #endif /* NO_SERVER */ +// Forward declaration +class LookaheadProfiler; + /** * @brief A Context is collection of state relating to a particular part of VPR * @@ -499,6 +500,9 @@ struct RoutingContext : public Context { */ UserRouteConstraints constraints; + /** + * @brief Writes out information used to profile the accuracy of the router lookahead. + */ LookaheadProfiler lookahead_profiler; }; diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 41356a3750c..5befaf8e808 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1740,16 +1740,20 @@ constexpr bool is_src_sink(e_rr_type type) { return (type == SOURCE || type == S * @brief Extra information about each rr_node needed only during routing * (i.e. during the maze expansion). * - * @param prev_edge ID of the edge (globally unique edge ID in the RR Graph) - * that was used to reach this node from the previous node. - * If there is no predecessor, prev_edge = NO_PREVIOUS. - * @param acc_cost Accumulated cost term from previous Pathfinder iterations. - * @param path_cost Total cost of the path up to and including this node + - * the expected cost to the target if the timing_driven router - * 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 prev_edge ID of the edge (globally unique edge ID in the RR Graph) + * that was used to reach this node from the previous node. + * If there is no predecessor, prev_edge = NO_PREVIOUS. + * @param acc_cost Accumulated cost term from previous Pathfinder iterations. + * @param path_cost Total cost of the path up to and including this node + + * the expected cost to the target if the timing_driven router + * is being used. + * @param backward_path_cost Total cost of the path up to and including + * this node. Recorded for LookaheadProfiler. + * @param backward_path_delay Total delay in the path up to and including + * this node. Recorded for LookaheadProfiler. + * @param backward_path_congestion Total congestion in the path up to and + * including this node. + * @param occ The current occupancy of the associated rr node */ struct t_rr_node_route_inf { RREdgeId prev_edge; diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index cf401c9c4a8..8deb7bca140 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -239,7 +239,12 @@ 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, cheapest->backward_path_delay, cheapest->backward_path_congestion, route_ctx); + rcv_path_manager.insert_backwards_path_into_traceback(cheapest->path_data, + cheapest->cost, + cheapest->backward_path_cost, + cheapest->backward_path_delay, + cheapest->backward_path_congestion, + 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; @@ -661,7 +666,6 @@ float ConnectionRouter::compute_node_cost_using_rcv(const t_conn_cost_para // TODO: This function is not tested for is_flat == true VTR_ASSERT(is_flat_ != true); std::tie(expected_delay, expected_cong) = router_lookahead_.get_expected_delay_and_cong(to_node, target_node, cost_params, R_upstream); - router_lookahead_.scale_delay_and_cong_by_criticality(expected_delay, expected_cong, cost_params); float expected_total_delay_cost; float expected_total_cong_cost; @@ -928,7 +932,7 @@ void ConnectionRouter::add_route_tree_node_to_heap( rr_node_route_inf_, inode, tot_cost, - RREdgeId::INVALID(), + /*prev_edge=*/RREdgeId::INVALID(), backward_path_cost, backward_path_delay, backward_path_congestion, diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index 82db1fb1d8d..4f46f314249 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -18,7 +18,9 @@ struct t_heap { ///@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 The "known" delay in the path up to and including this node. Recorded for LookaheadProfiler during routing. float backward_path_delay = 0.; + ///@brief The "known" congestion in the path up to and including this node. Recorded for LookaheadProfiler during routing. float backward_path_congestion = 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). diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index d911667b3c7..6ddfb704881 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -24,14 +24,17 @@ void LookaheadProfiler::record(int iteration, auto& route_ctx = g_vpr_ctx.routing(); // If csv file hasn't been opened, open it and write out column headers - if (is_empty) { - lookahead_verifier_csv.open("lookahead_verifier_info.csv", std::ios::out); - - if (!lookahead_verifier_csv.is_open()) { - VTR_LOG_ERROR("Could not open lookahead_verifier_info.csv", "error"); + if (is_empty_) { + lookahead_verifier_csv_.open("lookahead_verifier_info.csv", std::ios::out); + + if (!lookahead_verifier_csv_.is_open()) { + VTR_LOG_ERROR("Could not open lookahead_verifier_info.csv"); + throw vtr::VtrError("Could not open lookahead_verifier_info.csv", + "lookahead_profiler.cpp", + 32); } - lookahead_verifier_csv + lookahead_verifier_csv_ << "iteration no." << ",source node" << ",sink node" @@ -53,13 +56,21 @@ void LookaheadProfiler::record(int iteration, << ",predicted delay" << ",predicted congestion" << ",criticality" - << std::endl; + << "\n"; - is_empty = false; + is_empty_ = false; } - if (!lookahead_verifier_csv.is_open()) + if (!lookahead_verifier_csv_.is_open()) { + if (toggle_warn_) { + VTR_LOG_WARN("lookahead_verifier_info.csv is not open"); + toggle_warn_ = false; + } + return; + } else { + toggle_warn_ = true; + } // The default value in RouteTree::update_from_heap() is -1; only calls which descend from route_net() // pass in an iteration value, which is the only context in which we want to profile. @@ -73,51 +84,52 @@ void LookaheadProfiler::record(int iteration, /* Get sink node attributes (atom block name, atom block model, cluster type, tile dimensions) */ - if (atom_block_names.find(sink_inode) == atom_block_names.end()) { + if (atom_block_names_.find(sink_inode) == atom_block_names_.end()) { if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { - atom_block_names[sink_inode] = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); + atom_block_names_[sink_inode] = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); - AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(atom_block_names[sink_inode]); - atom_block_models[sink_inode] = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; + AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(atom_block_names_[sink_inode]); + atom_block_models_[sink_inode] = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); - cluster_block_types[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; + cluster_block_types_[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; auto tile_type = physical_tile_type(cluster_block_id); - tile_dimensions[sink_inode] = std::pair(std::to_string(tile_type->width), std::to_string(tile_type->height)); + tile_dimensions_[sink_inode] = std::pair(std::to_string(tile_type->width), std::to_string(tile_type->height)); } else { - atom_block_names[sink_inode] = "--"; - atom_block_models[sink_inode] = "--"; - cluster_block_types[sink_inode] = "--"; - tile_dimensions[sink_inode] = {"--", "--"}; + atom_block_names_[sink_inode] = "--"; + atom_block_models_[sink_inode] = "--"; + cluster_block_types_[sink_inode] = "--"; + tile_dimensions_[sink_inode] = {"--", "--"}; } } - VTR_ASSERT_SAFE(atom_block_models.find(sink_inode) != atom_block_models.end()); - VTR_ASSERT_SAFE(cluster_block_types.find(sink_inode) != cluster_block_types.end()); - VTR_ASSERT_SAFE(tile_dimensions.find(sink_inode) != tile_dimensions.end()); + VTR_ASSERT_SAFE(atom_block_models_.find(sink_inode) != atom_block_models_.end()); + VTR_ASSERT_SAFE(cluster_block_types_.find(sink_inode) != cluster_block_types_.end()); + VTR_ASSERT_SAFE(tile_dimensions_.find(sink_inode) != tile_dimensions_.end()); - std::string block_name = atom_block_names[sink_inode]; - std::string atom_block_model = atom_block_models[sink_inode]; - std::string cluster_block_type = cluster_block_types[sink_inode]; - auto [tile_width, tile_height] = tile_dimensions[sink_inode]; + const std::string& block_name = atom_block_names_[sink_inode]; + const std::string& atom_block_model = atom_block_models_[sink_inode]; + const std::string& cluster_block_type = cluster_block_types_[sink_inode]; + const auto& [tile_width, tile_height] = tile_dimensions_[sink_inode]; /* Iterate through the given path and record information for each node */ - for (size_t i = 2; i < branch_inodes.size(); ++i) { // Distance one node away is always 0. (IPIN->SINK) - RRNodeId curr_inode = branch_inodes[i]; + for (size_t nodes_from_sink = 2; nodes_from_sink < branch_inodes.size(); ++nodes_from_sink) { // Distance one node away is always 0. (IPIN->SINK) + RRNodeId curr_inode = branch_inodes[nodes_from_sink]; - // Get backwards path cost, delay, and congestion from sink node - t_rr_node_route_inf sink_node_info = route_ctx.rr_node_route_inf[sink_inode]; - float total_backward_cost = sink_node_info.backward_path_cost; - float total_backward_delay = sink_node_info.backward_path_delay; - float total_backward_congestion = sink_node_info.backward_path_congestion; + // Calculate the actual cost, delay, and congestion from the current node to the sink. + const t_rr_node_route_inf& curr_node_info = route_ctx.rr_node_route_inf[curr_inode]; + const t_rr_node_route_inf& sink_node_info = route_ctx.rr_node_route_inf[sink_inode]; - // Get backwards path cost, delay, and congestion from current node - t_rr_node_route_inf curr_node_info = route_ctx.rr_node_route_inf[curr_inode]; - float current_backward_cost = curr_node_info.backward_path_cost; - float current_backward_delay = curr_node_info.backward_path_delay; - float current_backward_congestion = curr_node_info.backward_path_congestion; + float actual_cost = sink_node_info.backward_path_cost - curr_node_info.backward_path_cost; + float actual_delay = sink_node_info.backward_path_delay - curr_node_info.backward_path_delay; + float actual_congestion = sink_node_info.backward_path_congestion - curr_node_info.backward_path_congestion; + + // Get the cost, delay, and congestion estimates made by the lookahead. + // Note: lookahead_cost = lookahead_delay * criticality + lookahead_congestion * (1. - criticality) + float lookahead_cost = router_lookahead.get_expected_cost(curr_inode, sink_inode, cost_params, 0.0); + auto [lookahead_delay, lookahead_congestion] = router_lookahead.get_expected_delay_and_cong_ignore_criticality(curr_inode, sink_inode, cost_params, 0.0); // Get the difference in the coordinates in the current and sink nodes. // Note: we are not using util::get_xy_deltas() because this always gives positive values @@ -129,45 +141,35 @@ void LookaheadProfiler::record(int iteration, int delta_x = to_x - from_x; int delta_y = to_y - from_y; - // Calculate the actual cost, delay, and congestion from the current node to the sink. - float actual_cost = total_backward_cost - current_backward_cost; - float actual_delay = total_backward_delay - current_backward_delay; - float actual_congestion = total_backward_congestion - current_backward_congestion; - - // Get the cost, delay, and congestion estimates made by the lookahead. - // Note: lookahead_cost = lookahead_delay * criticality + lookahead_congestion * (1. - criticality) - float lookahead_cost = router_lookahead.get_expected_cost(curr_inode, sink_inode, cost_params, 0.0); - auto [lookahead_delay, lookahead_congestion] = router_lookahead.get_expected_delay_and_cong(curr_inode, sink_inode, cost_params, 0.0); - // Get the current node's type and length std::string node_type_str = rr_graph.node_type_string(curr_inode); - std::string node_length = (node_type_str == "CHANX" || node_type_str == "CHANX") + std::string node_length = (node_type_str == "CHANX" || node_type_str == "CHANY") ? std::to_string(rr_graph.node_length(curr_inode)) : "--"; /* Write out all info */ - lookahead_verifier_csv << iteration << ","; // iteration no. - lookahead_verifier_csv << source_inode << ","; // source node - lookahead_verifier_csv << sink_inode << ","; // sink node - lookahead_verifier_csv << block_name << ","; // sink block name - lookahead_verifier_csv << atom_block_model << ","; // sink atom block model - lookahead_verifier_csv << cluster_block_type << ","; // sink cluster block type - lookahead_verifier_csv << tile_height << ","; // sink cluster tile height - lookahead_verifier_csv << tile_width << ","; // sink cluster tile width - lookahead_verifier_csv << curr_inode << ","; // current node - lookahead_verifier_csv << node_type_str << ","; // node type - lookahead_verifier_csv << node_length << ","; // node length - lookahead_verifier_csv << i << ","; // num. nodes from sink - lookahead_verifier_csv << delta_x << ","; // delta x - lookahead_verifier_csv << delta_y << ","; // delta y - lookahead_verifier_csv << actual_cost << ","; // actual cost - lookahead_verifier_csv << actual_delay << ","; // actual delay - lookahead_verifier_csv << actual_congestion << ","; // actual congestion - lookahead_verifier_csv << lookahead_cost << ","; // predicted cost - lookahead_verifier_csv << lookahead_delay << ","; // predicted delay - lookahead_verifier_csv << lookahead_congestion << ","; // predicted congestion - lookahead_verifier_csv << cost_params.criticality; // criticality - lookahead_verifier_csv << std::endl; + lookahead_verifier_csv_ << iteration << ","; // iteration no. + lookahead_verifier_csv_ << source_inode << ","; // source node + lookahead_verifier_csv_ << sink_inode << ","; // sink node + lookahead_verifier_csv_ << block_name << ","; // sink block name + lookahead_verifier_csv_ << atom_block_model << ","; // sink atom block model + lookahead_verifier_csv_ << cluster_block_type << ","; // sink cluster block type + lookahead_verifier_csv_ << tile_height << ","; // sink cluster tile height + lookahead_verifier_csv_ << tile_width << ","; // sink cluster tile width + lookahead_verifier_csv_ << curr_inode << ","; // current node + lookahead_verifier_csv_ << node_type_str << ","; // node type + lookahead_verifier_csv_ << node_length << ","; // node length + lookahead_verifier_csv_ << nodes_from_sink << ","; // num. nodes from sink + lookahead_verifier_csv_ << delta_x << ","; // delta x + lookahead_verifier_csv_ << delta_y << ","; // delta y + lookahead_verifier_csv_ << actual_cost << ","; // actual cost + lookahead_verifier_csv_ << actual_delay << ","; // actual delay + lookahead_verifier_csv_ << actual_congestion << ","; // actual congestion + lookahead_verifier_csv_ << lookahead_cost << ","; // predicted cost + lookahead_verifier_csv_ << lookahead_delay << ","; // predicted delay + lookahead_verifier_csv_ << lookahead_congestion << ","; // predicted congestion + lookahead_verifier_csv_ << cost_params.criticality; // criticality + lookahead_verifier_csv_ << "\n"; } } \ No newline at end of file diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index 4ca12414ca7..b7753f6d506 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -2,7 +2,6 @@ #define VTR_LOOKAHEAD_PROFILER_H #include -#include #include "connection_router_interface.h" #include "router_lookahead.h" @@ -16,7 +15,11 @@ class LookaheadProfiler { public: LookaheadProfiler() - : is_empty(true) {} + : is_empty_(true) + , toggle_warn_(true) {} + + LookaheadProfiler(const LookaheadProfiler&) = delete; + LookaheadProfiler& operator=(const LookaheadProfiler&) = delete; /** * @brief Record information on nodes on a path from a source to a sink. @@ -41,18 +44,20 @@ class LookaheadProfiler { const std::vector& branch_inodes); private: - ///@breif The output filestream. - std::ofstream lookahead_verifier_csv; + ///@brief The output filestream. + std::ofstream lookahead_verifier_csv_; ///@brief Whether the output file is empty/not yet opened. - bool is_empty; + bool is_empty_; + ///@brief Whether to creat a warning if the output csv is not open. Used to avoid repeated warnings. + bool toggle_warn_; ///@brief A map from sink node IDs to the names of their atom blocks. - std::unordered_map atom_block_names; + std::unordered_map atom_block_names_; ///@brief A map from sink node IDs to the names of the models of their atom blocks. - std::unordered_map atom_block_models; + std::unordered_map atom_block_models_; ///@brief A map from sink node IDs to the names of the types of their clusters. - std::unordered_map cluster_block_types; + std::unordered_map cluster_block_types_; ///@brief A map from sink node IDs to the dimensions of their tiles (width, height). - std::unordered_map> tile_dimensions; + std::unordered_map> tile_dimensions_; }; #endif //VTR_LOOKAHEAD_PROFILER_H \ No newline at end of file diff --git a/vpr/src/route/route_common.cpp b/vpr/src/route/route_common.cpp index 8a3de79134a..f0998fcdaf8 100644 --- a/vpr/src/route/route_common.cpp +++ b/vpr/src/route/route_common.cpp @@ -843,11 +843,11 @@ void reserve_locally_used_opins(HeapInterface* heap, float pres_fac, float acc_f route_ctx.rr_node_route_inf, to_node, cost, - RREdgeId::INVALID(), - 0., - 0., - 0., - 0.); + /*prev_edge=*/RREdgeId::INVALID(), + /*backward_path_cost=*/0., + /*backward_path_delay=*/0., + /*backward_path_congestion=*/0., + /*R_upstream=*/0.); } for (ipin = 0; ipin < num_local_opin; ipin++) { diff --git a/vpr/src/route/route_net.tpp b/vpr/src/route/route_net.tpp index 188e09e0a44..6121bf8ad6c 100644 --- a/vpr/src/route/route_net.tpp +++ b/vpr/src/route/route_net.tpp @@ -356,8 +356,8 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, * points. Therefore, we can set the net pin index of the sink node to * * OPEN (meaning illegal) as it is not meaningful for this sink. */ vtr::optional new_branch, new_sink; - std::tie(new_branch, new_sink) = tree.update_from_heap(&cheapest, - OPEN, + std::tie(new_branch, new_sink) = tree.update_from_heap(/*hptr=*/&cheapest, + /*target_net_pin_index=*/OPEN, ((high_fanout) ? &spatial_rt_lookup : nullptr), is_flat, router.get_router_lookahead(), diff --git a/vpr/src/route/route_path_manager.cpp b/vpr/src/route/route_path_manager.cpp index 9265f64f975..fe0a2b1c456 100644 --- a/vpr/src/route/route_path_manager.cpp +++ b/vpr/src/route/route_path_manager.cpp @@ -39,7 +39,12 @@ void PathManager::mark_node_visited(RRNodeId node) { } } -void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, float backward_path_delay, float backward_path_congestion, RoutingContext& route_ctx) { +void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, + float cost, + float backward_path_cost, + float backward_path_delay, + float backward_path_congestion, + RoutingContext& route_ctx) { if (!is_enabled_) return; for (unsigned i = 1; i < path_data->edge.size() - 1; i++) { diff --git a/vpr/src/route/route_path_manager.h b/vpr/src/route/route_path_manager.h index ec63818c96f..fb5092f32ef 100644 --- a/vpr/src/route/route_path_manager.h +++ b/vpr/src/route/route_path_manager.h @@ -74,7 +74,12 @@ class PathManager { void set_enabled(bool enable); // Insert the partial path data into the main route context traceback - void insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, float backward_path_delay, float backward_path_congestion, RoutingContext& route_ctx); + void insert_backwards_path_into_traceback(t_heap_path* path_data, + float cost, + float backward_path_cost, + float backward_path_delay, + float backward_path_congestion, + RoutingContext& route_ctx); // Dynamically create a t_heap_path structure to be used in the heap // Will return unless RCV is enabled diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index 226d5b315d9..f2181e43ea0 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -501,7 +501,15 @@ RouteTree::update_from_heap(t_heap* hptr, //Create a new subtree from the target in hptr to existing routing vtr::optional start_of_new_subtree_rt_node, sink_rt_node; - std::tie(start_of_new_subtree_rt_node, sink_rt_node) = add_subtree_from_heap(hptr, target_net_pin_index, is_flat, router_lookahead, cost_params, itry, net_list, net_id, profile_lookahead); + std::tie(start_of_new_subtree_rt_node, sink_rt_node) = add_subtree_from_heap(hptr, + target_net_pin_index, + is_flat, + router_lookahead, + cost_params, + itry, + net_list, + net_id, + profile_lookahead); if (!start_of_new_subtree_rt_node) return {vtr::nullopt, *sink_rt_node}; diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index 02cad1e9cb0..c4445f32c37 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -121,9 +121,9 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, VTR_ASSERT(cheapest.index == sink_node); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, - OPEN, - nullptr, + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(/*hptr=*/&cheapest, + /*target_net_pin_index=*/OPEN, + /*spatial_rt_lookup=*/nullptr, is_flat_, router_.get_router_lookahead(), cost_params, @@ -218,9 +218,9 @@ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src //Build the routing tree to get the delay tree = RouteTree(RRNodeId(src_rr_node)); vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&shortest_paths[sink_rr_node], - OPEN, - nullptr, + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(/*hptr=*/&shortest_paths[sink_rr_node], + /*target_net_pin_index=*/OPEN, + /*spatial_rt_lookup=*/nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, diff --git a/vpr/src/route/router_lookahead.cpp b/vpr/src/route/router_lookahead.cpp index 2bf4000361c..a44452702d4 100644 --- a/vpr/src/route/router_lookahead.cpp +++ b/vpr/src/route/router_lookahead.cpp @@ -61,19 +61,24 @@ std::unique_ptr make_router_lookahead(const t_det_routing_arch& return router_lookahead; } -void RouterLookahead::scale_delay_and_cong_by_criticality(float& delay, float& cong, const t_conn_cost_params& params) const { - delay *= params.criticality; - cong *= 1. - params.criticality; +void RouterLookahead::scale_delay_and_cong_by_criticality(float& delay, float& cong, const float criticality) const { + delay *= criticality; + cong *= 1.f - criticality; +} + +std::pair RouterLookahead::get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const { + auto [expected_delay, expected_congestion] = get_expected_delay_and_cong_ignore_criticality(node, target_node, params, R_upstream); + scale_delay_and_cong_by_criticality(expected_delay, expected_delay, params.criticality); + return {expected_delay, expected_congestion}; } float ClassicLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const { auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); - scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; } -std::pair ClassicLookahead::get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& /*params*/, float R_upstream) const { +std::pair ClassicLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& /*params*/, float R_upstream) const { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; @@ -115,7 +120,7 @@ float NoOpLookahead::get_expected_cost(RRNodeId /*current_node*/, RRNodeId /*tar return 0.; } -std::pair NoOpLookahead::get_expected_delay_and_cong(RRNodeId, RRNodeId, const t_conn_cost_params&, float) const { +std::pair NoOpLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId /*node*/, RRNodeId /*target_node*/, const t_conn_cost_params& /*params*/, float /*R_upstream*/) const { return std::make_pair(0., 0.); } diff --git a/vpr/src/route/router_lookahead.h b/vpr/src/route/router_lookahead.h index 70041d4caf5..d7dd3247675 100644 --- a/vpr/src/route/router_lookahead.h +++ b/vpr/src/route/router_lookahead.h @@ -30,11 +30,11 @@ class RouterLookahead { /** * @brief Get expected (delay, congestion) from node to target_node. * - * @attention Either compute or read methods must be invoked before invoking get_expected_delay_and_cong. + * @attention Either compute or read methods must be invoked before invoking get_expected_delay_and_cong_ignore_criticality. * * @param node The source node from which the cost to the target node is obtained. * @param target_node The target node to which the cost is obtained. - * @param params Contain the router parameter such as connection criticality, etc. + * @param params Contains the router parameter such as connection criticality, etc. * @param R_upstream Upstream resistance to get to the "node". * * @return (delay, congestion) @@ -43,17 +43,33 @@ class RouterLookahead { * scale_delay_and_cong_by_criticality should be called after this function before adding these to calculate the * expected total cost. */ - virtual std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; + virtual std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; /** * @brief Multiply delay by params.criticality and cong by (1. - params.criticality). Used in conjunction with - * get_expected_delay_and_cong to calculate the total expected cost. + * get_expected_delay_and_cong_ignore_criticality to calculate the total expected cost. * * @param delay * @param cong - * @param params + * @param criticality */ - void scale_delay_and_cong_by_criticality(float& delay, float& cong, const t_conn_cost_params& params) const; + void scale_delay_and_cong_by_criticality(float& delay, float& cong, float criticality) const; + + /** + * @brief Get expected (delay, congestion), scaled by congestion, from node to target_node. + * + * @note + * This function simply calls get_expected_delay_and_cong_ignore_criticality() followed by + * scale_delay_and_cong_by_criticality(). + * + * @param node The source node from which the cost to the target node is obtained. + * @param target_node The target node to which the cost is obtained. + * @param params Contains the router parameter such as connection criticality, etc. + * @param R_upstream Upstream resistance to get to the "node". + * + * @return (delay, congestion) + */ + std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const; /** * @brief Compute router lookahead (if needed) @@ -153,7 +169,7 @@ const RouterLookahead* get_cached_router_lookahead(const t_det_routing_arch& det class ClassicLookahead : public RouterLookahead { public: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; void compute(const std::vector& /*segment_inf*/) override { } @@ -189,7 +205,7 @@ class ClassicLookahead : public RouterLookahead { class NoOpLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; void compute(const std::vector& /*segment_inf*/) override { } diff --git a/vpr/src/route/router_lookahead_compressed_map.cpp b/vpr/src/route/router_lookahead_compressed_map.cpp index 9c313a7dd11..b13311f48b5 100644 --- a/vpr/src/route/router_lookahead_compressed_map.cpp +++ b/vpr/src/route/router_lookahead_compressed_map.cpp @@ -413,7 +413,6 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId if (from_rr_type == CHANX || from_rr_type == CHANY || from_rr_type == SOURCE || from_rr_type == OPIN) { // Get the total cost using the combined delay and congestion costs std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); - scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; } else if (from_rr_type == IPIN) { /* Change if you're allowing route-throughs */ return (device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); @@ -422,10 +421,10 @@ float CompressedMapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId } } -std::pair CompressedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, - RRNodeId to_node, - const t_conn_cost_params& /*params*/, - float /*R_upstream*/) const { +std::pair CompressedMapLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, + RRNodeId to_node, + const t_conn_cost_params& /*params*/, + float /*R_upstream*/) const { auto& device_ctx = g_vpr_ctx.device(); auto& rr_graph = device_ctx.rr_graph; diff --git a/vpr/src/route/router_lookahead_compressed_map.h b/vpr/src/route/router_lookahead_compressed_map.h index e57e9a27f14..009f012ea43 100644 --- a/vpr/src/route/router_lookahead_compressed_map.h +++ b/vpr/src/route/router_lookahead_compressed_map.h @@ -27,7 +27,10 @@ class CompressedMapLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, + RRNodeId to_node, + const t_conn_cost_params& params, + float R_upstream) const override; void compute(const std::vector& segment_inf) override; diff --git a/vpr/src/route/router_lookahead_extended_map.cpp b/vpr/src/route/router_lookahead_extended_map.cpp index b0d9fdcaf2a..9763fd4a20a 100644 --- a/vpr/src/route/router_lookahead_extended_map.cpp +++ b/vpr/src/route/router_lookahead_extended_map.cpp @@ -181,7 +181,10 @@ float ExtendedMapLookahead::get_chan_ipin_delays(RRNodeId to_node) const { // // The from_node can be of one of the following types: CHANX, CHANY, SOURCE, OPIN // The to_node is always a SINK -std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float) const { +std::pair ExtendedMapLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, + RRNodeId to_node, + const t_conn_cost_params& params, + float /*R_upstream*/) const { if (from_node == to_node) { return std::make_pair(0., 0.); } @@ -237,8 +240,8 @@ std::pair ExtendedMapLookahead::get_expected_delay_and_cong(RRNode float site_pin_delay = this->get_chan_ipin_delays(to_node); expected_delay += site_pin_delay; - float expected_delay_cost = expected_delay * params.criticality; - float expected_cong_cost = expected_congestion * (1. - params.criticality); + float expected_delay_cost = params.criticality * expected_delay; + float expected_cong_cost = (1.f - params.criticality) * expected_congestion; float expected_cost = expected_delay_cost + expected_cong_cost; @@ -594,7 +597,6 @@ float ExtendedMapLookahead::get_expected_cost( // Get the total cost using the combined delay and congestion costs std::tie(delay_cost, cong_cost) = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); - scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; } else if (rr_type == IPIN) { /* Change if you're allowing route-throughs */ // This is to return only the cost between the IPIN and SINK. No need to diff --git a/vpr/src/route/router_lookahead_extended_map.h b/vpr/src/route/router_lookahead_extended_map.h index 589ea06e6a4..c6cefc9af68 100644 --- a/vpr/src/route/router_lookahead_extended_map.h +++ b/vpr/src/route/router_lookahead_extended_map.h @@ -69,7 +69,7 @@ class ExtendedMapLookahead : public RouterLookahead { /** * @brief Returns a pair of expected delay and congestion */ - std::pair get_expected_delay_and_cong(RRNodeId inode, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId inode, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; /** * @brief Computes the extended lookahead map diff --git a/vpr/src/route/router_lookahead_map.cpp b/vpr/src/route/router_lookahead_map.cpp index 549cd3a7b8f..d3b0cc08758 100644 --- a/vpr/src/route/router_lookahead_map.cpp +++ b/vpr/src/route/router_lookahead_map.cpp @@ -178,7 +178,6 @@ float MapLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target_nod if (is_flat_ || from_rr_type == CHANX || from_rr_type == CHANY || from_rr_type == SOURCE || from_rr_type == OPIN) { // Get the total cost using the combined delay and congestion costs auto [delay_cost, cong_cost] = get_expected_delay_and_cong(current_node, target_node, params, R_upstream); - scale_delay_and_cong_by_criticality(delay_cost, cong_cost, params); return delay_cost + cong_cost; } else if (from_rr_type == IPIN) { /* Change if you're allowing route-throughs */ return (device_ctx.rr_indexed_data[RRIndexedDataId(SINK_COST_INDEX)].base_cost); @@ -382,7 +381,7 @@ std::pair MapLookahead::get_expected_delay_and_cong_default(RRNode /******** Function Definitions ********/ /* queries the lookahead_map (should have been computed prior to routing) to get the expected cost * from the specified source to the specified target */ -std::pair MapLookahead::get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& /*params*/, float /*R_upstream*/) const { +std::pair MapLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& /*params*/, float /*R_upstream*/) const { return (is_flat_) ? get_expected_delay_and_cong_flat_router(from_node, to_node) : get_expected_delay_and_cong_default(from_node, to_node); } diff --git a/vpr/src/route/router_lookahead_map.h b/vpr/src/route/router_lookahead_map.h index 2ae9c5912e5..be7a62efa81 100644 --- a/vpr/src/route/router_lookahead_map.h +++ b/vpr/src/route/router_lookahead_map.h @@ -31,7 +31,7 @@ class MapLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream) const override; void compute(const std::vector& segment_inf) override; void compute_intra_tile() override; diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index 952333322d5..8d301e881f0 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -87,9 +87,9 @@ static float do_one_route(RRNodeId source_node, // Get the delay vtr::optional rt_node_of_sink; - std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(&cheapest, - OPEN, - nullptr, + std::tie(std::ignore, rt_node_of_sink) = tree.update_from_heap(/*hptr=*/&cheapest, + /*target_net_pin_index=*/OPEN, + /*spatial_rt_lookup=*/nullptr, router_opts.flat_routing, router.get_router_lookahead(), cost_params, diff --git a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py index 0888af67295..9113057bf4e 100755 --- a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py +++ b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py @@ -425,7 +425,6 @@ def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolu avg_error_df.plot.bar(title=title, xlabel=column, ylabel=y_label, legend=False) self.write_exclusions_info() - print(os.path.join(curr_dir, file_name)) plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() From c7470963d03e351e99117b76a97afa7597580411 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 14 Aug 2024 15:00:16 -0400 Subject: [PATCH 11/25] Fixed linting errors in python script --- .../profiling_utils/parse_lookahead_data.py | 1013 +++++++++++------ 1 file changed, 646 insertions(+), 367 deletions(-) diff --git a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py index 9113057bf4e..eaed2fc29e5 100755 --- a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py +++ b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py @@ -1,122 +1,157 @@ #!/usr/bin/env python3 +# pylint: disable=too-many-lines +# pylint: disable=invalid-name + +""" +Parses data from lookahead_verifier_info.csv file(s) generated when running VPR with +--router_lookahead_profiler on. +""" + import os import shutil import sys +import argparse +from enum import Enum +from pathlib import Path +from concurrent.futures import ThreadPoolExecutor +from multiprocessing import Lock import pandas as pd from sklearn.metrics import mean_squared_error import matplotlib.pyplot as plt import distinctipy as dp from colour import Color -from enum import Enum import seaborn as sns -import argparse -from pathlib import Path -from multiprocessing import Lock -from concurrent.futures import ThreadPoolExecutor -# Output directory -output_dir = "./vtr_flow/tasks/lookahead_verifier_output" -# The graph types (pie, heatmap, bar, scatter) that will be created -graph_types: list -# The components that will be used for graphs (cost, delay, congestion) -components: list -# Whether to create graphs of absolute error -absolute_output: bool -# Whether to create graphs of signed error -signed_output: bool -# Whether to create csv with all data extracted/calculated -csv_data: bool -# Whether to create graphs using data from first iterations -first_it_output: bool -# Whether to create graphs using data from all iterations -all_it_output: bool -# Do not overwrite existing files -no_replace: bool -# Print to terminal -should_print: bool -# The percent threshold to the be upper limit for the error of the data used to create pie graphs -percent_error_threshold: float -# Exclusions in the form exclusions[column_name] = [(boolean_op, value), (boolean_op, value), ...] -exclusions = {} - -# Column names. IMPORTANT: Up until "criticality", these column names must match -# those that are written out by LookaheadProfiler. -column_names = [ - "iteration no.", - "source node", - "sink node", - "sink block name", - "sink atom block model", - "sink cluster block type", - "sink cluster tile height", - "sink cluster tile width", - "current node", - "node type", - "node length", - "num. nodes from sink", - "delta x", - "delta y", - "actual cost", - "actual delay", - "actual congestion", - "predicted cost", - "predicted delay", - "predicted congestion", - "criticality", - "cost error", - "cost absolute error", - "cost % error", - "delay error", - "delay absolute error", - "delay % error", - "congestion error", - "congestion absolute error", - "congestion % error", - "test name" -] - -# Lock and Pool for multithreading -lock = Lock() -pool = ThreadPoolExecutor(1) - - -# Check if a component is valid, otherwise raise exception + +# pylint: disable=too-many-instance-attributes +# pylint: disable=too-few-public-methods +class GlobalVars: + """Global parameters and lists accessed across many functions.""" + + # pylint: disable=too-many-arguments + def __init__(self, + graph_types: list, + components: list, + absolute_output: bool, + signed_output: bool, + csv_data: bool, + first_it_output: bool, + all_it_output: bool, + no_replace: bool, + should_print: bool, + percent_error_threshold: float, + exclusions: dict, + pool: ThreadPoolExecutor): + # Output directory + self.output_dir = "./vtr_flow/tasks/lookahead_verifier_output" + # The graph types (pie, heatmap, bar, scatter) that will be created + self.graph_types = graph_types + # The components that will be used for graphs (cost, delay, congestion) + self.components = components + # Whether to create graphs of absolute error + self.absolute_output = absolute_output + # Whether to create graphs of signed error + self.signed_output = signed_output + # Whether to create csv with all data extracted/calculated + self.csv_data = csv_data + # Whether to create graphs using data from first iterations + self.first_it_output = first_it_output + # Whether to create graphs using data from all iterations + self.all_it_output = all_it_output + # Do not overwrite existing files + self.no_replace = no_replace + # Print to terminal + self.should_print = should_print + # The percent threshold to the be upper limit for the error of the data used to create pie + # graphs + self.percent_error_threshold = percent_error_threshold + # Exclusions in the form: + # exclusions[column_name] = [(boolean_op, value), (boolean_op, value), ...] + self.exclusions = exclusions + + # Column names. IMPORTANT: Up until "criticality", these column names must match + # those that are written out by LookaheadProfiler. + self.column_names = [ + "iteration no.", + "source node", + "sink node", + "sink block name", + "sink atom block model", + "sink cluster block type", + "sink cluster tile height", + "sink cluster tile width", + "current node", + "node type", + "node length", + "num. nodes from sink", + "delta x", + "delta y", + "actual cost", + "actual delay", + "actual congestion", + "predicted cost", + "predicted delay", + "predicted congestion", + "criticality", + "cost error", + "cost absolute error", + "cost % error", + "delay error", + "delay absolute error", + "delay % error", + "congestion error", + "congestion absolute error", + "congestion % error", + "test name" + ] + + # Lock and Pool for multithreading + self.lock = Lock() + self.pool = pool + + def check_valid_component(comp: str): - if not (comp == "cost" or comp == "delay" or comp == "congestion"): + """Check if a component is valid, otherwise raise exception""" + + if comp not in ["cost", "delay", "congestion"]: raise Exception("ComponentType") -# Check if a column name is valid, otherwise raise exception -def check_valid_column(column: str): - if column not in column_names: +def check_valid_column(column: str, gv: GlobalVars): + """Check if a column name is valid, otherwise raise exception""" + + if column not in gv.column_names: raise Exception("ColumnName") -# Check if a DataFrame is valid, otherwise raise exception -def check_valid_df(df: pd.DataFrame): - if df.columns.to_list() != column_names: +def check_valid_df(df: pd.DataFrame, gv: GlobalVars): + """Check if a DataFrame is valid, otherwise raise exception""" + + if df.columns.to_list() != gv.column_names: raise Exception("IncompleteDataFrame") -# Create a directory -def make_dir(directory: str, clean: bool): - lock.acquire() +def make_dir(directory: str, clean: bool, gv: GlobalVars): + """Create a directory""" + + gv.lock.acquire() if os.path.exists(directory): if clean: shutil.rmtree(directory) else: - lock.release() + gv.lock.release() return os.makedirs(directory) - lock.release() + gv.lock.release() -# Convert column names with spaces to (shorter) path names with underscores def column_file_name(column_name: str) -> str: + """Convert column names with spaces to (shorter) path names with underscores""" + file_name = "" if len(column_name.split()) > 2: @@ -138,9 +173,11 @@ def column_file_name(column_name: str) -> str: return file_name -# For lists which include "--", make sure this comes at the top of the list, followed -# by the rest of the list sorted normally. def custom_sort(column: list) -> list: + """For lists which include "--", make sure this comes at the top of the list, followed by the + rest of the list sorted normally. + """ + try: list(map(int, column)) except ValueError: @@ -157,19 +194,28 @@ def custom_sort(column: list) -> list: class ScatterPlotType(Enum): + """Two scatter plot types, PREDICTION (actual vs. prediction) and ERROR + (actual vs. error) + """ + PREDICTION = 0 ERROR = 1 +# pylint: disable=too-many-instance-attributes class Graphs: - def __init__(self, df: pd.DataFrame, results_folder: str, test_name: str): + """Attributes and methods for creating plots and graphs from given data""" + + def __init__( + self, df: pd.DataFrame, results_folder: str, test_name: str, gv: GlobalVars + ): self.__df = df.copy() self.__df.insert(len(self.__df.columns), "color", "#0000ff") # Create a DataFrame with only data from first iteration self.__df_first_it = self.__df[self.__df["iteration no."].isin([1])][:] - self.__directory = os.path.join(output_dir, results_folder) + self.__directory = os.path.join(gv.output_dir, results_folder) self.__sub_dirs = [ os.path.join(self.__directory, "actual_vs_prediction"), @@ -181,7 +227,7 @@ def __init__(self, df: pd.DataFrame, results_folder: str, test_name: str): os.path.join(self.__directory, "proportion_under_threshold"), ] for directory in self.__sub_dirs: - make_dir(directory, False) + make_dir(directory, False, gv) self.__test_name = test_name @@ -194,6 +240,7 @@ def __init__(self, df: pd.DataFrame, results_folder: str, test_name: str): "node length", "test name", ] + # The standard columns to use to split data by for bar graphs and pie charts self.__standard_bar_columns = [ "num. nodes from sink", @@ -211,11 +258,13 @@ def __init__(self, df: pd.DataFrame, results_folder: str, test_name: str): "node type", "test name"] - # Write list of exclusions onto output png - def write_exclusions_info(self): - if len(exclusions): + # pylint: disable=no-self-use + def write_exclusions_info(self, gv: GlobalVars): + """Write list of exclusions onto output png.""" + + if len(gv.exclusions): excl_msg = "Exclusions: " - for key, val in exclusions.items(): + for key, val in gv.exclusions.items(): for item in val: excl_msg += key + " " + item[0] + " " + item[1] + ", " @@ -223,20 +272,41 @@ def write_exclusions_info(self): plt.figtext(0, -0.08, excl_msg, horizontalalignment="left", fontsize="x-small") - # Create a scatter plot displaying actual [comp] vs. either predicted [comp] or error - # comp: The component (cost, delay, or congestion) - # plot_type: PREDICTION or ERROR (vs. actual [comp]) - # legend_column: The DF column to use to color the plot - # first_it_only: Whether to create a graph only using self.__df_first_it + # pylint: disable=too-many-arguments + # pylint: disable=too-many-locals + # pylint: disable=too-many-branches + # pylint: disable=too-many-statements def make_scatter_plot( - self, comp: str, plot_type: ScatterPlotType, legend_column: str, first_it_only: bool + self, + comp: str, + plot_type: ScatterPlotType, + legend_column: str, + first_it_only: bool, + gv: GlobalVars ): - if (not first_it_output and first_it_only) or (not all_it_output and not first_it_only): + """Create a scatter plot displaying actual [comp] vs. either predicted [comp] or error. + + :param comp: The component (cost, delay, or congestion). + :type comp: str + :param plot_type: PREDICTION or ERROR (vs. actual [comp]). + :type plot_type: ScatterPlotType + :param legend_column: The column to use to color the plot. + :type legend_column: str + :param first_it_only: Whether to create a graph only using data from first iteration. + :type first_it_only: bool + :param gv: + :type gv: GlobalVars + """ + + if ( + (not gv.first_it_output and first_it_only) or + (not gv.all_it_output and not first_it_only) + ): return # Check that the component and column name are valid check_valid_component(comp) - check_valid_column(legend_column) + check_valid_column(legend_column, gv) # Determine the graph title, directory, and file name title, curr_dir = "", "" @@ -263,10 +333,10 @@ def make_scatter_plot( file_name = "color_" + column_file_name(legend_column) + "_" + comp + file_name + ".png" - if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): + if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False) + make_dir(curr_dir, False, gv) # Determine colors for legend num_colors = self.__df[legend_column].nunique() + 1 @@ -294,7 +364,7 @@ def make_scatter_plot( ] # Create graph - fig, ax = plt.subplots() + _, ax = plt.subplots() for elem in custom_sort(list(curr_df[legend_column].unique())): section = curr_df[curr_df[legend_column].isin([elem])][:] section = section.reset_index(drop=True) @@ -325,18 +395,24 @@ def make_scatter_plot( ax.plot(curr_df[f"actual {comp}"], [0.0] * len(curr_df), color="black") plt.ylabel(f"{comp} error") - self.write_exclusions_info() + self.write_exclusions_info(gv) plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() - if should_print: + if gv.should_print: print("Created ", os.path.join(curr_dir, file_name), sep="") - # Make all scatter plots in self.__standard_scatter_columns - # test_name_plot: whether to create plots wherein legend is by test name. This option - # is useful when creating graphs for an entire benchmark, but not specific circuits - # (tests). - def make_standard_scatter_plots(self, test_name_plot: bool): + def make_standard_scatter_plots(self, test_name_plot: bool, gv: GlobalVars): + """ + Make all scatter plots in self.__standard_scatter_columns + + :param test_name_plot: whether to create plots wherein legend is by test name. This option + is useful when creating graphs for an entire benchmark, but not specific circuits (tests). + :type test_name_plot: bool + :param gv: + :type gv: GlobalVars + """ + scatter_types = [ScatterPlotType.PREDICTION, ScatterPlotType.ERROR] if test_name_plot: @@ -344,32 +420,53 @@ def make_standard_scatter_plots(self, test_name_plot: bool): else: legend_columns = self.__standard_scatter_columns[0:-1] - for comp in components: + for comp in gv.components: for plot_type in scatter_types: for col in legend_columns: for first_it in [True, False]: if first_it and col == "iteration no.": continue - pool.submit(self.make_scatter_plot, comp, plot_type, col, first_it) + gv.pool.submit(self.make_scatter_plot, comp, plot_type, col, first_it, gv) + + # pylint: disable=too-many-locals + def make_bar_graph(self, + comp: str, + column: str, + first_it_only: bool, + use_absolute: bool, + gv: GlobalVars): + """ + Create a bar graph displaying average error. + + :param comp: The component (cost, delay, or congestion). + :type comp: str + :param column: The column to use to split data (i.e. create each bar). + :type column: str + :param first_it_only: Whether to create a graph only using data from first iteration. + :type first_it_only: bool + :param use_absolute: Whether to produce a graph using absolute error, as opposed to signed + error. + :type use_absolute: bool + :param gv: + :type gv: GlobalVars + """ + + if ( + (not gv.absolute_output and use_absolute) + or (not gv.signed_output and not use_absolute) + ): + return - # Create a bar graph displaying average error - # comp: The component (cost, delay, or congestion) - # column: The DF column to use to split data (i.e. create each bar) - # first_it_only: Whether to create a graph only using self.__df_first_it - # use_absolute: Whether to produce a graph using absolute error, as opposed to signed error - def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolute: bool): if ( - (not absolute_output and use_absolute) - or (not signed_output and not use_absolute) - or (not first_it_output and first_it_only) - or (not all_it_output and not first_it_only) + (not gv.first_it_output and first_it_only) + or (not gv.all_it_output and not first_it_only) ): return # Check that the component and column name are valid check_valid_component(comp) - check_valid_column(column) + check_valid_column(column, gv) # Determine the graph title, directory, and file name title = "Average " + comp @@ -399,10 +496,10 @@ def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolu file_name = "by_" + column_file_name(column) + "_" + comp + file_name + ".png" - if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): + if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False) + make_dir(curr_dir, False, gv) # Get DF with average error for each "type" encountered in column avg_error = {} @@ -424,50 +521,80 @@ def make_bar_graph(self, comp: str, column: str, first_it_only: bool, use_absolu else: avg_error_df.plot.bar(title=title, xlabel=column, ylabel=y_label, legend=False) - self.write_exclusions_info() + self.write_exclusions_info(gv) plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() - if should_print: + if gv.should_print: print("Created ", os.path.join(curr_dir, file_name), sep="") - # Make all bar graphs in self.__standard_bar_columns - # test_name_plot: whether to create graph where data is split by test name. This option - # is useful when creating graphs for an entire benchmark, but not specific circuits - # (tests). - def make_standard_bar_graphs(self, test_name_plot: bool): + def make_standard_bar_graphs(self, test_name_plot: bool, gv: GlobalVars): + """ + Make all bar graphs in self.__standard_bar_columns + + :param test_name_plot: Whether to create graph where data is split by test name. This option + is useful when creating graphs for an entire benchmark, but not specific circuits (tests). + :type test_name_plot: bool + :param gv: + :type gv: GlobalVars + """ + if test_name_plot: columns = self.__standard_bar_columns else: columns = self.__standard_bar_columns[0:-1] - for comp in components: + for comp in gv.components: for col in columns: for use_abs in [True, False]: for first_it in [True, False]: - pool.submit(self.make_bar_graph, comp, col, use_abs, first_it) - - # Create a heatmap comparing two quantitative columns - # comp: The component (cost, delay, or congestion) - # x_column: The column to be used for the x-axis - # y_column: The column to be used for the y-axis - # first_it_only: Whether to create a graph only using self.__df_first_it - # use_absolute: Whether to produce a graph using absolute error, as opposed to signed error + gv.pool.submit(self.make_bar_graph, comp, col, use_abs, first_it, gv) + + # pylint: disable=too-many-locals def make_heatmap( - self, comp: str, x_column: str, y_column: str, first_it_only: bool, use_absolute: bool + self, + comp: str, + x_column: str, + y_column: str, + first_it_only: bool, + use_absolute: bool, + gv: GlobalVars ): + """ + Create a heatmap comparing two quantitative columns. + + :param comp: The component (cost, delay, or congestion). + :type comp: str + :param x_column: The column to be used for the x-axis. + :type x_column: str + :param y_column: The column to be used for the y-axis. + :type y_column: str + :param first_it_only: Whether to create a graph only using data from first iteration. + :type first_it_only: bool + :param use_absolute: Whether to produce a graph using absolute error, as opposed to signed + error. + :type use_absolute: bool + :param gv: + :type gv: GlobalVars + """ + + # pylint: disable=too-many-boolean-expressions if ( - (not absolute_output and use_absolute) - or (not signed_output and not use_absolute) - or (not first_it_output and first_it_only) - or (not all_it_output and not first_it_only) + (not gv.absolute_output and use_absolute) + or (not gv.signed_output and not use_absolute) + ): + return + + if ( + (not gv.first_it_output and first_it_only) + or (not gv.all_it_output and not first_it_only) ): return # Check that the component and column names are valid check_valid_component(comp) - check_valid_column(x_column) - check_valid_column(y_column) + check_valid_column(x_column, gv) + check_valid_column(y_column, gv) # Determine the graph title, directory, and file name title = "Average " + comp @@ -506,10 +633,10 @@ def make_heatmap( + ".png" ) - if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): + if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False) + make_dir(curr_dir, False, gv) # Get DF with average error for each "coordinate" in the heatmap df_avgs = pd.DataFrame(columns=[x_column, y_column, scale_column]) @@ -540,44 +667,69 @@ def make_heatmap( else: ax = sns.heatmap(df_avgs, cmap="rocket_r") - self.write_exclusions_info() + self.write_exclusions_info(gv) ax.set_title(title, y=1.08) plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() - if should_print: + if gv.should_print: print("Created ", os.path.join(curr_dir, file_name), sep="") - # Make "standard" heatmaps: (sink cluster tile width and sink cluster tile height) and - # (delta_x and delta_y) - def make_standard_heatmaps(self): - for comp in components: + def make_standard_heatmaps(self, gv: GlobalVars): + """Make "standard" heatmaps: (sink cluster tile width and sink cluster tile height) and + (delta_x and delta_y) + """ + + for comp in gv.components: for first_it in [True, False]: for use_abs in [True, False]: - pool.submit(self.make_heatmap, - comp, - "sink cluster tile width", - "sink cluster tile height", - first_it, - use_abs, - ) - pool.submit(self.make_heatmap, comp, "delta x", "delta y", first_it, use_abs) - - # Create a pie chart showing the proportion of cases where error is under percent_error_threshold - # comp: The component (cost, delay, or congestion) - # column: The column to split data by - # first_it_only: Whether to create a graph only using self.__df_first_it - # weighted: Whether to weight each section of the pie graph by the % error of that section - def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: bool): - if (not first_it_output and first_it_only) or (not all_it_output and not first_it_only): + gv.pool.submit(self.make_heatmap, + comp, + "sink cluster tile width", + "sink cluster tile height", + first_it, + use_abs, + gv) + gv.pool.submit(self.make_heatmap, + comp, + "delta x", + "delta y", + first_it, + use_abs, + gv) + + # pylint: disable=too-many-locals + def make_pie_chart( + self, comp: str, column: str, first_it_only: bool, weighted: bool, gv: GlobalVars + ): + """ + Create a pie chart showing the proportion of cases where error is under + percent_error_threshold. + + :param comp: The component (cost, delay, or congestion). + :type comp: str + :param column: The column to split data by. + :type column: str + :param first_it_only: Whether to create a graph only using data from first iteration. + :type first_it_only: bool + :param weighted: Whether to weight each section of the pie graph by the % error of that + section. + :type weighted: bool + :param gv: + :type gv: GlobalVars + """ + if ( + (not gv.first_it_output and first_it_only) or + (not gv.all_it_output and not first_it_only) + ): return # Check that the component and column names are valid check_valid_component(comp) - check_valid_column(column) + check_valid_column(column, gv) # Determine the graph title, directory, and file name - title = f"Num. Mispredicts Under {percent_error_threshold:.1f}% {comp} Error" + title = f"Num. Mispredicts Under {gv.percent_error_threshold:.1f}% {comp} Error" if weighted: title += ", Weighted by % Error," @@ -609,13 +761,13 @@ def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: file_name += ".png" - if no_replace and os.path.exists(os.path.join(curr_dir, file_name)): + if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False) + make_dir(curr_dir, False, gv) # Constrict DF to columns whose error is under threshold - curr_df = curr_df[curr_df[f"{comp} % error"] < percent_error_threshold] + curr_df = curr_df[curr_df[f"{comp} % error"] < gv.percent_error_threshold] # Determine colors for sections num_colors = self.__df[column].nunique() + 1 @@ -640,52 +792,65 @@ def make_pie_chart(self, comp: str, column: str, first_it_only: bool, weighted: # Create pie chart pie_df.plot.pie(y=" ", labeldistance=None, colors=colors) - self.write_exclusions_info() + self.write_exclusions_info(gv) plt.title(title, fontsize=8) plt.legend(loc="upper left", bbox_to_anchor=(1.08, 1), title=column) plt.savefig(os.path.join(curr_dir, file_name), dpi=300, bbox_inches="tight") plt.close() - if should_print: + if gv.should_print: print("Created ", os.path.join(curr_dir, file_name), sep='') - # Make all pie chars in self.__standard_bar_columns - # test_name_plot: whether to create graph where data is split by test name. This option - # is useful when creating graphs for an entire benchmark, but not specific circuits - # (tests). - def make_standard_pie_charts(self, test_name_plot: bool): + def make_standard_pie_charts(self, test_name_plot: bool, gv: GlobalVars): + """ + Make all pie chars in self.__standard_bar_columns. + + :param test_name_plot: Whether to create graph where data is split by test name. This option + is useful when creating graphs for an entire benchmark, but not specific circuits(tests). + :type test_name_plot: bool + :param gv: + :type gv: GlobalVars + """ + if test_name_plot: columns = self.__standard_bar_columns else: columns = self.__standard_bar_columns[:-1] - for comp in components: + for comp in gv.components: for col in columns: for first_it in [True, False]: for weighted in [True, False]: - pool.submit(self.make_pie_chart, comp, col, first_it, weighted) + gv.pool.submit(self.make_pie_chart, comp, col, first_it, weighted, gv) - # Make "standard" graphs of all types. - # test_name_plot: whether to create plots where data is split by test name. This option - # is useful when creating plots for an entire benchmark, but not specific circuits - # (tests). - def make_standard_plots(self, test_name_plot: bool): - if "pie" in graph_types: - self.make_standard_pie_charts(test_name_plot) + def make_standard_plots(self, test_name_plot: bool, gv: GlobalVars): + """ + Make "standard" graphs of all types - if "heatmap" in graph_types: - self.make_standard_heatmaps() + :param test_name_plot: Whether to create plots where data is split by test name. This option + is useful when creating plots for an entire benchmark, but not specific circuits (tests). + :type test_name_plot: bool + :param gv: + :type gv: GlobalVars + """ - if "bar" in graph_types: - self.make_standard_bar_graphs(test_name_plot) + if "pie" in gv.graph_types: + self.make_standard_pie_charts(test_name_plot, gv) - if "scatter" in graph_types: - self.make_standard_scatter_plots(test_name_plot) + if "heatmap" in gv.graph_types: + self.make_standard_heatmaps(gv) + if "bar" in gv.graph_types: + self.make_standard_bar_graphs(test_name_plot, gv) -# Print to terminal and write to lookahead_stats_summary.txt -def print_and_write(string, directory: str): - if should_print: + if "scatter" in gv.graph_types: + self.make_standard_scatter_plots(test_name_plot, gv) + + +def print_and_write(string, directory: str, gv: GlobalVars): + """Print to terminal and write to lookahead_stats_summary.txt.""" + + if gv.should_print: print(string, sep="") orig_out = sys.stdout @@ -697,77 +862,114 @@ def print_and_write(string, directory: str): sys.stdout = orig_out -# Print stats for a given component -# df: The DataFrame with all info -# comp: cost, delay, or congestion -# directory: output directory -def print_stats(df: pd.DataFrame, comp: str, directory: str): +def print_stats(df: pd.DataFrame, comp: str, directory: str, gv: GlobalVars): + """ + Print stats for a given component. + + :param df: The DataFrame with all info. + :type df: pd.DataFrame + :param comp: cost, delay, or congestion. + :type comp: str + :param directory: The output directory. + :type directory: str + :param gv: + :type gv: GlobalVars + """ + check_valid_component(comp) - print_and_write("\n#### BACKWARDS PATH " + comp.upper() + " ####", directory) - print_and_write("Mean error: " + str(df[f"{comp} error"].mean()), directory) - print_and_write("Mean absolute error: " + str(df[f"{comp} absolute error"].mean()), directory) - print_and_write("Median error: " + str(df[f"{comp} error"].median()), directory) - print_and_write("Highest error: " + str(df[f"{comp} error"].max()), directory) - print_and_write("Lowest error: " + str(df[f"{comp} error"].min()), directory) + print_and_write("\n#### BACKWARDS PATH " + comp.upper() + " ####", directory, gv) + print_and_write("Mean error: " + str(df[f"{comp} error"].mean()), directory, gv) + print_and_write("Mean absolute error: " + str(df[f"{comp} absolute error"].mean()), + directory, + gv) + print_and_write("Median error: " + str(df[f"{comp} error"].median()), directory, gv) + print_and_write("Highest error: " + str(df[f"{comp} error"].max()), directory, gv) + print_and_write("Lowest error: " + str(df[f"{comp} error"].min()), directory, gv) print_and_write( "Mean squared error: " + str(mean_squared_error(df[f"actual {comp}"], df[f"predicted {comp}"])), directory, + gv ) -# Write out stats for all components -# df: The DataFrame with all info -# directory: output directory -def print_df_info(df: pd.DataFrame, directory: str): - print_and_write(df, directory) +def print_df_info(df: pd.DataFrame, directory: str, gv: GlobalVars): + """ + Write out stats for all components. + + :param df: The DataFrame with all info. + :type df: pd.DataFrame + :param directory: The output directory. + :type directory: str + :param gv: + :type gv: GlobalVars + """ + + print_and_write(df, directory, gv) - for comp in components: - print_stats(df, comp, directory) + for comp in gv.components: + print_stats(df, comp, directory, gv) -# Write out stats for the first iteration only, and for all iterations, as well -# as the csv_file containing the entire DataFrame -# df: The DataFrame with all info -# directory: output directory -def record_df_info(df: pd.DataFrame, directory: str): - check_valid_df(df) +def record_df_info(df: pd.DataFrame, directory: str, gv: GlobalVars): + """ + Write out stats for the first iteration only, and for all iterations, as well as the csv_file + containing the entire DataFrame. + + :param df: The DataFrame with all info. + :type df: pd.DataFrame + :param directory: The output directory. + :type directory: str + :param gv: + :type gv: GlobalVars + """ + + check_valid_df(df, gv) df_first_iteration = df[df["iteration no."].isin([1])][:] print_and_write( - "\nFIRST ITERATION RESULTS ----------------------------------------------------------------------\n", + "\nFIRST ITERATION RESULTS " + "----------------------------------------------------------------------\n", directory, + gv ) - print_df_info(df_first_iteration, directory) + print_df_info(df_first_iteration, directory, gv) print_and_write( - "\nALL ITERATIONS RESULTS -----------------------------------------------------------------------\n", + "\nALL ITERATIONS RESULTS " + "-----------------------------------------------------------------------\n", directory, + gv ) - print_df_info(df, directory) + print_df_info(df, directory, gv) print_and_write( - "\n----------------------------------------------------------------------------------------------\n", + "\n-------------------------------------------------------------------------------------\n", directory, + gv ) def make_csv(df_out: pd.DataFrame, file_name: str): df_out.to_csv(file_name, index=False) # Write out the csv - if csv_data and (not os.path.exists(os.path.join(directory, "data.csv")) or not no_replace): - pool.submit(make_csv, df, os.path.join(directory, "data.csv")) + if ( + gv.csv_data and + (not os.path.exists(os.path.join(directory, "data.csv")) or not gv.no_replace) + ): + gv.pool.submit(make_csv, df, os.path.join(directory, "data.csv")) - if should_print: + if gv.should_print: print("Created ", os.path.join(directory, "data.csv"), sep="") -# Calculate error columns from given csv file def create_error_columns(df: pd.DataFrame): + """Calculate and insert error columns from given csv file""" + df["cost error"] = df["predicted cost"] - df["actual cost"] df["cost absolute error"] = abs(df["cost error"]) df["cost % error"] = 100.0 * ((df["predicted cost"] / df["actual cost"]) - 1.0) @@ -785,14 +987,20 @@ def create_error_columns(df: pd.DataFrame): df.fillna(0.0, inplace=True) -def main(): - # Parse arguments +# pylint: disable=too-many-locals +# pylint: disable=too-many-branches +# pylint: disable=too-many-statements +def parse_args(): + """Parse arguments and load global variables""" + description = ( - "Parses data from lookahead_verifier_info.csv file(s) generated when running VPR on this branch. " - + "Create one or more csv files with, in the first column, the circuit/test name, and in the second " - + "column, the corresponding path to its lookahead info csv file. Give it a unique name, and pass " - + "it in as csv_files_list." + "Parses data from lookahead_verifier_info.csv file(s) generated when running VPR with " + "--router_lookahead_profiler on. Create one or more csv files (ideally, one per " + "benchmark with, in the first column, the circuit/test name, and in the second column, " + "the corresponding path to its lookahead info csv file. Give it a unique name " + "(ideally, the benchmark name), and pass it in as csv_files_list." ) + parser = argparse.ArgumentParser(prog="ParseLookaheadData", description=description, epilog="") parser.add_argument( @@ -823,8 +1031,8 @@ def main(): default="", metavar="COMPONENT", nargs="+", - help="produce results investigating this backwards-path component (cost, delay, congestion, " - "all)", + help="produce results investigating this backwards-path component (cost, delay, " + "congestion, all)", choices=["cost", "delay", "congestion", "all"], ) @@ -837,14 +1045,21 @@ def main(): ) parser.add_argument( - "--first-it", action="store_true", help="produce results using data from first iteration" + "--first-it", + action="store_true", + help="produce results using data from first iteration" + ) + + parser.add_argument( + "--all-it", + action="store_true", + help="produce results using data from all iterations" ) parser.add_argument( - "--all-it", action="store_true", help="produce results using data from all iterations" + "--csv-data", action="store_true", help="create csv file with all data" ) - parser.add_argument("--csv-data", action="store_true", help="create csv file with all data") parser.add_argument( "--all", action="store_true", @@ -852,8 +1067,8 @@ def main(): ) parser.add_argument("--exclude", type=str, default="", metavar="EXCLUSION", nargs="+", - help="exclude cells that meet a given condition, in the form \"column_name [comparison " - "operator] value\"") + help="exclude cells that meet a given condition, in the form \"column_name " + "[comparison operator] value\"") parser.add_argument( "--collect", @@ -861,8 +1076,9 @@ def main(): default="", metavar="FOLDER_NAME", nargs=1, - help="instead of producing results from individual input csv files, collect data from all input" - "files, and produce results for this collection (note: FOLDER_NAME should not be a path)", + help="instead of producing results from individual input csv files, collect data from all " + "input files, and produce results for this collection (note: FOLDER_NAME should not " + "be a path)", ) parser.add_argument( @@ -895,17 +1111,8 @@ def main(): ) args = parser.parse_args() - - global pool pool = ThreadPoolExecutor(max_workers=args.j) - global graph_types - global components - global absolute_output - global signed_output - global first_it_output - global all_it_output - if args.all: graph_types = ["bar", "scatter", "heatmap", "pie"] components = ["cost", "delay", "congestion"] @@ -920,14 +1127,16 @@ def main(): if len(graph_types) == 0: print( - "Warning: no graphs will be produced. Use -g to select graph types (bar, scatter, heatmap, pie, all).") + "Warning: no graphs will be produced. Use -g to select graph types (bar, scatter, " + "heatmap, pie, all).") components = args.components if "all" in components: components = ["cost", "delay", "congestion"] if len(components) == 0: - print("Warning: no graphs will be produced. Use -c to select components (cost, delay, congestion, all).") + print("Warning: no graphs will be produced. Use -c to select components (cost, delay, " + "congestion, all).") absolute_output = args.absolute signed_output = args.signed @@ -941,19 +1150,21 @@ def main(): if not first_it_output and not all_it_output: print("Warning: no graphs will be produced. Use --first_it and/or --all_it.") - global csv_data - csv_data = args.csv_data - - global percent_error_threshold - percent_error_threshold = args.threshold - - global no_replace - no_replace = not args.replace - - global should_print - should_print = args.print + gv = GlobalVars( + graph_types, + components, + absolute_output, + signed_output, + args.csv_data, + first_it_output, + all_it_output, + not args.replace, + args.print, + args.threshold, + {}, + pool + ) - global exclusions for excl in args.exclude: operators = ["==", "!=", ">=", "<=", ">", "<"] key, val, op = "", "", "" @@ -965,132 +1176,200 @@ def main(): key, val = key.strip(), val.strip() - if len(key) == 0 or len(val) == 0 or key not in column_names: + if len(key) == 0 or len(val) == 0 or key not in gv.column_names: print("Invalid entry in --exclusions:", excl) - exit() + sys.exit() - if key not in exclusions: - exclusions[key] = [] + if key not in gv.exclusions: + gv.exclusions[key] = [] try: int(val) - exclusions[key].append((op, val)) + gv.exclusions[key].append((op, val)) except ValueError: - exclusions[key].append((op, "\"" + val + "\"")) + gv.exclusions[key].append((op, "\"" + val + "\"")) - make_dir(output_dir, False) + return args, gv - df_complete = pd.DataFrame(columns=column_names) # The DF containing info across all given csv files - csv_files_list = args.csv_files_list - for file_list in csv_files_list: - output_folder = Path(file_list).stem - if len(args.dir_app) > 0: - output_folder += f"{args.dir_app[0]}" +def create_complete_outputs( + args, df_complete: pd.DataFrame, gv: GlobalVars +): + """Where applicable, create output files (summary, plots) for all given data""" - # Get list of csv files with data - df_files = pd.read_csv(file_list, header=None) - tests = list(df_files.itertuples(index=False, name=None)) + results_folder = args.collect[0] + results_folder_path = os.path.join(gv.output_dir, results_folder) + if len(args.dir_app) > 0: + results_folder_path += f"{args.dir_app[0]}" - if len(tests) < 1: - continue + make_dir(results_folder_path, False, gv) - df_benchmark = pd.DataFrame(columns=column_names) # The DF containing all info for this benchmark + df_complete = df_complete.reset_index(drop=True) - for test_name, file_path in tests: - if not os.path.isfile(file_path): - print("ERROR:", file_path, "could not be found") - continue + record_df_info(df_complete, results_folder_path, gv) - if should_print: - print("Reading data at " + file_path) + global_plots = Graphs(df_complete, os.path.join(results_folder, "plots"), "All Tests", gv) + global_plots.make_standard_plots(True, gv) - results_folder = os.path.join(output_folder, test_name) - results_folder_path = os.path.join(output_dir, results_folder) - make_dir(results_folder_path, False) - # Read csv with lookahead data (or, a csv previously created by this script) - df = pd.read_csv(file_path) - df = df.reset_index(drop=True) - df = df.drop(columns=["cost error", - "cost absolute error", - "cost % error", - "delay error", - "delay absolute error", - "delay % error", - "congestion error", - "congestion absolute error", - "congestion % error", - "test name"], errors="ignore") - - # Determine exclusions, and remove them from df - for key, val in exclusions.items(): - for item in val: - ldict = {} - code_line = f"df = df.drop(index=df[df[\"{key}\"] {item[0]} {item[1]}].index.values.tolist())" - exec(code_line, locals(), ldict) - df = ldict["df"] - df = df.reset_index(drop=True) +# pylint: disable=too-many-arguments +def create_benchmark_outputs( + args, + df_benchmark: pd.DataFrame, + df_complete: pd.DataFrame, + gv: GlobalVars, + output_folder: str, + tests: list +): + """Where applicable, create output files (summary, plots) for a given benchmark""" - # Calculate error columns and add test name column - create_error_columns(df) - df.insert(len(df.columns), "test name", test_name) + if len(tests) == 1: + return df_complete - # Add current DF to DF for entire benchmark - df_benchmark = pd.concat([df_benchmark, df]) + results_folder = os.path.join(output_folder, "__all__") + results_folder_path = os.path.join(gv.output_dir, results_folder) + make_dir(results_folder_path, False, gv) - # If --collect option used, skip creating files for individual circuits - if args.collect != "": - continue + df_benchmark = df_benchmark.reset_index(drop=True) - # Write out stats summary and csv file - print_and_write("Test: " + test_name, results_folder_path) - record_df_info(df, results_folder_path) + if args.collect != "": + df_complete = pd.concat([df_complete, df_benchmark]) + return df_complete - # Create plots - curr_plots = Graphs(df, os.path.join(results_folder, "plots"), test_name) - curr_plots.make_standard_plots(False) + print_and_write("Global results:\n", results_folder_path, gv) + record_df_info(df_benchmark, results_folder_path, gv) - if should_print: - print( - "\n----------------------------------------------------------------------------------------------" - ) + global_plots = Graphs( + df_benchmark, + os.path.join(results_folder, "plots"), + f"All Tests ({output_folder})", + gv + ) + global_plots.make_standard_plots(True, gv) + + return df_complete + + +# pylint disable=too-many-arguments +def create_circuit_outputs( + args, + df_benchmark: pd.DataFrame, + file_path: str, + gv: GlobalVars, + output_folder: str, + test_name: str +): + """Where applicable, create output files (summary, plots) for a given circuit (test)""" + + if not os.path.isfile(file_path): + print("ERROR:", file_path, "could not be found") + return df_benchmark + + if gv.should_print: + print("Reading data at " + file_path) + + results_folder = os.path.join(output_folder, test_name) + results_folder_path = os.path.join(gv.output_dir, results_folder) + make_dir(results_folder_path, False, gv) + # Read csv with lookahead data (or, a csv previously created by this script) + df = pd.read_csv(file_path) + df = df.reset_index(drop=True) + df = df.drop(columns=["cost error", + "cost absolute error", + "cost % error", + "delay error", + "delay absolute error", + "delay % error", + "congestion error", + "congestion absolute error", + "congestion % error", + "test name"], errors="ignore") + + # Determine exclusions, and remove them from df + for key, val in gv.exclusions.items(): + for item in val: + ldict = {} + code_line = ( + f"df = df.drop(index=df[df[\"{key}\"] {item[0]} {item[1]}]" + ".index.values.tolist())" + ) + # pylint: disable=exec-used + exec(code_line, locals(), ldict) + df = ldict["df"] + df = df.reset_index(drop=True) - # Create output files for entire benchmark + # Calculate error columns and add test name column + create_error_columns(df) + df.insert(len(df.columns), "test name", test_name) - if len(tests) == 1: - continue + # Add current DF to DF for entire benchmark + df_benchmark = pd.concat([df_benchmark, df]) + + # If --collect option used, skip creating files for individual circuits + if args.collect != "": + return df_benchmark - results_folder = os.path.join(output_folder, "__all__") - results_folder_path = os.path.join(output_dir, results_folder) - make_dir(results_folder_path, False) + # Write out stats summary and csv file + print_and_write("Test: " + test_name, results_folder_path, gv) + record_df_info(df, results_folder_path, gv) - df_benchmark = df_benchmark.reset_index(drop=True) - if args.collect != "": - df_complete = pd.concat([df_complete, df_benchmark]) - continue + # Create plots + curr_plots = Graphs(df, os.path.join(results_folder, "plots"), test_name, gv) + curr_plots.make_standard_plots(False, gv) - print_and_write("Global results:\n", results_folder_path) - record_df_info(df_benchmark, results_folder_path) + if gv.should_print: + print( + "\n----------------------------------------------------------------------------" + ) - global_plots = Graphs(df_benchmark, os.path.join(results_folder, "plots"), f"All Tests ({output_folder})") - global_plots.make_standard_plots(True) + return df_benchmark - # If --collect used, create output files for all csv files provided - if args.collect != "": - results_folder = args.collect[0] - results_folder_path = os.path.join(output_dir, results_folder) +# pylint: disable=missing-function-docstring +def main(): + args, gv = parse_args() + + make_dir(gv.output_dir, False, gv) + + # The DF containing info across all given csv files + df_complete = pd.DataFrame(columns=gv.column_names) + + csv_files_list = args.csv_files_list + for file_list in csv_files_list: + output_folder = Path(file_list).stem if len(args.dir_app) > 0: - results_folder_path += f"{args.dir_app[0]}" - make_dir(results_folder_path, False) + output_folder += f"{args.dir_app[0]}" - df_complete = df_complete.reset_index(drop=True) + # Get list of csv files with data + df_files = pd.read_csv(file_list, header=None) + tests = list(df_files.itertuples(index=False, name=None)) - record_df_info(df_complete, results_folder_path) + if len(tests) < 1: + continue - global_plots = Graphs(df_complete, os.path.join(results_folder, "plots"), "All Tests") - global_plots.make_standard_plots(True) + # The DF containing all info for this benchmark + df_benchmark = pd.DataFrame(columns=gv.column_names) + + for test_name, file_path in tests: + # Create output files for this circuit/test + df_benchmark = create_circuit_outputs(args, + df_benchmark, + file_path, + gv, + output_folder, + test_name) + + # Create output files for entire benchmark + df_complete = create_benchmark_outputs(args, + df_benchmark, + df_complete, + gv, + output_folder, + tests) + + # If --collect used, create output files for all csv files provided + if args.collect != "": + create_complete_outputs(args, df_complete, gv) if __name__ == "__main__": From e753094e3e3a4c2896476a9e1abd53759aacd8a7 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 14 Aug 2024 15:58:45 -0400 Subject: [PATCH 12/25] Refactored LookaheadProfiler --- vpr/src/route/lookahead_profiler.cpp | 60 +++++++++++----------------- vpr/src/route/lookahead_profiler.h | 21 +++++----- 2 files changed, 32 insertions(+), 49 deletions(-) diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 6ddfb704881..2d3063dd55c 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -1,7 +1,3 @@ -// -// Created by shrevena on 08/06/24. -// - #include #include "globals.h" @@ -31,7 +27,7 @@ void LookaheadProfiler::record(int iteration, VTR_LOG_ERROR("Could not open lookahead_verifier_info.csv"); throw vtr::VtrError("Could not open lookahead_verifier_info.csv", "lookahead_profiler.cpp", - 32); + 28); } lookahead_verifier_csv_ @@ -62,14 +58,10 @@ void LookaheadProfiler::record(int iteration, } if (!lookahead_verifier_csv_.is_open()) { - if (toggle_warn_) { - VTR_LOG_WARN("lookahead_verifier_info.csv is not open"); - toggle_warn_ = false; - } - - return; - } else { - toggle_warn_ = true; + VTR_LOG_ERROR("lookahead_verifier_info.csv is not open."); + throw vtr::VtrError("lookahead_verifier_info.csv is not open.", + "lookahead_profiler.cpp", + 62); } // The default value in RouteTree::update_from_heap() is -1; only calls which descend from route_net() @@ -77,42 +69,36 @@ void LookaheadProfiler::record(int iteration, if (iteration < 1) return; - RRNodeId source_inode = branch_inodes.back(); // Not necessarily an actual SOURCE node. + RRNodeId source_inode = branch_inodes.back(); // Not necessarily a SOURCE node. RRNodeId sink_inode = branch_inodes.front(); VTR_ASSERT(rr_graph.node_type(sink_inode) == SINK); + VTR_ASSERT(net_id != ParentNetId::INVALID()); + VTR_ASSERT(target_net_pin_index != OPEN); /* Get sink node attributes (atom block name, atom block model, cluster type, tile dimensions) */ - if (atom_block_names_.find(sink_inode) == atom_block_names_.end()) { - if (net_id != ParentNetId::INVALID() && target_net_pin_index != OPEN) { - atom_block_names_[sink_inode] = net_list.block_name(net_list.net_pin_block(net_id, target_net_pin_index)); - - AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(atom_block_names_[sink_inode]); - atom_block_models_[sink_inode] = g_vpr_ctx.atom().nlist.block_model(atom_block_id)->name; + if (net_pin_blocks_.find(sink_inode) == net_pin_blocks_.end()) { + net_pin_blocks_[sink_inode] = net_list.net_pin_block(net_id, target_net_pin_index); - ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); + AtomBlockId atom_block_id = g_vpr_ctx.atom().nlist.find_block(net_list.block_name(net_pin_blocks_[sink_inode])); + sink_atom_block_[sink_inode] = g_vpr_ctx.atom().nlist.block_model(atom_block_id); - cluster_block_types_[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id)->name; + ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); + sink_cluster_block_[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id); - auto tile_type = physical_tile_type(cluster_block_id); - tile_dimensions_[sink_inode] = std::pair(std::to_string(tile_type->width), std::to_string(tile_type->height)); - } else { - atom_block_names_[sink_inode] = "--"; - atom_block_models_[sink_inode] = "--"; - cluster_block_types_[sink_inode] = "--"; - tile_dimensions_[sink_inode] = {"--", "--"}; - } + tile_types_[sink_inode] = physical_tile_type(cluster_block_id); } - VTR_ASSERT_SAFE(atom_block_models_.find(sink_inode) != atom_block_models_.end()); - VTR_ASSERT_SAFE(cluster_block_types_.find(sink_inode) != cluster_block_types_.end()); - VTR_ASSERT_SAFE(tile_dimensions_.find(sink_inode) != tile_dimensions_.end()); + VTR_ASSERT_SAFE(sink_atom_block_.find(sink_inode) != sink_atom_block_.end()); + VTR_ASSERT_SAFE(sink_cluster_block_.find(sink_inode) != sink_cluster_block_.end()); + VTR_ASSERT_SAFE(tile_types_.find(sink_inode) != tile_types_.end()); - const std::string& block_name = atom_block_names_[sink_inode]; - const std::string& atom_block_model = atom_block_models_[sink_inode]; - const std::string& cluster_block_type = cluster_block_types_[sink_inode]; - const auto& [tile_width, tile_height] = tile_dimensions_[sink_inode]; + const std::string& block_name = net_list.block_name(net_pin_blocks_[sink_inode]); + const std::string atom_block_model = sink_atom_block_[sink_inode]->name; + const std::string cluster_block_type = sink_cluster_block_[sink_inode]->name; + const std::string tile_width = std::to_string(tile_types_[sink_inode]->width); + const std::string tile_height = std::to_string(tile_types_[sink_inode]->height); /* Iterate through the given path and record information for each node */ for (size_t nodes_from_sink = 2; nodes_from_sink < branch_inodes.size(); ++nodes_from_sink) { // Distance one node away is always 0. (IPIN->SINK) diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index b7753f6d506..c94c88d718e 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -15,8 +15,7 @@ class LookaheadProfiler { public: LookaheadProfiler() - : is_empty_(true) - , toggle_warn_(true) {} + : is_empty_(true) {} LookaheadProfiler(const LookaheadProfiler&) = delete; LookaheadProfiler& operator=(const LookaheadProfiler&) = delete; @@ -48,16 +47,14 @@ class LookaheadProfiler { std::ofstream lookahead_verifier_csv_; ///@brief Whether the output file is empty/not yet opened. bool is_empty_; - ///@brief Whether to creat a warning if the output csv is not open. Used to avoid repeated warnings. - bool toggle_warn_; - ///@brief A map from sink node IDs to the names of their atom blocks. - std::unordered_map atom_block_names_; - ///@brief A map from sink node IDs to the names of the models of their atom blocks. - std::unordered_map atom_block_models_; - ///@brief A map from sink node IDs to the names of the types of their clusters. - std::unordered_map cluster_block_types_; - ///@brief A map from sink node IDs to the dimensions of their tiles (width, height). - std::unordered_map> tile_dimensions_; + ///@brief A map from sink node IDs to their atom blocks' IDs. + std::unordered_map net_pin_blocks_; + ///@brief A map from sink node IDs to a pointer to the model of their atom blocks. + std::unordered_map sink_atom_block_; + ///@brief A map from sink node IDs to a pointer to their cluster blocks. + std::unordered_map sink_cluster_block_; + ///@brief A map from sink node IDs to a pointer to their tiles' types. + std::unordered_map tile_types_; }; #endif //VTR_LOOKAHEAD_PROFILER_H \ No newline at end of file From d9f4ee3c86032c942eee30e4016edd5df3669eb6 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 14 Aug 2024 16:22:57 -0400 Subject: [PATCH 13/25] Eliminated profile_lookahead parameter in update_from_heap --- utils/route_diag/src/main.cpp | 2 +- vpr/src/route/lookahead_profiler.cpp | 14 +++++++++++++ vpr/src/route/lookahead_profiler.h | 14 +++++++++++++ vpr/src/route/route.cpp | 6 ++++++ vpr/src/route/route_net.tpp | 12 ++++-------- vpr/src/route/route_tree.cpp | 25 ++++++++++-------------- vpr/src/route/route_tree.h | 8 +++----- vpr/src/route/router_delay_profiling.cpp | 4 ++-- vpr/test/test_connection_router.cpp | 2 +- 9 files changed, 55 insertions(+), 32 deletions(-) diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index 6701062a25b..1aef7301454 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -137,7 +137,7 @@ static void do_one_route(const Netlist<>& net_list, router.get_router_lookahead(), cost_params, net_list, - conn_params.net_id_); + conn_params.net_id_, 0); //find delay float net_delay = rt_node_of_sink.value().Tdel; diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 2d3063dd55c..83a9ec75188 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -8,6 +8,10 @@ #include "vtr_error.h" #include "vtr_log.h" +void LookaheadProfiler::enable(bool should_enable) { + enabled_ = should_enable; +} + void LookaheadProfiler::record(int iteration, int target_net_pin_index, const t_conn_cost_params& cost_params, @@ -19,6 +23,9 @@ void LookaheadProfiler::record(int iteration, const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); + if (!enabled_) + return; + // If csv file hasn't been opened, open it and write out column headers if (is_empty_) { lookahead_verifier_csv_.open("lookahead_verifier_info.csv", std::ios::out); @@ -158,4 +165,11 @@ void LookaheadProfiler::record(int iteration, lookahead_verifier_csv_ << cost_params.criticality; // criticality lookahead_verifier_csv_ << "\n"; } +} + +void LookaheadProfiler::clear() { + net_pin_blocks_.clear(); + sink_atom_block_.clear(); + sink_cluster_block_.clear(); + tile_types_.clear(); } \ No newline at end of file diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index c94c88d718e..c336c45d606 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -20,6 +20,13 @@ class LookaheadProfiler { LookaheadProfiler(const LookaheadProfiler&) = delete; LookaheadProfiler& operator=(const LookaheadProfiler&) = delete; + /** + * @brief Enable or disable the LookaheadProfiler. + * + * @param should_enable Whether the profiler should be enabled. + */ + void enable(bool should_enable); + /** * @brief Record information on nodes on a path from a source to a sink. * @@ -42,7 +49,14 @@ class LookaheadProfiler { const Netlist<>& net_list, const std::vector& branch_inodes); + /** + * @brief Clear the profiler's private caches to free memory. + */ + void clear(); + private: + ///@brief Whether to record lookahead info. + bool enabled_; ///@brief The output filestream. std::ofstream lookahead_verifier_csv_; ///@brief Whether the output file is empty/not yet opened. diff --git a/vpr/src/route/route.cpp b/vpr/src/route/route.cpp index d7488910834..600a65d635b 100644 --- a/vpr/src/route/route.cpp +++ b/vpr/src/route/route.cpp @@ -221,6 +221,9 @@ bool route(const Netlist<>& net_list, choking_spots, is_flat); + // Enable lookahead profiling if command-line option used + route_ctx.lookahead_profiler.enable(router_opts.router_lookahead_profiling); + RouterStats router_stats; float prev_iter_cumm_time = 0; vtr::Timer iteration_timer; @@ -563,6 +566,9 @@ bool route(const Netlist<>& net_list, // profiling::time_on_criticality_analysis(); } + // Clear data accumulated in LookaheadProfiler + route_ctx.lookahead_profiler.clear(); + /* Write out partition tree logs (no-op if debug option not set) */ PartitionTreeDebug::write("partition_tree.log"); diff --git a/vpr/src/route/route_net.tpp b/vpr/src/route/route_net.tpp index 6121bf8ad6c..81d26bb8920 100644 --- a/vpr/src/route/route_net.tpp +++ b/vpr/src/route/route_net.tpp @@ -190,8 +190,7 @@ inline NetResultFlags route_net(ConnectionRouter& router, spatial_route_tree_lookup, router_stats, is_flat, - itry, - router_opts); + itry); if (flags.success == false) return flags; @@ -299,8 +298,7 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, SpatialRouteTreeLookup& spatial_rt_lookup, RouterStats& router_stats, bool is_flat, - int itry, - const t_router_opts& router_opts) { + int itry) { const auto& device_ctx = g_vpr_ctx.device(); auto& route_ctx = g_vpr_ctx.mutable_routing(); auto& m_route_ctx = g_vpr_ctx.mutable_routing(); @@ -364,8 +362,7 @@ inline NetResultFlags pre_route_to_clock_root(ConnectionRouter& router, cost_params, net_list, conn_params.net_id_, - itry, - router_opts.router_lookahead_profiling); + itry); VTR_ASSERT_DEBUG(!high_fanout || validate_route_tree_spatial_lookup(tree.root(), spatial_rt_lookup)); @@ -501,8 +498,7 @@ inline NetResultFlags route_sink(ConnectionRouter& router, cost_params, net_list, conn_params.net_id_, - itry, - router_opts.router_lookahead_profiling); + itry); VTR_ASSERT_DEBUG(!high_fanout || validate_route_tree_spatial_lookup(tree.root(), spatial_rt_lookup)); diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index f2181e43ea0..38f78d2200e 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -494,8 +494,7 @@ RouteTree::update_from_heap(t_heap* hptr, const t_conn_cost_params cost_params, const Netlist<>& net_list, const ParentNetId& net_id, - const int itry, - bool profile_lookahead) { + const int itry) { /* 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); @@ -508,8 +507,7 @@ RouteTree::update_from_heap(t_heap* hptr, cost_params, itry, net_list, - net_id, - profile_lookahead); + net_id); if (!start_of_new_subtree_rt_node) return {vtr::nullopt, *sink_rt_node}; @@ -539,8 +537,7 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, - const ParentNetId& net_id, - bool profile_lookahead) { + const ParentNetId& net_id) { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; auto& route_ctx = g_vpr_ctx.routing(); @@ -574,15 +571,13 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, } new_branch_iswitches.push_back(new_iswitch); - if (profile_lookahead) { - g_vpr_ctx.mutable_routing().lookahead_profiler.record(itry, - target_net_pin_index, - cost_params, - router_lookahead, - net_id, - net_list, - new_branch_inodes); - } + g_vpr_ctx.mutable_routing().lookahead_profiler.record(itry, + target_net_pin_index, + cost_params, + router_lookahead, + net_id, + net_list, + new_branch_inodes); /* Build the new tree branch starting from the existing node we found */ RouteTreeNode* last_node = _rr_node_to_rt_node[new_inode]; diff --git a/vpr/src/route/route_tree.h b/vpr/src/route/route_tree.h index cafdcedf802..0e7ec8ceaa7 100644 --- a/vpr/src/route/route_tree.h +++ b/vpr/src/route/route_tree.h @@ -363,11 +363,10 @@ class RouteTree { SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat, const RouterLookahead& router_lookahead, - t_conn_cost_params cost_params, + const t_conn_cost_params cost_params, const Netlist<>& net_list, const ParentNetId& net_id, - int itry = -1, - bool profile_lookahead = false); + const int itry); /** Reload timing values (R_upstream, C_downstream, Tdel). * Can take a RouteTreeNode& to do an incremental update. @@ -508,8 +507,7 @@ class RouteTree { const t_conn_cost_params cost_params, const int itry, const Netlist<>& net_list, - const ParentNetId& net_id, - bool profile_lookahead); + const ParentNetId& net_id); void add_non_configurable_nodes(RouteTreeNode* rt_node, bool reached_by_non_configurable_edge, diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index c4445f32c37..e7d28819385 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -128,7 +128,7 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, router_.get_router_lookahead(), cost_params, net_list_, - conn_params.net_id_); + conn_params.net_id_, 0); //find delay *net_delay = rt_node_of_sink->Tdel; @@ -225,7 +225,7 @@ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src router.get_router_lookahead(), cost_params, net_list, - conn_params.net_id_); + conn_params.net_id_, 0); VTR_ASSERT(rt_node_of_sink->inode == RRNodeId(sink_rr_node)); diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index 8d301e881f0..a0e7cd1b6f3 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -94,7 +94,7 @@ static float do_one_route(RRNodeId source_node, router.get_router_lookahead(), cost_params, net_list, - conn_params.net_id_); + conn_params.net_id_, 0); delay = rt_node_of_sink.value().Tdel; } From dfab0a8744a5ab108d8653074098493d5653c6ee Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 14 Aug 2024 16:52:52 -0400 Subject: [PATCH 14/25] Allowed users to enter a file name for profiler output --- vpr/src/base/SetupVPR.cpp | 3 +- vpr/src/base/read_options.cpp | 15 +++-- vpr/src/base/read_options.h | 3 +- vpr/src/base/vpr_types.h | 3 +- vpr/src/route/lookahead_profiler.cpp | 82 +++++++++++++--------------- vpr/src/route/lookahead_profiler.h | 15 +++-- vpr/src/route/route.cpp | 2 +- 7 files changed, 61 insertions(+), 62 deletions(-) diff --git a/vpr/src/base/SetupVPR.cpp b/vpr/src/base/SetupVPR.cpp index 47fb3290709..36f63be8fa3 100644 --- a/vpr/src/base/SetupVPR.cpp +++ b/vpr/src/base/SetupVPR.cpp @@ -473,7 +473,6 @@ static void SetupRouterOpts(const t_options& Options, t_router_opts* RouterOpts) RouterOpts->router_debug_sink_rr = Options.router_debug_sink_rr; RouterOpts->router_debug_iteration = Options.router_debug_iteration; RouterOpts->lookahead_type = Options.router_lookahead_type; - RouterOpts->router_lookahead_profiling = Options.router_lookahead_profiler; RouterOpts->max_convergence_count = Options.router_max_convergence_count; RouterOpts->reconvergence_cpd_threshold = Options.router_reconvergence_cpd_threshold; RouterOpts->initial_timing = Options.router_initial_timing; @@ -487,6 +486,8 @@ static void SetupRouterOpts(const t_options& Options, t_router_opts* RouterOpts) RouterOpts->write_intra_cluster_router_lookahead = Options.write_intra_cluster_router_lookahead; RouterOpts->read_intra_cluster_router_lookahead = Options.read_intra_cluster_router_lookahead; + RouterOpts->lookahead_profiling_output = Options.lookahead_profiling_output; + RouterOpts->router_heap = Options.router_heap; RouterOpts->exit_after_first_routing_iteration = Options.exit_after_first_routing_iteration; diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index bb271251f11..55fb5a185b2 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -1673,6 +1673,13 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio .help("Writes the intra-cluster lookahead data to the specified file.") .show_in(argparse::ShowIn::HELP_ONLY); + file_grp.add_argument(args.lookahead_profiling_output, "--profile_router_lookahead") + .help( + "For every routed sink, record the cost, delay, and congestion estimated by the router lookahead and the " + "actual cost, delay, and congestion, from every node along each route to the sink. These results, along with many " + "other attributes of the node, are recorded into the file name provided. File extension must be .csv.") + .show_in(argparse::ShowIn::HELP_ONLY); + file_grp.add_argument(args.read_placement_delay_lookup, "--read_placement_delay_lookup") .help( "Reads the placement delay lookup from the specified file instead of computing it.") @@ -2626,14 +2633,6 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio .default_value("map") .show_in(argparse::ShowIn::HELP_ONLY); - route_timing_grp.add_argument(args.router_lookahead_profiler, "--router_lookahead_profiler") - .help( - "For every routed sink, records the cost, delay, and congestion estimated by the router lookahead and the " - "actual cost, delay, and congestion, from every node along each route to the sink. These results, along with many " - "other attributes of the node, are recorded into lookahead_verifier_info.csv.") - .default_value("off") - .show_in(argparse::ShowIn::HELP_ONLY); - route_timing_grp.add_argument(args.router_max_convergence_count, "--router_max_convergence_count") .help( "Controls how many times the router is allowed to converge to a legal routing before halting." diff --git a/vpr/src/base/read_options.h b/vpr/src/base/read_options.h index 68b6157fc5d..a2ed2f5b7c0 100644 --- a/vpr/src/base/read_options.h +++ b/vpr/src/base/read_options.h @@ -44,6 +44,8 @@ struct t_options { argparse::ArgValue write_intra_cluster_router_lookahead; argparse::ArgValue read_intra_cluster_router_lookahead; + argparse::ArgValue lookahead_profiling_output; + argparse::ArgValue write_block_usage; /* Stage Options */ @@ -238,7 +240,6 @@ struct t_options { argparse::ArgValue router_debug_sink_rr; argparse::ArgValue router_debug_iteration; argparse::ArgValue router_lookahead_type; - argparse::ArgValue router_lookahead_profiler; argparse::ArgValue router_max_convergence_count; argparse::ArgValue router_reconvergence_cpd_threshold; argparse::ArgValue router_update_lower_bound_delays; diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 5befaf8e808..b749342bb88 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1458,7 +1458,6 @@ struct t_router_opts { int router_debug_sink_rr; int router_debug_iteration; e_router_lookahead lookahead_type; - bool router_lookahead_profiling; int max_convergence_count; float reconvergence_cpd_threshold; e_router_initial_timing initial_timing; @@ -1473,6 +1472,8 @@ struct t_router_opts { std::string write_intra_cluster_router_lookahead; std::string read_intra_cluster_router_lookahead; + std::string lookahead_profiling_output; + e_heap_type router_heap; bool exit_after_first_routing_iteration; diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 83a9ec75188..329c7f81c56 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -8,8 +8,42 @@ #include "vtr_error.h" #include "vtr_log.h" -void LookaheadProfiler::enable(bool should_enable) { - enabled_ = should_enable; +void LookaheadProfiler::set_file_name(const std::string& file_name) { + enabled_ = !file_name.empty(); + if (!enabled_) + return; + + lookahead_verifier_csv_.open(file_name, std::ios::out); + + if (!lookahead_verifier_csv_.is_open()) { + std::string message = "Could not open " + file_name; + VTR_LOG_ERROR(message.c_str()); + throw vtr::VtrError(message, "lookahead_profiler.cpp", 21); + } + + lookahead_verifier_csv_ + << "iteration no." + << ",source node" + << ",sink node" + << ",sink block name" + << ",sink atom block model" + << ",sink cluster block type" + << ",sink cluster tile height" + << ",sink cluster tile width" + << ",current node" + << ",node type" + << ",node length" + << ",num. nodes from sink" + << ",delta x" + << ",delta y" + << ",actual cost" + << ",actual delay" + << ",actual congestion" + << ",predicted cost" + << ",predicted delay" + << ",predicted congestion" + << ",criticality" + << "\n"; } void LookaheadProfiler::record(int iteration, @@ -26,49 +60,9 @@ void LookaheadProfiler::record(int iteration, if (!enabled_) return; - // If csv file hasn't been opened, open it and write out column headers - if (is_empty_) { - lookahead_verifier_csv_.open("lookahead_verifier_info.csv", std::ios::out); - - if (!lookahead_verifier_csv_.is_open()) { - VTR_LOG_ERROR("Could not open lookahead_verifier_info.csv"); - throw vtr::VtrError("Could not open lookahead_verifier_info.csv", - "lookahead_profiler.cpp", - 28); - } - - lookahead_verifier_csv_ - << "iteration no." - << ",source node" - << ",sink node" - << ",sink block name" - << ",sink atom block model" - << ",sink cluster block type" - << ",sink cluster tile height" - << ",sink cluster tile width" - << ",current node" - << ",node type" - << ",node length" - << ",num. nodes from sink" - << ",delta x" - << ",delta y" - << ",actual cost" - << ",actual delay" - << ",actual congestion" - << ",predicted cost" - << ",predicted delay" - << ",predicted congestion" - << ",criticality" - << "\n"; - - is_empty_ = false; - } - if (!lookahead_verifier_csv_.is_open()) { - VTR_LOG_ERROR("lookahead_verifier_info.csv is not open."); - throw vtr::VtrError("lookahead_verifier_info.csv is not open.", - "lookahead_profiler.cpp", - 62); + VTR_LOG_ERROR("Output file is not open."); + throw vtr::VtrError("Output file is not open.", "lookahead_profiler.cpp", 65); } // The default value in RouteTree::update_from_heap() is -1; only calls which descend from route_net() diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index c336c45d606..d3e339b3362 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -15,17 +15,20 @@ class LookaheadProfiler { public: LookaheadProfiler() - : is_empty_(true) {} + : enabled_(false) {} LookaheadProfiler(const LookaheadProfiler&) = delete; LookaheadProfiler& operator=(const LookaheadProfiler&) = delete; /** - * @brief Enable or disable the LookaheadProfiler. + * @brief Set the name of the output file. * - * @param should_enable Whether the profiler should be enabled. + * @note + * Passing in an empty string will disable the profiler. + * + * @param file_name The name of the output csv file. */ - void enable(bool should_enable); + void set_file_name(const std::string& file_name); /** * @brief Record information on nodes on a path from a source to a sink. @@ -59,8 +62,8 @@ class LookaheadProfiler { bool enabled_; ///@brief The output filestream. std::ofstream lookahead_verifier_csv_; - ///@brief Whether the output file is empty/not yet opened. - bool is_empty_; + ///@brief The output file name. + std::string file_name_; ///@brief A map from sink node IDs to their atom blocks' IDs. std::unordered_map net_pin_blocks_; ///@brief A map from sink node IDs to a pointer to the model of their atom blocks. diff --git a/vpr/src/route/route.cpp b/vpr/src/route/route.cpp index 600a65d635b..5a4ac22ea42 100644 --- a/vpr/src/route/route.cpp +++ b/vpr/src/route/route.cpp @@ -222,7 +222,7 @@ bool route(const Netlist<>& net_list, is_flat); // Enable lookahead profiling if command-line option used - route_ctx.lookahead_profiler.enable(router_opts.router_lookahead_profiling); + route_ctx.lookahead_profiler.set_file_name(router_opts.lookahead_profiling_output); RouterStats router_stats; float prev_iter_cumm_time = 0; From c9801b720923cf45471c7d10dd1a502460a8700f Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 14 Aug 2024 18:48:32 -0400 Subject: [PATCH 15/25] Improved multiprocessing efficiency in script --- .../profiling_utils/parse_lookahead_data.py | 105 +++++++++++------- 1 file changed, 65 insertions(+), 40 deletions(-) diff --git a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py index eaed2fc29e5..3a49c641c1c 100755 --- a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py +++ b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py @@ -12,10 +12,10 @@ import shutil import sys import argparse +from collections import deque from enum import Enum from pathlib import Path -from concurrent.futures import ThreadPoolExecutor -from multiprocessing import Lock +from multiprocessing import Lock, Process import pandas as pd from sklearn.metrics import mean_squared_error import matplotlib.pyplot as plt @@ -23,6 +23,8 @@ from colour import Color import seaborn as sns +lock = Lock() # Used for multiprocessing + # pylint: disable=too-many-instance-attributes # pylint: disable=too-few-public-methods @@ -41,8 +43,7 @@ def __init__(self, no_replace: bool, should_print: bool, percent_error_threshold: float, - exclusions: dict, - pool: ThreadPoolExecutor): + exclusions: dict): # Output directory self.output_dir = "./vtr_flow/tasks/lookahead_verifier_output" # The graph types (pie, heatmap, bar, scatter) that will be created @@ -106,9 +107,8 @@ def __init__(self, "test name" ] - # Lock and Pool for multithreading - self.lock = Lock() - self.pool = pool + # Processes list for multiprocessing + self.processes = [] def check_valid_component(comp: str): @@ -132,21 +132,21 @@ def check_valid_df(df: pd.DataFrame, gv: GlobalVars): raise Exception("IncompleteDataFrame") -def make_dir(directory: str, clean: bool, gv: GlobalVars): +def make_dir(directory: str, clean: bool): """Create a directory""" - gv.lock.acquire() + lock.acquire() if os.path.exists(directory): if clean: shutil.rmtree(directory) else: - gv.lock.release() + lock.release() return os.makedirs(directory) - gv.lock.release() + lock.release() def column_file_name(column_name: str) -> str: @@ -227,7 +227,7 @@ def __init__( os.path.join(self.__directory, "proportion_under_threshold"), ] for directory in self.__sub_dirs: - make_dir(directory, False, gv) + make_dir(directory, False) self.__test_name = test_name @@ -336,7 +336,7 @@ def make_scatter_plot( if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False, gv) + make_dir(curr_dir, False) # Determine colors for legend num_colors = self.__df[legend_column].nunique() + 1 @@ -427,7 +427,11 @@ def make_standard_scatter_plots(self, test_name_plot: bool, gv: GlobalVars): if first_it and col == "iteration no.": continue - gv.pool.submit(self.make_scatter_plot, comp, plot_type, col, first_it, gv) + gv.processes.append((self.make_scatter_plot, (comp, + plot_type, + col, + first_it, + gv))) # pylint: disable=too-many-locals def make_bar_graph(self, @@ -499,7 +503,7 @@ def make_bar_graph(self, if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False, gv) + make_dir(curr_dir, False) # Get DF with average error for each "type" encountered in column avg_error = {} @@ -548,7 +552,11 @@ def make_standard_bar_graphs(self, test_name_plot: bool, gv: GlobalVars): for col in columns: for use_abs in [True, False]: for first_it in [True, False]: - gv.pool.submit(self.make_bar_graph, comp, col, use_abs, first_it, gv) + gv.processes.append((self.make_bar_graph, (comp, + col, + use_abs, + first_it, + gv))) # pylint: disable=too-many-locals def make_heatmap( @@ -636,7 +644,7 @@ def make_heatmap( if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False, gv) + make_dir(curr_dir, False) # Get DF with average error for each "coordinate" in the heatmap df_avgs = pd.DataFrame(columns=[x_column, y_column, scale_column]) @@ -683,20 +691,18 @@ def make_standard_heatmaps(self, gv: GlobalVars): for comp in gv.components: for first_it in [True, False]: for use_abs in [True, False]: - gv.pool.submit(self.make_heatmap, - comp, - "sink cluster tile width", - "sink cluster tile height", - first_it, - use_abs, - gv) - gv.pool.submit(self.make_heatmap, - comp, - "delta x", - "delta y", - first_it, - use_abs, - gv) + gv.processes.append((self.make_heatmap, (comp, + "sink cluster tile width", + "sink cluster tile height", + first_it, + use_abs, + gv))) + gv.processes.append((self.make_heatmap, (comp, + "delta x", + "delta y", + first_it, + use_abs, + gv))) # pylint: disable=too-many-locals def make_pie_chart( @@ -764,7 +770,7 @@ def make_pie_chart( if gv.no_replace and os.path.exists(os.path.join(curr_dir, file_name)): return - make_dir(curr_dir, False, gv) + make_dir(curr_dir, False) # Constrict DF to columns whose error is under threshold curr_df = curr_df[curr_df[f"{comp} % error"] < gv.percent_error_threshold] @@ -821,7 +827,11 @@ def make_standard_pie_charts(self, test_name_plot: bool, gv: GlobalVars): for col in columns: for first_it in [True, False]: for weighted in [True, False]: - gv.pool.submit(self.make_pie_chart, comp, col, first_it, weighted, gv) + gv.processes.append((self.make_pie_chart, (comp, + col, + first_it, + weighted, + gv))) def make_standard_plots(self, test_name_plot: bool, gv: GlobalVars): """ @@ -961,7 +971,7 @@ def make_csv(df_out: pd.DataFrame, file_name: str): gv.csv_data and (not os.path.exists(os.path.join(directory, "data.csv")) or not gv.no_replace) ): - gv.pool.submit(make_csv, df, os.path.join(directory, "data.csv")) + gv.processes.append((make_csv, (df, os.path.join(directory, "data.csv")))) if gv.should_print: print("Created ", os.path.join(directory, "data.csv"), sep="") @@ -1111,7 +1121,6 @@ def parse_args(): ) args = parser.parse_args() - pool = ThreadPoolExecutor(max_workers=args.j) if args.all: graph_types = ["bar", "scatter", "heatmap", "pie"] @@ -1162,7 +1171,6 @@ def parse_args(): args.print, args.threshold, {}, - pool ) for excl in args.exclude: @@ -1202,7 +1210,7 @@ def create_complete_outputs( if len(args.dir_app) > 0: results_folder_path += f"{args.dir_app[0]}" - make_dir(results_folder_path, False, gv) + make_dir(results_folder_path, False) df_complete = df_complete.reset_index(drop=True) @@ -1228,7 +1236,7 @@ def create_benchmark_outputs( results_folder = os.path.join(output_folder, "__all__") results_folder_path = os.path.join(gv.output_dir, results_folder) - make_dir(results_folder_path, False, gv) + make_dir(results_folder_path, False) df_benchmark = df_benchmark.reset_index(drop=True) @@ -1270,7 +1278,7 @@ def create_circuit_outputs( results_folder = os.path.join(output_folder, test_name) results_folder_path = os.path.join(gv.output_dir, results_folder) - make_dir(results_folder_path, False, gv) + make_dir(results_folder_path, False) # Read csv with lookahead data (or, a csv previously created by this script) df = pd.read_csv(file_path) df = df.reset_index(drop=True) @@ -1329,7 +1337,7 @@ def create_circuit_outputs( def main(): args, gv = parse_args() - make_dir(gv.output_dir, False, gv) + make_dir(gv.output_dir, False) # The DF containing info across all given csv files df_complete = pd.DataFrame(columns=gv.column_names) @@ -1371,6 +1379,23 @@ def main(): if args.collect != "": create_complete_outputs(args, df_complete, gv) + # Create output graphs simultaneously + # This is the best way I have found to do this that avoids having a while + # loop continually checking if any processes have finished while using an + # entire CPU. Pool, concurrent.futures.ProcessPoolExecutor, and + # concurrent.futures.ThreadPoolExecutor seem to have a lot of overhead. + # This loop assumes that the graph-creating functions take approximately + # the same amount of time, which is not the case. + q = deque() + for func, params in gv.processes: + while len(q) >= args.j: + proc = q.popleft() + proc.join() + + proc = Process(target=func, args=params) + proc.start() + q.append(proc) + if __name__ == "__main__": main() From 7fe0b5567e929a056595902bd54a42a32976f992 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 14 Aug 2024 21:43:10 -0400 Subject: [PATCH 16/25] Cleaned a few function calls --- utils/route_diag/src/main.cpp | 2 +- vpr/src/route/route_common.h | 27 ++++++++++++------- vpr/src/route/route_tree.h | 2 +- vpr/src/route/router_delay_profiling.cpp | 4 +-- vpr/test/test_connection_router.cpp | 2 +- .../profiling_utils/parse_lookahead_data.py | 3 +-- 6 files changed, 24 insertions(+), 16 deletions(-) diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index 1aef7301454..6701062a25b 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -137,7 +137,7 @@ static void do_one_route(const Netlist<>& net_list, router.get_router_lookahead(), cost_params, net_list, - conn_params.net_id_, 0); + conn_params.net_id_); //find delay float net_delay = rt_node_of_sink.value().Tdel; diff --git a/vpr/src/route/route_common.h b/vpr/src/route/route_common.h index 7fc1f9f24be..0aa0c3275a2 100644 --- a/vpr/src/route/route_common.h +++ b/vpr/src/route/route_common.h @@ -191,11 +191,15 @@ void add_node_to_heap( float backward_path_delay, float backward_path_congestion, 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, backward_path_delay, - backward_path_congestion, R_upstream); + t_heap* hptr = prepare_to_add_node_to_heap(heap, + rr_node_route_inf, + inode, + total_cost, + prev_edge, + backward_path_cost, + backward_path_delay, + backward_path_congestion, + R_upstream); if (hptr) { heap->add_to_heap(hptr); } @@ -215,10 +219,15 @@ void push_back_node( float backward_path_delay, float backward_path_congestion, 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, backward_path_delay, backward_path_congestion, R_upstream); + t_heap* hptr = prepare_to_add_node_to_heap(heap, + rr_node_route_inf, + inode, + total_cost, + prev_edge, + backward_path_cost, + backward_path_delay, + backward_path_congestion, + R_upstream); if (hptr) { heap->push_back(hptr); } diff --git a/vpr/src/route/route_tree.h b/vpr/src/route/route_tree.h index 0e7ec8ceaa7..4ef2ee16f12 100644 --- a/vpr/src/route/route_tree.h +++ b/vpr/src/route/route_tree.h @@ -366,7 +366,7 @@ class RouteTree { const t_conn_cost_params cost_params, const Netlist<>& net_list, const ParentNetId& net_id, - const int itry); + const int itry = -1); /** Reload timing values (R_upstream, C_downstream, Tdel). * Can take a RouteTreeNode& to do an incremental update. diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index e7d28819385..c4445f32c37 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -128,7 +128,7 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, router_.get_router_lookahead(), cost_params, net_list_, - conn_params.net_id_, 0); + conn_params.net_id_); //find delay *net_delay = rt_node_of_sink->Tdel; @@ -225,7 +225,7 @@ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src router.get_router_lookahead(), cost_params, net_list, - conn_params.net_id_, 0); + conn_params.net_id_); VTR_ASSERT(rt_node_of_sink->inode == RRNodeId(sink_rr_node)); diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index a0e7cd1b6f3..8d301e881f0 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -94,7 +94,7 @@ static float do_one_route(RRNodeId source_node, router.get_router_lookahead(), cost_params, net_list, - conn_params.net_id_, 0); + conn_params.net_id_); delay = rt_node_of_sink.value().Tdel; } diff --git a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py index 3a49c641c1c..74f6639ee8a 100755 --- a/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py +++ b/vtr_flow/scripts/profiling_utils/parse_lookahead_data.py @@ -1389,8 +1389,7 @@ def main(): q = deque() for func, params in gv.processes: while len(q) >= args.j: - proc = q.popleft() - proc.join() + q.popleft().join() proc = Process(target=func, args=params) proc.start() From c8b196eb3ce82e70cd983236288f5ecbc7c1a7cb Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Thu, 15 Aug 2024 01:11:15 -0400 Subject: [PATCH 17/25] LookaheadProfiler::clear() now uses vtr::release_memory() --- vpr/src/route/lookahead_profiler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 329c7f81c56..9ae63324004 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -162,8 +162,8 @@ void LookaheadProfiler::record(int iteration, } void LookaheadProfiler::clear() { - net_pin_blocks_.clear(); - sink_atom_block_.clear(); - sink_cluster_block_.clear(); - tile_types_.clear(); + vtr::release_memory(net_pin_blocks_); + vtr::release_memory(sink_atom_block_); + vtr::release_memory(sink_cluster_block_); + vtr::release_memory(tile_types_); } \ No newline at end of file From ed4460d607929ea802eb9353743dfab193d11c21 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Thu, 15 Aug 2024 01:11:43 -0400 Subject: [PATCH 18/25] Requirements for script added to requirements.txt --- requirements.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/requirements.txt b/requirements.txt index 1ac9597956f..f2975265e57 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,11 @@ prettytable lxml psutil +scikit-learn +matplotlib +distinctipy +colour +seaborn # Python linter and formatter click==8.0.2 # Our version of black needs an older version of click (https://stackoverflow.com/questions/71673404/importerror-cannot-import-name-unicodefun-from-click) From ab2c73112ca05b69b8d301701b0ea638665fff7e Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Thu, 15 Aug 2024 13:48:55 -0400 Subject: [PATCH 19/25] Updated some regtest seeds and golden results --- .../multless_consts/config/golden_results.txt | 2048 ++++++++--------- .../vtr_bidir/config/config.txt | 2 +- .../config/golden_results.txt | 40 +- .../config/config.txt | 2 +- .../strong_global_routing/config/config.txt | 2 +- .../config/config.txt | 2 +- 6 files changed, 1048 insertions(+), 1048 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index 6a9e4fa3a92..09997a1cc41 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 5.68 vpr 64.76 MiB 0.02 7264 -1 -1 14 0.33 -1 -1 36340 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 26.4 MiB 0.31 1354 8532 2094 5512 926 64.8 MiB 0.08 0.00 8.19013 -165.934 -8.19013 8.19013 0.88 0.000657261 0.000596344 0.0316801 0.0287868 28 3693 28 6.55708e+06 313430 500653. 1732.36 2.13 0.140935 0.125205 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0324905 0.0290406 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.25 vpr 65.10 MiB 0.02 7056 -1 -1 14 0.36 -1 -1 36724 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 26.6 MiB 0.50 1292 15824 4267 9033 2524 65.1 MiB 0.13 0.00 8.12966 -162.719 -8.12966 8.12966 0.88 0.000635406 0.000576175 0.0526901 0.0478039 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.41 0.15268 0.135394 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0292306 0.0262469 189 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 13.70 vpr 64.70 MiB 0.02 7044 -1 -1 11 0.25 -1 -1 36540 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 26.2 MiB 0.40 1266 13157 3416 7667 2074 64.7 MiB 0.11 0.00 6.4728 -136.716 -6.4728 6.4728 0.83 0.000559967 0.000507814 0.0436372 0.0393037 36 3746 35 6.55708e+06 301375 612192. 2118.31 10.14 0.295029 0.257182 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.32 0.11 0.14 -1 -1 0.32 0.0329843 0.0294305 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.21 vpr 65.20 MiB 0.02 6964 -1 -1 12 0.43 -1 -1 36344 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 26.6 MiB 0.40 1320 8130 2002 5291 837 65.2 MiB 0.08 0.00 7.77357 -147.192 -7.77357 7.77357 0.88 0.000638125 0.000579509 0.0298693 0.0271446 36 3542 23 6.55708e+06 349595 612192. 2118.31 4.39 0.185227 0.16273 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.31 0.08 0.15 -1 -1 0.31 0.0280351 0.0250909 185 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 13.59 vpr 65.23 MiB 0.02 7172 -1 -1 13 0.40 -1 -1 36800 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 26.6 MiB 0.52 1568 9951 2486 6481 984 65.2 MiB 0.10 0.00 7.68511 -161.036 -7.68511 7.68511 0.88 0.000741385 0.00067202 0.0377881 0.0342051 30 4458 47 6.55708e+06 385760 526063. 1820.29 9.69 0.310363 0.271257 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.28 0.10 0.13 -1 -1 0.28 0.035431 0.0316869 223 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.35 vpr 64.97 MiB 0.02 7144 -1 -1 12 0.33 -1 -1 36568 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 26.4 MiB 0.52 1500 9773 2280 6498 995 65.0 MiB 0.09 0.00 7.53766 -152.093 -7.53766 7.53766 0.84 0.000668187 0.000607104 0.0328987 0.0299084 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.62 0.206389 0.182686 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0278912 0.0252433 209 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.39 vpr 64.46 MiB 0.02 6824 -1 -1 12 0.23 -1 -1 35948 -1 -1 27 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1024 5945 1385 4013 547 64.5 MiB 0.05 0.00 7.15274 -128.455 -7.15274 7.15274 0.89 0.000503189 0.000457449 0.018819 0.0171675 28 3014 27 6.55708e+06 325485 500653. 1732.36 2.05 0.0971561 0.0856053 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0219233 0.0196568 136 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.03 vpr 64.58 MiB 0.02 7096 -1 -1 11 0.22 -1 -1 36468 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 26.0 MiB 0.30 1220 9679 2547 5973 1159 64.6 MiB 0.08 0.00 6.45772 -132.139 -6.45772 6.45772 0.88 0.000614174 0.00055733 0.0322605 0.0292834 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.60 0.129909 0.11459 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0233138 0.0210195 175 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.37 vpr 64.50 MiB 0.02 6892 -1 -1 12 0.21 -1 -1 36092 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 26.1 MiB 0.41 1146 12373 3633 6385 2355 64.5 MiB 0.09 0.00 7.00181 -148.703 -7.00181 7.00181 0.88 0.000538219 0.000488169 0.0378616 0.0343728 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.89 0.123973 0.109987 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0252092 0.0225416 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 9.95 vpr 64.33 MiB 0.02 6820 -1 -1 13 0.24 -1 -1 36532 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 25.9 MiB 0.49 1098 10979 3065 6306 1608 64.3 MiB 0.09 0.00 7.23855 -159.771 -7.23855 7.23855 0.88 0.000588148 0.000534566 0.0361331 0.0327642 30 3034 26 6.55708e+06 301375 526063. 1820.29 6.30 0.243039 0.211844 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0255811 0.0229929 162 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.89 vpr 64.16 MiB 0.02 6820 -1 -1 12 0.20 -1 -1 36568 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 25.6 MiB 0.37 1073 8868 2309 4974 1585 64.2 MiB 0.06 0.00 7.23424 -146.32 -7.23424 7.23424 0.83 0.000451438 0.000409494 0.0251306 0.0229147 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.65 0.117036 0.103231 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0192463 0.0172858 132 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.38 vpr 64.51 MiB 0.02 6828 -1 -1 12 0.16 -1 -1 36228 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 25.9 MiB 0.21 971 12175 3572 6038 2565 64.5 MiB 0.09 0.00 6.75009 -143.946 -6.75009 6.75009 0.84 0.000494624 0.000447686 0.0363852 0.0330014 36 2632 22 6.55708e+06 253155 612192. 2118.31 2.19 0.161805 0.142746 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.32 0.05 0.13 -1 -1 0.32 0.0195984 0.0176579 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 10.99 vpr 65.00 MiB 0.02 7132 -1 -1 13 0.34 -1 -1 36888 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 26.4 MiB 0.39 1456 5419 862 4216 341 65.0 MiB 0.06 0.00 7.90792 -162.801 -7.90792 7.90792 0.88 0.000682656 0.000619001 0.0216922 0.0197294 28 4018 41 6.55708e+06 361650 500653. 1732.36 7.37 0.28464 0.248131 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0312352 0.0281004 212 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 7.79 vpr 65.09 MiB 0.02 7040 -1 -1 14 0.42 -1 -1 36540 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 26.5 MiB 0.55 1487 7653 1685 5037 931 65.1 MiB 0.07 0.00 8.67599 -179.222 -8.67599 8.67599 0.87 0.000703972 0.00063672 0.0288754 0.0262577 34 4030 26 6.55708e+06 349595 585099. 2024.56 3.85 0.259422 0.225824 22462 138074 -1 3285 20 1626 4702 256491 60555 7.53782 7.53782 -169.858 -7.53782 0 0 742403. 2568.87 0.30 0.09 0.14 -1 -1 0.30 0.0336823 0.0301929 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 12.07 vpr 64.38 MiB 0.02 6968 -1 -1 11 0.21 -1 -1 36004 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 26.0 MiB 0.26 1095 15366 4454 8585 2327 64.4 MiB 0.11 0.00 6.42654 -129.9 -6.42654 6.42654 0.88 0.000543967 0.000494622 0.0448371 0.0406828 28 3139 21 6.55708e+06 349595 500653. 1732.36 8.69 0.202385 0.177063 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0259074 0.0230507 160 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.02 vpr 65.25 MiB 0.02 7176 -1 -1 12 0.35 -1 -1 36816 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 26.8 MiB 0.65 1497 7523 1547 5261 715 65.3 MiB 0.07 0.00 7.78498 -159.33 -7.78498 7.78498 0.87 0.000688937 0.000619313 0.0280334 0.0252945 36 3844 37 6.55708e+06 409870 612192. 2118.31 5.02 0.215027 0.188769 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.32 0.10 0.14 -1 -1 0.32 0.0318788 0.0287585 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.52 vpr 65.39 MiB 0.02 6896 -1 -1 13 0.33 -1 -1 36824 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1448 9075 2050 5697 1328 65.4 MiB 0.08 0.00 8.28129 -168.719 -8.28129 8.28129 0.87 0.000739797 0.000643904 0.0330358 0.0298594 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.90 0.142558 0.125861 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0313818 0.0282247 217 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.29 vpr 64.21 MiB 0.02 6912 -1 -1 12 0.19 -1 -1 36476 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 25.9 MiB 0.59 1089 8402 1864 6112 426 64.2 MiB 0.07 0.00 7.26292 -158.375 -7.26292 7.26292 0.89 0.000534375 0.00048597 0.0268433 0.0244213 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.64 0.103237 0.091284 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0227377 0.0204666 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.18 vpr 63.83 MiB 0.02 6684 -1 -1 10 0.12 -1 -1 36104 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 25.3 MiB 0.12 786 5244 1130 3909 205 63.8 MiB 0.04 0.00 5.1986 -117.15 -5.1986 5.1986 0.85 0.000384601 0.000351407 0.0138827 0.012659 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.26 0.0738163 0.0647887 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0190561 0.0168781 96 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.19 vpr 64.44 MiB 0.02 6852 -1 -1 13 0.20 -1 -1 36456 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 26.1 MiB 0.36 1123 5079 946 3658 475 64.4 MiB 0.05 0.00 7.44701 -156.373 -7.44701 7.44701 0.87 0.000551174 0.000501842 0.0171734 0.0155969 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.86 0.11522 0.10123 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0247319 0.0220963 139 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 13.90 vpr 65.09 MiB 0.02 7068 -1 -1 13 0.37 -1 -1 36904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 26.6 MiB 0.43 1494 10031 2522 6626 883 65.1 MiB 0.09 0.00 7.77584 -154.394 -7.77584 7.77584 0.88 0.000679906 0.000616415 0.0364133 0.0329169 28 4288 44 6.55708e+06 373705 500653. 1732.36 10.15 0.274453 0.24094 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.26 0.13 0.11 -1 -1 0.26 0.0365174 0.0327572 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 10.32 vpr 64.95 MiB 0.02 7092 -1 -1 13 0.37 -1 -1 36240 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 26.3 MiB 0.54 1626 7973 1601 5735 637 65.0 MiB 0.08 0.00 7.9648 -163.763 -7.9648 7.9648 0.89 0.000683327 0.000618792 0.0278582 0.0252713 34 4543 38 6.55708e+06 409870 585099. 2024.56 6.33 0.309492 0.271938 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.31 0.18 0.13 -1 -1 0.31 0.0413607 0.0365921 207 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.33 vpr 63.68 MiB 0.02 6712 -1 -1 9 0.11 -1 -1 36016 -1 -1 21 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65212 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 25.2 MiB 0.34 710 10557 2762 6888 907 63.7 MiB 0.06 0.00 4.66154 -94.5374 -4.66154 4.66154 0.88 0.000347263 0.00031622 0.0234775 0.0213855 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.13 0.0760791 0.0667796 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.013182 0.0118144 83 66 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 11.38 vpr 65.19 MiB 0.02 6824 -1 -1 13 0.39 -1 -1 36360 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 26.5 MiB 0.24 1530 4780 793 3650 337 65.2 MiB 0.05 0.00 7.84695 -156.636 -7.84695 7.84695 0.86 0.000672342 0.000606416 0.019812 0.0180403 26 4457 46 6.55708e+06 361650 477104. 1650.88 7.34 0.262615 0.230228 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.25 0.70 0.10 -1 -1 0.25 0.103168 0.0903474 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 6.40 vpr 63.79 MiB 0.02 6636 -1 -1 8 0.10 -1 -1 36248 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65324 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 25.4 MiB 0.22 436 8831 2193 4716 1922 63.8 MiB 0.05 0.00 4.66158 -87.3613 -4.66158 4.66158 0.85 0.000357053 0.000326 0.0196455 0.0179105 30 1374 37 6.55708e+06 204935 526063. 1820.29 3.44 0.15735 0.136417 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.28 0.03 0.11 -1 -1 0.28 0.0121387 0.0108899 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 9.87 vpr 64.59 MiB 0.02 7200 -1 -1 15 0.29 -1 -1 36492 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 26.1 MiB 0.26 1127 8999 2110 5455 1434 64.6 MiB 0.08 0.00 8.78748 -168.447 -8.78748 8.78748 0.87 0.00059795 0.000542151 0.0305556 0.0278162 30 3036 31 6.55708e+06 301375 526063. 1820.29 6.41 0.230169 0.20215 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0282852 0.0253076 161 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.92 vpr 64.88 MiB 0.02 6884 -1 -1 12 0.32 -1 -1 36676 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 26.4 MiB 0.27 1426 7871 1871 5355 645 64.9 MiB 0.08 0.00 6.97141 -150.212 -6.97141 6.97141 0.87 0.0006774 0.000613375 0.0294893 0.0266976 40 3289 24 6.55708e+06 373705 666494. 2306.21 4.32 0.220439 0.192017 23614 160646 -1 3177 16 1303 4124 231796 53025 6.49978 6.49978 -146.896 -6.49978 0 0 872365. 3018.56 0.34 0.08 0.16 -1 -1 0.34 0.0296525 0.0267676 218 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 7.93 vpr 64.82 MiB 0.02 7200 -1 -1 13 0.35 -1 -1 36336 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 26.4 MiB 0.40 1403 8993 2077 6178 738 64.8 MiB 0.09 0.00 7.73601 -160.617 -7.73601 7.73601 0.86 0.000635737 0.000576022 0.0319806 0.029007 34 3435 20 6.55708e+06 337540 585099. 2024.56 4.23 0.246028 0.214699 22462 138074 -1 3243 21 1558 4932 279333 63756 6.8823 6.8823 -157.372 -6.8823 0 0 742403. 2568.87 0.29 0.09 0.14 -1 -1 0.29 0.0310018 0.0277398 196 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 9.39 vpr 64.69 MiB 0.02 7012 -1 -1 12 0.21 -1 -1 36136 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1093 9158 2327 6239 592 64.7 MiB 0.08 0.00 6.471 -143.803 -6.471 6.471 0.88 0.000552938 0.000492674 0.0303349 0.0274899 28 3047 45 6.55708e+06 265210 500653. 1732.36 6.04 0.212006 0.185354 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0249324 0.0223175 146 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.33 vpr 64.12 MiB 0.02 6792 -1 -1 11 0.19 -1 -1 36440 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65660 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 25.6 MiB 0.21 1045 6781 1469 4387 925 64.1 MiB 0.05 0.00 6.28146 -130.954 -6.28146 6.28146 0.90 0.000471266 0.00042699 0.0208323 0.0189259 30 2354 17 6.55708e+06 277265 526063. 1820.29 1.08 0.0871462 0.0767089 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0175723 0.0159159 128 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.79 vpr 64.38 MiB 0.02 6832 -1 -1 11 0.19 -1 -1 36840 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 26.0 MiB 0.28 1079 8535 1915 5707 913 64.4 MiB 0.06 0.00 6.57292 -128.193 -6.57292 6.57292 0.88 0.000546411 0.000492914 0.0253194 0.022973 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.45 0.122294 0.106994 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.29 0.11 0.11 -1 -1 0.29 0.0309427 0.0273595 142 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 6.77 vpr 64.86 MiB 0.02 6788 -1 -1 12 0.24 -1 -1 36080 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 26.1 MiB 0.24 1327 6716 1263 5020 433 64.9 MiB 0.06 0.00 7.20375 -160.021 -7.20375 7.20375 0.89 0.000613597 0.000555754 0.0235428 0.0214568 30 3050 19 6.55708e+06 337540 526063. 1820.29 3.39 0.204461 0.17904 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0283828 0.0253794 180 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.61 vpr 64.36 MiB 0.02 6776 -1 -1 11 0.20 -1 -1 36176 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65904 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1072 4244 722 3315 207 64.4 MiB 0.04 0.00 6.41894 -136.128 -6.41894 6.41894 0.88 0.000570978 0.000508379 0.0162316 0.0147758 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.28 0.103077 0.0907546 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0283022 0.0251569 147 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.32 vpr 64.38 MiB 0.02 6988 -1 -1 10 0.18 -1 -1 36304 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 25.8 MiB 0.26 967 12733 4051 6442 2240 64.4 MiB 0.09 0.00 6.08886 -123.876 -6.08886 6.08886 0.89 0.00051278 0.000466814 0.0375863 0.0340485 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.97 0.106615 0.0938331 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0205929 0.0185686 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.77 vpr 65.36 MiB 0.02 7300 -1 -1 13 0.40 -1 -1 37072 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 26.9 MiB 0.37 1621 5869 1104 4212 553 65.4 MiB 0.06 0.00 7.46683 -155.207 -7.46683 7.46683 0.85 0.000726646 0.000659513 0.0241858 0.0220094 30 3995 44 6.55708e+06 397815 526063. 1820.29 3.13 0.173011 0.153227 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.27 0.09 0.13 -1 -1 0.27 0.0337152 0.0303871 239 238 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 15.62 vpr 64.96 MiB 0.02 6880 -1 -1 13 0.40 -1 -1 36732 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 26.4 MiB 0.48 1508 8283 1888 5355 1040 65.0 MiB 0.08 0.00 8.09706 -175.077 -8.09706 8.09706 0.88 0.0006953 0.000629304 0.0317491 0.0287333 36 3925 27 6.55708e+06 349595 612192. 2118.31 11.69 0.317302 0.276431 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0316136 0.0283521 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.87 vpr 64.18 MiB 0.02 6788 -1 -1 12 0.17 -1 -1 36500 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65720 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 25.8 MiB 0.36 1096 12568 3446 6926 2196 64.2 MiB 0.09 0.00 6.66868 -144.132 -6.66868 6.66868 0.88 0.000545618 0.000496232 0.0373115 0.033746 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.42 0.164005 0.143131 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0201427 0.0180951 150 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 7.46 vpr 65.25 MiB 0.02 7076 -1 -1 12 0.31 -1 -1 36948 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1489 8977 2020 5913 1044 65.2 MiB 0.08 0.00 8.10558 -165.766 -8.10558 8.10558 0.89 0.000697906 0.000632517 0.0326623 0.0295744 36 3566 22 6.55708e+06 409870 612192. 2118.31 3.98 0.254761 0.222733 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0290705 0.0263913 219 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 17.10 vpr 65.10 MiB 0.02 7084 -1 -1 14 0.42 -1 -1 36632 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 26.7 MiB 0.26 1460 6211 1289 4295 627 65.1 MiB 0.06 0.00 8.35283 -161.679 -8.35283 8.35283 0.88 0.000630232 0.000571478 0.0233589 0.0212348 30 3894 50 6.55708e+06 337540 526063. 1820.29 13.50 0.321495 0.280289 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0302645 0.0273606 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.86 vpr 64.77 MiB 0.02 7024 -1 -1 13 0.31 -1 -1 36720 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1364 9271 2151 5683 1437 64.8 MiB 0.08 0.00 7.40806 -157.551 -7.40806 7.40806 0.87 0.000695272 0.00062579 0.0321074 0.0288526 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.32 0.130389 0.114748 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0282251 0.0254221 181 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.36 vpr 64.72 MiB 0.02 7008 -1 -1 12 0.30 -1 -1 36652 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 26.4 MiB 0.59 1374 13743 3666 8130 1947 64.7 MiB 0.12 0.00 6.76701 -143.203 -6.76701 6.76701 0.89 0.000546336 0.000496419 0.0462809 0.0419554 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.45 0.206292 0.181897 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0335776 0.0301731 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.48 vpr 64.81 MiB 0.02 7252 -1 -1 12 0.23 -1 -1 36160 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 26.3 MiB 0.31 1252 8278 1977 5044 1257 64.8 MiB 0.07 0.00 7.19338 -143.847 -7.19338 7.19338 0.88 0.000596896 0.00054042 0.0289704 0.0263679 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.06 0.108296 0.0956367 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0256697 0.023087 172 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 7.88 vpr 65.16 MiB 0.02 7320 -1 -1 14 0.56 -1 -1 36580 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 26.9 MiB 0.44 1757 10673 2583 7118 972 65.2 MiB 0.10 0.00 8.08019 -170.094 -8.08019 8.08019 0.89 0.000753529 0.000681101 0.0411513 0.037239 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.74 0.243408 0.215783 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.34 0.11 0.15 -1 -1 0.34 0.0383377 0.0347298 245 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 7.20 vpr 64.71 MiB 0.02 6948 -1 -1 11 0.24 -1 -1 36056 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1212 8009 2047 5116 846 64.7 MiB 0.07 0.00 6.43815 -136.573 -6.43815 6.43815 0.88 0.000587889 0.000536735 0.026969 0.0245314 30 3062 33 6.55708e+06 313430 526063. 1820.29 3.78 0.218733 0.190255 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0262272 0.0235702 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.23 vpr 64.80 MiB 0.02 7208 -1 -1 13 0.35 -1 -1 37148 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 26.5 MiB 0.48 1339 4512 785 3381 346 64.8 MiB 0.05 0.00 8.23298 -156.44 -8.23298 8.23298 0.87 0.000609447 0.000538976 0.0175338 0.0159232 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.49 0.170605 0.148973 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0265662 0.02395 177 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 7.06 vpr 65.22 MiB 0.02 7084 -1 -1 12 0.33 -1 -1 36436 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 26.6 MiB 0.43 1513 7973 1697 5548 728 65.2 MiB 0.08 0.00 7.05697 -153.444 -7.05697 7.05697 0.88 0.000727944 0.00066096 0.0295827 0.0268942 34 4231 45 6.55708e+06 409870 585099. 2024.56 3.21 0.219685 0.193351 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.30 0.19 0.14 -1 -1 0.30 0.0461859 0.0411452 227 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.83 vpr 64.77 MiB 0.02 7064 -1 -1 13 0.30 -1 -1 36672 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 26.2 MiB 0.22 1286 13340 3362 8056 1922 64.8 MiB 0.10 0.00 7.57452 -156.038 -7.57452 7.57452 0.86 0.000574535 0.000522922 0.043143 0.0389735 34 3373 23 6.55708e+06 337540 585099. 2024.56 2.32 0.170333 0.150043 22462 138074 -1 2915 19 1362 3783 211070 50825 6.63024 6.63024 -152.551 -6.63024 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0308871 0.0277319 184 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.49 vpr 64.69 MiB 0.02 7184 -1 -1 13 0.27 -1 -1 36752 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 26.1 MiB 0.34 1203 12563 3367 6823 2373 64.7 MiB 0.10 0.00 7.77281 -162.033 -7.77281 7.77281 0.87 0.00055409 0.000498284 0.0406328 0.0364801 34 3219 28 6.55708e+06 301375 585099. 2024.56 1.96 0.162711 0.14224 22462 138074 -1 2591 15 1077 3323 184134 43944 6.7229 6.7229 -148.248 -6.7229 0 0 742403. 2568.87 0.30 0.07 0.13 -1 -1 0.30 0.0254938 0.0230753 175 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 8.65 vpr 65.23 MiB 0.02 7024 -1 -1 12 0.34 -1 -1 37012 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 26.7 MiB 0.80 1416 10679 2747 6565 1367 65.2 MiB 0.10 0.00 6.86528 -151.049 -6.86528 6.86528 0.89 0.000689551 0.000624171 0.0382311 0.0346166 36 3519 46 6.55708e+06 373705 612192. 2118.31 4.52 0.301432 0.263503 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0303523 0.0275092 205 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.79 vpr 65.09 MiB 0.02 6992 -1 -1 13 0.35 -1 -1 36920 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 26.5 MiB 0.41 1584 11223 2635 7117 1471 65.1 MiB 0.10 0.00 7.96921 -159.229 -7.96921 7.96921 0.89 0.000674197 0.000610161 0.0407528 0.0368819 36 3876 21 6.55708e+06 349595 612192. 2118.31 5.00 0.276012 0.242248 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0319526 0.0288673 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.14 vpr 64.59 MiB 0.02 7140 -1 -1 14 0.34 -1 -1 36652 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 26.1 MiB 0.47 1228 9197 2464 5958 775 64.6 MiB 0.08 0.00 7.91369 -163.421 -7.91369 7.91369 0.89 0.000633527 0.000565783 0.0332443 0.03004 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.42 0.135454 0.119627 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0300125 0.0266673 167 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.17 vpr 65.17 MiB 0.02 7056 -1 -1 13 0.33 -1 -1 36828 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 26.6 MiB 0.60 1537 7336 1683 5066 587 65.2 MiB 0.07 0.00 8.38432 -170.174 -8.38432 8.38432 0.84 0.000653558 0.000586287 0.027109 0.0245719 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.45 0.152094 0.135058 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0281518 0.025426 199 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.61 vpr 65.18 MiB 0.02 7148 -1 -1 13 0.33 -1 -1 36608 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 26.7 MiB 0.34 1531 8951 1993 6087 871 65.2 MiB 0.09 0.00 8.45326 -176.134 -8.45326 8.45326 0.82 0.000722972 0.000651275 0.0343673 0.0309918 30 3859 27 6.55708e+06 385760 526063. 1820.29 2.12 0.145241 0.128214 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0289858 0.0262274 221 218 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 8.02 vpr 65.33 MiB 0.02 7212 -1 -1 12 0.37 -1 -1 36348 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 26.7 MiB 0.49 1599 7323 1463 5208 652 65.3 MiB 0.08 0.00 7.47193 -159.786 -7.47193 7.47193 0.89 0.000731269 0.000665029 0.0291549 0.0265002 36 4072 27 6.55708e+06 385760 612192. 2118.31 4.16 0.226601 0.200897 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.32 0.09 0.14 -1 -1 0.32 0.0331224 0.0299295 231 229 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.33 vpr 64.36 MiB 0.02 7004 -1 -1 11 0.16 -1 -1 36452 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 25.8 MiB 0.24 1043 10883 2916 6057 1910 64.4 MiB 0.08 0.00 5.95009 -133.303 -5.95009 5.95009 0.84 0.000493867 0.000447631 0.0328425 0.0297586 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.10 0.108252 0.0950164 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0216674 0.0193412 127 121 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 5.59 vpr 64.69 MiB 0.02 6848 -1 -1 13 0.24 -1 -1 36384 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 26.2 MiB 0.57 1281 6211 1217 4524 470 64.7 MiB 0.06 0.00 7.73937 -166.104 -7.73937 7.73937 0.88 0.000594048 0.000540216 0.0217191 0.0197785 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.92 0.108892 0.0959491 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0304846 0.0270348 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.03 vpr 65.31 MiB 0.02 7184 -1 -1 14 0.57 -1 -1 36412 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66876 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 27.0 MiB 0.47 1818 9380 1999 6471 910 65.3 MiB 0.09 0.00 8.82888 -183.788 -8.82888 8.82888 0.87 0.000795982 0.000720186 0.0369206 0.0333693 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.99 0.172542 0.152274 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0360445 0.0325778 267 266 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.21 vpr 64.95 MiB 0.02 6964 -1 -1 13 0.41 -1 -1 36760 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 26.4 MiB 0.55 1477 8735 1981 6002 752 64.9 MiB 0.09 0.00 7.79483 -168.531 -7.79483 7.79483 0.89 0.000721475 0.000663386 0.0348369 0.0314579 26 4757 42 6.55708e+06 373705 477104. 1650.88 3.21 0.175231 0.154996 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.25 0.18 0.11 -1 -1 0.25 0.0564916 0.0499559 224 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.21 vpr 64.30 MiB 0.02 6920 -1 -1 11 0.21 -1 -1 36496 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65840 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 25.7 MiB 0.24 916 9943 3248 5072 1623 64.3 MiB 0.07 0.00 6.47975 -131.851 -6.47975 6.47975 0.87 0.000524251 0.000473886 0.0308031 0.027809 36 2386 24 6.55708e+06 277265 612192. 2118.31 3.87 0.183611 0.158725 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0211898 0.0190049 137 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.37 vpr 65.04 MiB 0.02 7276 -1 -1 15 0.56 -1 -1 37136 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 26.6 MiB 0.41 1670 7867 1614 5465 788 65.0 MiB 0.08 0.00 8.70958 -179.837 -8.70958 8.70958 0.89 0.00078475 0.000710106 0.032678 0.0296288 36 4552 44 6.55708e+06 397815 612192. 2118.31 5.31 0.343647 0.300652 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.33 0.12 0.14 -1 -1 0.33 0.0404618 0.036293 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.11 vpr 65.18 MiB 0.02 7120 -1 -1 13 0.40 -1 -1 36440 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 26.6 MiB 0.41 1370 12483 3068 7076 2339 65.2 MiB 0.10 0.00 7.72925 -154.988 -7.72925 7.72925 0.88 0.000648593 0.000583475 0.0432747 0.0391496 44 3462 16 6.55708e+06 349595 742403. 2568.87 4.21 0.266557 0.233025 24478 177802 -1 2769 17 1202 3731 190942 44305 7.0025 7.0025 -148.322 -7.0025 0 0 937218. 3242.97 0.39 0.08 0.16 -1 -1 0.39 0.0297763 0.026826 207 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.07 vpr 64.38 MiB 0.02 6788 -1 -1 11 0.16 -1 -1 36600 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 26.0 MiB 0.26 1161 6718 1477 4583 658 64.4 MiB 0.06 0.00 6.62468 -135.028 -6.62468 6.62468 0.88 0.000522376 0.000474578 0.021072 0.0191787 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.77 0.106385 0.0936932 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0258625 0.0230995 149 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.21 vpr 64.93 MiB 0.02 7244 -1 -1 12 0.37 -1 -1 36724 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 26.4 MiB 0.39 1540 8735 2140 5810 785 64.9 MiB 0.08 0.00 7.17512 -150.872 -7.17512 7.17512 0.86 0.000683751 0.000621904 0.0321645 0.0292495 38 3444 21 6.55708e+06 373705 638502. 2209.35 4.47 0.260452 0.2275 23326 155178 -1 2888 15 1226 3932 189527 43326 6.31224 6.31224 -142.735 -6.31224 0 0 851065. 2944.86 0.33 0.07 0.15 -1 -1 0.33 0.0293112 0.0264809 217 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 8.86 vpr 64.43 MiB 0.02 6704 -1 -1 12 0.25 -1 -1 36068 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 25.9 MiB 0.29 1252 5517 962 4221 334 64.4 MiB 0.05 0.00 7.41221 -152.744 -7.41221 7.41221 0.88 0.000597848 0.000543308 0.0199453 0.0182452 30 2953 20 6.55708e+06 313430 526063. 1820.29 5.44 0.221067 0.193362 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0259914 0.0233987 164 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.18 vpr 64.49 MiB 0.02 6820 -1 -1 12 0.23 -1 -1 36284 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 25.9 MiB 0.26 998 6383 1524 4361 498 64.5 MiB 0.05 0.00 7.15324 -144.822 -7.15324 7.15324 0.87 0.000517613 0.000469322 0.0214834 0.0195178 28 2443 17 6.55708e+06 253155 500653. 1732.36 2.88 0.150313 0.130484 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0269337 0.0240449 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.23 vpr 65.02 MiB 0.02 7092 -1 -1 12 0.37 -1 -1 36636 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1315 14583 4048 7926 2609 65.0 MiB 0.12 0.00 7.005 -132.757 -7.005 7.005 0.89 0.000689106 0.000623377 0.0518808 0.0469204 34 3574 37 6.55708e+06 385760 585099. 2024.56 2.48 0.210888 0.186483 22462 138074 -1 3016 19 1567 5039 296847 68171 6.43304 6.43304 -129.751 -6.43304 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0329477 0.0296294 208 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 12.22 vpr 65.43 MiB 0.02 7132 -1 -1 14 0.40 -1 -1 36664 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 26.8 MiB 0.60 1622 11046 2782 7202 1062 65.4 MiB 0.10 0.00 8.27143 -173.321 -8.27143 8.27143 0.89 0.000752975 0.000686794 0.0413702 0.0375226 30 4187 27 6.55708e+06 385760 526063. 1820.29 8.20 0.25383 0.223183 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0342564 0.0308777 227 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.58 vpr 64.87 MiB 0.02 7228 -1 -1 12 0.28 -1 -1 36420 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 26.4 MiB 0.46 1318 5191 912 3744 535 64.9 MiB 0.05 0.00 7.44045 -154.388 -7.44045 7.44045 0.88 0.00068343 0.000613477 0.0197312 0.0178566 28 3868 27 6.55708e+06 325485 500653. 1732.36 2.00 0.125219 0.110569 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.26 0.10 0.10 -1 -1 0.26 0.0294652 0.0264496 192 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.36 vpr 64.21 MiB 0.02 7000 -1 -1 12 0.17 -1 -1 36504 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 25.7 MiB 0.45 1100 6615 1512 4600 503 64.2 MiB 0.05 0.00 6.69922 -140.427 -6.69922 6.69922 0.84 0.000459645 0.000417988 0.0183922 0.0167888 30 2478 18 6.55708e+06 277265 526063. 1820.29 2.97 0.162448 0.14105 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0215901 0.019256 133 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.93 vpr 64.54 MiB 0.02 7072 -1 -1 12 0.27 -1 -1 36028 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 26.1 MiB 0.29 1148 11398 2849 6739 1810 64.5 MiB 0.09 0.00 7.39043 -143.264 -7.39043 7.39043 0.88 0.000587797 0.000533156 0.0385076 0.0349446 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.49 0.143097 0.126276 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0296358 0.0265365 170 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 11.32 vpr 64.83 MiB 0.02 7152 -1 -1 11 0.24 -1 -1 36572 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1267 6723 1289 4852 582 64.8 MiB 0.06 0.00 6.0378 -125.718 -6.0378 6.0378 0.86 0.000593211 0.000536921 0.023764 0.0215914 28 3807 32 6.55708e+06 337540 500653. 1732.36 7.99 0.253965 0.221426 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.25 0.11 0.11 -1 -1 0.25 0.0315563 0.0280872 189 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 6.05 vpr 64.32 MiB 0.02 7184 -1 -1 11 0.26 -1 -1 36476 -1 -1 28 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 25.8 MiB 0.40 1153 14128 4158 7800 2170 64.3 MiB 0.11 0.00 6.59995 -118.466 -6.59995 6.59995 0.87 0.00058991 0.000534805 0.0453766 0.0411279 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.39 0.178282 0.156252 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.34 0.07 0.15 -1 -1 0.34 0.0257339 0.0232293 171 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 6.64 vpr 64.57 MiB 0.02 7064 -1 -1 13 0.23 -1 -1 36332 -1 -1 25 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 26.2 MiB 0.51 1112 5463 1180 3669 614 64.6 MiB 0.05 0.00 7.87624 -151.634 -7.87624 7.87624 0.86 0.000517028 0.000470452 0.0177415 0.0162008 30 2565 19 6.55708e+06 301375 526063. 1820.29 3.17 0.163715 0.143092 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.020446 0.0184965 142 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 4.49 vpr 64.99 MiB 0.02 7012 -1 -1 12 0.25 -1 -1 36268 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 26.4 MiB 0.41 1245 6211 1266 4515 430 65.0 MiB 0.06 0.00 7.2362 -155.292 -7.2362 7.2362 0.83 0.000574248 0.000521145 0.0218835 0.0199148 30 3044 16 6.55708e+06 325485 526063. 1820.29 1.06 0.0989836 0.0871693 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0253861 0.022832 180 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.35 vpr 65.03 MiB 0.02 7180 -1 -1 13 0.36 -1 -1 36444 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 26.5 MiB 0.43 1187 15843 5382 8046 2415 65.0 MiB 0.13 0.00 7.69912 -151.004 -7.69912 7.69912 0.87 0.000645015 0.000583889 0.0528338 0.0478669 32 3890 40 6.55708e+06 361650 554710. 1919.41 2.53 0.23108 0.204608 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.29 0.11 0.13 -1 -1 0.29 0.0364059 0.0325953 195 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.22 vpr 64.82 MiB 0.02 6972 -1 -1 14 0.36 -1 -1 36576 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 26.3 MiB 0.35 1371 16295 4299 9326 2670 64.8 MiB 0.14 0.00 7.90558 -162.398 -7.90558 7.90558 0.87 0.000646086 0.000580606 0.0582393 0.0526675 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.56 0.176439 0.155902 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0305851 0.027553 215 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.57 vpr 64.71 MiB 0.02 7216 -1 -1 14 0.32 -1 -1 37020 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 26.3 MiB 0.49 1364 9067 2106 6307 654 64.7 MiB 0.08 0.00 7.8859 -150.917 -7.8859 7.8859 0.88 0.000615141 0.000549056 0.031617 0.0284792 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.81 0.193513 0.169957 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.32 0.08 0.13 -1 -1 0.32 0.0288511 0.0258864 183 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 8.17 vpr 65.12 MiB 0.02 7172 -1 -1 13 0.44 -1 -1 37200 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 26.7 MiB 0.48 1350 6211 1219 4577 415 65.1 MiB 0.06 0.00 7.98147 -162.621 -7.98147 7.98147 0.88 0.000666365 0.000604762 0.0250502 0.0228215 36 3253 20 6.55708e+06 325485 612192. 2118.31 4.27 0.229702 0.200999 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0284208 0.0255424 195 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.02 vpr 64.30 MiB 0.02 6824 -1 -1 13 0.22 -1 -1 36588 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 25.9 MiB 0.32 1092 10670 2647 6412 1611 64.3 MiB 0.08 0.00 7.9674 -161.443 -7.9674 7.9674 0.87 0.000528723 0.000479815 0.0326828 0.0297214 32 2870 34 6.55708e+06 289320 554710. 1919.41 3.60 0.206204 0.179028 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0217491 0.0195854 146 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.82 vpr 65.05 MiB 0.02 7036 -1 -1 13 0.56 -1 -1 36316 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 26.5 MiB 0.37 1304 7653 1748 5033 872 65.0 MiB 0.08 0.00 8.34953 -161.953 -8.34953 8.34953 0.90 0.000700204 0.000634179 0.0298871 0.0270967 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.92 0.144596 0.128294 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.033089 0.0296835 208 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 15.03 vpr 64.96 MiB 0.02 7220 -1 -1 14 0.35 -1 -1 36696 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1332 7336 1480 5450 406 65.0 MiB 0.07 0.00 7.42283 -159.831 -7.42283 7.42283 0.88 0.000643591 0.000580467 0.0252973 0.022889 28 3869 50 6.55708e+06 361650 500653. 1732.36 11.04 0.251818 0.220909 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.27 0.45 0.12 -1 -1 0.27 0.0774615 0.0681637 184 181 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 7.47 vpr 64.90 MiB 0.02 7188 -1 -1 12 0.30 -1 -1 37116 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1420 6575 1256 4964 355 64.9 MiB 0.06 0.00 8.28906 -160.635 -8.28906 8.28906 0.84 0.00066065 0.000602757 0.0237706 0.0216357 34 3727 35 6.55708e+06 385760 585099. 2024.56 4.04 0.266242 0.234254 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.30 0.09 0.12 -1 -1 0.30 0.0301948 0.0272846 203 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 12.44 vpr 64.71 MiB 0.02 7200 -1 -1 13 0.32 -1 -1 36744 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1315 6522 1420 4675 427 64.7 MiB 0.06 0.00 7.42898 -137.517 -7.42898 7.42898 0.89 0.000634757 0.000577349 0.0246663 0.0224077 30 3356 18 6.55708e+06 337540 526063. 1820.29 8.90 0.222883 0.195671 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0280267 0.025289 186 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.45 vpr 64.99 MiB 0.02 7064 -1 -1 14 0.45 -1 -1 37136 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 26.4 MiB 0.59 1483 8199 1652 5918 629 65.0 MiB 0.08 0.00 8.85275 -170.114 -8.85275 8.85275 0.89 0.000739651 0.000663224 0.0318251 0.0288631 34 4006 46 6.55708e+06 385760 585099. 2024.56 2.38 0.199987 0.176475 22462 138074 -1 3349 16 1484 4433 238013 55460 7.78082 7.78082 -164.519 -7.78082 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0324482 0.0293748 220 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 11.09 vpr 64.85 MiB 0.02 7032 -1 -1 11 0.36 -1 -1 36352 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 26.2 MiB 0.44 1183 4512 917 3199 396 64.8 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.88 0.000625503 0.000568284 0.0175193 0.0159945 28 3440 40 6.55708e+06 349595 500653. 1732.36 7.34 0.216957 0.188969 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.26 0.14 0.12 -1 -1 0.26 0.0353854 0.0313793 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.50 vpr 64.38 MiB 0.02 6948 -1 -1 13 0.21 -1 -1 36412 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 25.7 MiB 0.36 1098 6999 1531 4700 768 64.4 MiB 0.06 0.00 7.85907 -167.622 -7.85907 7.85907 0.89 0.00054066 0.000491796 0.0225741 0.0205974 26 3154 29 6.55708e+06 277265 477104. 1650.88 2.11 0.106246 0.0935075 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0255493 0.0228914 142 130 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 5.56 vpr 64.82 MiB 0.02 7136 -1 -1 14 0.30 -1 -1 36244 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1308 7027 1497 5027 503 64.8 MiB 0.06 0.00 8.02087 -160.438 -8.02087 8.02087 0.86 0.000598186 0.000535332 0.0249604 0.0226131 28 3737 36 6.55708e+06 325485 500653. 1732.36 2.07 0.135127 0.119003 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.0317314 0.0282558 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.98 vpr 65.37 MiB 0.02 7196 -1 -1 15 0.47 -1 -1 36640 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 26.7 MiB 0.68 1579 7323 1484 5148 691 65.4 MiB 0.07 0.00 9.31018 -193.267 -9.31018 9.31018 0.84 0.000763492 0.000689403 0.0284269 0.0258059 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.95 0.165949 0.146669 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0339856 0.0306986 228 227 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.80 vpr 64.23 MiB 0.02 7032 -1 -1 11 0.20 -1 -1 36324 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 25.7 MiB 0.74 1088 7079 1594 5001 484 64.2 MiB 0.06 0.00 6.82798 -137.917 -6.82798 6.82798 0.88 0.00051595 0.000469597 0.0218468 0.0198758 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.93 0.131874 0.115511 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.33 0.06 0.15 -1 -1 0.33 0.0219228 0.0196377 126 123 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.45 vpr 64.39 MiB 0.02 7000 -1 -1 12 0.23 -1 -1 35780 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65932 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 26.0 MiB 0.44 1155 8207 1978 5141 1088 64.4 MiB 0.07 0.00 7.38032 -154.384 -7.38032 7.38032 0.88 0.000523306 0.000470179 0.0257635 0.0233043 46 2574 16 6.55708e+06 313430 782063. 2706.10 3.78 0.188342 0.163256 24766 183262 -1 2168 17 929 2778 124629 29449 6.47024 6.47024 -143.196 -6.47024 0 0 958460. 3316.47 0.39 0.06 0.17 -1 -1 0.39 0.0242504 0.0217671 157 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.55 vpr 64.61 MiB 0.02 6944 -1 -1 12 0.39 -1 -1 36592 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1424 7439 1505 5396 538 64.6 MiB 0.08 0.00 7.41461 -164.576 -7.41461 7.41461 0.89 0.000739564 0.000652504 0.029513 0.0267026 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.80 0.17049 0.150894 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0344738 0.0310972 209 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 13.58 vpr 64.75 MiB 0.02 7024 -1 -1 12 0.30 -1 -1 36876 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 26.4 MiB 0.58 1429 8579 2186 5781 612 64.8 MiB 0.08 0.00 7.42022 -157.463 -7.42022 7.42022 0.86 0.000638278 0.000578843 0.0300281 0.0271642 30 3708 20 6.55708e+06 337540 526063. 1820.29 9.81 0.205583 0.179895 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0298828 0.0269087 186 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.52 vpr 65.36 MiB 0.02 7216 -1 -1 14 0.58 -1 -1 36908 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 26.9 MiB 0.33 1656 14691 3485 9017 2189 65.4 MiB 0.13 0.00 8.55829 -177.042 -8.55829 8.55829 0.85 0.000753537 0.000680517 0.0538974 0.0487575 38 3905 20 6.55708e+06 421925 638502. 2209.35 4.54 0.305952 0.269331 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.33 0.09 0.14 -1 -1 0.33 0.0352957 0.0319755 241 238 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.46 vpr 64.91 MiB 0.02 7204 -1 -1 11 0.29 -1 -1 36624 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 26.3 MiB 0.56 1210 13157 4017 6643 2497 64.9 MiB 0.11 0.00 6.86503 -131.636 -6.86503 6.86503 0.90 0.000628558 0.00057132 0.0448767 0.0407529 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.65 0.153615 0.136242 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.02628 0.0237199 176 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.52 vpr 64.53 MiB 0.02 6904 -1 -1 11 0.21 -1 -1 36476 -1 -1 25 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 25.9 MiB 0.27 858 9234 2019 6554 661 64.5 MiB 0.07 0.00 6.39815 -115.858 -6.39815 6.39815 0.87 0.000520228 0.00047469 0.0291498 0.0265279 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.21 0.104752 0.0923252 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.027146 0.0240699 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.16 vpr 65.40 MiB 0.02 7196 -1 -1 13 0.55 -1 -1 36868 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 27.2 MiB 0.33 1915 8888 1943 6342 603 65.4 MiB 0.09 0.00 7.96961 -161.89 -7.96961 7.96961 0.86 0.00081509 0.000724596 0.0350445 0.0316994 36 5494 32 6.55708e+06 482200 612192. 2118.31 6.20 0.255231 0.224426 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.33 0.11 0.15 -1 -1 0.33 0.0387206 0.0349219 280 278 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 8.52 vpr 64.64 MiB 0.02 7096 -1 -1 14 0.34 -1 -1 36644 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 26.1 MiB 0.32 1307 6821 1398 4713 710 64.6 MiB 0.06 0.00 8.63003 -171.716 -8.63003 8.63003 0.89 0.000634635 0.000576546 0.0254051 0.0231036 28 3653 27 6.55708e+06 313430 500653. 1732.36 4.95 0.224415 0.196812 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0276179 0.024831 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 11.02 vpr 64.09 MiB 0.02 6888 -1 -1 12 0.19 -1 -1 36340 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65628 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 25.7 MiB 0.44 1197 8251 1803 5271 1177 64.1 MiB 0.07 0.00 7.37817 -162.484 -7.37817 7.37817 0.90 0.000547406 0.000497819 0.0251711 0.0229294 28 3416 42 6.55708e+06 325485 500653. 1732.36 7.48 0.233587 0.203352 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0235856 0.021214 144 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.85 vpr 64.56 MiB 0.02 6860 -1 -1 13 0.35 -1 -1 36540 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 26.0 MiB 0.49 1296 6623 1420 4442 761 64.6 MiB 0.06 0.00 7.83929 -154.667 -7.83929 7.83929 0.86 0.000649895 0.000591315 0.0241924 0.0219071 34 3533 28 6.55708e+06 301375 585099. 2024.56 3.14 0.167245 0.146663 22462 138074 -1 2871 16 1200 3584 208636 47798 6.79164 6.79164 -152.938 -6.79164 0 0 742403. 2568.87 0.31 0.07 0.12 -1 -1 0.31 0.0259462 0.0233734 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 15.34 vpr 65.14 MiB 0.02 7060 -1 -1 13 0.38 -1 -1 37116 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 26.7 MiB 0.40 1675 5723 977 4473 273 65.1 MiB 0.06 0.00 7.72485 -162.113 -7.72485 7.72485 0.89 0.000711619 0.000643995 0.0231558 0.0210358 30 4421 42 6.55708e+06 421925 526063. 1820.29 11.59 0.319133 0.280469 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0350629 0.03174 235 232 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.88 vpr 64.89 MiB 0.02 7124 -1 -1 11 0.29 -1 -1 36480 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 26.5 MiB 0.49 1363 8827 2077 5986 764 64.9 MiB 0.08 0.00 7.0834 -142.912 -7.0834 7.0834 0.86 0.000661202 0.000599961 0.032101 0.0290845 30 3732 37 6.55708e+06 385760 526063. 1820.29 2.17 0.144103 0.126889 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0301319 0.0269453 199 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 16.93 vpr 65.19 MiB 0.02 7224 -1 -1 15 0.42 -1 -1 36780 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 26.6 MiB 0.38 1473 9543 2499 5737 1307 65.2 MiB 0.09 0.00 9.02492 -182.614 -9.02492 9.02492 0.87 0.000665962 0.000603679 0.0351891 0.0317773 36 3930 43 6.55708e+06 349595 612192. 2118.31 13.14 0.316517 0.275364 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0298051 0.0268385 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 8.12 vpr 64.95 MiB 0.02 7012 -1 -1 13 0.41 -1 -1 36596 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 26.4 MiB 0.24 1528 11922 3138 7505 1279 65.0 MiB 0.11 0.00 8.01701 -168.403 -8.01701 8.01701 0.88 0.000741045 0.000671901 0.0441406 0.0400073 34 4013 32 6.55708e+06 385760 585099. 2024.56 4.44 0.297036 0.261422 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.30 0.09 0.14 -1 -1 0.30 0.0315765 0.0284071 217 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.81 vpr 64.41 MiB 0.02 7000 -1 -1 12 0.24 -1 -1 35816 -1 -1 29 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65952 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 26.0 MiB 0.53 1144 6321 1459 4287 575 64.4 MiB 0.06 0.00 6.98904 -150.776 -6.98904 6.98904 0.89 0.00056814 0.000518261 0.02057 0.0187275 34 2893 24 6.55708e+06 349595 585099. 2024.56 4.07 0.225071 0.196806 22462 138074 -1 2556 27 1167 3010 287043 103811 6.25938 6.25938 -142.054 -6.25938 0 0 742403. 2568.87 0.31 0.11 0.13 -1 -1 0.31 0.0330467 0.0292466 159 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 5.52 vpr 64.41 MiB 0.02 6820 -1 -1 11 0.19 -1 -1 36520 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 26.1 MiB 0.48 1041 8402 1813 6153 436 64.4 MiB 0.07 0.00 6.97021 -142.93 -6.97021 6.97021 0.88 0.000545114 0.000495885 0.0265405 0.0241225 34 2908 26 6.55708e+06 265210 585099. 2024.56 1.94 0.133046 0.117138 22462 138074 -1 2476 15 1027 2936 158280 38462 5.86158 5.86158 -136.113 -5.86158 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.021889 0.0197328 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 6.32 vpr 65.26 MiB 0.02 7016 -1 -1 13 0.39 -1 -1 36856 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 26.7 MiB 0.43 1528 7975 1701 5466 808 65.3 MiB 0.08 0.00 8.19329 -167.366 -8.19329 8.19329 0.89 0.000723451 0.000649146 0.0294886 0.0267492 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.56 0.144499 0.127971 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.030331 0.0272787 204 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 6.48 vpr 64.38 MiB 0.02 6800 -1 -1 10 0.21 -1 -1 35940 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 25.8 MiB 0.25 1030 5107 1053 3581 473 64.4 MiB 0.04 0.00 6.08471 -123.999 -6.08471 6.08471 0.89 0.000449892 0.00040859 0.0162452 0.0147922 26 3016 46 6.55708e+06 289320 477104. 1650.88 3.23 0.117171 0.102862 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0239972 0.021387 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 11.61 vpr 64.18 MiB 0.02 6988 -1 -1 14 0.23 -1 -1 36200 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 25.8 MiB 0.53 1019 11203 3089 5915 2199 64.2 MiB 0.09 0.00 7.69221 -156.392 -7.69221 7.69221 0.88 0.000556349 0.000502928 0.0346854 0.0314843 28 3519 29 6.55708e+06 289320 500653. 1732.36 7.98 0.24423 0.213729 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0274148 0.0242369 149 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 8.05 vpr 65.13 MiB 0.02 7180 -1 -1 12 0.39 -1 -1 36364 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 26.7 MiB 0.38 1351 11891 3061 6959 1871 65.1 MiB 0.11 0.00 7.58423 -159.03 -7.58423 7.58423 0.88 0.000690493 0.000621146 0.0437213 0.0395153 36 3367 18 6.55708e+06 349595 612192. 2118.31 4.23 0.255103 0.223448 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0305271 0.0275597 201 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 5.12 vpr 64.29 MiB 0.02 6828 -1 -1 12 0.19 -1 -1 36220 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65832 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 25.9 MiB 0.38 1079 5567 1026 4331 210 64.3 MiB 0.05 0.00 6.95154 -149.121 -6.95154 6.95154 0.87 0.000512441 0.000465363 0.0180615 0.01646 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.77 0.111305 0.0972816 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0230162 0.0205655 141 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.45 vpr 65.00 MiB 0.02 7164 -1 -1 12 0.24 -1 -1 36556 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 26.2 MiB 0.33 1263 7843 1830 5405 608 65.0 MiB 0.07 0.00 7.086 -151.926 -7.086 7.086 0.86 0.000628825 0.000567159 0.0282183 0.0255314 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.93 0.118219 0.104233 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.26 0.15 0.11 -1 -1 0.26 0.0363998 0.0324501 188 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.71 vpr 65.07 MiB 0.02 7060 -1 -1 13 0.34 -1 -1 36636 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 26.5 MiB 0.35 1349 6509 1390 4237 882 65.1 MiB 0.06 0.00 7.60996 -160.091 -7.60996 7.60996 0.89 0.000637057 0.000576165 0.0233975 0.0212343 34 3758 47 6.55708e+06 349595 585099. 2024.56 4.03 0.246291 0.21511 22462 138074 -1 3187 19 1257 3833 298777 77572 6.5197 6.5197 -154.677 -6.5197 0 0 742403. 2568.87 0.31 0.10 0.13 -1 -1 0.31 0.0308436 0.0277178 179 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 8.91 vpr 64.25 MiB 0.02 7016 -1 -1 11 0.19 -1 -1 36200 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65796 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 25.9 MiB 0.29 1256 8251 2031 5471 749 64.3 MiB 0.07 0.00 6.67834 -143.715 -6.67834 6.67834 0.87 0.000521059 0.000472713 0.0249178 0.0226077 28 3436 25 6.55708e+06 325485 500653. 1732.36 5.61 0.198644 0.173169 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0246737 0.021999 148 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.59 vpr 64.31 MiB 0.02 6896 -1 -1 13 0.24 -1 -1 36384 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 25.8 MiB 0.31 1339 8047 1963 5261 823 64.3 MiB 0.07 0.00 7.72555 -161.807 -7.72555 7.72555 0.88 0.000592232 0.00053458 0.0269676 0.0244376 28 3857 33 6.55708e+06 325485 500653. 1732.36 2.10 0.139076 0.123184 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.27 0.16 0.11 -1 -1 0.27 0.0405046 0.0359032 167 164 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.61 vpr 64.85 MiB 0.02 7120 -1 -1 13 0.32 -1 -1 36468 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1276 15187 4382 8407 2398 64.9 MiB 0.13 0.00 7.99583 -160.474 -7.99583 7.99583 0.88 0.00067756 0.000617783 0.0523384 0.0474109 36 3413 20 6.55708e+06 325485 612192. 2118.31 3.03 0.212722 0.188418 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0287072 0.0259 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.62 vpr 64.72 MiB 0.02 7008 -1 -1 11 0.24 -1 -1 36268 -1 -1 28 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 26.3 MiB 0.40 1142 12761 3414 7382 1965 64.7 MiB 0.10 0.00 6.37111 -124.414 -6.37111 6.37111 0.87 0.000582471 0.000526515 0.0401798 0.0363406 36 2747 19 6.55708e+06 337540 612192. 2118.31 2.03 0.165353 0.144625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0237773 0.0213673 162 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.37 vpr 65.46 MiB 0.02 7244 -1 -1 14 0.40 -1 -1 37236 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 26.8 MiB 0.47 1569 9951 2260 6812 879 65.5 MiB 0.10 0.00 8.3634 -177.338 -8.3634 8.3634 0.87 0.000738828 0.000668586 0.0376384 0.0340423 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.54 0.15061 0.133072 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0347419 0.0313414 225 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.71 vpr 64.32 MiB 0.02 6828 -1 -1 12 0.21 -1 -1 36240 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 25.9 MiB 0.50 1144 6619 1429 4488 702 64.3 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.90 0.000523455 0.000473118 0.0209193 0.0190649 36 2680 25 6.55708e+06 337540 612192. 2118.31 4.06 0.185874 0.161779 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.31 0.06 0.14 -1 -1 0.31 0.0208436 0.0188066 145 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 12.61 vpr 65.03 MiB 0.02 7128 -1 -1 13 0.36 -1 -1 36836 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 26.6 MiB 0.44 1396 7843 1736 5120 987 65.0 MiB 0.07 0.00 7.69421 -153.973 -7.69421 7.69421 0.90 0.000665202 0.000598299 0.0278338 0.0251758 28 3900 43 6.55708e+06 325485 500653. 1732.36 8.83 0.246442 0.215971 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.26 0.12 0.12 -1 -1 0.26 0.0347906 0.0312634 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.58 vpr 64.16 MiB 0.02 6876 -1 -1 13 0.21 -1 -1 36180 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65700 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 25.8 MiB 0.43 1076 10583 2933 6087 1563 64.2 MiB 0.08 0.00 7.44215 -162.135 -7.44215 7.44215 0.86 0.000506336 0.000456655 0.0298564 0.0269963 28 3369 28 6.55708e+06 301375 500653. 1732.36 2.17 0.115084 0.101262 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0260285 0.0230177 146 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.94 vpr 64.79 MiB 0.02 7192 -1 -1 12 0.27 -1 -1 36660 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 26.3 MiB 0.39 1148 5517 1034 4096 387 64.8 MiB 0.05 0.00 7.36755 -151.17 -7.36755 7.36755 0.87 0.000587519 0.000526599 0.0197615 0.0179578 34 3150 21 6.55708e+06 313430 585099. 2024.56 3.37 0.199808 0.173245 22462 138074 -1 2544 17 1051 3386 187761 43277 6.5237 6.5237 -142.576 -6.5237 0 0 742403. 2568.87 0.30 0.07 0.14 -1 -1 0.30 0.0268781 0.0241204 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 8.87 vpr 64.94 MiB 0.02 7296 -1 -1 15 0.60 -1 -1 36748 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1759 9998 2422 6696 880 64.9 MiB 0.10 0.00 8.78932 -180.299 -8.78932 8.78932 0.87 0.000815534 0.000733654 0.0413549 0.0372421 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.86 0.262335 0.231641 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.32 0.12 0.14 -1 -1 0.32 0.0396879 0.0356537 250 249 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.64 vpr 63.54 MiB 0.02 6704 -1 -1 10 0.11 -1 -1 35772 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65064 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 25.0 MiB 0.33 757 9042 2084 6396 562 63.5 MiB 0.06 0.00 5.22063 -120.025 -5.22063 5.22063 0.88 0.000383161 0.000348449 0.023334 0.021162 28 1925 17 6.55708e+06 192880 500653. 1732.36 3.44 0.13085 0.113416 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0145191 0.012977 92 82 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 7.61 vpr 64.65 MiB 0.02 6844 -1 -1 13 0.22 -1 -1 36288 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 26.2 MiB 0.25 1069 6415 1411 4237 767 64.7 MiB 0.05 0.00 7.77311 -151.473 -7.77311 7.77311 0.89 0.000542677 0.000493573 0.0200331 0.0182184 28 2954 45 6.55708e+06 349595 500653. 1732.36 4.24 0.225629 0.195947 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.25 0.11 0.12 -1 -1 0.25 0.0330695 0.0291408 150 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.56 vpr 64.44 MiB 0.02 6740 -1 -1 12 0.24 -1 -1 36388 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1241 11223 2642 6703 1878 64.4 MiB 0.10 0.00 6.72746 -150.964 -6.72746 6.72746 0.89 0.000653442 0.000597174 0.0452472 0.0367872 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.97 0.141844 0.120904 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0270565 0.0243319 167 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 8.11 vpr 63.78 MiB 0.02 6892 -1 -1 9 0.16 -1 -1 35956 -1 -1 25 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65308 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 25.4 MiB 0.20 840 9694 2571 5897 1226 63.8 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.88 0.000429209 0.000383661 0.0258097 0.02349 26 2429 32 6.55708e+06 301375 477104. 1650.88 4.95 0.174483 0.152986 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0214049 0.0189193 112 103 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.08 vpr 65.19 MiB 0.02 7224 -1 -1 12 0.33 -1 -1 36272 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 26.5 MiB 0.69 1640 5273 863 4118 292 65.2 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.88 0.000700039 0.000625196 0.020358 0.0185489 36 4101 31 6.55708e+06 409870 612192. 2118.31 2.98 0.190786 0.16855 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.32 0.14 0.14 -1 -1 0.32 0.0421151 0.0375729 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.08 vpr 65.26 MiB 0.02 7016 -1 -1 14 0.39 -1 -1 36928 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 26.7 MiB 0.51 1228 13340 3394 7367 2579 65.3 MiB 0.12 0.00 8.33716 -163.889 -8.33716 8.33716 0.90 0.000684816 0.000615444 0.0483336 0.0435068 38 3334 33 6.55708e+06 349595 638502. 2209.35 3.10 0.226934 0.199519 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.33 0.07 0.15 -1 -1 0.33 0.0290335 0.0263318 204 202 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.33 vpr 65.54 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34032 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 26.9 MiB 0.11 929 17268 4565 10218 2485 65.5 MiB 0.15 0.00 4.24756 -141.398 -4.24756 4.24756 0.91 0.000595811 0.000540085 0.0471696 0.042707 32 2653 22 6.64007e+06 452088 554710. 1919.41 1.09 0.126744 0.112053 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0265007 0.0235621 153 80 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.29 vpr 65.18 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34080 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 26.4 MiB 0.19 873 12919 4129 6395 2395 65.2 MiB 0.12 0.00 4.44716 -130.844 -4.44716 4.44716 0.91 0.000570185 0.000517779 0.0417503 0.0381432 32 2348 20 6.64007e+06 288834 554710. 1919.41 1.03 0.113437 0.100313 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0272093 0.024052 142 78 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.86 vpr 65.34 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34252 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 26.7 MiB 0.09 1003 9675 2005 7104 566 65.3 MiB 0.08 0.00 3.83457 -129.818 -3.83457 3.83457 0.87 0.000508012 0.000462605 0.0239228 0.0217112 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.93 0.0886611 0.0775384 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.26 0.05 0.11 -1 -1 0.26 0.020647 0.0183063 142 50 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.19 vpr 65.08 MiB 0.07 7088 -1 -1 1 0.03 -1 -1 33960 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 26.5 MiB 0.07 990 11245 3461 6773 1011 65.1 MiB 0.11 0.00 4.46418 -132.921 -4.46418 4.46418 0.89 0.000542505 0.00049789 0.0329292 0.0301789 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.11 0.101984 0.0905558 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.022802 0.020183 138 25 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.92 vpr 65.18 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33992 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 26.5 MiB 0.10 849 15017 4515 8552 1950 65.2 MiB 0.13 0.00 4.14936 -139.21 -4.14936 4.14936 0.81 0.000543077 0.000494202 0.0433317 0.0395005 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.98 0.106967 0.0944895 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.024474 0.0216693 153 31 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.19 vpr 65.22 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33888 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 26.7 MiB 0.11 1024 19142 5848 10342 2952 65.2 MiB 0.16 0.00 3.5603 -122.153 -3.5603 3.5603 0.90 0.000568478 0.000510739 0.0468362 0.0424845 32 2260 24 6.64007e+06 489762 554710. 1919.41 1.00 0.120452 0.106083 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0268585 0.0236892 156 61 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.91 vpr 64.61 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34000 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 26.2 MiB 0.10 722 12923 4015 7171 1737 64.6 MiB 0.09 0.00 3.7987 -103.375 -3.7987 3.7987 0.89 0.00040099 0.000365683 0.0329061 0.03008 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.90 0.0802947 0.0710287 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0171868 0.0152601 96 26 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.10 vpr 65.30 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33888 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 26.7 MiB 0.08 948 16081 4441 8879 2761 65.3 MiB 0.13 0.00 3.49449 -109.504 -3.49449 3.49449 0.92 0.000496537 0.000454168 0.0372917 0.0339947 28 2371 22 6.64007e+06 426972 500653. 1732.36 1.07 0.102097 0.0902698 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.25 0.06 0.12 -1 -1 0.25 0.0213611 0.0188445 140 -1 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.90 vpr 64.82 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33828 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 26.1 MiB 0.15 706 7820 1805 5417 598 64.8 MiB 0.07 0.00 3.31336 -101.862 -3.31336 3.31336 0.90 0.00048389 0.000441895 0.0236328 0.0215985 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.86 0.0826305 0.0724905 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0200799 0.017747 106 81 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.00 vpr 64.91 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33760 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 26.2 MiB 0.14 890 10756 2975 5928 1853 64.9 MiB 0.09 0.00 3.5061 -124.869 -3.5061 3.5061 0.87 0.000446673 0.000406808 0.0299906 0.0273836 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.95 0.0876504 0.0773004 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0193361 0.0171641 121 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.92 vpr 64.88 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33724 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 26.1 MiB 0.13 822 14012 5060 7295 1657 64.9 MiB 0.10 0.00 3.4841 -115.834 -3.4841 3.4841 0.89 0.000466011 0.000423756 0.0381991 0.0348665 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.90 0.0934721 0.0825816 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0189613 0.0168183 110 58 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.80 vpr 64.77 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33732 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 25.9 MiB 0.09 840 9753 2297 6936 520 64.8 MiB 0.08 0.00 3.52209 -114.564 -3.52209 3.52209 0.86 0.000427258 0.000386707 0.0230359 0.0208996 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.90 0.0792945 0.0692566 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0178452 0.0158348 114 57 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.23 vpr 64.95 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33940 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 26.2 MiB 0.19 893 19448 6133 10048 3267 64.9 MiB 0.16 0.00 3.56129 -122.026 -3.56129 3.56129 0.87 0.000550726 0.00050115 0.0508219 0.0462795 32 2222 23 6.64007e+06 426972 554710. 1919.41 1.04 0.121844 0.107645 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.022639 0.0199901 145 55 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.92 vpr 65.18 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34268 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 26.7 MiB 0.13 1031 17036 4693 9820 2523 65.2 MiB 0.15 0.00 4.31123 -147.759 -4.31123 4.31123 0.90 0.000585331 0.00053345 0.0444686 0.0404907 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.78 0.125032 0.110771 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.02661 0.0235713 158 60 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.88 vpr 64.38 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34024 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 25.9 MiB 0.10 800 8852 2481 5509 862 64.4 MiB 0.07 0.00 3.4261 -103.793 -3.4261 3.4261 0.89 0.000418914 0.000382451 0.0231494 0.0211594 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.90 0.0748976 0.0658567 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187166 0.0165035 108 21 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.20 vpr 65.44 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33860 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 26.6 MiB 0.16 1068 13316 3890 7652 1774 65.4 MiB 0.13 0.00 3.5141 -124.724 -3.5141 3.5141 0.89 0.000546405 0.00049328 0.0425394 0.038845 32 2326 21 6.64007e+06 276276 554710. 1919.41 1.01 0.112974 0.0998243 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0267958 0.0237605 147 60 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.42 vpr 65.43 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33860 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 26.7 MiB 0.15 964 16340 5208 8057 3075 65.4 MiB 0.11 0.00 3.6263 -123.14 -3.6263 3.6263 0.88 0.000551943 0.000497829 0.0411959 0.0375578 34 2358 39 6.64007e+06 452088 585099. 2024.56 2.26 0.181147 0.159503 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.023605 0.0209428 144 54 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.91 vpr 64.90 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33796 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 26.3 MiB 0.12 919 13487 3473 7992 2022 64.9 MiB 0.10 0.00 2.83964 -105.375 -2.83964 2.83964 0.89 0.0004907 0.00044673 0.0323581 0.0294597 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.91 0.0953428 0.0838932 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0199869 0.0176675 119 62 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.82 vpr 63.96 MiB 0.02 6836 -1 -1 1 0.03 -1 -1 33800 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65496 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.5 MiB 0.04 670 10835 3352 6011 1472 64.0 MiB 0.07 0.00 2.72344 -89.4054 -2.72344 2.72344 0.89 0.000371537 0.000340715 0.0258422 0.0236343 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.90 0.0691071 0.0608782 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.28 0.04 0.13 -1 -1 0.28 0.0157144 0.013811 85 29 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.96 vpr 65.01 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33840 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 26.3 MiB 0.12 727 12120 4439 5930 1751 65.0 MiB 0.10 0.00 4.19115 -121.049 -4.19115 4.19115 0.87 0.000473245 0.000429935 0.0355206 0.0324466 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.94 0.0912584 0.0806202 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0184282 0.0164256 113 55 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.16 vpr 65.09 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33840 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 26.4 MiB 0.09 885 17732 4998 9545 3189 65.1 MiB 0.14 0.00 4.22193 -138.344 -4.22193 4.22193 0.89 0.000549423 0.000502933 0.0438154 0.0398974 32 2479 24 6.64007e+06 452088 554710. 1919.41 1.02 0.113777 0.100403 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0242434 0.0214635 147 31 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.13 vpr 65.38 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34224 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 27.1 MiB 0.21 960 11288 2842 7087 1359 65.4 MiB 0.11 0.00 3.74425 -123.858 -3.74425 3.74425 0.87 0.000550248 0.000499931 0.0298284 0.0269874 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.01 0.103647 0.090494 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0275745 0.0242975 150 108 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.71 vpr 63.95 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34308 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65488 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.6 MiB 0.08 395 10503 3120 6151 1232 64.0 MiB 0.06 0.00 2.74064 -71.156 -2.74064 2.74064 0.87 0.000300958 0.000272648 0.0221035 0.020125 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.87 0.0614308 0.0539072 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0136559 0.0120091 77 21 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.99 vpr 64.89 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34132 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 26.4 MiB 0.07 990 12749 4130 6257 2362 64.9 MiB 0.11 0.00 4.45633 -140.507 -4.45633 4.45633 0.86 0.000505425 0.000459975 0.0346962 0.0317667 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.98 0.0955255 0.084442 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0222283 0.0197383 138 -1 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.81 vpr 64.32 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33780 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65868 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.9 MiB 0.04 603 10672 2424 7898 350 64.3 MiB 0.06 0.00 2.3583 -83.9313 -2.3583 2.3583 0.87 0.000299878 0.000276139 0.0230947 0.0210804 28 1546 20 6.64007e+06 163254 500653. 1732.36 1.01 0.0666816 0.0589081 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0141975 0.0125613 81 -1 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.11 vpr 65.50 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 34120 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 0.07 956 14691 4376 8904 1411 65.5 MiB 0.13 0.00 4.18856 -140.856 -4.18856 4.18856 0.89 0.000567806 0.000520643 0.0375182 0.0341448 32 2560 22 6.64007e+06 439530 554710. 1919.41 1.02 0.105484 0.0930071 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.026217 0.023089 153 21 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 8.59 vpr 65.41 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 33752 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 26.7 MiB 0.08 1019 8796 1857 6524 415 65.4 MiB 0.08 0.00 3.60659 -123.354 -3.60659 3.60659 0.89 0.00048499 0.000441217 0.0207685 0.0189151 26 3249 33 6.64007e+06 464646 477104. 1650.88 5.58 0.183731 0.161143 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0241351 0.0213461 152 -1 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.15 vpr 65.32 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33872 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.8 MiB 0.08 1069 18901 5689 10576 2636 65.3 MiB 0.16 0.00 4.16036 -141.868 -4.16036 4.16036 0.88 0.000583951 0.000532183 0.0485867 0.0442508 32 2736 22 6.64007e+06 464646 554710. 1919.41 1.03 0.121048 0.107073 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0272203 0.0241055 155 54 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.90 vpr 64.63 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33832 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 26.1 MiB 0.07 857 10572 2555 6423 1594 64.6 MiB 0.08 0.00 3.07196 -107.422 -3.07196 3.07196 0.88 0.000441391 0.000402265 0.0297163 0.0271265 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.94 0.0842835 0.0742876 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0188168 0.0166902 107 31 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.95 vpr 64.83 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 33740 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.3 MiB 0.08 824 11806 3275 6761 1770 64.8 MiB 0.09 0.00 3.4951 -114.009 -3.4951 3.4951 0.88 0.000460333 0.000421378 0.0315948 0.0288606 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.94 0.0881266 0.077721 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.29 0.06 0.14 -1 -1 0.29 0.0216702 0.0191435 115 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.94 vpr 64.50 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33948 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66044 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 26.0 MiB 0.09 658 7132 1686 4570 876 64.5 MiB 0.07 0.00 3.4309 -100.483 -3.4309 3.4309 0.88 0.000423117 0.000386436 0.019504 0.0178768 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.95 0.072213 0.0633467 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0186385 0.016502 107 27 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.01 vpr 64.69 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33932 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.1 MiB 0.08 802 15390 5648 7380 2362 64.7 MiB 0.12 0.00 3.5251 -121.985 -3.5251 3.5251 0.87 0.000429883 0.000391602 0.0399043 0.0364702 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.94 0.095745 0.0846852 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0209015 0.0184147 125 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.83 vpr 64.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33916 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 772 9679 2262 6618 799 64.8 MiB 0.08 0.00 3.47387 -114.287 -3.47387 3.47387 0.86 0.000467484 0.00042491 0.0225856 0.0205624 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.92 0.0789786 0.0690871 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.019038 0.0169047 119 26 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.00 vpr 64.63 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33768 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 26.3 MiB 0.12 877 15824 4460 9332 2032 64.6 MiB 0.12 0.00 2.80466 -91.9047 -2.80466 2.80466 0.89 0.000459495 0.000417967 0.0372795 0.0339341 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.95 0.0953491 0.0841209 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0198941 0.01751 110 55 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.36 vpr 65.17 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34076 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 27.0 MiB 0.16 1234 17889 5288 10109 2492 65.2 MiB 0.18 0.00 4.16036 -142.499 -4.16036 4.16036 0.91 0.000580015 0.000527212 0.0458917 0.0417321 28 3347 24 6.64007e+06 514878 500653. 1732.36 2.06 0.130965 0.115972 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.27 0.09 0.12 -1 -1 0.27 0.0273684 0.024335 181 26 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.12 vpr 65.39 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34244 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 26.8 MiB 0.14 996 11616 2636 8022 958 65.4 MiB 0.11 0.00 3.5823 -125.213 -3.5823 3.5823 0.90 0.00057829 0.0005204 0.0312462 0.0283705 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.95 0.100878 0.0887317 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0247232 0.0220039 154 62 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.05 vpr 65.07 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33824 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 26.3 MiB 0.19 803 9407 2189 6388 830 65.1 MiB 0.08 0.00 3.6833 -114.43 -3.6833 3.6833 0.90 0.000498187 0.000448393 0.0243669 0.0222099 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.93 0.0849782 0.074301 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0203134 0.0180201 114 77 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.07 vpr 65.45 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34012 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 26.8 MiB 0.13 1052 11799 3060 6831 1908 65.5 MiB 0.11 0.00 3.64847 -119.816 -3.64847 3.64847 0.87 0.00056005 0.000507296 0.0346287 0.0314588 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.96 0.101496 0.0892599 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0264374 0.0233626 149 59 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.31 vpr 65.73 MiB 0.02 7388 -1 -1 1 0.04 -1 -1 34084 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 27.1 MiB 0.34 953 7835 1760 5704 371 65.7 MiB 0.08 0.00 5.23812 -147.937 -5.23812 5.23812 0.88 0.000602213 0.000546856 0.027357 0.024965 32 2549 24 6.64007e+06 288834 554710. 1919.41 1.00 0.10467 0.0916894 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0258933 0.0228922 150 111 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.11 vpr 65.34 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34132 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 26.6 MiB 0.18 955 10859 3044 7047 768 65.3 MiB 0.11 0.00 5.02279 -136.574 -5.02279 5.02279 0.91 0.000567353 0.000517182 0.0353886 0.032249 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.96 0.106645 0.0939511 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.27 0.05 0.13 -1 -1 0.27 0.0223952 0.0199357 144 86 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.07 vpr 65.32 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 33732 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1046 15623 4332 9609 1682 65.3 MiB 0.14 0.00 3.5621 -120.379 -3.5621 3.5621 0.88 0.000566381 0.00051706 0.0412492 0.037568 26 2560 22 6.64007e+06 439530 477104. 1650.88 1.00 0.113397 0.100111 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.022664 0.0201639 148 58 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.18 vpr 65.51 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33756 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 26.9 MiB 0.09 865 10206 2264 6941 1001 65.5 MiB 0.10 0.00 4.23656 -140.329 -4.23656 4.23656 0.90 0.000553454 0.000503548 0.0278969 0.0254093 32 2829 21 6.64007e+06 464646 554710. 1919.41 1.07 0.102136 0.0899814 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.026139 0.0231906 156 42 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.29 vpr 65.60 MiB 0.02 7548 -1 -1 1 0.05 -1 -1 34120 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 27.3 MiB 0.16 1205 17356 4219 10649 2488 65.6 MiB 0.17 0.00 4.21478 -145.938 -4.21478 4.21478 0.87 0.000640709 0.000583253 0.0497256 0.0452033 32 2779 22 6.64007e+06 527436 554710. 1919.41 1.02 0.135258 0.119397 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.031803 0.0283033 186 91 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.94 vpr 64.77 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33912 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 26.0 MiB 0.09 655 13731 5030 6417 2284 64.8 MiB 0.11 0.00 3.7665 -117.146 -3.7665 3.7665 0.86 0.00042847 0.000390477 0.0365484 0.0334032 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.96 0.095815 0.0845698 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0199046 0.017631 116 24 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.04 vpr 65.45 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33996 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 26.9 MiB 0.13 910 7386 1527 5477 382 65.4 MiB 0.07 0.00 4.20356 -136.322 -4.20356 4.20356 0.87 0.00052467 0.00047389 0.0187704 0.0170122 32 2713 25 6.64007e+06 477204 554710. 1919.41 1.02 0.0893745 0.0779025 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0240466 0.0211503 152 59 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.03 vpr 65.34 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33992 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 26.5 MiB 0.10 994 14048 3500 8468 2080 65.3 MiB 0.12 0.00 3.7163 -119.726 -3.7163 3.7163 0.88 0.000458895 0.000418223 0.0355908 0.0323955 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.97 0.106238 0.0930727 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0245033 0.0216581 149 54 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.19 vpr 64.56 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33660 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 26.1 MiB 0.08 1080 15017 4624 8554 1839 64.6 MiB 0.14 0.00 4.14936 -144.892 -4.14936 4.14936 0.90 0.000518035 0.00047217 0.0439576 0.0402015 32 2624 22 6.64007e+06 276276 554710. 1919.41 1.04 0.111132 0.0985581 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0251811 0.0223292 151 -1 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.23 vpr 65.44 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33804 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 26.7 MiB 0.17 1044 15603 4218 9336 2049 65.4 MiB 0.14 0.00 3.55822 -125.535 -3.55822 3.55822 0.90 0.00056806 0.000514941 0.0424058 0.0385769 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.99 0.113035 0.0996233 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0257256 0.0228223 146 81 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.74 vpr 65.62 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33740 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67200 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 26.8 MiB 0.17 1017 12791 3286 8285 1220 65.6 MiB 0.12 0.00 3.47912 -120.914 -3.47912 3.47912 0.87 0.00055031 0.000500898 0.0327549 0.0297617 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.64 0.128355 0.112517 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0237066 0.0210925 148 58 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.18 vpr 65.36 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 34084 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 26.8 MiB 0.14 1102 19142 5372 11310 2460 65.4 MiB 0.16 0.00 3.5243 -123.608 -3.5243 3.5243 0.89 0.000563229 0.000513346 0.0476884 0.043369 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.99 0.117246 0.103626 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.024817 0.0220971 157 61 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.05 vpr 65.13 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33804 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 26.4 MiB 0.08 1032 14906 4320 9186 1400 65.1 MiB 0.14 0.00 4.18856 -144.112 -4.18856 4.18856 0.88 0.000559659 0.000506066 0.0373184 0.0340438 30 2290 20 6.64007e+06 464646 526063. 1820.29 1.00 0.104422 0.0922182 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0241098 0.0213983 152 21 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 7.45 vpr 65.19 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34284 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 26.7 MiB 0.12 1016 12153 3010 8355 788 65.2 MiB 0.11 0.00 4.23153 -146.068 -4.23153 4.23153 0.89 0.000567541 0.000516323 0.0313079 0.0284851 26 2842 35 6.64007e+06 489762 477104. 1650.88 4.35 0.196408 0.171331 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.027753 0.0244703 155 50 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.57 vpr 65.37 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33944 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 27.1 MiB 0.19 1141 13095 3356 8753 986 65.4 MiB 0.12 0.00 4.67535 -137.171 -4.67535 4.67535 0.87 0.000565569 0.000512868 0.0356054 0.0322811 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.45 0.117888 0.103631 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0248475 0.0219832 147 110 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.18 vpr 65.48 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33740 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67048 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 26.9 MiB 0.15 1069 15584 4992 8664 1928 65.5 MiB 0.15 0.00 4.34993 -137.194 -4.34993 4.34993 0.88 0.00057568 0.000523707 0.0501953 0.045731 32 2657 20 6.64007e+06 276276 554710. 1919.41 1.00 0.12204 0.10789 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0264792 0.0233703 151 86 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.82 vpr 65.03 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34280 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 26.2 MiB 0.06 928 8735 1852 5986 897 65.0 MiB 0.07 0.00 3.50687 -122.364 -3.50687 3.50687 0.88 0.00045576 0.000414934 0.0208019 0.0190072 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.94 0.0795523 0.0697733 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0204785 0.0181252 125 20 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.02 vpr 64.94 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33716 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.3 MiB 0.16 885 10406 2864 6861 681 64.9 MiB 0.10 0.00 3.5031 -121.505 -3.5031 3.5031 0.88 0.000516909 0.000472199 0.0323093 0.0294971 26 2358 26 6.64007e+06 226044 477104. 1650.88 1.00 0.102915 0.0905138 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0222257 0.0196757 121 91 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.09 vpr 65.58 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34024 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67152 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 27.3 MiB 0.10 1352 17606 4821 10688 2097 65.6 MiB 0.17 0.00 4.98622 -168.741 -4.98622 4.98622 0.86 0.000560694 0.000511273 0.0446097 0.0405987 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.02 0.121377 0.107107 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.27 0.10 0.12 -1 -1 0.27 0.030392 0.0268099 189 53 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.01 vpr 64.86 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33796 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 26.2 MiB 0.12 1055 17857 5354 10411 2092 64.9 MiB 0.16 0.00 3.51607 -123.396 -3.51607 3.51607 0.88 0.000529229 0.00048268 0.0448051 0.0406861 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.90 0.109116 0.096379 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0230173 0.020421 148 31 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.01 vpr 64.86 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33668 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 26.3 MiB 0.07 853 17523 5443 9889 2191 64.9 MiB 0.13 0.00 3.4529 -114.711 -3.4529 3.4529 0.91 0.000453332 0.000414279 0.0398713 0.0363693 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.92 0.0955351 0.0844856 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0211858 0.0186698 116 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.48 vpr 65.64 MiB 0.02 7668 -1 -1 1 0.04 -1 -1 34472 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 27.4 MiB 0.27 1192 13629 3357 8864 1408 65.6 MiB 0.14 0.00 4.97469 -167.233 -4.97469 4.97469 0.91 0.00069269 0.00062722 0.0391096 0.0355025 32 2825 26 6.64007e+06 565110 554710. 1919.41 1.06 0.125556 0.110418 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0307313 0.0274197 188 109 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.11 vpr 65.25 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33480 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 26.5 MiB 0.12 1027 16762 4357 10483 1922 65.2 MiB 0.13 0.00 4.27488 -146.847 -4.27488 4.27488 0.88 0.000548011 0.000499112 0.0396979 0.0360375 28 2563 23 6.64007e+06 477204 500653. 1732.36 1.01 0.111998 0.0987102 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0226972 0.0202227 153 31 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.88 vpr 64.67 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33844 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 26.1 MiB 0.07 882 11046 2802 6952 1292 64.7 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.89 0.000435856 0.000397273 0.0249167 0.0226764 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.88 0.0787649 0.0692456 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0197683 0.0175485 124 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.52 vpr 65.48 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34568 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67048 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 27.2 MiB 0.11 1334 20347 5362 13158 1827 65.5 MiB 0.19 0.00 4.95502 -168.119 -4.95502 4.95502 0.89 0.000595613 0.000540643 0.0521029 0.0474258 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.26 0.137778 0.122314 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.31 0.08 0.12 -1 -1 0.31 0.0296293 0.0263435 190 26 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.04 vpr 64.85 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 33800 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 26.3 MiB 0.08 623 13731 4925 6406 2400 64.8 MiB 0.11 0.00 3.5061 -118.666 -3.5061 3.5061 0.89 0.000438487 0.000400115 0.0368053 0.0336431 32 2131 28 6.64007e+06 213486 554710. 1919.41 1.00 0.0980609 0.0865943 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205867 0.0181901 121 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.79 vpr 64.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34068 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 26.4 MiB 0.12 855 13939 4099 8667 1173 64.7 MiB 0.11 0.00 3.47387 -112.968 -3.47387 3.47387 0.85 0.000451175 0.000410145 0.0307641 0.0280172 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.88 0.0856771 0.075468 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0196109 0.017367 114 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.98 vpr 65.51 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 34100 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 26.7 MiB 0.15 1003 12839 3224 8329 1286 65.5 MiB 0.11 0.00 3.6803 -109.03 -3.6803 3.6803 0.87 0.000484469 0.000441941 0.0331526 0.0301008 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.98 0.102021 0.0895138 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0230192 0.0203277 134 81 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.07 vpr 65.39 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34400 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 26.6 MiB 0.12 937 11048 2797 7564 687 65.4 MiB 0.10 0.00 4.21976 -143.232 -4.21976 4.21976 0.88 0.000578484 0.000526017 0.0359542 0.0328306 32 2378 24 6.64007e+06 276276 554710. 1919.41 1.00 0.105378 0.0927048 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0256065 0.0226293 152 53 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.34 vpr 65.60 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34180 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 27.0 MiB 0.20 1070 15876 4480 9346 2050 65.6 MiB 0.15 0.00 4.25856 -146.098 -4.25856 4.25856 0.88 0.000573223 0.000521673 0.0417503 0.0380398 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.12 0.131524 0.116007 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0286226 0.0253583 154 55 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.01 vpr 64.93 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 34220 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 26.3 MiB 0.12 863 8856 1892 6516 448 64.9 MiB 0.08 0.00 3.4749 -121.747 -3.4749 3.4749 0.88 0.000496241 0.000453247 0.0217898 0.0198203 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.96 0.0831033 0.0727446 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0223497 0.0197265 122 55 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.08 vpr 65.18 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34088 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 26.4 MiB 0.17 821 8336 2395 4162 1779 65.2 MiB 0.07 0.00 3.72326 -116.749 -3.72326 3.72326 0.89 0.000478212 0.00043278 0.0262134 0.0239511 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.96 0.0851581 0.0748475 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0207871 0.0182768 109 82 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.48 vpr 64.86 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34136 -1 -1 35 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 26.2 MiB 0.13 985 17635 4923 10695 2017 64.9 MiB 0.16 0.00 3.4529 -110.073 -3.4529 3.4529 0.90 0.000533354 0.000486408 0.044908 0.0409046 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.36 0.12688 0.112064 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0232533 0.0205103 139 52 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.46 vpr 64.86 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 33800 -1 -1 32 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 26.3 MiB 0.08 939 14996 4215 8524 2257 64.9 MiB 0.12 0.00 4.39198 -124.88 -4.39198 4.39198 0.92 0.000483924 0.000441823 0.0379247 0.0344464 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.46 0.111352 0.0982378 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.021719 0.0191848 134 20 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.06 vpr 65.20 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 34084 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 26.4 MiB 0.16 846 13731 4520 7348 1863 65.2 MiB 0.11 0.00 3.5343 -117.296 -3.5343 3.5343 0.88 0.000458754 0.000417071 0.0378925 0.0345761 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.95 0.0946194 0.08352 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0200077 0.0176086 114 58 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.93 vpr 65.25 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33364 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 26.4 MiB 0.15 892 11281 2807 6986 1488 65.2 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.87 0.00046697 0.000423879 0.033141 0.0301249 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.90 0.0918221 0.0806453 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0210192 0.0185309 114 88 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.12 vpr 64.98 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34052 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 26.4 MiB 0.08 1121 19124 6194 10224 2706 65.0 MiB 0.16 0.00 4.18856 -139.706 -4.18856 4.18856 0.89 0.000499526 0.000455783 0.0431688 0.0392601 32 2557 23 6.64007e+06 464646 554710. 1919.41 1.00 0.10875 0.0960715 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0254226 0.0225222 152 -1 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.22 vpr 65.35 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34112 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 26.8 MiB 0.17 1037 18660 5257 10625 2778 65.4 MiB 0.15 0.00 4.17032 -143.358 -4.17032 4.17032 0.87 0.000584 0.000530802 0.0474559 0.0430854 32 2589 21 6.64007e+06 452088 554710. 1919.41 1.02 0.1183 0.104401 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0256633 0.0227061 155 57 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.28 vpr 65.53 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33856 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 27.0 MiB 0.15 1085 15876 4268 10377 1231 65.5 MiB 0.14 0.00 4.15553 -144.194 -4.15553 4.15553 0.90 0.000579534 0.000521169 0.0412409 0.0374726 32 2670 22 6.64007e+06 452088 554710. 1919.41 1.05 0.115627 0.101985 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0275759 0.0244311 153 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.38 vpr 65.60 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33996 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 27.0 MiB 0.13 963 9146 1745 6045 1356 65.6 MiB 0.07 0.00 4.17056 -135.219 -4.17056 4.17056 0.87 0.00054571 0.000495698 0.0241765 0.0220353 30 3028 24 6.64007e+06 477204 526063. 1820.29 3.33 0.181442 0.157477 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0275022 0.0242488 149 62 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.99 vpr 65.02 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33780 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 26.2 MiB 0.10 840 12856 4254 6466 2136 65.0 MiB 0.10 0.00 3.4921 -115.538 -3.4921 3.4921 0.88 0.000444699 0.000405098 0.0347867 0.0317704 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.96 0.0916755 0.0808571 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0196298 0.0173466 113 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.40 vpr 65.33 MiB 0.06 7304 -1 -1 1 0.03 -1 -1 34184 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 26.6 MiB 0.15 996 13127 3599 7422 2106 65.3 MiB 0.12 0.00 4.20393 -135.69 -4.20393 4.20393 0.87 0.000540379 0.000491749 0.0401961 0.0367194 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.26 0.124948 0.110434 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0237119 0.0210665 146 58 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.26 vpr 65.45 MiB 0.02 7488 -1 -1 1 0.04 -1 -1 34192 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 27.1 MiB 0.21 1061 10232 2187 7405 640 65.5 MiB 0.10 0.00 4.16036 -143.59 -4.16036 4.16036 0.89 0.000635947 0.00058228 0.0282669 0.0257607 26 3037 26 6.64007e+06 514878 477104. 1650.88 2.06 0.122884 0.108288 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0277844 0.0245168 156 106 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.10 vpr 65.16 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33884 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 26.7 MiB 0.11 924 14769 3776 9247 1746 65.2 MiB 0.13 0.00 4.18868 -135.93 -4.18868 4.18868 0.87 0.00055959 0.000510051 0.0403857 0.0368034 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.00 0.114163 0.100619 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.02646 0.0233724 148 79 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.02 vpr 64.80 MiB 0.02 7540 -1 -1 1 0.03 -1 -1 33948 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 26.1 MiB 0.13 973 15004 4033 8498 2473 64.8 MiB 0.12 0.00 3.6693 -113.052 -3.6693 3.6693 0.88 0.000492497 0.00044621 0.0396718 0.0360316 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.94 0.105235 0.0926208 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0231638 0.0204952 138 83 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.30 vpr 65.08 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34016 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 26.3 MiB 0.22 1125 9725 2385 6614 726 65.1 MiB 0.10 0.00 4.21673 -144.443 -4.21673 4.21673 0.89 0.000594988 0.000536235 0.0316425 0.0289025 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.08 0.111725 0.0982844 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0270646 0.0240958 155 58 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.11 vpr 65.12 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33776 -1 -1 36 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 964 18079 5189 10710 2180 65.1 MiB 0.14 0.00 3.5353 -109.312 -3.5353 3.5353 0.88 0.000534475 0.00048853 0.0460543 0.0418217 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.94 0.111805 0.0984043 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0239965 0.0211665 136 81 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.97 vpr 64.45 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33724 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 25.9 MiB 0.05 799 9356 2113 6168 1075 64.5 MiB 0.08 0.00 3.4921 -122.483 -3.4921 3.4921 0.91 0.000430454 0.000393863 0.0255165 0.0233207 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.97 0.0810233 0.0714093 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0193824 0.0172362 115 -1 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.49 vpr 65.29 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34076 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 26.7 MiB 0.24 992 16743 5741 8435 2567 65.3 MiB 0.15 0.00 4.25856 -144.485 -4.25856 4.25856 0.89 0.000570884 0.000521004 0.0453272 0.0412824 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.20 0.127569 0.112917 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0275947 0.0244536 152 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.23 vpr 65.28 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 34036 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 26.4 MiB 0.15 1054 17367 5167 10302 1898 65.3 MiB 0.16 0.00 4.21976 -145.962 -4.21976 4.21976 0.90 0.000571336 0.000519737 0.0542501 0.0494752 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.98 0.123573 0.10955 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0292675 0.0258417 158 62 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.56 vpr 64.99 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34004 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.2 MiB 0.14 691 7975 1531 6145 299 65.0 MiB 0.07 0.00 3.6913 -111.241 -3.6913 3.6913 0.91 0.000462129 0.000410122 0.0189504 0.0172526 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.47 0.0885979 0.077352 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.021078 0.0185299 112 47 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.02 vpr 64.59 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33784 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 26.1 MiB 0.07 653 13381 4684 6039 2658 64.6 MiB 0.10 0.00 3.5533 -116.629 -3.5533 3.5533 0.90 0.00044819 0.000409615 0.0354603 0.0324465 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.97 0.092769 0.0820055 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0210217 0.0186232 118 -1 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.11 vpr 65.20 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33916 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 927 16303 4785 8793 2725 65.2 MiB 0.13 0.00 4.16476 -135.871 -4.16476 4.16476 0.88 0.000528767 0.000481679 0.0410813 0.0374541 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.96 0.107814 0.0951128 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0245747 0.0217206 139 56 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 7.19 vpr 65.63 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34044 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 26.8 MiB 0.10 1051 17397 5163 9750 2484 65.6 MiB 0.15 0.00 4.41596 -136.112 -4.41596 4.41596 0.90 0.000558224 0.000508857 0.0467016 0.0425404 26 2942 23 6.64007e+06 401856 477104. 1650.88 4.07 0.211338 0.185699 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0286794 0.0252679 136 81 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.35 vpr 65.01 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34020 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 26.7 MiB 0.09 1159 10441 2545 7247 649 65.0 MiB 0.11 0.00 4.95022 -163.094 -4.95022 4.95022 0.89 0.000550141 0.0005046 0.0282881 0.0257966 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.18 0.110855 0.0978986 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.31 0.09 0.13 -1 -1 0.31 0.0293436 0.0261156 179 -1 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.68 vpr 64.96 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33728 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 26.3 MiB 0.14 813 9732 2096 6039 1597 65.0 MiB 0.07 0.00 3.7815 -111.41 -3.7815 3.7815 0.91 0.000524462 0.000474516 0.0243243 0.0220964 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.64 0.104296 0.0917846 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0196069 0.0173822 138 47 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.04 vpr 64.39 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34244 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 25.9 MiB 0.09 529 12292 5081 5761 1450 64.4 MiB 0.08 0.00 3.54427 -98.353 -3.54427 3.54427 0.90 0.000402346 0.000366177 0.0310103 0.028328 32 1668 31 6.64007e+06 263718 554710. 1919.41 1.02 0.0904818 0.0796379 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0203997 0.0180361 107 26 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.48 vpr 65.55 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34168 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 27.3 MiB 0.15 1462 20856 5895 12562 2399 65.6 MiB 0.21 0.00 4.52196 -148.077 -4.52196 4.52196 0.88 0.000652021 0.000591761 0.058713 0.0534184 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.20 0.156632 0.139633 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0321517 0.0285913 186 85 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.31 vpr 65.50 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33888 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 27.0 MiB 0.23 998 12919 3192 8538 1189 65.5 MiB 0.12 0.00 4.42996 -140.975 -4.42996 4.42996 0.87 0.000598375 0.000546159 0.0445533 0.0406602 32 2535 22 6.64007e+06 276276 554710. 1919.41 1.04 0.123091 0.108703 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0296022 0.0261261 145 105 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.13 vpr 65.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33740 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 26.3 MiB 0.20 894 11948 3681 7128 1139 65.0 MiB 0.10 0.00 3.6755 -115.703 -3.6755 3.6755 0.90 0.000489597 0.00044722 0.0362998 0.0330798 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.95 0.0967275 0.0852425 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202971 0.018025 108 86 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.69 vpr 65.37 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33836 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 26.7 MiB 0.07 1023 18745 6322 9498 2925 65.4 MiB 0.15 0.00 4.46396 -140.121 -4.46396 4.46396 0.88 0.000486788 0.000433857 0.0455945 0.0414346 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.66 0.12315 0.109077 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0243381 0.021488 147 31 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.27 vpr 65.49 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34056 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 27.0 MiB 0.13 1135 20076 5790 11566 2720 65.5 MiB 0.18 0.00 4.51716 -144.659 -4.51716 4.51716 0.90 0.000582868 0.000528935 0.0547065 0.0496929 32 2682 21 6.64007e+06 477204 554710. 1919.41 1.01 0.131666 0.116393 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286759 0.0254005 173 50 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.99 vpr 65.44 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33768 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 26.7 MiB 0.10 923 11484 2608 8162 714 65.4 MiB 0.11 0.00 3.73061 -110.59 -3.73061 3.73061 0.89 0.000521122 0.000474775 0.0303039 0.0276052 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.92 0.110017 0.096642 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.24 0.09 0.11 -1 -1 0.24 0.026596 0.0234729 135 50 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.28 vpr 65.03 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33916 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 26.8 MiB 0.12 1008 13516 3637 9135 744 65.0 MiB 0.13 0.00 4.19956 -142.899 -4.19956 4.19956 0.89 0.000616751 0.000562653 0.0335212 0.0305117 28 2725 41 6.64007e+06 539994 500653. 1732.36 3.16 0.215274 0.187071 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0275464 0.024334 158 61 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.65 vpr 65.45 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33784 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 26.9 MiB 0.13 988 17184 5218 8807 3159 65.4 MiB 0.14 0.00 3.62559 -123.648 -3.62559 3.62559 0.88 0.000545894 0.000491624 0.041901 0.0382067 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.50 0.12784 0.113543 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0329623 0.029018 157 61 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.46 vpr 64.62 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33852 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 26.0 MiB 0.07 573 13430 5649 6739 1042 64.6 MiB 0.09 0.00 3.6785 -105.931 -3.6785 3.6785 0.90 0.00038616 0.000353888 0.0360807 0.0329285 28 1653 18 6.64007e+06 226044 500653. 1732.36 2.57 0.145269 0.126861 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0190229 0.0168622 95 28 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.01 vpr 65.11 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34164 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 26.3 MiB 0.16 857 11783 4174 5528 2081 65.1 MiB 0.09 0.00 4.00656 -110.848 -4.00656 4.00656 0.90 0.000475582 0.000431931 0.0330427 0.0300674 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.93 0.0902261 0.0794151 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0172914 0.0154061 112 79 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.14 vpr 65.14 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34004 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1100 13261 3564 8068 1629 65.1 MiB 0.11 0.00 4.80256 -145.153 -4.80256 4.80256 0.90 0.000541649 0.000494087 0.0327532 0.029909 28 2902 24 6.64007e+06 477204 500653. 1732.36 3.05 0.179722 0.15655 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0251462 0.0222694 151 29 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.39 vpr 64.41 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33656 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.9 MiB 0.18 620 10442 2502 7352 588 64.4 MiB 0.08 0.00 3.6803 -100.526 -3.6803 3.6803 0.91 0.000440344 0.000401291 0.0240636 0.0218705 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.31 0.096879 0.0844246 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.018849 0.0166465 108 48 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.09 vpr 64.84 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 33884 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 26.3 MiB 0.12 691 13906 4599 7385 1922 64.8 MiB 0.11 0.00 3.53127 -120.288 -3.53127 3.53127 0.89 0.000463381 0.000423182 0.0381744 0.0348242 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.97 0.0960039 0.0848139 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0219248 0.019418 118 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.96 vpr 65.27 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34020 -1 -1 38 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 26.6 MiB 0.12 999 13261 3446 8635 1180 65.3 MiB 0.11 0.00 3.5665 -119.865 -3.5665 3.5665 0.88 0.000503116 0.000454755 0.0317038 0.0286665 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.93 0.0966433 0.0847213 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0227973 0.0201465 144 60 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.02 vpr 65.00 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33864 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 26.2 MiB 0.13 869 9368 2508 6076 784 65.0 MiB 0.08 0.00 3.34153 -105.882 -3.34153 3.34153 0.91 0.000458841 0.00041282 0.0267893 0.0244939 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.93 0.0818362 0.0720517 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0180452 0.0160616 106 49 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.49 vpr 65.14 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33768 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 26.4 MiB 0.12 879 9865 2512 6573 780 65.1 MiB 0.09 0.00 3.57229 -117.612 -3.57229 3.57229 0.88 0.000531054 0.000484354 0.0265293 0.0241744 28 2622 27 6.64007e+06 414414 500653. 1732.36 4.47 0.171712 0.149034 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.022801 0.0201753 137 56 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.23 vpr 65.31 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34176 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66880 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 26.7 MiB 0.23 875 10540 2287 7686 567 65.3 MiB 0.10 0.00 3.79366 -119.555 -3.79366 3.79366 0.90 0.000566932 0.000517249 0.0290683 0.0264903 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.99 0.105991 0.0930587 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0247866 0.0219427 149 88 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.00 vpr 65.14 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33796 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 26.3 MiB 0.12 816 8626 2345 5890 391 65.1 MiB 0.08 0.00 3.06096 -106.925 -3.06096 3.06096 0.91 0.000512378 0.000459621 0.0261564 0.0239296 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.95 0.0842834 0.0742087 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.022864 0.0202634 115 54 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.04 vpr 65.05 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33544 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 26.2 MiB 0.16 920 11296 3024 7326 946 65.1 MiB 0.10 0.00 3.5031 -121.121 -3.5031 3.5031 0.88 0.000494344 0.000450194 0.0333693 0.0304181 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.95 0.0955467 0.0843265 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0232635 0.0206369 121 60 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.23 vpr 65.54 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34504 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 26.9 MiB 0.12 1027 12240 2965 8371 904 65.5 MiB 0.11 0.00 4.25676 -144.495 -4.25676 4.25676 0.89 0.000569611 0.000518154 0.0315932 0.028726 32 2501 30 6.64007e+06 477204 554710. 1919.41 1.08 0.11346 0.0997764 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286653 0.025383 156 49 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.12 vpr 65.14 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 33988 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 26.4 MiB 0.12 1021 16079 4076 10280 1723 65.1 MiB 0.14 0.00 3.7925 -111.563 -3.7925 3.7925 0.91 0.00052642 0.000477412 0.0410489 0.0373052 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.96 0.109052 0.096187 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0229369 0.0204018 135 54 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.31 vpr 65.57 MiB 0.02 7312 -1 -1 1 0.04 -1 -1 34336 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 0.23 937 9020 1835 6701 484 65.6 MiB 0.09 0.00 4.29776 -145.038 -4.29776 4.29776 0.89 0.000613521 0.000556528 0.0256169 0.0233082 32 2670 31 6.64007e+06 489762 554710. 1919.41 1.05 0.11206 0.0981381 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0285913 0.0250583 158 117 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.83 vpr 64.73 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33888 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 26.3 MiB 0.07 804 11948 3966 6404 1578 64.7 MiB 0.08 0.00 3.08296 -103.61 -3.08296 3.08296 0.89 0.000378698 0.000344213 0.0285467 0.0259824 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.89 0.0773359 0.0680621 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.018224 0.0160447 106 -1 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.51 vpr 65.60 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 34132 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 27.1 MiB 0.12 998 18111 4956 10747 2408 65.6 MiB 0.14 0.00 4.26296 -139.632 -4.26296 4.26296 0.89 0.000589437 0.000537514 0.0458292 0.0417131 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.43 0.134229 0.118655 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.026159 0.0230138 144 89 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.06 vpr 65.18 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34048 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 26.3 MiB 0.24 734 13381 4309 7077 1995 65.2 MiB 0.11 0.00 3.54047 -121.881 -3.54047 3.54047 0.88 0.000510854 0.000465344 0.0411536 0.0376014 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.92 0.103956 0.0917759 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.023855 0.0210405 114 93 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.11 vpr 65.22 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 33720 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1102 9501 2041 6911 549 65.2 MiB 0.10 0.00 3.5841 -124.322 -3.5841 3.5841 0.89 0.000556943 0.000508522 0.0249619 0.0228196 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.97 0.0973861 0.0852215 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.28 0.06 0.13 -1 -1 0.28 0.0228909 0.0203709 151 59 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.49 vpr 65.44 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34260 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67008 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 27.2 MiB 0.19 1244 16489 4012 10933 1544 65.4 MiB 0.15 0.00 4.96651 -168.366 -4.96651 4.96651 0.85 0.000686452 0.000623403 0.0455356 0.0413196 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.39 0.143359 0.126422 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.24 0.09 0.10 -1 -1 0.24 0.0280175 0.0248633 188 81 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.80 vpr 64.07 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33724 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65608 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.6 MiB 0.07 483 10509 2545 7262 702 64.1 MiB 0.06 0.00 2.73878 -81.5531 -2.73878 2.73878 0.90 0.00036793 0.000334354 0.0258373 0.0235506 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.91 0.0747294 0.0655801 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0171108 0.0149856 83 51 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.93 vpr 64.52 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 34036 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 26.1 MiB 0.07 793 10388 3558 5136 1694 64.5 MiB 0.08 0.00 3.6815 -114.291 -3.6815 3.6815 0.90 0.000418729 0.000380795 0.0286901 0.026181 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.92 0.083285 0.0733605 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202883 0.0180295 97 29 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.14 vpr 65.18 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33784 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 26.4 MiB 0.09 798 13966 5020 6560 2386 65.2 MiB 0.11 0.00 3.4859 -119.604 -3.4859 3.4859 0.90 0.000421282 0.000380507 0.0369995 0.0336252 32 2382 23 6.64007e+06 226044 554710. 1919.41 1.04 0.0972486 0.0855287 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0231028 0.02038 126 31 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.78 vpr 64.20 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33988 -1 -1 34 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65740 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 25.8 MiB 0.05 678 12127 3168 7672 1287 64.2 MiB 0.08 0.00 3.4089 -91.215 -3.4089 3.4089 0.84 0.000464947 0.00042574 0.0248384 0.0226287 26 1687 20 6.64007e+06 426972 477104. 1650.88 1.01 0.0756214 0.0663822 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0182181 0.0159932 103 19 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.16 vpr 65.36 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 33948 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 26.9 MiB 0.14 1064 14828 5337 7470 2021 65.4 MiB 0.14 0.00 4.34676 -140.278 -4.34676 4.34676 0.88 0.000569001 0.000518435 0.0471169 0.0429578 32 2475 24 6.64007e+06 276276 554710. 1919.41 1.01 0.122964 0.10863 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0266653 0.0235745 149 84 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.01 vpr 65.16 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33740 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 26.7 MiB 0.15 786 10336 2273 7345 718 65.2 MiB 0.10 0.00 3.53327 -114.261 -3.53327 3.53327 0.92 0.000531642 0.000468502 0.0282771 0.0256653 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.87 0.134502 0.117902 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0256532 0.0226847 148 88 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.49 vpr 65.12 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34000 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 26.8 MiB 0.22 984 7523 1506 5708 309 65.1 MiB 0.08 0.00 3.92206 -133.487 -3.92206 3.92206 0.92 0.00059707 0.000543341 0.0231825 0.0211393 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.21 0.106144 0.0934166 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0300268 0.026559 151 80 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.44 vpr 65.04 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34076 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 26.6 MiB 0.39 986 12323 4513 6271 1539 65.0 MiB 0.11 0.00 4.33507 -129.747 -4.33507 4.33507 0.91 0.000562673 0.000511086 0.0398828 0.0363219 32 2540 23 6.65987e+06 266238 554710. 1919.41 1.03 0.114731 0.101208 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0263366 0.0232014 140 78 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 6.71 vpr 64.79 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33956 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 26.1 MiB 0.13 1040 16523 4439 10256 1828 64.8 MiB 0.14 0.00 3.41879 -119.689 -3.41879 3.41879 0.89 0.00054962 0.000499037 0.0423327 0.038579 28 2534 22 6.65987e+06 431052 500653. 1732.36 3.58 0.213223 0.187099 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0278727 0.0246375 141 50 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.60 vpr 64.99 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34064 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 26.3 MiB 0.09 793 11603 2857 6819 1927 65.0 MiB 0.09 0.00 4.2977 -123.649 -4.2977 4.2977 0.85 0.000496312 0.000453433 0.0335097 0.0307247 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.66 0.124507 0.110101 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.30 0.08 0.13 -1 -1 0.30 0.0250724 0.0222405 138 25 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.25 vpr 65.08 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33880 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 26.6 MiB 0.20 1026 15456 4961 8586 1909 65.1 MiB 0.14 0.00 4.14936 -143.085 -4.14936 4.14936 0.88 0.000475764 0.000431987 0.0466299 0.0422923 32 2926 21 6.65987e+06 253560 554710. 1919.41 1.03 0.114669 0.101054 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.02726 0.0241385 151 31 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.24 vpr 65.10 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34124 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 26.8 MiB 0.22 1029 9501 1978 7135 388 65.1 MiB 0.09 0.00 3.43623 -117.882 -3.43623 3.43623 0.89 0.000567005 0.000514363 0.0251511 0.0228649 32 2567 26 6.65987e+06 469086 554710. 1919.41 1.01 0.101331 0.0885654 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0268103 0.0238014 154 61 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.98 vpr 64.29 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34092 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 25.8 MiB 0.19 580 13026 4344 6329 2353 64.3 MiB 0.10 0.00 3.7565 -98.351 -3.7565 3.7565 0.87 0.000412847 0.000374814 0.0335601 0.0306785 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.91 0.083653 0.0738858 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0175806 0.0156375 96 26 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.06 vpr 65.09 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34172 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 26.5 MiB 0.15 1006 10170 2426 6636 1108 65.1 MiB 0.09 0.00 3.27903 -106.33 -3.27903 3.27903 0.88 0.000481948 0.000438164 0.0247464 0.0225245 28 2449 18 6.65987e+06 418374 500653. 1732.36 1.03 0.0851914 0.074947 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0216287 0.0191868 139 -1 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.14 vpr 64.79 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33760 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 26.0 MiB 0.29 870 11571 3268 6617 1686 64.8 MiB 0.09 0.00 3.07084 -101.313 -3.07084 3.07084 0.88 0.000469274 0.000426976 0.0346568 0.0316543 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.92 0.094471 0.0831992 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0217864 0.0193194 105 81 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.58 vpr 64.79 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33896 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.25 642 11432 4032 4649 2751 64.8 MiB 0.08 0.00 3.56921 -118.924 -3.56921 3.56921 0.85 0.000464027 0.000421502 0.0329589 0.0300073 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.47 0.152512 0.133216 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.30 0.06 0.14 -1 -1 0.30 0.0198307 0.0175245 121 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.14 vpr 64.76 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33824 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 26.0 MiB 0.25 784 11571 3060 7609 902 64.8 MiB 0.10 0.00 3.4841 -113.76 -3.4841 3.4841 0.89 0.000470619 0.000428305 0.0346616 0.0315911 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.95 0.0933303 0.0823778 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0241364 0.0213694 110 58 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.15 vpr 64.80 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33864 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 26.2 MiB 0.25 841 11223 2602 8034 587 64.8 MiB 0.09 0.00 3.27957 -108.894 -3.27957 3.27957 0.88 0.000460852 0.000417764 0.0280872 0.0255918 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.97 0.0890713 0.0781182 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0196384 0.0174056 114 57 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.24 vpr 65.20 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33864 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 26.8 MiB 0.38 1002 18711 5900 10256 2555 65.2 MiB 0.15 0.00 3.50686 -122.446 -3.50686 3.50686 0.84 0.000543729 0.000485713 0.0477187 0.0433571 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.96 0.118173 0.104654 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0274547 0.0243999 143 55 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.28 vpr 64.72 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33864 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 26.5 MiB 0.25 942 7973 1567 6126 280 64.7 MiB 0.08 0.00 4.02327 -135.611 -4.02327 4.02327 0.88 0.000571111 0.000516715 0.021992 0.0200207 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.05 0.0978745 0.0856866 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.0279106 0.02466 156 60 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.93 vpr 64.52 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34064 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 26.0 MiB 0.16 686 7177 1709 4538 930 64.5 MiB 0.06 0.00 3.15358 -93.6229 -3.15358 3.15358 0.87 0.000418163 0.000380275 0.0198469 0.0181683 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.92 0.0715002 0.062852 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0205766 0.0181517 107 21 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.31 vpr 65.40 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34000 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 26.8 MiB 0.25 1074 13992 4161 7846 1985 65.4 MiB 0.13 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000517492 0.000469245 0.0457378 0.0415449 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.02 0.118918 0.105005 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0274903 0.0244864 146 60 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 7.90 vpr 65.20 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 33840 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 26.7 MiB 0.37 934 18323 6450 8556 3317 65.2 MiB 0.13 0.00 3.6343 -123.732 -3.6343 3.6343 0.89 0.00054325 0.000495451 0.0466538 0.042526 30 2475 27 6.65987e+06 431052 526063. 1820.29 4.53 0.201831 0.176746 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0225048 0.0200104 142 54 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.05 vpr 64.97 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33696 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 26.3 MiB 0.21 832 15430 4777 8349 2304 65.0 MiB 0.12 0.00 2.83964 -101.748 -2.83964 2.83964 0.88 0.000497381 0.00045307 0.0373171 0.0339677 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.91 0.0946678 0.0835342 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0197055 0.0175277 118 62 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.72 vpr 63.98 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33808 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65516 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.5 MiB 0.11 661 10835 3152 6204 1479 64.0 MiB 0.07 0.00 2.60038 -85.2282 -2.60038 2.60038 0.85 0.000359502 0.000327344 0.0250303 0.0227697 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.88 0.0730392 0.0638841 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.25 0.04 0.11 -1 -1 0.25 0.0156192 0.0139134 85 29 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.18 vpr 64.79 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34052 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 26.0 MiB 0.24 855 13768 4604 7573 1591 64.8 MiB 0.11 0.00 3.94338 -122.155 -3.94338 3.94338 0.88 0.000465793 0.000426013 0.0413468 0.0377868 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.93 0.102299 0.0903874 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.020609 0.0183677 113 55 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.22 vpr 65.21 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33672 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 26.4 MiB 0.19 1021 12248 3399 7922 927 65.2 MiB 0.11 0.00 3.9823 -134.861 -3.9823 3.9823 0.88 0.000533884 0.000486922 0.031666 0.0288795 26 2573 27 6.65987e+06 431052 477104. 1650.88 1.09 0.107172 0.0943872 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0264323 0.0233854 145 31 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.31 vpr 64.85 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34116 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 26.5 MiB 0.33 1084 15644 4587 8678 2379 64.9 MiB 0.14 0.00 3.46744 -121.209 -3.46744 3.46744 0.84 0.000564945 0.000514413 0.0424707 0.0387403 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.98 0.119786 0.105778 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0296017 0.0261836 149 108 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.58 vpr 63.83 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 33868 -1 -1 17 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65364 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.4 MiB 0.15 410 10345 3142 6004 1199 63.8 MiB 0.05 0.00 2.61938 -68.655 -2.61938 2.61938 0.83 0.000306216 0.000277383 0.0220786 0.0200961 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.81 0.059403 0.0520841 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.27 0.03 0.11 -1 -1 0.27 0.0127034 0.0112525 77 21 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.09 vpr 65.10 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34092 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 26.3 MiB 0.14 1123 11064 3077 6737 1250 65.1 MiB 0.11 0.00 4.10424 -135.549 -4.10424 4.10424 0.80 0.00049869 0.000453148 0.0331965 0.0303391 32 2636 25 6.65987e+06 253560 554710. 1919.41 1.05 0.10312 0.0910785 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0236574 0.0210853 137 -1 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.82 vpr 64.16 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 33800 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65704 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.7 MiB 0.04 594 8553 1943 6358 252 64.2 MiB 0.06 0.00 2.22607 -81.0919 -2.22607 2.22607 0.89 0.000338784 0.000309379 0.0193278 0.0176982 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.96 0.0636927 0.0560612 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.26 0.03 0.12 -1 -1 0.26 0.0120007 0.0107879 81 -1 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.13 vpr 65.19 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34220 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 26.6 MiB 0.06 1112 19189 6002 11213 1974 65.2 MiB 0.16 0.00 4.06247 -140.472 -4.06247 4.06247 0.88 0.00055128 0.000509198 0.0489876 0.044658 32 2640 23 6.65987e+06 418374 554710. 1919.41 1.04 0.118453 0.104871 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0265307 0.0235236 151 21 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.17 vpr 65.00 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33580 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1134 16059 4004 10217 1838 65.0 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.90 0.000493854 0.000449001 0.0383404 0.0349651 30 2437 23 6.65987e+06 443730 526063. 1820.29 1.00 0.104537 0.0923317 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.29 0.06 0.13 -1 -1 0.29 0.0215816 0.019134 150 -1 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 8.37 vpr 65.11 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34008 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 26.9 MiB 0.13 1120 14463 4038 8924 1501 65.1 MiB 0.13 0.00 3.91784 -136.256 -3.91784 3.91784 0.90 0.000581637 0.000535203 0.0379912 0.0346051 28 2877 24 6.65987e+06 443730 500653. 1732.36 5.22 0.230311 0.200755 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.27 0.09 0.12 -1 -1 0.27 0.0295348 0.0260678 153 54 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.84 vpr 64.54 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33936 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 26.0 MiB 0.05 736 8191 2107 5347 737 64.5 MiB 0.07 0.00 2.8895 -100.047 -2.8895 2.8895 0.88 0.000444333 0.000404636 0.0238065 0.0217518 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.92 0.0815292 0.0715916 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0194196 0.0172642 106 31 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.98 vpr 64.48 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33852 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.1 MiB 0.11 832 12156 3666 7026 1464 64.5 MiB 0.09 0.00 3.4951 -115.55 -3.4951 3.4951 0.90 0.00045056 0.000400588 0.0330611 0.0302218 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.94 0.0893754 0.07902 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205213 0.0181961 115 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.92 vpr 64.39 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33900 -1 -1 20 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65940 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 25.8 MiB 0.13 590 7820 1903 5456 461 64.4 MiB 0.07 0.00 3.4309 -99.7277 -3.4309 3.4309 0.85 0.000404547 0.000369811 0.020444 0.0187424 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.02 0.0893711 0.0780792 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0194568 0.0171747 107 27 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.51 vpr 64.96 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 34076 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.4 MiB 0.11 686 12008 2561 8162 1285 65.0 MiB 0.08 0.00 3.4859 -118.026 -3.4859 3.4859 0.88 0.000445902 0.000400362 0.0303315 0.0276442 32 2225 24 6.65987e+06 228204 554710. 1919.41 1.48 0.11232 0.0984973 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0222843 0.0196955 125 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.48 vpr 64.71 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34104 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.3 MiB 0.07 778 11809 2809 7761 1239 64.7 MiB 0.10 0.00 3.29178 -109.233 -3.29178 3.29178 0.87 0.000451804 0.000411524 0.0273228 0.0249191 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.58 0.0981991 0.0862565 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.24 0.07 0.10 -1 -1 0.24 0.0198907 0.0175572 119 26 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.03 vpr 64.55 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33448 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 25.9 MiB 0.23 717 8047 1725 5786 536 64.5 MiB 0.07 0.00 2.76744 -86.2128 -2.76744 2.76744 0.87 0.000456608 0.000415684 0.0201553 0.0183813 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.92 0.0749066 0.0655956 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0196119 0.0173696 109 55 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 10.94 vpr 64.95 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 33860 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 26.8 MiB 0.30 1246 13117 3185 8526 1406 65.0 MiB 0.14 0.00 4.16036 -141.523 -4.16036 4.16036 0.88 0.000612426 0.000554793 0.0346251 0.0315008 26 4082 47 6.65987e+06 494442 477104. 1650.88 7.67 0.231269 0.202859 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.25 0.11 0.10 -1 -1 0.25 0.0279417 0.0249452 179 26 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.19 vpr 65.12 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33860 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 26.9 MiB 0.26 1041 9447 2232 6542 673 65.1 MiB 0.09 0.00 3.5061 -122.514 -3.5061 3.5061 0.87 0.000549694 0.000498454 0.025819 0.0234628 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.98 0.0989469 0.0867638 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0251566 0.0224503 152 62 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.78 vpr 64.98 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33868 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 26.3 MiB 0.35 709 5599 957 4403 239 65.0 MiB 0.05 0.00 3.18838 -103.883 -3.18838 3.18838 0.87 0.000477781 0.000435994 0.0154937 0.0141806 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.61 0.0809808 0.0706156 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0229494 0.0202201 113 77 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.25 vpr 64.81 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33824 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 26.1 MiB 0.26 1062 14541 4862 7202 2477 64.8 MiB 0.13 0.00 3.4921 -118.867 -3.4921 3.4921 0.88 0.0005509 0.000500961 0.045533 0.0415386 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.97 0.111069 0.0982598 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0274361 0.0242981 148 59 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.29 vpr 65.07 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 33872 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 26.4 MiB 0.34 1075 7953 1851 5455 647 65.1 MiB 0.09 0.00 4.84238 -140.996 -4.84238 4.84238 0.89 0.000628029 0.00057532 0.0293773 0.0268181 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.00 0.105714 0.093081 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0250756 0.0223536 149 111 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.22 vpr 64.89 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34032 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 26.4 MiB 0.43 977 8868 2457 6032 379 64.9 MiB 0.09 0.00 4.78027 -132.334 -4.78027 4.78027 0.84 0.000547421 0.000502023 0.0299308 0.0274539 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.92 0.100743 0.0888803 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.27 0.05 0.11 -1 -1 0.27 0.0221218 0.0198382 143 86 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 7.34 vpr 64.83 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33684 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 26.7 MiB 0.25 1043 11922 3052 7896 974 64.8 MiB 0.11 0.00 3.40784 -114.93 -3.40784 3.40784 0.88 0.000544267 0.000493663 0.032138 0.0292317 26 2879 21 6.65987e+06 418374 477104. 1650.88 4.13 0.193794 0.168383 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.026466 0.0234298 146 58 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.03 vpr 64.63 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34280 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1091 9903 2241 6952 710 64.6 MiB 0.09 0.00 3.91784 -134.792 -3.91784 3.91784 0.83 0.000515177 0.00046869 0.0265674 0.0241841 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.06 0.103731 0.09101 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.30 0.07 0.13 -1 -1 0.30 0.0272071 0.0241557 154 42 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.59 vpr 65.56 MiB 0.02 7316 -1 -1 1 0.03 -1 -1 34104 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 27.3 MiB 0.27 1177 18648 4595 11838 2215 65.6 MiB 0.19 0.00 4.0593 -137.323 -4.0593 4.0593 0.89 0.000673718 0.000613976 0.0528425 0.0479916 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.21 0.141176 0.125105 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.28 0.08 0.13 -1 -1 0.28 0.0320533 0.0285318 184 91 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.94 vpr 64.25 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34008 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 25.9 MiB 0.11 685 11806 2914 7153 1739 64.2 MiB 0.09 0.00 3.55518 -111.493 -3.55518 3.55518 0.87 0.000411399 0.000372432 0.0311167 0.028422 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.95 0.0887394 0.078136 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0201669 0.0178548 116 24 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.60 vpr 64.71 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33836 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 26.4 MiB 0.29 976 9675 2155 7053 467 64.7 MiB 0.09 0.00 4.0281 -131.561 -4.0281 4.0281 0.84 0.000532724 0.000479313 0.0253619 0.0231454 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.43 0.0993091 0.0869833 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0266525 0.0235068 150 59 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.16 vpr 65.32 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 34148 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1040 11641 3109 7665 867 65.3 MiB 0.11 0.00 3.62624 -117.445 -3.62624 3.62624 0.88 0.000548808 0.0005008 0.031242 0.0284851 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.08 0.1039 0.0913284 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0234371 0.0208173 148 54 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.43 vpr 64.90 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33784 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 26.2 MiB 0.16 853 8685 1897 5601 1187 64.9 MiB 0.08 0.00 4.14936 -138.467 -4.14936 4.14936 0.88 0.000516109 0.000471296 0.0266083 0.0243332 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.30 0.103047 0.0908477 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0276086 0.0244338 150 -1 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.37 vpr 65.36 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33696 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1097 11798 3144 7589 1065 65.4 MiB 0.12 0.00 3.29555 -116.715 -3.29555 3.29555 0.89 0.000581428 0.000530014 0.0327213 0.0298252 32 2610 28 6.65987e+06 431052 554710. 1919.41 1.00 0.110635 0.0971188 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0311909 0.0274101 145 81 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.32 vpr 65.03 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34132 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 0.33 1042 7623 1446 5778 399 65.0 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.89 0.000577201 0.000525638 0.0215455 0.0196769 32 2739 23 6.65987e+06 443730 554710. 1919.41 1.02 0.0953511 0.0837949 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0248796 0.0221438 146 58 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.32 vpr 64.89 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33616 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1118 19136 5296 11671 2169 64.9 MiB 0.17 0.00 3.42984 -118.83 -3.42984 3.42984 0.89 0.000561272 0.00051049 0.0494733 0.0450036 32 2579 24 6.65987e+06 469086 554710. 1919.41 1.01 0.124025 0.109488 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.026554 0.0235623 155 61 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.98 vpr 64.65 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33876 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66200 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.4 MiB 0.06 1049 17883 5721 9099 3063 64.6 MiB 0.15 0.00 4.02327 -139.097 -4.02327 4.02327 0.84 0.000532207 0.000486264 0.0440044 0.0401855 32 2663 21 6.65987e+06 443730 554710. 1919.41 1.01 0.1129 0.100154 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.29 0.09 0.12 -1 -1 0.29 0.0275615 0.0244318 150 21 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.23 vpr 64.55 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34088 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.3 MiB 0.15 1032 17491 4961 10150 2380 64.5 MiB 0.15 0.00 3.95704 -138.916 -3.95704 3.95704 0.88 0.000560689 0.000510792 0.0445769 0.040584 32 2565 23 6.65987e+06 469086 554710. 1919.41 1.01 0.117694 0.103807 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0276876 0.024457 153 50 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.39 vpr 64.87 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 34152 -1 -1 34 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 26.5 MiB 0.37 1081 15859 4297 9232 2330 64.9 MiB 0.14 0.00 4.24338 -127.817 -4.24338 4.24338 0.90 0.000591524 0.000537706 0.0450794 0.0409058 28 2788 21 6.65987e+06 431052 500653. 1732.36 1.04 0.120302 0.105891 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.025554 0.0226747 145 110 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.24 vpr 65.15 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34088 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 26.9 MiB 0.24 1088 15822 4733 9518 1571 65.2 MiB 0.14 0.00 4.01118 -127.976 -4.01118 4.01118 0.88 0.000593366 0.000538651 0.0509087 0.0461673 32 2771 23 6.65987e+06 253560 554710. 1919.41 1.01 0.12284 0.108207 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.0282338 0.024838 149 86 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.85 vpr 64.55 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34112 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 26.3 MiB 0.05 798 8401 2034 5819 548 64.6 MiB 0.08 0.00 3.27158 -111.236 -3.27158 3.27158 0.87 0.000467339 0.000420479 0.0200521 0.0182835 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.92 0.0758046 0.0665708 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.021044 0.0185832 124 20 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.20 vpr 65.07 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33772 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.4 MiB 0.29 912 11830 3154 7792 884 65.1 MiB 0.10 0.00 3.41618 -118.934 -3.41618 3.41618 0.87 0.000492534 0.000448142 0.0359528 0.0328077 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.97 0.0996992 0.0878527 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0234526 0.0207256 121 91 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.86 vpr 65.27 MiB 0.02 7280 -1 -1 1 0.04 -1 -1 34060 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 27.0 MiB 0.15 1362 14988 3862 9734 1392 65.3 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.85 0.000662423 0.000600995 0.0403652 0.0364492 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.67 0.155569 0.135842 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.29 0.10 0.14 -1 -1 0.29 0.0322899 0.0286439 187 53 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.31 vpr 64.98 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34164 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 26.5 MiB 0.23 954 14567 4735 7432 2400 65.0 MiB 0.13 0.00 3.51422 -121.562 -3.51422 3.51422 0.88 0.000544227 0.000496895 0.0390583 0.0357182 32 2533 23 6.65987e+06 393018 554710. 1919.41 1.02 0.111283 0.0985793 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0263857 0.0235214 146 31 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.06 vpr 64.36 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33460 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 26.0 MiB 0.11 839 17066 5534 9253 2279 64.4 MiB 0.13 0.00 3.49012 -114.14 -3.49012 3.49012 0.90 0.000447576 0.000408656 0.0392472 0.0357745 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.95 0.0969037 0.0856026 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0223304 0.0196687 115 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.84 vpr 65.21 MiB 0.02 7620 -1 -1 1 0.04 -1 -1 34340 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 26.9 MiB 0.59 1333 18829 5161 11634 2034 65.2 MiB 0.18 0.00 4.64147 -157.361 -4.64147 4.64147 0.90 0.000658573 0.000595831 0.0534781 0.0484279 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.10 0.143297 0.126513 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0321997 0.028649 186 109 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.04 vpr 64.93 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 34168 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1044 16340 4500 10034 1806 64.9 MiB 0.13 0.00 4.15932 -143.209 -4.15932 4.15932 0.85 0.000518194 0.000473959 0.0394936 0.0360961 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.97 0.111669 0.0990902 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.020922 0.018715 151 31 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.13 vpr 64.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33904 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 26.3 MiB 0.05 722 13703 3609 8489 1605 65.0 MiB 0.11 0.00 3.4859 -117.474 -3.4859 3.4859 0.90 0.000443866 0.000404162 0.0303527 0.0276464 28 2223 23 6.65987e+06 393018 500653. 1732.36 1.12 0.0888959 0.0783375 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0209464 0.0185828 123 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.31 vpr 65.16 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34416 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 26.9 MiB 0.17 1337 12702 3419 8223 1060 65.2 MiB 0.13 0.00 4.90437 -166.477 -4.90437 4.90437 0.91 0.000615913 0.000560341 0.0349765 0.0318812 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.08 0.117903 0.104041 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0290076 0.0258243 188 26 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.07 vpr 64.36 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33884 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.13 852 11260 3935 5447 1878 64.4 MiB 0.08 0.00 3.4749 -119.679 -3.4749 3.4749 0.87 0.000440636 0.000400229 0.0293134 0.0266826 32 2124 48 6.65987e+06 202848 554710. 1919.41 1.08 0.0991691 0.086597 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0191235 0.0169423 121 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.00 vpr 64.21 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33784 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 25.8 MiB 0.24 707 8073 1842 5622 609 64.2 MiB 0.07 0.00 3.47387 -110.471 -3.47387 3.47387 0.87 0.000502564 0.000464645 0.019049 0.0173971 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.91 0.0737944 0.0647976 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0211571 0.0186949 113 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.21 vpr 65.07 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 26.6 MiB 0.32 964 15856 4550 8712 2594 65.1 MiB 0.14 0.00 3.50895 -109.722 -3.50895 3.50895 0.88 0.000539059 0.000490317 0.0426645 0.0388025 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.93 0.112193 0.0989375 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0231439 0.0205447 133 81 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.13 vpr 65.26 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34248 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 26.8 MiB 0.12 1002 7770 1874 5369 527 65.3 MiB 0.08 0.00 4.0593 -140.547 -4.0593 4.0593 0.88 0.000544709 0.000495546 0.0267487 0.0244975 32 2537 20 6.65987e+06 253560 554710. 1919.41 1.03 0.100533 0.0886473 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0291383 0.0259642 151 53 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.58 vpr 64.84 MiB 0.03 7364 -1 -1 1 0.03 -1 -1 34140 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 26.6 MiB 0.44 1039 19223 6359 10018 2846 64.8 MiB 0.16 0.00 4.06007 -140.169 -4.06007 4.06007 0.84 0.000564134 0.000511064 0.0513661 0.046578 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.13 0.128877 0.114215 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0269675 0.0239393 152 55 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.16 vpr 65.07 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34212 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 26.4 MiB 0.24 697 8614 1900 5774 940 65.1 MiB 0.08 0.00 3.41884 -114.043 -3.41884 3.41884 0.88 0.000500856 0.000455661 0.0226073 0.0206798 32 2062 22 6.65987e+06 380340 554710. 1919.41 0.97 0.0848176 0.0745444 22834 132086 -1 1629 21 1319 2115 153578 35885 2.86171 2.86171 -112.586 -2.86171 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0227654 0.0201646 120 55 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.03 vpr 64.62 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 34048 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 25.8 MiB 0.29 800 12464 4465 5577 2422 64.6 MiB 0.10 0.00 3.46898 -107.312 -3.46898 3.46898 0.85 0.000474946 0.000434008 0.0368083 0.0336643 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.92 0.0991858 0.0876672 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0236068 0.0208179 109 82 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.77 vpr 65.23 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34148 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 26.7 MiB 0.22 996 12623 3384 8308 931 65.2 MiB 0.11 0.00 3.33164 -109.888 -3.33164 3.33164 0.92 0.000557125 0.000511982 0.0338597 0.0307985 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.61 0.116574 0.102632 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.023941 0.0212128 137 52 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.07 vpr 65.01 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33748 -1 -1 31 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 26.3 MiB 0.10 995 16207 5283 8775 2149 65.0 MiB 0.12 0.00 4.24344 -123.397 -4.24344 4.24344 0.92 0.000469678 0.000428612 0.0360234 0.0328971 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.97 0.098542 0.0869853 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0236643 0.0210004 133 20 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.10 vpr 64.86 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33860 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 26.0 MiB 0.33 727 13152 3808 7208 2136 64.9 MiB 0.10 0.00 3.5343 -112.204 -3.5343 3.5343 0.87 0.000458337 0.000407942 0.0366513 0.0332829 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.92 0.0937449 0.082433 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0187399 0.0166137 114 58 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.08 vpr 65.00 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33600 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 26.4 MiB 0.30 910 8164 2057 5403 704 65.0 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.87 0.000487259 0.000444188 0.0257227 0.0234813 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.91 0.0872065 0.0765313 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0215648 0.0191327 113 88 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.47 vpr 64.94 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34020 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1101 12023 3143 7728 1152 64.9 MiB 0.11 0.00 4.17558 -139.576 -4.17558 4.17558 0.88 0.000513629 0.000469795 0.0299357 0.0273823 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.42 0.104167 0.0926762 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0232075 0.0206276 150 -1 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.39 vpr 65.13 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34068 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 26.8 MiB 0.25 1037 13598 4125 8601 872 65.1 MiB 0.13 0.00 4.1263 -141.609 -4.1263 4.1263 0.88 0.000517628 0.000474012 0.0372896 0.03403 28 2566 22 6.65987e+06 431052 500653. 1732.36 3.11 0.202192 0.176164 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0274398 0.0243523 153 57 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.68 vpr 64.91 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33932 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 26.6 MiB 0.30 1033 10448 2380 7653 415 64.9 MiB 0.09 0.00 4.16458 -142.258 -4.16458 4.16458 0.82 0.000486106 0.000444324 0.0269813 0.0245345 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.56 0.108535 0.0952544 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0242863 0.0215637 151 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.03 vpr 65.29 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34064 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66856 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 26.6 MiB 0.24 982 9031 1878 6401 752 65.3 MiB 0.09 0.00 3.86706 -126.941 -3.86706 3.86706 0.84 0.000535357 0.000487599 0.0238339 0.0217296 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.97 0.0939187 0.0823576 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.27 0.06 0.11 -1 -1 0.27 0.0276458 0.0245605 148 62 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 6.25 vpr 64.31 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33720 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 26.0 MiB 0.20 656 10400 2388 7389 623 64.3 MiB 0.09 0.00 3.50927 -110.79 -3.50927 3.50927 0.87 0.000444248 0.00040537 0.0287471 0.0262948 28 2173 45 6.65987e+06 228204 500653. 1732.36 3.20 0.156059 0.135587 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0192551 0.0170952 112 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.26 vpr 65.12 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34092 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 26.4 MiB 0.26 986 11613 3437 7269 907 65.1 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.88 0.000541575 0.000493167 0.0373483 0.0341301 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.98 0.103814 0.0915751 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0250776 0.0221838 145 58 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.41 vpr 65.03 MiB 0.02 7512 -1 -1 1 0.04 -1 -1 33904 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 26.9 MiB 0.29 1052 13117 2855 8842 1420 65.0 MiB 0.11 0.00 3.91498 -132.986 -3.91498 3.91498 0.89 0.000624337 0.000569237 0.0359759 0.0327173 32 2892 25 6.65987e+06 494442 554710. 1919.41 1.06 0.117677 0.103377 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0319297 0.0280472 154 106 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 6.25 vpr 65.15 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34064 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 26.9 MiB 0.21 1048 9679 2436 6757 486 65.2 MiB 0.10 0.00 3.91106 -131.073 -3.91106 3.91106 0.89 0.000579007 0.000527316 0.0294248 0.0268556 28 2624 22 6.65987e+06 393018 500653. 1732.36 3.11 0.186778 0.162402 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0272821 0.024228 146 79 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.08 vpr 65.29 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33820 -1 -1 30 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 26.7 MiB 0.31 967 14375 3613 8859 1903 65.3 MiB 0.12 0.00 3.7785 -114.4 -3.7785 3.7785 0.86 0.000486654 0.000442321 0.0390296 0.035462 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.90 0.105942 0.0930645 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0225573 0.0200517 136 83 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.28 vpr 64.86 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34064 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 26.6 MiB 0.23 1103 13477 4009 7448 2020 64.9 MiB 0.13 0.00 4.11944 -143.283 -4.11944 4.11944 0.87 0.000539519 0.000491501 0.0427129 0.0389806 32 2896 23 6.65987e+06 266238 554710. 1919.41 1.05 0.115519 0.101951 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0263393 0.0233643 154 58 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.14 vpr 64.84 MiB 0.02 7316 -1 -1 1 0.03 -1 -1 33876 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 26.4 MiB 0.21 870 10463 2796 6767 900 64.8 MiB 0.10 0.00 3.39684 -102.663 -3.39684 3.39684 0.88 0.000535484 0.000488055 0.0285244 0.0260325 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.97 0.0968689 0.0852101 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0246689 0.0219123 134 81 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.84 vpr 64.57 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33952 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 26.2 MiB 0.09 838 13496 3888 8529 1079 64.6 MiB 0.10 0.00 3.5031 -123.339 -3.5031 3.5031 0.84 0.000427918 0.000391274 0.0361308 0.03313 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.94 0.0909631 0.0806752 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0207549 0.0184104 116 -1 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.36 vpr 64.84 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 26.7 MiB 0.34 1015 16525 5345 8784 2396 64.8 MiB 0.15 0.00 4.18856 -142.192 -4.18856 4.18856 0.87 0.000568547 0.000519358 0.0456641 0.041504 32 2598 23 6.65987e+06 418374 554710. 1919.41 1.03 0.119681 0.105605 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0281937 0.0249127 150 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.33 vpr 64.91 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33956 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1026 16081 4881 8736 2464 64.9 MiB 0.15 0.00 4.23393 -146.239 -4.23393 4.23393 0.87 0.000548324 0.000502959 0.0511011 0.0467036 32 2633 23 6.65987e+06 266238 554710. 1919.41 1.02 0.124124 0.109966 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0275327 0.0243505 157 62 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.82 vpr 64.80 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33704 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 26.0 MiB 0.23 688 16683 5557 7719 3407 64.8 MiB 0.11 0.00 3.44878 -105.048 -3.44878 3.44878 0.89 0.000464253 0.000422386 0.0383314 0.0348742 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.66 0.110828 0.0977998 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0221738 0.0195566 111 47 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.01 vpr 64.35 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33968 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65892 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 25.8 MiB 0.11 746 13556 4162 7429 1965 64.3 MiB 0.11 0.00 3.4529 -114.38 -3.4529 3.4529 0.89 0.000431257 0.000397029 0.0356867 0.0326333 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.95 0.0911015 0.0805612 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0187805 0.0167382 118 -1 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.12 vpr 64.99 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33728 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 26.3 MiB 0.30 900 5133 854 4121 158 65.0 MiB 0.05 0.00 4.0123 -128.007 -4.0123 4.0123 0.87 0.000570665 0.000518203 0.0144125 0.0131625 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.96 0.0800249 0.0697902 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0234856 0.0207749 138 56 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.30 vpr 64.84 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33972 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 26.6 MiB 0.26 879 9892 2434 7009 449 64.8 MiB 0.10 0.00 4.11224 -123.302 -4.11224 4.11224 0.89 0.000533259 0.000477477 0.0286804 0.0261274 28 2733 50 6.65987e+06 380340 500653. 1732.36 2.06 0.132099 0.115625 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0269887 0.0238486 134 81 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.54 vpr 65.06 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33964 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 26.9 MiB 0.06 1224 16515 4921 9863 1731 65.1 MiB 0.16 0.00 4.82096 -159.28 -4.82096 4.82096 0.89 0.000598014 0.000545302 0.0453137 0.0414304 34 3026 21 6.65987e+06 443730 585099. 2024.56 3.39 0.207111 0.1811 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.29 0.08 0.13 -1 -1 0.29 0.0281019 0.0250348 177 -1 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.22 vpr 65.27 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34212 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66832 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1012 13726 3606 8436 1684 65.3 MiB 0.12 0.00 3.638 -113.448 -3.638 3.638 0.87 0.000509264 0.000460572 0.0363071 0.0331041 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.95 0.101763 0.0895315 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0235329 0.0208375 136 47 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.96 vpr 64.58 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 34064 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 26.1 MiB 0.11 768 12754 4322 6521 1911 64.6 MiB 0.09 0.00 3.3979 -99.6122 -3.3979 3.3979 0.89 0.000398853 0.000362805 0.0329061 0.0300883 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.93 0.0849829 0.0752088 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.020927 0.0184713 107 26 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.24 vpr 65.21 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34052 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 26.9 MiB 0.20 1366 15232 4128 9656 1448 65.2 MiB 0.15 0.00 4.15924 -136.806 -4.15924 4.15924 0.84 0.000676207 0.000614693 0.0419893 0.0382216 32 3584 25 6.65987e+06 507120 554710. 1919.41 1.07 0.13295 0.117637 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.28 0.11 0.12 -1 -1 0.28 0.0352007 0.0313298 184 85 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.23 vpr 65.38 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34136 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 26.7 MiB 0.34 999 12894 3350 8149 1395 65.4 MiB 0.11 0.00 4.3007 -134.868 -4.3007 4.3007 0.85 0.000482011 0.00043886 0.0417113 0.0379988 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.99 0.116086 0.102327 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0287059 0.0253708 144 105 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.11 vpr 64.62 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33796 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 25.8 MiB 0.32 739 9540 2469 6056 1015 64.6 MiB 0.08 0.00 3.43298 -108.977 -3.43298 3.43298 0.88 0.000479176 0.000436226 0.0293261 0.0268039 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.92 0.0925266 0.0813549 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0243302 0.0213915 109 86 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.06 vpr 64.82 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33988 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 26.3 MiB 0.11 1126 15645 4217 9584 1844 64.8 MiB 0.14 0.00 4.2677 -137.429 -4.2677 4.2677 0.88 0.00051992 0.000463862 0.0400512 0.0364346 28 2607 21 6.65987e+06 405696 500653. 1732.36 1.00 0.108445 0.0958258 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0229474 0.0204705 146 31 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.12 vpr 65.26 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34256 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 27.1 MiB 0.15 1167 13551 3218 9177 1156 65.3 MiB 0.13 0.00 4.22766 -133.836 -4.22766 4.22766 0.87 0.000554449 0.000502252 0.0367963 0.0333767 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.99 0.112951 0.0992153 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0275697 0.0245218 171 50 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.66 vpr 65.16 MiB 0.02 7460 -1 -1 1 0.03 -1 -1 33960 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 26.6 MiB 0.12 1070 11111 2802 7426 883 65.2 MiB 0.10 0.00 3.62941 -110.797 -3.62941 3.62941 0.90 0.000521269 0.000471369 0.0295748 0.0269917 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.58 0.124171 0.109125 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0233806 0.0207405 134 50 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.26 vpr 64.75 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33920 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 26.4 MiB 0.25 1074 12606 3053 8336 1217 64.7 MiB 0.12 0.00 4.0783 -140.694 -4.0783 4.0783 0.89 0.00056913 0.000517819 0.0313786 0.0285518 30 2464 23 6.65987e+06 532476 526063. 1820.29 1.04 0.106612 0.0938609 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0279665 0.024707 157 61 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.24 vpr 65.03 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34124 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 26.8 MiB 0.25 985 6766 1235 5165 366 65.0 MiB 0.07 0.00 3.41884 -116.445 -3.41884 3.41884 0.89 0.00058348 0.00051771 0.0192749 0.0176027 28 2716 20 6.65987e+06 481764 500653. 1732.36 1.03 0.0925733 0.0811221 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0301401 0.0266402 155 61 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.92 vpr 64.61 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33948 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 26.1 MiB 0.14 502 12791 3342 7797 1652 64.6 MiB 0.08 0.00 3.7595 -104.343 -3.7595 3.7595 0.87 0.000418701 0.000379331 0.0353557 0.0322501 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.91 0.0877933 0.0775079 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0195138 0.0172563 93 28 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.23 vpr 64.93 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34164 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 26.1 MiB 0.32 872 14431 4553 8297 1581 64.9 MiB 0.11 0.00 3.69338 -109.525 -3.69338 3.69338 0.89 0.000466859 0.000424262 0.0417834 0.0382021 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.95 0.10132 0.0897006 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0219085 0.0194427 111 79 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.30 vpr 64.88 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33944 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 26.5 MiB 0.14 973 15876 4279 9893 1704 64.9 MiB 0.15 0.00 4.55701 -136.44 -4.55701 4.55701 0.88 0.0005358 0.000484231 0.0384261 0.0350489 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.14 0.115327 0.101665 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0257638 0.0228611 150 29 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.64 vpr 64.52 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33960 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.9 MiB 0.29 621 11063 2736 7707 620 64.5 MiB 0.09 0.00 3.58224 -95.8028 -3.58224 3.58224 0.90 0.000440358 0.00040166 0.0252749 0.0230014 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.47 0.093494 0.0819749 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.24 0.05 0.11 -1 -1 0.24 0.0182458 0.0161422 108 48 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 6.11 vpr 65.03 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33912 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 26.2 MiB 0.20 823 7992 1920 5681 391 65.0 MiB 0.08 0.00 3.5141 -118.56 -3.5141 3.5141 0.85 0.000458156 0.000418909 0.0238479 0.0218877 34 2038 19 6.65987e+06 202848 585099. 2024.56 3.09 0.142892 0.124124 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.30 0.06 0.13 -1 -1 0.30 0.0212169 0.0188942 119 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.22 vpr 65.26 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33676 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 26.7 MiB 0.24 1001 11955 3102 7859 994 65.3 MiB 0.11 0.00 3.4951 -117.77 -3.4951 3.4951 0.89 0.000542204 0.000495358 0.0316611 0.0288193 26 2363 24 6.65987e+06 456408 477104. 1650.88 1.02 0.104916 0.0923445 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0252374 0.0224396 142 60 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.19 vpr 64.98 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33688 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 26.2 MiB 0.32 876 12923 4161 7145 1617 65.0 MiB 0.10 0.00 3.11304 -101.32 -3.11304 3.11304 0.88 0.000445552 0.000405285 0.0367082 0.033566 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.93 0.0909034 0.0805513 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0191822 0.0170602 105 49 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.21 vpr 64.89 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33684 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 26.2 MiB 0.23 929 17616 5738 7949 3929 64.9 MiB 0.11 0.00 3.3979 -111.1 -3.3979 3.3979 0.87 0.000487398 0.000440421 0.0428669 0.0388773 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.02 0.156276 0.136924 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.31 0.07 0.13 -1 -1 0.31 0.0245836 0.0217876 136 56 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.68 vpr 65.01 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34100 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 26.7 MiB 0.73 965 17427 4981 9867 2579 65.0 MiB 0.15 0.00 3.7445 -120.758 -3.7445 3.7445 0.88 0.000556009 0.000503813 0.0462224 0.0420219 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.98 0.117873 0.103975 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0260179 0.0231191 148 88 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.10 vpr 64.71 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 34016 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 26.1 MiB 0.16 861 11652 3522 6006 2124 64.7 MiB 0.10 0.00 2.81844 -100.349 -2.81844 2.81844 0.88 0.000472275 0.000429846 0.0335612 0.0306844 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.98 0.099114 0.0874367 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0229319 0.0203406 115 54 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.47 vpr 65.09 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33724 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 26.4 MiB 0.30 667 7380 1595 4913 872 65.1 MiB 0.06 0.00 3.38184 -112.707 -3.38184 3.38184 0.87 0.000476022 0.000433484 0.0218597 0.0199986 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.29 0.100723 0.0879562 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0225106 0.0199373 121 60 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.16 vpr 64.81 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34376 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 26.5 MiB 0.14 1042 12164 2979 8000 1185 64.8 MiB 0.11 0.00 4.02524 -139.262 -4.02524 4.02524 0.89 0.000529013 0.000480814 0.03242 0.0294746 28 2653 23 6.65987e+06 456408 500653. 1732.36 1.05 0.106951 0.0941624 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0249988 0.0221751 154 49 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.22 vpr 65.07 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34108 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 26.2 MiB 0.24 968 17313 5602 9212 2499 65.1 MiB 0.14 0.00 3.57304 -105.57 -3.57304 3.57304 0.89 0.000522073 0.000477524 0.0459222 0.0419222 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.95 0.110055 0.0975661 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0255367 0.0226335 133 54 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.39 vpr 64.95 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 34132 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 26.5 MiB 0.35 1004 11616 2968 7911 737 64.9 MiB 0.12 0.00 3.97241 -135.454 -3.97241 3.97241 0.88 0.00060957 0.000556209 0.0343117 0.0311435 32 2756 22 6.65987e+06 469086 554710. 1919.41 1.02 0.111815 0.0981185 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0297886 0.0262524 156 117 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.76 vpr 64.36 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33952 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 25.9 MiB 0.11 715 5825 1215 4401 209 64.4 MiB 0.05 0.00 2.9397 -97.4988 -2.9397 2.9397 0.86 0.000397299 0.000359682 0.0149849 0.0136903 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.88 0.0627888 0.054975 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.01798 0.0159218 105 -1 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.19 vpr 65.20 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34064 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 26.6 MiB 0.18 948 20077 6167 11074 2836 65.2 MiB 0.17 0.00 4.10497 -133.778 -4.10497 4.10497 0.88 0.000564107 0.00051387 0.0546856 0.0497235 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.98 0.128905 0.114176 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0258322 0.0229918 142 89 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 6.25 vpr 64.64 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 26.0 MiB 0.21 805 9196 3450 4876 870 64.6 MiB 0.08 0.00 3.54047 -120.422 -3.54047 3.54047 0.84 0.000501502 0.000457225 0.0297691 0.0272754 30 2070 21 6.65987e+06 202848 526063. 1820.29 3.24 0.183366 0.160277 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0216193 0.0192711 115 93 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.29 vpr 64.92 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33968 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 26.6 MiB 0.27 1002 18111 5520 9663 2928 64.9 MiB 0.15 0.00 3.45184 -118.995 -3.45184 3.45184 0.88 0.00055781 0.000508287 0.0475934 0.043435 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.99 0.120064 0.106289 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0278628 0.0245935 149 59 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.37 vpr 65.32 MiB 0.02 7420 -1 -1 1 0.04 -1 -1 34476 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 27.0 MiB 0.37 1201 15034 3694 9653 1687 65.3 MiB 0.14 0.00 4.6905 -158.567 -4.6905 4.6905 0.88 0.000630904 0.000572145 0.0409455 0.037272 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.97 0.155913 0.137222 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.25 0.12 0.11 -1 -1 0.25 0.0371949 0.0327791 186 81 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.18 vpr 63.88 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33548 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65412 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.3 MiB 0.21 532 10509 2640 7460 409 63.9 MiB 0.07 0.00 2.61752 -80.0454 -2.61752 2.61752 0.90 0.000372975 0.000340107 0.0257472 0.0234591 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.14 0.0772449 0.0679482 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.25 0.04 0.11 -1 -1 0.25 0.016381 0.0144022 83 51 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.85 vpr 64.38 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33968 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 25.8 MiB 0.10 758 10536 3415 5493 1628 64.4 MiB 0.08 0.00 3.52904 -110.224 -3.52904 3.52904 0.87 0.000447944 0.000404863 0.0281568 0.0256045 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.91 0.0805729 0.070703 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0184878 0.0163813 96 29 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.06 vpr 64.99 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 33448 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 26.4 MiB 0.11 856 9872 2316 7018 538 65.0 MiB 0.09 0.00 3.4859 -122.574 -3.4859 3.4859 0.88 0.000469673 0.000429067 0.0278593 0.0254925 32 2373 21 6.65987e+06 228204 554710. 1919.41 1.00 0.0881872 0.0778346 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0219702 0.0194578 126 31 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.59 vpr 64.11 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33804 -1 -1 34 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65648 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 25.6 MiB 0.06 696 13351 3608 8032 1711 64.1 MiB 0.09 0.00 3.32684 -88.9535 -3.32684 3.32684 0.84 0.00038623 0.000353682 0.0261772 0.0239268 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.82 0.0719137 0.0634419 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.24 0.05 0.10 -1 -1 0.24 0.0167614 0.0147693 103 19 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.41 vpr 65.32 MiB 0.02 7472 -1 -1 1 0.03 -1 -1 33952 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 26.7 MiB 0.27 877 14541 4608 7775 2158 65.3 MiB 0.14 0.00 4.02035 -125.217 -4.02035 4.02035 0.89 0.000591617 0.000533456 0.0498703 0.0454795 32 2783 25 6.65987e+06 253560 554710. 1919.41 1.08 0.130552 0.115359 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0293083 0.0259893 147 84 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.28 vpr 64.92 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33924 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 26.6 MiB 0.21 938 18660 5414 10450 2796 64.9 MiB 0.16 0.00 3.4903 -116.326 -3.4903 3.4903 0.88 0.000574684 0.000525267 0.048975 0.0446382 32 2461 21 6.65987e+06 469086 554710. 1919.41 1.00 0.121517 0.107501 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0281204 0.0249088 146 88 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.30 vpr 66.04 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34312 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 27.4 MiB 0.97 758 13949 4789 6835 2325 66.0 MiB 0.10 0.00 3.74419 -135.496 -3.74419 3.74419 0.91 0.000584541 0.000534914 0.0445963 0.0406494 58 1960 26 6.95648e+06 361892 997811. 3452.63 5.92 0.235194 0.204386 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.47 0.07 0.26 -1 -1 0.47 0.0269961 0.0239628 84 80 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 21.12 vpr 65.87 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33968 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67448 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 27.2 MiB 2.14 807 12716 4975 6082 1659 65.9 MiB 0.10 0.00 3.9478 -130.518 -3.9478 3.9478 0.92 0.000559529 0.000508702 0.046635 0.0424514 48 2407 29 6.95648e+06 202660 865456. 2994.66 15.73 0.348173 0.304141 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.38 0.10 0.19 -1 -1 0.38 0.0286205 0.0251841 76 78 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.19 vpr 65.82 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34052 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 27.2 MiB 0.78 1022 7103 1835 4569 699 65.8 MiB 0.06 0.00 3.60914 -132.635 -3.60914 3.60914 0.90 0.000518919 0.000473106 0.0233492 0.021314 44 2666 29 6.95648e+06 275038 787024. 2723.27 4.26 0.201086 0.173779 27778 195446 -1 2250 23 1533 2295 200856 39573 3.61236 3.61236 -138.488 -3.61236 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.026381 0.0232987 77 50 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 8.64 vpr 65.63 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33720 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 27.3 MiB 0.42 752 10672 3799 5216 1657 65.6 MiB 0.08 0.00 4.001 -128.21 -4.001 4.001 0.89 0.000477968 0.0004357 0.0346497 0.0316989 44 2696 27 6.95648e+06 231611 787024. 2723.27 5.04 0.221224 0.192227 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0271355 0.0240344 75 25 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 21.46 vpr 65.56 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33768 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 27.1 MiB 0.61 716 9857 3295 4764 1798 65.6 MiB 0.08 0.00 3.66789 -133.791 -3.66789 3.66789 0.89 0.000544497 0.000495476 0.0354193 0.0322851 56 2163 40 6.95648e+06 188184 973134. 3367.25 17.57 0.295717 0.256969 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.44 0.09 0.25 -1 -1 0.44 0.0278353 0.0247025 78 31 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.03 vpr 65.75 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33872 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 27.0 MiB 0.38 727 15003 5272 7155 2576 65.8 MiB 0.09 0.00 3.0985 -114.166 -3.0985 3.0985 0.89 0.000509985 0.000458609 0.0399456 0.0361337 50 2136 19 6.95648e+06 419795 902133. 3121.57 5.46 0.247252 0.213744 28642 213929 -1 1754 22 1586 2186 206551 45703 3.30627 3.30627 -120.736 -3.30627 0 0 1.08113e+06 3740.92 0.41 0.08 0.19 -1 -1 0.41 0.0266962 0.0235986 89 61 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.55 vpr 65.00 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33892 -1 -1 14 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 26.6 MiB 4.09 451 8433 2993 4087 1353 65.0 MiB 0.06 0.00 3.26916 -93.4177 -3.26916 3.26916 0.86 0.000411466 0.00037661 0.0241101 0.022092 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.57 0.131066 0.114414 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.34 0.05 0.16 -1 -1 0.34 0.0183523 0.0162807 54 26 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.06 vpr 65.24 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33948 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 26.9 MiB 0.59 722 11088 4563 6076 449 65.2 MiB 0.08 0.00 3.0394 -105.493 -3.0394 3.0394 0.90 0.000464625 0.000424445 0.0330046 0.030192 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.33 0.13135 0.114916 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0249209 0.0220339 77 -1 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 6.86 vpr 65.50 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33732 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67072 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 26.8 MiB 1.65 523 9994 2759 5612 1623 65.5 MiB 0.07 0.00 3.10275 -98.727 -3.10275 3.10275 0.87 0.000386454 0.000353364 0.0298542 0.0272654 44 1758 37 6.95648e+06 159232 787024. 2723.27 2.16 0.120912 0.105389 27778 195446 -1 1221 28 1030 1579 151807 48946 2.99482 2.99482 -105.632 -2.99482 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0260563 0.0228578 57 81 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.95 vpr 65.43 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33932 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 27.0 MiB 0.85 638 10614 4216 4843 1555 65.4 MiB 0.08 0.00 2.95005 -114.898 -2.95005 2.95005 0.92 0.000456733 0.000407518 0.0333673 0.0304048 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.99 0.158507 0.139408 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0223829 0.0198667 62 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.99 vpr 65.43 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33620 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 1.81 651 11079 4648 6085 346 65.4 MiB 0.08 0.00 3.1095 -111.937 -3.1095 3.1095 0.92 0.000457351 0.000415834 0.0358169 0.0326726 38 1744 25 6.95648e+06 173708 678818. 2348.85 2.10 0.138813 0.121457 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0214555 0.018994 60 58 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 13.93 vpr 65.71 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33664 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 27.0 MiB 0.84 540 10476 4331 5741 404 65.7 MiB 0.07 0.00 2.9793 -106.716 -2.9793 2.9793 0.90 0.00046513 0.000417548 0.0335598 0.0306913 50 1707 47 6.95648e+06 173708 902133. 3121.57 9.92 0.276265 0.240381 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.41 0.06 0.21 -1 -1 0.41 0.0211934 0.0188764 60 57 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.40 vpr 65.77 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 34000 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 27.1 MiB 1.22 751 11803 3277 6504 2022 65.8 MiB 0.09 0.00 3.1024 -116.565 -3.1024 3.1024 0.90 0.000493826 0.000449303 0.035793 0.0325782 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.05 0.152923 0.13386 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.0242422 0.0215167 79 55 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 18.52 vpr 65.95 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33824 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67532 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 27.1 MiB 0.89 832 16371 6652 7990 1729 65.9 MiB 0.12 0.00 3.72719 -138.885 -3.72719 3.72719 0.91 0.000576585 0.000524705 0.0481929 0.0438677 40 2769 48 6.95648e+06 376368 706193. 2443.58 14.43 0.324626 0.281092 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0258148 0.0229275 87 60 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 9.19 vpr 65.12 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 34028 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 26.7 MiB 1.22 465 11234 4544 5569 1121 65.1 MiB 0.07 0.00 3.14676 -95.8879 -3.14676 3.14676 0.90 0.000411217 0.00037327 0.0317537 0.0290405 46 1613 28 6.95648e+06 188184 828058. 2865.25 4.86 0.180072 0.155365 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.37 0.06 0.20 -1 -1 0.37 0.0233562 0.0205224 58 21 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.27 vpr 65.74 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33844 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 27.2 MiB 1.72 807 11813 5009 6533 271 65.7 MiB 0.10 0.00 3.1505 -120.688 -3.1505 3.1505 0.89 0.000548574 0.000499238 0.0433984 0.0396765 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.36 0.163744 0.14349 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0298045 0.0263129 77 60 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.17 vpr 65.91 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33904 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67496 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 27.2 MiB 1.38 707 11064 3419 5711 1934 65.9 MiB 0.08 0.00 3.0804 -113.837 -3.0804 3.0804 0.92 0.000560872 0.000507975 0.0360678 0.0328785 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.62 0.169464 0.148198 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0240038 0.0212719 78 54 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.82 vpr 65.77 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33400 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 27.0 MiB 0.72 574 10698 2981 5511 2206 65.8 MiB 0.06 0.00 2.43656 -93.1005 -2.43656 2.43656 0.84 0.000491165 0.000445172 0.0283118 0.0258348 48 1509 24 6.95648e+06 289514 865456. 2994.66 5.07 0.217842 0.187044 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.41 0.06 0.19 -1 -1 0.41 0.0228825 0.0202074 67 62 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.26 vpr 64.55 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33612 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 26.2 MiB 0.39 450 11098 4789 5936 373 64.5 MiB 0.06 0.00 2.21746 -80.6728 -2.21746 2.21746 0.90 0.000365294 0.000332694 0.0272708 0.024913 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.90 0.110662 0.096407 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0171236 0.0146784 45 29 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.79 vpr 65.43 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34208 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 26.6 MiB 1.22 525 9374 3845 5090 439 65.4 MiB 0.07 0.00 3.8254 -127.041 -3.8254 3.8254 0.90 0.000474589 0.000432731 0.0311776 0.0283978 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.45 0.168862 0.148138 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0263017 0.0231675 61 55 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.28 vpr 65.98 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33728 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67564 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 27.3 MiB 0.46 664 13663 4054 7770 1839 66.0 MiB 0.10 0.00 3.70954 -128.174 -3.70954 3.70954 0.89 0.000509588 0.00046439 0.0411696 0.037572 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.64 0.16639 0.145478 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0250721 0.0222986 81 31 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 9.49 vpr 66.22 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34216 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67808 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 27.5 MiB 1.10 791 14779 5223 7361 2195 66.2 MiB 0.11 0.00 3.66119 -126.81 -3.66119 3.66119 0.88 0.00052411 0.000474755 0.043879 0.0397075 48 2442 23 6.95648e+06 390843 865456. 2994.66 5.18 0.232958 0.20229 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.41 0.09 0.19 -1 -1 0.41 0.0307956 0.0272374 85 108 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.13 vpr 64.66 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 33968 -1 -1 13 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 26.4 MiB 1.07 348 7809 2770 3912 1127 64.7 MiB 0.04 0.00 2.19726 -66.8557 -2.19726 2.19726 0.90 0.000305175 0.000278749 0.0180493 0.0165368 46 937 48 6.95648e+06 188184 828058. 2865.25 2.07 0.0972481 0.0841855 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.38 0.03 0.20 -1 -1 0.38 0.0123581 0.010992 44 21 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.46 vpr 65.54 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33636 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 27.2 MiB 0.96 737 10316 4241 5568 507 65.5 MiB 0.08 0.00 4.02534 -135.509 -4.02534 4.02534 0.91 0.000501366 0.00044425 0.0345184 0.0315378 48 2419 30 6.95648e+06 173708 865456. 2994.66 2.97 0.151051 0.133163 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.42 0.38 0.20 -1 -1 0.42 0.049863 0.0438618 74 -1 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.02 vpr 64.87 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 34008 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.6 MiB 0.33 731 9906 3689 5081 1136 64.9 MiB 0.06 0.00 2.15326 -87.6492 -2.15326 2.15326 0.91 0.000329727 0.000300149 0.0239509 0.0218814 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.75 0.099981 0.0872108 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0130759 0.0117239 44 -1 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 18.56 vpr 65.49 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 34120 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 27.0 MiB 0.55 827 16371 5667 8716 1988 65.5 MiB 0.12 0.00 3.67409 -135.23 -3.67409 3.67409 0.91 0.000521718 0.00047175 0.0459531 0.0417053 40 2687 28 6.95648e+06 376368 706193. 2443.58 14.75 0.32019 0.280959 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.34 0.17 0.16 -1 -1 0.34 0.0340929 0.0301942 85 21 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 15.26 vpr 65.89 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 34124 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67468 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 27.3 MiB 0.29 985 13754 4254 7657 1843 65.9 MiB 0.10 0.00 3.0955 -119.852 -3.0955 3.0955 0.90 0.000509548 0.000463498 0.0362031 0.033036 36 2880 44 6.95648e+06 405319 648988. 2245.63 11.86 0.254116 0.220685 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0224759 0.0200037 87 -1 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.93 vpr 66.02 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33956 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67604 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 27.2 MiB 0.39 789 18308 6099 10070 2139 66.0 MiB 0.14 0.00 3.69663 -134.61 -3.69663 3.69663 0.90 0.000583106 0.000531613 0.0531056 0.0482124 46 2780 28 6.95648e+06 405319 828058. 2865.25 5.26 0.24746 0.21522 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.027531 0.0244188 87 54 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.39 vpr 65.34 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33984 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 26.9 MiB 0.95 541 9374 3087 4731 1556 65.3 MiB 0.07 0.00 2.8982 -102.358 -2.8982 2.8982 0.89 0.000424891 0.000387469 0.028255 0.0258197 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.42 0.136821 0.119092 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0221318 0.0195456 57 31 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.71 vpr 65.20 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33824 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 0.62 571 8444 3466 4635 343 65.2 MiB 0.06 0.00 3.1175 -112.058 -3.1175 3.1175 0.91 0.000432041 0.000394621 0.0257814 0.0236112 40 1947 30 6.95648e+06 173708 706193. 2443.58 2.03 0.11968 0.104135 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0213903 0.0189009 60 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.29 vpr 65.18 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33900 -1 -1 13 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 26.7 MiB 0.67 505 10257 3681 4972 1604 65.2 MiB 0.07 0.00 3.0435 -97.9378 -3.0435 3.0435 0.91 0.000419674 0.000384423 0.0306916 0.0280794 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.50 0.131847 0.115717 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0184678 0.0164154 61 27 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.97 vpr 65.35 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33884 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.9 MiB 0.22 703 9374 3895 5319 160 65.4 MiB 0.07 0.00 2.93285 -116.414 -2.93285 2.93285 0.92 0.000428766 0.000388528 0.0287803 0.0263198 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.58 0.138959 0.122236 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.023199 0.0205384 64 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 15.11 vpr 65.38 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 34028 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 26.8 MiB 0.24 623 13443 5605 7395 443 65.4 MiB 0.08 0.00 3.0955 -111.973 -3.0955 3.0955 0.90 0.00040441 0.000368209 0.032688 0.0298679 44 2077 38 6.95648e+06 303989 787024. 2723.27 11.78 0.246961 0.213535 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.36 0.06 0.17 -1 -1 0.36 0.020622 0.018166 68 26 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.35 vpr 65.55 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33928 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 27.0 MiB 0.83 508 10219 3550 4648 2021 65.6 MiB 0.07 0.00 2.43392 -85.0275 -2.43392 2.43392 0.91 0.000438909 0.000399514 0.0288048 0.0263274 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.39 0.134937 0.117545 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0216472 0.0191201 64 55 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.48 vpr 66.20 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34040 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67784 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 27.6 MiB 0.73 944 14375 4687 7097 2591 66.2 MiB 0.11 0.00 3.95585 -140.771 -3.95585 3.95585 0.92 0.000613013 0.000557473 0.0440354 0.0401368 54 2725 29 6.95648e+06 405319 949917. 3286.91 5.39 0.27176 0.237311 29506 232905 -1 2082 21 1977 3135 234047 51401 4.37502 4.37502 -152.214 -4.37502 0 0 1.17392e+06 4061.99 0.45 0.09 0.23 -1 -1 0.45 0.0293175 0.0260599 100 26 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.17 vpr 65.91 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34048 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67492 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 27.2 MiB 0.89 786 12739 3070 7853 1816 65.9 MiB 0.10 0.00 3.0804 -115.407 -3.0804 3.0804 0.90 0.000569016 0.000519496 0.0372647 0.0340382 40 2423 28 6.95648e+06 390843 706193. 2443.58 3.08 0.16557 0.144726 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.35 0.13 0.17 -1 -1 0.35 0.0330829 0.0291177 87 62 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.83 vpr 65.86 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34044 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 27.1 MiB 1.06 525 12362 5188 6715 459 65.9 MiB 0.09 0.00 3.26916 -109.722 -3.26916 3.26916 0.92 0.000487592 0.000443293 0.0392192 0.0358099 50 1653 27 6.95648e+06 217135 902133. 3121.57 4.52 0.197495 0.171185 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.45 0.05 0.21 -1 -1 0.45 0.019249 0.0172344 62 77 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.60 vpr 65.51 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34024 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 26.8 MiB 0.63 965 12791 5492 6957 342 65.5 MiB 0.10 0.00 3.0625 -116.847 -3.0625 3.0625 0.92 0.000544348 0.000495265 0.04559 0.0415886 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.79 0.178933 0.157708 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.025061 0.0223125 79 59 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.60 vpr 66.01 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 34120 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 27.3 MiB 1.95 778 10998 4559 6059 380 66.0 MiB 0.09 0.00 4.63397 -149.774 -4.63397 4.63397 0.90 0.000610539 0.000551757 0.0413361 0.0375655 44 2926 36 6.95648e+06 202660 787024. 2723.27 3.47 0.192746 0.168618 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0302801 0.026833 78 111 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 10.08 vpr 65.93 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33860 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67508 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 27.1 MiB 1.64 775 10476 3672 5136 1668 65.9 MiB 0.09 0.00 4.49354 -135.009 -4.49354 4.49354 0.91 0.000545283 0.000496945 0.0387172 0.0353793 44 2669 43 6.95648e+06 188184 787024. 2723.27 5.24 0.267238 0.231643 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0310729 0.0274036 76 86 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 15.81 vpr 65.83 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33664 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 27.2 MiB 0.79 864 15493 5631 7761 2101 65.8 MiB 0.11 0.00 3.1285 -114.829 -3.1285 3.1285 0.91 0.000534837 0.000486926 0.0461548 0.0421505 38 2848 26 6.95648e+06 361892 678818. 2348.85 11.76 0.293273 0.257529 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0266246 0.0236271 85 58 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.28 vpr 66.11 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33964 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67696 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 27.3 MiB 0.52 956 10743 3793 5013 1937 66.1 MiB 0.09 0.00 3.77119 -139.239 -3.77119 3.77119 0.90 0.000543089 0.000494573 0.031759 0.0289594 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.56 0.140296 0.122544 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0286522 0.0252944 86 42 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 9.01 vpr 65.84 MiB 0.02 7484 -1 -1 1 0.04 -1 -1 33936 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 27.5 MiB 0.96 1078 14999 4071 8495 2433 65.8 MiB 0.12 0.00 3.84845 -142.865 -3.84845 3.84845 0.92 0.000665522 0.000605577 0.0482029 0.0437718 44 2899 21 6.95648e+06 448746 787024. 2723.27 4.72 0.283066 0.247148 27778 195446 -1 2379 24 2205 3293 259534 52402 4.12562 4.12562 -153.524 -4.12562 0 0 997811. 3452.63 0.40 0.10 0.18 -1 -1 0.40 0.0353271 0.031296 104 91 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.23 vpr 65.44 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33736 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 26.9 MiB 0.62 721 10304 4339 5695 270 65.4 MiB 0.07 0.00 3.34916 -121.065 -3.34916 3.34916 0.91 0.00043704 0.000398558 0.0317128 0.0289574 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.58 0.13579 0.118727 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0212741 0.0188696 62 24 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 9.13 vpr 66.04 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33876 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67624 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 27.3 MiB 0.60 784 13959 3819 8017 2123 66.0 MiB 0.11 0.00 4.0519 -136.516 -4.0519 4.0519 0.92 0.000533282 0.000484586 0.0401118 0.0365181 48 2294 26 6.95648e+06 390843 865456. 2994.66 5.26 0.227918 0.198122 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.41 0.08 0.19 -1 -1 0.41 0.0253026 0.0224585 86 59 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.29 vpr 65.95 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33728 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67536 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 27.2 MiB 0.76 863 13557 4887 6407 2263 66.0 MiB 0.09 0.00 3.29596 -116.543 -3.29596 3.29596 0.90 0.000580312 0.000511391 0.0381388 0.0346185 50 2481 26 6.95648e+06 376368 902133. 3121.57 3.18 0.167096 0.146357 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.42 0.20 0.20 -1 -1 0.42 0.0440818 0.0383743 85 54 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.87 vpr 65.66 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33540 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 27.0 MiB 0.89 760 7738 3134 4374 230 65.7 MiB 0.07 0.00 3.65689 -135.736 -3.65689 3.65689 0.92 0.000511726 0.000465628 0.0270091 0.0247276 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.71 0.170661 0.150678 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.39 0.11 0.19 -1 -1 0.39 0.027532 0.0245085 78 -1 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.52 vpr 65.90 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 33892 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 27.2 MiB 1.52 808 11991 3810 6067 2114 65.9 MiB 0.09 0.00 3.1768 -117.392 -3.1768 3.1768 0.91 0.000560271 0.000509384 0.0380928 0.0347721 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.76 0.174343 0.152734 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0258242 0.0229088 81 81 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 6.43 vpr 65.76 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33840 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 27.3 MiB 0.81 845 12926 3665 7173 2088 65.8 MiB 0.10 0.00 3.1214 -116.244 -3.1214 3.1214 0.92 0.000517422 0.000464094 0.0365844 0.0332968 46 2291 24 6.95648e+06 405319 828058. 2865.25 2.37 0.16769 0.147224 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0284109 0.0251579 85 58 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.80 vpr 65.91 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33848 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 27.1 MiB 0.50 803 14996 4547 7782 2667 65.9 MiB 0.11 0.00 3.09676 -115.471 -3.09676 3.09676 0.91 0.000525537 0.00047721 0.0427677 0.0388658 46 2386 25 6.95648e+06 405319 828058. 2865.25 5.07 0.226066 0.196622 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.37 0.07 0.20 -1 -1 0.37 0.0264881 0.0234861 88 61 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.81 vpr 65.78 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34036 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 27.2 MiB 0.60 938 15617 5888 7604 2125 65.8 MiB 0.12 0.00 3.66789 -137.042 -3.66789 3.66789 0.89 0.000512825 0.000465045 0.0425614 0.0388075 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.99 0.159347 0.139735 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0272696 0.0241321 85 21 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 14.67 vpr 66.24 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34276 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67832 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 27.5 MiB 0.90 799 12448 3955 5788 2705 66.2 MiB 0.08 0.00 3.78219 -138.337 -3.78219 3.78219 0.91 0.000575782 0.000523467 0.0338859 0.0308759 44 2633 42 6.95648e+06 434271 787024. 2723.27 10.52 0.271779 0.23577 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0280807 0.0249232 88 50 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.78 vpr 65.88 MiB 0.02 7572 -1 -1 1 0.03 -1 -1 34088 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67464 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 27.2 MiB 1.27 822 11983 4768 6508 707 65.9 MiB 0.10 0.00 4.19045 -134.89 -4.19045 4.19045 0.93 0.000602648 0.000541001 0.0397464 0.0362306 48 2637 22 6.95648e+06 361892 865456. 2994.66 5.21 0.242071 0.20971 28354 207349 -1 2137 24 1540 2402 225363 46826 4.04142 4.04142 -139.672 -4.04142 0 0 1.05005e+06 3633.38 0.39 0.08 0.20 -1 -1 0.39 0.0307982 0.0271415 84 110 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 7.42 vpr 66.19 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34104 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67776 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 27.4 MiB 1.07 840 10346 3694 5398 1254 66.2 MiB 0.09 0.00 3.7688 -130.649 -3.7688 3.7688 0.90 0.00048487 0.000441477 0.0399701 0.0362563 40 2535 24 6.95648e+06 188184 706193. 2443.58 3.18 0.176627 0.154558 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0304679 0.0270867 78 86 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 9.38 vpr 65.16 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 34224 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 26.7 MiB 0.16 594 10647 4341 5910 396 65.2 MiB 0.07 0.00 3.12656 -113.614 -3.12656 3.12656 0.90 0.000403088 0.000367128 0.0266898 0.0242127 56 1741 22 6.95648e+06 332941 973134. 3367.25 6.01 0.199056 0.172763 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.46 0.06 0.23 -1 -1 0.46 0.0202348 0.0179507 71 20 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 9.61 vpr 65.77 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33520 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 27.0 MiB 1.00 610 8444 3495 4676 273 65.8 MiB 0.06 0.00 3.0405 -112.422 -3.0405 3.0405 0.94 0.000517793 0.000471539 0.0301635 0.027555 52 1849 26 6.95648e+06 144757 926341. 3205.33 5.35 0.199004 0.172338 29218 227130 -1 1370 23 1369 2031 153581 37136 3.03252 3.03252 -119.471 -3.03252 0 0 1.14541e+06 3963.36 0.44 0.07 0.22 -1 -1 0.44 0.0254903 0.0225269 63 91 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.66 vpr 65.86 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 34196 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 27.5 MiB 0.55 1000 14152 3772 8188 2192 65.9 MiB 0.12 0.00 4.46224 -157.711 -4.46224 4.46224 0.89 0.000638678 0.000579193 0.0461698 0.0420225 54 3033 30 6.95648e+06 434271 949917. 3286.91 5.74 0.246065 0.21388 29506 232905 -1 2329 24 2607 4128 362524 74061 4.97191 4.97191 -169.58 -4.97191 0 0 1.17392e+06 4061.99 0.43 0.11 0.23 -1 -1 0.43 0.0343133 0.0304132 103 53 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.76 vpr 65.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34084 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 27.1 MiB 0.87 717 11983 4638 6220 1125 65.8 MiB 0.08 0.00 3.1457 -117.079 -3.1457 3.1457 0.89 0.000516198 0.000469238 0.0346455 0.0316602 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.73 0.165004 0.144081 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0241405 0.0214218 83 31 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 7.09 vpr 65.13 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33564 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 26.6 MiB 0.34 571 10581 4367 5776 438 65.1 MiB 0.07 0.00 3.0735 -108.432 -3.0735 3.0735 0.90 0.000456591 0.000423678 0.0280688 0.025651 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.68 0.135906 0.118475 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.020706 0.0184091 65 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 8.55 vpr 66.14 MiB 0.02 7572 -1 -1 1 0.04 -1 -1 34584 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 27.7 MiB 1.71 1126 15215 3732 10105 1378 66.1 MiB 0.13 0.00 4.49524 -160.999 -4.49524 4.49524 0.93 0.000633096 0.000572456 0.0507071 0.0460644 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 3.25 0.212316 0.187141 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.54 0.11 0.28 -1 -1 0.54 0.0371427 0.032978 103 109 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 9.30 vpr 65.71 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33816 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 27.0 MiB 1.02 804 14375 4842 7223 2310 65.7 MiB 0.10 0.00 3.73321 -136.441 -3.73321 3.73321 0.90 0.000521656 0.000472843 0.0396019 0.0359481 40 2325 28 6.95648e+06 405319 706193. 2443.58 5.13 0.241091 0.210151 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.35 0.09 0.18 -1 -1 0.35 0.025699 0.0227558 86 31 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.92 vpr 65.39 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 33760 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.9 MiB 0.29 740 12763 4452 6451 1860 65.4 MiB 0.09 0.00 3.05815 -117.559 -3.05815 3.05815 0.87 0.000426925 0.000392453 0.0302885 0.0276811 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.52 0.128204 0.112258 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.37 0.06 0.20 -1 -1 0.37 0.0208123 0.0184328 70 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 8.33 vpr 65.81 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34424 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67392 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 27.5 MiB 0.43 924 14567 5045 6877 2645 65.8 MiB 0.11 0.00 4.52824 -159.979 -4.52824 4.52824 0.88 0.000624456 0.000563258 0.0421571 0.0381541 54 3003 36 6.95648e+06 448746 949917. 3286.91 4.59 0.20322 0.178903 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.45 0.11 0.22 -1 -1 0.45 0.0312074 0.0277271 105 26 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 8.07 vpr 65.19 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 33852 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.7 MiB 0.35 618 10614 4475 5915 224 65.2 MiB 0.07 0.00 2.92185 -113.699 -2.92185 2.92185 0.83 0.000434084 0.000396106 0.0297658 0.0271878 46 1828 25 6.95648e+06 144757 828058. 2865.25 4.72 0.180029 0.155477 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220206 0.019484 62 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.19 vpr 65.41 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33832 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 26.9 MiB 0.77 601 10163 2708 5873 1582 65.4 MiB 0.07 0.00 3.10776 -107.419 -3.10776 3.10776 0.92 0.00043964 0.000399533 0.0274357 0.0250394 52 1508 25 6.95648e+06 303989 926341. 3205.33 5.20 0.168908 0.146337 29218 227130 -1 1108 22 1138 1745 119544 29707 3.03987 3.03987 -107.252 -3.03987 0 0 1.14541e+06 3963.36 0.44 0.06 0.23 -1 -1 0.44 0.0215377 0.0190591 65 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.28 vpr 65.89 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34040 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 27.2 MiB 1.33 705 12856 4698 6070 2088 65.9 MiB 0.10 0.00 3.39446 -107.671 -3.39446 3.39446 0.91 0.000533072 0.000485492 0.0436384 0.0399188 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.70 0.186486 0.163689 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0257027 0.022882 77 81 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.35 vpr 65.75 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 34180 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67324 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 27.1 MiB 0.88 807 13117 5264 6347 1506 65.7 MiB 0.11 0.00 3.65689 -136.729 -3.65689 3.65689 0.90 0.000564913 0.000515801 0.0486175 0.0443453 46 2061 24 6.95648e+06 188184 828058. 2865.25 4.24 0.226669 0.197322 28066 200906 -1 1777 22 2020 2624 211029 44669 3.92996 3.92996 -145.52 -3.92996 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0281616 0.0250326 78 53 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.83 vpr 66.12 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34332 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67704 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 27.4 MiB 1.39 890 14345 5510 6931 1904 66.1 MiB 0.09 0.00 3.74419 -138.408 -3.74419 3.74419 0.87 0.000461734 0.000421606 0.038362 0.0350269 48 2618 24 6.95648e+06 361892 865456. 2994.66 5.21 0.214389 0.18585 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.42 0.12 0.20 -1 -1 0.42 0.030573 0.0271026 85 55 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 6.58 vpr 65.32 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34032 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 26.5 MiB 0.96 685 10813 4185 5763 865 65.3 MiB 0.07 0.00 3.05815 -117.015 -3.05815 3.05815 0.88 0.000443559 0.000401408 0.0284683 0.0258946 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.56 0.155151 0.135086 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.38 0.07 0.17 -1 -1 0.38 0.0220236 0.0193976 69 55 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.79 vpr 65.57 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33800 -1 -1 10 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 27.1 MiB 1.47 684 10105 3894 4557 1654 65.6 MiB 0.08 0.00 3.30215 -110.841 -3.30215 3.30215 0.89 0.000475512 0.000433956 0.0339065 0.0309594 36 2232 46 6.95648e+06 144757 648988. 2245.63 4.32 0.210904 0.182095 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0228733 0.0201712 59 82 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.34 vpr 66.01 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34092 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 27.3 MiB 0.94 949 12711 4087 6844 1780 66.0 MiB 0.10 0.00 3.1285 -115.995 -3.1285 3.1285 0.91 0.000537114 0.000490432 0.0397916 0.0363629 44 2370 24 6.95648e+06 318465 787024. 2723.27 4.18 0.210051 0.182623 27778 195446 -1 1999 23 1494 2185 169757 35128 3.08567 3.08567 -121.174 -3.08567 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0269363 0.0237874 79 52 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 9.42 vpr 65.64 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 33928 -1 -1 16 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 27.0 MiB 0.93 684 10156 4202 5354 600 65.6 MiB 0.08 0.00 4.24545 -126.653 -4.24545 4.24545 0.91 0.000470865 0.000427504 0.0331649 0.030288 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.39 0.146578 0.128069 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.33 0.08 0.17 -1 -1 0.33 0.0246175 0.0217558 74 20 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 11.29 vpr 65.37 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34032 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 26.9 MiB 0.75 607 9374 3879 5147 348 65.4 MiB 0.07 0.00 3.0545 -108.859 -3.0545 3.0545 0.85 0.00047173 0.000429385 0.0306456 0.0279424 38 1982 33 6.95648e+06 173708 678818. 2348.85 7.63 0.221017 0.191136 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.32 0.06 0.16 -1 -1 0.32 0.0235717 0.0207483 61 58 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 7.78 vpr 65.69 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33396 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 26.9 MiB 1.19 777 7669 3175 4304 190 65.7 MiB 0.06 0.00 3.0765 -113.072 -3.0765 3.0765 0.89 0.000505034 0.000459906 0.0261993 0.0239037 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.56 0.14488 0.126199 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0256232 0.0226423 60 88 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 9.24 vpr 65.28 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33904 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.9 MiB 0.15 795 9448 3333 4743 1372 65.3 MiB 0.07 0.00 3.89245 -136.332 -3.89245 3.89245 0.92 0.000517763 0.000473523 0.027133 0.0248647 56 2239 22 6.95648e+06 361892 973134. 3367.25 5.76 0.209784 0.182568 29794 239141 -1 1953 18 1692 2646 265016 56826 4.16042 4.16042 -145.303 -4.16042 0 0 1.19926e+06 4149.71 0.45 0.08 0.24 -1 -1 0.45 0.0223973 0.0200428 86 -1 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.11 vpr 65.78 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34228 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 27.0 MiB 1.13 926 10495 2590 6894 1011 65.8 MiB 0.09 0.00 3.78219 -140.482 -3.78219 3.78219 0.85 0.000506691 0.000462463 0.0300546 0.0273741 44 2797 31 6.95648e+06 390843 787024. 2723.27 2.87 0.141085 0.123981 27778 195446 -1 2243 24 2072 3440 271776 53627 4.11966 4.11966 -151.056 -4.11966 0 0 997811. 3452.63 0.37 0.09 0.20 -1 -1 0.37 0.0296215 0.0259668 86 57 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 25.35 vpr 66.04 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33732 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 27.3 MiB 1.38 831 9336 3198 4890 1248 66.0 MiB 0.08 0.00 3.70819 -135.715 -3.70819 3.70819 0.91 0.000563543 0.000512715 0.0298531 0.0272422 46 2950 33 6.95648e+06 376368 828058. 2865.25 20.74 0.333645 0.290057 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0291916 0.0258125 85 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.18 vpr 66.14 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33784 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 27.4 MiB 0.89 822 13351 4683 6743 1925 66.1 MiB 0.10 0.00 3.75544 -130.593 -3.75544 3.75544 0.89 0.000535765 0.000485647 0.0371459 0.0337027 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.11 0.174629 0.152753 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.40 0.10 0.19 -1 -1 0.40 0.0267481 0.0235854 86 62 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 8.20 vpr 65.21 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33584 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 26.7 MiB 0.69 551 9064 3696 4990 378 65.2 MiB 0.06 0.00 3.29416 -111.889 -3.29416 3.29416 0.90 0.000438074 0.000400146 0.0276053 0.0252491 40 2106 28 6.95648e+06 173708 706193. 2443.58 4.47 0.18383 0.158883 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0208647 0.0184821 62 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 7.83 vpr 65.86 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34000 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 27.2 MiB 0.74 751 12465 5336 6622 507 65.9 MiB 0.10 0.00 4.015 -133.992 -4.015 4.015 0.92 0.000569472 0.000517218 0.0444166 0.0405113 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.90 0.187169 0.163958 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.34 0.11 0.17 -1 -1 0.34 0.0348429 0.0305626 78 58 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.99 vpr 66.09 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33852 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67680 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 27.4 MiB 1.34 807 14351 4061 7900 2390 66.1 MiB 0.11 0.00 3.71619 -135.355 -3.71619 3.71619 0.90 0.00058542 0.000531533 0.0431082 0.0391657 46 2908 40 6.95648e+06 448746 828058. 2865.25 4.39 0.200666 0.175619 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.38 0.09 0.19 -1 -1 0.38 0.0307631 0.0272263 88 106 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.13 vpr 65.91 MiB 0.02 7552 -1 -1 1 0.03 -1 -1 34044 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67492 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 27.2 MiB 0.96 718 14035 5965 7479 591 65.9 MiB 0.10 0.00 3.9948 -135.983 -3.9948 3.9948 0.89 0.000533872 0.000485326 0.0432325 0.0392447 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.01 0.165993 0.145738 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0257779 0.0229884 81 79 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.84 vpr 66.02 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33852 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67604 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 27.3 MiB 1.57 700 13668 5834 7221 613 66.0 MiB 0.10 0.00 3.27591 -109.838 -3.27591 3.27591 0.86 0.000561295 0.000510662 0.0456415 0.04162 46 2600 45 6.95648e+06 260562 828058. 2865.25 5.23 0.251233 0.218303 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.36 0.08 0.18 -1 -1 0.36 0.0268893 0.0237616 75 83 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.20 vpr 66.02 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34156 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67608 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.3 MiB 1.40 782 12628 3922 6830 1876 66.0 MiB 0.10 0.00 3.65989 -133.508 -3.65989 3.65989 0.86 0.000536422 0.000487727 0.0455044 0.0414291 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.61 0.182187 0.160365 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.38 0.14 0.20 -1 -1 0.38 0.034457 0.0303483 81 58 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.69 vpr 65.59 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33888 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67160 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 27.1 MiB 1.06 662 10163 3749 4795 1619 65.6 MiB 0.07 0.00 3.14182 -102.393 -3.14182 3.14182 0.91 0.00051434 0.000465388 0.0325584 0.0296514 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.43 0.135297 0.118025 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0255453 0.0225665 77 81 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 10.03 vpr 65.24 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 34008 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 0.95 574 9219 3815 5040 364 65.2 MiB 0.06 0.00 2.94595 -112.182 -2.94595 2.94595 0.87 0.000416525 0.000379804 0.0276819 0.0253454 62 1582 28 6.95648e+06 144757 1.05005e+06 3633.38 5.91 0.166856 0.144657 30946 263737 -1 1177 19 1240 1905 137799 33305 3.13582 3.13582 -113.41 -3.13582 0 0 1.30136e+06 4502.97 0.47 0.06 0.26 -1 -1 0.47 0.0194258 0.0173659 61 -1 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 12.28 vpr 65.94 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33680 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67520 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 27.2 MiB 3.03 749 15688 6578 8529 581 65.9 MiB 0.11 0.00 3.77419 -136.605 -3.77419 3.77419 0.89 0.000520483 0.000471377 0.0457634 0.0415439 54 2315 29 6.95648e+06 347416 949917. 3286.91 5.97 0.245372 0.213558 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.43 0.08 0.23 -1 -1 0.43 0.0281393 0.0249365 84 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.21 vpr 65.82 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34044 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67404 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.2 MiB 0.54 800 13117 5732 6986 399 65.8 MiB 0.10 0.00 3.79019 -142.199 -3.79019 3.79019 0.93 0.000548635 0.000498101 0.0475931 0.0433458 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.41 0.185786 0.162982 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0276608 0.024601 81 62 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 6.56 vpr 65.75 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34048 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 27.0 MiB 1.07 575 11609 4562 5941 1106 65.8 MiB 0.08 0.00 3.25495 -109.238 -3.25495 3.25495 0.87 0.000432946 0.000394361 0.034492 0.0315175 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.51 0.147357 0.128916 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0211686 0.0187164 60 47 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.85 vpr 65.41 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 34136 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.9 MiB 0.28 835 9529 3959 5371 199 65.4 MiB 0.06 0.00 3.0815 -119.168 -3.0815 3.0815 0.92 0.000408073 0.00037045 0.0277687 0.0253629 38 2078 34 6.95648e+06 159232 678818. 2348.85 4.52 0.18282 0.158608 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0194149 0.0171186 63 -1 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 8.03 vpr 66.04 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33928 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67620 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 27.3 MiB 1.21 782 14483 5692 6794 1997 66.0 MiB 0.11 0.00 3.70334 -129.205 -3.70334 3.70334 0.91 0.000538463 0.00048846 0.046828 0.04274 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.69 0.171736 0.150844 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0235529 0.0209993 78 56 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 23.96 vpr 66.09 MiB 0.02 7484 -1 -1 1 0.03 -1 -1 34024 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67676 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 27.4 MiB 0.80 793 11474 4768 6294 412 66.1 MiB 0.08 0.00 3.90986 -132.869 -3.90986 3.90986 0.85 0.000452567 0.000411912 0.0347843 0.0317596 40 2890 43 6.95648e+06 260562 706193. 2443.58 20.07 0.3337 0.29048 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0275085 0.0242715 78 81 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 6.71 vpr 65.91 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33904 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.4 MiB 0.44 1152 4375 861 3334 180 65.9 MiB 0.05 0.00 4.48239 -161.071 -4.48239 4.48239 0.91 0.000586715 0.000536899 0.0154798 0.014253 46 3119 32 6.95648e+06 390843 828058. 2865.25 3.03 0.135427 0.118862 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.39 0.10 0.20 -1 -1 0.39 0.0283922 0.0254309 100 -1 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 9.40 vpr 65.63 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34156 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 27.0 MiB 1.01 698 14528 6104 7488 936 65.6 MiB 0.11 0.00 3.34296 -113.702 -3.34296 3.34296 0.92 0.000539079 0.000491728 0.0466676 0.0426181 44 2314 27 6.95648e+06 260562 787024. 2723.27 5.16 0.225607 0.197219 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0276134 0.0242408 77 47 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.35 vpr 65.25 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33928 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 26.9 MiB 0.63 465 10459 4157 5359 943 65.3 MiB 0.06 0.00 3.15776 -95.8334 -3.15776 3.15776 0.90 0.000379318 0.000345609 0.0284738 0.0260376 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.71 0.103685 0.0907459 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.34 0.04 0.16 -1 -1 0.34 0.017428 0.0155164 57 26 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 8.93 vpr 65.91 MiB 0.02 7304 -1 -1 1 0.04 -1 -1 34100 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 27.5 MiB 0.68 956 13513 4288 6425 2800 65.9 MiB 0.11 0.00 4.037 -139.704 -4.037 4.037 0.92 0.000646229 0.00057835 0.0439797 0.0400169 54 3228 47 6.95648e+06 434271 949917. 3286.91 4.83 0.273997 0.240737 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.45 0.11 0.23 -1 -1 0.45 0.0340852 0.0302054 103 85 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.74 vpr 66.23 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34220 -1 -1 14 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67816 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 27.4 MiB 3.82 899 8716 2535 4990 1191 66.2 MiB 0.07 0.00 4.57784 -152.287 -4.57784 4.57784 0.88 0.000540779 0.000489846 0.0330197 0.0300433 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.86 0.175389 0.153842 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0265506 0.0235031 79 105 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 16.34 vpr 65.32 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33744 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 26.6 MiB 2.89 500 11389 4353 5738 1298 65.3 MiB 0.08 0.00 3.0346 -106.135 -3.0346 3.0346 0.90 0.000480843 0.000437717 0.0378722 0.0345436 42 2142 50 6.95648e+06 144757 744469. 2576.02 10.38 0.283558 0.244452 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.36 0.06 0.18 -1 -1 0.36 0.0233288 0.0205887 58 86 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.97 vpr 65.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33800 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 27.1 MiB 0.43 819 12938 5293 7361 284 65.8 MiB 0.10 0.00 4.12326 -140.658 -4.12326 4.12326 0.92 0.000512075 0.000463967 0.0382315 0.0348358 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.29 0.136978 0.120598 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0262903 0.0233031 83 31 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.38 vpr 66.39 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34364 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67988 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 27.7 MiB 0.86 852 12560 4728 5964 1868 66.4 MiB 0.10 0.00 4.1192 -140.393 -4.1192 4.1192 0.89 0.000583758 0.000530644 0.0417536 0.0380605 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.33 0.171258 0.150148 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.37 0.08 0.20 -1 -1 0.37 0.0293587 0.0260121 95 50 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 9.56 vpr 65.84 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 33708 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67424 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 27.2 MiB 1.01 739 10762 4429 5782 551 65.8 MiB 0.08 0.00 3.27396 -108.751 -3.27396 3.27396 0.93 0.000530881 0.000484309 0.0349047 0.0319111 50 2308 30 6.95648e+06 289514 902133. 3121.57 5.28 0.209081 0.181506 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.41 0.08 0.21 -1 -1 0.41 0.0258978 0.0229216 78 50 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.45 vpr 65.85 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33824 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67428 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 27.1 MiB 0.44 907 15848 6161 8045 1642 65.8 MiB 0.10 0.00 3.79319 -139.401 -3.79319 3.79319 0.89 0.000524699 0.000478385 0.0402658 0.0364851 48 2368 36 6.95648e+06 492173 865456. 2994.66 2.79 0.164866 0.144315 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.41 0.11 0.19 -1 -1 0.41 0.0274894 0.0243521 91 61 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.40 vpr 65.82 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33860 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 27.1 MiB 0.47 794 15215 5485 7366 2364 65.8 MiB 0.11 0.00 3.05335 -116.88 -3.05335 3.05335 0.92 0.000581254 0.000527824 0.0426405 0.0386544 38 2664 32 6.95648e+06 448746 678818. 2348.85 2.74 0.169906 0.149265 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0283989 0.0250762 90 61 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.84 vpr 65.06 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33948 -1 -1 13 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 26.6 MiB 4.19 577 8599 3570 4706 323 65.1 MiB 0.06 0.00 3.17976 -103.796 -3.17976 3.17976 0.92 0.000450083 0.000410682 0.0261351 0.023895 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.64 0.124607 0.108175 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0200694 0.0178012 56 28 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.36 vpr 65.46 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33892 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 0.83 584 9839 4132 5456 251 65.5 MiB 0.07 0.00 2.9814 -102.92 -2.9814 2.9814 0.91 0.000465134 0.000423182 0.0326453 0.0298454 42 1955 38 6.95648e+06 144757 744469. 2576.02 2.45 0.152744 0.134231 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.37 0.06 0.18 -1 -1 0.37 0.0203726 0.0180729 58 79 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 6.63 vpr 65.84 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34100 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 27.1 MiB 0.41 743 12331 4128 5906 2297 65.8 MiB 0.08 0.00 4.24545 -140.476 -4.24545 4.24545 0.90 0.000513457 0.000466217 0.0343573 0.0312808 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.95 0.165442 0.144353 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.43 0.08 0.23 -1 -1 0.43 0.023699 0.0209761 86 29 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.93 vpr 65.18 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34052 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 26.7 MiB 1.11 494 12399 5297 6440 662 65.2 MiB 0.08 0.00 3.26295 -100.502 -3.26295 3.26295 0.89 0.000387313 0.000350149 0.0343376 0.0312344 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.82 0.142509 0.12402 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.35 0.06 0.16 -1 -1 0.35 0.0203846 0.0179796 59 48 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 13.23 vpr 65.52 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33716 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 27.1 MiB 1.10 698 10149 3910 5225 1014 65.5 MiB 0.07 0.00 3.05815 -118.306 -3.05815 3.05815 0.89 0.00045565 0.000416071 0.0322223 0.0294878 38 2191 39 6.95648e+06 144757 678818. 2348.85 9.09 0.232737 0.201727 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.021806 0.0192893 61 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 8.39 vpr 65.82 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 33656 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 27.3 MiB 0.97 717 11607 3761 5813 2033 65.8 MiB 0.09 0.00 3.1175 -113.433 -3.1175 3.1175 0.93 0.000528658 0.000483963 0.0360728 0.0328563 44 1996 23 6.95648e+06 347416 787024. 2723.27 4.19 0.213348 0.185322 27778 195446 -1 1542 18 1591 2057 137516 32127 3.20637 3.20637 -119.126 -3.20637 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.023726 0.0211323 82 60 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.26 vpr 65.28 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33672 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 26.8 MiB 2.19 682 10459 3058 6921 480 65.3 MiB 0.07 0.00 3.13575 -104.344 -3.13575 3.13575 0.86 0.000403524 0.000369447 0.0284375 0.026052 36 1970 40 6.95648e+06 159232 648988. 2245.63 3.13 0.15396 0.135078 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0230432 0.0203737 57 49 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.78 vpr 65.75 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34100 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 27.1 MiB 1.47 710 12323 5117 6727 479 65.8 MiB 0.09 0.00 3.0155 -107.222 -3.0155 3.0155 0.89 0.000510379 0.000464785 0.0381378 0.034787 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.12 0.137171 0.120175 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.39 0.07 0.21 -1 -1 0.39 0.0253124 0.0224915 76 56 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.00 vpr 65.77 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34108 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 27.1 MiB 1.24 717 15298 5325 7460 2513 65.8 MiB 0.11 0.00 3.41641 -118.296 -3.41641 3.41641 0.88 0.000533943 0.000482293 0.0450901 0.0408556 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.65 0.188569 0.164492 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0259626 0.0229348 85 88 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.03 vpr 65.47 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33664 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 27.0 MiB 0.80 564 10149 3066 5426 1657 65.5 MiB 0.08 0.00 2.9023 -103.177 -2.9023 2.9023 0.89 0.00046514 0.000424183 0.032751 0.029938 44 2002 28 6.95648e+06 144757 787024. 2723.27 2.13 0.136701 0.119077 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0234856 0.0207132 61 54 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 9.58 vpr 65.53 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33616 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 27.0 MiB 0.88 611 8289 3413 4626 250 65.5 MiB 0.06 0.00 3.0515 -113.367 -3.0515 3.0515 0.89 0.000474648 0.00042961 0.0279468 0.0253964 52 1978 31 6.95648e+06 144757 926341. 3205.33 5.54 0.202189 0.174969 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.45 0.06 0.22 -1 -1 0.45 0.0238554 0.0211873 63 60 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.51 vpr 66.07 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34424 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67660 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 27.3 MiB 0.82 951 8283 1857 5834 592 66.1 MiB 0.07 0.00 3.78219 -143.123 -3.78219 3.78219 0.84 0.000484235 0.000441693 0.022873 0.0208975 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.60 0.147983 0.128766 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.34 0.13 0.18 -1 -1 0.34 0.033115 0.0292179 88 49 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.23 vpr 65.90 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33896 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 27.2 MiB 0.93 739 8336 2662 4258 1416 65.9 MiB 0.07 0.00 3.1065 -104.923 -3.1065 3.1065 0.86 0.000501033 0.000457508 0.0273467 0.025065 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.34 0.166932 0.145651 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.023609 0.0209644 77 54 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 25.94 vpr 66.22 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 34308 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67808 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 27.6 MiB 1.41 819 16473 6066 7302 3105 66.2 MiB 0.12 0.00 3.81039 -138.347 -3.81039 3.81039 0.90 0.000610592 0.000553566 0.0514538 0.0467839 48 2605 47 6.95648e+06 419795 865456. 2994.66 21.20 0.413656 0.359938 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.40 0.13 0.20 -1 -1 0.40 0.036567 0.0321632 89 117 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.90 vpr 65.24 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33880 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 26.9 MiB 1.47 588 9529 3953 5280 296 65.2 MiB 0.06 0.00 3.02776 -101.68 -3.02776 3.02776 0.88 0.000374522 0.000339407 0.025593 0.0232647 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.50 0.116585 0.101647 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.34 0.06 0.15 -1 -1 0.34 0.0193869 0.0170698 58 -1 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 7.11 vpr 65.64 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34112 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 26.9 MiB 0.97 751 13335 4844 6817 1674 65.6 MiB 0.10 0.00 3.74945 -128.098 -3.74945 3.74945 0.88 0.000559463 0.0005098 0.0415669 0.0378551 50 2285 32 6.95648e+06 332941 902133. 3121.57 2.94 0.166518 0.145661 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.40 0.07 0.21 -1 -1 0.40 0.0270732 0.0239179 81 89 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.43 vpr 65.55 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33684 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 3.24 613 11854 5235 6332 287 65.6 MiB 0.09 0.00 2.96105 -113.67 -2.96105 2.96105 0.89 0.000494109 0.000449631 0.0408603 0.0372653 40 2066 46 6.95648e+06 144757 706193. 2443.58 3.10 0.174563 0.152207 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0270762 0.0238231 61 93 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.25 vpr 66.07 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33996 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67656 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 27.3 MiB 0.92 784 11983 4223 5778 1982 66.1 MiB 0.09 0.00 3.13882 -116.487 -3.13882 3.13882 0.86 0.000572881 0.000517925 0.0353133 0.0321784 48 2212 28 6.95648e+06 347416 865456. 2994.66 2.22 0.156318 0.136003 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.39 0.07 0.21 -1 -1 0.39 0.0270976 0.0239742 84 59 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.42 vpr 65.70 MiB 0.02 7404 -1 -1 1 0.04 -1 -1 34520 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67272 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 27.3 MiB 1.10 961 18301 6218 9454 2629 65.7 MiB 0.14 0.00 4.52824 -160.34 -4.52824 4.52824 0.87 0.000660928 0.000598541 0.0579874 0.052515 46 3150 41 6.95648e+06 477698 828058. 2865.25 5.12 0.222651 0.194996 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.36 0.09 0.20 -1 -1 0.36 0.0291546 0.025932 104 81 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.66 vpr 64.69 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33740 -1 -1 10 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 26.3 MiB 0.45 395 8267 2975 4043 1249 64.7 MiB 0.05 0.00 2.20646 -76.6701 -2.20646 2.20646 0.88 0.000330688 0.000298623 0.0213395 0.0194023 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.31 0.115361 0.0998592 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.34 0.04 0.15 -1 -1 0.34 0.0172341 0.0151768 45 51 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 7.09 vpr 65.25 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 34072 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 26.8 MiB 2.07 505 9994 3801 4923 1270 65.2 MiB 0.07 0.00 3.20866 -106.336 -3.20866 3.20866 0.90 0.000443265 0.000404986 0.0304067 0.0278197 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.95 0.128122 0.112084 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0233233 0.0205906 58 29 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.92 vpr 65.45 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33736 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 26.7 MiB 0.23 594 9219 3126 4706 1387 65.4 MiB 0.07 0.00 2.93285 -111.664 -2.93285 2.93285 0.93 0.000450823 0.000408234 0.0297625 0.0270856 52 1888 25 6.95648e+06 144757 926341. 3205.33 5.45 0.204615 0.177398 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.41 0.07 0.21 -1 -1 0.41 0.0238385 0.0210558 65 31 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.91 vpr 65.24 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34076 -1 -1 15 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 26.9 MiB 0.59 415 9310 3976 4598 736 65.2 MiB 0.06 0.00 3.24096 -89.6096 -3.24096 3.24096 0.87 0.000363094 0.000331781 0.0245604 0.0224732 44 1557 47 6.95648e+06 217135 787024. 2723.27 4.29 0.150805 0.12998 27778 195446 -1 1133 20 982 1289 91904 23042 2.85042 2.85042 -92.9397 -2.85042 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0176844 0.0156998 56 19 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 27.84 vpr 66.01 MiB 0.02 7496 -1 -1 1 0.03 -1 -1 34100 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 27.4 MiB 1.16 849 10835 4559 6029 247 66.0 MiB 0.09 0.00 3.79924 -134.385 -3.79924 3.79924 0.90 0.000542539 0.000497647 0.0416792 0.0379437 44 3443 36 6.95648e+06 188184 787024. 2723.27 23.45 0.320045 0.278572 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0311301 0.0277002 77 84 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.74 vpr 66.17 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33876 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67756 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 27.4 MiB 0.84 742 12512 4241 5927 2344 66.2 MiB 0.09 0.00 3.1116 -112.527 -3.1116 3.1116 0.90 0.000570731 0.000504894 0.0366233 0.0333379 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.79 0.181416 0.15821 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.33 0.10 0.18 -1 -1 0.33 0.0326617 0.0285848 87 88 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.00 vpr 65.68 MiB 0.04 7312 -1 -1 1 0.03 -1 -1 34148 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 27.3 MiB 0.79 1062 15584 5717 7278 2589 65.7 MiB 0.12 0.00 4.46104 -158.567 -4.46104 4.46104 0.90 0.000567576 0.000519969 0.0506889 0.0461976 50 2979 31 6.99608e+06 323745 902133. 3121.57 5.92 0.294784 0.2556 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.40 0.08 0.21 -1 -1 0.40 0.0267428 0.0238078 130 80 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.33 vpr 66.09 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 34072 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67680 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 27.5 MiB 1.55 1018 13610 5732 7207 671 66.1 MiB 0.11 0.00 4.50158 -148.332 -4.50158 4.50158 0.90 0.000557011 0.000505144 0.0440341 0.0400547 54 3118 36 6.99608e+06 294314 949917. 3286.91 3.43 0.197314 0.1722 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.45 0.09 0.24 -1 -1 0.45 0.0262708 0.0233486 117 78 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.19 vpr 65.64 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34160 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 27.0 MiB 1.01 1040 13610 5701 7488 421 65.6 MiB 0.11 0.00 3.59279 -128.627 -3.59279 3.59279 0.92 0.000529681 0.000482044 0.0433693 0.039509 46 2926 28 6.99608e+06 264882 828058. 2865.25 4.94 0.217137 0.188998 28066 200906 -1 2312 22 1747 2063 162737 34627 4.13566 4.13566 -142.913 -4.13566 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0275084 0.0243688 106 50 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.24 vpr 65.26 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33972 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 26.9 MiB 0.75 806 14444 6101 7602 741 65.3 MiB 0.11 0.00 3.79615 -125.537 -3.79615 3.79615 0.91 0.000506044 0.000457734 0.044845 0.0409016 40 2767 26 6.99608e+06 264882 706193. 2443.58 3.31 0.159768 0.140076 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0254272 0.0225477 89 25 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 7.15 vpr 65.74 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33960 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 27.0 MiB 0.48 871 12416 4669 6393 1354 65.7 MiB 0.10 0.00 4.27644 -154.345 -4.27644 4.27644 0.92 0.000549162 0.000503727 0.041689 0.0380333 56 2565 50 6.99608e+06 220735 973134. 3367.25 3.29 0.196432 0.172429 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.46 0.10 0.24 -1 -1 0.46 0.0296215 0.0262323 93 31 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 9.49 vpr 65.93 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33832 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67516 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 27.4 MiB 0.51 1298 16069 5589 8587 1893 65.9 MiB 0.13 0.00 3.60699 -134.626 -3.60699 3.60699 0.90 0.000541988 0.00049233 0.0441256 0.0401478 48 3162 26 6.99608e+06 441471 865456. 2994.66 5.73 0.25169 0.218241 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.39 0.10 0.20 -1 -1 0.39 0.0269797 0.023876 117 61 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 6.82 vpr 64.66 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 34132 -1 -1 15 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 26.2 MiB 1.52 620 8289 3348 4414 527 64.7 MiB 0.06 0.00 3.30124 -103.988 -3.30124 3.30124 0.91 0.000406595 0.000370306 0.0241689 0.0221228 44 2016 40 6.99608e+06 220735 787024. 2723.27 2.17 0.105412 0.0920268 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0203505 0.0179759 68 26 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 15.41 vpr 65.00 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33892 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 26.6 MiB 0.52 708 9368 3795 5080 493 65.0 MiB 0.06 0.00 2.88485 -101.173 -2.88485 2.88485 0.89 0.000431999 0.000393295 0.026965 0.0245818 46 2433 35 6.99608e+06 250167 828058. 2865.25 11.78 0.25146 0.217868 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.39 0.12 0.18 -1 -1 0.39 0.0275861 0.0242102 77 -1 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 21.42 vpr 65.68 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 33552 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 27.0 MiB 3.40 865 11366 4429 5807 1130 65.7 MiB 0.08 0.00 3.3156 -116.953 -3.3156 3.3156 0.89 0.000464768 0.000423631 0.0344787 0.0315063 44 2856 40 6.99608e+06 220735 787024. 2723.27 14.89 0.267564 0.230877 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0239804 0.0211714 96 81 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 6.43 vpr 65.21 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33948 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 26.7 MiB 0.82 668 10346 4043 5155 1148 65.2 MiB 0.08 0.00 3.58059 -133.895 -3.58059 3.58059 0.92 0.000443735 0.000404999 0.0314917 0.0287284 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.42 0.144448 0.126826 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0238187 0.0210964 79 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 16.45 vpr 65.18 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33704 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 26.9 MiB 2.61 858 10835 4264 5113 1458 65.2 MiB 0.08 0.00 3.85932 -133.017 -3.85932 3.85932 0.87 0.000487865 0.000441523 0.0338214 0.030905 38 2753 35 6.99608e+06 220735 678818. 2348.85 10.88 0.226346 0.196129 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.31 0.08 0.16 -1 -1 0.31 0.0222761 0.0196816 88 58 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.03 vpr 65.51 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34080 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 26.9 MiB 0.90 1078 12030 4277 6214 1539 65.5 MiB 0.09 0.00 3.0712 -121.401 -3.0712 3.0712 0.89 0.000461416 0.000419477 0.0360825 0.032963 38 2768 42 6.99608e+06 206020 678818. 2348.85 4.07 0.156639 0.136689 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0247377 0.0218537 91 57 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 7.32 vpr 65.39 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 26.8 MiB 1.05 883 7132 1837 4428 867 65.4 MiB 0.07 0.00 3.50359 -126.552 -3.50359 3.50359 0.92 0.000548481 0.000499571 0.025239 0.023058 50 2388 31 6.99608e+06 235451 902133. 3121.57 3.02 0.16621 0.145939 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.42 0.08 0.20 -1 -1 0.42 0.0287429 0.0254321 101 55 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 10.09 vpr 65.82 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33752 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67400 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 27.3 MiB 0.96 1134 14123 4441 7724 1958 65.8 MiB 0.11 0.00 4.28564 -153.93 -4.28564 4.28564 0.91 0.000553549 0.000503548 0.0477366 0.0436265 48 3127 38 6.99608e+06 279598 865456. 2994.66 5.82 0.278105 0.243055 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.40 0.10 0.21 -1 -1 0.40 0.031427 0.0278786 112 60 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 16.30 vpr 64.88 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34116 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 26.5 MiB 2.56 572 11293 4723 5996 574 64.9 MiB 0.07 0.00 2.92195 -96.6009 -2.92195 2.92195 0.92 0.000401436 0.000365481 0.031218 0.0285133 40 1775 30 6.99608e+06 206020 706193. 2443.58 10.67 0.26329 0.229838 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0198326 0.0175884 67 21 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 11.04 vpr 65.74 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34048 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 26.9 MiB 2.18 1040 13324 4763 6768 1793 65.7 MiB 0.11 0.00 3.68279 -132.173 -3.68279 3.68279 0.90 0.000557711 0.000509716 0.0456413 0.0416511 50 2876 28 6.99608e+06 235451 902133. 3121.57 5.60 0.253441 0.220312 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.40 0.10 0.21 -1 -1 0.40 0.0291649 0.0257349 106 60 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.28 vpr 65.62 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67200 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 27.0 MiB 1.34 1122 6731 1649 4394 688 65.6 MiB 0.06 0.00 3.32994 -131.897 -3.32994 3.32994 0.88 0.000590561 0.000544193 0.0236637 0.0216858 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.93 0.157255 0.138784 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0254171 0.022646 99 54 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 18.69 vpr 65.56 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33480 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 26.9 MiB 0.82 871 13856 5887 7726 243 65.6 MiB 0.11 0.00 3.39034 -128.572 -3.39034 3.39034 0.92 0.000494069 0.0004509 0.0433068 0.0395562 44 3195 31 6.99608e+06 206020 787024. 2723.27 14.65 0.268282 0.233092 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0219601 0.0195083 91 62 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.75 vpr 64.57 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33524 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 26.1 MiB 2.75 536 9041 3932 4796 313 64.6 MiB 0.05 0.00 2.34646 -88.6787 -2.34646 2.34646 0.90 0.000354287 0.00032528 0.0227434 0.0207944 36 1652 38 6.99608e+06 161872 648988. 2245.63 2.07 0.108982 0.0945165 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.31 0.04 0.15 -1 -1 0.31 0.0162513 0.0143535 56 29 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 15.07 vpr 65.65 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34136 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 27.1 MiB 2.30 1018 11532 3380 6660 1492 65.7 MiB 0.08 0.00 3.58639 -133.629 -3.58639 3.58639 0.89 0.000442336 0.000406178 0.0339387 0.0308968 40 2527 22 6.99608e+06 220735 706193. 2443.58 9.74 0.252468 0.218894 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0218821 0.0193627 91 55 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.93 vpr 65.86 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33708 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 27.2 MiB 0.46 1089 12759 4547 6573 1639 65.9 MiB 0.08 0.00 4.04748 -146.851 -4.04748 4.04748 0.89 0.000445521 0.000406179 0.0342431 0.03127 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.34 0.149109 0.130343 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.36 0.07 0.19 -1 -1 0.36 0.0239892 0.0213199 97 31 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 7.42 vpr 65.86 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33876 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 27.6 MiB 1.33 1280 15206 4884 7262 3060 65.9 MiB 0.12 0.00 4.01908 -141.768 -4.01908 4.01908 0.90 0.000596134 0.000539368 0.0519353 0.0471429 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.90 0.203544 0.179412 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.030238 0.0268509 138 108 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.85 vpr 64.87 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 34176 -1 -1 15 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 26.5 MiB 0.84 401 7217 2934 3827 456 64.9 MiB 0.04 0.00 2.7074 -79.2163 -2.7074 2.7074 0.88 0.000306059 0.000277963 0.0163875 0.0149713 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.17 0.0831545 0.0724702 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.32 0.04 0.14 -1 -1 0.32 0.0126379 0.0111867 52 21 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 9.94 vpr 65.17 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33788 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 26.6 MiB 0.95 698 9036 3669 4978 389 65.2 MiB 0.07 0.00 3.97238 -133.231 -3.97238 3.97238 0.89 0.000506057 0.000464574 0.0299262 0.0273504 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 5.68 0.202462 0.175053 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.48 0.07 0.27 -1 -1 0.48 0.0241355 0.0213648 75 -1 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.83 vpr 64.66 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33972 -1 -1 8 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.4 MiB 0.30 736 9906 3603 5031 1272 64.7 MiB 0.06 0.00 2.06111 -84.6894 -2.06111 2.06111 0.90 0.000327207 0.00029752 0.023387 0.0213314 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.65 0.100975 0.0877673 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.01587 0.0139911 44 -1 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.25 vpr 65.91 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 34176 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 27.2 MiB 1.32 836 12681 5269 6945 467 65.9 MiB 0.09 0.00 3.87925 -141.78 -3.87925 3.87925 0.89 0.00049879 0.000455441 0.0390253 0.035519 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.83 0.177251 0.155176 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0265962 0.0235587 95 21 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.95 vpr 65.33 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34064 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 26.7 MiB 0.27 1064 14375 4737 7721 1917 65.3 MiB 0.10 0.00 2.93295 -116.62 -2.93295 2.93295 0.90 0.000514271 0.00047028 0.0368601 0.0336254 40 2476 21 6.99608e+06 412039 706193. 2443.58 4.57 0.211938 0.183998 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.34 0.07 0.17 -1 -1 0.34 0.022993 0.0203487 87 -1 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 9.61 vpr 66.05 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34116 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67636 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 27.5 MiB 0.84 1077 13105 3562 8179 1364 66.1 MiB 0.11 0.00 3.82425 -139.818 -3.82425 3.82425 0.89 0.000561171 0.000508344 0.0418683 0.0382113 46 3235 48 6.99608e+06 309029 828058. 2865.25 5.52 0.25724 0.222994 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.40 0.08 0.20 -1 -1 0.40 0.026394 0.0233549 115 54 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.37 vpr 65.10 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 33772 -1 -1 11 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 26.6 MiB 1.17 701 9397 3869 5271 257 65.1 MiB 0.07 0.00 2.9841 -107.493 -2.9841 2.9841 0.86 0.000419863 0.000382709 0.0278376 0.0253656 40 2056 26 6.99608e+06 161872 706193. 2443.58 4.23 0.169448 0.146612 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.34 0.07 0.18 -1 -1 0.34 0.021091 0.0186306 72 31 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 16.10 vpr 65.16 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 33896 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 26.6 MiB 9.01 650 7975 2399 4401 1175 65.2 MiB 0.06 0.00 3.55679 -118.022 -3.55679 3.55679 0.91 0.000443404 0.000404042 0.0247385 0.0226127 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.94 0.145161 0.126432 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0220169 0.0195151 73 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.78 vpr 64.81 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33848 -1 -1 15 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 26.3 MiB 1.26 739 7975 3247 4371 357 64.8 MiB 0.06 0.00 3.69125 -116.127 -3.69125 3.69125 0.86 0.000396404 0.000361313 0.0222771 0.0203386 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.62 0.126543 0.110615 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0195225 0.0172935 72 27 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.75 vpr 65.00 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33868 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.6 MiB 0.18 696 7204 2957 4121 126 65.0 MiB 0.05 0.00 2.86245 -113.51 -2.86245 2.86245 0.89 0.000386249 0.00034849 0.0212019 0.0192844 42 2358 35 6.99608e+06 147157 744469. 2576.02 4.57 0.164781 0.141957 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.37 0.06 0.17 -1 -1 0.37 0.0191664 0.0170059 64 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.88 vpr 65.35 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33756 -1 -1 15 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 26.8 MiB 0.78 709 9540 3934 5278 328 65.4 MiB 0.07 0.00 2.94395 -107.519 -2.94395 2.94395 0.91 0.000455738 0.000416293 0.0283623 0.0259205 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.98 0.135308 0.118745 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0208708 0.0185321 77 26 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 10.74 vpr 65.38 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33992 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 26.7 MiB 3.47 930 10835 4554 5858 423 65.4 MiB 0.08 0.00 2.88685 -103.645 -2.88685 2.88685 0.92 0.000412381 0.000376061 0.0316247 0.0288521 36 2556 47 6.99608e+06 235451 648988. 2245.63 4.23 0.166086 0.146233 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0202622 0.0179206 86 55 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 9.86 vpr 66.10 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33908 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67688 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 27.6 MiB 1.13 1138 15273 6065 7495 1713 66.1 MiB 0.13 0.00 3.90815 -143.373 -3.90815 3.90815 0.91 0.000573733 0.000520773 0.0522739 0.0475658 46 3798 44 6.99608e+06 294314 828058. 2865.25 5.44 0.229631 0.203224 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0302255 0.0268695 106 26 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.29 vpr 65.74 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33776 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 27.3 MiB 1.19 999 10762 3395 5388 1979 65.7 MiB 0.08 0.00 4.20458 -152.083 -4.20458 4.20458 0.90 0.000476551 0.000433375 0.0350554 0.0318811 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.77 0.158214 0.138172 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.51 0.08 0.27 -1 -1 0.51 0.0269473 0.0238935 110 62 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 6.88 vpr 65.78 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34336 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 27.2 MiB 0.92 1070 8867 2185 5933 749 65.8 MiB 0.07 0.00 3.49385 -125.494 -3.49385 3.49385 0.91 0.000486957 0.000445449 0.0283771 0.0259422 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.90 0.152811 0.133665 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0241359 0.0213708 99 77 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 15.95 vpr 65.80 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33788 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 27.1 MiB 0.92 1182 9006 2249 6265 492 65.8 MiB 0.08 0.00 3.66135 -134.693 -3.66135 3.66135 0.91 0.000561006 0.000512033 0.0342546 0.0287176 40 2955 30 6.99608e+06 264882 706193. 2443.58 11.89 0.282875 0.243048 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0251166 0.0223281 105 59 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.27 vpr 65.84 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33792 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67420 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 27.6 MiB 1.18 1281 17663 7641 9474 548 65.8 MiB 0.14 0.00 4.62587 -160.146 -4.62587 4.62587 0.91 0.000611701 0.000550167 0.0593909 0.0539784 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.72 0.207112 0.182623 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.41 0.12 0.20 -1 -1 0.41 0.0316314 0.0279985 138 111 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 21.68 vpr 65.79 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33836 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67372 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 27.3 MiB 3.59 1159 10762 4075 5172 1515 65.8 MiB 0.10 0.00 4.92973 -159.817 -4.92973 4.92973 0.89 0.000556598 0.000506116 0.0364979 0.0333387 44 3431 27 6.99608e+06 279598 787024. 2723.27 14.91 0.281477 0.243443 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.37 0.09 0.19 -1 -1 0.37 0.0294294 0.0261988 117 86 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 8.41 vpr 66.01 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33844 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67592 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 27.2 MiB 2.66 1059 13763 5785 7510 468 66.0 MiB 0.11 0.00 3.58185 -130.714 -3.58185 3.58185 0.92 0.000542047 0.000491382 0.045013 0.041087 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.48 0.161311 0.1423 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0272259 0.0241876 107 58 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 22.81 vpr 66.00 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34312 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67580 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.2 MiB 0.93 1271 6556 1686 3783 1087 66.0 MiB 0.06 0.00 3.81927 -146.587 -3.81927 3.81927 0.92 0.000541762 0.000493067 0.0235816 0.0215652 40 3290 49 6.99608e+06 250167 706193. 2443.58 18.73 0.322134 0.280771 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.33 0.14 0.16 -1 -1 0.33 0.0318931 0.0281764 110 42 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.77 vpr 65.96 MiB 0.02 7484 -1 -1 1 0.04 -1 -1 33844 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67540 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 27.6 MiB 2.31 1530 16529 5778 8459 2292 66.0 MiB 0.14 0.00 4.81093 -174.639 -4.81093 4.81093 0.90 0.000601178 0.000544089 0.0566811 0.0513544 46 4411 29 6.99608e+06 323745 828058. 2865.25 4.08 0.219956 0.193522 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.38 0.13 0.18 -1 -1 0.38 0.0344467 0.030479 139 91 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 8.02 vpr 65.00 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33692 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 26.5 MiB 0.93 802 9996 3771 4383 1842 65.0 MiB 0.07 0.00 3.1395 -118.304 -3.1395 3.1395 0.91 0.000450362 0.000410703 0.030501 0.0278742 44 2051 29 6.99608e+06 191304 787024. 2723.27 3.99 0.173511 0.150446 27778 195446 -1 1628 20 1398 1706 120876 25222 3.03987 3.03987 -121.096 -3.03987 0 0 997811. 3452.63 0.37 0.05 0.19 -1 -1 0.37 0.0209029 0.0185957 75 24 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 26.92 vpr 65.76 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33900 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 26.9 MiB 0.76 1237 14606 4845 8003 1758 65.8 MiB 0.12 0.00 4.54014 -162.571 -4.54014 4.54014 0.89 0.000524808 0.000477975 0.0476648 0.0434727 44 3549 35 6.99608e+06 264882 787024. 2723.27 22.95 0.295915 0.256354 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0277241 0.0244939 106 59 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.09 vpr 65.89 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 33792 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67472 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 27.1 MiB 1.23 1279 13077 3808 7089 2180 65.9 MiB 0.11 0.00 3.54953 -133.609 -3.54953 3.54953 0.91 0.00055123 0.000502629 0.0430906 0.0393456 46 3226 21 6.99608e+06 294314 828058. 2865.25 4.65 0.219198 0.190918 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.37 0.07 0.20 -1 -1 0.37 0.0257777 0.0228591 108 54 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.99 vpr 65.07 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33576 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 26.5 MiB 0.90 797 9368 3826 5299 243 65.1 MiB 0.08 0.00 3.54729 -133.832 -3.54729 3.54729 0.92 0.000525447 0.0004676 0.0323398 0.0295121 46 2734 24 6.99608e+06 191304 828058. 2865.25 4.88 0.211791 0.184744 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0246445 0.0218504 77 -1 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.40 vpr 65.80 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33968 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67384 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 27.2 MiB 1.54 1139 10883 2905 7208 770 65.8 MiB 0.09 0.00 3.32994 -127.882 -3.32994 3.32994 0.88 0.000564099 0.000513253 0.0366936 0.0334619 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.69 0.17228 0.150153 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0273369 0.0242001 120 81 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.06 vpr 65.93 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33444 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67512 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 27.1 MiB 1.05 1139 12528 3436 7246 1846 65.9 MiB 0.10 0.00 3.59669 -136.453 -3.59669 3.59669 0.92 0.000557742 0.000508037 0.0412132 0.0376094 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.79 0.197805 0.174363 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.36 0.11 0.17 -1 -1 0.36 0.0278941 0.0247295 106 58 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 7.22 vpr 66.02 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33960 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67608 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 27.5 MiB 0.80 1314 14431 4781 7561 2089 66.0 MiB 0.12 0.00 3.61639 -141.899 -3.61639 3.61639 0.92 0.000538715 0.000492479 0.0475546 0.0432534 40 3393 43 6.99608e+06 250167 706193. 2443.58 3.22 0.194713 0.170695 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0290337 0.0257362 108 61 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.31 vpr 65.58 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33788 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 26.9 MiB 1.05 813 11432 3614 6147 1671 65.6 MiB 0.09 0.00 3.93015 -141.517 -3.93015 3.93015 0.89 0.000542201 0.000494914 0.0362877 0.0331582 48 3063 38 6.99608e+06 235451 865456. 2994.66 4.03 0.174272 0.15273 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.40 0.11 0.20 -1 -1 0.40 0.0276129 0.0243771 94 21 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.69 vpr 65.77 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 34060 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 27.1 MiB 0.99 930 14500 5516 6956 2028 65.8 MiB 0.12 0.00 3.81585 -138.808 -3.81585 3.81585 0.92 0.00057935 0.00052777 0.0487357 0.0444538 48 2890 25 6.99608e+06 264882 865456. 2994.66 4.44 0.239101 0.208307 28354 207349 -1 2363 24 2399 2877 266284 57481 4.45202 4.45202 -164.609 -4.45202 0 0 1.05005e+06 3633.38 0.39 0.09 0.20 -1 -1 0.39 0.0288067 0.0254317 110 50 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 10.62 vpr 65.71 MiB 0.02 7552 -1 -1 1 0.03 -1 -1 34116 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67288 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 27.5 MiB 1.70 1399 14035 5589 6713 1733 65.7 MiB 0.12 0.00 3.97768 -141.845 -3.97768 3.97768 0.90 0.000586085 0.000532121 0.0479505 0.0435424 44 3778 32 6.99608e+06 323745 787024. 2723.27 5.69 0.278607 0.241542 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0270243 0.0240384 132 110 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 9.18 vpr 65.66 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 34108 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.2 MiB 1.01 1318 15273 5215 8174 1884 65.7 MiB 0.12 0.00 3.73195 -141.182 -3.73195 3.73195 0.91 0.000583123 0.000528464 0.0518841 0.0470735 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.92 0.207409 0.182923 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.36 0.17 0.17 -1 -1 0.36 0.0393706 0.0346794 126 86 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 16.88 vpr 65.38 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34224 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 26.9 MiB 0.57 921 12528 4814 6023 1691 65.4 MiB 0.09 0.00 2.98795 -120.412 -2.98795 2.98795 0.87 0.000411594 0.000376424 0.0361752 0.0330881 46 2359 25 6.99608e+06 206020 828058. 2865.25 13.25 0.252567 0.219107 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.37 0.07 0.19 -1 -1 0.37 0.0227933 0.0201455 80 20 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 7.59 vpr 65.75 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33728 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 27.0 MiB 1.01 1095 11776 4100 5415 2261 65.8 MiB 0.09 0.00 3.80663 -140.003 -3.80663 3.80663 0.91 0.000506417 0.00046179 0.0377242 0.0344317 46 2887 24 6.99608e+06 235451 828058. 2865.25 3.36 0.157331 0.13808 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0242763 0.0215096 108 91 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.46 vpr 66.06 MiB 0.02 7520 -1 -1 1 0.04 -1 -1 34008 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67644 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 27.8 MiB 0.92 1231 15273 6501 8321 451 66.1 MiB 0.13 0.00 4.57343 -162.846 -4.57343 4.57343 0.90 0.000671378 0.000610409 0.0536267 0.0487226 54 3744 47 6.99608e+06 294314 949917. 3286.91 6.16 0.314054 0.27321 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.44 0.13 0.22 -1 -1 0.44 0.0350263 0.0310421 126 53 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 15.60 vpr 65.56 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 26.9 MiB 0.72 1100 10916 2969 6188 1759 65.6 MiB 0.09 0.00 3.58059 -138.842 -3.58059 3.58059 0.89 0.000505461 0.00045776 0.0353377 0.0323044 40 2715 36 6.99608e+06 235451 706193. 2443.58 11.78 0.278987 0.2417 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.34 0.08 0.17 -1 -1 0.34 0.0266428 0.0235719 93 31 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 13.88 vpr 65.33 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33804 -1 -1 24 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 26.8 MiB 0.72 716 11804 3687 5992 2125 65.3 MiB 0.07 0.00 3.75245 -123.293 -3.75245 3.75245 0.85 0.000382906 0.000348617 0.0279478 0.0255357 40 2192 44 6.99608e+06 353176 706193. 2443.58 10.12 0.249694 0.217378 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0239272 0.0210767 80 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.57 vpr 66.20 MiB 0.02 7548 -1 -1 1 0.04 -1 -1 34580 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67792 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 27.8 MiB 0.98 1504 15883 5797 7858 2228 66.2 MiB 0.14 0.00 5.34997 -188.353 -5.34997 5.34997 0.91 0.00067742 0.000612589 0.056892 0.0516149 56 3670 24 6.99608e+06 353176 973134. 3367.25 6.11 0.301209 0.262798 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.45 0.12 0.25 -1 -1 0.45 0.0353323 0.0316701 159 109 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 8.60 vpr 65.76 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33752 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 27.0 MiB 0.80 938 15044 6550 8115 379 65.8 MiB 0.12 0.00 4.27644 -157.663 -4.27644 4.27644 0.89 0.00053919 0.000488834 0.0498438 0.0453729 48 2674 27 6.99608e+06 235451 865456. 2994.66 4.59 0.231104 0.201368 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.38 0.08 0.19 -1 -1 0.38 0.0243566 0.021579 92 31 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 8.46 vpr 65.18 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33976 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.7 MiB 0.25 660 12763 5275 7138 350 65.2 MiB 0.08 0.00 2.98775 -114.509 -2.98775 2.98775 0.87 0.000438962 0.000400008 0.030829 0.0281603 46 2129 35 6.99608e+06 353176 828058. 2865.25 5.17 0.193876 0.168919 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.37 0.07 0.19 -1 -1 0.37 0.0223127 0.0197067 70 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 7.40 vpr 66.14 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34156 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 27.3 MiB 0.82 1143 13432 5563 7207 662 66.1 MiB 0.12 0.00 4.46895 -161.038 -4.46895 4.46895 0.89 0.000586402 0.000532756 0.0487365 0.0444618 46 4011 41 6.99608e+06 264882 828058. 2865.25 3.27 0.193846 0.170278 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.39 0.11 0.20 -1 -1 0.39 0.0307729 0.027391 112 26 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.49 vpr 65.25 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 33668 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.8 MiB 0.28 625 10614 4416 5947 251 65.3 MiB 0.07 0.00 2.85145 -111.794 -2.85145 2.85145 0.86 0.000404573 0.000368881 0.0287062 0.0262508 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.26 0.125129 0.109791 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.0220873 0.0195382 62 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.28 vpr 65.12 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33756 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 26.6 MiB 0.86 755 9857 4076 5498 283 65.1 MiB 0.07 0.00 3.30794 -118.735 -3.30794 3.30794 0.91 0.000394141 0.00035921 0.0285627 0.0260726 44 2377 21 6.99608e+06 220735 787024. 2723.27 2.29 0.126438 0.110481 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0215636 0.0190448 74 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.89 vpr 66.00 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 34040 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67584 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 27.5 MiB 2.00 1003 15481 6003 6865 2613 66.0 MiB 0.12 0.00 3.85703 -126.704 -3.85703 3.85703 0.89 0.000516967 0.000469628 0.0490691 0.0447766 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.69 0.18351 0.160818 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0276188 0.0244365 113 81 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.06 vpr 66.05 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 34400 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67636 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 27.1 MiB 1.06 1068 14144 5407 6800 1937 66.1 MiB 0.11 0.00 4.29664 -157.784 -4.29664 4.29664 0.92 0.000547393 0.000498078 0.0471392 0.0429414 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.78 0.184794 0.16253 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.37 0.09 0.17 -1 -1 0.37 0.0286799 0.0255035 109 53 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.53 vpr 65.96 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34056 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67548 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 27.5 MiB 1.12 1151 6846 1472 4993 381 66.0 MiB 0.07 0.00 4.30354 -157.84 -4.30354 4.30354 0.92 0.000539001 0.000489876 0.0243534 0.0222989 44 3666 26 6.99608e+06 264882 787024. 2723.27 5.24 0.239205 0.208146 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.36 0.10 0.17 -1 -1 0.36 0.0276452 0.024606 110 55 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.46 vpr 65.18 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 33940 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 26.8 MiB 0.76 792 12585 5306 6906 373 65.2 MiB 0.09 0.00 3.44424 -128.433 -3.44424 3.44424 0.87 0.000480973 0.000438082 0.0380245 0.034736 46 2594 31 6.99608e+06 220735 828058. 2865.25 2.63 0.135047 0.118917 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.37 0.08 0.18 -1 -1 0.37 0.0248164 0.021957 92 55 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.90 vpr 65.48 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33812 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 27.0 MiB 2.83 885 11260 4668 6241 351 65.5 MiB 0.08 0.00 3.46644 -123.995 -3.46644 3.46644 0.91 0.00045578 0.0004165 0.0343635 0.0313138 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.86 0.157538 0.137248 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0235554 0.0209531 102 82 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 21.78 vpr 65.73 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33972 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 27.0 MiB 1.35 904 12506 5230 6653 623 65.7 MiB 0.10 0.00 3.42074 -117.96 -3.42074 3.42074 0.90 0.000531833 0.000482813 0.0398565 0.0363883 44 3198 37 6.99608e+06 279598 787024. 2723.27 17.24 0.290176 0.251631 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0259755 0.0229896 101 52 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.67 vpr 65.10 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34064 -1 -1 18 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 26.7 MiB 0.74 824 9872 4064 5274 534 65.1 MiB 0.08 0.00 3.73195 -121.956 -3.73195 3.73195 0.89 0.000476583 0.000436043 0.0303971 0.0277895 44 2539 27 6.99608e+06 264882 787024. 2723.27 4.81 0.210132 0.181897 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0244259 0.0215498 87 20 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.53 vpr 65.72 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34156 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 27.1 MiB 2.09 814 10672 3702 5165 1805 65.7 MiB 0.08 0.00 4.51934 -148.35 -4.51934 4.51934 0.92 0.000471897 0.00043002 0.0328837 0.0300086 44 2874 44 6.99608e+06 220735 787024. 2723.27 3.25 0.166856 0.146519 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0231474 0.020572 88 58 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 11.81 vpr 65.70 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33704 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 27.2 MiB 3.30 1000 12585 4720 5647 2218 65.7 MiB 0.10 0.00 3.77345 -134.122 -3.77345 3.77345 0.90 0.000523128 0.000478546 0.0401827 0.0366669 46 3110 45 6.99608e+06 220735 828058. 2865.25 5.32 0.21598 0.187742 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0248371 0.0219502 104 88 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.03 vpr 65.47 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33968 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.9 MiB 0.14 808 15688 5217 8110 2361 65.5 MiB 0.12 0.00 3.76925 -134.079 -3.76925 3.76925 0.91 0.000485912 0.000447834 0.042421 0.0387347 46 3039 46 6.99608e+06 367892 828058. 2865.25 4.65 0.192949 0.169878 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0248077 0.0219702 86 -1 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 6.95 vpr 65.97 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 34212 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67552 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 27.5 MiB 0.79 1209 11281 3120 7720 441 66.0 MiB 0.10 0.00 4.19534 -154.628 -4.19534 4.19534 0.89 0.000542502 0.000497779 0.0384988 0.0351681 44 3513 23 6.99608e+06 250167 787024. 2723.27 2.96 0.154568 0.135626 27778 195446 -1 2754 24 2419 3189 274672 55034 4.82351 4.82351 -173.98 -4.82351 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.029386 0.0260125 110 57 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.30 vpr 65.82 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 34012 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 27.3 MiB 0.71 1142 12364 5175 6807 382 65.8 MiB 0.10 0.00 5.12678 -171.348 -5.12678 5.12678 0.90 0.000552903 0.000504018 0.0417509 0.0381272 54 3283 29 6.99608e+06 264882 949917. 3286.91 3.29 0.173811 0.152371 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.44 0.09 0.24 -1 -1 0.44 0.0262115 0.0233545 108 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 27.26 vpr 65.92 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34012 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67500 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 27.1 MiB 0.68 1089 13788 4649 7550 1589 65.9 MiB 0.12 0.00 4.15408 -148.064 -4.15408 4.15408 0.89 0.00050811 0.00046331 0.0455063 0.0414409 44 3953 47 6.99608e+06 264882 787024. 2723.27 23.40 0.334955 0.29104 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0264533 0.023413 107 62 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.83 vpr 65.28 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33604 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 26.8 MiB 0.90 692 12241 5462 6300 479 65.3 MiB 0.08 0.00 3.58339 -124.571 -3.58339 3.58339 0.90 0.000453889 0.00041288 0.0347155 0.0316418 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.74 0.145846 0.127625 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.39 0.07 0.20 -1 -1 0.39 0.0198045 0.0175575 76 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 9.70 vpr 65.98 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34108 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67568 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 27.2 MiB 2.68 1070 13152 5486 7187 479 66.0 MiB 0.11 0.00 4.68713 -157.481 -4.68713 4.68713 0.92 0.000528531 0.000480728 0.0440928 0.040235 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.73 0.194454 0.172043 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0265934 0.0237148 105 58 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.43 vpr 65.90 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34264 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.88 1372 11615 4190 5568 1857 65.9 MiB 0.10 0.00 4.17744 -155.5 -4.17744 4.17744 0.90 0.000577081 0.000526513 0.0394415 0.0359716 46 3391 25 6.99608e+06 323745 828058. 2865.25 3.32 0.175675 0.153427 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0307258 0.0271856 139 106 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 11.01 vpr 65.70 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 34036 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 27.3 MiB 1.68 1101 12733 5285 6817 631 65.7 MiB 0.10 0.00 4.35899 -150.667 -4.35899 4.35899 0.89 0.000566976 0.00051643 0.0420504 0.0383469 54 2946 36 6.99608e+06 323745 949917. 3286.91 6.04 0.269216 0.233119 29506 232905 -1 2087 21 2106 2410 180381 43349 4.43961 4.43961 -155.342 -4.43961 0 0 1.17392e+06 4061.99 0.42 0.07 0.24 -1 -1 0.42 0.026752 0.0237756 125 79 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.29 vpr 65.54 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 33832 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67116 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 27.0 MiB 3.15 1072 15456 6595 7994 867 65.5 MiB 0.12 0.00 4.1343 -135.415 -4.1343 4.1343 0.92 0.000551695 0.000501962 0.0488812 0.0444861 48 3698 50 6.99608e+06 323745 865456. 2994.66 3.81 0.21101 0.186105 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.41 0.12 0.20 -1 -1 0.41 0.0290891 0.0257874 114 83 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.31 vpr 65.84 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33964 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67416 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.4 MiB 1.05 1174 14500 5592 7226 1682 65.8 MiB 0.12 0.00 4.33244 -160.384 -4.33244 4.33244 0.92 0.000558247 0.000508257 0.0493122 0.0450118 52 3431 27 6.99608e+06 264882 926341. 3205.33 5.88 0.280663 0.244636 29218 227130 -1 2854 23 2777 3848 399366 78126 5.03681 5.03681 -182.418 -5.03681 0 0 1.14541e+06 3963.36 0.44 0.11 0.23 -1 -1 0.44 0.0292018 0.0259116 110 58 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 21.03 vpr 65.74 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 33712 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67320 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 27.2 MiB 2.00 1070 11106 4662 5983 461 65.7 MiB 0.09 0.00 3.53179 -119.754 -3.53179 3.53179 0.92 0.000514206 0.000467906 0.0370254 0.0337799 38 3405 45 6.99608e+06 294314 678818. 2348.85 15.88 0.315966 0.27575 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0282002 0.0249231 112 81 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 6.24 vpr 64.80 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 33784 -1 -1 10 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 26.4 MiB 0.74 592 9684 3186 4658 1840 64.8 MiB 0.07 0.00 2.86245 -110.719 -2.86245 2.86245 0.89 0.000430807 0.000391653 0.0294891 0.0268464 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.52 0.142608 0.124035 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.34 0.07 0.16 -1 -1 0.34 0.0207819 0.0183218 62 -1 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 6.93 vpr 65.63 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33924 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 27.1 MiB 0.75 999 9872 3990 5501 381 65.6 MiB 0.08 0.00 4.9054 -173.166 -4.9054 4.9054 0.91 0.000571765 0.000509958 0.0338973 0.030948 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.79 0.166202 0.145977 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.50 0.09 0.26 -1 -1 0.50 0.0306709 0.0272672 110 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 7.22 vpr 65.43 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 26.9 MiB 0.92 1203 7431 1958 4126 1347 65.4 MiB 0.07 0.00 4.63877 -167.295 -4.63877 4.63877 0.90 0.000566801 0.000515912 0.0269636 0.024669 44 3706 30 6.99608e+06 250167 787024. 2723.27 3.08 0.165826 0.145493 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0300421 0.0267193 111 62 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 10.80 vpr 65.30 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33852 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 26.8 MiB 2.45 766 11324 4293 5664 1367 65.3 MiB 0.08 0.00 3.24452 -112.954 -3.24452 3.24452 0.90 0.000440973 0.000402298 0.0334213 0.0305045 52 2311 46 6.99608e+06 191304 926341. 3205.33 5.09 0.199404 0.17264 29218 227130 -1 1681 29 1656 1972 307039 128679 3.27646 3.27646 -116.799 -3.27646 0 0 1.14541e+06 3963.36 0.43 0.11 0.22 -1 -1 0.43 0.0272859 0.0240236 85 47 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 13.75 vpr 64.82 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 34000 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.4 MiB 0.23 592 7514 3020 4270 224 64.8 MiB 0.06 0.00 3.0031 -111.146 -3.0031 3.0031 0.89 0.000421914 0.000385142 0.0233461 0.0213746 44 2109 28 6.99608e+06 161872 787024. 2723.27 10.45 0.212876 0.184417 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0208086 0.0182673 63 -1 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 16.91 vpr 65.83 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33580 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 27.2 MiB 0.97 1014 12331 5131 6918 282 65.8 MiB 0.09 0.00 4.03648 -138.539 -4.03648 4.03648 0.90 0.000530019 0.000483756 0.0393761 0.0357509 40 2840 45 6.99608e+06 250167 706193. 2443.58 12.80 0.301401 0.261819 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.35 0.15 0.16 -1 -1 0.35 0.0342849 0.0300827 102 56 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.67 vpr 65.81 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33680 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 27.3 MiB 1.52 1077 13043 5447 7262 334 65.8 MiB 0.11 0.00 4.38874 -150.527 -4.38874 4.38874 0.87 0.00054338 0.000493466 0.0434383 0.0396576 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.95 0.192073 0.169137 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.39 0.15 0.19 -1 -1 0.39 0.036185 0.0320275 115 81 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 9.07 vpr 65.68 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33748 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.0 MiB 0.37 981 8047 1739 5489 819 65.7 MiB 0.07 0.00 4.28063 -149.977 -4.28063 4.28063 0.88 0.000586435 0.000527878 0.0261154 0.023822 48 3128 28 6.99608e+06 397324 865456. 2994.66 5.56 0.228653 0.1985 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.42 0.10 0.20 -1 -1 0.42 0.0307481 0.0273493 100 -1 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.60 vpr 65.25 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34184 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 26.6 MiB 1.03 884 14431 6074 7798 559 65.2 MiB 0.11 0.00 3.66815 -119.86 -3.66815 3.66815 0.91 0.000517609 0.000471056 0.0459424 0.0419511 40 3422 29 6.99608e+06 279598 706193. 2443.58 4.40 0.173477 0.152466 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0266837 0.0237382 101 47 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 9.01 vpr 64.85 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 34004 -1 -1 16 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 26.4 MiB 1.56 589 11925 5033 6263 629 64.8 MiB 0.08 0.00 3.68305 -110.555 -3.68305 3.68305 0.89 0.00039159 0.00035617 0.0321414 0.0293821 40 1692 28 6.99608e+06 235451 706193. 2443.58 4.41 0.166198 0.143933 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.35 0.05 0.17 -1 -1 0.35 0.0180118 0.0159704 67 26 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 10.16 vpr 66.18 MiB 0.02 7444 -1 -1 1 0.04 -1 -1 34120 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67764 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 27.9 MiB 0.98 1512 15151 5383 7381 2387 66.2 MiB 0.15 0.00 4.46404 -157.207 -4.46404 4.46404 0.90 0.000671143 0.000610581 0.056869 0.0517322 54 3932 27 6.99608e+06 309029 949917. 3286.91 5.74 0.294021 0.256776 29506 232905 -1 3228 23 2653 3708 434053 80854 4.60891 4.60891 -163.196 -4.60891 0 0 1.17392e+06 4061.99 0.44 0.12 0.23 -1 -1 0.44 0.0345948 0.0307875 141 85 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 21.43 vpr 65.83 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34364 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67408 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 27.6 MiB 3.05 1389 9013 2681 4820 1512 65.8 MiB 0.08 0.00 4.97674 -167.764 -4.97674 4.97674 0.89 0.000589296 0.000537034 0.0314426 0.028702 42 3808 25 6.99608e+06 323745 744469. 2576.02 15.21 0.270807 0.233454 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.35 0.10 0.18 -1 -1 0.35 0.0296781 0.0263763 138 105 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 8.63 vpr 65.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33804 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 26.9 MiB 3.30 1031 11233 4729 6294 210 65.6 MiB 0.09 0.00 3.87693 -140.03 -3.87693 3.87693 0.86 0.000480869 0.000438957 0.0359115 0.0327453 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.22 0.138572 0.122006 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0241401 0.0214656 102 86 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 9.30 vpr 65.75 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 34124 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 27.1 MiB 1.08 1034 14184 5996 7912 276 65.8 MiB 0.11 0.00 3.78975 -136.67 -3.78975 3.78975 0.89 0.000486966 0.000440653 0.043638 0.0396854 46 3037 39 6.99608e+06 235451 828058. 2865.25 5.07 0.226796 0.196978 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.39 0.08 0.18 -1 -1 0.39 0.0261244 0.023147 92 31 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 16.84 vpr 66.14 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 34328 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 27.6 MiB 1.62 1068 13943 4857 7191 1895 66.1 MiB 0.11 0.00 3.9689 -135.877 -3.9689 3.9689 0.85 0.00052402 0.00047846 0.0460794 0.0419891 38 3765 35 6.99608e+06 294314 678818. 2348.85 12.18 0.330563 0.28887 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0275507 0.0245592 117 50 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.24 vpr 65.65 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 34148 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 27.0 MiB 1.23 1088 13788 5313 5928 2547 65.7 MiB 0.11 0.00 3.56069 -123.887 -3.56069 3.56069 0.91 0.000533889 0.000488932 0.0432862 0.0394952 36 3765 43 6.99608e+06 294314 648988. 2245.63 3.87 0.157322 0.137942 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.33 0.10 0.16 -1 -1 0.33 0.0267725 0.0237062 101 50 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.07 vpr 66.05 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34152 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67632 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.1 MiB 0.74 1034 13906 5203 6656 2047 66.0 MiB 0.12 0.00 4.17744 -150.809 -4.17744 4.17744 0.90 0.000545381 0.000496954 0.0480788 0.0438008 46 3490 34 6.99608e+06 250167 828058. 2865.25 3.10 0.170664 0.150062 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0264237 0.0235259 107 61 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.85 vpr 65.97 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 33836 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67552 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 27.2 MiB 0.80 1295 11830 3708 6867 1255 66.0 MiB 0.10 0.00 3.61179 -138.351 -3.61179 3.61179 0.88 0.000558012 0.000508178 0.0395265 0.0361203 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.90 0.179197 0.157978 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.37 0.09 0.18 -1 -1 0.37 0.0274689 0.0245003 108 61 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 8.35 vpr 65.34 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 33916 -1 -1 14 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 26.8 MiB 1.37 714 7817 3113 4376 328 65.3 MiB 0.06 0.00 3.29694 -113.946 -3.29694 3.29694 0.89 0.000420336 0.000383622 0.0228023 0.0208634 36 2003 34 6.99608e+06 206020 648988. 2245.63 4.01 0.165619 0.143038 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0201826 0.0178775 73 28 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 8.28 vpr 65.17 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33984 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 26.8 MiB 2.85 796 13192 4518 6301 2373 65.2 MiB 0.09 0.00 3.75163 -124.237 -3.75163 3.75163 0.89 0.00047636 0.000433132 0.0376071 0.0341118 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.31 0.132793 0.115979 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.40 0.08 0.19 -1 -1 0.40 0.0241853 0.0213518 91 79 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 17.18 vpr 65.65 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33688 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 27.0 MiB 0.70 1104 8164 1792 5984 388 65.7 MiB 0.07 0.00 3.79614 -138.31 -3.79614 3.79614 0.92 0.000562287 0.000515576 0.0280644 0.0256598 38 3147 50 6.99608e+06 250167 678818. 2348.85 13.41 0.270941 0.23464 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0252423 0.0223025 92 29 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.96 vpr 65.43 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33788 -1 -1 16 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 26.8 MiB 1.88 924 11813 4851 6237 725 65.4 MiB 0.08 0.00 3.23604 -112.025 -3.23604 3.23604 0.90 0.000441097 0.000401906 0.0337346 0.0308183 38 2436 26 6.99608e+06 235451 678818. 2348.85 3.02 0.13259 0.115757 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0212031 0.018691 81 48 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.54 vpr 65.28 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33696 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 26.8 MiB 0.80 800 12628 5339 6973 316 65.3 MiB 0.09 0.00 3.56959 -131.903 -3.56959 3.56959 0.89 0.00044999 0.000409323 0.0379195 0.0345763 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.62 0.137641 0.121125 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0196209 0.0175189 79 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 17.92 vpr 65.72 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33684 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67296 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 27.0 MiB 1.37 964 11296 3574 5293 2429 65.7 MiB 0.09 0.00 4.06828 -143.162 -4.06828 4.06828 0.89 0.000533734 0.000486932 0.0368985 0.0337134 40 3214 32 6.99608e+06 279598 706193. 2443.58 13.42 0.289775 0.250671 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0265691 0.0235694 105 60 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.01 vpr 65.13 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34112 -1 -1 13 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 26.5 MiB 2.76 694 11756 4613 5996 1147 65.1 MiB 0.08 0.00 3.23724 -109.795 -3.23724 3.23724 0.88 0.000432362 0.000393682 0.0355787 0.0325258 48 2270 42 6.99608e+06 191304 865456. 2994.66 3.17 0.156816 0.137666 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.39 0.06 0.19 -1 -1 0.39 0.0207282 0.0183914 81 49 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 7.79 vpr 65.89 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34088 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 27.2 MiB 1.76 911 15034 6476 7971 587 65.9 MiB 0.11 0.00 3.61105 -126.923 -3.61105 3.61105 0.90 0.000492435 0.000447155 0.0461108 0.0418664 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.78 0.167153 0.146724 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.44 0.08 0.21 -1 -1 0.44 0.0248187 0.021854 103 56 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 7.89 vpr 65.88 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34236 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67464 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 27.5 MiB 0.91 1135 16081 6006 7648 2427 65.9 MiB 0.13 0.00 4.67827 -157.924 -4.67827 4.67827 0.92 0.000564731 0.000512334 0.0526284 0.0478914 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.68 0.224344 0.198013 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0262946 0.0234748 123 88 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 18.37 vpr 65.82 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33776 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67404 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 27.2 MiB 2.87 1185 10050 2506 6241 1303 65.8 MiB 0.07 0.00 3.59004 -135.268 -3.59004 3.59004 0.92 0.000490321 0.000447425 0.0308558 0.0281868 38 3007 50 6.99608e+06 220735 678818. 2348.85 12.47 0.241743 0.209263 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.31 0.06 0.15 -1 -1 0.31 0.0197351 0.0175678 88 54 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.19 vpr 65.64 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 33716 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 26.9 MiB 0.87 844 13856 5698 7170 988 65.6 MiB 0.10 0.00 3.30794 -123.058 -3.30794 3.30794 0.90 0.000476342 0.000434387 0.0432915 0.0395323 46 2571 29 6.99608e+06 206020 828058. 2865.25 5.13 0.201161 0.175433 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0242335 0.0214462 91 60 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.17 vpr 66.12 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 34140 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67712 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.3 MiB 1.00 1239 11118 3579 5407 2132 66.1 MiB 0.09 0.00 3.81515 -143.501 -3.81515 3.81515 0.90 0.000543624 0.000494555 0.03625 0.0330261 46 2851 29 6.99608e+06 264882 828058. 2865.25 4.99 0.232673 0.201744 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0264249 0.0234221 110 49 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 17.82 vpr 65.66 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34092 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 26.9 MiB 1.80 913 9160 3758 4976 426 65.7 MiB 0.07 0.00 3.41124 -117.262 -3.41124 3.41124 0.89 0.000502256 0.000457878 0.0289042 0.0264421 38 3163 50 6.99608e+06 309029 678818. 2348.85 12.96 0.265886 0.229297 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0250339 0.0221555 101 54 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.43 vpr 65.88 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 34372 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.87 1399 13316 4006 7788 1522 65.9 MiB 0.12 0.00 4.54237 -164.626 -4.54237 4.54237 0.92 0.000614169 0.000556704 0.0465023 0.0423268 44 3699 26 6.99608e+06 323745 787024. 2723.27 5.23 0.263611 0.229401 27778 195446 -1 3075 19 2759 3301 260793 54943 5.01404 5.01404 -183.666 -5.01404 0 0 997811. 3452.63 0.40 0.09 0.18 -1 -1 0.40 0.0279763 0.0249355 140 117 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 14.37 vpr 64.94 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33976 -1 -1 11 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 26.4 MiB 1.13 486 10149 3821 5138 1190 64.9 MiB 0.07 0.00 2.81885 -95.7056 -2.81885 2.81885 0.91 0.000392233 0.000357777 0.0281173 0.0256926 44 2052 46 6.99608e+06 161872 787024. 2723.27 10.16 0.228814 0.197233 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0193101 0.0170343 57 -1 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 19.13 vpr 66.14 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34044 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67732 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 27.6 MiB 3.16 1299 14303 5218 6688 2397 66.1 MiB 0.12 0.00 4.76923 -166.635 -4.76923 4.76923 0.91 0.000569455 0.000509644 0.0484843 0.0442262 46 3535 24 6.99608e+06 279598 828058. 2865.25 12.72 0.312892 0.272412 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0263936 0.0234762 118 89 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 9.46 vpr 65.54 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67108 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.8 MiB 0.93 1244 15216 5143 8703 1370 65.5 MiB 0.12 0.00 4.66407 -173.875 -4.66407 4.66407 0.92 0.000505747 0.000460516 0.0483146 0.0440646 44 3377 41 6.99608e+06 235451 787024. 2723.27 5.28 0.260436 0.228418 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.39 0.10 0.18 -1 -1 0.39 0.0274511 0.024379 110 93 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.89 vpr 66.04 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34016 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67624 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 27.2 MiB 0.85 1129 13403 5326 6238 1839 66.0 MiB 0.11 0.00 3.33684 -128.417 -3.33684 3.33684 0.90 0.000540794 0.000492806 0.0437741 0.0398585 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.81 0.196004 0.171649 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.34 0.17 0.16 -1 -1 0.34 0.0399673 0.0352549 106 59 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 7.56 vpr 65.95 MiB 0.02 7596 -1 -1 1 0.04 -1 -1 34532 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67536 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 27.7 MiB 0.83 1500 14261 4373 7976 1912 66.0 MiB 0.12 0.00 4.89654 -177.942 -4.89654 4.89654 0.89 0.000644108 0.000583671 0.051708 0.0470042 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.50 0.205874 0.180536 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.34 0.10 0.18 -1 -1 0.34 0.0300896 0.0267894 140 81 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.51 vpr 65.12 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33664 -1 -1 13 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 26.8 MiB 2.49 577 8449 3482 4728 239 65.1 MiB 0.05 0.00 2.75275 -95.2487 -2.75275 2.75275 0.93 0.000356077 0.000323318 0.0216468 0.0197055 36 2266 49 6.99608e+06 191304 648988. 2245.63 1.99 0.111055 0.096516 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0178081 0.0157134 65 51 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.81 vpr 64.99 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34092 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 26.5 MiB 3.47 870 9516 3877 5353 286 65.0 MiB 0.06 0.00 3.41559 -121.499 -3.41559 3.41559 0.90 0.00040412 0.000362637 0.0271285 0.024719 34 2262 25 6.99608e+06 206020 618332. 2139.56 2.36 0.130317 0.11379 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0182474 0.0162652 72 29 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 19.40 vpr 64.91 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33756 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 26.4 MiB 0.20 764 10316 3722 4683 1911 64.9 MiB 0.08 0.00 3.37904 -128.379 -3.37904 3.37904 0.92 0.000467078 0.000424127 0.0319675 0.0290332 44 3301 35 6.99608e+06 176588 787024. 2723.27 16.03 0.268181 0.234364 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0239384 0.0211835 80 31 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.97 vpr 65.20 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34076 -1 -1 18 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 26.8 MiB 0.81 497 10819 4307 4933 1579 65.2 MiB 0.07 0.00 3.31386 -89.9377 -3.31386 3.31386 0.90 0.000377005 0.00034572 0.0280224 0.0256282 38 1712 31 6.99608e+06 264882 678818. 2348.85 2.16 0.116451 0.101332 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0186351 0.0164306 68 19 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 8.11 vpr 65.64 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34236 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67220 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.3 MiB 0.96 1423 14358 4574 7658 2126 65.6 MiB 0.12 0.00 3.77875 -143.667 -3.77875 3.77875 0.93 0.000560787 0.000512298 0.0482774 0.043977 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.84 0.202036 0.178776 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0290712 0.0257814 125 84 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.31 vpr 65.89 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 33680 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67468 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 27.3 MiB 0.98 1182 13663 4698 6384 2581 65.9 MiB 0.11 0.00 4.16978 -143.827 -4.16978 4.16978 0.91 0.000568374 0.000518829 0.0454386 0.0414853 46 3209 24 6.99608e+06 323745 828058. 2865.25 5.05 0.240628 0.210059 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0288432 0.025647 121 88 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 9.37 vpr 65.30 MiB 0.02 7084 -1 -1 14 0.33 -1 -1 36424 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 26.8 MiB 2.58 1265 9263 2276 5364 1623 65.3 MiB 0.09 0.00 8.4853 -170.751 -8.4853 8.4853 0.89 0.000637376 0.000569651 0.0369857 0.0334637 44 3187 47 6.79088e+06 255968 787024. 2723.27 3.24 0.213196 0.186791 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.38 0.16 0.19 -1 -1 0.38 0.040808 0.0363935 134 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 8.94 vpr 65.08 MiB 0.02 7044 -1 -1 14 0.32 -1 -1 36412 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 26.6 MiB 1.82 1228 8270 2008 5297 965 65.1 MiB 0.08 0.00 7.98833 -161.421 -7.98833 7.98833 0.89 0.000657906 0.000596887 0.0342456 0.0310669 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.79 0.195173 0.172552 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0288565 0.0261548 132 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 11.11 vpr 64.72 MiB 0.02 7104 -1 -1 11 0.26 -1 -1 36728 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 26.3 MiB 2.01 1125 11613 3520 5862 2231 64.7 MiB 0.10 0.00 7.03202 -141.666 -7.03202 7.03202 0.90 0.000597564 0.000533268 0.0430739 0.0389525 38 3591 44 6.79088e+06 269440 678818. 2348.85 5.77 0.227027 0.199656 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0255451 0.0231901 138 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 9.75 vpr 64.82 MiB 0.02 7120 -1 -1 12 0.43 -1 -1 36636 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 26.4 MiB 1.80 1021 7643 1879 4700 1064 64.8 MiB 0.07 0.00 7.24011 -138.658 -7.24011 7.24011 0.90 0.000632251 0.000573461 0.0309742 0.0281419 44 2625 22 6.79088e+06 296384 787024. 2723.27 4.39 0.233788 0.203424 27118 194962 -1 2281 16 1190 3689 186383 43387 6.41977 6.41977 -132.045 -6.41977 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0279172 0.0251537 136 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 11.28 vpr 65.13 MiB 0.02 6964 -1 -1 13 0.37 -1 -1 36660 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 26.8 MiB 2.60 1463 12568 3276 7023 2269 65.1 MiB 0.12 0.00 8.02445 -169.708 -8.02445 8.02445 0.92 0.000720096 0.000649233 0.052405 0.0475401 46 3660 20 6.79088e+06 323328 828058. 2865.25 5.07 0.281903 0.247783 27406 200422 -1 2903 15 1384 3728 182895 41588 7.21431 7.21431 -161.115 -7.21431 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0318752 0.0289702 160 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 9.11 vpr 65.16 MiB 0.02 7000 -1 -1 12 0.34 -1 -1 36388 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 26.6 MiB 2.87 1344 4768 918 3685 165 65.2 MiB 0.05 0.00 7.61832 -163.245 -7.61832 7.61832 0.91 0.000670107 0.00060634 0.0211571 0.0192948 44 3529 23 6.79088e+06 323328 787024. 2723.27 2.73 0.159229 0.141664 27118 194962 -1 2985 17 1359 4066 236003 51425 6.72076 6.72076 -157.449 -6.72076 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0326412 0.0295226 150 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.65 vpr 64.48 MiB 0.02 6816 -1 -1 12 0.23 -1 -1 35984 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 26.0 MiB 1.76 1000 7177 1656 4753 768 64.5 MiB 0.06 0.00 7.28149 -137.47 -7.28149 7.28149 0.90 0.00051283 0.000461312 0.0247277 0.0225758 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.69 0.16371 0.143919 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0229764 0.0207447 101 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 21.29 vpr 64.92 MiB 0.02 6920 -1 -1 11 0.22 -1 -1 36672 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 26.5 MiB 1.57 1129 9531 2421 6090 1020 64.9 MiB 0.08 0.00 6.82017 -140.384 -6.82017 6.82017 0.89 0.000569078 0.000512204 0.0339907 0.0306127 38 3033 23 6.79088e+06 242496 678818. 2348.85 16.48 0.318989 0.278046 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0259106 0.0233632 118 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 10.53 vpr 64.68 MiB 0.02 6956 -1 -1 12 0.21 -1 -1 36316 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 26.1 MiB 3.22 1115 11631 3187 7135 1309 64.7 MiB 0.09 0.00 6.73244 -139.285 -6.73244 6.73244 0.89 0.000520115 0.00047212 0.0379323 0.0344731 36 2986 40 6.79088e+06 242496 648988. 2245.63 4.12 0.177917 0.155184 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0232205 0.0209111 111 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 9.11 vpr 64.82 MiB 0.02 6828 -1 -1 13 0.22 -1 -1 36408 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 26.2 MiB 1.77 1011 5412 1090 4064 258 64.8 MiB 0.05 0.00 7.30367 -163.797 -7.30367 7.30367 0.89 0.000525821 0.00047402 0.0208086 0.0189418 38 2844 25 6.79088e+06 215552 678818. 2348.85 4.17 0.181689 0.157881 25966 169698 -1 2242 16 1046 2661 140774 31740 6.24757 6.24757 -156.538 -6.24757 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.024189 0.0218347 107 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 7.06 vpr 64.72 MiB 0.02 6872 -1 -1 12 0.21 -1 -1 36456 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 26.2 MiB 1.73 838 6386 1352 4871 163 64.7 MiB 0.05 0.00 7.31171 -145.298 -7.31171 7.31171 0.90 0.000514374 0.00046873 0.0225887 0.0205997 38 2306 22 6.79088e+06 215552 678818. 2348.85 2.14 0.135142 0.118028 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0193923 0.0175111 93 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 9.58 vpr 64.36 MiB 0.02 6960 -1 -1 12 0.17 -1 -1 36276 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 25.9 MiB 2.34 1055 4560 1014 3240 306 64.4 MiB 0.04 0.00 6.46989 -155.558 -6.46989 6.46989 0.91 0.000494815 0.000447425 0.0169113 0.0154025 44 2506 15 6.79088e+06 188608 787024. 2723.27 4.02 0.169783 0.147494 27118 194962 -1 2245 17 965 2486 151023 33451 5.57489 5.57489 -144.5 -5.57489 0 0 997811. 3452.63 0.39 0.06 0.18 -1 -1 0.39 0.0225472 0.0202901 94 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 12.55 vpr 65.57 MiB 0.02 7092 -1 -1 13 0.34 -1 -1 36720 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 26.8 MiB 1.81 1239 11431 3102 6258 2071 65.6 MiB 0.10 0.00 7.91359 -165.523 -7.91359 7.91359 0.89 0.000675701 0.000610341 0.0459427 0.0416631 36 3864 39 6.79088e+06 282912 648988. 2245.63 7.33 0.228176 0.199807 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0341354 0.0306587 148 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 8.59 vpr 65.26 MiB 0.02 7052 -1 -1 14 0.40 -1 -1 36824 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 26.7 MiB 2.12 1366 11245 3016 6173 2056 65.3 MiB 0.11 0.00 9.12295 -182.881 -9.12295 9.12295 0.89 0.000671011 0.000604781 0.0452563 0.0410161 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.87 0.217871 0.19184 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0426486 0.0380389 149 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 9.32 vpr 64.88 MiB 0.02 6992 -1 -1 11 0.21 -1 -1 36320 -1 -1 20 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 26.4 MiB 1.83 857 12681 3929 6469 2283 64.9 MiB 0.09 0.00 6.92892 -133.02 -6.92892 6.92892 0.89 0.000519073 0.000469763 0.0411509 0.0373716 44 2366 27 6.79088e+06 269440 787024. 2723.27 4.20 0.212648 0.184628 27118 194962 -1 1895 17 1033 2535 134756 31487 5.95428 5.95428 -123.689 -5.95428 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0234677 0.0210832 111 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 9.32 vpr 65.43 MiB 0.02 7076 -1 -1 12 0.33 -1 -1 36712 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 27.1 MiB 2.89 1420 13992 4103 7703 2186 65.4 MiB 0.13 0.00 7.6046 -160.271 -7.6046 7.6046 0.89 0.000686822 0.000626684 0.0564928 0.0508672 46 4023 39 6.79088e+06 269440 828058. 2865.25 2.93 0.217849 0.191528 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.39 0.09 0.18 -1 -1 0.39 0.03385 0.0303468 146 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 21.97 vpr 64.95 MiB 0.02 7008 -1 -1 13 0.34 -1 -1 36636 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1236 10687 3174 5565 1948 65.0 MiB 0.10 0.00 8.28661 -168.45 -8.28661 8.28661 0.91 0.000714508 0.00064795 0.0448041 0.0406667 38 3417 39 6.79088e+06 282912 678818. 2348.85 16.64 0.389012 0.33945 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.32 0.08 0.16 -1 -1 0.32 0.0310986 0.0279798 144 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 8.05 vpr 64.83 MiB 0.02 6836 -1 -1 12 0.19 -1 -1 36064 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 26.3 MiB 2.55 945 7992 1779 4650 1563 64.8 MiB 0.07 0.00 6.70943 -154.61 -6.70943 6.70943 0.90 0.000508099 0.000461734 0.0277747 0.025214 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.36 0.151274 0.131705 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0207871 0.0187606 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 8.70 vpr 63.98 MiB 0.02 6824 -1 -1 10 0.12 -1 -1 36196 -1 -1 12 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65512 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 25.5 MiB 3.16 878 7049 1926 4350 773 64.0 MiB 0.05 0.00 5.18321 -124.627 -5.18321 5.18321 0.90 0.000394343 0.000358957 0.0200358 0.0182182 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.47 0.133577 0.116456 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.35 0.04 0.16 -1 -1 0.35 0.0161824 0.0145254 67 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 10.16 vpr 64.57 MiB 0.02 6880 -1 -1 13 0.21 -1 -1 36268 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 26.1 MiB 2.37 974 6332 1469 4570 293 64.6 MiB 0.06 0.00 7.59608 -163.359 -7.59608 7.59608 0.89 0.000527501 0.000479631 0.0234435 0.0213691 38 2544 18 6.79088e+06 215552 678818. 2348.85 4.61 0.207473 0.180107 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0216631 0.0194591 99 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 8.68 vpr 64.90 MiB 0.02 7120 -1 -1 13 0.36 -1 -1 36992 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 26.3 MiB 1.52 1254 12371 3408 7445 1518 64.9 MiB 0.11 0.00 7.46133 -157.73 -7.46133 7.46133 0.91 0.000684461 0.000618055 0.0494885 0.0447808 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.67 0.267535 0.23689 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0332501 0.0299426 143 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 24.24 vpr 65.39 MiB 0.02 7144 -1 -1 13 0.36 -1 -1 36676 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 26.8 MiB 2.42 1425 10883 2960 6054 1869 65.4 MiB 0.10 0.00 8.13867 -171.504 -8.13867 8.13867 0.86 0.000650645 0.000587941 0.0442711 0.0402497 40 3438 18 6.79088e+06 255968 706193. 2443.58 18.38 0.352793 0.30839 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.33 0.17 0.15 -1 -1 0.33 0.0407173 0.0362095 141 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 7.68 vpr 64.12 MiB 0.02 6804 -1 -1 9 0.10 -1 -1 35944 -1 -1 16 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65656 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 25.6 MiB 1.78 588 10149 2859 5591 1699 64.1 MiB 0.06 0.00 4.97273 -93.6629 -4.97273 4.97273 0.90 0.000340219 0.000308173 0.024562 0.0223214 30 1736 26 6.79088e+06 215552 556674. 1926.21 2.99 0.127695 0.110125 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.29 0.04 0.13 -1 -1 0.29 0.0145177 0.0129629 64 66 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 10.30 vpr 65.68 MiB 0.02 7156 -1 -1 13 0.39 -1 -1 36296 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 26.9 MiB 2.78 1289 7268 1575 5261 432 65.7 MiB 0.08 0.00 8.3813 -168.316 -8.3813 8.3813 0.91 0.000691366 0.00062602 0.0308721 0.0280731 38 3745 37 6.79088e+06 296384 678818. 2348.85 4.03 0.209034 0.182842 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0366995 0.032883 137 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 11.20 vpr 64.04 MiB 0.02 6772 -1 -1 8 0.10 -1 -1 36272 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65580 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 25.7 MiB 2.99 737 11631 4246 5219 2166 64.0 MiB 0.06 0.00 4.77835 -104.906 -4.77835 4.77835 0.89 0.000318069 0.000285821 0.0243067 0.0220554 30 1930 29 6.79088e+06 229024 556674. 1926.21 5.30 0.131984 0.114361 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.29 0.04 0.12 -1 -1 0.29 0.0149122 0.0132951 64 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 8.09 vpr 64.92 MiB 0.02 7004 -1 -1 15 0.29 -1 -1 36532 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 26.6 MiB 2.34 1155 10581 3115 6097 1369 64.9 MiB 0.09 0.00 8.86251 -178.17 -8.86251 8.86251 0.89 0.000605511 0.000545286 0.0375453 0.0341138 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.35 0.173633 0.152844 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0258555 0.0234473 118 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 11.58 vpr 65.57 MiB 0.02 7148 -1 -1 12 0.32 -1 -1 36532 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 26.8 MiB 2.02 1241 4433 817 3477 139 65.6 MiB 0.05 0.00 7.21583 -155.808 -7.21583 7.21583 0.90 0.000673568 0.000608625 0.0201608 0.0183867 36 4047 49 6.79088e+06 296384 648988. 2245.63 6.18 0.214257 0.186876 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.32 0.15 0.15 -1 -1 0.32 0.0413264 0.0368067 145 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 15.67 vpr 65.14 MiB 0.02 7216 -1 -1 13 0.35 -1 -1 36572 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 26.6 MiB 1.75 1284 4659 748 3690 221 65.1 MiB 0.05 0.00 8.13835 -165.274 -8.13835 8.13835 0.89 0.000633653 0.000574107 0.0207193 0.01886 38 3292 49 6.79088e+06 269440 678818. 2348.85 10.55 0.322833 0.279574 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0298028 0.0267819 136 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 10.05 vpr 64.79 MiB 0.02 6832 -1 -1 12 0.20 -1 -1 36192 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 26.3 MiB 2.68 1045 5303 1002 3952 349 64.8 MiB 0.05 0.00 6.60115 -147.873 -6.60115 6.60115 0.92 0.000548775 0.000498639 0.0196006 0.0178683 38 2622 19 6.79088e+06 255968 678818. 2348.85 4.15 0.173159 0.150548 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0224741 0.020298 106 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 8.44 vpr 64.41 MiB 0.02 7016 -1 -1 11 0.19 -1 -1 36504 -1 -1 20 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 26.0 MiB 2.50 954 11652 3379 7115 1158 64.4 MiB 0.08 0.00 6.23714 -130.615 -6.23714 6.23714 0.83 0.000411302 0.000373814 0.0351937 0.0318419 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.91 0.145979 0.127483 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.32 0.05 0.15 -1 -1 0.32 0.0185529 0.0166793 97 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 9.18 vpr 64.77 MiB 0.02 7036 -1 -1 11 0.20 -1 -1 36816 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 26.3 MiB 1.56 1013 7346 1810 4929 607 64.8 MiB 0.06 0.00 6.76313 -133.919 -6.76313 6.76313 0.91 0.000533179 0.000484518 0.0261663 0.0238654 36 2839 26 6.79088e+06 255968 648988. 2245.63 4.45 0.184354 0.160569 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0230549 0.0207093 107 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 8.90 vpr 65.11 MiB 0.02 6896 -1 -1 12 0.24 -1 -1 36444 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 26.7 MiB 2.58 1274 9443 2812 5690 941 65.1 MiB 0.08 0.00 6.88424 -161.28 -6.88424 6.88424 0.88 0.000596368 0.000536302 0.0353511 0.0321933 38 3239 49 6.79088e+06 255968 678818. 2348.85 3.07 0.200812 0.17537 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0285285 0.0255675 119 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 8.44 vpr 64.38 MiB 0.02 7016 -1 -1 11 0.20 -1 -1 36264 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 25.9 MiB 1.86 908 10056 3226 4794 2036 64.4 MiB 0.08 0.00 6.39517 -140.882 -6.39517 6.39517 0.89 0.000558881 0.000502818 0.0359041 0.0325461 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.40 0.173053 0.150598 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0245878 0.0220649 107 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 6.96 vpr 64.80 MiB 0.02 6896 -1 -1 10 0.18 -1 -1 36544 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 26.3 MiB 1.80 870 8022 2297 4713 1012 64.8 MiB 0.06 0.00 6.19022 -129.37 -6.19022 6.19022 0.89 0.000503188 0.000457348 0.0275994 0.0250914 34 2314 24 6.79088e+06 242496 618332. 2139.56 2.04 0.147245 0.128864 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0247577 0.0221927 103 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 11.70 vpr 65.41 MiB 0.02 7376 -1 -1 13 0.39 -1 -1 37316 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 26.6 MiB 1.80 1352 10103 2504 6636 963 65.4 MiB 0.10 0.00 7.85531 -169.709 -7.85531 7.85531 0.90 0.000760705 0.000679188 0.0449199 0.0405477 38 3914 48 6.79088e+06 296384 678818. 2348.85 6.38 0.286194 0.252924 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.35 0.10 0.16 -1 -1 0.35 0.0385855 0.0345795 162 238 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 24.81 vpr 64.98 MiB 0.02 7020 -1 -1 13 0.39 -1 -1 36756 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 26.7 MiB 2.24 1274 13849 4315 6877 2657 65.0 MiB 0.13 0.00 7.85526 -169.716 -7.85526 7.85526 0.92 0.000676636 0.000610824 0.0560852 0.0505917 36 4447 42 6.79088e+06 282912 648988. 2245.63 18.99 0.410467 0.360576 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.33 0.13 0.15 -1 -1 0.33 0.0385514 0.0345571 152 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 19.15 vpr 64.57 MiB 0.02 7060 -1 -1 12 0.18 -1 -1 36356 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 26.1 MiB 1.68 851 11631 4796 6628 207 64.6 MiB 0.09 0.00 7.11438 -152.359 -7.11438 7.11438 0.89 0.000508692 0.000460426 0.0378121 0.0342949 36 2928 40 6.79088e+06 242496 648988. 2245.63 14.30 0.259764 0.224806 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0232302 0.0208134 102 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 8.08 vpr 65.28 MiB 0.02 7224 -1 -1 12 0.32 -1 -1 37144 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 26.5 MiB 1.56 1154 12749 3915 6368 2466 65.3 MiB 0.12 0.00 7.84323 -159.621 -7.84323 7.84323 0.90 0.000730456 0.000664934 0.0519293 0.0471553 40 3413 28 6.79088e+06 309856 706193. 2443.58 3.00 0.228216 0.201726 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0399496 0.0358629 148 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 9.45 vpr 65.24 MiB 0.02 7296 -1 -1 14 0.42 -1 -1 36604 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 26.7 MiB 1.40 1375 11247 2864 6672 1711 65.2 MiB 0.10 0.00 8.18012 -172.817 -8.18012 8.18012 0.87 0.00066858 0.000609188 0.0427715 0.0389248 40 3259 24 6.79088e+06 282912 706193. 2443.58 4.64 0.264773 0.232428 26254 175826 -1 3232 17 1428 3947 258674 57943 7.30047 7.30047 -164.869 -7.30047 0 0 926341. 3205.33 0.33 0.09 0.16 -1 -1 0.33 0.0321 0.0290274 146 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 8.44 vpr 64.97 MiB 0.02 7180 -1 -1 13 0.31 -1 -1 36824 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 26.5 MiB 2.70 1310 10149 2655 5632 1862 65.0 MiB 0.09 0.00 7.78561 -164.423 -7.78561 7.78561 0.89 0.00063653 0.000575804 0.0386501 0.0351284 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.46 0.187522 0.16432 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.32 0.08 0.15 -1 -1 0.32 0.0283532 0.0254241 126 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 9.26 vpr 65.20 MiB 0.02 7228 -1 -1 12 0.28 -1 -1 36688 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 26.7 MiB 1.08 1267 10859 2857 6722 1280 65.2 MiB 0.10 0.00 7.65156 -158.395 -7.65156 7.65156 0.90 0.000680262 0.000615237 0.0412933 0.0372823 44 3168 15 6.79088e+06 309856 787024. 2723.27 4.81 0.244024 0.213493 27118 194962 -1 2657 16 1145 3375 184343 41330 6.59546 6.59546 -149.762 -6.59546 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0291614 0.0264196 135 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 17.42 vpr 65.09 MiB 0.02 7052 -1 -1 12 0.23 -1 -1 36108 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 26.7 MiB 1.44 1093 11106 3659 5731 1716 65.1 MiB 0.09 0.00 7.11863 -144.901 -7.11863 7.11863 0.89 0.000575951 0.0005208 0.0397927 0.0361373 36 3341 42 6.79088e+06 229024 648988. 2245.63 12.73 0.283874 0.246245 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0272893 0.0243683 113 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 29.99 vpr 65.68 MiB 0.02 7220 -1 -1 14 0.55 -1 -1 36532 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67252 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 27.0 MiB 1.62 1406 13355 3498 8147 1710 65.7 MiB 0.12 0.00 8.18038 -175.8 -8.18038 8.18038 0.90 0.000676796 0.000607301 0.0550028 0.0497219 38 4021 47 6.79088e+06 336800 678818. 2348.85 24.65 0.480481 0.420705 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.34 0.09 0.15 -1 -1 0.34 0.0342781 0.0311052 169 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.03 vpr 64.95 MiB 0.02 6784 -1 -1 11 0.24 -1 -1 36268 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 2.24 1088 9006 2212 5478 1316 64.9 MiB 0.08 0.00 6.58747 -141.672 -6.58747 6.58747 0.89 0.000568724 0.000517295 0.0327831 0.0297445 36 3313 23 6.79088e+06 242496 648988. 2245.63 2.55 0.143609 0.12554 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0264011 0.0236152 113 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 7.08 vpr 64.93 MiB 0.02 7280 -1 -1 13 0.33 -1 -1 37176 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1133 5422 1123 3954 345 64.9 MiB 0.05 0.00 7.76692 -152.212 -7.76692 7.76692 0.85 0.000614656 0.000559669 0.0221431 0.0202309 36 3213 29 6.79088e+06 255968 648988. 2245.63 2.04 0.162795 0.143372 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.30 0.08 0.14 -1 -1 0.30 0.0285928 0.0257938 132 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 32.96 vpr 65.45 MiB 0.04 7012 -1 -1 12 0.34 -1 -1 36616 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 26.6 MiB 1.77 1437 6967 1505 4666 796 65.4 MiB 0.08 0.00 7.30746 -159.645 -7.30746 7.30746 0.91 0.000712319 0.000643677 0.031433 0.028578 38 3828 35 6.79088e+06 282912 678818. 2348.85 27.70 0.408908 0.357242 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0371003 0.0335058 153 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 7.73 vpr 65.21 MiB 0.02 6936 -1 -1 13 0.30 -1 -1 36624 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 26.8 MiB 1.63 1157 7823 1835 4914 1074 65.2 MiB 0.07 0.00 7.47708 -158.746 -7.47708 7.47708 0.90 0.000638834 0.000579133 0.0313179 0.0284926 36 3541 41 6.79088e+06 255968 648988. 2245.63 2.78 0.167875 0.147072 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0271492 0.0245488 131 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 9.34 vpr 65.39 MiB 0.02 7088 -1 -1 13 0.28 -1 -1 36576 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 26.7 MiB 2.53 1097 11106 3753 5771 1582 65.4 MiB 0.09 0.00 7.69072 -162.222 -7.69072 7.69072 0.90 0.000594203 0.000538182 0.0420005 0.0381134 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.47 0.202217 0.176643 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.30 0.12 0.15 -1 -1 0.30 0.0343177 0.0305594 118 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 11.16 vpr 65.37 MiB 0.02 6996 -1 -1 12 0.34 -1 -1 36888 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 26.8 MiB 2.39 1359 8151 1869 5680 602 65.4 MiB 0.08 0.00 7.62073 -165.231 -7.62073 7.62073 0.90 0.000709146 0.000640594 0.0340278 0.030847 36 3806 40 6.79088e+06 309856 648988. 2245.63 5.38 0.212638 0.186169 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.30 0.09 0.15 -1 -1 0.30 0.0310445 0.0278471 150 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 11.03 vpr 65.07 MiB 0.02 7108 -1 -1 13 0.34 -1 -1 36808 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 26.6 MiB 2.46 1315 9051 2036 5908 1107 65.1 MiB 0.09 0.00 7.55776 -165.084 -7.55776 7.55776 0.91 0.000620887 0.000561205 0.0376254 0.0340858 44 3354 21 6.79088e+06 269440 787024. 2723.27 5.10 0.282295 0.247507 27118 194962 -1 2672 17 1265 3553 183266 41178 6.95247 6.95247 -157.937 -6.95247 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0310653 0.02808 143 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 10.44 vpr 64.93 MiB 0.02 7064 -1 -1 14 0.35 -1 -1 36804 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 26.5 MiB 2.67 1139 8270 1889 5806 575 64.9 MiB 0.08 0.00 8.36252 -172.285 -8.36252 8.36252 0.90 0.000603289 0.000547676 0.0319539 0.0290943 44 3128 32 6.79088e+06 242496 787024. 2723.27 4.35 0.240196 0.210888 27118 194962 -1 2534 14 1111 3223 182733 40388 7.46496 7.46496 -165.503 -7.46496 0 0 997811. 3452.63 0.37 0.06 0.17 -1 -1 0.37 0.0230043 0.0208591 123 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 10.14 vpr 65.32 MiB 0.02 7236 -1 -1 13 0.33 -1 -1 36560 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 26.6 MiB 3.78 1159 8868 1881 6136 851 65.3 MiB 0.08 0.00 8.02321 -165.348 -8.02321 8.02321 0.85 0.000618676 0.000561793 0.0346033 0.03146 36 3689 32 6.79088e+06 269440 648988. 2245.63 3.16 0.218413 0.19343 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.031657 0.0285481 134 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 22.57 vpr 65.43 MiB 0.02 7296 -1 -1 13 0.37 -1 -1 36520 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 26.6 MiB 1.53 1323 8591 2185 5991 415 65.4 MiB 0.09 0.00 8.19403 -174.315 -8.19403 8.19403 0.90 0.000728317 0.00066147 0.0363935 0.0329855 40 3394 20 6.79088e+06 309856 706193. 2443.58 17.45 0.386567 0.338669 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.35 0.17 0.17 -1 -1 0.35 0.0436235 0.0392456 154 218 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 8.27 vpr 65.54 MiB 0.02 7240 -1 -1 12 0.39 -1 -1 36576 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 26.7 MiB 1.65 1325 11983 3288 6841 1854 65.5 MiB 0.11 0.00 7.62163 -166.383 -7.62163 7.62163 0.90 0.000721323 0.000653146 0.0486488 0.0439269 44 3682 36 6.79088e+06 323328 787024. 2723.27 3.04 0.23115 0.202624 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0331893 0.0299018 157 229 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.75 vpr 64.51 MiB 0.02 6948 -1 -1 11 0.16 -1 -1 36100 -1 -1 13 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 26.1 MiB 1.68 956 7249 1855 4884 510 64.5 MiB 0.06 0.00 6.10061 -138.097 -6.10061 6.10061 0.86 0.000496121 0.000449662 0.0240094 0.0218414 44 2204 16 6.79088e+06 175136 787024. 2723.27 3.99 0.178028 0.15528 27118 194962 -1 1994 14 890 2260 140178 30612 5.5245 5.5245 -131.032 -5.5245 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0184306 0.0166258 90 121 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 23.69 vpr 65.03 MiB 0.02 6792 -1 -1 13 0.23 -1 -1 36224 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 26.7 MiB 3.03 1073 11631 3861 5991 1779 65.0 MiB 0.09 0.00 7.81611 -170.556 -7.81611 7.81611 0.92 0.000557006 0.000504135 0.0410628 0.0372122 38 2825 21 6.79088e+06 229024 678818. 2348.85 17.37 0.276793 0.242492 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0242333 0.0219279 113 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 10.21 vpr 65.81 MiB 0.02 7112 -1 -1 14 0.54 -1 -1 36484 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 27.2 MiB 1.27 1399 15493 4561 8338 2594 65.8 MiB 0.15 0.00 8.67312 -179.019 -8.67312 8.67312 0.92 0.00077423 0.000688893 0.0691753 0.0623332 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.95 0.31352 0.27687 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.36 0.30 0.16 -1 -1 0.36 0.0685108 0.0610316 180 266 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.80 vpr 65.75 MiB 0.02 6968 -1 -1 13 0.42 -1 -1 36832 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 27.1 MiB 2.93 1244 13849 3731 7364 2754 65.8 MiB 0.13 0.00 8.43396 -178.911 -8.43396 8.43396 0.92 0.000708632 0.000638866 0.0583658 0.0527449 38 3697 23 6.79088e+06 282912 678818. 2348.85 2.25 0.194771 0.171664 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.032967 0.0298192 154 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 5.87 vpr 64.29 MiB 0.02 6824 -1 -1 11 0.21 -1 -1 36236 -1 -1 17 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 25.8 MiB 0.84 899 5994 1459 3795 740 64.3 MiB 0.05 0.00 6.69493 -140.456 -6.69493 6.69493 0.89 0.000501463 0.000455345 0.0210234 0.0190847 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.91 0.119689 0.104712 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0242045 0.0217882 99 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 11.10 vpr 65.32 MiB 0.02 7472 -1 -1 15 0.53 -1 -1 37632 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 26.8 MiB 1.51 1572 8083 1890 5078 1115 65.3 MiB 0.09 0.00 9.61575 -193.644 -9.61575 9.61575 0.85 0.000763412 0.000684489 0.0363489 0.0329148 44 4110 31 6.79088e+06 323328 787024. 2723.27 6.02 0.34046 0.302383 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.37 0.10 0.17 -1 -1 0.37 0.037497 0.0341999 172 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 8.37 vpr 65.24 MiB 0.02 7144 -1 -1 13 0.40 -1 -1 36444 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 26.7 MiB 1.42 1447 9914 2954 6315 645 65.2 MiB 0.10 0.00 8.38843 -181.197 -8.38843 8.38843 0.90 0.00068396 0.00061835 0.0402916 0.0365181 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.45 0.197046 0.17332 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0325599 0.0293957 149 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 6.85 vpr 64.74 MiB 0.02 7028 -1 -1 11 0.15 -1 -1 36484 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 26.3 MiB 2.02 1043 11604 3704 5973 1927 64.7 MiB 0.09 0.00 6.83225 -151.19 -6.83225 6.83225 0.92 0.000524732 0.000474277 0.0384421 0.0348636 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.70 0.139229 0.123308 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0241195 0.0216283 97 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 20.32 vpr 65.73 MiB 0.02 7348 -1 -1 12 0.38 -1 -1 36456 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 26.9 MiB 1.95 1321 11989 3057 7272 1660 65.7 MiB 0.11 0.00 7.80487 -167.158 -7.80487 7.80487 0.89 0.000680592 0.000606443 0.0481128 0.0433883 40 3150 27 6.79088e+06 282912 706193. 2443.58 14.87 0.363313 0.315836 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0312611 0.028181 152 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 10.23 vpr 64.72 MiB 0.02 6856 -1 -1 12 0.25 -1 -1 35968 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 26.4 MiB 2.10 1076 11776 3996 5804 1976 64.7 MiB 0.10 0.00 7.20737 -155.525 -7.20737 7.20737 0.87 0.0006003 0.000548038 0.0450582 0.0410224 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.87 0.201325 0.178169 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.33 0.09 0.15 -1 -1 0.33 0.0308735 0.0276631 115 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 5.99 vpr 64.77 MiB 0.02 7084 -1 -1 12 0.23 -1 -1 36456 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 26.3 MiB 1.64 861 12331 3461 6927 1943 64.8 MiB 0.09 0.00 7.68992 -150.206 -7.68992 7.68992 0.91 0.000537498 0.000488289 0.041058 0.0373185 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.16 0.117636 0.104105 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0218305 0.0198015 105 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 9.59 vpr 65.23 MiB 0.02 7172 -1 -1 12 0.35 -1 -1 36532 -1 -1 24 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 26.7 MiB 1.64 1109 13105 4321 6403 2381 65.2 MiB 0.11 0.00 7.73882 -148.46 -7.73882 7.73882 0.89 0.000645914 0.000581108 0.0490743 0.0443109 36 3249 25 6.79088e+06 323328 648988. 2245.63 4.57 0.221655 0.195379 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0308778 0.0278672 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 11.65 vpr 65.70 MiB 0.02 7212 -1 -1 14 0.41 -1 -1 36832 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 27.1 MiB 3.08 1442 8024 2021 5399 604 65.7 MiB 0.08 0.00 8.63126 -174.325 -8.63126 8.63126 0.89 0.000738658 0.000670602 0.0350112 0.0317577 46 3512 20 6.79088e+06 296384 828058. 2865.25 5.00 0.240937 0.210588 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.37 0.08 0.20 -1 -1 0.37 0.0322696 0.0291591 155 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 9.25 vpr 65.04 MiB 0.02 7180 -1 -1 12 0.29 -1 -1 36364 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 26.6 MiB 1.78 1323 12503 3954 6429 2120 65.0 MiB 0.11 0.00 7.68002 -164.527 -7.68002 7.68002 0.90 0.000653824 0.000590979 0.0496309 0.0449697 38 3480 45 6.79088e+06 255968 678818. 2348.85 4.00 0.226657 0.198883 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.33 0.15 0.16 -1 -1 0.33 0.040802 0.0363304 137 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 8.12 vpr 64.33 MiB 0.02 7064 -1 -1 12 0.18 -1 -1 36636 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 25.9 MiB 1.64 883 6839 1546 5160 133 64.3 MiB 0.06 0.00 7.22527 -147.319 -7.22527 7.22527 0.92 0.000518552 0.000456075 0.0243419 0.0220238 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.27 0.14133 0.124011 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.31 0.12 0.14 -1 -1 0.31 0.030622 0.0272172 95 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 10.21 vpr 65.08 MiB 0.02 7028 -1 -1 12 0.27 -1 -1 35976 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 26.7 MiB 2.31 1016 11806 3829 5905 2072 65.1 MiB 0.09 0.00 7.21239 -153.602 -7.21239 7.21239 0.85 0.000598521 0.000541095 0.0405573 0.0368419 46 2377 20 6.79088e+06 242496 828058. 2865.25 4.65 0.27105 0.238793 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.37 0.06 0.18 -1 -1 0.37 0.0256155 0.0231439 114 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 11.35 vpr 65.12 MiB 0.02 7084 -1 -1 11 0.24 -1 -1 36648 -1 -1 22 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 26.6 MiB 3.23 1192 7587 1799 4901 887 65.1 MiB 0.07 0.00 6.65573 -139.172 -6.65573 6.65573 0.89 0.000574949 0.000516418 0.0280068 0.0253138 44 3222 24 6.79088e+06 296384 787024. 2723.27 4.84 0.222189 0.192853 27118 194962 -1 2529 15 1183 3751 197012 43772 5.78973 5.78973 -133.446 -5.78973 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.0260877 0.0236679 129 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 9.69 vpr 65.02 MiB 0.02 7052 -1 -1 11 0.26 -1 -1 36560 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 26.6 MiB 1.66 990 12156 4943 6412 801 65.0 MiB 0.10 0.00 6.59863 -125.892 -6.59863 6.59863 0.91 0.000584921 0.000528262 0.0437753 0.0396737 44 2904 27 6.79088e+06 282912 787024. 2723.27 4.58 0.253484 0.220501 27118 194962 -1 2227 20 1278 3711 190655 44513 6.15444 6.15444 -122.054 -6.15444 0 0 997811. 3452.63 0.38 0.08 0.20 -1 -1 0.38 0.0303758 0.0272323 125 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 10.65 vpr 64.50 MiB 0.02 6872 -1 -1 13 0.23 -1 -1 36308 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 26.0 MiB 3.61 1023 6220 1452 4481 287 64.5 MiB 0.05 0.00 7.37394 -146.255 -7.37394 7.37394 0.89 0.000527914 0.000479019 0.0225268 0.0205109 36 2646 31 6.79088e+06 215552 648988. 2245.63 3.92 0.172655 0.149601 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.30 0.05 0.14 -1 -1 0.30 0.0191923 0.0173404 104 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 8.97 vpr 64.89 MiB 0.02 6752 -1 -1 12 0.24 -1 -1 36312 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 26.5 MiB 2.41 1239 4476 858 3235 383 64.9 MiB 0.04 0.00 7.13568 -159.479 -7.13568 7.13568 0.91 0.000659961 0.000592701 0.0182292 0.0166029 36 3048 33 6.79088e+06 269440 648988. 2245.63 3.32 0.177287 0.155031 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0271065 0.0245067 125 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 8.05 vpr 64.87 MiB 0.02 7056 -1 -1 13 0.36 -1 -1 36688 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 2.37 1176 7283 1697 4959 627 64.9 MiB 0.07 0.00 7.98183 -162.706 -7.98183 7.98183 0.90 0.000632577 0.000573434 0.0294611 0.0267782 38 2773 17 6.79088e+06 269440 678818. 2348.85 2.26 0.178581 0.156796 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0323128 0.0290925 137 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 9.25 vpr 65.68 MiB 0.02 6956 -1 -1 14 0.36 -1 -1 36780 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67252 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 26.9 MiB 1.90 1408 9013 2325 5592 1096 65.7 MiB 0.09 0.00 8.8032 -181.521 -8.8032 8.8032 0.92 0.000712026 0.000647753 0.0393847 0.035774 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.89 0.225783 0.199652 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0309957 0.0280798 149 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 11.16 vpr 65.25 MiB 0.02 7112 -1 -1 14 0.33 -1 -1 36736 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 26.7 MiB 2.85 1168 12528 4001 6466 2061 65.3 MiB 0.11 0.00 8.11366 -160.164 -8.11366 8.11366 0.91 0.000645537 0.000584417 0.0488708 0.0442858 44 3141 20 6.79088e+06 269440 787024. 2723.27 4.81 0.271659 0.238743 27118 194962 -1 2405 15 1112 3343 161383 37575 7.21863 7.21863 -147.209 -7.21863 0 0 997811. 3452.63 0.36 0.07 0.17 -1 -1 0.36 0.0267632 0.0243185 136 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 11.75 vpr 65.13 MiB 0.02 7188 -1 -1 13 0.44 -1 -1 36988 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 26.6 MiB 2.56 1266 7823 1896 4973 954 65.1 MiB 0.08 0.00 7.98865 -167.696 -7.98865 7.98865 0.92 0.000679832 0.000615829 0.0339452 0.030815 44 3303 29 6.79088e+06 255968 787024. 2723.27 5.54 0.300005 0.264046 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.031051 0.0280225 139 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 16.85 vpr 64.92 MiB 0.02 7060 -1 -1 13 0.22 -1 -1 36408 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 26.4 MiB 1.98 955 5888 1275 4387 226 64.9 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.91 0.000545782 0.000497359 0.022538 0.0205787 40 2382 30 6.79088e+06 215552 706193. 2443.58 11.62 0.275842 0.239022 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0230679 0.0207382 106 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 8.19 vpr 65.27 MiB 0.02 7152 -1 -1 13 0.57 -1 -1 36816 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 26.5 MiB 1.82 1281 12175 3045 7735 1395 65.3 MiB 0.11 0.00 8.2401 -167.978 -8.2401 8.2401 0.90 0.000693457 0.000631689 0.0497886 0.045255 36 3566 29 6.79088e+06 309856 648988. 2245.63 2.65 0.189994 0.168377 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.32 0.13 0.15 -1 -1 0.32 0.0388317 0.034841 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 10.50 vpr 65.27 MiB 0.02 7112 -1 -1 14 0.37 -1 -1 36272 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 26.8 MiB 2.08 1252 6306 1410 4478 418 65.3 MiB 0.06 0.00 8.1933 -176.786 -8.1933 8.1933 0.89 0.000639354 0.000578147 0.0252798 0.0229716 46 3049 24 6.79088e+06 269440 828058. 2865.25 4.92 0.212082 0.184731 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0304105 0.0274155 133 181 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 20.38 vpr 65.00 MiB 0.02 7152 -1 -1 12 0.32 -1 -1 36808 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 26.5 MiB 2.19 1214 6855 1626 4139 1090 65.0 MiB 0.07 0.00 7.87232 -159.238 -7.87232 7.87232 0.91 0.000672914 0.000612074 0.029028 0.0264293 38 3142 49 6.79088e+06 282912 678818. 2348.85 14.78 0.387383 0.339688 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.029968 0.0271587 143 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 22.79 vpr 65.04 MiB 0.02 7280 -1 -1 13 0.30 -1 -1 36296 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 26.3 MiB 2.47 1166 13583 4513 7114 1956 65.0 MiB 0.12 0.00 8.05477 -151.514 -8.05477 8.05477 0.91 0.000622712 0.000566502 0.0523669 0.0476428 38 3283 21 6.79088e+06 282912 678818. 2348.85 16.89 0.31256 0.274314 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0275188 0.0248772 126 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 10.33 vpr 65.47 MiB 0.02 7064 -1 -1 14 0.44 -1 -1 36888 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 27.1 MiB 1.89 1356 6595 1328 4700 567 65.5 MiB 0.07 0.00 8.2637 -174.994 -8.2637 8.2637 0.91 0.000711175 0.000644319 0.0299098 0.027269 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.85 0.220312 0.194601 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.34 0.11 0.16 -1 -1 0.34 0.0394935 0.0354841 154 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 21.95 vpr 65.25 MiB 0.02 6940 -1 -1 11 0.36 -1 -1 36348 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 26.8 MiB 1.57 1061 13403 4351 6899 2153 65.2 MiB 0.11 0.00 6.99502 -136.053 -6.99502 6.99502 0.89 0.00061488 0.00055283 0.0488385 0.0441376 30 3783 49 6.79088e+06 296384 556674. 1926.21 16.97 0.339534 0.296902 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.29 0.12 0.13 -1 -1 0.29 0.0372615 0.0333428 130 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 16.56 vpr 64.84 MiB 0.02 6896 -1 -1 13 0.20 -1 -1 36196 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 26.3 MiB 3.77 995 4062 701 3272 89 64.8 MiB 0.04 0.00 6.9771 -161.617 -6.9771 6.9771 0.88 0.000445789 0.000405922 0.0137433 0.012625 36 2919 36 6.79088e+06 188608 648988. 2245.63 9.65 0.253024 0.220132 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0238625 0.0215166 99 130 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 10.15 vpr 65.19 MiB 0.02 7004 -1 -1 14 0.30 -1 -1 36372 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 26.7 MiB 2.25 1302 5483 1117 4002 364 65.2 MiB 0.06 0.00 8.68565 -176.783 -8.68565 8.68565 0.90 0.000629178 0.000571498 0.0226418 0.0206574 36 3263 26 6.79088e+06 255968 648988. 2245.63 4.58 0.177659 0.155745 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.027432 0.0247692 129 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 20.97 vpr 65.42 MiB 0.02 7204 -1 -1 15 0.47 -1 -1 36668 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 27.0 MiB 2.36 1292 9914 2574 6184 1156 65.4 MiB 0.10 0.00 9.1052 -186.475 -9.1052 9.1052 0.89 0.000731243 0.000662019 0.0434404 0.0393815 40 3560 37 6.79088e+06 296384 706193. 2443.58 15.00 0.404028 0.353107 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0376495 0.0337181 153 227 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 8.95 vpr 64.72 MiB 0.02 6872 -1 -1 11 0.20 -1 -1 36340 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 26.3 MiB 2.58 829 6054 1305 4663 86 64.7 MiB 0.05 0.00 6.63906 -133.693 -6.63906 6.63906 0.92 0.000444057 0.000405331 0.0208684 0.0189588 34 2844 35 6.79088e+06 188608 618332. 2139.56 3.19 0.151502 0.132118 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0217952 0.0194945 91 123 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 8.31 vpr 64.50 MiB 0.02 7036 -1 -1 12 0.24 -1 -1 36328 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 25.9 MiB 1.92 1045 8360 2472 4444 1444 64.5 MiB 0.07 0.00 7.09988 -155.106 -7.09988 7.09988 0.91 0.000572382 0.000519893 0.031287 0.0285004 36 3087 23 6.79088e+06 215552 648988. 2245.63 3.13 0.16182 0.141605 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.026763 0.0239858 111 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 8.74 vpr 65.12 MiB 0.02 7180 -1 -1 12 0.39 -1 -1 36428 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 26.6 MiB 1.76 1231 6306 1337 4274 695 65.1 MiB 0.07 0.00 7.48442 -156.804 -7.48442 7.48442 0.86 0.000677822 0.000616983 0.0283551 0.0258353 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.65 0.230191 0.204334 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0354584 0.0320524 145 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 10.17 vpr 65.25 MiB 0.02 7212 -1 -1 12 0.31 -1 -1 36848 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 26.5 MiB 2.11 1313 9443 2521 5826 1096 65.2 MiB 0.09 0.00 7.56551 -160.745 -7.56551 7.56551 0.89 0.000626971 0.000568705 0.0372686 0.0339104 36 3623 36 6.79088e+06 255968 648988. 2245.63 4.69 0.253654 0.222074 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0303112 0.02731 133 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 9.84 vpr 65.70 MiB 0.02 7264 -1 -1 14 0.58 -1 -1 36808 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 26.9 MiB 1.70 1284 5079 907 4069 103 65.7 MiB 0.07 0.00 8.77515 -179.37 -8.77515 8.77515 0.90 0.000771297 0.000693737 0.0263096 0.0239547 38 4131 35 6.79088e+06 309856 678818. 2348.85 4.42 0.239371 0.211453 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0394663 0.0357577 170 238 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 9.94 vpr 64.93 MiB 0.02 7200 -1 -1 11 0.29 -1 -1 36236 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 26.5 MiB 2.45 1159 11963 3648 6429 1886 64.9 MiB 0.10 0.00 7.06667 -142.983 -7.06667 7.06667 0.88 0.000591742 0.000534176 0.0436434 0.0395729 44 2874 16 6.79088e+06 282912 787024. 2723.27 4.06 0.230457 0.201232 27118 194962 -1 2495 13 1107 3189 172215 38308 6.29442 6.29442 -134.943 -6.29442 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0248722 0.0227077 128 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 8.87 vpr 64.62 MiB 0.02 6940 -1 -1 11 0.22 -1 -1 36476 -1 -1 19 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 26.2 MiB 1.50 770 7714 1883 5409 422 64.6 MiB 0.06 0.00 6.64923 -122.654 -6.64923 6.64923 0.90 0.00051867 0.000464699 0.0263987 0.0239277 44 2104 48 6.79088e+06 255968 787024. 2723.27 4.09 0.213271 0.185001 27118 194962 -1 1646 17 783 2028 103450 24460 5.81779 5.81779 -115.345 -5.81779 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0229047 0.0205492 101 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 11.15 vpr 66.08 MiB 0.02 7172 -1 -1 13 0.55 -1 -1 36740 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67664 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 27.3 MiB 2.24 1654 14793 4090 8037 2666 66.1 MiB 0.16 0.00 8.15219 -167.23 -8.15219 8.15219 0.92 0.000842398 0.000749858 0.0651443 0.0585332 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.80 0.286578 0.253436 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.35 0.40 0.16 -1 -1 0.35 0.0817993 0.0727266 191 278 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 16.72 vpr 64.80 MiB 0.02 7232 -1 -1 14 0.34 -1 -1 36528 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 26.4 MiB 1.67 1216 6923 1704 4584 635 64.8 MiB 0.07 0.00 8.60637 -173.25 -8.60637 8.60637 0.91 0.00063506 0.00057574 0.0286734 0.0261952 30 3569 30 6.79088e+06 269440 556674. 1926.21 11.69 0.235119 0.206366 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.29 0.08 0.13 -1 -1 0.29 0.0299107 0.0269751 128 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 11.24 vpr 64.64 MiB 0.02 6960 -1 -1 12 0.19 -1 -1 36312 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 26.1 MiB 2.82 1144 8723 2365 5890 468 64.6 MiB 0.07 0.00 7.40683 -169.316 -7.40683 7.40683 0.89 0.000527915 0.000479488 0.0289501 0.0263156 44 3005 29 6.79088e+06 255968 787024. 2723.27 5.15 0.218471 0.189914 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0250852 0.0226017 109 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 11.98 vpr 65.23 MiB 0.02 7172 -1 -1 13 0.37 -1 -1 36400 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 26.8 MiB 3.49 1115 5066 1001 3852 213 65.2 MiB 0.05 0.00 8.33866 -169.136 -8.33866 8.33866 0.91 0.000615077 0.000557305 0.0213318 0.0194691 48 2783 21 6.79088e+06 242496 865456. 2994.66 4.95 0.247528 0.2172 27694 206865 -1 2457 17 1071 3000 181658 40341 7.04987 7.04987 -154.557 -7.04987 0 0 1.05005e+06 3633.38 0.40 0.07 0.20 -1 -1 0.40 0.0280874 0.0253877 125 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 9.64 vpr 65.47 MiB 0.02 7260 -1 -1 13 0.39 -1 -1 36764 -1 -1 25 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 26.8 MiB 2.45 1490 8083 1681 5214 1188 65.5 MiB 0.09 0.00 7.4732 -162.473 -7.4732 7.4732 0.90 0.000751712 0.000678013 0.0355775 0.0322763 44 3967 47 6.79088e+06 336800 787024. 2723.27 3.61 0.225825 0.199019 27118 194962 -1 3167 19 1591 4399 235762 52009 6.50587 6.50587 -151.156 -6.50587 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0377806 0.0342915 159 232 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 10.37 vpr 65.13 MiB 0.02 7104 -1 -1 11 0.28 -1 -1 36360 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 1.88 1209 11059 2877 6113 2069 65.1 MiB 0.09 0.00 7.11391 -144.84 -7.11391 7.11391 0.90 0.000687891 0.000619895 0.0415575 0.0375553 38 3561 49 6.79088e+06 309856 678818. 2348.85 5.15 0.241888 0.212989 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0315772 0.028325 140 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 7.94 vpr 65.13 MiB 0.02 7060 -1 -1 15 0.42 -1 -1 36896 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 26.5 MiB 1.94 1211 12503 3460 7559 1484 65.1 MiB 0.11 0.00 9.11536 -184.558 -9.11536 9.11536 0.91 0.000662 0.000586266 0.0505598 0.0457167 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.39 0.2084 0.183178 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.34 0.12 0.17 -1 -1 0.34 0.0361152 0.0323183 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 25.27 vpr 65.18 MiB 0.02 7124 -1 -1 13 0.38 -1 -1 36568 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 26.8 MiB 2.38 1357 5463 1001 4200 262 65.2 MiB 0.06 0.00 8.32676 -176.58 -8.32676 8.32676 0.92 0.000736276 0.000659005 0.0250044 0.0226749 36 4143 34 6.79088e+06 309856 648988. 2245.63 19.42 0.340779 0.29778 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0300667 0.0272759 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 9.78 vpr 64.57 MiB 0.02 6792 -1 -1 12 0.25 -1 -1 36016 -1 -1 18 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 26.1 MiB 2.48 941 10557 3755 4946 1856 64.6 MiB 0.08 0.00 7.68137 -155.362 -7.68137 7.68137 0.89 0.000535501 0.000484909 0.0377456 0.0343982 36 2695 26 6.79088e+06 242496 648988. 2245.63 4.05 0.196884 0.171572 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0253739 0.022795 109 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 9.60 vpr 64.60 MiB 0.02 6944 -1 -1 11 0.20 -1 -1 36312 -1 -1 14 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 26.1 MiB 1.78 1148 5224 1190 3763 271 64.6 MiB 0.05 0.00 6.84847 -147.97 -6.84847 6.84847 0.92 0.000531616 0.000482654 0.0196511 0.0179057 48 2763 18 6.79088e+06 188608 865456. 2994.66 4.49 0.214464 0.186863 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.40 0.06 0.20 -1 -1 0.40 0.023269 0.0209982 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 9.58 vpr 65.45 MiB 0.02 7112 -1 -1 13 0.39 -1 -1 36544 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 26.9 MiB 1.39 1115 8455 2194 4906 1355 65.4 MiB 0.08 0.00 7.89179 -153.02 -7.89179 7.89179 0.90 0.00067598 0.000611234 0.0352797 0.0320172 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.68 0.19696 0.172679 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0342981 0.0309737 144 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 9.67 vpr 64.63 MiB 0.02 6992 -1 -1 10 0.21 -1 -1 36116 -1 -1 17 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 26.2 MiB 2.18 851 10204 2504 7246 454 64.6 MiB 0.08 0.00 6.11518 -125.484 -6.11518 6.11518 0.90 0.000512339 0.00046553 0.0341173 0.0310531 38 2368 25 6.79088e+06 229024 678818. 2348.85 4.28 0.191192 0.165806 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0247784 0.0221423 98 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.00 vpr 64.98 MiB 0.02 6860 -1 -1 14 0.23 -1 -1 36320 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 26.4 MiB 3.45 1049 6312 1330 4556 426 65.0 MiB 0.06 0.00 7.76918 -161.081 -7.76918 7.76918 0.89 0.000552504 0.000501594 0.0224572 0.0204374 36 3203 45 6.79088e+06 242496 648988. 2245.63 3.21 0.156791 0.137344 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.31 0.21 0.15 -1 -1 0.31 0.0484325 0.0428836 110 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 10.49 vpr 65.37 MiB 0.02 7024 -1 -1 12 0.39 -1 -1 36616 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 26.8 MiB 1.45 1262 12919 3620 7000 2299 65.4 MiB 0.12 0.00 7.60154 -161.988 -7.60154 7.60154 0.92 0.000687672 0.000617547 0.0512276 0.0464385 36 3634 39 6.79088e+06 296384 648988. 2245.63 5.52 0.241322 0.21335 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0312715 0.0282867 143 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 16.48 vpr 64.79 MiB 0.02 6844 -1 -1 12 0.17 -1 -1 36216 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 26.3 MiB 2.46 992 10726 2823 7181 722 64.8 MiB 0.08 0.00 6.58069 -144.507 -6.58069 6.58069 0.86 0.000510293 0.000449635 0.0351614 0.0319403 30 2929 43 6.79088e+06 215552 556674. 1926.21 11.02 0.231907 0.203525 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0202026 0.018244 101 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 9.64 vpr 64.79 MiB 0.02 7248 -1 -1 12 0.24 -1 -1 36672 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 26.3 MiB 1.73 1163 7736 1889 5402 445 64.8 MiB 0.07 0.00 7.51176 -154.757 -7.51176 7.51176 0.92 0.000636019 0.000577241 0.0312719 0.0283938 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.59 0.190178 0.166544 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.029415 0.026579 123 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 19.42 vpr 65.12 MiB 0.02 7260 -1 -1 13 0.35 -1 -1 36588 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 26.6 MiB 1.85 1250 11296 2557 6849 1890 65.1 MiB 0.10 0.00 7.49717 -162.624 -7.49717 7.49717 0.89 0.000609814 0.000549853 0.0430712 0.0390927 40 2968 20 6.79088e+06 255968 706193. 2443.58 14.08 0.340277 0.296933 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0298818 0.0267833 134 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 9.95 vpr 64.69 MiB 0.02 6788 -1 -1 11 0.20 -1 -1 35980 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 26.1 MiB 1.63 937 7515 1724 5667 124 64.7 MiB 0.07 0.00 7.16165 -142.405 -7.16165 7.16165 0.90 0.000527434 0.000477817 0.026632 0.0242165 46 2683 20 6.79088e+06 202080 828058. 2865.25 5.02 0.210589 0.182628 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0228812 0.0206129 105 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 7.79 vpr 65.06 MiB 0.02 6884 -1 -1 13 0.24 -1 -1 36488 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 26.7 MiB 2.33 1005 13381 4639 6392 2350 65.1 MiB 0.11 0.00 7.38301 -157.601 -7.38301 7.38301 0.90 0.000600687 0.000543709 0.0480937 0.0435376 38 2883 22 6.79088e+06 229024 678818. 2348.85 2.14 0.153567 0.135092 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0270546 0.024379 116 164 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 8.20 vpr 65.23 MiB 0.02 7240 -1 -1 13 0.33 -1 -1 36224 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 26.7 MiB 1.98 1327 8092 2018 5457 617 65.2 MiB 0.08 0.00 7.14878 -159.209 -7.14878 7.14878 0.91 0.000634318 0.000577495 0.0334998 0.0304513 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.70 0.195209 0.172539 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0307678 0.027774 130 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 8.72 vpr 64.77 MiB 0.02 7236 -1 -1 11 0.22 -1 -1 36344 -1 -1 22 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 26.2 MiB 1.85 925 13403 4743 6446 2214 64.8 MiB 0.10 0.00 6.69836 -125.024 -6.69836 6.69836 0.86 0.000546446 0.000495635 0.0433984 0.0393596 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.76 0.19376 0.170947 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0250173 0.0225737 115 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 7.81 vpr 65.50 MiB 0.02 7048 -1 -1 14 0.40 -1 -1 37148 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 26.9 MiB 1.82 1410 8213 2036 5597 580 65.5 MiB 0.09 0.00 9.10514 -189.548 -9.10514 9.10514 0.91 0.000723411 0.000655715 0.0362425 0.0328626 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.39 0.186872 0.164205 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0341626 0.0310825 160 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 18.09 vpr 64.82 MiB 0.02 6864 -1 -1 12 0.21 -1 -1 35972 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 26.3 MiB 3.57 1093 11281 2937 6811 1533 64.8 MiB 0.09 0.00 6.61653 -142.296 -6.61653 6.61653 0.90 0.000533228 0.000483869 0.041123 0.0371749 34 3493 43 6.79088e+06 242496 618332. 2139.56 11.33 0.256367 0.22289 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0251974 0.0227427 108 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 8.88 vpr 65.08 MiB 0.02 7092 -1 -1 13 0.35 -1 -1 36592 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 26.6 MiB 2.45 1323 14123 4442 7710 1971 65.1 MiB 0.12 0.00 7.64293 -157.325 -7.64293 7.64293 0.90 0.000631202 0.000570224 0.0539266 0.0488849 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.88 0.174531 0.15381 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0303725 0.0273157 132 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 8.08 vpr 64.91 MiB 0.02 6904 -1 -1 13 0.22 -1 -1 36116 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 26.4 MiB 2.56 1020 12120 3554 6383 2183 64.9 MiB 0.09 0.00 7.35402 -164.423 -7.35402 7.35402 0.90 0.000522876 0.00047525 0.0409512 0.0371869 36 3009 44 6.79088e+06 215552 648988. 2245.63 2.29 0.15521 0.13626 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0261723 0.0234736 104 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 8.39 vpr 65.11 MiB 0.02 6972 -1 -1 12 0.27 -1 -1 36236 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 26.5 MiB 2.48 1030 11783 4465 6036 1282 65.1 MiB 0.10 0.00 7.13827 -153.033 -7.13827 7.13827 0.91 0.000603279 0.000544237 0.0429871 0.0389079 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.44 0.162454 0.142768 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.40 0.07 0.18 -1 -1 0.40 0.0269856 0.0244453 121 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 8.45 vpr 65.81 MiB 0.02 7260 -1 -1 15 0.58 -1 -1 36608 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 27.2 MiB 2.38 1457 12373 3076 6798 2499 65.8 MiB 0.12 0.00 9.48621 -188.88 -9.48621 9.48621 0.86 0.000808431 0.00073697 0.0551729 0.0502143 46 4011 21 6.79088e+06 323328 828058. 2865.25 2.38 0.213661 0.190213 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.37 0.10 0.18 -1 -1 0.37 0.041886 0.0378121 176 249 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 7.08 vpr 63.97 MiB 0.02 6752 -1 -1 10 0.11 -1 -1 35948 -1 -1 11 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 25.4 MiB 1.98 678 9345 2965 4615 1765 64.0 MiB 0.06 0.00 5.03415 -115.492 -5.03415 5.03415 0.91 0.000389905 0.000354034 0.0262048 0.0238499 36 1722 23 6.79088e+06 148192 648988. 2245.63 2.06 0.113991 0.0993589 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0182834 0.0162907 63 82 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 8.96 vpr 64.82 MiB 0.02 6988 -1 -1 13 0.22 -1 -1 36344 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 26.3 MiB 2.20 930 9881 2975 5177 1729 64.8 MiB 0.08 0.00 7.15369 -149.901 -7.15369 7.15369 0.89 0.000525097 0.000477372 0.0331221 0.0301523 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.57 0.179148 0.156676 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0267215 0.023976 105 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 21.13 vpr 65.05 MiB 0.02 6908 -1 -1 12 0.24 -1 -1 36308 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 26.7 MiB 2.42 1026 12331 4984 6774 573 65.0 MiB 0.11 0.00 7.35057 -161.147 -7.35057 7.35057 0.91 0.00059761 0.000541913 0.0455365 0.0413817 38 3211 42 6.79088e+06 229024 678818. 2348.85 15.39 0.331165 0.289836 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0294603 0.026521 115 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 7.23 vpr 64.53 MiB 0.02 6880 -1 -1 9 0.16 -1 -1 36380 -1 -1 20 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 26.0 MiB 1.39 772 8553 2593 4994 966 64.5 MiB 0.06 0.00 5.4216 -101.246 -5.4216 5.4216 0.89 0.000425331 0.000386083 0.0249294 0.0226645 32 2040 31 6.79088e+06 269440 586450. 2029.24 2.79 0.154711 0.13388 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.30 0.05 0.14 -1 -1 0.30 0.0169876 0.0152821 86 103 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 27.64 vpr 65.21 MiB 0.02 7044 -1 -1 12 0.33 -1 -1 36328 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 26.4 MiB 3.04 1475 10263 2607 5842 1814 65.2 MiB 0.10 0.00 7.81518 -176.908 -7.81518 7.81518 0.90 0.000674714 0.0006118 0.0409278 0.0371236 38 4034 49 6.79088e+06 309856 678818. 2348.85 21.17 0.378346 0.330848 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0316271 0.0286579 146 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 9.15 vpr 65.41 MiB 0.02 7016 -1 -1 14 0.37 -1 -1 36660 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66980 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 27.1 MiB 1.48 1195 12733 3723 6434 2576 65.4 MiB 0.12 0.00 9.14434 -182.838 -9.14434 9.14434 0.85 0.000692153 0.000629086 0.050445 0.0457064 38 3451 34 6.79088e+06 296384 678818. 2348.85 4.28 0.232276 0.204589 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0321449 0.0289961 151 202 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.06 vpr 65.87 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34256 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67452 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 27.1 MiB 1.60 895 12321 3076 8292 953 65.9 MiB 0.12 0.00 4.3249 -144.349 -4.3249 4.3249 0.90 0.000562863 0.000512322 0.0322987 0.0293249 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.44 0.114426 0.100257 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0246026 0.0217635 155 80 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.56 vpr 65.77 MiB 0.02 7480 -1 -1 1 0.03 -1 -1 33808 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 27.1 MiB 4.35 889 13477 4603 6656 2218 65.8 MiB 0.12 0.00 4.22285 -135.326 -4.22285 4.22285 0.89 0.000550684 0.000501012 0.0422494 0.0385271 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.13 0.115359 0.101453 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.0266994 0.023274 141 78 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.49 vpr 65.82 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33944 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67396 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 27.2 MiB 2.29 953 18428 5979 9684 2765 65.8 MiB 0.15 0.00 3.74716 -129.333 -3.74716 3.74716 0.90 0.000532016 0.00048147 0.0449681 0.0407548 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.12 0.115521 0.101367 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0244228 0.0214097 145 50 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.66 vpr 65.56 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33720 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 26.7 MiB 1.67 922 15090 5352 7218 2520 65.6 MiB 0.13 0.00 4.1666 -130.205 -4.1666 4.1666 0.92 0.000489852 0.000446781 0.0433377 0.0395062 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.83 0.147616 0.129089 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0246258 0.0216803 136 25 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.21 vpr 65.55 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34044 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67120 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 2.17 1047 14965 5078 8038 1849 65.5 MiB 0.14 0.00 4.2175 -149.421 -4.2175 4.2175 0.90 0.000528291 0.00048123 0.0455339 0.0415396 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.86 0.167323 0.146605 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.0274918 0.0243 147 31 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.83 vpr 65.52 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33976 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 1.54 1041 20588 6432 11323 2833 65.5 MiB 0.16 0.00 3.55395 -124.862 -3.55395 3.55395 0.96 0.000576184 0.000520483 0.0490235 0.0445512 32 2871 28 6.87369e+06 544980 586450. 2029.24 1.11 0.127355 0.112357 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0231389 0.0204112 154 61 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.40 vpr 64.84 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34120 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 26.5 MiB 2.59 640 10388 2730 6621 1037 64.8 MiB 0.08 0.00 3.6994 -105.15 -3.6994 3.6994 0.86 0.00040753 0.000372565 0.0261597 0.0238892 28 1921 25 6.87369e+06 279477 531479. 1839.03 1.01 0.0807521 0.0709316 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0198637 0.017412 102 26 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 8.64 vpr 65.63 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33448 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.8 MiB 1.16 969 14273 4212 7662 2399 65.6 MiB 0.11 0.00 3.61131 -114.549 -3.61131 3.61131 0.90 0.000487143 0.000444532 0.0324517 0.0295102 30 2496 28 6.87369e+06 489084 556674. 1926.21 4.47 0.174242 0.151945 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0210026 0.0184808 141 -1 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 7.27 vpr 65.02 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33808 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 26.6 MiB 3.34 735 9712 2823 5738 1151 65.0 MiB 0.08 0.00 3.24697 -108.666 -3.24697 3.24697 0.93 0.000483585 0.000440374 0.0293497 0.0267791 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.94 0.088263 0.0774991 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.27 0.05 0.13 -1 -1 0.27 0.018434 0.0162738 103 81 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.61 vpr 64.95 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34020 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 4.71 706 12808 2978 8428 1402 65.0 MiB 0.09 0.00 3.8076 -131.302 -3.8076 3.8076 0.93 0.000464588 0.000422987 0.0366257 0.0333864 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.83 0.155799 0.136166 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0220794 0.0194025 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.81 vpr 65.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33760 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 26.4 MiB 3.81 860 11776 3165 7564 1047 65.1 MiB 0.10 0.00 3.7375 -122.128 -3.7375 3.7375 0.90 0.000474713 0.000429942 0.0339315 0.0309624 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.99 0.0925941 0.0814372 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0194515 0.0171462 109 58 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.19 vpr 65.57 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34012 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67140 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 26.8 MiB 1.67 881 15207 4108 9975 1124 65.6 MiB 0.11 0.00 3.45001 -118.108 -3.45001 3.45001 0.86 0.000472298 0.000415264 0.032725 0.0296452 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.58 0.134438 0.116666 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0202654 0.0177697 116 57 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 10.64 vpr 65.51 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33608 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 26.8 MiB 5.79 958 19935 5624 11872 2439 65.5 MiB 0.17 0.00 3.64005 -125.972 -3.64005 3.64005 0.89 0.000532753 0.000483637 0.0488784 0.0443446 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.75 0.164921 0.144324 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0217143 0.0191877 147 55 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.02 vpr 65.80 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34216 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.1 MiB 2.78 1059 21016 6637 11817 2562 65.8 MiB 0.17 0.00 4.34584 -150.842 -4.34584 4.34584 0.91 0.00055449 0.000504138 0.0530632 0.0482242 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.10 0.127578 0.112542 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0265304 0.023307 155 60 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.32 vpr 64.48 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33828 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 26.1 MiB 2.32 791 11776 3380 6895 1501 64.5 MiB 0.08 0.00 3.6364 -112.843 -3.6364 3.6364 0.91 0.000360231 0.000328346 0.0281281 0.0257074 32 2110 22 6.87369e+06 265503 586450. 2029.24 1.01 0.0807878 0.0709846 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0184507 0.0163057 102 21 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.06 vpr 65.30 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33692 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 26.6 MiB 3.11 930 14221 5969 7807 445 65.3 MiB 0.13 0.00 3.52575 -124.171 -3.52575 3.52575 0.86 0.000532591 0.000484708 0.0429144 0.0390455 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.96 0.169666 0.148661 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0258646 0.0228239 145 60 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.73 vpr 65.75 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33692 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 27.0 MiB 5.63 1056 17238 4537 10962 1739 65.8 MiB 0.14 0.00 3.55695 -127.024 -3.55695 3.55695 0.90 0.000542914 0.000494432 0.0422682 0.0384689 28 2543 24 6.87369e+06 531006 531479. 1839.03 1.06 0.114344 0.10068 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0266836 0.0233694 148 54 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.50 vpr 65.42 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33696 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 26.7 MiB 3.00 836 17103 4501 10697 1905 65.4 MiB 0.13 0.00 3.09156 -112.02 -3.09156 3.09156 0.90 0.000492498 0.000448306 0.0419066 0.0381564 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.52 0.109476 0.0963304 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.25 0.06 0.12 -1 -1 0.25 0.021519 0.0188526 117 62 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.35 vpr 64.52 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 33524 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 26.1 MiB 0.65 560 9036 3714 4978 344 64.5 MiB 0.06 0.00 2.94056 -94.1681 -2.94056 2.94056 0.86 0.000374817 0.000344579 0.0211555 0.0193493 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.99 0.0723089 0.0631867 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.26 0.04 0.11 -1 -1 0.26 0.0140582 0.0123758 73 29 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 5.52 vpr 64.79 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33864 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 26.4 MiB 1.46 944 12636 3568 7641 1427 64.8 MiB 0.10 0.00 4.39847 -135.821 -4.39847 4.39847 0.92 0.000486277 0.000444524 0.0374753 0.0342393 32 2277 24 6.87369e+06 237555 586450. 2029.24 1.01 0.097935 0.0863645 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0222245 0.0194967 113 55 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.82 vpr 65.69 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33840 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 27.0 MiB 1.12 894 19124 5624 10425 3075 65.7 MiB 0.15 0.00 4.20059 -139.885 -4.20059 4.20059 0.86 0.000441949 0.000402826 0.0439164 0.0399141 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.72 0.156961 0.137571 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0244067 0.0214861 150 31 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 10.69 vpr 65.89 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34304 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 27.1 MiB 3.87 951 19380 5821 10599 2960 65.9 MiB 0.17 0.00 3.81248 -128.436 -3.81248 3.81248 0.90 0.000601 0.000544129 0.0501843 0.0453016 34 2805 27 6.87369e+06 558954 618332. 2139.56 3.68 0.251117 0.217389 25762 151098 -1 2062 23 1561 2406 174013 41452 3.6181 3.6181 -129.211 -3.6181 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0277636 0.0243135 154 108 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.21 vpr 64.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33996 -1 -1 16 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 26.3 MiB 2.40 600 9219 3759 4898 562 64.5 MiB 0.05 0.00 2.91856 -82.7442 -2.91856 2.91856 0.90 0.000309101 0.000281056 0.0195816 0.0178688 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.96 0.0595765 0.0523122 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.27 0.05 0.12 -1 -1 0.27 0.0154686 0.0135718 69 21 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 8.89 vpr 65.54 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 34092 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.7 MiB 1.67 1038 9757 2635 6591 531 65.5 MiB 0.09 0.00 4.1666 -141.416 -4.1666 4.1666 0.89 0.000507829 0.00046401 0.0285196 0.0260292 36 2506 23 6.87369e+06 293451 648988. 2245.63 4.14 0.188518 0.16339 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235451 0.0207479 141 -1 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.64 vpr 64.47 MiB 0.02 6628 -1 -1 1 0.03 -1 -1 33904 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 26.1 MiB 0.51 506 9516 2238 6770 508 64.5 MiB 0.06 0.00 2.55523 -88.1124 -2.55523 2.55523 0.86 0.000324441 0.000297657 0.020569 0.0187929 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.34 0.0853202 0.0744489 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.30 0.03 0.14 -1 -1 0.30 0.0142665 0.0126029 71 -1 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.26 vpr 65.61 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33888 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 26.9 MiB 0.98 1092 17964 4627 11625 1712 65.6 MiB 0.14 0.00 4.26205 -149.131 -4.26205 4.26205 0.90 0.000560318 0.000503452 0.0425472 0.0387294 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.18 0.116331 0.102712 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0237359 0.0209854 155 21 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.96 vpr 65.66 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33924 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67236 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 27.0 MiB 1.02 964 9612 2267 6482 863 65.7 MiB 0.09 0.00 3.55269 -121.215 -3.55269 3.55269 0.86 0.000489183 0.00044298 0.0222985 0.0203009 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.07 0.0963882 0.0845084 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0213497 0.018876 151 -1 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 10.26 vpr 65.64 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34224 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 27.0 MiB 1.21 1088 13358 3512 8899 947 65.6 MiB 0.12 0.00 4.2809 -148.724 -4.2809 4.2809 0.93 0.000549679 0.000493894 0.0348407 0.0316519 26 3507 43 6.87369e+06 544980 503264. 1741.40 5.95 0.227684 0.198421 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.25 0.11 0.12 -1 -1 0.25 0.0274817 0.02415 156 54 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.74 vpr 65.07 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33984 -1 -1 15 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 26.6 MiB 1.19 734 6839 1724 4743 372 65.1 MiB 0.06 0.00 3.07332 -108.035 -3.07332 3.07332 0.91 0.000467129 0.000427374 0.0194667 0.017802 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.55 0.114252 0.0990762 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0173 0.0153413 104 31 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.38 vpr 64.93 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33576 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 26.5 MiB 1.29 856 11260 3834 5392 2034 64.9 MiB 0.09 0.00 3.7936 -125.971 -3.7936 3.7936 0.92 0.000444019 0.000404289 0.0312666 0.028557 32 2233 22 6.87369e+06 251529 586450. 2029.24 1.05 0.0894487 0.0788139 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0180484 0.0159527 109 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.30 vpr 64.96 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33640 -1 -1 19 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 26.6 MiB 1.35 743 13092 5209 6121 1762 65.0 MiB 0.10 0.00 3.48175 -108.034 -3.48175 3.48175 0.85 0.000401514 0.000367286 0.0334508 0.0306121 28 2217 26 6.87369e+06 265503 531479. 1839.03 1.09 0.0931203 0.0822469 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0181397 0.0159739 104 27 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 6.30 vpr 65.15 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33956 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.7 MiB 1.58 861 14700 5460 6955 2285 65.1 MiB 0.11 0.00 3.58201 -129.205 -3.58201 3.58201 0.91 0.000447973 0.000409703 0.0393061 0.0359263 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.63 0.131316 0.114891 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0209972 0.0184968 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.86 vpr 64.74 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34012 -1 -1 32 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 26.2 MiB 1.00 924 11975 3064 7554 1357 64.7 MiB 0.09 0.00 3.50375 -121.402 -3.50375 3.50375 0.86 0.00043367 0.000394479 0.0261739 0.0238615 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.97 0.0848079 0.0743443 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0219346 0.019257 119 26 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.62 vpr 65.04 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33612 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 26.3 MiB 3.28 824 15003 4455 7859 2689 65.0 MiB 0.11 0.00 2.90021 -94.838 -2.90021 2.90021 0.87 0.000427113 0.000388669 0.032987 0.029996 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.42 0.120908 0.105279 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0197653 0.0174086 113 55 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 10.70 vpr 65.99 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33956 -1 -1 44 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67572 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 27.3 MiB 4.96 1315 20411 5511 12546 2354 66.0 MiB 0.20 0.00 4.25391 -147.758 -4.25391 4.25391 0.92 0.00058492 0.000527985 0.0490264 0.0443389 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.53 0.138758 0.122077 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.26 0.12 0.12 -1 -1 0.26 0.0300345 0.0265129 184 26 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.95 vpr 65.91 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34196 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67488 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 27.2 MiB 3.80 1049 18419 4848 10881 2690 65.9 MiB 0.15 0.00 3.66825 -130.624 -3.66825 3.66825 0.92 0.000540839 0.000492402 0.0443554 0.040285 32 2652 21 6.87369e+06 544980 586450. 2029.24 1.04 0.114015 0.10038 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0217683 0.019285 154 62 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 9.09 vpr 65.39 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34188 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 26.6 MiB 4.30 881 17134 5393 9307 2434 65.4 MiB 0.13 0.00 3.56305 -119.83 -3.56305 3.56305 0.91 0.000485702 0.000440465 0.0413347 0.0374865 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.71 0.143376 0.125096 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0205162 0.0180306 116 77 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 7.23 vpr 65.57 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33808 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67144 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 26.9 MiB 2.41 1019 8641 2131 5612 898 65.6 MiB 0.10 0.00 3.59121 -120.774 -3.59121 3.59121 0.91 0.000558039 0.000508808 0.0278286 0.0254139 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.72 0.14604 0.127254 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0275275 0.0242882 141 59 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.37 vpr 65.77 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34168 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 27.0 MiB 6.24 1071 16825 7101 8757 967 65.8 MiB 0.16 0.00 4.97069 -151.888 -4.97069 4.97069 0.93 0.000599566 0.000545166 0.05681 0.0517274 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.93 0.186198 0.163132 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.026125 0.0230086 145 111 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 6.90 vpr 65.30 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34056 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 26.6 MiB 2.22 980 12175 3299 8119 757 65.3 MiB 0.11 0.00 4.75154 -140.36 -4.75154 4.75154 0.87 0.000562184 0.000515324 0.0383602 0.0350565 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.72 0.161173 0.140981 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.025872 0.0227699 141 86 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.59 vpr 65.59 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34016 -1 -1 36 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 26.9 MiB 2.98 1053 19023 5653 10954 2416 65.6 MiB 0.15 0.00 3.64005 -125.414 -3.64005 3.64005 0.86 0.000539877 0.000493879 0.0470648 0.0427901 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.63 0.164424 0.143968 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0252077 0.0221574 148 58 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 9.18 vpr 65.74 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 34340 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 27.1 MiB 2.24 1150 19618 5466 12522 1630 65.7 MiB 0.16 0.00 4.1996 -145.707 -4.1996 4.1996 0.91 0.000558041 0.000504818 0.0472736 0.0428279 34 2754 24 6.87369e+06 531006 618332. 2139.56 3.75 0.229769 0.199323 25762 151098 -1 2446 23 2018 3153 285501 61588 3.6528 3.6528 -145.952 -3.6528 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0270911 0.023704 156 42 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.59 vpr 65.68 MiB 0.02 7316 -1 -1 1 0.04 -1 -1 34168 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 27.3 MiB 4.17 1303 13356 3327 8820 1209 65.7 MiB 0.14 0.00 4.31511 -149.42 -4.31511 4.31511 0.90 0.000654912 0.000587431 0.0380705 0.0343869 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.33 0.124859 0.109658 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.030361 0.0267942 186 91 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 8.93 vpr 65.06 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34088 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 26.6 MiB 2.46 908 12636 4255 7048 1333 65.1 MiB 0.10 0.00 3.7654 -130.371 -3.7654 3.7654 0.92 0.000445082 0.000407385 0.0342845 0.0312937 34 2191 32 6.87369e+06 237555 618332. 2139.56 3.41 0.161269 0.140278 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.31 0.06 0.16 -1 -1 0.31 0.0189829 0.0167124 112 24 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.86 vpr 65.91 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33964 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67496 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 27.2 MiB 3.31 1036 19820 6398 10981 2441 65.9 MiB 0.16 0.00 4.25889 -142.345 -4.25889 4.25889 0.91 0.000547116 0.000497932 0.0487985 0.0443702 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.39 0.136501 0.120395 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.29 0.10 0.14 -1 -1 0.29 0.0268328 0.0236188 152 59 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.68 vpr 65.56 MiB 0.02 7344 -1 -1 1 0.04 -1 -1 33872 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 26.8 MiB 2.28 1118 16515 4839 10227 1449 65.6 MiB 0.14 0.00 3.56001 -125.702 -3.56001 3.56001 0.86 0.000540362 0.000492778 0.0402555 0.0366265 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.48 0.120909 0.10707 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0251943 0.0221473 150 54 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 9.19 vpr 65.43 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33588 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 1.90 942 16081 4088 11306 687 65.4 MiB 0.14 0.00 4.1996 -144.758 -4.1996 4.1996 0.91 0.000531078 0.000488044 0.0466953 0.0426211 34 3051 25 6.87369e+06 293451 618332. 2139.56 4.13 0.200708 0.175393 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0257448 0.0226263 147 -1 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.68 vpr 65.95 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34012 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67528 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 27.2 MiB 4.79 1066 20980 7180 11264 2536 65.9 MiB 0.18 0.00 3.54349 -125.696 -3.54349 3.54349 0.92 0.000569563 0.000515513 0.0586016 0.0535064 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.71 0.182424 0.160166 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0255529 0.0224714 148 81 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.89 vpr 65.63 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33708 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 27.0 MiB 4.50 1032 19142 4987 12020 2135 65.6 MiB 0.16 0.00 3.61805 -127.505 -3.61805 3.61805 0.87 0.000556954 0.000506429 0.0456525 0.0416049 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.43 0.142779 0.126162 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0274282 0.0240894 152 58 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.85 vpr 65.78 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33948 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 27.0 MiB 3.64 1111 18648 5184 11229 2235 65.8 MiB 0.15 0.00 3.58025 -126.995 -3.58025 3.58025 0.90 0.000573914 0.000522572 0.0451848 0.0409114 32 2918 26 6.87369e+06 558954 586450. 2029.24 1.09 0.119188 0.104726 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.29 0.09 0.14 -1 -1 0.29 0.0252646 0.0222447 156 61 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 7.63 vpr 65.81 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33872 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 27.1 MiB 1.00 973 12876 3455 7707 1714 65.8 MiB 0.09 0.00 4.3249 -147.802 -4.3249 4.3249 0.85 0.000505894 0.000462506 0.0286365 0.0260267 34 2850 24 6.87369e+06 544980 618332. 2139.56 3.70 0.186727 0.162778 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.023561 0.0208534 156 21 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.62 vpr 65.74 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34288 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67316 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 27.0 MiB 3.57 1087 15172 3966 9854 1352 65.7 MiB 0.13 0.00 4.1996 -143.047 -4.1996 4.1996 0.91 0.000577764 0.000525268 0.0366858 0.0332986 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.90 0.164669 0.144038 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0276909 0.0244067 157 50 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 12.47 vpr 65.59 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33924 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 26.8 MiB 5.02 988 19356 5396 10906 3054 65.6 MiB 0.18 0.00 4.16785 -135.645 -4.16785 4.16785 0.92 0.000598999 0.000541836 0.0520314 0.0470904 30 2632 23 6.87369e+06 517032 556674. 1926.21 4.29 0.210191 0.183415 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.30 0.07 0.13 -1 -1 0.30 0.0274947 0.0241437 150 110 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 8.64 vpr 65.35 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33920 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 26.6 MiB 3.56 1079 15709 4633 9421 1655 65.4 MiB 0.15 0.00 4.13359 -143.515 -4.13359 4.13359 0.91 0.000585645 0.000532389 0.0519564 0.0472347 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.89 0.179406 0.156725 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.028139 0.0246684 145 86 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.25 vpr 64.98 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33956 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 26.5 MiB 1.13 919 15426 4260 9754 1412 65.0 MiB 0.12 0.00 3.51475 -125.544 -3.51475 3.51475 0.92 0.000465665 0.000424366 0.0344461 0.0312959 32 2428 31 6.87369e+06 447163 586450. 2029.24 1.06 0.0996039 0.0873306 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0221335 0.0194066 121 20 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.06 vpr 65.48 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33728 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 26.7 MiB 3.95 953 12980 4579 7047 1354 65.5 MiB 0.11 0.00 3.6884 -132.193 -3.6884 3.6884 0.90 0.000490872 0.000446787 0.0400058 0.0364614 32 2548 27 6.87369e+06 223581 586450. 2029.24 1.05 0.108412 0.0952358 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0249082 0.0218028 112 91 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 14.39 vpr 65.66 MiB 0.02 7300 -1 -1 1 0.04 -1 -1 34192 -1 -1 44 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 27.3 MiB 2.57 1419 16556 4403 10830 1323 65.7 MiB 0.16 0.00 4.99284 -170.715 -4.99284 4.99284 0.90 0.000611969 0.000555854 0.0427306 0.0387611 28 3950 45 6.87369e+06 614849 531479. 1839.03 8.67 0.232941 0.203255 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.26 0.13 0.12 -1 -1 0.26 0.0310808 0.0275059 189 53 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.35 vpr 65.53 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33984 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 26.9 MiB 3.21 1069 15831 4027 10006 1798 65.5 MiB 0.13 0.00 3.59121 -127.943 -3.59121 3.59121 0.86 0.000520065 0.00047293 0.0383174 0.0348015 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.25 0.114155 0.101189 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.25 0.10 0.11 -1 -1 0.25 0.0322052 0.0282299 150 31 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.76 vpr 65.20 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33500 -1 -1 31 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 26.4 MiB 0.83 823 15633 5297 7776 2560 65.2 MiB 0.11 0.00 3.51601 -116.196 -3.51601 3.51601 0.87 0.000424496 0.000385108 0.0330973 0.0299853 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.10 0.0956609 0.0844265 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0201325 0.0176575 116 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 12.06 vpr 65.92 MiB 0.02 7580 -1 -1 1 0.04 -1 -1 34292 -1 -1 47 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 27.5 MiB 7.16 1193 22455 6528 13018 2909 65.9 MiB 0.20 0.00 4.91264 -167.151 -4.91264 4.91264 0.86 0.00066778 0.000610093 0.0582322 0.052882 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.78 0.185682 0.164413 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.29 0.12 0.13 -1 -1 0.29 0.0355429 0.0313985 190 109 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.82 vpr 65.68 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 33628 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 26.9 MiB 3.86 975 19868 5843 10688 3337 65.7 MiB 0.15 0.00 4.28153 -144.516 -4.28153 4.28153 0.91 0.000543219 0.000494571 0.0468357 0.0426627 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.83 0.164165 0.143668 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0236658 0.0208477 156 31 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.79 vpr 64.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33924 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.5 MiB 0.82 857 11197 2857 7409 931 65.0 MiB 0.09 0.00 3.64005 -128.736 -3.64005 3.64005 0.89 0.000441825 0.000403148 0.0236811 0.0216202 30 2290 23 6.87369e+06 461137 556674. 1926.21 1.01 0.0802588 0.070274 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0187636 0.0165543 123 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 8.15 vpr 65.88 MiB 0.02 7440 -1 -1 1 0.04 -1 -1 34416 -1 -1 45 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 27.2 MiB 3.25 1249 21169 5887 12519 2763 65.9 MiB 0.18 0.00 4.9297 -168.732 -4.9297 4.9297 0.91 0.000643137 0.000586991 0.0506838 0.0459636 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.70 0.144441 0.127371 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.26 0.13 0.12 -1 -1 0.26 0.0323338 0.0284717 189 26 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.58 vpr 64.92 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 33948 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 1.17 806 12292 2857 8871 564 64.9 MiB 0.09 0.00 3.7764 -134.344 -3.7764 3.7764 0.86 0.000413729 0.000377152 0.0319735 0.029214 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.53 0.121636 0.106351 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0203611 0.017916 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.93 vpr 65.13 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33816 -1 -1 33 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 26.6 MiB 2.95 719 10463 2628 6946 889 65.1 MiB 0.09 0.00 3.56001 -114.458 -3.56001 3.56001 0.89 0.000432518 0.00039425 0.0230064 0.0209149 28 2094 21 6.87369e+06 461137 531479. 1839.03 1.05 0.0794563 0.0695694 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0208676 0.0183067 118 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.90 vpr 65.25 MiB 0.02 7500 -1 -1 1 0.03 -1 -1 34080 -1 -1 35 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 26.6 MiB 4.11 1008 14550 3923 8443 2184 65.2 MiB 0.12 0.00 3.54707 -114.227 -3.54707 3.54707 0.90 0.000548786 0.000499026 0.0386508 0.0351555 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.69 0.154733 0.134923 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0243597 0.0214544 141 81 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.78 vpr 65.49 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33980 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 2.66 854 12175 2685 7576 1914 65.5 MiB 0.10 0.00 4.2388 -146.065 -4.2388 4.2388 0.90 0.000557899 0.000507546 0.0392427 0.0357463 34 2806 28 6.87369e+06 293451 618332. 2139.56 2.04 0.171906 0.150632 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0287808 0.0251882 147 53 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.03 vpr 65.75 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33948 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67328 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.0 MiB 4.88 1100 18901 5336 11603 1962 65.8 MiB 0.15 0.00 4.27679 -150.534 -4.27679 4.27679 0.89 0.000527223 0.000473832 0.0452618 0.0410389 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.10 0.119445 0.105376 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.27 0.07 0.12 -1 -1 0.27 0.0253637 0.0222921 155 55 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.65 vpr 65.58 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33924 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 26.8 MiB 3.80 825 17191 6233 8742 2216 65.6 MiB 0.13 0.00 3.60705 -126.657 -3.60705 3.60705 0.91 0.000497634 0.000447431 0.0404726 0.0366824 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.71 0.143946 0.125421 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0221982 0.0195514 123 55 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.99 vpr 65.02 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34004 -1 -1 18 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 26.6 MiB 4.38 738 4456 873 3135 448 65.0 MiB 0.05 0.00 3.6994 -119.902 -3.6994 3.6994 0.91 0.000519088 0.000474944 0.0145115 0.0132503 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.67 0.114449 0.0986535 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0226197 0.0198008 108 82 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.96 vpr 65.70 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34252 -1 -1 34 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 27.0 MiB 3.55 914 16740 4391 9932 2417 65.7 MiB 0.14 0.00 3.59605 -116.379 -3.59605 3.59605 0.86 0.000511536 0.000467569 0.0416498 0.0380319 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.47 0.147092 0.128635 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0208789 0.0184177 143 52 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.89 vpr 65.42 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34116 -1 -1 35 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66988 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 26.6 MiB 1.99 905 12191 3346 7959 886 65.4 MiB 0.10 0.00 4.19891 -125.962 -4.19891 4.19891 0.91 0.000439137 0.000399673 0.0286271 0.0259334 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.89 0.100042 0.0879947 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0266022 0.0232413 139 20 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 7.08 vpr 64.95 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33868 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 26.5 MiB 3.08 882 11432 3518 6484 1430 65.0 MiB 0.10 0.00 3.7324 -126.153 -3.7324 3.7324 0.92 0.00048185 0.000439878 0.0335982 0.0306571 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.99 0.0919993 0.0809561 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0209283 0.0183849 110 58 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.72 vpr 64.96 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33772 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 26.3 MiB 4.13 904 14256 4718 7453 2085 65.0 MiB 0.12 0.00 3.6144 -123.374 -3.6144 3.6144 0.89 0.00047964 0.00043635 0.0418981 0.0381536 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.56 0.143114 0.124718 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.022444 0.0196621 110 88 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.81 vpr 65.50 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34060 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 27.1 MiB 1.05 962 16804 5215 8614 2975 65.5 MiB 0.14 0.00 4.24789 -140.354 -4.24789 4.24789 0.91 0.000518454 0.000473934 0.0386431 0.0352535 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.64 0.11599 0.102882 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0207336 0.0183014 151 -1 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.76 vpr 65.59 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33896 -1 -1 38 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 26.9 MiB 5.08 1093 19380 5712 11198 2470 65.6 MiB 0.16 0.00 4.29189 -149.386 -4.29189 4.29189 0.91 0.000574311 0.000523663 0.0483277 0.0439765 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.54 0.128135 0.113245 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.26 0.11 0.13 -1 -1 0.26 0.0290414 0.0254265 156 57 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.92 vpr 65.77 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34060 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.9 MiB 4.70 1146 17256 4889 10338 2029 65.8 MiB 0.14 0.00 4.30289 -150.744 -4.30289 4.30289 0.92 0.000568984 0.00051641 0.0429575 0.0390208 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.14 0.116946 0.102876 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0252885 0.0223328 155 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.41 vpr 65.62 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33984 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 27.0 MiB 3.68 1114 16491 4519 10066 1906 65.6 MiB 0.14 0.00 4.16249 -142.489 -4.16249 4.16249 0.90 0.000561068 0.000510245 0.04116 0.0373506 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.67 0.126826 0.111297 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.0258963 0.02268 152 62 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.18 vpr 64.95 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 34180 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 26.5 MiB 3.14 746 10406 2932 6420 1054 64.9 MiB 0.08 0.00 3.7324 -121.378 -3.7324 3.7324 0.92 0.000398557 0.000365237 0.0273244 0.0249538 32 2264 21 6.87369e+06 265503 586450. 2029.24 1.04 0.0836753 0.0735561 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0184392 0.0162677 110 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.89 vpr 65.37 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34168 -1 -1 23 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 26.7 MiB 3.97 980 15709 4819 8970 1920 65.4 MiB 0.13 0.00 4.23999 -140.261 -4.23999 4.23999 0.86 0.000511081 0.000467296 0.0454016 0.041459 30 2357 25 6.87369e+06 321398 556674. 1926.21 1.02 0.117433 0.103782 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0227762 0.0200898 140 58 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 10.63 vpr 65.65 MiB 0.02 7532 -1 -1 1 0.03 -1 -1 34212 -1 -1 43 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 27.0 MiB 6.17 1155 15540 3963 10188 1389 65.7 MiB 0.13 0.00 4.23385 -146.284 -4.23385 4.23385 0.90 0.000582331 0.000521411 0.0367929 0.0329965 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.36 0.13482 0.117372 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.30 0.11 0.13 -1 -1 0.30 0.02856 0.0249341 158 106 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.04 vpr 65.77 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33784 -1 -1 33 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 27.0 MiB 1.45 1029 18273 5989 9373 2911 65.8 MiB 0.16 0.00 4.26989 -143.564 -4.26989 4.26989 0.90 0.000576976 0.000525221 0.0503892 0.0458467 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.50 0.128539 0.113404 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.26 0.09 0.13 -1 -1 0.26 0.0275947 0.0241818 149 79 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.10 vpr 65.73 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 34024 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67312 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 27.1 MiB 2.90 942 16921 5030 8706 3185 65.7 MiB 0.16 0.00 3.63595 -118.056 -3.63595 3.63595 0.91 0.000561644 0.00050523 0.0470833 0.0427841 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.12 0.119163 0.104842 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0254521 0.0223408 141 83 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 10.86 vpr 65.67 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34292 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67248 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 27.0 MiB 5.69 1087 14593 4252 9147 1194 65.7 MiB 0.14 0.00 4.1996 -148.308 -4.1996 4.1996 0.89 0.000545252 0.000496592 0.0454056 0.041387 34 3260 29 6.87369e+06 293451 618332. 2139.56 2.06 0.171592 0.149901 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.027226 0.0239829 147 58 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.81 vpr 65.80 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34048 -1 -1 36 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67380 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 27.1 MiB 2.72 943 12751 3363 8405 983 65.8 MiB 0.11 0.00 3.54105 -112.818 -3.54105 3.54105 0.91 0.000535373 0.000485985 0.0335337 0.0304219 26 2618 24 6.87369e+06 503058 503264. 1741.40 1.06 0.10432 0.0913609 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.26 0.09 0.12 -1 -1 0.26 0.0255766 0.0224009 138 81 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.45 vpr 64.91 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33816 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 0.81 862 12292 3174 7904 1214 64.9 MiB 0.10 0.00 3.7104 -131.958 -3.7104 3.7104 0.91 0.000433695 0.000395087 0.0334193 0.0305307 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.58 0.121146 0.105756 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0201696 0.0178976 114 -1 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.44 vpr 65.78 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33628 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 27.0 MiB 5.36 1088 19841 5443 12522 1876 65.8 MiB 0.16 0.00 4.3249 -149.309 -4.3249 4.3249 0.86 0.000556859 0.000509388 0.0478548 0.0435792 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.08 0.12236 0.108175 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.28 0.09 0.13 -1 -1 0.28 0.0277214 0.0243911 155 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.00 vpr 65.59 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33868 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 5.05 1071 15151 5130 8107 1914 65.6 MiB 0.13 0.00 4.2388 -148.068 -4.2388 4.2388 0.90 0.000583437 0.000530374 0.0490798 0.0446373 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.81 0.171046 0.14929 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0267208 0.0234607 147 62 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.77 vpr 65.16 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34164 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.4 MiB 4.23 885 16708 4981 9424 2303 65.2 MiB 0.12 0.00 3.50501 -121.209 -3.50501 3.50501 0.91 0.000406917 0.000369409 0.036566 0.0330846 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.50 0.126822 0.110236 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0205235 0.0179718 112 47 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.17 vpr 64.88 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33832 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.6 MiB 1.10 723 6960 1528 4773 659 64.9 MiB 0.06 0.00 3.7434 -125.643 -3.7434 3.7434 0.93 0.000375445 0.000345241 0.0180952 0.0165492 32 2245 24 6.87369e+06 237555 586450. 2029.24 1.04 0.0750948 0.0657785 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.30 0.06 0.15 -1 -1 0.30 0.0193584 0.0170991 112 -1 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.72 vpr 65.25 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33932 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 26.6 MiB 3.58 1023 18795 5447 10788 2560 65.2 MiB 0.15 0.00 4.30799 -144.78 -4.30799 4.30799 0.90 0.000540647 0.000493135 0.0467183 0.0424507 28 2603 22 6.87369e+06 489084 531479. 1839.03 1.07 0.118853 0.105002 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0239316 0.0211124 144 56 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.93 vpr 65.37 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33964 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 26.6 MiB 1.45 1094 18745 5603 10775 2367 65.4 MiB 0.16 0.00 4.21185 -141.009 -4.21185 4.21185 0.91 0.000558915 0.000509292 0.049161 0.0446191 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.36 0.133033 0.117053 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.28 0.09 0.13 -1 -1 0.28 0.0281407 0.0246645 142 81 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 9.52 vpr 66.06 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33980 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67648 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 27.4 MiB 1.13 1329 17642 5677 9392 2573 66.1 MiB 0.17 0.00 4.98719 -165.596 -4.98719 4.98719 0.92 0.000525378 0.000480662 0.0442426 0.0401951 34 3730 48 6.87369e+06 572927 618332. 2139.56 5.17 0.270122 0.235451 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0282961 0.0249321 183 -1 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.63 vpr 65.49 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33796 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 26.9 MiB 3.10 1005 13300 3782 8501 1017 65.5 MiB 0.11 0.00 3.59605 -120.715 -3.59605 3.59605 0.86 0.000507787 0.000462481 0.0343111 0.031186 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.60 0.146602 0.127806 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0212465 0.0187293 141 47 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.93 vpr 64.93 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34200 -1 -1 20 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 26.6 MiB 0.96 735 12247 4571 5926 1750 64.9 MiB 0.09 0.00 3.6866 -109.378 -3.6866 3.6866 0.92 0.000405506 0.000368443 0.0308604 0.0281314 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.97 0.0807288 0.0710109 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.29 0.05 0.15 -1 -1 0.29 0.0180003 0.0158529 102 26 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 12.92 vpr 65.94 MiB 0.02 7252 -1 -1 1 0.04 -1 -1 34164 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67524 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 27.5 MiB 3.22 1290 11856 2585 8478 793 65.9 MiB 0.13 0.00 4.1886 -144.868 -4.1886 4.1886 0.90 0.000642002 0.000579601 0.033645 0.0304476 30 3626 23 6.87369e+06 586901 556674. 1926.21 6.59 0.217116 0.188821 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.28 0.09 0.13 -1 -1 0.28 0.0304908 0.0268346 184 85 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.82 vpr 65.71 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33956 -1 -1 23 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67288 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 27.0 MiB 4.27 874 9914 2276 6234 1404 65.7 MiB 0.09 0.00 4.91157 -150.663 -4.91157 4.91157 0.93 0.000582216 0.000528519 0.0332627 0.0302756 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.43 0.184751 0.162291 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0278965 0.0245105 144 105 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.62 vpr 65.12 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 26.6 MiB 4.00 802 14356 5267 6628 2461 65.1 MiB 0.11 0.00 4.598 -126.496 -4.598 4.598 0.92 0.000447166 0.000407568 0.0416078 0.0378321 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.60 0.145969 0.127179 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.31 0.04 0.14 -1 -1 0.31 0.0172282 0.0153209 107 86 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 8.21 vpr 65.62 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34084 -1 -1 34 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 26.9 MiB 1.26 1114 14723 4652 8968 1103 65.6 MiB 0.13 0.00 4.1955 -143.003 -4.1955 4.1955 0.92 0.00054923 0.000501939 0.0376323 0.0341699 28 2955 24 6.87369e+06 475111 531479. 1839.03 3.86 0.220099 0.191829 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.26 0.10 0.13 -1 -1 0.26 0.0241615 0.0212778 147 31 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.92 vpr 65.78 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 34248 -1 -1 40 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 27.2 MiB 2.47 1006 19865 6118 9930 3817 65.8 MiB 0.17 0.00 4.28153 -140.004 -4.28153 4.28153 0.92 0.0006115 0.000545065 0.0528139 0.0478992 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.22 0.198041 0.173284 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0298691 0.0263785 176 50 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.30 vpr 65.40 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34180 -1 -1 36 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 26.8 MiB 2.33 1085 17873 5357 10009 2507 65.4 MiB 0.15 0.00 3.50639 -115.998 -3.50639 3.50639 0.91 0.000521679 0.000475245 0.0443439 0.0402034 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.82 0.158488 0.138682 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0249711 0.0219609 144 50 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 7.76 vpr 65.71 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 34184 -1 -1 46 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 26.9 MiB 3.16 1127 20887 5685 13197 2005 65.7 MiB 0.17 0.00 4.26133 -148.826 -4.26133 4.26133 0.87 0.000538379 0.0004877 0.0456635 0.0414606 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.63 0.131721 0.116823 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.25 0.09 0.11 -1 -1 0.25 0.0277467 0.0243844 160 61 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.37 vpr 65.92 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33676 -1 -1 42 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 27.2 MiB 3.62 1115 19606 5308 11826 2472 65.9 MiB 0.15 0.00 3.52575 -126.542 -3.52575 3.52575 0.91 0.000571422 0.000519745 0.0465321 0.0422663 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.65 0.149113 0.13121 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0290671 0.0255982 157 61 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.71 vpr 64.79 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 33788 -1 -1 19 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 26.4 MiB 2.24 669 12808 5105 6141 1562 64.8 MiB 0.09 0.00 3.73366 -117.212 -3.73366 3.73366 0.91 0.000428541 0.000390194 0.0324529 0.0295049 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.45 0.116971 0.101526 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.018334 0.0161372 107 28 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.69 vpr 65.52 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34176 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 26.8 MiB 2.94 808 7256 1653 5365 238 65.5 MiB 0.07 0.00 4.2805 -117.484 -4.2805 4.2805 0.93 0.000464807 0.000424209 0.0215073 0.0195989 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.74 0.130516 0.113878 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.014721 0.0131654 102 79 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.10 vpr 65.66 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34212 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 27.0 MiB 2.17 1136 19618 6151 11073 2394 65.7 MiB 0.17 0.00 4.1886 -141.394 -4.1886 4.1886 0.89 0.000530404 0.000482121 0.0467803 0.0424788 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.85 0.136486 0.119934 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.25 0.09 0.13 -1 -1 0.25 0.0243425 0.0214074 152 29 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 11.33 vpr 64.88 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33708 -1 -1 32 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 26.4 MiB 4.07 794 17103 5256 9538 2309 64.9 MiB 0.12 0.00 3.45975 -106.144 -3.45975 3.45975 0.90 0.000430529 0.000392827 0.0366213 0.0332691 24 2312 34 6.87369e+06 447163 470940. 1629.55 4.32 0.173099 0.149957 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.23 0.09 0.11 -1 -1 0.23 0.0222711 0.0194278 108 48 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.68 vpr 64.94 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 4.00 809 12464 3077 8852 535 64.9 MiB 0.10 0.00 3.7104 -131.395 -3.7104 3.7104 0.90 0.0004644 0.000424093 0.0358617 0.0327199 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.65 0.138121 0.120425 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0219385 0.0192461 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.51 vpr 65.70 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34100 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 27.0 MiB 3.07 1003 13598 3664 8482 1452 65.7 MiB 0.11 0.00 3.61625 -124.489 -3.61625 3.61625 0.87 0.000545972 0.000488986 0.0349119 0.0316688 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.53 0.143453 0.125034 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0227834 0.0201315 146 60 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.61 vpr 64.92 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33836 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 26.5 MiB 3.60 698 11402 3727 5924 1751 64.9 MiB 0.09 0.00 3.33623 -109.833 -3.33623 3.33623 0.90 0.000449823 0.000413789 0.0322318 0.0294365 26 2239 28 6.87369e+06 223581 503264. 1741.40 1.09 0.0955793 0.0838343 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.25 0.06 0.12 -1 -1 0.25 0.0190178 0.0166711 103 49 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.61 vpr 65.47 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33860 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 26.8 MiB 3.40 1019 17256 4700 9815 2741 65.5 MiB 0.14 0.00 3.59195 -122.625 -3.59195 3.59195 0.90 0.000488817 0.000442872 0.0411482 0.0374372 32 2782 36 6.87369e+06 517032 586450. 2029.24 1.14 0.12331 0.108492 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0250445 0.0219687 143 56 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.43 vpr 65.56 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33768 -1 -1 39 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 26.8 MiB 4.24 929 10336 2368 6764 1204 65.6 MiB 0.10 0.00 3.59605 -120.102 -3.59605 3.59605 0.94 0.000578692 0.0005269 0.0274018 0.0248812 32 2620 21 6.87369e+06 544980 586450. 2029.24 1.06 0.10034 0.0879021 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0275735 0.0241594 151 88 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.99 vpr 65.39 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 34028 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 26.7 MiB 3.38 812 13206 3975 7418 1813 65.4 MiB 0.11 0.00 3.26897 -114.681 -3.26897 3.26897 0.90 0.00046264 0.000421788 0.037131 0.0338135 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.57 0.139441 0.121477 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0214609 0.0188699 110 54 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.56 vpr 65.30 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33848 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 3.70 923 10056 2840 6443 773 65.3 MiB 0.09 0.00 3.6884 -128.712 -3.6884 3.6884 0.86 0.000451803 0.000411722 0.0292687 0.0267665 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.99 0.090773 0.0799633 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.28 0.08 0.13 -1 -1 0.28 0.0236831 0.0208045 112 60 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 9.89 vpr 65.55 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34392 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67120 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 26.8 MiB 3.50 1032 14988 3846 9829 1313 65.5 MiB 0.13 0.00 4.29009 -147.998 -4.29009 4.29009 0.88 0.000607637 0.000527847 0.0366441 0.0332738 34 2540 20 6.87369e+06 558954 618332. 2139.56 3.33 0.185987 0.162354 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0278076 0.0243846 157 49 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 8.04 vpr 65.65 MiB 0.02 7416 -1 -1 1 0.03 -1 -1 33980 -1 -1 34 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 27.0 MiB 3.05 880 11759 2826 8215 718 65.7 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.91 0.000518199 0.000470407 0.0304129 0.027603 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.94 0.11949 0.104622 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.27 0.09 0.14 -1 -1 0.27 0.0273157 0.0239879 140 54 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 11.64 vpr 65.96 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 34128 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67544 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 27.4 MiB 6.44 930 19136 5654 10352 3130 66.0 MiB 0.16 0.00 4.25669 -144.754 -4.25669 4.25669 0.91 0.000581885 0.000524317 0.0501857 0.0452994 34 2868 25 6.87369e+06 558954 618332. 2139.56 2.02 0.186599 0.162793 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0292193 0.0255607 157 117 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.75 vpr 65.02 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33784 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.4 MiB 0.86 801 6501 1452 4525 524 65.0 MiB 0.05 0.00 3.09052 -106.923 -3.09052 3.09052 0.90 0.000373145 0.000342198 0.0161426 0.0148154 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.99 0.0736669 0.0643926 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.017968 0.0158572 104 -1 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.52 vpr 65.59 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 33812 -1 -1 37 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67164 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 26.8 MiB 1.92 977 17961 5555 9821 2585 65.6 MiB 0.14 0.00 4.24789 -140.827 -4.24789 4.24789 0.86 0.00053898 0.000492163 0.0447862 0.040779 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.64 0.166806 0.146426 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.021724 0.0192518 147 89 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.43 vpr 65.14 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33632 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 4.95 961 12808 4157 6979 1672 65.1 MiB 0.09 0.00 3.7416 -135.274 -3.7416 3.7416 0.87 0.000439019 0.000398346 0.0372573 0.0338926 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.54 0.140765 0.122622 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.024211 0.0211701 114 93 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.12 vpr 65.46 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33788 -1 -1 39 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 26.8 MiB 3.68 1013 13117 3136 9263 718 65.5 MiB 0.12 0.00 3.62407 -127.528 -3.62407 3.62407 0.90 0.00054925 0.00049931 0.0324106 0.0293624 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.43 0.122371 0.107098 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0270189 0.0236967 153 59 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.92 vpr 66.13 MiB 0.02 7492 -1 -1 1 0.04 -1 -1 34272 -1 -1 47 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67720 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 27.2 MiB 5.42 1138 14475 3597 10051 827 66.1 MiB 0.13 0.00 4.97494 -166.026 -4.97494 4.97494 0.91 0.000643957 0.000586798 0.0373421 0.0336975 32 3530 43 6.87369e+06 656770 586450. 2029.24 2.37 0.190146 0.16629 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.30 0.11 0.13 -1 -1 0.30 0.0301838 0.026493 190 81 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.44 vpr 64.75 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33468 -1 -1 14 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 26.3 MiB 2.55 613 9036 2242 6211 583 64.7 MiB 0.06 0.00 2.94746 -92.2629 -2.94746 2.94746 0.92 0.000384267 0.000351864 0.0231314 0.021096 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.93 0.0715282 0.0624826 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.29 0.04 0.14 -1 -1 0.29 0.0140958 0.0124368 72 51 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.23 vpr 65.05 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33760 -1 -1 18 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 26.7 MiB 1.21 764 12120 4745 5717 1658 65.1 MiB 0.09 0.00 3.7196 -120.247 -3.7196 3.7196 0.91 0.000431908 0.000393147 0.0331118 0.0301913 32 2131 23 6.87369e+06 251529 586450. 2029.24 1.00 0.0889573 0.078429 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0199888 0.0176314 109 29 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.38 vpr 65.21 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33524 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 1.61 884 12464 4265 6183 2016 65.2 MiB 0.11 0.00 3.52575 -127.584 -3.52575 3.52575 0.91 0.000469394 0.000428112 0.0360033 0.0328833 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.71 0.13419 0.117385 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0216898 0.0190405 114 31 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.83 vpr 64.77 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 34000 -1 -1 37 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 26.3 MiB 0.94 742 15004 4316 8330 2358 64.8 MiB 0.10 0.00 3.44875 -93.4127 -3.44875 3.44875 0.91 0.000380422 0.000347394 0.0283607 0.0258839 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.93 0.0736533 0.0646506 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.017571 0.0153746 105 19 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.97 vpr 65.51 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33928 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67080 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 26.8 MiB 3.21 1035 11989 3061 8035 893 65.5 MiB 0.12 0.00 4.14459 -143.245 -4.14459 4.14459 0.86 0.000564198 0.000515137 0.0391256 0.0357196 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.82 0.170651 0.150026 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.025373 0.0224458 145 84 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.07 vpr 65.86 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34028 -1 -1 40 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 27.1 MiB 3.38 969 12394 3038 8536 820 65.9 MiB 0.11 0.00 3.62425 -121.977 -3.62425 3.62425 0.91 0.000550204 0.000496332 0.0317635 0.0287028 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.60 0.148286 0.128657 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0260477 0.0228675 151 88 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 9.27 vpr 65.80 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 34180 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67384 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 27.1 MiB 1.98 1383 18363 6134 9531 2698 65.8 MiB 0.16 0.00 5.11247 -173.262 -5.11247 5.11247 0.90 0.000602376 0.000547834 0.053715 0.0489064 36 3373 46 6.89349e+06 408721 648988. 2245.63 4.13 0.255967 0.222288 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0255616 0.0226103 192 80 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.06 vpr 65.69 MiB 0.02 7476 -1 -1 1 0.03 -1 -1 33980 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 26.9 MiB 1.74 1338 16411 5641 8181 2589 65.7 MiB 0.14 0.00 5.22297 -160.634 -5.22297 5.22297 0.85 0.000529614 0.000484026 0.0445403 0.0405965 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.28 0.171644 0.150472 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0290103 0.0256754 177 78 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.80 vpr 65.65 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33964 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 27.0 MiB 2.29 1277 15533 4267 9018 2248 65.6 MiB 0.14 0.00 4.0146 -140.879 -4.0146 4.0146 0.92 0.00051888 0.000464725 0.0435883 0.0397347 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.37 0.190472 0.166977 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0250325 0.0221295 167 50 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.98 vpr 65.02 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34100 -1 -1 25 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 26.2 MiB 2.34 1071 16718 5447 9404 1867 65.0 MiB 0.14 0.00 4.53305 -141.516 -4.53305 4.53305 0.86 0.000464892 0.000424811 0.0446716 0.0408212 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.70 0.157582 0.138588 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0234029 0.020658 148 25 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.83 vpr 65.55 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33992 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.9 MiB 2.31 1361 14518 4265 8140 2113 65.6 MiB 0.13 0.00 5.03124 -172.909 -5.03124 5.03124 0.91 0.000558237 0.000508147 0.0418903 0.038106 36 3336 26 6.89349e+06 338252 648988. 2245.63 4.35 0.216582 0.188309 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0250693 0.0221045 163 31 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.18 vpr 65.88 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 33844 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67456 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 27.1 MiB 2.20 1499 20359 6047 11800 2512 65.9 MiB 0.18 0.00 4.44565 -148.532 -4.44565 4.44565 0.90 0.000557334 0.000508542 0.0477159 0.0433276 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.83 0.167084 0.145522 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0273811 0.0239793 179 61 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.84 vpr 64.72 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 34096 -1 -1 21 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 26.4 MiB 1.84 730 14528 4147 9388 993 64.7 MiB 0.10 0.00 3.83226 -109.129 -3.83226 3.83226 0.90 0.000417023 0.000380701 0.0361495 0.0329714 30 2039 26 6.89349e+06 295971 556674. 1926.21 1.01 0.0918646 0.0807942 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0172253 0.0151496 112 26 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.68 vpr 65.29 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33636 -1 -1 35 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.6 MiB 0.94 921 14273 4335 7347 2591 65.3 MiB 0.11 0.00 3.53335 -112.01 -3.53335 3.53335 0.92 0.000469008 0.000424912 0.0315971 0.0287245 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.70 0.131752 0.11504 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0204502 0.0180066 141 -1 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.41 vpr 65.12 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33628 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 26.5 MiB 1.86 1141 14358 3961 8348 2049 65.1 MiB 0.12 0.00 3.63141 -123.531 -3.63141 3.63141 0.91 0.000479564 0.000436659 0.0397067 0.0362041 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.58 0.129741 0.113053 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.0191076 0.0167917 140 81 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.36 vpr 64.68 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33704 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66228 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 26.3 MiB 1.89 873 6923 1573 5100 250 64.7 MiB 0.07 0.00 3.71245 -131.003 -3.71245 3.71245 0.86 0.000456887 0.000411057 0.0193327 0.0177009 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.62 0.120653 0.104707 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0205078 0.0180743 127 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.00 vpr 64.89 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33460 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 26.4 MiB 2.48 942 6923 1677 4944 302 64.9 MiB 0.07 0.00 4.3965 -138.695 -4.3965 4.3965 0.90 0.00046172 0.000422016 0.019958 0.018226 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.56 0.11526 0.0991047 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0191683 0.0168758 135 58 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.40 vpr 65.41 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33844 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66976 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 26.7 MiB 1.95 883 15822 6326 7340 2156 65.4 MiB 0.12 0.00 3.8129 -121.35 -3.8129 3.8129 0.93 0.000453437 0.000412518 0.0424352 0.038628 36 2401 21 6.89349e+06 281877 648988. 2245.63 2.34 0.1569 0.13788 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0180934 0.0160608 135 57 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.86 vpr 65.34 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33920 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 26.7 MiB 1.47 987 17513 5731 7853 3929 65.3 MiB 0.14 0.00 4.23419 -140.25 -4.23419 4.23419 0.91 0.000533053 0.000485602 0.0502524 0.0457526 38 3008 43 6.89349e+06 352346 678818. 2348.85 4.26 0.197206 0.172842 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0244147 0.021475 161 55 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 10.46 vpr 65.80 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33792 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 27.1 MiB 1.75 1162 11063 2970 6995 1098 65.8 MiB 0.11 0.00 5.02024 -166.562 -5.02024 5.02024 0.90 0.000622192 0.000568474 0.0335933 0.030602 36 3019 23 6.89349e+06 394628 648988. 2245.63 5.65 0.257179 0.222036 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0244498 0.0214143 175 60 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.20 vpr 64.79 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34116 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 26.4 MiB 1.72 754 11296 2879 7697 720 64.8 MiB 0.08 0.00 3.61645 -112 -3.61645 3.61645 0.90 0.000397056 0.00036288 0.0271423 0.0247973 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.51 0.115868 0.1008 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0183307 0.0160791 112 21 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.79 vpr 65.54 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34060 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 26.8 MiB 2.61 1259 17315 5682 9212 2421 65.5 MiB 0.16 0.00 4.31019 -146.5 -4.31019 4.31019 0.85 0.000547902 0.000489185 0.0503129 0.0457192 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.20 0.193814 0.170398 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.30 0.10 0.13 -1 -1 0.30 0.0262225 0.0230982 174 60 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.86 vpr 65.29 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33872 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 26.7 MiB 1.37 1183 12365 3291 7811 1263 65.3 MiB 0.11 0.00 3.69045 -130.871 -3.69045 3.69045 0.88 0.000534171 0.000487218 0.0355316 0.032449 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.55 0.145698 0.127224 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.29 0.06 0.14 -1 -1 0.29 0.020784 0.0184741 160 54 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.10 vpr 65.32 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33736 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 26.5 MiB 2.11 1015 15395 4903 8010 2482 65.3 MiB 0.13 0.00 3.61051 -123.557 -3.61051 3.61051 0.93 0.000480029 0.000436581 0.0411812 0.0374416 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.86 0.164181 0.14298 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0221505 0.0196285 139 62 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.39 vpr 64.26 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 33804 -1 -1 15 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 25.8 MiB 1.17 569 8227 1998 5670 559 64.3 MiB 0.05 0.00 3.06366 -95.1937 -3.06366 3.06366 0.89 0.000302631 0.000277281 0.0173984 0.0158903 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.38 0.087997 0.0757353 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.29 0.04 0.13 -1 -1 0.29 0.0153558 0.0133913 85 29 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.37 vpr 65.03 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33784 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 26.3 MiB 1.67 1101 13663 4048 7780 1835 65.0 MiB 0.11 0.00 4.32835 -147.32 -4.32835 4.32835 0.90 0.000467544 0.000425696 0.0369393 0.033725 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.67 0.138479 0.120625 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0205179 0.0180655 141 55 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.88 vpr 65.44 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33776 -1 -1 40 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 26.8 MiB 1.12 1052 20112 6009 11047 3056 65.4 MiB 0.16 0.00 4.67003 -155.404 -4.67003 4.67003 0.88 0.000540502 0.000494312 0.0450711 0.0410505 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.73 0.168395 0.147956 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0230658 0.0203695 166 31 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.31 vpr 65.86 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34196 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 27.2 MiB 1.42 1507 16511 4972 9774 1765 65.9 MiB 0.15 0.00 4.34661 -147.62 -4.34661 4.34661 0.86 0.00058042 0.000530564 0.0469591 0.0428523 36 3423 27 6.89349e+06 436909 648988. 2245.63 3.89 0.257018 0.223804 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0280845 0.0248216 201 108 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 7.38 vpr 64.54 MiB 0.02 6800 -1 -1 1 0.02 -1 -1 33880 -1 -1 18 26 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 26.2 MiB 1.53 692 10476 3888 5359 1229 64.5 MiB 0.06 0.00 2.84541 -81.5212 -2.84541 2.84541 0.94 0.000316607 0.000288443 0.0222115 0.0202553 34 1440 20 6.89349e+06 253689 618332. 2139.56 2.88 0.111501 0.0964731 25762 151098 -1 1275 19 537 676 51771 11421 2.04335 2.04335 -77.3366 -2.04335 0 0 787024. 2723.27 0.31 0.03 0.14 -1 -1 0.31 0.0135702 0.0119985 77 21 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.77 vpr 65.00 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34172 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.5 MiB 1.33 1016 9571 2543 6414 614 65.0 MiB 0.09 0.00 4.12784 -139.243 -4.12784 4.12784 0.87 0.000505075 0.000461998 0.0275037 0.0251406 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.54 0.113633 0.100206 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0223898 0.0196497 141 -1 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.10 vpr 64.23 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 34144 -1 -1 12 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65776 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 25.8 MiB 0.40 514 9356 2285 6456 615 64.2 MiB 0.06 0.00 2.43188 -86.7872 -2.43188 2.43188 0.89 0.000346789 0.000316383 0.0199339 0.0181921 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.92 0.0592659 0.0521364 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.26 0.04 0.12 -1 -1 0.26 0.0137198 0.0121116 71 -1 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.77 vpr 65.36 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34008 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66924 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 26.5 MiB 1.65 1097 15929 4551 10101 1277 65.4 MiB 0.15 0.00 4.62958 -159.64 -4.62958 4.62958 0.91 0.000544844 0.000499858 0.0445377 0.0407395 30 2755 25 6.89349e+06 352346 556674. 1926.21 1.05 0.115093 0.101597 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.021154 0.0187214 161 21 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.82 vpr 65.52 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34024 -1 -1 36 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67092 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 26.8 MiB 0.87 885 10772 2583 7345 844 65.5 MiB 0.09 0.00 3.4709 -116.935 -3.4709 3.4709 0.86 0.000452912 0.000414526 0.0227167 0.0205996 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.03 0.0937421 0.0815543 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.0202753 0.017857 151 -1 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.82 vpr 65.78 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33956 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67356 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.1 MiB 1.94 1365 8130 1863 5269 998 65.8 MiB 0.09 0.00 4.69935 -162.091 -4.69935 4.69935 0.86 0.000537252 0.000491536 0.0240979 0.0220898 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.97 0.137276 0.120643 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0269564 0.023753 174 54 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.23 vpr 64.63 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34116 -1 -1 17 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 26.2 MiB 2.17 863 14256 5690 7135 1431 64.6 MiB 0.11 0.00 3.57625 -122.952 -3.57625 3.57625 0.87 0.000437419 0.000396598 0.0375528 0.0342182 36 2395 27 6.89349e+06 239595 648988. 2245.63 2.12 0.146411 0.128445 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0204534 0.0180372 118 31 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.71 vpr 64.77 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33592 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 26.3 MiB 1.99 1065 12331 4460 6746 1125 64.8 MiB 0.10 0.00 4.27029 -139.911 -4.27029 4.27029 0.90 0.000432125 0.000393479 0.0330171 0.0301648 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.73 0.130674 0.114194 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0196092 0.0172787 121 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.52 vpr 64.61 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 33848 -1 -1 21 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 26.2 MiB 2.52 839 10231 2827 6777 627 64.6 MiB 0.09 0.00 4.26535 -126.926 -4.26535 4.26535 0.90 0.000414696 0.00037927 0.0257945 0.0235597 30 2437 23 6.89349e+06 295971 556674. 1926.21 1.05 0.0799253 0.070149 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0187585 0.0164575 115 27 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.60 vpr 64.68 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33628 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.1 MiB 1.19 860 14700 5342 7547 1811 64.7 MiB 0.11 0.00 3.60535 -129.612 -3.60535 3.60535 0.86 0.000431579 0.000395586 0.0377272 0.0344825 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.53 0.12803 0.112281 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0193016 0.017042 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.50 vpr 64.80 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34088 -1 -1 19 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 26.3 MiB 1.59 985 14322 4727 7440 2155 64.8 MiB 0.12 0.00 3.69435 -127.028 -3.69435 3.69435 0.87 0.000437747 0.000400331 0.0370937 0.0338503 30 2355 32 6.89349e+06 267783 556674. 1926.21 2.97 0.156135 0.135612 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0182619 0.0160554 121 26 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.47 vpr 64.97 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 34016 -1 -1 23 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 26.4 MiB 1.80 1052 14724 4760 7779 2185 65.0 MiB 0.12 0.00 3.57215 -115.596 -3.57215 3.57215 0.94 0.000444215 0.000406541 0.0378247 0.0344915 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.57 0.150759 0.131333 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0189605 0.0168313 130 55 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.96 vpr 65.80 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 34120 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67380 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 27.0 MiB 2.36 1199 18247 5521 9891 2835 65.8 MiB 0.17 0.00 4.73855 -160.484 -4.73855 4.73855 0.88 0.000562759 0.000513075 0.0532427 0.0484829 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.54 0.225633 0.19917 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0272866 0.0241108 184 26 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.30 vpr 65.65 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33916 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67228 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 26.8 MiB 2.11 1143 14147 4354 7296 2497 65.7 MiB 0.13 0.00 4.17974 -143.168 -4.17974 4.17974 0.91 0.000552768 0.000503613 0.041889 0.038195 34 3686 37 6.89349e+06 352346 618332. 2139.56 2.06 0.178196 0.155488 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0279289 0.0245588 173 62 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.55 vpr 65.30 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33924 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66872 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 26.5 MiB 1.00 1094 14965 4562 8063 2340 65.3 MiB 0.12 0.00 3.67235 -123.222 -3.67235 3.67235 0.88 0.0004804 0.000437092 0.0414638 0.0378012 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.56 0.141676 0.123508 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0196038 0.0172331 143 77 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.32 vpr 65.64 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33696 -1 -1 26 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 27.0 MiB 2.58 1244 16523 4277 10843 1403 65.6 MiB 0.16 0.00 4.45875 -146.616 -4.45875 4.45875 0.87 0.000513783 0.000468341 0.0461455 0.0420666 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.77 0.176645 0.155152 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.0251001 0.0221464 170 59 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.36 vpr 65.92 MiB 0.02 7564 -1 -1 1 0.03 -1 -1 34252 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 27.3 MiB 2.27 1489 17560 4957 10293 2310 65.9 MiB 0.16 0.00 5.02254 -165.43 -5.02254 5.02254 0.86 0.000615991 0.000551334 0.0478218 0.0434981 34 3603 25 6.89349e+06 436909 618332. 2139.56 2.02 0.187326 0.164274 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0256139 0.0226163 201 111 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.79 vpr 65.77 MiB 0.02 7532 -1 -1 1 0.03 -1 -1 33968 -1 -1 28 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 27.1 MiB 2.90 1401 11923 3470 7236 1217 65.8 MiB 0.12 0.00 5.49816 -175.294 -5.49816 5.49816 0.90 0.000549967 0.000501631 0.0344439 0.0314276 38 3017 23 6.89349e+06 394628 678818. 2348.85 1.77 0.129848 0.11367 26626 170182 -1 2506 19 1826 2480 147944 34484 4.87284 4.87284 -166.744 -4.87284 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.023587 0.0208167 181 86 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.76 vpr 65.73 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33860 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67304 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 27.0 MiB 1.92 1340 14763 4284 8311 2168 65.7 MiB 0.13 0.00 3.76655 -130.012 -3.76655 3.76655 0.88 0.000550208 0.000499829 0.0394292 0.0359828 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.78 0.167399 0.145764 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.30 0.08 0.16 -1 -1 0.30 0.0267594 0.0235613 168 58 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 10.78 vpr 65.81 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33972 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67388 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 27.1 MiB 2.17 1284 16207 4365 9844 1998 65.8 MiB 0.15 0.00 4.62085 -160.706 -4.62085 4.62085 0.88 0.000542244 0.000490738 0.0453376 0.0414106 34 3366 50 6.89349e+06 380534 618332. 2139.56 5.57 0.317232 0.27595 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0252997 0.0223763 178 42 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.66 vpr 65.70 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34184 -1 -1 31 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 27.3 MiB 2.41 1764 15215 4236 8627 2352 65.7 MiB 0.16 0.00 5.15348 -175.341 -5.15348 5.15348 0.86 0.000623808 0.000569496 0.0469918 0.0428478 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.19 0.20203 0.178647 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.30 0.13 0.13 -1 -1 0.30 0.0326402 0.0290695 220 91 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.40 vpr 64.84 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33984 -1 -1 20 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 26.4 MiB 1.94 822 6743 1455 4759 529 64.8 MiB 0.06 0.00 3.853 -129.297 -3.853 3.853 0.86 0.00046556 0.000424287 0.0188397 0.0171491 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.53 0.122597 0.1064 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0198343 0.0174623 127 24 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 7.33 vpr 65.30 MiB 0.02 7420 -1 -1 1 0.03 -1 -1 34080 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 26.7 MiB 1.99 1294 17376 6419 8627 2330 65.3 MiB 0.16 0.00 5.00234 -161.335 -5.00234 5.00234 0.90 0.000536657 0.000487627 0.048752 0.044378 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.23 0.157341 0.137959 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0252649 0.0222241 168 59 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.44 vpr 65.58 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33860 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67156 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 26.9 MiB 2.14 1356 15391 5368 7626 2397 65.6 MiB 0.14 0.00 4.39449 -148.549 -4.39449 4.39449 0.88 0.000552153 0.00050432 0.0432926 0.0394514 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.29 0.174524 0.153243 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.30 0.07 0.14 -1 -1 0.30 0.0227058 0.0201029 172 54 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.71 vpr 65.47 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33684 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67040 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.7 MiB 1.50 953 14407 3720 10033 654 65.5 MiB 0.13 0.00 4.3344 -147.594 -4.3344 4.3344 0.87 0.000492975 0.000449675 0.0414501 0.0377811 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.21 0.167279 0.147654 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0244249 0.0215386 147 -1 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.88 vpr 65.80 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33796 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67376 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 27.0 MiB 1.82 1279 18101 5797 9598 2706 65.8 MiB 0.16 0.00 4.41459 -148.068 -4.41459 4.41459 0.92 0.000591532 0.000539033 0.0504333 0.0459773 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.94 0.186088 0.16207 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0226601 0.0200792 184 81 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.68 vpr 65.52 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33424 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 26.9 MiB 2.35 1221 17635 5673 8836 3126 65.5 MiB 0.14 0.00 4.28929 -146.442 -4.28929 4.28929 0.86 0.000535655 0.000489374 0.0482609 0.0440801 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.33 0.189916 0.167763 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0278875 0.0245227 169 58 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.91 vpr 65.66 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34140 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 27.0 MiB 2.07 1303 7027 1560 5110 357 65.7 MiB 0.08 0.00 3.72045 -130.455 -3.72045 3.72045 0.90 0.000569025 0.000514123 0.0218029 0.0198918 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.80 0.150272 0.130458 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0239405 0.0211407 175 61 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.63 vpr 65.55 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33732 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.7 MiB 1.88 1190 14518 4171 8562 1785 65.6 MiB 0.13 0.00 4.63815 -161.109 -4.63815 4.63815 0.88 0.000528013 0.000483692 0.0410251 0.0375197 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.75 0.160527 0.140646 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0232074 0.0204375 161 21 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 8.82 vpr 65.67 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34084 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67244 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 27.0 MiB 1.62 1201 13351 3240 8446 1665 65.7 MiB 0.12 0.00 4.60525 -158.398 -4.60525 4.60525 0.94 0.000522576 0.000475599 0.0391952 0.0357238 36 3088 18 6.89349e+06 380534 648988. 2245.63 4.04 0.212877 0.184911 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0256682 0.022498 177 50 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.17 vpr 65.76 MiB 0.02 7352 -1 -1 1 0.03 -1 -1 33944 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67336 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 27.1 MiB 1.41 1470 18625 5270 10765 2590 65.8 MiB 0.17 0.00 5.00359 -155.604 -5.00359 5.00359 0.86 0.00056419 0.000514874 0.0528325 0.0481729 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.77 0.190407 0.167382 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0258822 0.0228946 195 110 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.23 vpr 65.49 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33820 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 27.0 MiB 3.01 1648 15391 4130 9133 2128 65.5 MiB 0.15 0.00 4.77885 -161.828 -4.77885 4.77885 0.87 0.000778753 0.000712333 0.0441756 0.0403558 36 3608 22 6.89349e+06 380534 648988. 2245.63 4.15 0.224256 0.194526 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.30 0.09 0.14 -1 -1 0.30 0.0272333 0.0238187 190 86 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.38 vpr 65.05 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 34140 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 26.7 MiB 1.87 1067 16081 5068 9178 1835 65.1 MiB 0.13 0.00 3.68745 -131.866 -3.68745 3.68745 0.88 0.000437262 0.000398261 0.0406007 0.0369906 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.56 0.137655 0.120802 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0185599 0.0164375 127 20 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.92 vpr 65.37 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33676 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 26.7 MiB 1.83 1122 7711 1541 6020 150 65.4 MiB 0.08 0.00 4.29439 -143.523 -4.29439 4.29439 0.89 0.000495491 0.00045093 0.0230977 0.0210725 38 2565 21 6.89349e+06 295971 678818. 2348.85 4.04 0.171538 0.148009 26626 170182 -1 2184 20 1590 1872 134734 29974 3.67705 3.67705 -137.39 -3.67705 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0220898 0.0194193 154 91 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.47 vpr 65.55 MiB 0.02 7380 -1 -1 1 0.04 -1 -1 34148 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 26.9 MiB 2.15 1537 17347 5978 9037 2332 65.6 MiB 0.19 0.00 5.35709 -181.872 -5.35709 5.35709 0.92 0.000635451 0.000577423 0.0539734 0.0490937 38 3731 22 6.89349e+06 422815 678818. 2348.85 2.02 0.207523 0.183163 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.35 0.09 0.16 -1 -1 0.35 0.0303642 0.0268761 209 53 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.25 vpr 65.32 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 34072 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 26.6 MiB 2.04 1176 14295 4272 7910 2113 65.3 MiB 0.13 0.00 3.7808 -134.415 -3.7808 3.7808 0.86 0.000496535 0.000453165 0.039621 0.0362187 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.27 0.188015 0.165484 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.29 0.09 0.13 -1 -1 0.29 0.0272918 0.0240759 156 31 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.75 vpr 64.65 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33720 -1 -1 32 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 26.1 MiB 1.30 932 11809 3108 7963 738 64.7 MiB 0.10 0.00 4.33203 -134.423 -4.33203 4.33203 0.89 0.000450165 0.000410544 0.0265491 0.0242195 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.50 0.116023 0.100886 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0195471 0.0171294 129 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.40 vpr 65.64 MiB 0.02 7412 -1 -1 1 0.04 -1 -1 34428 -1 -1 35 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67212 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 27.5 MiB 2.05 1787 18111 5206 10704 2201 65.6 MiB 0.20 0.00 5.73258 -193.193 -5.73258 5.73258 0.87 0.000723322 0.000659749 0.056662 0.0515609 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.21 0.214923 0.189808 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0321995 0.0284862 239 109 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.48 vpr 65.57 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33984 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 27.0 MiB 1.63 1091 13143 3864 7923 1356 65.6 MiB 0.12 0.00 4.41749 -154.465 -4.41749 4.41749 0.90 0.000561575 0.000515016 0.0387981 0.0354213 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.78 0.156876 0.137186 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0237585 0.0209586 159 31 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.42 vpr 64.75 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 33932 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.4 MiB 0.62 849 10087 2557 6780 750 64.8 MiB 0.09 0.00 3.73565 -131.011 -3.73565 3.73565 0.86 0.000420869 0.000383727 0.0210811 0.0192622 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.99 0.0764557 0.0668473 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0177943 0.0157007 123 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.69 vpr 65.49 MiB 0.02 7200 -1 -1 1 0.04 -1 -1 34284 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 26.7 MiB 2.17 1275 12273 3390 7733 1150 65.5 MiB 0.12 0.00 5.39711 -179.414 -5.39711 5.39711 0.85 0.000621384 0.000563423 0.0342814 0.0312577 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.47 0.156009 0.136805 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.03043 0.0268548 194 26 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.59 vpr 64.73 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33976 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.2 MiB 0.95 787 10056 2193 7590 273 64.7 MiB 0.08 0.00 3.8468 -135.678 -3.8468 3.8468 0.89 0.00044288 0.000404594 0.0270475 0.0247103 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.68 0.128068 0.112028 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0201989 0.0177193 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.23 vpr 65.03 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 34068 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.5 MiB 1.36 801 8131 1824 5536 771 65.0 MiB 0.07 0.00 3.71635 -120.03 -3.71635 3.71635 0.87 0.000439733 0.000401091 0.0221647 0.020293 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.96 0.126475 0.11065 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.018671 0.0165106 121 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 6.22 vpr 65.62 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34020 -1 -1 31 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67192 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 26.9 MiB 1.66 1254 15203 3953 9019 2231 65.6 MiB 0.13 0.00 4.1318 -129.307 -4.1318 4.1318 0.87 0.00052466 0.000479688 0.0412644 0.0376302 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.62 0.156524 0.136612 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0237346 0.0209174 171 81 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.41 vpr 65.61 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33936 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67184 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 26.9 MiB 2.28 1381 16974 4929 9664 2381 65.6 MiB 0.14 0.00 5.29596 -177.687 -5.29596 5.29596 0.90 0.000543755 0.000495363 0.0492938 0.0449108 36 3381 23 6.89349e+06 366440 648988. 2245.63 2.00 0.17032 0.148957 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0263807 0.0232839 178 53 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.01 vpr 65.77 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34384 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.1 MiB 1.90 1376 18180 6112 9250 2818 65.8 MiB 0.17 0.00 5.13064 -174.448 -5.13064 5.13064 0.87 0.000527136 0.00048232 0.0514762 0.0469933 34 3618 39 6.89349e+06 366440 618332. 2139.56 2.04 0.191133 0.167982 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0257044 0.0226388 175 55 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 6.21 vpr 65.45 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33964 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67024 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 26.7 MiB 1.43 1013 14221 3579 9597 1045 65.5 MiB 0.11 0.00 4.30029 -147.314 -4.30029 4.30029 0.87 0.000475422 0.000434462 0.0382137 0.0349332 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.83 0.152458 0.133744 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0210489 0.0185472 141 55 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.57 vpr 65.43 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34100 -1 -1 22 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1168 10501 2617 6825 1059 65.4 MiB 0.09 0.00 4.23729 -139.76 -4.23729 4.23729 0.90 0.000478339 0.000436088 0.0294832 0.0268961 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.65 0.132537 0.115112 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0220983 0.0194146 146 82 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.16 vpr 64.99 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33972 -1 -1 29 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 26.4 MiB 2.24 1158 18043 5948 9235 2860 65.0 MiB 0.15 0.00 3.9471 -130.183 -3.9471 3.9471 0.87 0.000510294 0.000465224 0.0467254 0.0426112 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.86 0.166074 0.146227 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0252471 0.0221223 164 52 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.32 vpr 64.71 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34144 -1 -1 27 28 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 26.2 MiB 1.40 970 11031 2869 6600 1562 64.7 MiB 0.09 0.00 4.51585 -132.654 -4.51585 4.51585 0.86 0.000453392 0.000413594 0.0290603 0.0264598 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.06 0.0931748 0.0821232 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0219436 0.0193895 145 20 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.35 vpr 65.19 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33812 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 26.7 MiB 2.26 1087 9083 2557 5800 726 65.2 MiB 0.08 0.00 4.36859 -139.508 -4.36859 4.36859 0.91 0.000454334 0.000413681 0.0251185 0.0228962 36 2461 21 6.89349e+06 295971 648988. 2245.63 2.04 0.135649 0.118885 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0194844 0.0172715 136 58 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.80 vpr 65.56 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33780 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 27.0 MiB 2.01 1180 8827 2269 5871 687 65.6 MiB 0.09 0.00 3.8008 -130.21 -3.8008 3.8008 0.90 0.000495353 0.00044626 0.0256148 0.0233301 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.78 0.118498 0.103059 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0207497 0.018277 150 88 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 6.06 vpr 65.14 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33880 -1 -1 37 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 26.4 MiB 0.89 1032 15180 4497 8229 2454 65.1 MiB 0.13 0.00 4.35445 -144.691 -4.35445 4.35445 0.93 0.000495064 0.000449568 0.0345629 0.0314341 28 3116 24 6.89349e+06 521472 531479. 1839.03 2.08 0.115567 0.102329 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.27 0.09 0.12 -1 -1 0.27 0.0244215 0.0214476 151 -1 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 6.34 vpr 65.23 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34188 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 26.6 MiB 1.49 1263 12351 3110 8140 1101 65.2 MiB 0.12 0.00 4.78058 -162.367 -4.78058 4.78058 0.86 0.000551815 0.000506684 0.0356609 0.0325457 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.86 0.174567 0.153098 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0242474 0.0213787 173 57 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.97 vpr 65.55 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34060 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 26.8 MiB 1.98 1405 10743 3107 6650 986 65.6 MiB 0.11 0.00 4.9601 -169.723 -4.9601 4.9601 0.91 0.000564512 0.000514997 0.0322932 0.0294416 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.83 0.174736 0.154222 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0297181 0.0262051 171 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.91 vpr 65.78 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33812 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67360 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 27.1 MiB 2.15 1306 10087 2279 7315 493 65.8 MiB 0.11 0.00 4.3224 -145.723 -4.3224 4.3224 0.90 0.000546982 0.000498375 0.0291611 0.0265829 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.67 0.168976 0.147223 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0259745 0.0228581 172 62 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.75 vpr 64.87 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33748 -1 -1 19 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 2.00 814 9181 2458 5686 1037 64.9 MiB 0.08 0.00 3.809 -121.257 -3.809 3.809 0.93 0.000443559 0.000403935 0.0249875 0.022784 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.68 0.122621 0.106838 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0181387 0.0160482 122 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.52 vpr 65.55 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34020 -1 -1 26 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67124 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 26.9 MiB 2.63 1287 12568 3293 7724 1551 65.6 MiB 0.12 0.00 5.05854 -160.711 -5.05854 5.05854 0.86 0.000517586 0.000472769 0.0360875 0.0329649 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.94 0.162851 0.142904 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0256588 0.0226682 165 58 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.60 vpr 66.05 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34312 -1 -1 30 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67640 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 27.3 MiB 1.32 1479 11383 3062 7492 829 66.1 MiB 0.11 0.00 4.57601 -155.587 -4.57601 4.57601 0.90 0.000587296 0.000533316 0.0341483 0.0310368 36 3485 21 6.89349e+06 422815 648988. 2245.63 2.21 0.16102 0.140075 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0276778 0.0242739 204 106 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 9.15 vpr 65.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34060 -1 -1 29 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 26.9 MiB 1.89 1301 16445 5093 9336 2016 65.7 MiB 0.16 0.00 5.17904 -171.173 -5.17904 5.17904 0.92 0.000581529 0.000531796 0.0484602 0.0441659 36 3067 22 6.89349e+06 408721 648988. 2245.63 4.08 0.222521 0.19372 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0266357 0.0235455 186 79 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.09 vpr 65.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 34008 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 27.1 MiB 2.44 1252 12351 3368 8179 804 65.8 MiB 0.12 0.00 4.25135 -136.296 -4.25135 4.25135 0.93 0.000545339 0.000496821 0.0361907 0.0328687 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.50 0.167625 0.147296 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0254369 0.0224709 175 83 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.30 vpr 65.68 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33952 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67260 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 27.0 MiB 2.06 1349 14160 4180 8412 1568 65.7 MiB 0.13 0.00 5.11687 -171.214 -5.11687 5.11687 0.91 0.000546699 0.000495954 0.0410605 0.0373364 34 3581 27 6.89349e+06 366440 618332. 2139.56 2.11 0.151608 0.133424 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0244921 0.0216307 177 58 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.14 vpr 65.71 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33888 -1 -1 30 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67292 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 27.0 MiB 2.38 1337 17431 5595 9274 2562 65.7 MiB 0.15 0.00 4.49555 -136.793 -4.49555 4.49555 0.90 0.000523004 0.000475959 0.0472617 0.0431298 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.67 0.159553 0.139128 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0239218 0.0210335 170 81 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.25 vpr 64.62 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 33700 -1 -1 16 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.1 MiB 0.64 851 10744 3065 7267 412 64.6 MiB 0.09 0.00 3.7888 -133.854 -3.7888 3.7888 0.92 0.000458019 0.00041877 0.0297314 0.0271213 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.59 0.118714 0.103588 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0182026 0.0160892 114 -1 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.57 vpr 65.71 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33616 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 27.0 MiB 1.84 1266 16411 5685 8276 2450 65.7 MiB 0.16 0.00 5.17997 -174.972 -5.17997 5.17997 0.90 0.000575633 0.000518787 0.0486017 0.0442576 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.54 0.176042 0.153853 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0265195 0.0234295 174 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.28 vpr 65.72 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33936 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67300 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 27.0 MiB 2.96 1294 9791 2343 6863 585 65.7 MiB 0.09 0.00 5.01095 -168.663 -5.01095 5.01095 0.85 0.000489565 0.000446171 0.0270254 0.0246654 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.29 0.151603 0.131775 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0271235 0.0237734 176 62 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.43 vpr 64.91 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33992 -1 -1 19 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 26.5 MiB 1.84 971 13043 4021 6975 2047 64.9 MiB 0.10 0.00 3.51612 -116.281 -3.51612 3.51612 0.91 0.000423432 0.000390166 0.0333942 0.0303787 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.59 0.126699 0.110164 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0191144 0.0168311 128 47 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.88 vpr 64.70 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33808 -1 -1 17 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.2 MiB 0.91 734 11604 2641 7381 1582 64.7 MiB 0.09 0.00 3.8218 -128.161 -3.8218 3.8218 0.90 0.00041088 0.000374692 0.0300425 0.0274781 32 2249 20 6.89349e+06 239595 586450. 2029.24 1.00 0.0828335 0.0730345 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0190563 0.0167158 112 -1 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.58 vpr 65.26 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33932 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 26.6 MiB 1.70 1234 14147 4178 8444 1525 65.3 MiB 0.13 0.00 4.31849 -141.833 -4.31849 4.31849 0.91 0.000561054 0.000513708 0.0423258 0.0386282 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.75 0.160958 0.14083 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0265058 0.0233655 158 56 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.63 vpr 65.68 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 33676 -1 -1 26 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 27.0 MiB 1.69 1314 10341 2747 6842 752 65.7 MiB 0.11 0.00 5.10864 -160.907 -5.10864 5.10864 0.85 0.000523595 0.000479136 0.030374 0.0276962 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.96 0.158418 0.138611 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0260071 0.0230221 170 81 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.21 vpr 65.45 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34000 -1 -1 41 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 26.8 MiB 0.96 1292 15419 3797 10101 1521 65.4 MiB 0.14 0.00 4.85078 -164.688 -4.85078 4.85078 0.93 0.000592634 0.000541099 0.0390735 0.0354945 34 3291 24 6.89349e+06 577847 618332. 2139.56 2.08 0.171456 0.150063 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0263406 0.0229399 183 -1 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.78 vpr 65.28 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33796 -1 -1 27 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 26.7 MiB 1.94 1124 9395 2323 6078 994 65.3 MiB 0.09 0.00 3.8961 -125.22 -3.8961 3.8961 0.92 0.000555707 0.000505418 0.025812 0.0234819 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.76 0.146315 0.127129 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0241409 0.0212665 160 47 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.01 vpr 64.80 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34216 -1 -1 22 27 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 26.4 MiB 1.43 915 13031 5095 6351 1585 64.8 MiB 0.10 0.00 4.34539 -126.288 -4.34539 4.34539 0.92 0.000408142 0.000372838 0.0320455 0.0292798 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.55 0.11573 0.10112 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0176556 0.015488 112 26 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.48 vpr 66.23 MiB 0.02 7412 -1 -1 1 0.04 -1 -1 34196 -1 -1 32 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67824 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 27.5 MiB 1.97 1748 16302 4126 10044 2132 66.2 MiB 0.19 0.00 5.09354 -170.611 -5.09354 5.09354 0.89 0.000656156 0.000599879 0.0510587 0.0465545 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.38 0.208365 0.183972 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.30 0.10 0.14 -1 -1 0.30 0.0299272 0.0265123 219 85 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.00 vpr 65.61 MiB 0.02 7460 -1 -1 1 0.03 -1 -1 34140 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 27.0 MiB 2.53 1467 12661 2948 8528 1185 65.6 MiB 0.13 0.00 5.14784 -166.315 -5.14784 5.14784 0.91 0.000638322 0.000577836 0.0393864 0.0359459 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.31 0.178617 0.156239 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.31 0.07 0.16 -1 -1 0.31 0.0263859 0.023288 201 105 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.25 vpr 65.16 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33604 -1 -1 22 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 26.3 MiB 2.25 1133 9914 2313 7132 469 65.2 MiB 0.09 0.00 4.28535 -139.234 -4.28535 4.28535 0.92 0.000511286 0.000462328 0.0273151 0.0247733 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.96 0.150726 0.130715 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0201578 0.0177399 150 86 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.79 vpr 65.46 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34016 -1 -1 23 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 26.6 MiB 2.04 1114 12951 3612 7720 1619 65.5 MiB 0.12 0.00 4.53785 -150.754 -4.53785 4.53785 0.92 0.000507447 0.000467033 0.0382251 0.0348559 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.65 0.149349 0.130217 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0230551 0.0202319 151 31 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.08 vpr 65.68 MiB 0.02 7536 -1 -1 1 0.03 -1 -1 34172 -1 -1 30 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 26.9 MiB 1.87 1475 19413 5609 11709 2095 65.7 MiB 0.20 0.00 4.64537 -154.979 -4.64537 4.64537 0.94 0.000630453 0.000564426 0.0591485 0.0536332 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.95 0.205669 0.18039 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0301466 0.0266315 193 50 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.27 vpr 65.12 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34184 -1 -1 28 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 26.5 MiB 2.19 1223 16773 5429 8542 2802 65.1 MiB 0.14 0.00 4.28025 -135.791 -4.28025 4.28025 0.90 0.000527002 0.000479559 0.0455534 0.0414657 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.96 0.164731 0.144376 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0218962 0.0193885 162 50 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.20 vpr 65.70 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34120 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 27.0 MiB 1.71 1373 17066 5393 8866 2807 65.7 MiB 0.16 0.00 5.03124 -168.563 -5.03124 5.03124 0.91 0.000526456 0.00047693 0.0477618 0.043462 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.36 0.190389 0.167176 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0258877 0.0227927 173 61 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.13 vpr 65.71 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33988 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 27.0 MiB 2.23 1418 13147 3928 7969 1250 65.7 MiB 0.13 0.00 3.78872 -134.171 -3.78872 3.78872 0.91 0.000526058 0.000481813 0.0383206 0.0348546 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.78 0.158993 0.138479 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0252843 0.0222396 175 61 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.21 vpr 64.60 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33660 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 26.2 MiB 1.56 802 14322 5252 6511 2559 64.6 MiB 0.11 0.00 3.809 -119.785 -3.809 3.809 0.95 0.00043138 0.0003935 0.0365181 0.0333043 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.56 0.127606 0.111341 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0183792 0.0162306 118 28 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.19 vpr 65.15 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 34064 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 26.4 MiB 1.34 1059 7038 1561 5080 397 65.1 MiB 0.07 0.00 4.31213 -129.707 -4.31213 4.31213 0.92 0.000495745 0.000448858 0.0195793 0.0178198 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.86 0.127445 0.110278 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0179163 0.0158327 136 79 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.92 vpr 65.04 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 33848 -1 -1 24 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 26.2 MiB 1.62 1144 15255 6301 7544 1410 65.0 MiB 0.13 0.00 4.60015 -151.135 -4.60015 4.60015 0.91 0.000541427 0.000491994 0.0435239 0.0396741 36 2816 23 6.89349e+06 338252 648988. 2245.63 4.14 0.205992 0.178747 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.022355 0.0197747 154 29 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.92 vpr 64.63 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33688 -1 -1 21 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 26.2 MiB 1.40 955 13610 4945 6467 2198 64.6 MiB 0.10 0.00 3.4839 -106.878 -3.4839 3.4839 0.92 0.000382789 0.000345068 0.0338195 0.030742 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.52 0.121656 0.105475 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0171911 0.0151144 123 48 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.74 vpr 65.01 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33700 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 26.6 MiB 1.95 1000 12186 3922 6390 1874 65.0 MiB 0.10 0.00 3.839 -135.657 -3.839 3.839 0.91 0.000479161 0.000436227 0.0328976 0.0300233 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.79 0.140121 0.122595 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0219621 0.0193475 127 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.32 vpr 65.34 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33888 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 26.7 MiB 1.98 1201 16773 5048 9300 2425 65.3 MiB 0.15 0.00 4.20938 -143.511 -4.20938 4.20938 0.91 0.000546401 0.000497566 0.0480615 0.0437961 36 2859 23 6.89349e+06 380534 648988. 2245.63 2.16 0.170612 0.149238 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.34 0.09 0.16 -1 -1 0.34 0.0258891 0.0228426 164 60 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.24 vpr 64.75 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33684 -1 -1 21 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 26.3 MiB 1.71 877 7953 1966 5579 408 64.7 MiB 0.07 0.00 3.31212 -108.619 -3.31212 3.31212 0.91 0.000450346 0.000411286 0.0215873 0.0197256 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.53 0.112907 0.0979968 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0179322 0.0157988 125 49 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.17 vpr 65.16 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34036 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 26.6 MiB 2.09 1287 17711 6388 9306 2017 65.2 MiB 0.17 0.00 4.20729 -140.905 -4.20729 4.20729 0.90 0.00049716 0.000452844 0.0499208 0.0453513 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.94 0.164147 0.143604 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0249952 0.0221029 162 56 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.82 vpr 65.77 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34104 -1 -1 31 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67352 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 27.0 MiB 2.10 1441 16921 4862 9627 2432 65.8 MiB 0.16 0.00 5.00842 -163.951 -5.00842 5.00842 0.91 0.000557698 0.0005081 0.0479133 0.0435307 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.53 0.175952 0.153906 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.33 0.10 0.14 -1 -1 0.33 0.0292194 0.0257089 185 88 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 9.31 vpr 65.25 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 34048 -1 -1 21 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 26.5 MiB 2.88 1150 11245 3095 6987 1163 65.2 MiB 0.10 0.00 3.53115 -123.245 -3.53115 3.53115 0.87 0.000428136 0.000392674 0.0298037 0.0272074 34 2943 19 6.89349e+06 295971 618332. 2139.56 3.51 0.193321 0.167182 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0171913 0.0151293 137 54 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.37 vpr 64.92 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33468 -1 -1 20 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66476 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 26.4 MiB 1.47 1121 13443 3684 8167 1592 64.9 MiB 0.11 0.00 3.817 -131.483 -3.817 3.817 0.90 0.000521921 0.000473977 0.035742 0.0324892 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.85 0.143646 0.124868 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0219865 0.0193604 139 60 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 9.62 vpr 65.50 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34360 -1 -1 27 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 26.8 MiB 1.71 1272 13147 3375 7731 2041 65.5 MiB 0.12 0.00 4.61515 -160.202 -4.61515 4.61515 0.90 0.000544551 0.000496134 0.0374713 0.0341929 36 3093 23 6.89349e+06 380534 648988. 2245.63 4.82 0.245694 0.212705 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0240611 0.0212179 178 49 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.90 vpr 65.62 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34180 -1 -1 26 29 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67192 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 27.0 MiB 1.87 1161 15639 4794 8641 2204 65.6 MiB 0.14 0.00 3.67945 -117.378 -3.67945 3.67945 0.91 0.000545871 0.000500988 0.0443632 0.0404931 30 2520 23 6.89349e+06 366440 556674. 1926.21 1.01 0.110899 0.0978778 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0216525 0.0191564 157 54 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 8.51 vpr 65.93 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34196 -1 -1 29 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67516 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 27.3 MiB 1.65 1517 16893 4857 9388 2648 65.9 MiB 0.16 0.00 4.97404 -168.093 -4.97404 4.97404 0.90 0.00061903 0.000560663 0.0521018 0.047359 36 3623 47 6.89349e+06 408721 648988. 2245.63 3.69 0.287486 0.248943 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0281699 0.0247672 203 117 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.58 vpr 64.79 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33660 -1 -1 16 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.3 MiB 0.70 803 5149 1186 3599 364 64.8 MiB 0.05 0.00 2.99217 -104.791 -2.99217 2.99217 0.91 0.000403123 0.000368008 0.0139609 0.0127793 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.97 0.0640912 0.0559133 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0188323 0.0165298 104 -1 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.18 vpr 65.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33812 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 26.9 MiB 1.87 1396 18101 5815 9868 2418 65.7 MiB 0.17 0.00 5.41163 -177.078 -5.41163 5.41163 0.88 0.000576328 0.000528775 0.0520395 0.047519 34 3746 48 6.89349e+06 394628 618332. 2139.56 4.23 0.304513 0.265972 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0274093 0.0241565 179 89 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 9.99 vpr 65.37 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33848 -1 -1 24 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 26.7 MiB 2.61 1193 17248 5142 9796 2310 65.4 MiB 0.15 0.00 4.89074 -162.672 -4.89074 4.89074 0.89 0.000516047 0.000471754 0.047777 0.0435381 36 3213 26 6.89349e+06 338252 648988. 2245.63 4.27 0.209305 0.181822 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0243154 0.0213789 161 93 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.75 vpr 65.56 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 33812 -1 -1 25 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67132 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 26.8 MiB 2.03 1163 10187 2742 6187 1258 65.6 MiB 0.10 0.00 3.75965 -128.904 -3.75965 3.75965 0.89 0.000545774 0.00049777 0.0302772 0.0276414 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.68 0.150219 0.130638 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0237763 0.020958 170 59 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.09 vpr 65.99 MiB 0.02 7588 -1 -1 1 0.04 -1 -1 34184 -1 -1 33 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67572 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 27.2 MiB 1.96 1578 21409 7235 11132 3042 66.0 MiB 0.22 0.00 5.18464 -176.869 -5.18464 5.18464 0.90 0.000643123 0.000576417 0.0668427 0.0607187 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.87 0.214787 0.188318 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.16 -1 -1 0.31 0.0316819 0.0278424 224 81 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.61 vpr 64.63 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 33716 -1 -1 16 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 26.1 MiB 1.28 774 12860 4018 7384 1458 64.6 MiB 0.08 0.00 3.08706 -94.2237 -3.08706 3.08706 0.90 0.000365635 0.000333716 0.030067 0.0274466 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.39 0.104979 0.0913278 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.30 0.03 0.15 -1 -1 0.30 0.0133503 0.0118394 93 51 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.96 vpr 64.89 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 34064 -1 -1 21 30 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 26.4 MiB 1.40 936 13763 4663 7110 1990 64.9 MiB 0.11 0.00 4.23979 -138.497 -4.23979 4.23979 0.89 0.000430036 0.000391815 0.0353108 0.0323022 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.56 0.126046 0.110038 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0210948 0.0185153 124 29 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.96 vpr 65.03 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 33700 -1 -1 18 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 26.6 MiB 2.53 1009 8448 2021 6048 379 65.0 MiB 0.08 0.00 4.33609 -148.866 -4.33609 4.33609 0.90 0.000452667 0.00041324 0.0235674 0.0215275 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.41 0.127807 0.111252 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0223715 0.0196189 129 31 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.88 vpr 64.66 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33660 -1 -1 24 25 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 26.1 MiB 1.46 636 10231 2621 6138 1472 64.7 MiB 0.08 0.00 3.787 -96.2626 -3.787 3.787 0.90 0.000379909 0.000347874 0.0236614 0.0216467 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.48 0.101888 0.0885405 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0170923 0.0149917 107 19 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 10.57 vpr 65.70 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33948 -1 -1 28 32 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67280 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 27.2 MiB 3.03 1453 17273 5845 8574 2854 65.7 MiB 0.17 0.00 4.55715 -154.068 -4.55715 4.55715 0.89 0.00058276 0.000529605 0.0507773 0.0461893 38 3543 25 6.89349e+06 394628 678818. 2348.85 4.34 0.231546 0.201144 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.33 0.09 0.17 -1 -1 0.33 0.0272074 0.0239124 190 84 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.41 vpr 65.50 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33788 -1 -1 27 31 0 0 success c2b7d0b-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-03T12:58:48 gh-actions-runner-vtr-auto-spawned106 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 26.7 MiB 2.30 1285 13758 3623 8223 1912 65.5 MiB 0.14 0.00 4.84654 -156.987 -4.84654 4.84654 0.90 0.000554482 0.000505385 0.0409441 0.0373291 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.98 0.185703 0.161427 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.30 0.11 0.15 -1 -1 0.30 0.0324663 0.0284624 183 88 29 29 93 31 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 13.92 vpr 62.83 MiB 0.02 6804 -1 -1 14 0.33 -1 -1 32856 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1354 8532 2094 5512 926 62.8 MiB 0.13 0.00 8.19013 -165.934 -8.19013 8.19013 0.76 0.000999245 0.000923841 0.0462797 0.0427692 26 4414 46 6.55708e+06 313430 477104. 1650.88 10.25 0.343425 0.3005 21022 109990 -1 3347 26 1818 5954 716887 222783 7.3219 7.3219 -166.058 -7.3219 0 0 585099. 2024.56 0.20 0.21 0.11 -1 -1 0.20 0.0502236 0.0441164 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.58 vpr 62.60 MiB 0.03 6820 -1 -1 14 0.28 -1 -1 32764 -1 -1 30 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1292 15824 4267 9033 2524 62.6 MiB 0.20 0.00 8.12966 -162.719 -8.12966 8.12966 0.90 0.000716381 0.00065614 0.0711861 0.0654407 30 3474 36 6.55708e+06 361650 526063. 1820.29 1.57 0.217619 0.19402 21886 126133 -1 2797 17 1276 3537 217978 47493 7.02804 7.02804 -154.369 -7.02804 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.036571 0.0324682 189 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 8.40 vpr 62.48 MiB 0.03 6892 -1 -1 11 0.22 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1266 13157 3416 7667 2074 62.5 MiB 0.18 0.00 6.4728 -136.716 -6.4728 6.4728 0.93 0.000988689 0.000913007 0.061241 0.0561645 44 3168 17 6.55708e+06 301375 742403. 2568.87 4.34 0.33496 0.294218 24478 177802 -1 2491 14 1076 3558 217401 46741 6.05052 6.05052 -131.63 -6.05052 0 0 937218. 3242.97 0.36 0.09 0.19 -1 -1 0.36 0.0325942 0.0295379 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.93 vpr 62.62 MiB 0.04 6756 -1 -1 12 0.37 -1 -1 32804 -1 -1 29 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1320 8130 2002 5291 837 62.6 MiB 0.12 0.00 7.77357 -147.192 -7.77357 7.77357 0.91 0.00101669 0.000941472 0.039527 0.0363838 34 3670 49 6.55708e+06 349595 585099. 2024.56 3.87 0.240237 0.212138 22462 138074 -1 3152 17 1354 4287 338822 69625 6.82884 6.82884 -141.794 -6.82884 0 0 742403. 2568.87 0.24 0.11 0.14 -1 -1 0.24 0.0364732 0.0323401 185 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.63 vpr 62.92 MiB 0.03 6712 -1 -1 13 0.33 -1 -1 32928 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.4 MiB 0.46 1568 9951 2486 6481 984 62.9 MiB 0.16 0.00 7.68511 -161.036 -7.68511 7.68511 0.93 0.00114867 0.00106102 0.0525816 0.0484843 30 4515 42 6.55708e+06 385760 526063. 1820.29 2.34 0.237673 0.212241 21886 126133 -1 3502 28 2006 6066 507539 148279 6.97858 6.97858 -160.112 -6.97858 0 0 666494. 2306.21 0.29 0.24 0.13 -1 -1 0.29 0.0720796 0.0651952 223 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.85 vpr 62.78 MiB 0.03 6804 -1 -1 12 0.27 -1 -1 32844 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.0 MiB 0.50 1500 9773 2280 6498 995 62.8 MiB 0.14 0.00 7.53766 -152.093 -7.53766 7.53766 1.00 0.00106378 0.000977094 0.0460523 0.0424333 36 3615 22 6.55708e+06 409870 612192. 2118.31 2.70 0.266791 0.236691 22750 144809 -1 3267 15 1282 4038 250204 54786 6.91184 6.91184 -150.725 -6.91184 0 0 782063. 2706.10 0.26 0.12 0.15 -1 -1 0.26 0.037118 0.0333394 209 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.72 vpr 61.99 MiB 0.04 6508 -1 -1 12 0.19 -1 -1 32344 -1 -1 27 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63480 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.5 MiB 0.26 1024 5945 1385 4013 547 62.0 MiB 0.08 0.00 7.15274 -128.455 -7.15274 7.15274 0.91 0.000777954 0.000718636 0.0250315 0.0231138 28 2881 21 6.55708e+06 325485 500653. 1732.36 2.13 0.122774 0.108759 21310 115450 -1 2502 18 1060 3101 253804 71376 6.17638 6.17638 -123.112 -6.17638 0 0 612192. 2118.31 0.27 0.10 0.12 -1 -1 0.27 0.0278191 0.0251049 136 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 16.11 vpr 62.31 MiB 0.03 6604 -1 -1 11 0.18 -1 -1 32804 -1 -1 28 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63804 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 23.8 MiB 0.25 1220 9679 2547 5973 1159 62.3 MiB 0.14 0.00 6.45772 -132.139 -6.45772 6.45772 0.76 0.000925307 0.000854571 0.0473385 0.0436517 28 3707 46 6.55708e+06 337540 500653. 1732.36 12.70 0.319957 0.281712 21310 115450 -1 2985 17 1256 3962 291572 61538 5.46178 5.46178 -129.447 -5.46178 0 0 612192. 2118.31 0.24 0.11 0.12 -1 -1 0.24 0.0351335 0.0311522 175 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 6.19 vpr 62.11 MiB 0.03 6604 -1 -1 12 0.17 -1 -1 32444 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.6 MiB 0.35 1146 12373 3633 6385 2355 62.1 MiB 0.14 0.00 7.00181 -148.703 -7.00181 7.00181 0.89 0.000824108 0.000760144 0.0484161 0.0443992 28 3444 25 6.55708e+06 301375 500653. 1732.36 2.45 0.165099 0.146003 21310 115450 -1 2797 15 1163 2905 215229 47266 6.33838 6.33838 -146.417 -6.33838 0 0 612192. 2118.31 0.28 0.09 0.13 -1 -1 0.28 0.0314739 0.0287977 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.76 vpr 62.32 MiB 0.04 6552 -1 -1 13 0.19 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1098 10979 3065 6306 1608 62.3 MiB 0.12 0.00 7.23855 -159.771 -7.23855 7.23855 0.76 0.000392782 0.000359149 0.0379544 0.0345488 30 2916 16 6.55708e+06 301375 526063. 1820.29 1.23 0.139926 0.122844 21886 126133 -1 2360 15 1075 2940 169623 37663 6.18864 6.18864 -150.63 -6.18864 0 0 666494. 2306.21 0.31 0.08 0.14 -1 -1 0.31 0.0293137 0.0263181 162 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.89 vpr 62.00 MiB 0.04 6544 -1 -1 12 0.23 -1 -1 32624 -1 -1 22 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63492 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.5 MiB 0.41 1073 8868 2309 4974 1585 62.0 MiB 0.11 0.00 7.23424 -146.32 -7.23424 7.23424 0.77 0.000772152 0.000712196 0.0402899 0.0372187 28 2738 31 6.55708e+06 265210 500653. 1732.36 1.36 0.146431 0.129004 21310 115450 -1 2373 18 973 2394 150083 34124 6.47024 6.47024 -142.379 -6.47024 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0275302 0.0245594 132 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.43 vpr 62.12 MiB 0.02 6556 -1 -1 12 0.17 -1 -1 32656 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.7 MiB 0.21 971 12175 3572 6038 2565 62.1 MiB 0.15 0.00 6.75009 -143.946 -6.75009 6.75009 0.76 0.000784989 0.000723679 0.0549303 0.0506393 34 2732 30 6.55708e+06 253155 585099. 2024.56 2.14 0.187888 0.165344 22462 138074 -1 2388 16 1037 2863 193037 44084 5.82038 5.82038 -140.579 -5.82038 0 0 742403. 2568.87 0.26 0.08 0.14 -1 -1 0.26 0.0279562 0.0248859 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 8.01 vpr 62.77 MiB 0.05 6680 -1 -1 13 0.34 -1 -1 33060 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1456 5419 862 4216 341 62.8 MiB 0.09 0.00 7.90792 -162.801 -7.90792 7.90792 0.77 0.00106806 0.000985185 0.0323433 0.0299406 34 3564 45 6.55708e+06 361650 585099. 2024.56 4.39 0.381111 0.330608 22462 138074 -1 3100 17 1282 3816 266207 55389 6.8405 6.8405 -150.939 -6.8405 0 0 742403. 2568.87 0.26 0.10 0.15 -1 -1 0.26 0.0398911 0.0354472 212 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 8.01 vpr 62.76 MiB 0.02 6860 -1 -1 14 0.31 -1 -1 33128 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.0 MiB 0.49 1487 7653 1685 5037 931 62.8 MiB 0.12 0.00 8.67599 -179.222 -8.67599 8.67599 0.77 0.00108642 0.00100335 0.0436728 0.0403999 36 3607 25 6.55708e+06 349595 612192. 2118.31 4.13 0.351943 0.307393 22750 144809 -1 3055 20 1304 3614 228238 49938 7.61881 7.61881 -167.089 -7.61881 0 0 782063. 2706.10 0.31 0.11 0.15 -1 -1 0.31 0.0448937 0.0403487 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 6.68 vpr 62.11 MiB 0.02 6536 -1 -1 11 0.20 -1 -1 32408 -1 -1 29 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.21 1095 15366 4454 8585 2327 62.1 MiB 0.18 0.00 6.42654 -129.9 -6.42654 6.42654 0.76 0.000818797 0.000755364 0.0659868 0.0608438 38 2530 16 6.55708e+06 349595 638502. 2209.35 3.37 0.290753 0.254605 23326 155178 -1 2215 14 872 2569 165338 34492 5.60952 5.60952 -121.963 -5.60952 0 0 851065. 2944.86 0.27 0.08 0.12 -1 -1 0.27 0.0269255 0.0242771 160 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.66 vpr 62.72 MiB 0.02 6668 -1 -1 12 0.30 -1 -1 32892 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.0 MiB 0.53 1497 7523 1547 5261 715 62.7 MiB 0.12 0.00 7.78498 -159.33 -7.78498 7.78498 0.90 0.0011048 0.00101821 0.042385 0.0391848 44 3737 30 6.55708e+06 409870 742403. 2568.87 4.40 0.361722 0.315189 24478 177802 -1 2921 16 1109 3556 249234 49730 6.83084 6.83084 -148.474 -6.83084 0 0 937218. 3242.97 0.30 0.10 0.18 -1 -1 0.30 0.0389472 0.0347507 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.33 vpr 63.01 MiB 0.03 6700 -1 -1 13 0.32 -1 -1 32776 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.1 MiB 0.35 1448 9075 2050 5697 1328 63.0 MiB 0.14 0.00 8.28129 -168.719 -8.28129 8.28129 0.78 0.00101766 0.000933289 0.0495999 0.0457997 30 3614 28 6.55708e+06 385760 526063. 1820.29 1.67 0.185006 0.165592 21886 126133 -1 2873 15 1253 3756 200422 44906 7.0769 7.0769 -159.042 -7.0769 0 0 666494. 2306.21 0.23 0.09 0.12 -1 -1 0.23 0.0378574 0.0338337 217 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.85 vpr 62.15 MiB 0.04 6576 -1 -1 12 0.15 -1 -1 32460 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1089 8402 1864 6112 426 62.1 MiB 0.11 0.00 7.26292 -158.375 -7.26292 7.26292 1.05 0.000635139 0.00057752 0.0322786 0.0295217 28 2902 19 6.55708e+06 265210 500653. 1732.36 1.67 0.132549 0.116981 21310 115450 -1 2466 15 1037 2818 180974 42146 6.2029 6.2029 -150.571 -6.2029 0 0 612192. 2118.31 0.22 0.08 0.13 -1 -1 0.22 0.0298479 0.0266636 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 6.72 vpr 61.61 MiB 0.04 6440 -1 -1 10 0.13 -1 -1 32148 -1 -1 20 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63088 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.1 MiB 0.13 786 5244 1130 3909 205 61.6 MiB 0.09 0.00 5.1986 -117.15 -5.1986 5.1986 1.02 0.000734169 0.000684088 0.0234935 0.0219017 36 1939 26 6.55708e+06 241100 612192. 2118.31 3.34 0.18709 0.162377 22750 144809 -1 1664 15 668 1659 108652 24325 4.5098 4.5098 -113.181 -4.5098 0 0 782063. 2706.10 0.28 0.06 0.15 -1 -1 0.28 0.0207686 0.0186042 96 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.75 vpr 62.11 MiB 0.04 6676 -1 -1 13 0.16 -1 -1 32824 -1 -1 24 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63604 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1123 5079 946 3658 475 62.1 MiB 0.09 0.00 7.44701 -156.373 -7.44701 7.44701 0.91 0.000974692 0.0009112 0.0299273 0.0279502 28 2792 17 6.55708e+06 289320 500653. 1732.36 3.03 0.199525 0.175035 21310 115450 -1 2452 27 984 2585 276753 108584 6.45598 6.45598 -148.215 -6.45598 0 0 612192. 2118.31 0.24 0.14 0.12 -1 -1 0.24 0.0461533 0.0408402 139 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 6.59 vpr 62.61 MiB 0.02 6656 -1 -1 13 0.28 -1 -1 32772 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1494 10031 2522 6626 883 62.6 MiB 0.15 0.00 7.77584 -154.394 -7.77584 7.77584 0.77 0.00105893 0.000977808 0.0530747 0.0489108 28 4154 45 6.55708e+06 373705 500653. 1732.36 2.93 0.239088 0.213144 21310 115450 -1 3600 19 1886 6145 464983 96681 6.70098 6.70098 -154.034 -6.70098 0 0 612192. 2118.31 0.21 0.17 0.12 -1 -1 0.21 0.0443158 0.0395077 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 9.54 vpr 62.88 MiB 0.02 6892 -1 -1 13 0.28 -1 -1 33252 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1626 7973 1601 5735 637 62.9 MiB 0.12 0.00 7.9648 -163.763 -7.9648 7.9648 0.85 0.000807511 0.000734393 0.0387771 0.0356641 38 3853 20 6.55708e+06 409870 638502. 2209.35 5.70 0.397226 0.347356 23326 155178 -1 3261 15 1306 4444 281331 57915 6.9607 6.9607 -152.308 -6.9607 0 0 851065. 2944.86 0.28 0.11 0.15 -1 -1 0.28 0.0367401 0.0328439 207 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.95 vpr 61.46 MiB 0.04 6476 -1 -1 9 0.10 -1 -1 32184 -1 -1 21 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62932 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 22.8 MiB 0.26 710 10557 2762 6888 907 61.5 MiB 0.10 0.00 4.66154 -94.5374 -4.66154 4.66154 0.76 0.00054259 0.000501849 0.0357972 0.0331027 28 1847 15 6.55708e+06 253155 500653. 1732.36 0.92 0.0970092 0.0857094 21310 115450 -1 1704 13 621 1618 119185 26142 4.08748 4.08748 -94.2196 -4.08748 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0163101 0.0144267 83 66 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 8.51 vpr 62.81 MiB 0.04 6692 -1 -1 13 0.32 -1 -1 32700 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1530 4780 793 3650 337 62.8 MiB 0.09 0.00 7.84695 -156.636 -7.84695 7.84695 0.76 0.00111307 0.00103063 0.033208 0.0306762 28 4145 48 6.55708e+06 361650 500653. 1732.36 4.86 0.391257 0.342029 21310 115450 -1 3393 21 1643 4526 459813 148006 6.9633 6.9633 -153.196 -6.9633 0 0 612192. 2118.31 0.27 0.17 0.14 -1 -1 0.27 0.0444923 0.0400405 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 5.93 vpr 61.31 MiB 0.04 6312 -1 -1 8 0.09 -1 -1 31036 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62784 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 22.8 MiB 0.20 436 8831 2193 4716 1922 61.3 MiB 0.08 0.00 4.66158 -87.3613 -4.66158 4.66158 0.76 0.000554357 0.000511352 0.0297672 0.0274667 32 1489 41 6.55708e+06 204935 554710. 1919.41 2.88 0.140689 0.122168 22174 131602 -1 1162 17 597 1146 99988 30533 4.04726 4.04726 -88.7754 -4.04726 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.020285 0.0178617 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.51 vpr 62.19 MiB 0.02 6704 -1 -1 15 0.23 -1 -1 33088 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63684 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1127 8999 2110 5455 1434 62.2 MiB 0.12 0.00 8.78748 -168.447 -8.78748 8.78748 0.76 0.000981369 0.000910923 0.0454923 0.0420719 34 3132 27 6.55708e+06 301375 585099. 2024.56 4.14 0.329043 0.289448 22462 138074 -1 2531 16 1109 3183 221854 47938 7.41762 7.41762 -157.157 -7.41762 0 0 742403. 2568.87 0.24 0.09 0.14 -1 -1 0.24 0.0324292 0.0288112 161 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 8.24 vpr 62.67 MiB 0.04 6560 -1 -1 12 0.28 -1 -1 32908 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1426 7871 1871 5355 645 62.7 MiB 0.13 0.00 6.97141 -150.212 -6.97141 6.97141 0.76 0.00106806 0.000984786 0.0442207 0.0407801 34 3971 48 6.55708e+06 373705 585099. 2024.56 4.77 0.417105 0.367045 22462 138074 -1 3339 17 1440 4529 311138 66749 6.49978 6.49978 -148.218 -6.49978 0 0 742403. 2568.87 0.24 0.11 0.14 -1 -1 0.24 0.040102 0.035623 218 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 12.11 vpr 62.59 MiB 0.03 6748 -1 -1 13 0.30 -1 -1 32700 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1403 8993 2077 6178 738 62.6 MiB 0.14 0.00 7.73601 -160.617 -7.73601 7.73601 0.89 0.00103088 0.000954038 0.0466215 0.0430372 30 3495 43 6.55708e+06 337540 526063. 1820.29 8.20 0.3559 0.312296 21886 126133 -1 2907 17 1244 3835 223711 48943 6.6419 6.6419 -153.545 -6.6419 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0377087 0.0335047 196 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 5.43 vpr 62.06 MiB 0.02 6512 -1 -1 12 0.22 -1 -1 32452 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.5 MiB 0.32 1093 9158 2327 6239 592 62.1 MiB 0.12 0.00 6.471 -143.803 -6.471 6.471 0.90 0.000621828 0.000565666 0.0391801 0.0358704 28 2997 42 6.55708e+06 265210 500653. 1732.36 1.73 0.172913 0.153239 21310 115450 -1 2535 25 1047 2812 273709 92193 5.83566 5.83566 -140.532 -5.83566 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0408032 0.0359396 146 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 9.03 vpr 61.97 MiB 0.03 6520 -1 -1 11 0.17 -1 -1 32648 -1 -1 23 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63460 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1045 6781 1469 4387 925 62.0 MiB 0.09 0.00 6.28146 -130.954 -6.28146 6.28146 0.92 0.000730468 0.000665241 0.0274467 0.0252964 28 2717 46 6.55708e+06 277265 500653. 1732.36 5.37 0.230731 0.202231 21310 115450 -1 2299 15 892 2470 164935 35783 5.68992 5.68992 -128.681 -5.68992 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0254827 0.0226078 128 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.25 vpr 62.08 MiB 0.02 6652 -1 -1 11 0.16 -1 -1 32472 -1 -1 27 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63568 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1079 8535 1915 5707 913 62.1 MiB 0.10 0.00 6.57292 -128.193 -6.57292 6.57292 0.96 0.000583351 0.00053006 0.0297814 0.0271762 30 2833 23 6.55708e+06 325485 526063. 1820.29 1.63 0.133367 0.118236 21886 126133 -1 2357 15 1025 3000 179385 38373 5.54018 5.54018 -121.408 -5.54018 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0271499 0.0242008 142 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 11.10 vpr 62.72 MiB 0.02 6528 -1 -1 12 0.19 -1 -1 32572 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 23.8 MiB 0.22 1327 6716 1263 5020 433 62.7 MiB 0.10 0.00 7.20375 -160.021 -7.20375 7.20375 0.90 0.000814451 0.000756856 0.0319313 0.0294497 28 3446 27 6.55708e+06 337540 500653. 1732.36 7.54 0.272861 0.240401 21310 115450 -1 2918 17 1234 3246 203431 46346 6.47024 6.47024 -156.89 -6.47024 0 0 612192. 2118.31 0.24 0.09 0.12 -1 -1 0.24 0.0340739 0.0307112 180 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.71 vpr 62.13 MiB 0.04 6516 -1 -1 11 0.17 -1 -1 32572 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63624 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1072 4244 722 3315 207 62.1 MiB 0.07 0.00 6.41894 -136.128 -6.41894 6.41894 0.76 0.00083656 0.000771273 0.0231114 0.0213875 28 2955 25 6.55708e+06 277265 500653. 1732.36 1.35 0.131637 0.1156 21310 115450 -1 2472 21 1309 3658 233854 54032 6.01132 6.01132 -139.086 -6.01132 0 0 612192. 2118.31 0.26 0.10 0.12 -1 -1 0.26 0.0365979 0.0327832 147 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.38 vpr 62.09 MiB 0.03 6680 -1 -1 10 0.15 -1 -1 32712 -1 -1 24 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63580 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.7 MiB 0.21 967 12733 4051 6442 2240 62.1 MiB 0.14 0.00 6.08886 -123.876 -6.08886 6.08886 0.79 0.000787418 0.000725584 0.0573304 0.0528913 32 2530 21 6.55708e+06 289320 554710. 1919.41 1.00 0.150011 0.133155 22174 131602 -1 2226 13 810 2355 168305 37054 5.30638 5.30638 -118.841 -5.30638 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.0257167 0.0235675 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.56 vpr 63.01 MiB 0.03 6920 -1 -1 13 0.35 -1 -1 33208 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.4 MiB 0.31 1621 5869 1104 4212 553 63.0 MiB 0.10 0.00 7.46683 -155.207 -7.46683 7.46683 0.77 0.00114839 0.0010588 0.034996 0.0323246 30 4073 35 6.55708e+06 397815 526063. 1820.29 1.93 0.204873 0.180192 21886 126133 -1 3209 17 1391 4648 273815 58036 6.6419 6.6419 -148.671 -6.6419 0 0 666494. 2306.21 0.24 0.11 0.13 -1 -1 0.24 0.0406012 0.0366278 239 238 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 8.95 vpr 62.78 MiB 0.04 6728 -1 -1 13 0.32 -1 -1 33060 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1508 8283 1888 5355 1040 62.8 MiB 0.13 0.00 8.09706 -175.077 -8.09706 8.09706 0.88 0.000797456 0.000720694 0.040307 0.0369655 38 3523 25 6.55708e+06 349595 638502. 2209.35 4.95 0.345777 0.303704 23326 155178 -1 3029 20 1281 4361 254328 54126 7.1207 7.1207 -164.977 -7.1207 0 0 851065. 2944.86 0.27 0.11 0.15 -1 -1 0.27 0.0446277 0.0395221 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 6.13 vpr 62.08 MiB 0.04 6500 -1 -1 12 0.16 -1 -1 32804 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63568 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.6 MiB 0.35 1096 12568 3446 6926 2196 62.1 MiB 0.14 0.00 6.66868 -144.132 -6.66868 6.66868 0.89 0.000577011 0.000523884 0.0476461 0.0435495 34 2970 19 6.55708e+06 301375 585099. 2024.56 2.55 0.185426 0.164002 22462 138074 -1 2513 16 1088 2991 208088 44712 5.70218 5.70218 -136.293 -5.70218 0 0 742403. 2568.87 0.25 0.09 0.14 -1 -1 0.25 0.029104 0.0258651 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.79 vpr 62.76 MiB 0.03 6756 -1 -1 12 0.28 -1 -1 33228 -1 -1 34 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1489 8977 2020 5913 1044 62.8 MiB 0.14 0.00 8.10558 -165.766 -8.10558 8.10558 0.79 0.0011404 0.00105804 0.0499047 0.0462701 36 3633 26 6.55708e+06 409870 612192. 2118.31 3.16 0.300529 0.26663 22750 144809 -1 3170 33 1275 3966 522085 228509 7.1965 7.1965 -160.118 -7.1965 0 0 782063. 2706.10 0.26 0.21 0.15 -1 -1 0.26 0.0664059 0.0582793 219 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.69 vpr 62.59 MiB 0.02 6808 -1 -1 14 0.35 -1 -1 33144 -1 -1 28 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1460 6211 1289 4295 627 62.6 MiB 0.10 0.00 8.35283 -161.679 -8.35283 8.35283 0.93 0.000785154 0.000720753 0.0334611 0.0309489 30 3670 35 6.55708e+06 337540 526063. 1820.29 1.94 0.189964 0.168618 21886 126133 -1 3039 16 1312 3757 214113 46231 7.32956 7.32956 -156.91 -7.32956 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0370932 0.0330183 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.07 vpr 62.76 MiB 0.03 6860 -1 -1 13 0.26 -1 -1 32852 -1 -1 28 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1364 9271 2151 5683 1437 62.8 MiB 0.13 0.00 7.40806 -157.551 -7.40806 7.40806 0.92 0.00074962 0.000673937 0.0461229 0.0423212 30 3530 22 6.55708e+06 337540 526063. 1820.29 1.30 0.169404 0.150653 21886 126133 -1 2929 17 1403 3811 222616 49243 6.37758 6.37758 -149.247 -6.37758 0 0 666494. 2306.21 0.26 0.09 0.13 -1 -1 0.26 0.0313443 0.0281815 181 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.18 vpr 62.62 MiB 0.03 6836 -1 -1 12 0.25 -1 -1 33084 -1 -1 30 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 23.9 MiB 0.54 1374 13743 3666 8130 1947 62.6 MiB 0.20 0.00 6.76701 -143.203 -6.76701 6.76701 0.90 0.000998067 0.000921503 0.0735497 0.0680123 34 4019 49 6.55708e+06 361650 585099. 2024.56 3.94 0.320142 0.280889 22462 138074 -1 3201 17 1352 4243 298965 63294 5.90078 5.90078 -139.937 -5.90078 0 0 742403. 2568.87 0.29 0.12 0.14 -1 -1 0.29 0.0386548 0.034706 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.68 vpr 62.34 MiB 0.04 6720 -1 -1 12 0.24 -1 -1 32788 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1252 8278 1977 5044 1257 62.3 MiB 0.11 0.00 7.19338 -143.847 -7.19338 7.19338 0.89 0.000924747 0.00085473 0.0375412 0.0344898 30 2996 16 6.55708e+06 289320 526063. 1820.29 1.11 0.141743 0.125847 21886 126133 -1 2455 16 979 2839 166694 36286 6.1631 6.1631 -136.288 -6.1631 0 0 666494. 2306.21 0.27 0.08 0.13 -1 -1 0.27 0.0325406 0.0292239 172 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.65 vpr 62.77 MiB 0.03 6896 -1 -1 14 0.55 -1 -1 32492 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1757 10673 2583 7118 972 62.8 MiB 0.18 0.00 8.08019 -170.094 -8.08019 8.08019 0.79 0.000909148 0.000820743 0.0615035 0.0567471 46 4041 18 6.55708e+06 409870 782063. 2706.10 4.43 0.414258 0.361692 24766 183262 -1 3418 16 1317 4886 320292 63286 7.0005 7.0005 -155.617 -7.0005 0 0 958460. 3316.47 0.31 0.12 0.18 -1 -1 0.31 0.0427914 0.0382073 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 5.15 vpr 62.20 MiB 0.02 6512 -1 -1 11 0.19 -1 -1 32488 -1 -1 26 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63688 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1212 8009 2047 5116 846 62.2 MiB 0.11 0.00 6.43815 -136.573 -6.43815 6.43815 0.92 0.000798684 0.000729903 0.03472 0.0318997 30 2894 17 6.55708e+06 313430 526063. 1820.29 1.51 0.147353 0.131143 21886 126133 -1 2572 17 1181 3275 202480 42282 5.53052 5.53052 -132.73 -5.53052 0 0 666494. 2306.21 0.27 0.09 0.13 -1 -1 0.27 0.0326 0.0293058 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.13 vpr 62.46 MiB 0.02 6812 -1 -1 13 0.27 -1 -1 32836 -1 -1 27 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1339 4512 785 3381 346 62.5 MiB 0.07 0.00 8.23298 -156.44 -8.23298 8.23298 0.83 0.000699112 0.000621864 0.0240913 0.0222013 36 3369 26 6.55708e+06 325485 612192. 2118.31 3.34 0.23521 0.207344 22750 144809 -1 2780 16 1061 3515 219491 47004 7.0815 7.0815 -147.186 -7.0815 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0356469 0.0317467 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 8.84 vpr 62.98 MiB 0.05 6704 -1 -1 12 0.26 -1 -1 32784 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1513 7973 1697 5548 728 63.0 MiB 0.13 0.00 7.05697 -153.444 -7.05697 7.05697 0.77 0.00110828 0.00102267 0.0436214 0.040317 36 3827 24 6.55708e+06 409870 612192. 2118.31 5.06 0.374308 0.32992 22750 144809 -1 3326 16 1410 5196 341496 71669 6.34038 6.34038 -150.148 -6.34038 0 0 782063. 2706.10 0.27 0.12 0.16 -1 -1 0.27 0.0402594 0.0358806 227 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 9.33 vpr 62.55 MiB 0.02 6780 -1 -1 13 0.24 -1 -1 32852 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1286 13340 3362 8056 1922 62.6 MiB 0.18 0.00 7.57452 -156.038 -7.57452 7.57452 0.77 0.000956343 0.000880526 0.0680377 0.0627637 30 3178 19 6.55708e+06 337540 526063. 1820.29 5.81 0.346238 0.304247 21886 126133 -1 2730 30 1292 3621 397825 166644 6.63024 6.63024 -149.715 -6.63024 0 0 666494. 2306.21 0.23 0.19 0.14 -1 -1 0.23 0.0591092 0.0523571 184 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 10.82 vpr 62.37 MiB 0.05 6748 -1 -1 13 0.22 -1 -1 32732 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1203 12563 3367 6823 2373 62.4 MiB 0.16 0.00 7.77281 -162.033 -7.77281 7.77281 0.88 0.000683361 0.000619796 0.0586287 0.0536692 30 3194 40 6.55708e+06 301375 526063. 1820.29 7.03 0.322253 0.281839 21886 126133 -1 2369 16 994 3080 158360 36540 6.6027 6.6027 -146.456 -6.6027 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0340801 0.0303304 175 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.76 vpr 62.95 MiB 0.02 6656 -1 -1 12 0.29 -1 -1 32644 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.2 MiB 0.68 1416 10679 2747 6565 1367 62.9 MiB 0.15 0.00 6.86528 -151.049 -6.86528 6.86528 0.89 0.000835819 0.000759093 0.0488129 0.0447156 34 3877 44 6.55708e+06 373705 585099. 2024.56 3.48 0.309065 0.272687 22462 138074 -1 3054 16 1243 4230 282518 59991 6.14378 6.14378 -144.155 -6.14378 0 0 742403. 2568.87 0.29 0.11 0.14 -1 -1 0.29 0.0393037 0.0355063 205 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.64 vpr 62.80 MiB 0.05 6732 -1 -1 13 0.28 -1 -1 32856 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1584 11223 2635 7117 1471 62.8 MiB 0.16 0.00 7.96921 -159.229 -7.96921 7.96921 0.86 0.000823023 0.000748497 0.0539521 0.0496038 36 3998 40 6.55708e+06 349595 612192. 2118.31 4.74 0.318578 0.281264 22750 144809 -1 3408 20 1540 4794 331369 68533 7.1639 7.1639 -152.595 -7.1639 0 0 782063. 2706.10 0.31 0.13 0.15 -1 -1 0.31 0.0459938 0.04143 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.81 vpr 62.34 MiB 0.04 6808 -1 -1 14 0.28 -1 -1 32868 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 23.9 MiB 0.43 1228 9197 2464 5958 775 62.3 MiB 0.14 0.00 7.91369 -163.421 -7.91369 7.91369 0.79 0.000947102 0.000865691 0.0496791 0.0457317 28 3368 23 6.55708e+06 301375 500653. 1732.36 2.16 0.170533 0.150495 21310 115450 -1 3015 20 1490 4712 319020 71516 7.18744 7.18744 -162.738 -7.18744 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0391632 0.0346357 167 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 8.38 vpr 62.51 MiB 0.03 6728 -1 -1 13 0.28 -1 -1 32884 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.0 MiB 0.51 1537 7336 1683 5066 587 62.5 MiB 0.14 0.00 8.38432 -170.174 -8.38432 8.38432 0.78 0.00102319 0.000945156 0.0441479 0.0408367 36 3607 26 6.55708e+06 361650 612192. 2118.31 4.54 0.354536 0.308345 22750 144809 -1 3162 16 1308 3779 262460 55344 7.21136 7.21136 -157.654 -7.21136 0 0 782063. 2706.10 0.25 0.10 0.14 -1 -1 0.25 0.0362789 0.0322733 199 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 19.19 vpr 62.77 MiB 0.03 6768 -1 -1 13 0.33 -1 -1 32968 -1 -1 32 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.35 1531 8951 1993 6087 871 62.8 MiB 0.14 0.00 8.45326 -176.134 -8.45326 8.45326 0.90 0.00113656 0.00105279 0.0459898 0.0422008 28 4873 47 6.55708e+06 385760 500653. 1732.36 15.02 0.37244 0.325164 21310 115450 -1 3732 42 2307 7673 977690 397154 7.8791 7.8791 -170.036 -7.8791 0 0 612192. 2118.31 0.21 0.34 0.14 -1 -1 0.21 0.080883 0.0708143 221 218 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 9.45 vpr 62.99 MiB 0.02 6816 -1 -1 12 0.32 -1 -1 32668 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.44 1599 7323 1463 5208 652 63.0 MiB 0.12 0.00 7.47193 -159.786 -7.47193 7.47193 0.86 0.00111489 0.00102931 0.041659 0.0384829 38 3591 36 6.55708e+06 385760 638502. 2209.35 5.25 0.441257 0.384932 23326 155178 -1 3156 17 1372 4497 293304 60481 6.6439 6.6439 -151.142 -6.6439 0 0 851065. 2944.86 0.32 0.11 0.15 -1 -1 0.32 0.0406981 0.0366833 231 229 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.76 vpr 61.96 MiB 0.03 6528 -1 -1 11 0.13 -1 -1 32432 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1043 10883 2916 6057 1910 62.0 MiB 0.13 0.00 5.95009 -133.303 -5.95009 5.95009 0.97 0.000753966 0.000694681 0.0464856 0.0426969 30 2600 34 6.55708e+06 229045 526063. 1820.29 1.26 0.140433 0.124387 21886 126133 -1 2240 17 876 2413 138426 30448 5.28046 5.28046 -128.473 -5.28046 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.027957 0.0247697 127 121 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 5.85 vpr 62.19 MiB 0.05 6660 -1 -1 13 0.19 -1 -1 32716 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63684 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.6 MiB 0.46 1281 6211 1217 4524 470 62.2 MiB 0.10 0.00 7.73937 -166.104 -7.73937 7.73937 0.97 0.000676246 0.000611639 0.033284 0.0310629 28 3381 28 6.55708e+06 325485 500653. 1732.36 1.87 0.153647 0.13618 21310 115450 -1 3016 20 1150 3259 268058 70084 6.82684 6.82684 -160.33 -6.82684 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0369837 0.0326948 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 9.49 vpr 63.08 MiB 0.05 6920 -1 -1 14 0.48 -1 -1 33016 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.9 MiB 0.40 1818 9380 1999 6471 910 63.1 MiB 0.15 0.00 8.82888 -183.788 -8.82888 8.82888 0.77 0.00102502 0.000927701 0.0550457 0.0507945 36 4530 49 6.55708e+06 433980 612192. 2118.31 5.54 0.523907 0.465863 22750 144809 -1 3723 18 1552 4791 333610 69622 7.76855 7.76855 -172.747 -7.76855 0 0 782063. 2706.10 0.26 0.13 0.15 -1 -1 0.26 0.0463025 0.0414715 267 266 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 8.09 vpr 63.27 MiB 0.02 6592 -1 -1 13 0.33 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.4 MiB 0.52 1477 8735 1981 6002 752 63.3 MiB 0.14 0.00 7.79483 -168.531 -7.79483 7.79483 0.89 0.000951771 0.000870544 0.0463444 0.0424834 28 4106 28 6.55708e+06 373705 500653. 1732.36 3.95 0.366465 0.32492 21310 115450 -1 3378 17 1550 4546 280403 63000 6.81858 6.81858 -160.269 -6.81858 0 0 612192. 2118.31 0.24 0.11 0.13 -1 -1 0.24 0.0444511 0.0397849 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.08 vpr 62.06 MiB 0.02 6676 -1 -1 11 0.17 -1 -1 32580 -1 -1 23 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63548 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 916 9943 3248 5072 1623 62.1 MiB 0.12 0.00 6.47975 -131.851 -6.47975 6.47975 0.77 0.000791349 0.000729461 0.0458599 0.0422598 34 2518 24 6.55708e+06 277265 585099. 2024.56 1.88 0.17882 0.157075 22462 138074 -1 2137 15 954 2833 189728 42860 5.54018 5.54018 -123.35 -5.54018 0 0 742403. 2568.87 0.24 0.08 0.11 -1 -1 0.24 0.0268621 0.0239202 137 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.59 vpr 63.01 MiB 0.03 7116 -1 -1 15 0.42 -1 -1 33056 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1670 7867 1614 5465 788 63.0 MiB 0.13 0.00 8.70958 -179.837 -8.70958 8.70958 0.88 0.00108082 0.000999466 0.0460418 0.0424824 36 4368 41 6.55708e+06 397815 612192. 2118.31 5.43 0.34006 0.300485 22750 144809 -1 3690 20 1747 5765 389698 81544 7.58523 7.58523 -169.501 -7.58523 0 0 782063. 2706.10 0.35 0.15 0.17 -1 -1 0.35 0.0535098 0.048295 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 9.44 vpr 62.85 MiB 0.02 6700 -1 -1 13 0.36 -1 -1 33256 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1370 12483 3068 7076 2339 62.8 MiB 0.18 0.00 7.72925 -154.988 -7.72925 7.72925 0.88 0.00109066 0.00100781 0.0631697 0.058315 48 3055 16 6.55708e+06 349595 816265. 2824.45 5.31 0.37873 0.334933 25054 189045 -1 2819 17 1136 3311 246054 50228 7.0025 7.0025 -147.636 -7.0025 0 0 986792. 3414.50 0.32 0.10 0.20 -1 -1 0.32 0.0362518 0.0324246 207 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 6.87 vpr 62.16 MiB 0.02 6492 -1 -1 11 0.14 -1 -1 32588 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63652 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1161 6718 1477 4583 658 62.2 MiB 0.09 0.00 6.62468 -135.028 -6.62468 6.62468 0.91 0.000801962 0.000739581 0.031003 0.0286488 30 2814 20 6.55708e+06 289320 526063. 1820.29 3.50 0.245424 0.215571 21886 126133 -1 2390 15 1004 2790 161805 36457 6.09938 6.09938 -133.751 -6.09938 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0269839 0.0239853 149 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 6.43 vpr 62.71 MiB 0.03 7012 -1 -1 12 0.39 -1 -1 32832 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1540 8735 2140 5810 785 62.7 MiB 0.12 0.00 7.17512 -150.872 -7.17512 7.17512 0.90 0.000732849 0.000663018 0.0368975 0.0336429 36 3621 46 6.55708e+06 373705 612192. 2118.31 2.57 0.255977 0.222737 22750 144809 -1 3204 18 1264 4008 285489 58457 6.47224 6.47224 -147.173 -6.47224 0 0 782063. 2706.10 0.25 0.11 0.14 -1 -1 0.25 0.0417681 0.0370223 217 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 11.12 vpr 62.26 MiB 0.02 6528 -1 -1 12 0.26 -1 -1 32432 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63756 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1252 5517 962 4221 334 62.3 MiB 0.08 0.00 7.41221 -152.744 -7.41221 7.41221 0.94 0.000919849 0.000850033 0.025771 0.0237532 28 3606 43 6.55708e+06 313430 500653. 1732.36 7.42 0.297856 0.260738 21310 115450 -1 2885 17 1246 3438 233079 50634 6.6027 6.6027 -150.262 -6.6027 0 0 612192. 2118.31 0.21 0.09 0.13 -1 -1 0.21 0.0335427 0.0297474 164 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 7.33 vpr 62.10 MiB 0.04 6620 -1 -1 12 0.22 -1 -1 32692 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63592 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.24 998 6383 1524 4361 498 62.1 MiB 0.08 0.00 7.15324 -144.822 -7.15324 7.15324 0.93 0.00081901 0.000756438 0.0287478 0.026391 26 2717 21 6.55708e+06 253155 477104. 1650.88 3.70 0.228117 0.200612 21022 109990 -1 2407 18 956 2778 197296 42815 6.50944 6.50944 -140.652 -6.50944 0 0 585099. 2024.56 0.23 0.09 0.11 -1 -1 0.23 0.0312415 0.0280931 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 14.26 vpr 62.99 MiB 0.03 6740 -1 -1 12 0.35 -1 -1 32752 -1 -1 32 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.3 MiB 0.36 1315 14583 4048 7926 2609 63.0 MiB 0.20 0.00 7.005 -132.757 -7.005 7.005 0.96 0.000828549 0.000758083 0.071027 0.0652366 30 3847 35 6.55708e+06 385760 526063. 1820.29 10.15 0.390969 0.341627 21886 126133 -1 2891 21 1370 4386 359593 111315 6.35204 6.35204 -127.925 -6.35204 0 0 666494. 2306.21 0.22 0.14 0.13 -1 -1 0.22 0.0454661 0.0402346 208 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 6.56 vpr 62.89 MiB 0.05 6660 -1 -1 14 0.36 -1 -1 33028 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.3 MiB 0.57 1622 11046 2782 7202 1062 62.9 MiB 0.17 0.00 8.27143 -173.321 -8.27143 8.27143 0.97 0.000866217 0.000800723 0.0574836 0.0528784 30 4173 46 6.55708e+06 385760 526063. 1820.29 2.07 0.246267 0.219009 21886 126133 -1 3334 18 1567 4522 271499 57748 7.21136 7.21136 -166.906 -7.21136 0 0 666494. 2306.21 0.29 0.12 0.14 -1 -1 0.29 0.0417171 0.0375976 227 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 6.36 vpr 62.65 MiB 0.03 6808 -1 -1 12 0.23 -1 -1 32904 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1318 5191 912 3744 535 62.7 MiB 0.09 0.00 7.44045 -154.388 -7.44045 7.44045 0.77 0.00102892 0.000949423 0.0303918 0.0281596 28 4086 41 6.55708e+06 325485 500653. 1732.36 2.78 0.198783 0.176512 21310 115450 -1 3199 20 1706 5288 400979 98452 6.59044 6.59044 -152.65 -6.59044 0 0 612192. 2118.31 0.28 0.15 0.10 -1 -1 0.28 0.0505561 0.0454554 192 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.59 vpr 62.07 MiB 0.04 6500 -1 -1 12 0.15 -1 -1 32692 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63564 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1100 6615 1512 4600 503 62.1 MiB 0.09 0.00 6.69922 -140.427 -6.69922 6.69922 0.77 0.000779117 0.000714503 0.0297214 0.0274593 30 2486 30 6.55708e+06 277265 526063. 1820.29 1.20 0.134027 0.117539 21886 126133 -1 2180 16 812 2483 134222 30361 5.85958 5.85958 -134.393 -5.85958 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0285966 0.0257957 133 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 7.17 vpr 62.31 MiB 0.04 6680 -1 -1 12 0.21 -1 -1 32368 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63804 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1148 11398 2849 6739 1810 62.3 MiB 0.15 0.00 7.39043 -143.264 -7.39043 7.39043 0.77 0.000919459 0.000849462 0.0578782 0.0535386 34 2972 22 6.55708e+06 301375 585099. 2024.56 3.67 0.33796 0.297571 22462 138074 -1 2545 17 1033 2874 180703 41448 6.4825 6.4825 -138.698 -6.4825 0 0 742403. 2568.87 0.31 0.09 0.15 -1 -1 0.31 0.0347319 0.0312886 170 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 6.34 vpr 62.46 MiB 0.02 6676 -1 -1 11 0.21 -1 -1 32708 -1 -1 28 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63964 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1267 6723 1289 4852 582 62.5 MiB 0.09 0.00 6.0378 -125.718 -6.0378 6.0378 0.86 0.000733289 0.00066244 0.0314889 0.0289473 28 3835 47 6.55708e+06 337540 500653. 1732.36 2.38 0.189558 0.16731 21310 115450 -1 3126 25 1760 6408 637245 182346 5.49332 5.49332 -129.398 -5.49332 0 0 612192. 2118.31 0.26 0.22 0.12 -1 -1 0.26 0.0526211 0.0471299 189 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.62 vpr 62.38 MiB 0.04 6792 -1 -1 11 0.18 -1 -1 32700 -1 -1 28 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1153 14128 4158 7800 2170 62.4 MiB 0.18 0.00 6.59995 -118.466 -6.59995 6.59995 0.76 0.000912109 0.00084086 0.0704905 0.0651706 36 2889 50 6.55708e+06 337540 612192. 2118.31 2.16 0.253515 0.222964 22750 144809 -1 2652 19 1154 3777 272487 67580 5.62118 5.62118 -114.584 -5.62118 0 0 782063. 2706.10 0.25 0.10 0.14 -1 -1 0.25 0.0366758 0.0324538 171 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 10.40 vpr 62.10 MiB 0.02 6548 -1 -1 13 0.18 -1 -1 32780 -1 -1 25 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63588 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.5 MiB 0.48 1112 5463 1180 3669 614 62.1 MiB 0.07 0.00 7.87624 -151.634 -7.87624 7.87624 0.89 0.000790644 0.000729079 0.0227968 0.0209825 28 3091 32 6.55708e+06 301375 500653. 1732.36 6.68 0.232298 0.203411 21310 115450 -1 2532 15 1005 2710 175123 38732 6.8803 6.8803 -146.9 -6.8803 0 0 612192. 2118.31 0.25 0.08 0.17 -1 -1 0.25 0.0280079 0.0253861 142 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 9.30 vpr 62.49 MiB 0.04 6612 -1 -1 12 0.19 -1 -1 32532 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1245 6211 1266 4515 430 62.5 MiB 0.10 0.00 7.2362 -155.292 -7.2362 7.2362 0.76 0.00095353 0.000880622 0.032538 0.0300772 28 3654 37 6.55708e+06 325485 500653. 1732.36 5.91 0.289224 0.253077 21310 115450 -1 2851 17 1263 3376 222424 49514 6.39124 6.39124 -149.252 -6.39124 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0353241 0.0312602 180 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 7.63 vpr 62.48 MiB 0.04 6704 -1 -1 13 0.28 -1 -1 32796 -1 -1 30 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1187 15843 5382 8046 2415 62.5 MiB 0.21 0.00 7.69912 -151.004 -7.69912 7.69912 0.76 0.00100963 0.00093107 0.0789688 0.0728674 36 3053 22 6.55708e+06 361650 612192. 2118.31 3.92 0.363863 0.318691 22750 144809 -1 2463 16 1174 3476 216718 48576 6.8431 6.8431 -141.499 -6.8431 0 0 782063. 2706.10 0.26 0.09 0.16 -1 -1 0.26 0.0357186 0.031763 195 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.87 vpr 62.82 MiB 0.03 6728 -1 -1 14 0.32 -1 -1 32772 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1371 16295 4299 9326 2670 62.8 MiB 0.22 0.00 7.90558 -162.398 -7.90558 7.90558 0.76 0.00109034 0.00100655 0.0865538 0.0798585 34 3710 36 6.55708e+06 373705 585099. 2024.56 4.07 0.414662 0.362637 22462 138074 -1 2910 19 1286 3920 251058 55159 7.1991 7.1991 -156.449 -7.1991 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0440876 0.0391736 215 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.18 vpr 62.56 MiB 0.02 6852 -1 -1 14 0.35 -1 -1 32796 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.1 MiB 0.44 1364 9067 2106 6307 654 62.6 MiB 0.14 0.00 7.8859 -150.917 -7.8859 7.8859 0.81 0.00100355 0.000925287 0.0488933 0.0451429 36 3422 25 6.55708e+06 325485 612192. 2118.31 3.20 0.256589 0.224617 22750 144809 -1 2970 27 1242 4084 435817 152680 6.6399 6.6399 -141.786 -6.6399 0 0 782063. 2706.10 0.30 0.18 0.15 -1 -1 0.30 0.0531545 0.0474121 183 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.22 vpr 62.73 MiB 0.03 6664 -1 -1 13 0.37 -1 -1 33312 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1350 6211 1219 4577 415 62.7 MiB 0.10 0.00 7.98147 -162.621 -7.98147 7.98147 0.86 0.00104187 0.000962229 0.0362877 0.0335414 36 3281 27 6.55708e+06 325485 612192. 2118.31 3.43 0.290093 0.258962 22750 144809 -1 2727 16 1196 3710 242013 52174 6.8777 6.8777 -147.177 -6.8777 0 0 782063. 2706.10 0.27 0.10 0.16 -1 -1 0.27 0.0375896 0.0337937 195 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 7.06 vpr 62.18 MiB 0.02 6656 -1 -1 13 0.18 -1 -1 32704 -1 -1 24 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63668 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1092 10670 2647 6412 1611 62.2 MiB 0.13 0.00 7.9674 -161.443 -7.9674 7.9674 0.76 0.000824385 0.000760745 0.0493256 0.0455065 34 2721 46 6.55708e+06 289320 585099. 2024.56 3.65 0.268282 0.237774 22462 138074 -1 2322 13 847 2162 141681 31010 6.7973 6.7973 -149.416 -6.7973 0 0 742403. 2568.87 0.31 0.07 0.15 -1 -1 0.31 0.0271322 0.0246839 146 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 6.27 vpr 62.79 MiB 0.05 6696 -1 -1 13 0.49 -1 -1 32932 -1 -1 31 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1304 7653 1748 5033 872 62.8 MiB 0.12 0.00 8.34953 -161.953 -8.34953 8.34953 0.89 0.000816753 0.000747026 0.0396435 0.0365462 30 4078 40 6.55708e+06 373705 526063. 1820.29 2.25 0.211185 0.187453 21886 126133 -1 3021 18 1463 4264 240812 53969 6.89196 6.89196 -151.972 -6.89196 0 0 666494. 2306.21 0.28 0.11 0.13 -1 -1 0.28 0.0377047 0.0337258 208 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 7.90 vpr 62.69 MiB 0.04 6832 -1 -1 14 0.29 -1 -1 31444 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1332 7336 1480 5450 406 62.7 MiB 0.11 0.00 7.42283 -159.831 -7.42283 7.42283 0.85 0.00099457 0.000918638 0.0390791 0.0360192 44 2916 18 6.55708e+06 361650 742403. 2568.87 4.06 0.312571 0.271434 24478 177802 -1 2531 14 964 3318 216415 43563 6.47284 6.47284 -147.516 -6.47284 0 0 937218. 3242.97 0.40 0.09 0.18 -1 -1 0.40 0.0317606 0.0289432 184 181 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 17.15 vpr 62.66 MiB 0.03 6780 -1 -1 12 0.27 -1 -1 32856 -1 -1 32 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1420 6575 1256 4964 355 62.7 MiB 0.11 0.00 8.28906 -160.635 -8.28906 8.28906 0.77 0.00104111 0.000961926 0.0355609 0.0329117 28 4706 40 6.55708e+06 385760 500653. 1732.36 13.71 0.433334 0.378551 21310 115450 -1 3655 16 1537 4471 342167 73499 7.1971 7.1971 -159.044 -7.1971 0 0 612192. 2118.31 0.22 0.12 0.12 -1 -1 0.22 0.0366421 0.0326177 203 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 5.42 vpr 62.43 MiB 0.02 6872 -1 -1 13 0.24 -1 -1 32732 -1 -1 28 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1315 6522 1420 4675 427 62.4 MiB 0.10 0.00 7.42898 -137.517 -7.42898 7.42898 0.77 0.000974678 0.000901364 0.0362424 0.0335293 30 3319 37 6.55708e+06 337540 526063. 1820.29 1.97 0.182168 0.159894 21886 126133 -1 2670 17 1103 3196 186184 40486 6.63224 6.63224 -133.041 -6.63224 0 0 666494. 2306.21 0.23 0.09 0.15 -1 -1 0.23 0.0369495 0.0329116 186 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.09 vpr 62.86 MiB 0.05 6632 -1 -1 14 0.35 -1 -1 32944 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.4 MiB 0.53 1483 8199 1652 5918 629 62.9 MiB 0.12 0.00 8.85275 -170.114 -8.85275 8.85275 0.91 0.000927173 0.000837876 0.0410468 0.0376803 30 3641 28 6.55708e+06 385760 526063. 1820.29 6.82 0.322838 0.284332 21886 126133 -1 3094 17 1331 3962 218965 48174 7.66062 7.66062 -163.434 -7.66062 0 0 666494. 2306.21 0.27 0.11 0.13 -1 -1 0.27 0.0455793 0.0409757 220 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.04 vpr 62.36 MiB 0.02 6812 -1 -1 11 0.29 -1 -1 32984 -1 -1 29 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1183 4512 917 3199 396 62.4 MiB 0.07 0.00 6.95549 -133.856 -6.95549 6.95549 0.76 0.000905123 0.000831722 0.0248082 0.0229448 42 2942 26 6.55708e+06 349595 701300. 2426.64 3.46 0.315286 0.271588 23902 167433 -1 2402 14 859 2936 184395 39518 6.23184 6.23184 -127.426 -6.23184 0 0 896083. 3100.63 0.29 0.08 0.17 -1 -1 0.29 0.0310112 0.0277042 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.25 vpr 62.07 MiB 0.03 6524 -1 -1 13 0.20 -1 -1 32732 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63560 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.6 MiB 0.33 1098 6999 1531 4700 768 62.1 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.78 0.000806019 0.000743526 0.0323562 0.0298739 26 3138 31 6.55708e+06 277265 477104. 1650.88 1.89 0.143549 0.126063 21022 109990 -1 2578 16 1132 2794 190671 44077 6.5197 6.5197 -156.514 -6.5197 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0285236 0.0253494 142 130 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 8.18 vpr 62.52 MiB 0.02 6944 -1 -1 14 0.30 -1 -1 32792 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1308 7027 1497 5027 503 62.5 MiB 0.10 0.00 8.02087 -160.438 -8.02087 8.02087 0.90 0.000924184 0.000838625 0.0335287 0.0307793 34 3265 34 6.55708e+06 325485 585099. 2024.56 4.33 0.340396 0.29854 22462 138074 -1 2784 15 1150 3398 225432 48156 6.9613 6.9613 -151.265 -6.9613 0 0 742403. 2568.87 0.25 0.12 0.14 -1 -1 0.25 0.0422195 0.0381839 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 6.33 vpr 62.92 MiB 0.05 6688 -1 -1 15 0.43 -1 -1 33304 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.4 MiB 0.67 1579 7323 1484 5148 691 62.9 MiB 0.12 0.00 9.31018 -193.267 -9.31018 9.31018 0.89 0.0012128 0.00112232 0.0400911 0.0369707 28 4400 24 6.55708e+06 385760 500653. 1732.36 2.03 0.193351 0.171837 21310 115450 -1 3715 15 1659 4554 306851 68348 8.13481 8.13481 -184.388 -8.13481 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0384701 0.0343416 228 227 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 8.84 vpr 62.07 MiB 0.04 6692 -1 -1 11 0.16 -1 -1 32460 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63564 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.63 1088 7079 1594 5001 484 62.1 MiB 0.08 0.00 6.82798 -137.917 -6.82798 6.82798 0.96 0.000645475 0.000597885 0.0266044 0.0243811 28 2975 37 6.55708e+06 265210 500653. 1732.36 4.84 0.285754 0.250091 21310 115450 -1 2414 17 941 2624 210971 55007 5.83204 5.83204 -135.397 -5.83204 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0212578 0.0190268 126 123 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 12.83 vpr 62.26 MiB 0.05 6500 -1 -1 12 0.18 -1 -1 32556 -1 -1 26 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.37 1155 8207 1978 5141 1088 62.3 MiB 0.11 0.00 7.38032 -154.384 -7.38032 7.38032 0.93 0.000692607 0.00063101 0.0328693 0.0301323 38 2757 24 6.55708e+06 313430 638502. 2209.35 9.16 0.428991 0.376323 23326 155178 -1 2315 14 980 3005 184436 38708 6.47024 6.47024 -143.876 -6.47024 0 0 851065. 2944.86 0.27 0.08 0.16 -1 -1 0.27 0.0295906 0.0264441 157 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 8.25 vpr 62.76 MiB 0.02 6712 -1 -1 12 0.30 -1 -1 32980 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1424 7439 1505 5396 538 62.8 MiB 0.12 0.00 7.41461 -164.576 -7.41461 7.41461 0.76 0.00107904 0.000993671 0.0421436 0.0388796 32 4285 45 6.55708e+06 373705 554710. 1919.41 4.49 0.441941 0.390609 22174 131602 -1 3515 27 1836 5707 554467 170664 6.7249 6.7249 -161.117 -6.7249 0 0 701300. 2426.64 0.28 0.20 0.14 -1 -1 0.28 0.0507413 0.0451397 209 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 5.10 vpr 62.80 MiB 0.04 6816 -1 -1 12 0.24 -1 -1 32820 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1429 8579 2186 5781 612 62.8 MiB 0.13 0.00 7.42022 -157.463 -7.42022 7.42022 0.77 0.000985851 0.000910418 0.0445506 0.0411381 30 3687 20 6.55708e+06 337540 526063. 1820.29 1.35 0.164607 0.145453 21886 126133 -1 3130 17 1266 4083 248462 52056 6.62964 6.62964 -154.235 -6.62964 0 0 666494. 2306.21 0.30 0.11 0.13 -1 -1 0.30 0.0358315 0.0322404 186 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 7.55 vpr 62.94 MiB 0.04 6816 -1 -1 14 0.48 -1 -1 33480 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1656 14691 3485 9017 2189 62.9 MiB 0.22 0.00 8.55829 -177.042 -8.55829 8.55829 0.88 0.00122038 0.00112057 0.0777556 0.0716288 36 4358 41 6.55708e+06 421925 612192. 2118.31 3.35 0.323348 0.288139 22750 144809 -1 3617 17 1576 4963 351620 73254 7.36876 7.36876 -164.712 -7.36876 0 0 782063. 2706.10 0.33 0.14 0.17 -1 -1 0.33 0.0479535 0.0433134 241 238 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.15 vpr 62.38 MiB 0.02 6704 -1 -1 11 0.29 -1 -1 32408 -1 -1 27 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1210 13157 4017 6643 2497 62.4 MiB 0.17 0.00 6.86503 -131.636 -6.86503 6.86503 0.77 0.000959041 0.000886163 0.0669416 0.0619086 30 3319 18 6.55708e+06 325485 526063. 1820.29 1.44 0.181353 0.161352 21886 126133 -1 2547 15 1168 3553 207961 45023 5.91504 5.91504 -124.469 -5.91504 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0321743 0.0286767 176 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.29 vpr 61.89 MiB 0.02 6592 -1 -1 11 0.22 -1 -1 32412 -1 -1 25 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63380 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.4 MiB 0.21 858 9234 2019 6554 661 61.9 MiB 0.11 0.00 6.39815 -115.858 -6.39815 6.39815 0.78 0.000782984 0.00072268 0.0425835 0.0393276 28 2509 19 6.55708e+06 301375 500653. 1732.36 0.99 0.136267 0.120497 21310 115450 -1 2126 18 1101 3144 201718 44977 5.62058 5.62058 -115.653 -5.62058 0 0 612192. 2118.31 0.23 0.08 0.12 -1 -1 0.23 0.029627 0.0264921 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.18 vpr 62.98 MiB 0.04 6856 -1 -1 13 0.42 -1 -1 32812 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1915 8888 1943 6342 603 63.0 MiB 0.16 0.00 7.96961 -161.89 -7.96961 7.96961 0.83 0.00132 0.00121944 0.0539595 0.049819 34 6097 50 6.55708e+06 482200 585099. 2024.56 5.95 0.375124 0.328427 22462 138074 -1 4449 31 1935 6490 681307 211081 7.13798 7.13798 -157.586 -7.13798 0 0 742403. 2568.87 0.31 0.28 0.15 -1 -1 0.31 0.0899745 0.0806617 280 278 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.52 vpr 62.41 MiB 0.05 6836 -1 -1 14 0.29 -1 -1 33236 -1 -1 26 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1307 6821 1398 4713 710 62.4 MiB 0.10 0.00 8.63003 -171.716 -8.63003 8.63003 0.78 0.00096165 0.000888722 0.037724 0.0348971 36 3003 16 6.55708e+06 313430 612192. 2118.31 3.97 0.348147 0.301975 22750 144809 -1 2692 18 1032 2904 189824 40981 7.81036 7.81036 -158.302 -7.81036 0 0 782063. 2706.10 0.25 0.09 0.14 -1 -1 0.25 0.0372105 0.0329757 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.73 vpr 62.17 MiB 0.04 6724 -1 -1 12 0.16 -1 -1 32364 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.6 MiB 0.36 1197 8251 1803 5271 1177 62.2 MiB 0.10 0.00 7.37817 -162.484 -7.37817 7.37817 0.89 0.000600549 0.00054426 0.0282432 0.0257692 28 3422 49 6.55708e+06 325485 500653. 1732.36 2.08 0.153983 0.135047 21310 115450 -1 2745 15 1110 3017 210483 46590 6.61598 6.61598 -159.785 -6.61598 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0279958 0.0249194 144 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.43 vpr 62.31 MiB 0.02 6652 -1 -1 13 0.28 -1 -1 32764 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.42 1296 6623 1420 4442 761 62.3 MiB 0.11 0.00 7.83929 -154.667 -7.83929 7.83929 0.77 0.000966618 0.000892923 0.0368595 0.0340492 34 3642 35 6.55708e+06 301375 585099. 2024.56 2.67 0.251608 0.218914 22462 138074 -1 2859 15 1200 3588 250640 53491 6.7621 6.7621 -151.137 -6.7621 0 0 742403. 2568.87 0.24 0.09 0.14 -1 -1 0.24 0.0326063 0.0290393 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.94 vpr 62.93 MiB 0.03 6956 -1 -1 13 0.30 -1 -1 33588 -1 -1 35 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1675 5723 977 4473 273 62.9 MiB 0.10 0.00 7.72485 -162.113 -7.72485 7.72485 0.86 0.00113785 0.00105187 0.0334501 0.0309704 30 4309 34 6.55708e+06 421925 526063. 1820.29 2.99 0.21024 0.187846 21886 126133 -1 3255 18 1540 4577 253702 56245 6.6399 6.6399 -151.695 -6.6399 0 0 666494. 2306.21 0.25 0.11 0.13 -1 -1 0.25 0.0444989 0.039604 235 232 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.15 vpr 62.60 MiB 0.03 6728 -1 -1 11 0.28 -1 -1 32872 -1 -1 32 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1363 8827 2077 5986 764 62.6 MiB 0.13 0.00 7.0834 -142.912 -7.0834 7.0834 0.88 0.000972208 0.000894244 0.039628 0.0362741 30 3584 37 6.55708e+06 385760 526063. 1820.29 2.06 0.187895 0.16568 21886 126133 -1 2863 16 1228 4290 238877 51714 6.23184 6.23184 -136.971 -6.23184 0 0 666494. 2306.21 0.23 0.10 0.15 -1 -1 0.23 0.035477 0.0316908 199 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 7.78 vpr 62.76 MiB 0.03 6744 -1 -1 15 0.41 -1 -1 32924 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1473 9543 2499 5737 1307 62.8 MiB 0.14 0.00 9.02492 -182.614 -9.02492 9.02492 0.89 0.000853878 0.000792649 0.0487819 0.0448609 34 4466 33 6.55708e+06 349595 585099. 2024.56 3.57 0.263933 0.232944 22462 138074 -1 3445 25 1754 5626 443399 111434 8.04875 8.04875 -178.975 -8.04875 0 0 742403. 2568.87 0.25 0.16 0.16 -1 -1 0.25 0.0523516 0.0462864 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 8.60 vpr 62.86 MiB 0.03 6852 -1 -1 13 0.34 -1 -1 32948 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1528 11922 3138 7505 1279 62.9 MiB 0.19 0.00 8.01701 -168.403 -8.01701 8.01701 0.89 0.000983993 0.000895446 0.0638023 0.0586222 36 3807 22 6.55708e+06 385760 612192. 2118.31 4.63 0.339966 0.29791 22750 144809 -1 3180 19 1291 4009 259508 54997 6.81356 6.81356 -155.33 -6.81356 0 0 782063. 2706.10 0.25 0.11 0.15 -1 -1 0.25 0.0466232 0.0414628 217 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 8.63 vpr 62.26 MiB 0.03 6528 -1 -1 12 0.22 -1 -1 32232 -1 -1 29 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63752 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.7 MiB 0.48 1144 6321 1459 4287 575 62.3 MiB 0.08 0.00 6.98904 -150.776 -6.98904 6.98904 1.01 0.000570748 0.000522516 0.021778 0.0199844 30 2752 39 6.55708e+06 349595 526063. 1820.29 4.72 0.25605 0.223002 21886 126133 -1 2375 17 1096 2771 156350 35194 6.25938 6.25938 -141.718 -6.25938 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0292169 0.0259739 159 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 11.81 vpr 62.02 MiB 0.02 6612 -1 -1 11 0.18 -1 -1 32436 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63504 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.5 MiB 0.46 1041 8402 1813 6153 436 62.0 MiB 0.11 0.00 6.97021 -142.93 -6.97021 6.97021 0.84 0.000625446 0.000569664 0.0361854 0.0332107 30 3000 41 6.55708e+06 265210 526063. 1820.29 8.03 0.282467 0.246612 21886 126133 -1 2269 16 972 2756 151622 34523 5.86158 5.86158 -136.404 -5.86158 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0283212 0.0251714 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 8.91 vpr 63.04 MiB 0.03 6812 -1 -1 13 0.34 -1 -1 32888 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64552 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.3 MiB 0.48 1528 7975 1701 5466 808 63.0 MiB 0.12 0.00 8.19329 -167.366 -8.19329 8.19329 0.89 0.000828464 0.000753753 0.0413287 0.0380764 34 3607 20 6.55708e+06 373705 585099. 2024.56 4.63 0.353266 0.310421 22462 138074 -1 3151 16 1446 4259 294238 62704 7.1971 7.1971 -159.661 -7.1971 0 0 742403. 2568.87 0.34 0.11 0.16 -1 -1 0.34 0.037798 0.0342849 204 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.45 vpr 62.00 MiB 0.02 6584 -1 -1 10 0.21 -1 -1 32792 -1 -1 24 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63488 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1030 5107 1053 3581 473 62.0 MiB 0.08 0.00 6.08471 -123.999 -6.08471 6.08471 0.94 0.000818786 0.000756282 0.0258394 0.0238202 28 2661 26 6.55708e+06 289320 500653. 1732.36 3.66 0.225897 0.196566 21310 115450 -1 2271 20 1009 2820 175951 40006 5.33332 5.33332 -121.826 -5.33332 0 0 612192. 2118.31 0.30 0.08 0.14 -1 -1 0.30 0.0313285 0.0281402 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 8.56 vpr 62.22 MiB 0.02 6528 -1 -1 14 0.23 -1 -1 32620 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.7 MiB 0.55 1019 11203 3089 5915 2199 62.2 MiB 0.14 0.00 7.69221 -156.392 -7.69221 7.69221 0.90 0.000846312 0.0007799 0.0502536 0.0462374 36 2598 19 6.55708e+06 289320 612192. 2118.31 4.37 0.332312 0.291344 22750 144809 -1 2180 15 952 2802 165491 38125 6.5589 6.5589 -142.118 -6.5589 0 0 782063. 2706.10 0.34 0.08 0.16 -1 -1 0.34 0.0308101 0.0282484 149 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 8.34 vpr 62.64 MiB 0.05 6696 -1 -1 12 0.35 -1 -1 32956 -1 -1 29 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1351 11891 3061 6959 1871 62.6 MiB 0.18 0.00 7.58423 -159.03 -7.58423 7.58423 1.02 0.00106667 0.000978449 0.0609032 0.055974 36 3401 37 6.55708e+06 349595 612192. 2118.31 3.90 0.304471 0.269776 22750 144809 -1 2891 18 1211 3944 256166 54216 6.38924 6.38924 -147.255 -6.38924 0 0 782063. 2706.10 0.31 0.10 0.17 -1 -1 0.31 0.0379468 0.0340647 201 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 7.83 vpr 61.99 MiB 0.02 6728 -1 -1 12 0.16 -1 -1 32512 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63476 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1079 5567 1026 4331 210 62.0 MiB 0.09 0.00 6.95154 -149.121 -6.95154 6.95154 0.95 0.000657368 0.000599126 0.0267932 0.0244202 34 2770 26 6.55708e+06 277265 585099. 2024.56 4.26 0.283712 0.25107 22462 138074 -1 2446 14 962 2569 159547 36479 6.09998 6.09998 -139.998 -6.09998 0 0 742403. 2568.87 0.30 0.07 0.15 -1 -1 0.30 0.026277 0.0237441 141 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.90 vpr 62.37 MiB 0.04 6772 -1 -1 12 0.20 -1 -1 32780 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1263 7843 1830 5405 608 62.4 MiB 0.12 0.00 7.086 -151.926 -7.086 7.086 0.83 0.000828591 0.000760785 0.039152 0.0359407 28 3562 37 6.55708e+06 325485 500653. 1732.36 2.22 0.19226 0.170502 21310 115450 -1 3056 20 1429 4877 328095 69979 6.14578 6.14578 -149.233 -6.14578 0 0 612192. 2118.31 0.26 0.12 0.14 -1 -1 0.26 0.041754 0.0370251 188 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 8.31 vpr 62.77 MiB 0.03 6740 -1 -1 13 0.30 -1 -1 33108 -1 -1 29 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1349 6509 1390 4237 882 62.8 MiB 0.10 0.00 7.60996 -160.091 -7.60996 7.60996 0.89 0.000983523 0.000908158 0.0321543 0.0296473 36 3371 16 6.55708e+06 349595 612192. 2118.31 4.41 0.27246 0.238679 22750 144809 -1 2937 15 1108 3432 220497 46676 6.5197 6.5197 -152.716 -6.5197 0 0 782063. 2706.10 0.35 0.09 0.18 -1 -1 0.35 0.0318513 0.0287417 179 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 5.47 vpr 62.27 MiB 0.02 6672 -1 -1 11 0.18 -1 -1 32524 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1256 8251 2031 5471 749 62.3 MiB 0.09 0.00 6.67834 -143.715 -6.67834 6.67834 0.89 0.000389393 0.000356412 0.0307498 0.0281878 28 3401 29 6.55708e+06 325485 500653. 1732.36 1.88 0.14531 0.128766 21310 115450 -1 2974 16 1137 3586 247443 53887 5.91304 5.91304 -140.606 -5.91304 0 0 612192. 2118.31 0.28 0.10 0.14 -1 -1 0.28 0.0309096 0.0280189 148 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 7.68 vpr 62.33 MiB 0.04 6556 -1 -1 13 0.20 -1 -1 32508 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.7 MiB 0.26 1339 8047 1963 5261 823 62.3 MiB 0.11 0.00 7.72555 -161.807 -7.72555 7.72555 0.80 0.000925487 0.000854753 0.0404831 0.037417 36 3037 32 6.55708e+06 325485 612192. 2118.31 4.09 0.349399 0.303258 22750 144809 -1 2635 13 949 2594 167427 36452 6.86604 6.86604 -153.177 -6.86604 0 0 782063. 2706.10 0.32 0.09 0.16 -1 -1 0.32 0.0326461 0.0296592 167 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.31 vpr 62.49 MiB 0.03 6784 -1 -1 13 0.25 -1 -1 32972 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1276 15187 4382 8407 2398 62.5 MiB 0.21 0.00 7.99583 -160.474 -7.99583 7.99583 0.77 0.000989658 0.000914479 0.0792592 0.0732577 34 3881 50 6.55708e+06 325485 585099. 2024.56 2.79 0.277485 0.244314 22462 138074 -1 2984 16 1350 3898 248992 55545 7.09316 7.09316 -155.072 -7.09316 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0387192 0.0350691 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.85 vpr 62.15 MiB 0.02 6800 -1 -1 11 0.19 -1 -1 32836 -1 -1 28 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63644 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1142 12761 3414 7382 1965 62.2 MiB 0.15 0.00 6.37111 -124.414 -6.37111 6.37111 0.91 0.000663507 0.000599864 0.0527692 0.0483146 34 2981 18 6.55708e+06 337540 585099. 2024.56 2.00 0.181707 0.160821 22462 138074 -1 2522 15 988 3157 223542 47377 5.73112 5.73112 -122.293 -5.73112 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0297753 0.0264383 162 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 8.17 vpr 63.12 MiB 0.03 6708 -1 -1 14 0.32 -1 -1 33464 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.5 MiB 0.42 1569 9951 2260 6812 879 63.1 MiB 0.15 0.00 8.3634 -177.338 -8.3634 8.3634 0.88 0.00113963 0.00105241 0.0510296 0.046954 36 3929 21 6.55708e+06 385760 612192. 2118.31 4.16 0.377127 0.331139 22750 144809 -1 3425 20 1633 4884 326721 69540 7.41256 7.41256 -170.049 -7.41256 0 0 782063. 2706.10 0.26 0.13 0.15 -1 -1 0.26 0.0475849 0.0422358 225 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 5.89 vpr 61.98 MiB 0.03 6508 -1 -1 12 0.17 -1 -1 32464 -1 -1 28 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63472 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.5 MiB 0.44 1144 6619 1429 4488 702 62.0 MiB 0.08 0.00 6.81857 -143.271 -6.81857 6.81857 0.85 0.000813811 0.00075013 0.0252371 0.0231501 36 2663 18 6.55708e+06 337540 612192. 2118.31 2.20 0.185157 0.163019 22750 144809 -1 2374 15 963 2605 169639 37383 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.25 0.07 0.15 -1 -1 0.25 0.0266905 0.0237706 145 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 5.92 vpr 62.56 MiB 0.02 6876 -1 -1 13 0.30 -1 -1 32892 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1396 7843 1736 5120 987 62.6 MiB 0.12 0.00 7.69421 -153.973 -7.69421 7.69421 0.89 0.00101161 0.000929918 0.0442906 0.0408543 28 3779 45 6.55708e+06 325485 500653. 1732.36 2.10 0.219913 0.194496 21310 115450 -1 3074 28 1632 5532 547465 187131 6.8823 6.8823 -147.74 -6.8823 0 0 612192. 2118.31 0.23 0.19 0.12 -1 -1 0.23 0.0535721 0.0470807 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.42 vpr 62.15 MiB 0.03 6496 -1 -1 13 0.18 -1 -1 32704 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1076 10583 2933 6087 1563 62.2 MiB 0.13 0.00 7.44215 -162.135 -7.44215 7.44215 0.80 0.000820564 0.000756544 0.0469766 0.0433387 28 3433 39 6.55708e+06 301375 500653. 1732.36 1.91 0.17169 0.15116 21310 115450 -1 2656 18 1168 3055 202051 45907 6.69898 6.69898 -159.177 -6.69898 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0315565 0.0280251 146 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 9.13 vpr 62.44 MiB 0.02 6736 -1 -1 12 0.22 -1 -1 32752 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1148 5517 1034 4096 387 62.4 MiB 0.08 0.00 7.36755 -151.17 -7.36755 7.36755 0.80 0.000709796 0.000645633 0.0262363 0.0241397 28 3274 27 6.55708e+06 313430 500653. 1732.36 5.65 0.30941 0.270635 21310 115450 -1 2868 25 1127 3700 382858 136149 6.5237 6.5237 -145.754 -6.5237 0 0 612192. 2118.31 0.25 0.16 0.12 -1 -1 0.25 0.0495503 0.0442658 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.35 vpr 62.79 MiB 0.03 7028 -1 -1 15 0.50 -1 -1 32860 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1759 9998 2422 6696 880 62.8 MiB 0.16 0.00 8.78932 -180.299 -8.78932 8.78932 0.88 0.00130262 0.00120319 0.056197 0.051665 36 4275 44 6.55708e+06 409870 612192. 2118.31 5.17 0.36516 0.320559 22750 144809 -1 3711 16 1651 5398 370763 77029 7.66062 7.66062 -166.924 -7.66062 0 0 782063. 2706.10 0.26 0.14 0.15 -1 -1 0.26 0.0474766 0.0430008 250 249 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.46 vpr 61.54 MiB 0.04 6404 -1 -1 10 0.10 -1 -1 32032 -1 -1 16 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63016 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.1 MiB 0.28 757 9042 2084 6396 562 61.5 MiB 0.10 0.00 5.22063 -120.025 -5.22063 5.22063 0.77 0.000614004 0.000567289 0.035556 0.0327423 28 1919 20 6.55708e+06 192880 500653. 1732.36 1.29 0.108286 0.0953323 21310 115450 -1 1716 15 649 1532 103267 23732 4.84286 4.84286 -121.882 -4.84286 0 0 612192. 2118.31 0.22 0.05 0.13 -1 -1 0.22 0.0207507 0.0183509 92 82 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 5.01 vpr 62.12 MiB 0.03 6616 -1 -1 13 0.18 -1 -1 32484 -1 -1 29 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1069 6415 1411 4237 767 62.1 MiB 0.08 0.00 7.77311 -151.473 -7.77311 7.77311 0.88 0.00083644 0.000773844 0.0255178 0.0234395 28 2856 39 6.55708e+06 349595 500653. 1732.36 1.56 0.148159 0.130646 21310 115450 -1 2440 15 917 2532 177058 38364 6.8385 6.8385 -148.81 -6.8385 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0283232 0.0256519 150 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 7.45 vpr 62.43 MiB 0.02 6620 -1 -1 12 0.21 -1 -1 32440 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1241 11223 2642 6703 1878 62.4 MiB 0.15 0.00 6.72746 -150.964 -6.72746 6.72746 0.78 0.000910522 0.000841064 0.0570375 0.0526726 36 3010 24 6.55708e+06 277265 612192. 2118.31 3.98 0.305889 0.267716 22750 144809 -1 2620 24 1288 3907 361262 119201 6.10198 6.10198 -146.434 -6.10198 0 0 782063. 2706.10 0.27 0.14 0.15 -1 -1 0.27 0.0427743 0.0376529 167 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.03 vpr 61.75 MiB 0.02 6796 -1 -1 9 0.13 -1 -1 32352 -1 -1 25 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63228 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.2 MiB 0.19 840 9694 2571 5897 1226 61.7 MiB 0.10 0.00 5.60806 -104.508 -5.60806 5.60806 0.89 0.000500866 0.000455314 0.033703 0.0309826 26 2430 34 6.55708e+06 301375 477104. 1650.88 2.77 0.132445 0.117102 21022 109990 -1 1977 17 864 2424 166186 36231 5.33332 5.33332 -103.691 -5.33332 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0253534 0.0224156 112 103 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 8.33 vpr 62.78 MiB 0.02 6784 -1 -1 12 0.28 -1 -1 32920 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.1 MiB 0.54 1640 5273 863 4118 292 62.8 MiB 0.09 0.00 7.59969 -165.851 -7.59969 7.59969 0.76 0.00105983 0.000969242 0.0286646 0.0264964 44 3703 18 6.55708e+06 409870 742403. 2568.87 4.41 0.325849 0.283407 24478 177802 -1 3100 15 1216 3642 270299 53070 6.6811 6.6811 -154.904 -6.6811 0 0 937218. 3242.97 0.33 0.11 0.18 -1 -1 0.33 0.0379343 0.0339392 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 8.51 vpr 62.62 MiB 0.02 6724 -1 -1 14 0.34 -1 -1 33088 -1 -1 29 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.0 MiB 0.46 1228 13340 3394 7367 2579 62.6 MiB 0.19 0.00 8.33716 -163.889 -8.33716 8.33716 0.85 0.00107461 0.000990571 0.0708177 0.0651054 44 2996 17 6.55708e+06 349595 742403. 2568.87 4.35 0.358159 0.316009 24478 177802 -1 2466 19 1079 3374 204376 44918 7.26282 7.26282 -151.046 -7.26282 0 0 937218. 3242.97 0.31 0.10 0.19 -1 -1 0.31 0.043087 0.0381629 204 202 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.54 vpr 62.83 MiB 0.03 7112 -1 -1 1 0.03 -1 -1 30616 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.13 929 17268 4565 10218 2485 62.8 MiB 0.29 0.01 4.24756 -141.398 -4.24756 4.24756 0.88 0.000875339 0.00080651 0.065722 0.0602776 32 2532 23 6.64007e+06 452088 554710. 1919.41 1.11 0.156642 0.139077 22834 132086 -1 2157 19 1668 2761 238210 50659 3.77883 3.77883 -140.401 -3.77883 0 0 701300. 2426.64 0.23 0.10 0.13 -1 -1 0.23 0.0336608 0.0296105 153 80 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.31 vpr 62.94 MiB 0.04 7252 -1 -1 1 0.03 -1 -1 30628 -1 -1 23 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.3 MiB 0.22 873 12919 4129 6395 2395 62.9 MiB 0.22 0.00 4.44716 -130.844 -4.44716 4.44716 0.77 0.000830347 0.000767404 0.0610149 0.056419 32 2354 22 6.64007e+06 288834 554710. 1919.41 1.05 0.159792 0.14171 22834 132086 -1 1984 20 1649 2771 237284 50831 3.69243 3.69243 -132.015 -3.69243 0 0 701300. 2426.64 0.28 0.10 0.14 -1 -1 0.28 0.0332465 0.0296087 142 78 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.06 vpr 62.88 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30448 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.3 MiB 0.09 1003 9675 2005 7104 566 62.9 MiB 0.15 0.00 3.83457 -129.818 -3.83457 3.83457 0.77 0.000806536 0.000745485 0.037027 0.0342226 30 2330 20 6.64007e+06 439530 526063. 1820.29 0.99 0.136523 0.120221 22546 126617 -1 1991 19 1202 1907 131232 28068 3.43423 3.43423 -130.759 -3.43423 0 0 666494. 2306.21 0.23 0.07 0.14 -1 -1 0.23 0.0309735 0.0272108 142 50 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.13 vpr 62.72 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30668 -1 -1 24 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.0 MiB 0.09 990 11245 3461 6773 1011 62.7 MiB 0.20 0.01 4.46418 -132.921 -4.46418 4.46418 0.77 0.000733652 0.000676894 0.0471231 0.0436369 26 2556 27 6.64007e+06 301392 477104. 1650.88 1.07 0.140684 0.124425 21682 110474 -1 2137 17 1498 2499 209365 43448 3.83403 3.83403 -137.638 -3.83403 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.026573 0.023466 138 25 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.20 vpr 62.92 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30376 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.3 MiB 0.10 849 15017 4515 8552 1950 62.9 MiB 0.26 0.00 4.14936 -139.21 -4.14936 4.14936 0.78 0.000346293 0.000316302 0.0604252 0.0556588 32 2433 23 6.64007e+06 276276 554710. 1919.41 1.01 0.159425 0.141388 22834 132086 -1 1906 19 1608 2787 201919 47121 3.64143 3.64143 -136.683 -3.64143 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0309792 0.0273947 153 31 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.29 vpr 62.95 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30428 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1024 19142 5848 10342 2952 62.9 MiB 0.29 0.01 3.5603 -122.153 -3.5603 3.5603 0.83 0.000838228 0.000768029 0.069891 0.0645601 32 2387 21 6.64007e+06 489762 554710. 1919.41 0.98 0.168812 0.150173 22834 132086 -1 2004 20 1320 2104 175345 37991 2.92497 2.92497 -118.502 -2.92497 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0337483 0.0297694 156 61 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.23 vpr 62.17 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30612 -1 -1 20 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63660 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.6 MiB 0.11 722 12923 4015 7171 1737 62.2 MiB 0.15 0.00 3.7987 -103.375 -3.7987 3.7987 0.88 0.000611307 0.00056485 0.041547 0.0381727 32 1628 19 6.64007e+06 251160 554710. 1919.41 0.97 0.110904 0.0980221 22834 132086 -1 1516 18 849 1482 144651 29312 2.92297 2.92297 -98.2405 -2.92297 0 0 701300. 2426.64 0.27 0.07 0.13 -1 -1 0.27 0.021852 0.0193302 96 26 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.27 vpr 63.00 MiB 0.03 7048 -1 -1 1 0.04 -1 -1 30196 -1 -1 34 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.2 MiB 0.09 948 16081 4441 8879 2761 63.0 MiB 0.22 0.00 3.49449 -109.504 -3.49449 3.49449 0.88 0.000590617 0.000534504 0.0496114 0.0457414 28 2256 22 6.64007e+06 426972 500653. 1732.36 1.05 0.133552 0.118451 21970 115934 -1 1928 19 1074 1783 138901 29670 2.77377 2.77377 -106.567 -2.77377 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0278831 0.0245437 140 -1 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.26 vpr 62.56 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30372 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64064 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.6 MiB 0.18 706 7820 1805 5417 598 62.6 MiB 0.12 0.00 3.31336 -101.862 -3.31336 3.31336 0.91 0.000656367 0.000604004 0.0309161 0.0285346 28 1814 19 6.64007e+06 213486 500653. 1732.36 0.96 0.113776 0.099955 21970 115934 -1 1617 17 777 1315 95791 21638 2.85097 2.85097 -102.372 -2.85097 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.025389 0.0223196 106 81 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.10 vpr 62.74 MiB 0.02 6736 -1 -1 1 0.03 -1 -1 30320 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.1 MiB 0.17 890 10756 2975 5928 1853 62.7 MiB 0.16 0.00 3.5061 -124.869 -3.5061 3.5061 0.81 0.000703117 0.000650345 0.0444708 0.0410846 32 2081 19 6.64007e+06 213486 554710. 1919.41 0.97 0.127532 0.112747 22834 132086 -1 1825 21 1426 2125 191728 40456 2.87877 2.87877 -123.498 -2.87877 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0290088 0.0254427 121 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.32 vpr 62.62 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30188 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 24.0 MiB 0.16 822 14012 5060 7295 1657 62.6 MiB 0.18 0.00 3.4841 -115.834 -3.4841 3.4841 0.95 0.000483761 0.00044136 0.0517324 0.0475825 28 1768 18 6.64007e+06 226044 500653. 1732.36 0.94 0.126168 0.11186 21970 115934 -1 1515 18 872 1294 102473 21718 2.87677 2.87677 -111.457 -2.87677 0 0 612192. 2118.31 0.21 0.06 0.13 -1 -1 0.21 0.025867 0.0227502 110 58 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.03 vpr 62.61 MiB 0.03 6904 -1 -1 1 0.03 -1 -1 30460 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.11 840 9753 2297 6936 520 62.6 MiB 0.15 0.00 3.52209 -114.564 -3.52209 3.52209 0.78 0.000728747 0.000673887 0.035566 0.0328498 30 1904 21 6.64007e+06 364182 526063. 1820.29 0.99 0.113436 0.0999434 22546 126617 -1 1687 20 1006 1683 120051 25456 2.63337 2.63337 -107.711 -2.63337 0 0 666494. 2306.21 0.27 0.07 0.13 -1 -1 0.27 0.0269973 0.0238858 114 57 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.73 vpr 62.86 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 30280 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.2 MiB 0.23 893 19448 6133 10048 3267 62.9 MiB 0.29 0.01 3.56129 -122.026 -3.56129 3.56129 0.89 0.000742271 0.000682581 0.0674841 0.0621803 32 2243 20 6.64007e+06 426972 554710. 1919.41 1.10 0.160286 0.142921 22834 132086 -1 1900 17 1495 2473 211474 43457 2.76377 2.76377 -113.659 -2.76377 0 0 701300. 2426.64 0.30 0.09 0.14 -1 -1 0.30 0.0275094 0.0244913 145 55 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.55 vpr 63.00 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30576 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1031 17036 4693 9820 2523 63.0 MiB 0.26 0.01 4.31123 -147.759 -4.31123 4.31123 0.88 0.00075637 0.000700064 0.0593581 0.0546894 26 3087 33 6.64007e+06 452088 477104. 1650.88 2.01 0.180813 0.160975 21682 110474 -1 2347 21 1843 2875 258615 51345 3.89603 3.89603 -151.023 -3.89603 0 0 585099. 2024.56 0.25 0.10 0.13 -1 -1 0.25 0.0346102 0.0308827 158 60 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.96 vpr 62.15 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30732 -1 -1 19 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63644 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.12 800 8852 2481 5509 862 62.2 MiB 0.13 0.00 3.4261 -103.793 -3.4261 3.4261 0.78 0.000634671 0.000587562 0.0345229 0.0319641 32 1678 19 6.64007e+06 238602 554710. 1919.41 0.90 0.107486 0.0947557 22834 132086 -1 1522 21 986 1747 140294 29894 2.76377 2.76377 -98.7241 -2.76377 0 0 701300. 2426.64 0.25 0.07 0.13 -1 -1 0.25 0.026582 0.0232453 108 21 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.24 vpr 63.06 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30408 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.5 MiB 0.20 1068 13316 3890 7652 1774 63.1 MiB 0.20 0.01 3.5141 -124.724 -3.5141 3.5141 0.79 0.000645695 0.0005886 0.0488116 0.0449058 32 2321 21 6.64007e+06 276276 554710. 1919.41 1.00 0.148344 0.131021 22834 132086 -1 2090 23 1618 2817 249135 49506 3.12137 3.12137 -123.8 -3.12137 0 0 701300. 2426.64 0.23 0.10 0.14 -1 -1 0.23 0.0371953 0.032639 147 60 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 7.75 vpr 62.86 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30316 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.3 MiB 0.18 964 16340 5208 8057 3075 62.9 MiB 0.19 0.00 3.6263 -123.14 -3.6263 3.6263 0.83 0.00080523 0.000743616 0.0528289 0.048565 36 2133 27 6.64007e+06 452088 612192. 2118.31 4.26 0.2743 0.239936 23410 145293 -1 1762 19 1218 1800 180851 37232 3.06417 3.06417 -118.76 -3.06417 0 0 782063. 2706.10 0.38 0.08 0.17 -1 -1 0.38 0.0267674 0.0238342 144 54 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.06 vpr 62.68 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 23.9 MiB 0.15 919 13487 3473 7992 2022 62.7 MiB 0.18 0.00 2.83964 -105.375 -2.83964 2.83964 0.82 0.000589699 0.000538031 0.0475881 0.0439577 26 2144 20 6.64007e+06 389298 477104. 1650.88 0.89 0.133205 0.117818 21682 110474 -1 1880 21 1071 1734 150455 31003 2.24871 2.24871 -99.0537 -2.24871 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0322858 0.0282154 119 62 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.79 vpr 61.82 MiB 0.06 6764 -1 -1 1 0.03 -1 -1 30140 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63304 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.04 670 10835 3352 6011 1472 61.8 MiB 0.12 0.00 2.72344 -89.4054 -2.72344 2.72344 0.78 0.000546445 0.000504749 0.0381662 0.0352735 32 1469 19 6.64007e+06 188370 554710. 1919.41 0.87 0.101002 0.08914 22834 132086 -1 1299 16 546 819 75160 15912 1.87911 1.87911 -81.5332 -1.87911 0 0 701300. 2426.64 0.24 0.05 0.14 -1 -1 0.24 0.0182434 0.0159761 85 29 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.39 vpr 62.66 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30396 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.0 MiB 0.13 727 12120 4439 5930 1751 62.7 MiB 0.16 0.00 4.19115 -121.049 -4.19115 4.19115 0.89 0.000517656 0.000475655 0.0452117 0.0415387 32 2075 22 6.64007e+06 213486 554710. 1919.41 1.01 0.125152 0.110431 22834 132086 -1 1627 17 770 1133 87469 20519 3.47243 3.47243 -118.874 -3.47243 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0253708 0.0223536 113 55 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.29 vpr 63.07 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30300 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.2 MiB 0.10 885 17732 4998 9545 3189 63.1 MiB 0.26 0.01 4.22193 -138.344 -4.22193 4.22193 0.78 0.000878676 0.000807687 0.0647561 0.0599219 32 2393 21 6.64007e+06 452088 554710. 1919.41 1.02 0.159392 0.141873 22834 132086 -1 2105 19 1676 2467 252270 55142 3.91803 3.91803 -139.967 -3.91803 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0314784 0.027687 147 31 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.46 vpr 63.20 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30856 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.4 MiB 0.23 960 11288 2842 7087 1359 63.2 MiB 0.21 0.01 3.74425 -123.858 -3.74425 3.74425 0.80 0.000999467 0.000918177 0.0478649 0.0442642 30 2618 24 6.64007e+06 477204 526063. 1820.29 1.04 0.159175 0.140099 22546 126617 -1 2055 20 1290 2001 139554 30289 3.47943 3.47943 -125.844 -3.47943 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0360891 0.0316754 150 108 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.79 vpr 61.74 MiB 0.02 6700 -1 -1 1 0.03 -1 -1 30556 -1 -1 17 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63224 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.11 395 10503 3120 6151 1232 61.7 MiB 0.09 0.00 2.74064 -71.156 -2.74064 2.74064 0.78 0.000475729 0.000438575 0.0320875 0.0294214 28 1200 22 6.64007e+06 213486 500653. 1732.36 0.94 0.0866783 0.076353 21970 115934 -1 956 16 598 892 63471 15661 1.90391 1.90391 -68.8591 -1.90391 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0162797 0.0142748 77 21 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.21 vpr 62.73 MiB 0.03 6824 -1 -1 1 0.03 -1 -1 30128 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.1 MiB 0.09 990 12749 4130 6257 2362 62.7 MiB 0.22 0.01 4.45633 -140.507 -4.45633 4.45633 0.79 0.000760324 0.000703629 0.051892 0.0479757 32 2489 18 6.64007e+06 276276 554710. 1919.41 1.08 0.145906 0.129672 22834 132086 -1 2119 19 1523 2691 214459 46705 3.83383 3.83383 -140.346 -3.83383 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0293148 0.0258822 138 -1 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.99 vpr 61.97 MiB 0.04 6676 -1 -1 1 0.03 -1 -1 30464 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.4 MiB 0.05 603 10672 2424 7898 350 62.0 MiB 0.12 0.00 2.3583 -83.9313 -2.3583 2.3583 0.87 0.000507437 0.00046789 0.0347736 0.0320748 28 1549 27 6.64007e+06 163254 500653. 1732.36 1.04 0.0991974 0.0877978 21970 115934 -1 1292 19 613 773 71085 15916 2.14151 2.14151 -87.789 -2.14151 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0193035 0.0169645 81 -1 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.40 vpr 63.03 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30460 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.08 956 14691 4376 8904 1411 63.0 MiB 0.23 0.00 4.18856 -140.856 -4.18856 4.18856 0.87 0.000779914 0.000724862 0.0515363 0.047515 32 2572 23 6.64007e+06 439530 554710. 1919.41 1.12 0.146377 0.130415 22834 132086 -1 2168 21 1824 2874 245365 54072 3.89783 3.89783 -143.075 -3.89783 0 0 701300. 2426.64 0.27 0.10 0.14 -1 -1 0.27 0.0330332 0.0294097 153 21 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 6.02 vpr 62.80 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30124 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1019 8796 1857 6524 415 62.8 MiB 0.15 0.01 3.60659 -123.354 -3.60659 3.60659 0.79 0.000763113 0.000705586 0.0311056 0.0287896 28 2574 22 6.64007e+06 464646 500653. 1732.36 2.99 0.211094 0.183501 21970 115934 -1 2272 21 1551 2493 219552 47294 2.98117 2.98117 -122.935 -2.98117 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0318403 0.0280292 152 -1 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.37 vpr 62.96 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1069 18901 5689 10576 2636 63.0 MiB 0.30 0.01 4.16036 -141.868 -4.16036 4.16036 0.76 0.000847317 0.000781509 0.0711197 0.0656661 32 2629 23 6.64007e+06 464646 554710. 1919.41 1.09 0.17252 0.153386 22834 132086 -1 2292 20 1705 2687 216032 47106 3.74943 3.74943 -141.35 -3.74943 0 0 701300. 2426.64 0.28 0.09 0.14 -1 -1 0.28 0.0322885 0.0286196 155 54 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.96 vpr 62.33 MiB 0.02 6900 -1 -1 1 0.04 -1 -1 30144 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.7 MiB 0.07 857 10572 2555 6423 1594 62.3 MiB 0.15 0.00 3.07196 -107.422 -3.07196 3.07196 0.80 0.000684632 0.000627631 0.0435603 0.0402879 32 1870 21 6.64007e+06 200928 554710. 1919.41 0.92 0.123004 0.108627 22834 132086 -1 1733 21 1017 1694 154096 32415 2.79977 2.79977 -111.822 -2.79977 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0280612 0.0245504 107 31 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.10 vpr 62.33 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30152 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.09 824 11806 3275 6761 1770 62.3 MiB 0.16 0.00 3.4951 -114.009 -3.4951 3.4951 0.82 0.000649879 0.000599262 0.0474186 0.0438964 32 1828 21 6.64007e+06 238602 554710. 1919.41 0.96 0.116454 0.103321 22834 132086 -1 1649 20 1205 1754 157103 33256 3.01397 3.01397 -111.961 -3.01397 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0277803 0.0244 115 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.15 vpr 62.23 MiB 0.02 6964 -1 -1 1 0.04 -1 -1 30272 -1 -1 20 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63724 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 0.09 658 7132 1686 4570 876 62.2 MiB 0.11 0.00 3.4309 -100.483 -3.4309 3.4309 0.88 0.000642733 0.000595772 0.0255478 0.023581 32 1870 17 6.64007e+06 251160 554710. 1919.41 0.97 0.0908815 0.0801057 22834 132086 -1 1602 18 1067 1774 134329 30519 2.96317 2.96317 -103.498 -2.96317 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0236154 0.0207751 107 27 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.46 vpr 62.64 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30332 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.9 MiB 0.09 802 15390 5648 7380 2362 62.6 MiB 0.21 0.00 3.5251 -121.985 -3.5251 3.5251 0.90 0.000663069 0.000612879 0.0540283 0.0497045 32 2039 21 6.64007e+06 226044 554710. 1919.41 1.06 0.125136 0.110962 22834 132086 -1 1821 20 1476 2373 215469 45688 2.97017 2.97017 -120.449 -2.97017 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.023984 0.0211189 125 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.14 vpr 62.33 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.8 MiB 0.07 772 9679 2262 6618 799 62.3 MiB 0.17 0.00 3.47387 -114.287 -3.47387 3.47387 0.92 0.0006908 0.000638382 0.0343041 0.031676 28 2079 20 6.64007e+06 389298 500653. 1732.36 0.93 0.113458 0.0999061 21970 115934 -1 1820 19 1215 1967 153330 33487 2.79257 2.79257 -112.475 -2.79257 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0264633 0.0232418 119 26 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.28 vpr 62.89 MiB 0.04 6972 -1 -1 1 0.02 -1 -1 30212 -1 -1 31 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 24.2 MiB 0.14 877 15824 4460 9332 2032 62.9 MiB 0.21 0.00 2.80466 -91.9047 -2.80466 2.80466 0.86 0.000690011 0.000636462 0.0551085 0.0508424 26 2003 20 6.64007e+06 389298 477104. 1650.88 1.02 0.131448 0.117058 21682 110474 -1 1768 18 1088 1708 141445 29820 2.18751 2.18751 -91.7582 -2.18751 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0236824 0.0209847 110 55 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.61 vpr 62.87 MiB 0.03 7152 -1 -1 1 0.04 -1 -1 30572 -1 -1 41 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.6 MiB 0.20 1234 17889 5288 10109 2492 62.9 MiB 0.33 0.01 4.16036 -142.499 -4.16036 4.16036 0.86 0.000873412 0.000809423 0.0655969 0.0605951 28 3463 32 6.64007e+06 514878 500653. 1732.36 2.01 0.193638 0.172893 21970 115934 -1 2701 20 1821 3022 280084 54977 4.02103 4.02103 -150.243 -4.02103 0 0 612192. 2118.31 0.22 0.11 0.14 -1 -1 0.22 0.0366983 0.0323952 181 26 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.27 vpr 62.95 MiB 0.03 7160 -1 -1 1 0.03 -1 -1 30380 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.3 MiB 0.18 996 11616 2636 8022 958 63.0 MiB 0.20 0.01 3.5823 -125.213 -3.5823 3.5823 0.78 0.000854175 0.000782386 0.0455314 0.0420195 30 2093 18 6.64007e+06 464646 526063. 1820.29 1.00 0.129782 0.115087 22546 126617 -1 1817 18 1355 1938 143994 29374 2.63837 2.63837 -113.677 -2.63837 0 0 666494. 2306.21 0.28 0.08 0.14 -1 -1 0.28 0.0341186 0.0306625 154 62 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.37 vpr 62.66 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30548 -1 -1 29 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.22 803 9407 2189 6388 830 62.7 MiB 0.13 0.00 3.6833 -114.43 -3.6833 3.6833 0.90 0.000541044 0.000494718 0.029133 0.0267254 30 1791 21 6.64007e+06 364182 526063. 1820.29 0.96 0.106737 0.0935442 22546 126617 -1 1549 17 772 1187 92728 19278 2.55517 2.55517 -105.122 -2.55517 0 0 666494. 2306.21 0.31 0.06 0.15 -1 -1 0.31 0.0233325 0.0207441 114 77 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.45 vpr 62.90 MiB 0.03 7008 -1 -1 1 0.03 -1 -1 30540 -1 -1 24 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1052 11799 3060 6831 1908 62.9 MiB 0.19 0.00 3.64847 -119.816 -3.64847 3.64847 0.88 0.000825793 0.000763839 0.0484255 0.044639 32 2478 23 6.64007e+06 301392 554710. 1919.41 1.07 0.141341 0.125349 22834 132086 -1 2076 16 1345 2260 196401 39833 3.04517 3.04517 -116.497 -3.04517 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0277614 0.0245182 149 59 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.68 vpr 63.16 MiB 0.03 7248 -1 -1 1 0.03 -1 -1 30444 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.40 953 7835 1760 5704 371 63.2 MiB 0.14 0.00 5.23812 -147.937 -5.23812 5.23812 0.89 0.000951017 0.000882852 0.0372976 0.0344566 32 2424 23 6.64007e+06 288834 554710. 1919.41 1.08 0.137774 0.121241 22834 132086 -1 2150 19 1308 2188 193443 41902 3.99248 3.99248 -143.523 -3.99248 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0347395 0.0305149 150 111 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.16 vpr 63.10 MiB 0.03 7152 -1 -1 1 0.04 -1 -1 30392 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.4 MiB 0.19 955 10859 3044 7047 768 63.1 MiB 0.20 0.01 5.02279 -136.574 -5.02279 5.02279 0.80 0.000845771 0.000781543 0.0512293 0.0473956 30 2080 21 6.64007e+06 288834 526063. 1820.29 0.94 0.151299 0.133982 22546 126617 -1 1810 13 837 1298 91074 19179 3.74728 3.74728 -128.151 -3.74728 0 0 666494. 2306.21 0.23 0.06 0.15 -1 -1 0.23 0.0246635 0.021977 144 86 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.71 vpr 63.00 MiB 0.03 7216 -1 -1 1 0.03 -1 -1 30360 -1 -1 35 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1046 15623 4332 9609 1682 63.0 MiB 0.24 0.01 3.5621 -120.379 -3.5621 3.5621 0.88 0.00088155 0.000815082 0.0555833 0.0511431 26 2695 23 6.64007e+06 439530 477104. 1650.88 1.22 0.155603 0.138412 21682 110474 -1 2190 20 1544 2593 205818 42851 2.94797 2.94797 -118.634 -2.94797 0 0 585099. 2024.56 0.24 0.09 0.11 -1 -1 0.24 0.0307827 0.0273189 148 58 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.64 vpr 62.98 MiB 0.04 7008 -1 -1 1 0.04 -1 -1 30708 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.4 MiB 0.12 865 10206 2264 6941 1001 63.0 MiB 0.18 0.00 4.23656 -140.329 -4.23656 4.23656 0.89 0.000839656 0.000775609 0.0384988 0.0354944 32 2782 37 6.64007e+06 464646 554710. 1919.41 1.26 0.156447 0.138434 22834 132086 -1 2062 21 1856 2834 233669 51547 3.72443 3.72443 -137.221 -3.72443 0 0 701300. 2426.64 0.28 0.10 0.13 -1 -1 0.28 0.0334885 0.0296351 156 42 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.67 vpr 63.22 MiB 0.03 7324 -1 -1 1 0.04 -1 -1 30636 -1 -1 42 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1205 17356 4219 10649 2488 63.2 MiB 0.29 0.01 4.21478 -145.938 -4.21478 4.21478 0.88 0.00100583 0.000931337 0.0699976 0.064741 32 2797 19 6.64007e+06 527436 554710. 1919.41 1.09 0.179653 0.160384 22834 132086 -1 2429 21 1922 2902 260397 51978 3.60863 3.60863 -140.093 -3.60863 0 0 701300. 2426.64 0.23 0.11 0.14 -1 -1 0.23 0.0411148 0.0361308 186 91 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.40 vpr 62.45 MiB 0.03 6960 -1 -1 1 0.03 -1 -1 30732 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63952 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 655 13731 5030 6417 2284 62.5 MiB 0.19 0.00 3.7665 -117.146 -3.7665 3.7665 0.98 0.000678826 0.000626617 0.0516489 0.0476064 32 1994 22 6.64007e+06 226044 554710. 1919.41 1.05 0.124465 0.110471 22834 132086 -1 1499 19 1250 1973 157612 35775 2.87377 2.87377 -111.445 -2.87377 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0252868 0.0223371 116 24 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.36 vpr 62.97 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30404 -1 -1 38 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.14 910 7386 1527 5477 382 63.0 MiB 0.14 0.00 4.20356 -136.322 -4.20356 4.20356 0.83 0.000685589 0.000633738 0.0251515 0.0230797 32 2850 23 6.64007e+06 477204 554710. 1919.41 1.17 0.130523 0.115282 22834 132086 -1 2083 22 1821 2685 209966 47406 3.85863 3.85863 -140.091 -3.85863 0 0 701300. 2426.64 0.25 0.10 0.14 -1 -1 0.25 0.0363898 0.0319891 152 59 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.75 vpr 63.04 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30552 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 0.14 994 14048 3500 8468 2080 63.0 MiB 0.26 0.01 3.7163 -119.726 -3.7163 3.7163 0.95 0.00075446 0.000689344 0.0537642 0.0496086 32 2424 21 6.64007e+06 426972 554710. 1919.41 1.19 0.151936 0.134849 22834 132086 -1 2005 20 1600 2718 211820 45517 2.93577 2.93577 -111.18 -2.93577 0 0 701300. 2426.64 0.28 0.09 0.14 -1 -1 0.28 0.0325517 0.0288301 149 54 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.46 vpr 63.02 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30460 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.3 MiB 0.10 1080 15017 4624 8554 1839 63.0 MiB 0.26 0.00 4.14936 -144.892 -4.14936 4.14936 0.80 0.000651731 0.000600497 0.0602742 0.0556757 32 2565 23 6.64007e+06 276276 554710. 1919.41 1.14 0.156793 0.139838 22834 132086 -1 2209 20 1783 3123 255533 52066 3.38403 3.38403 -138.503 -3.38403 0 0 701300. 2426.64 0.31 0.10 0.15 -1 -1 0.31 0.0284503 0.0253798 151 -1 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.53 vpr 63.01 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30552 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1044 15603 4218 9336 2049 63.0 MiB 0.24 0.01 3.55822 -125.535 -3.55822 3.55822 0.84 0.000843325 0.000778673 0.0590689 0.0544476 32 2366 20 6.64007e+06 439530 554710. 1919.41 1.05 0.153841 0.137278 22834 132086 -1 2102 17 1281 1895 151509 32439 2.87377 2.87377 -117.072 -2.87377 0 0 701300. 2426.64 0.30 0.08 0.16 -1 -1 0.30 0.0291435 0.0260278 146 81 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.95 vpr 63.04 MiB 0.02 7132 -1 -1 1 0.04 -1 -1 30312 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1017 12791 3286 8285 1220 63.0 MiB 0.20 0.01 3.47912 -120.914 -3.47912 3.47912 0.87 0.000901798 0.000828356 0.0427086 0.0393175 26 2506 30 6.64007e+06 464646 477104. 1650.88 1.60 0.156779 0.139256 21682 110474 -1 2013 17 1003 1736 125869 28597 2.95177 2.95177 -119.476 -2.95177 0 0 585099. 2024.56 0.22 0.07 0.12 -1 -1 0.22 0.0296491 0.0264133 148 58 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.28 vpr 63.05 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30432 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1102 19142 5372 11310 2460 63.1 MiB 0.29 0.01 3.5243 -123.608 -3.5243 3.5243 0.78 0.000840786 0.000776743 0.0698547 0.0644735 32 2323 21 6.64007e+06 489762 554710. 1919.41 1.01 0.169759 0.150953 22834 132086 -1 2033 18 1463 2202 188135 37215 2.75677 2.75677 -115.524 -2.75677 0 0 701300. 2426.64 0.28 0.08 0.14 -1 -1 0.28 0.0301769 0.027001 157 61 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.28 vpr 62.98 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30488 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.10 1032 14906 4320 9186 1400 63.0 MiB 0.25 0.01 4.18856 -144.112 -4.18856 4.18856 0.78 0.000820904 0.000760472 0.0539864 0.0498718 30 2314 20 6.64007e+06 464646 526063. 1820.29 1.01 0.151729 0.134848 22546 126617 -1 1942 20 1419 2142 143035 30138 3.47523 3.47523 -135.45 -3.47523 0 0 666494. 2306.21 0.25 0.08 0.15 -1 -1 0.25 0.0326542 0.0288737 152 21 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 6.23 vpr 63.05 MiB 0.04 7048 -1 -1 1 0.04 -1 -1 30676 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1016 12153 3010 8355 788 63.1 MiB 0.20 0.01 4.23153 -146.068 -4.23153 4.23153 0.81 0.000840574 0.000776991 0.0460649 0.0424957 28 2535 21 6.64007e+06 489762 500653. 1732.36 3.03 0.258949 0.226018 21970 115934 -1 2182 21 1687 2675 234870 47721 3.68443 3.68443 -146.956 -3.68443 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0344729 0.0302984 155 50 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.75 vpr 63.18 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30480 -1 -1 36 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1141 13095 3356 8753 986 63.2 MiB 0.24 0.01 4.67535 -137.171 -4.67535 4.67535 0.78 0.000902673 0.000835317 0.054935 0.0507603 28 2935 23 6.64007e+06 452088 500653. 1732.36 1.39 0.164498 0.145146 21970 115934 -1 2441 22 1246 2308 192333 39906 3.65042 3.65042 -133.414 -3.65042 0 0 612192. 2118.31 0.22 0.10 0.13 -1 -1 0.22 0.0392282 0.0344071 147 110 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.67 vpr 63.13 MiB 0.05 7020 -1 -1 1 0.04 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1069 15584 4992 8664 1928 63.1 MiB 0.28 0.01 4.34993 -137.194 -4.34993 4.34993 0.87 0.000873517 0.000807706 0.076444 0.0706702 32 2719 20 6.64007e+06 276276 554710. 1919.41 1.03 0.17893 0.159249 22834 132086 -1 2316 21 1747 3185 258192 54916 3.69742 3.69742 -138.836 -3.69742 0 0 701300. 2426.64 0.28 0.10 0.14 -1 -1 0.28 0.034131 0.0302352 151 86 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.01 vpr 62.34 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30600 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 23.9 MiB 0.08 928 8735 1852 5986 897 62.3 MiB 0.13 0.00 3.50687 -122.364 -3.50687 3.50687 0.82 0.000700983 0.000647522 0.0303721 0.0281034 28 2241 22 6.64007e+06 389298 500653. 1732.36 0.96 0.113374 0.0997041 21970 115934 -1 1924 18 1108 1806 141964 30962 2.96197 2.96197 -121.11 -2.96197 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0259082 0.0228159 125 20 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.34 vpr 62.76 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30328 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.21 885 10406 2864 6861 681 62.8 MiB 0.17 0.00 3.5031 -121.505 -3.5031 3.5031 0.86 0.000770536 0.000712173 0.0476649 0.0440954 26 2246 21 6.64007e+06 226044 477104. 1650.88 0.98 0.139916 0.124301 21682 110474 -1 1967 21 1403 2284 195465 41297 2.88577 2.88577 -121.172 -2.88577 0 0 585099. 2024.56 0.24 0.09 0.12 -1 -1 0.24 0.0307255 0.027091 121 91 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.67 vpr 63.02 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30880 -1 -1 42 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.6 MiB 0.12 1352 17606 4821 10688 2097 63.0 MiB 0.34 0.01 4.98622 -168.741 -4.98622 4.98622 0.77 0.000968046 0.000894672 0.0697191 0.0644645 32 3357 23 6.64007e+06 527436 554710. 1919.41 1.23 0.183901 0.163878 22834 132086 -1 2806 21 2465 4109 357232 75142 5.11829 5.11829 -178.537 -5.11829 0 0 701300. 2426.64 0.26 0.13 0.13 -1 -1 0.26 0.0416716 0.0372067 189 53 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.25 vpr 62.93 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30392 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1055 17857 5354 10411 2092 62.9 MiB 0.28 0.00 3.51607 -123.396 -3.51607 3.51607 0.78 0.000803991 0.000742645 0.0651743 0.0600139 30 2181 18 6.64007e+06 414414 526063. 1820.29 0.94 0.156748 0.139392 22546 126617 -1 1926 16 1157 1695 114529 24763 2.97637 2.97637 -120.356 -2.97637 0 0 666494. 2306.21 0.25 0.07 0.13 -1 -1 0.25 0.0286334 0.0253883 148 31 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.01 vpr 62.68 MiB 0.03 6792 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64188 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.06 853 17523 5443 9889 2191 62.7 MiB 0.23 0.00 3.4529 -114.711 -3.4529 3.4529 0.80 0.000668915 0.000618858 0.058938 0.0544685 30 1867 20 6.64007e+06 389298 526063. 1820.29 0.91 0.137494 0.122201 22546 126617 -1 1624 17 839 1212 89795 18009 2.77357 2.77357 -106.052 -2.77357 0 0 666494. 2306.21 0.24 0.05 0.13 -1 -1 0.24 0.020087 0.0178801 116 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.65 vpr 63.14 MiB 0.03 7368 -1 -1 1 0.03 -1 -1 31000 -1 -1 45 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.34 1192 13629 3357 8864 1408 63.1 MiB 0.24 0.01 4.97469 -167.233 -4.97469 4.97469 0.78 0.00101859 0.000937238 0.0553817 0.0511344 32 2855 24 6.64007e+06 565110 554710. 1919.41 1.11 0.182583 0.161077 22834 132086 -1 2465 18 2092 3181 280616 56152 4.55029 4.55029 -165.816 -4.55029 0 0 701300. 2426.64 0.23 0.12 0.13 -1 -1 0.23 0.0394024 0.0347262 188 109 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.38 vpr 63.02 MiB 0.03 6924 -1 -1 1 0.03 -1 -1 30668 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1027 16762 4357 10483 1922 63.0 MiB 0.23 0.01 4.27488 -146.847 -4.27488 4.27488 0.88 0.000756067 0.00069655 0.0535626 0.049227 28 2439 21 6.64007e+06 477204 500653. 1732.36 0.98 0.149176 0.13242 21970 115934 -1 2180 20 1673 2372 208653 43959 3.67343 3.67343 -147.366 -3.67343 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0325947 0.0288007 153 31 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.17 vpr 62.57 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30312 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 24.1 MiB 0.08 882 11046 2802 6952 1292 62.6 MiB 0.18 0.01 3.5621 -124.172 -3.5621 3.5621 0.89 0.000667227 0.000616908 0.037683 0.0347556 30 1851 19 6.64007e+06 401856 526063. 1820.29 0.94 0.108051 0.0957503 22546 126617 -1 1517 19 767 1275 81602 17948 2.46797 2.46797 -106.203 -2.46797 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0256774 0.0225747 124 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.00 vpr 63.04 MiB 0.04 7200 -1 -1 1 0.03 -1 -1 30908 -1 -1 43 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.6 MiB 0.14 1334 20347 5362 13158 1827 63.0 MiB 0.34 0.01 4.95502 -168.119 -4.95502 4.95502 0.86 0.000889811 0.00082725 0.073359 0.067805 30 3132 23 6.64007e+06 539994 526063. 1820.29 1.37 0.197097 0.176509 22546 126617 -1 2634 21 2061 3401 266542 52181 4.51109 4.51109 -169.495 -4.51109 0 0 666494. 2306.21 0.26 0.12 0.13 -1 -1 0.26 0.0440554 0.0391809 190 26 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.10 vpr 62.44 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 0.10 623 13731 4925 6406 2400 62.4 MiB 0.19 0.00 3.5061 -118.666 -3.5061 3.5061 0.77 0.000665938 0.000616174 0.0542617 0.0502164 32 2149 26 6.64007e+06 213486 554710. 1919.41 0.99 0.138948 0.123161 22834 132086 -1 1582 21 1466 2275 191386 45917 3.24357 3.24357 -120.667 -3.24357 0 0 701300. 2426.64 0.28 0.09 0.14 -1 -1 0.28 0.0280949 0.0249796 121 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.96 vpr 62.31 MiB 0.03 6888 -1 -1 1 0.03 -1 -1 30408 -1 -1 32 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63808 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 23.8 MiB 0.11 855 13939 4099 8667 1173 62.3 MiB 0.19 0.00 3.47387 -112.968 -3.47387 3.47387 0.77 0.000677136 0.000626565 0.0463189 0.0427992 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.89 0.127325 0.112647 21970 115934 -1 1678 18 932 1483 106148 23081 2.66737 2.66737 -107.139 -2.66737 0 0 612192. 2118.31 0.25 0.06 0.13 -1 -1 0.25 0.0232046 0.0205323 114 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.46 vpr 62.95 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30344 -1 -1 34 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.4 MiB 0.19 1003 12839 3224 8329 1286 63.0 MiB 0.20 0.00 3.6803 -109.03 -3.6803 3.6803 0.88 0.000818264 0.000757211 0.0463624 0.0427605 26 2556 22 6.64007e+06 426972 477104. 1650.88 1.09 0.139972 0.124039 21682 110474 -1 2149 22 1293 2235 188727 40735 3.26557 3.26557 -111.993 -3.26557 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0347936 0.0305522 134 81 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.37 vpr 63.03 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30644 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.15 937 11048 2797 7564 687 63.0 MiB 0.19 0.00 4.21976 -143.232 -4.21976 4.21976 0.80 0.000838981 0.000775736 0.0519129 0.0480465 32 2275 21 6.64007e+06 276276 554710. 1919.41 1.03 0.151882 0.134633 22834 132086 -1 1948 22 2010 3004 285694 58969 3.78563 3.78563 -146.058 -3.78563 0 0 701300. 2426.64 0.24 0.11 0.13 -1 -1 0.24 0.0360725 0.0316965 152 53 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.42 vpr 62.99 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30724 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1070 15876 4480 9346 2050 63.0 MiB 0.28 0.01 4.25856 -146.098 -4.25856 4.25856 0.77 0.000849276 0.000784471 0.0593153 0.0547629 32 2633 21 6.64007e+06 452088 554710. 1919.41 1.04 0.15847 0.140643 22834 132086 -1 2320 17 1590 2584 216767 44248 3.73543 3.73543 -145.118 -3.73543 0 0 701300. 2426.64 0.25 0.09 0.14 -1 -1 0.25 0.0311547 0.0275742 154 55 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.91 vpr 62.76 MiB 0.02 6992 -1 -1 1 0.04 -1 -1 30512 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.0 MiB 0.10 863 8856 1892 6516 448 62.8 MiB 0.14 0.00 3.4749 -121.747 -3.4749 3.4749 0.76 0.000738087 0.000682006 0.0323191 0.0298054 32 2058 17 6.64007e+06 401856 554710. 1919.41 0.96 0.115558 0.101735 22834 132086 -1 1842 20 1242 1876 166457 34440 2.96097 2.96097 -120.151 -2.96097 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0291079 0.0255398 122 55 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.19 vpr 62.76 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.21 821 8336 2395 4162 1779 62.8 MiB 0.14 0.00 3.72326 -116.749 -3.72326 3.72326 0.80 0.000906721 0.00083368 0.0407026 0.0376033 32 1972 19 6.64007e+06 213486 554710. 1919.41 1.02 0.115126 0.101806 22834 132086 -1 1707 20 978 1859 143974 31372 2.80457 2.80457 -110.947 -2.80457 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0293883 0.0257638 109 82 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.68 vpr 63.08 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30556 -1 -1 35 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.5 MiB 0.11 985 17635 4923 10695 2017 63.1 MiB 0.29 0.01 3.4529 -110.073 -3.4529 3.4529 0.79 0.000779536 0.000719153 0.0655856 0.0606462 26 2684 26 6.64007e+06 439530 477104. 1650.88 1.45 0.167648 0.148723 21682 110474 -1 2220 20 1365 2194 191918 40499 3.08837 3.08837 -120.015 -3.08837 0 0 585099. 2024.56 0.24 0.08 0.12 -1 -1 0.24 0.030162 0.026651 139 52 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.59 vpr 62.89 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 30416 -1 -1 32 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.1 MiB 0.09 939 14996 4215 8524 2257 62.9 MiB 0.22 0.00 4.39198 -124.88 -4.39198 4.39198 0.81 0.000704758 0.00065048 0.0530337 0.0490291 26 2381 25 6.64007e+06 401856 477104. 1650.88 1.37 0.14589 0.129295 21682 110474 -1 2095 20 1524 2377 201285 41059 3.82983 3.82983 -130.25 -3.82983 0 0 585099. 2024.56 0.24 0.08 0.11 -1 -1 0.24 0.0247409 0.0218641 134 20 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.34 vpr 62.74 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30144 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.1 MiB 0.18 846 13731 4520 7348 1863 62.7 MiB 0.20 0.00 3.5343 -117.296 -3.5343 3.5343 0.85 0.000699555 0.000646419 0.0585948 0.0541592 32 1932 20 6.64007e+06 238602 554710. 1919.41 0.99 0.140237 0.124343 22834 132086 -1 1827 18 1277 2121 203414 40290 2.87997 2.87997 -111.353 -2.87997 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0260634 0.0229118 114 58 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.02 vpr 62.59 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.20 892 11281 2807 6986 1488 62.6 MiB 0.17 0.00 3.6865 -117.315 -3.6865 3.6865 0.77 0.000785009 0.000727527 0.0534219 0.0495744 30 1862 18 6.64007e+06 213486 526063. 1820.29 0.92 0.142114 0.126461 22546 126617 -1 1659 20 838 1416 107695 22122 2.67977 2.67977 -105.908 -2.67977 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0303238 0.0266285 114 88 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.43 vpr 62.82 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30116 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.2 MiB 0.08 1121 19124 6194 10224 2706 62.8 MiB 0.28 0.01 4.18856 -139.706 -4.18856 4.18856 0.89 0.000749726 0.000693636 0.0648426 0.0599438 32 2534 23 6.64007e+06 464646 554710. 1919.41 1.06 0.154289 0.137735 22834 132086 -1 2166 19 1634 2708 233894 46812 3.55843 3.55843 -135.087 -3.55843 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0291945 0.0257273 152 -1 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.66 vpr 63.21 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30584 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.20 1037 18660 5257 10625 2778 63.2 MiB 0.29 0.01 4.17032 -143.358 -4.17032 4.17032 0.87 0.000838738 0.000774983 0.0661144 0.0608266 32 2570 26 6.64007e+06 452088 554710. 1919.41 1.11 0.1664 0.147865 22834 132086 -1 2140 20 1754 2899 238779 48640 3.71763 3.71763 -140.268 -3.71763 0 0 701300. 2426.64 0.23 0.10 0.14 -1 -1 0.23 0.0337069 0.0296718 155 57 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.35 vpr 63.23 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30408 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1085 15876 4268 10377 1231 63.2 MiB 0.25 0.01 4.15553 -144.194 -4.15553 4.15553 0.77 0.000818494 0.000754855 0.061063 0.0563845 32 2694 21 6.64007e+06 452088 554710. 1919.41 1.02 0.161878 0.143682 22834 132086 -1 2282 20 1645 2600 214669 45071 3.61523 3.61523 -143.311 -3.61523 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.033741 0.0297178 153 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 10.58 vpr 63.12 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 30592 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.4 MiB 0.16 963 9146 1745 6045 1356 63.1 MiB 0.13 0.00 4.17056 -135.219 -4.17056 4.17056 0.81 0.000897507 0.000829513 0.0341947 0.0315653 28 3561 44 6.64007e+06 477204 500653. 1732.36 7.32 0.262425 0.229672 21970 115934 -1 2369 21 1594 2612 215389 49614 3.76763 3.76763 -142.084 -3.76763 0 0 612192. 2118.31 0.22 0.10 0.12 -1 -1 0.22 0.0355836 0.031315 149 62 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.03 vpr 62.53 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30348 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 840 12856 4254 6466 2136 62.5 MiB 0.18 0.00 3.4921 -115.538 -3.4921 3.4921 0.77 0.0006693 0.000618772 0.0512522 0.0474403 32 1996 21 6.64007e+06 238602 554710. 1919.41 0.95 0.131402 0.116476 22834 132086 -1 1773 19 1143 1842 158697 33216 2.79557 2.79557 -113.228 -2.79557 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.024961 0.0220008 113 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.57 vpr 63.10 MiB 0.04 7104 -1 -1 1 0.04 -1 -1 30320 -1 -1 24 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.3 MiB 0.18 996 13127 3599 7422 2106 63.1 MiB 0.21 0.00 4.20393 -135.69 -4.20393 4.20393 0.86 0.000799225 0.000738272 0.0586974 0.0543009 26 2541 24 6.64007e+06 301392 477104. 1650.88 1.28 0.15911 0.142222 21682 110474 -1 2282 21 1888 2757 268466 56063 4.03823 4.03823 -144.563 -4.03823 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.033541 0.0295362 146 58 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.14 vpr 63.01 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30896 -1 -1 41 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.5 MiB 0.28 1061 10232 2187 7405 640 63.0 MiB 0.19 0.01 4.16036 -143.59 -4.16036 4.16036 0.77 0.000924208 0.00085482 0.0457799 0.0423873 26 3226 32 6.64007e+06 514878 477104. 1650.88 1.85 0.173028 0.152119 21682 110474 -1 2476 20 1868 3072 269793 55372 3.87763 3.87763 -151.022 -3.87763 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0360124 0.0315585 156 106 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.49 vpr 62.97 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30676 -1 -1 33 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 0.13 924 14769 3776 9247 1746 63.0 MiB 0.24 0.00 4.18868 -135.93 -4.18868 4.18868 0.86 0.000652424 0.000597082 0.0625003 0.0577366 32 2460 22 6.64007e+06 414414 554710. 1919.41 1.08 0.157822 0.140499 22834 132086 -1 1978 17 1404 2244 169332 38455 4.00803 4.00803 -142.511 -4.00803 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0300542 0.0264665 148 79 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.18 vpr 62.89 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30480 -1 -1 32 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.3 MiB 0.16 973 15004 4033 8498 2473 62.9 MiB 0.23 0.00 3.6693 -113.052 -3.6693 3.6693 0.76 0.000817724 0.000755112 0.0609032 0.0563184 32 2172 19 6.64007e+06 401856 554710. 1919.41 0.96 0.156016 0.138425 22834 132086 -1 1892 19 1215 1923 147453 31619 2.83877 2.83877 -109.741 -2.83877 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0318556 0.0279829 138 83 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.70 vpr 63.02 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.4 MiB 0.29 1125 9725 2385 6614 726 63.0 MiB 0.19 0.01 4.21673 -144.443 -4.21673 4.21673 0.88 0.000806124 0.000747891 0.042275 0.0390052 30 2730 23 6.64007e+06 276276 526063. 1820.29 1.13 0.142032 0.125996 22546 126617 -1 2455 16 1602 2713 201279 42132 3.62323 3.62323 -147.08 -3.62323 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0278424 0.0248927 155 58 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.48 vpr 62.77 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30292 -1 -1 36 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.0 MiB 0.15 964 18079 5189 10710 2180 62.8 MiB 0.27 0.01 3.5353 -109.312 -3.5353 3.5353 0.89 0.000770691 0.000708686 0.0668578 0.0614384 32 2091 19 6.64007e+06 452088 554710. 1919.41 1.05 0.159696 0.141678 22834 132086 -1 1857 17 1318 2104 176594 37334 2.88277 2.88277 -107.59 -2.88277 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0284032 0.0250968 136 81 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.03 vpr 62.20 MiB 0.03 6696 -1 -1 1 0.03 -1 -1 30492 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63696 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.07 799 9356 2113 6168 1075 62.2 MiB 0.17 0.01 3.4921 -122.483 -3.4921 3.4921 0.79 0.00193532 0.00183146 0.041963 0.0388664 32 1970 18 6.64007e+06 213486 554710. 1919.41 1.02 0.112627 0.100103 22834 132086 -1 1722 19 1236 1879 153670 32586 2.78457 2.78457 -118.361 -2.78457 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0257785 0.0226691 115 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.57 vpr 63.00 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30412 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.31 992 16743 5741 8435 2567 63.0 MiB 0.18 0.00 4.25856 -144.485 -4.25856 4.25856 0.85 0.000370926 0.000338946 0.0439958 0.0405081 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.17 0.150876 0.133977 21970 115934 -1 2249 19 1648 2538 223427 46806 3.85563 3.85563 -146.969 -3.85563 0 0 612192. 2118.31 0.24 0.09 0.12 -1 -1 0.24 0.0314882 0.0280468 152 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.34 vpr 63.07 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 30468 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.4 MiB 0.19 1054 17367 5167 10302 1898 63.1 MiB 0.29 0.01 4.21976 -145.962 -4.21976 4.21976 0.77 0.000627335 0.00057222 0.0765139 0.0706582 32 2455 22 6.64007e+06 288834 554710. 1919.41 1.02 0.178716 0.159159 22834 132086 -1 2069 23 1972 3269 286951 63259 3.70883 3.70883 -142.906 -3.70883 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0376675 0.0330945 158 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.45 vpr 62.85 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.2 MiB 0.18 691 7975 1531 6145 299 62.8 MiB 0.13 0.00 3.6913 -111.241 -3.6913 3.6913 0.77 0.000692484 0.00063971 0.0300351 0.0278145 26 2401 39 6.64007e+06 376740 477104. 1650.88 1.43 0.129802 0.113619 21682 110474 -1 1756 18 874 1420 120932 28308 2.87797 2.87797 -110.849 -2.87797 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0235554 0.0208168 112 47 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.07 vpr 62.39 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30376 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.09 653 13381 4684 6039 2658 62.4 MiB 0.19 0.00 3.5533 -116.629 -3.5533 3.5533 0.77 0.000650284 0.000601731 0.0526849 0.0487959 32 1926 23 6.64007e+06 226044 554710. 1919.41 0.97 0.132732 0.117728 22834 132086 -1 1661 20 1392 2142 187943 42705 3.31857 3.31857 -122.203 -3.31857 0 0 701300. 2426.64 0.24 0.08 0.15 -1 -1 0.24 0.0277613 0.0244377 118 -1 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.26 vpr 62.96 MiB 0.02 7084 -1 -1 1 0.05 -1 -1 30464 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.4 MiB 0.16 927 16303 4785 8793 2725 63.0 MiB 0.25 0.00 4.16476 -135.871 -4.16476 4.16476 0.79 0.000808258 0.00074817 0.0632409 0.0585231 32 2298 20 6.64007e+06 414414 554710. 1919.41 0.99 0.158362 0.140839 22834 132086 -1 1988 19 1385 2027 190856 40270 3.64283 3.64283 -131.747 -3.64283 0 0 701300. 2426.64 0.27 0.08 0.13 -1 -1 0.27 0.0308911 0.0272071 139 56 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.21 vpr 63.01 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30436 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1051 17397 5163 9750 2484 63.0 MiB 0.27 0.00 4.41596 -136.112 -4.41596 4.41596 0.94 0.000830937 0.000767837 0.0692511 0.0640118 26 3045 25 6.64007e+06 401856 477104. 1650.88 1.63 0.176358 0.156694 21682 110474 -1 2339 21 1597 2558 224361 46433 3.93722 3.93722 -138.517 -3.93722 0 0 585099. 2024.56 0.25 0.09 0.12 -1 -1 0.25 0.0344105 0.0304129 136 81 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.31 vpr 62.84 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30472 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.11 1159 10441 2545 7247 649 62.8 MiB 0.20 0.01 4.95022 -163.094 -4.95022 4.95022 0.76 0.000869009 0.000804632 0.0415764 0.0385161 32 3386 23 6.64007e+06 464646 554710. 1919.41 1.12 0.148191 0.131027 22834 132086 -1 2752 20 2117 3334 320799 67756 4.55248 4.55248 -166.223 -4.55248 0 0 701300. 2426.64 0.30 0.11 0.15 -1 -1 0.30 0.0330434 0.0297281 179 -1 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.97 vpr 62.79 MiB 0.03 7136 -1 -1 1 0.05 -1 -1 30692 -1 -1 34 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.0 MiB 0.17 813 9732 2096 6039 1597 62.8 MiB 0.13 0.00 3.7815 -111.41 -3.7815 3.7815 0.76 0.00077808 0.00071824 0.0385597 0.0356733 28 2552 38 6.64007e+06 426972 500653. 1732.36 1.73 0.152494 0.133918 21970 115934 -1 1835 22 1390 2204 176608 40764 3.16737 3.16737 -112.457 -3.16737 0 0 612192. 2118.31 0.27 0.08 0.13 -1 -1 0.27 0.0303394 0.0269353 138 47 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.30 vpr 62.09 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30640 -1 -1 21 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63580 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.5 MiB 0.07 529 12292 5081 5761 1450 62.1 MiB 0.13 0.00 3.54427 -98.353 -3.54427 3.54427 0.93 0.000617034 0.000570583 0.046905 0.0433986 32 1616 46 6.64007e+06 263718 554710. 1919.41 1.12 0.142276 0.124918 22834 132086 -1 1299 20 1130 1608 165142 36694 3.04217 3.04217 -98.8483 -3.04217 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0249681 0.0218909 107 26 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.70 vpr 63.19 MiB 0.04 7352 -1 -1 1 0.03 -1 -1 30556 -1 -1 42 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.7 MiB 0.18 1462 20856 5895 12562 2399 63.2 MiB 0.39 0.01 4.52196 -148.077 -4.52196 4.52196 0.77 0.00101073 0.00093469 0.0862738 0.0797914 30 3568 23 6.64007e+06 527436 526063. 1820.29 1.13 0.207712 0.184734 22546 126617 -1 2796 23 1949 3557 274079 54644 3.84562 3.84562 -147.767 -3.84562 0 0 666494. 2306.21 0.29 0.13 0.12 -1 -1 0.29 0.0472632 0.041672 186 85 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.39 vpr 63.17 MiB 0.03 7264 -1 -1 1 0.03 -1 -1 30576 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.5 MiB 0.26 998 12919 3192 8538 1189 63.2 MiB 0.22 0.00 4.42996 -140.975 -4.42996 4.42996 0.77 0.000927733 0.000859012 0.0664006 0.0615462 32 2482 22 6.64007e+06 276276 554710. 1919.41 1.05 0.176621 0.156645 22834 132086 -1 2164 20 1512 2516 208462 45637 3.69562 3.69562 -141.495 -3.69562 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.030205 0.026763 145 105 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.11 vpr 62.58 MiB 0.03 6984 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 23.9 MiB 0.26 894 11948 3681 7128 1139 62.6 MiB 0.18 0.00 3.6755 -115.703 -3.6755 3.6755 0.77 0.000742906 0.000686074 0.0545742 0.0504804 32 1971 18 6.64007e+06 200928 554710. 1919.41 0.94 0.139847 0.12392 22834 132086 -1 1736 18 935 1525 132412 28338 2.76777 2.76777 -114.82 -2.76777 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0284271 0.024945 108 86 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.62 vpr 62.86 MiB 0.02 6992 -1 -1 1 0.04 -1 -1 30464 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.08 1023 18745 6322 9498 2925 62.9 MiB 0.29 0.01 4.46396 -140.121 -4.46396 4.46396 0.79 0.000786387 0.000726999 0.0701619 0.0648598 28 2993 24 6.64007e+06 414414 500653. 1732.36 1.43 0.169244 0.150473 21970 115934 -1 2307 18 1382 2117 188657 40217 3.82202 3.82202 -138.126 -3.82202 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0291876 0.0257336 147 31 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.49 vpr 62.90 MiB 0.04 7252 -1 -1 1 0.05 -1 -1 30656 -1 -1 38 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.6 MiB 0.16 1135 20076 5790 11566 2720 62.9 MiB 0.32 0.01 4.51716 -144.659 -4.51716 4.51716 0.77 0.000917157 0.000849087 0.0817508 0.0756736 32 2660 18 6.64007e+06 477204 554710. 1919.41 1.00 0.187071 0.166718 22834 132086 -1 2307 19 1782 2750 235942 50128 3.68462 3.68462 -138.576 -3.68462 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.035269 0.0310243 173 50 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.22 vpr 62.98 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30496 -1 -1 34 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.4 MiB 0.12 923 11484 2608 8162 714 63.0 MiB 0.20 0.01 3.73061 -110.59 -3.73061 3.73061 0.98 0.000790511 0.000730385 0.0410237 0.0377584 26 2813 30 6.64007e+06 426972 477104. 1650.88 1.76 0.147555 0.129858 21682 110474 -1 2128 18 1435 2401 224301 66762 3.22357 3.22357 -116.11 -3.22357 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0286132 0.025192 135 50 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.50 vpr 62.89 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30500 -1 -1 43 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.4 MiB 0.15 1008 13516 3637 9135 744 62.9 MiB 0.23 0.01 4.19956 -142.899 -4.19956 4.19956 0.85 0.00085187 0.000787432 0.0486529 0.0449301 28 2763 25 6.64007e+06 539994 500653. 1732.36 1.15 0.154059 0.136064 21970 115934 -1 2104 18 1685 2796 218922 48113 3.85803 3.85803 -147.485 -3.85803 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0310603 0.0274095 158 61 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.13 vpr 63.12 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30604 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.5 MiB 0.16 988 17184 5218 8807 3159 63.1 MiB 0.27 0.01 3.62559 -123.648 -3.62559 3.62559 0.88 0.000848287 0.000783649 0.0624847 0.0577701 28 2903 50 6.64007e+06 502320 500653. 1732.36 1.71 0.200779 0.176812 21970 115934 -1 2292 17 1376 2114 212165 44500 3.14237 3.14237 -126.049 -3.14237 0 0 612192. 2118.31 0.26 0.07 0.13 -1 -1 0.26 0.0237864 0.0213114 157 61 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.22 vpr 62.33 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30400 -1 -1 18 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63828 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.7 MiB 0.08 573 13430 5649 6739 1042 62.3 MiB 0.16 0.00 3.6785 -105.931 -3.6785 3.6785 0.77 0.000648662 0.000599144 0.0545691 0.0504848 28 1569 22 6.64007e+06 226044 500653. 1732.36 1.15 0.140886 0.125267 21970 115934 -1 1356 19 862 1223 110473 24491 2.84977 2.84977 -102.552 -2.84977 0 0 612192. 2118.31 0.22 0.06 0.12 -1 -1 0.22 0.0260314 0.0227984 95 28 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.17 vpr 62.71 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30104 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.8 MiB 0.18 857 11783 4174 5528 2081 62.7 MiB 0.16 0.00 4.00656 -110.848 -4.00656 4.00656 0.78 0.000708851 0.00065385 0.0497203 0.0459465 30 1904 16 6.64007e+06 238602 526063. 1820.29 0.91 0.129176 0.114374 22546 126617 -1 1617 18 635 905 67187 14496 2.71823 2.71823 -103.618 -2.71823 0 0 666494. 2306.21 0.33 0.07 0.16 -1 -1 0.33 0.0311867 0.0278512 112 79 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 9.49 vpr 62.90 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30448 -1 -1 38 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1100 13261 3564 8068 1629 62.9 MiB 0.19 0.00 4.80256 -145.153 -4.80256 4.80256 0.76 0.000796992 0.00073774 0.0472143 0.0436725 26 3252 47 6.64007e+06 477204 477104. 1650.88 6.28 0.281301 0.246044 21682 110474 -1 2549 21 1658 2761 260816 54095 3.99883 3.99883 -151.282 -3.99883 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0327078 0.028776 151 29 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.46 vpr 62.47 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30440 -1 -1 31 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63968 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.18 620 10442 2502 7352 588 62.5 MiB 0.14 0.00 3.6803 -100.526 -3.6803 3.6803 0.88 0.00046985 0.000429576 0.030166 0.0276747 26 1915 43 6.64007e+06 389298 477104. 1650.88 1.21 0.129455 0.112725 21682 110474 -1 1571 20 1030 1716 144162 32648 2.85877 2.85877 -102.793 -2.85877 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0258985 0.0226171 108 48 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.09 vpr 62.59 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 30332 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.14 691 13906 4599 7385 1922 62.6 MiB 0.21 0.00 3.53127 -120.288 -3.53127 3.53127 0.78 0.00069937 0.000646034 0.058078 0.0536997 32 2095 22 6.64007e+06 213486 554710. 1919.41 0.99 0.143117 0.127068 22834 132086 -1 1668 19 1407 2186 197304 41205 2.94077 2.94077 -119.677 -2.94077 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0269127 0.0236465 118 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.18 vpr 63.12 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30492 -1 -1 38 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.6 MiB 0.12 999 13261 3446 8635 1180 63.1 MiB 0.20 0.01 3.5665 -119.865 -3.5665 3.5665 0.77 0.000797228 0.000749043 0.0489684 0.0452228 30 2032 21 6.64007e+06 477204 526063. 1820.29 0.99 0.145223 0.128497 22546 126617 -1 1839 19 1324 1951 150453 31193 2.83197 2.83197 -113.787 -2.83197 0 0 666494. 2306.21 0.23 0.08 0.16 -1 -1 0.23 0.0310437 0.0273623 144 60 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.36 vpr 62.32 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30416 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 23.9 MiB 0.16 869 9368 2508 6076 784 62.3 MiB 0.14 0.00 3.34153 -105.882 -3.34153 3.34153 0.88 0.000625235 0.000576061 0.0352195 0.0323983 32 1956 21 6.64007e+06 213486 554710. 1919.41 1.01 0.112819 0.0993083 22834 132086 -1 1754 20 943 1606 136844 27949 2.65277 2.65277 -106.702 -2.65277 0 0 701300. 2426.64 0.27 0.07 0.15 -1 -1 0.27 0.0270055 0.0236551 106 49 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.92 vpr 62.91 MiB 0.03 7008 -1 -1 1 0.03 -1 -1 30588 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.3 MiB 0.16 879 9865 2512 6573 780 62.9 MiB 0.17 0.00 3.57229 -117.612 -3.57229 3.57229 0.87 0.000678838 0.00062039 0.0360177 0.0330576 28 2688 46 6.64007e+06 414414 500653. 1732.36 1.55 0.163574 0.143557 21970 115934 -1 2021 15 1111 1761 143964 31959 3.18237 3.18237 -122.994 -3.18237 0 0 612192. 2118.31 0.25 0.06 0.12 -1 -1 0.25 0.0222188 0.0198407 137 56 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.44 vpr 63.12 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30372 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.26 875 10540 2287 7686 567 63.1 MiB 0.18 0.01 3.79366 -119.555 -3.79366 3.79366 0.78 0.000857758 0.000792461 0.042298 0.0390757 30 2106 18 6.64007e+06 464646 526063. 1820.29 1.07 0.141981 0.125138 22546 126617 -1 1757 17 1247 1745 132285 28565 2.98817 2.98817 -114.179 -2.98817 0 0 666494. 2306.21 0.24 0.08 0.14 -1 -1 0.24 0.0337836 0.0300652 149 88 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.11 vpr 62.74 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 30372 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.1 MiB 0.16 816 8626 2345 5890 391 62.7 MiB 0.14 0.00 3.06096 -106.925 -3.06096 3.06096 0.77 0.000715777 0.000660877 0.0369561 0.0341456 32 2025 20 6.64007e+06 226044 554710. 1919.41 0.94 0.124827 0.110337 22834 132086 -1 1791 20 1193 1881 168065 35151 2.77777 2.77777 -108.652 -2.77777 0 0 701300. 2426.64 0.28 0.07 0.14 -1 -1 0.28 0.026443 0.0234007 115 54 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.06 vpr 62.75 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30152 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.18 920 11296 3024 7326 946 62.8 MiB 0.17 0.00 3.5031 -121.121 -3.5031 3.5031 0.76 0.000735497 0.000679439 0.0487576 0.0450859 30 2134 20 6.64007e+06 226044 526063. 1820.29 0.95 0.133781 0.118372 22546 126617 -1 1947 20 1181 1959 148565 31249 2.75977 2.75977 -115.023 -2.75977 0 0 666494. 2306.21 0.29 0.07 0.11 -1 -1 0.29 0.0241959 0.0213922 121 60 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.35 vpr 62.98 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30748 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.3 MiB 0.16 1027 12240 2965 8371 904 63.0 MiB 0.20 0.01 4.25676 -144.495 -4.25676 4.25676 0.77 0.000840851 0.000776371 0.046339 0.0428244 32 2511 30 6.64007e+06 477204 554710. 1919.41 1.09 0.157228 0.13868 22834 132086 -1 2178 22 1875 2807 281395 62206 3.93183 3.93183 -146.792 -3.93183 0 0 701300. 2426.64 0.30 0.10 0.13 -1 -1 0.30 0.0319398 0.0282071 156 49 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.45 vpr 62.94 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30500 -1 -1 34 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1021 16079 4076 10280 1723 62.9 MiB 0.24 0.01 3.7925 -111.563 -3.7925 3.7925 0.90 0.000589161 0.000538705 0.0544706 0.050209 32 2168 20 6.64007e+06 426972 554710. 1919.41 1.00 0.14322 0.126984 22834 132086 -1 1959 20 1165 1814 145516 30813 3.04717 3.04717 -110.394 -3.04717 0 0 701300. 2426.64 0.28 0.07 0.14 -1 -1 0.28 0.0286905 0.0253454 135 54 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.67 vpr 62.92 MiB 0.05 7192 -1 -1 1 0.05 -1 -1 30736 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.29 937 9020 1835 6701 484 62.9 MiB 0.16 0.01 4.29776 -145.038 -4.29776 4.29776 0.86 0.0010104 0.000933724 0.0370499 0.0342822 32 2585 22 6.64007e+06 489762 554710. 1919.41 1.08 0.143566 0.126546 22834 132086 -1 2165 21 1771 2655 239893 52602 3.90583 3.90583 -148.672 -3.90583 0 0 701300. 2426.64 0.27 0.10 0.14 -1 -1 0.27 0.0368335 0.0326048 158 117 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.10 vpr 62.26 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63752 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 804 11948 3966 6404 1578 62.3 MiB 0.14 0.00 3.08296 -103.61 -3.08296 3.08296 0.83 0.000422013 0.000383293 0.0408076 0.0375791 32 1825 19 6.64007e+06 213486 554710. 1919.41 0.96 0.10575 0.0936469 22834 132086 -1 1638 16 849 1364 119890 26191 2.76997 2.76997 -106.858 -2.76997 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0212869 0.0187586 106 -1 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.75 vpr 62.93 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.3 MiB 0.14 998 18111 4956 10747 2408 62.9 MiB 0.25 0.00 4.26296 -139.632 -4.26296 4.26296 0.88 0.000844944 0.0007847 0.0652552 0.0601833 26 2599 21 6.64007e+06 439530 477104. 1650.88 1.30 0.150464 0.134325 21682 110474 -1 2225 21 1573 2185 205524 42227 3.92723 3.92723 -141.021 -3.92723 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0351066 0.0308532 144 89 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.49 vpr 63.01 MiB 0.02 7004 -1 -1 1 0.04 -1 -1 30120 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.31 734 13381 4309 7077 1995 63.0 MiB 0.17 0.00 3.54047 -121.881 -3.54047 3.54047 0.88 0.000541351 0.0004971 0.053591 0.0493156 28 1926 23 6.64007e+06 213486 500653. 1732.36 0.99 0.141546 0.125721 21970 115934 -1 1696 19 1184 1716 151042 32013 2.92797 2.92797 -119.51 -2.92797 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0294019 0.0258313 114 93 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.14 vpr 63.04 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 30340 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.16 1102 9501 2041 6911 549 63.0 MiB 0.17 0.01 3.5841 -124.322 -3.5841 3.5841 0.76 0.000821829 0.000758324 0.0369826 0.0342656 30 2349 17 6.64007e+06 464646 526063. 1820.29 0.95 0.130163 0.114912 22546 126617 -1 2008 22 1251 1621 132354 27613 2.79797 2.79797 -118.014 -2.79797 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0355626 0.0312599 151 59 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.24 vpr 63.22 MiB 0.03 7352 -1 -1 1 0.04 -1 -1 30760 -1 -1 45 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.23 1244 16489 4012 10933 1544 63.2 MiB 0.28 0.01 4.96651 -168.366 -4.96651 4.96651 0.77 0.000999173 0.000924131 0.0664834 0.061482 26 3418 26 6.64007e+06 565110 477104. 1650.88 1.77 0.19314 0.170925 21682 110474 -1 2791 22 2536 3984 345977 69940 4.51068 4.51068 -170.322 -4.51068 0 0 585099. 2024.56 0.20 0.13 0.11 -1 -1 0.20 0.0418341 0.0367308 188 81 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.12 vpr 61.85 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30276 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63332 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.2 MiB 0.09 483 10509 2545 7262 702 61.8 MiB 0.13 0.00 2.73878 -81.5531 -2.73878 2.73878 0.90 0.000685432 0.000632596 0.047143 0.0434407 28 1347 20 6.64007e+06 188370 500653. 1732.36 0.96 0.107618 0.0953957 21970 115934 -1 1158 15 603 804 64649 15968 2.05711 2.05711 -81.0144 -2.05711 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0180675 0.0158311 83 51 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.18 vpr 62.14 MiB 0.02 6888 -1 -1 1 0.04 -1 -1 30484 -1 -1 17 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63636 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.5 MiB 0.08 793 10388 3558 5136 1694 62.1 MiB 0.13 0.00 3.6815 -114.291 -3.6815 3.6815 0.87 0.000664456 0.000613586 0.0401079 0.0369455 32 1609 19 6.64007e+06 213486 554710. 1919.41 0.98 0.108753 0.096341 22834 132086 -1 1518 17 879 1277 129507 26561 2.77177 2.77177 -110.345 -2.77177 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0239562 0.0210914 97 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.43 vpr 62.63 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.9 MiB 0.11 798 13966 5020 6560 2386 62.6 MiB 0.19 0.00 3.4859 -119.604 -3.4859 3.4859 0.87 0.000701417 0.000648357 0.0492676 0.045336 32 2353 24 6.64007e+06 226044 554710. 1919.41 1.07 0.132431 0.116997 22834 132086 -1 1951 18 1384 2432 200953 44767 3.04997 3.04997 -122.164 -3.04997 0 0 701300. 2426.64 0.25 0.09 0.13 -1 -1 0.25 0.026449 0.0233267 126 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.00 vpr 62.11 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30424 -1 -1 34 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63604 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.06 678 12127 3168 7672 1287 62.1 MiB 0.14 0.00 3.4089 -91.215 -3.4089 3.4089 0.77 0.000580944 0.000537965 0.03613 0.0334717 26 1683 18 6.64007e+06 426972 477104. 1650.88 1.03 0.102696 0.0905747 21682 110474 -1 1509 19 990 1459 130073 27396 2.96197 2.96197 -96.4633 -2.96197 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0225633 0.0197638 103 19 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.32 vpr 63.01 MiB 0.03 7104 -1 -1 1 0.06 -1 -1 30476 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1064 14828 5337 7470 2021 63.0 MiB 0.26 0.00 4.34676 -140.278 -4.34676 4.34676 0.77 0.000873138 0.000806814 0.0710582 0.0657329 32 2396 23 6.64007e+06 276276 554710. 1919.41 1.02 0.178197 0.158357 22834 132086 -1 2083 20 1488 2616 200523 41667 3.54023 3.54023 -135.597 -3.54023 0 0 701300. 2426.64 0.27 0.10 0.14 -1 -1 0.27 0.0372716 0.0332233 149 84 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.44 vpr 62.96 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30320 -1 -1 39 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.3 MiB 0.17 786 10336 2273 7345 718 63.0 MiB 0.20 0.01 3.53327 -114.261 -3.53327 3.53327 0.86 0.000856322 0.000782419 0.0464619 0.0427387 28 2288 43 6.64007e+06 489762 500653. 1732.36 1.87 0.178857 0.157089 21970 115934 -1 2000 23 1875 2848 305281 74978 3.41997 3.41997 -125.343 -3.41997 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0378495 0.033243 148 88 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 6.77 vpr 62.73 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30820 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.5 MiB 0.20 984 7523 1506 5708 309 62.7 MiB 0.15 0.01 3.92206 -133.487 -3.92206 3.92206 0.76 0.000884689 0.000817479 0.0326483 0.0301896 34 2600 22 6.65987e+06 431052 585099. 2024.56 3.53 0.257333 0.224504 23122 138558 -1 2232 22 1628 2696 242519 52913 3.50811 3.50811 -133.542 -3.50811 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0330242 0.0291052 151 80 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.38 vpr 62.90 MiB 0.03 7252 -1 -1 1 0.03 -1 -1 30636 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.2 MiB 0.30 986 12323 4513 6271 1539 62.9 MiB 0.22 0.00 4.33507 -129.747 -4.33507 4.33507 0.77 0.00082269 0.000759779 0.0595467 0.0551161 32 2555 27 6.65987e+06 266238 554710. 1919.41 1.05 0.165583 0.14674 22834 132086 -1 2079 21 1676 2772 286112 58972 3.71671 3.71671 -129.818 -3.71671 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0366481 0.0323204 140 78 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.27 vpr 62.81 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30488 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1040 16523 4439 10256 1828 62.8 MiB 0.24 0.01 3.41879 -119.689 -3.41879 3.41879 0.77 0.000809558 0.00074811 0.0633763 0.0585752 28 2533 20 6.65987e+06 431052 500653. 1732.36 1.08 0.159631 0.142001 21970 115934 -1 2189 20 1475 2439 218518 45467 3.03845 3.03845 -122.246 -3.03845 0 0 612192. 2118.31 0.22 0.09 0.12 -1 -1 0.22 0.0329379 0.0290626 141 50 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 7.02 vpr 62.48 MiB 0.06 7040 -1 -1 1 0.03 -1 -1 30492 -1 -1 22 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 23.9 MiB 0.12 793 11603 2857 6819 1927 62.5 MiB 0.15 0.00 4.2977 -123.649 -4.2977 4.2977 0.77 0.000743938 0.000687977 0.0508584 0.0470815 36 2029 24 6.65987e+06 278916 612192. 2118.31 3.82 0.258904 0.225483 23410 145293 -1 1678 22 1406 2401 203638 45318 3.66657 3.66657 -120.541 -3.66657 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0327253 0.028828 138 25 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.85 vpr 62.89 MiB 0.05 6984 -1 -1 1 0.05 -1 -1 30456 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1026 15456 4961 8586 1909 62.9 MiB 0.26 0.01 4.14936 -143.085 -4.14936 4.14936 0.88 0.000808843 0.000747736 0.0634284 0.0584502 32 2888 21 6.65987e+06 253560 554710. 1919.41 1.13 0.157601 0.140823 22834 132086 -1 2439 22 2106 3807 350055 76089 3.75443 3.75443 -149.423 -3.75443 0 0 701300. 2426.64 0.27 0.12 0.15 -1 -1 0.27 0.0364927 0.032243 151 31 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.46 vpr 62.64 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1029 9501 1978 7135 388 62.6 MiB 0.17 0.01 3.43623 -117.882 -3.43623 3.43623 0.76 0.00084491 0.000779249 0.0373097 0.034509 32 2586 24 6.65987e+06 469086 554710. 1919.41 1.12 0.140008 0.12418 22834 132086 -1 2136 19 1312 2071 187228 39708 2.85871 2.85871 -119.202 -2.85871 0 0 701300. 2426.64 0.23 0.09 0.14 -1 -1 0.23 0.0326167 0.0288047 154 61 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.93 vpr 62.00 MiB 0.03 6892 -1 -1 1 0.03 -1 -1 30656 -1 -1 19 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63492 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.4 MiB 0.18 580 13026 4344 6329 2353 62.0 MiB 0.18 0.00 3.7565 -98.351 -3.7565 3.7565 0.77 0.000611308 0.00056537 0.0501981 0.0464679 30 1446 19 6.65987e+06 240882 526063. 1820.29 0.90 0.121735 0.107962 22546 126617 -1 1147 16 627 1086 81870 17842 2.66237 2.66237 -89.6469 -2.66237 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0210926 0.0185853 96 26 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.24 vpr 62.64 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30164 -1 -1 33 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1006 10170 2426 6636 1108 62.6 MiB 0.16 0.00 3.27903 -106.33 -3.27903 3.27903 0.80 0.000728632 0.000673163 0.0366998 0.0339625 28 2446 21 6.65987e+06 418374 500653. 1732.36 1.06 0.126512 0.111516 21970 115934 -1 2195 21 1220 2108 168948 36500 2.77785 2.77785 -107.538 -2.77785 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0302687 0.0266196 139 -1 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.22 vpr 62.65 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30224 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.9 MiB 0.30 870 11571 3268 6617 1686 62.6 MiB 0.16 0.00 3.07084 -101.313 -3.07084 3.07084 0.81 0.000715488 0.000660687 0.0513902 0.047479 32 1805 19 6.65987e+06 202848 554710. 1919.41 0.91 0.134464 0.119113 22834 132086 -1 1615 21 854 1396 116661 25549 2.45705 2.45705 -97.9713 -2.45705 0 0 701300. 2426.64 0.23 0.07 0.14 -1 -1 0.23 0.0297614 0.0260841 105 81 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.96 vpr 62.48 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 23.8 MiB 0.26 642 11432 4032 4649 2751 62.5 MiB 0.13 0.00 3.56921 -118.924 -3.56921 3.56921 0.87 0.000457026 0.000417978 0.0411249 0.0377543 36 2023 31 6.65987e+06 202848 612192. 2118.31 2.45 0.192794 0.169032 23410 145293 -1 1511 22 1432 2299 187418 45961 2.94077 2.94077 -110.63 -2.94077 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0298701 0.0262398 121 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.22 vpr 62.52 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30124 -1 -1 17 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.8 MiB 0.24 784 11571 3060 7609 902 62.5 MiB 0.16 0.00 3.4841 -113.76 -3.4841 3.4841 0.82 0.000678805 0.000635335 0.0503949 0.0466353 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.95 0.133671 0.118367 22834 132086 -1 1528 20 1051 1525 125077 27168 2.84797 2.84797 -108.72 -2.84797 0 0 701300. 2426.64 0.26 0.07 0.14 -1 -1 0.26 0.0279172 0.0246734 110 58 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.36 vpr 62.73 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30588 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 24.0 MiB 0.24 841 11223 2602 8034 587 62.7 MiB 0.15 0.00 3.27957 -108.894 -3.27957 3.27957 0.81 0.000731288 0.000675844 0.0365347 0.0336133 30 1928 23 6.65987e+06 367662 526063. 1820.29 1.07 0.120702 0.106759 22546 126617 -1 1661 20 982 1609 119815 26510 2.51905 2.51905 -106.481 -2.51905 0 0 666494. 2306.21 0.27 0.07 0.13 -1 -1 0.27 0.0268969 0.0238299 114 57 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.86 vpr 62.73 MiB 0.02 7064 -1 -1 1 0.04 -1 -1 30264 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1002 18711 5900 10256 2555 62.7 MiB 0.29 0.01 3.50686 -122.446 -3.50686 3.50686 0.89 0.000813943 0.000751207 0.072913 0.0673444 32 2471 22 6.65987e+06 405696 554710. 1919.41 1.08 0.171808 0.153238 22834 132086 -1 2110 19 1562 2630 232117 50462 3.18117 3.18117 -120.591 -3.18117 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0310301 0.0273928 143 55 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.70 vpr 62.58 MiB 0.03 6956 -1 -1 1 0.04 -1 -1 30624 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.2 MiB 0.29 942 7973 1567 6126 280 62.6 MiB 0.15 0.01 4.02327 -135.611 -4.02327 4.02327 0.92 0.000683191 0.000628139 0.0316758 0.0292119 32 2763 26 6.65987e+06 431052 554710. 1919.41 1.12 0.137792 0.12192 22834 132086 -1 2301 21 1936 3040 306992 66787 3.93877 3.93877 -147.254 -3.93877 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0356022 0.0313867 156 60 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.95 vpr 62.12 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30604 -1 -1 18 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.5 MiB 0.17 686 7177 1709 4538 930 62.1 MiB 0.11 0.00 3.15358 -93.6229 -3.15358 3.15358 0.80 0.000622594 0.000576119 0.0285354 0.0264298 28 1771 18 6.65987e+06 228204 500653. 1732.36 0.88 0.102193 0.0898388 21970 115934 -1 1604 18 1025 1695 140190 31422 2.67639 2.67639 -95.1552 -2.67639 0 0 612192. 2118.31 0.23 0.06 0.12 -1 -1 0.23 0.022238 0.0197313 107 21 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.42 vpr 62.94 MiB 0.03 6992 -1 -1 1 0.04 -1 -1 30388 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1074 13992 4161 7846 1985 62.9 MiB 0.24 0.00 3.5141 -125.301 -3.5141 3.5141 0.77 0.000828443 0.000765358 0.0665097 0.0614525 32 2632 23 6.65987e+06 253560 554710. 1919.41 1.03 0.162046 0.144027 22834 132086 -1 2355 22 1855 3248 342583 71983 3.21037 3.21037 -128.366 -3.21037 0 0 701300. 2426.64 0.23 0.12 0.13 -1 -1 0.23 0.0363941 0.0320263 146 60 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 6.97 vpr 62.88 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30352 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.1 MiB 0.34 934 18323 6450 8556 3317 62.9 MiB 0.22 0.00 3.6343 -123.732 -3.6343 3.6343 0.80 0.000805726 0.000743997 0.0693651 0.0641026 36 2162 19 6.65987e+06 431052 612192. 2118.31 3.29 0.290213 0.254114 23410 145293 -1 1756 16 1114 1612 157913 32547 2.82271 2.82271 -112.641 -2.82271 0 0 782063. 2706.10 0.30 0.07 0.15 -1 -1 0.30 0.0265166 0.0235769 142 54 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.07 vpr 62.29 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30112 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.19 832 15430 4777 8349 2304 62.3 MiB 0.21 0.00 2.83964 -101.748 -2.83964 2.83964 0.78 0.00073185 0.000675348 0.0553832 0.0511662 30 1934 17 6.65987e+06 380340 526063. 1820.29 0.95 0.14232 0.126241 22546 126617 -1 1617 15 847 1196 86107 18561 2.15051 2.15051 -96.3351 -2.15051 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0237675 0.0210174 118 62 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.71 vpr 61.74 MiB 0.02 6716 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63220 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.3 MiB 0.10 661 10835 3152 6204 1479 61.7 MiB 0.12 0.00 2.60038 -85.2282 -2.60038 2.60038 0.77 0.000544769 0.000503507 0.0379589 0.0350945 28 1463 18 6.65987e+06 190170 500653. 1732.36 0.86 0.100273 0.088513 21970 115934 -1 1318 14 564 830 71903 15423 1.71865 1.71865 -76.5922 -1.71865 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.017355 0.0152798 85 29 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.50 vpr 62.48 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30508 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.8 MiB 0.22 855 13768 4604 7573 1591 62.5 MiB 0.18 0.00 3.94338 -122.155 -3.94338 3.94338 0.89 0.000532068 0.000482857 0.0531572 0.048896 32 1972 27 6.65987e+06 202848 554710. 1919.41 1.04 0.145661 0.128744 22834 132086 -1 1766 20 997 1544 144870 30566 2.95431 2.95431 -117.826 -2.95431 0 0 701300. 2426.64 0.23 0.07 0.13 -1 -1 0.23 0.0289844 0.0254732 113 55 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.28 vpr 62.97 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30196 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.4 MiB 0.07 1021 12248 3399 7922 927 63.0 MiB 0.20 0.01 3.9823 -134.861 -3.9823 3.9823 0.91 0.000803627 0.000743534 0.0453711 0.0419223 26 2598 19 6.65987e+06 431052 477104. 1650.88 1.07 0.13307 0.117994 21682 110474 -1 2271 20 1637 2360 234239 49375 3.58751 3.58751 -136.586 -3.58751 0 0 585099. 2024.56 0.24 0.09 0.13 -1 -1 0.24 0.0337972 0.0300788 145 31 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.61 vpr 62.72 MiB 0.05 7272 -1 -1 1 0.04 -1 -1 30540 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.31 1084 15644 4587 8678 2379 62.7 MiB 0.25 0.01 3.46744 -121.209 -3.46744 3.46744 0.80 0.000910599 0.000841222 0.064575 0.0597192 32 2803 25 6.65987e+06 456408 554710. 1919.41 1.06 0.17788 0.157272 22834 132086 -1 2353 20 1566 2368 237026 50182 3.58025 3.58025 -125.949 -3.58025 0 0 701300. 2426.64 0.23 0.10 0.14 -1 -1 0.23 0.0363002 0.0318617 149 108 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.05 vpr 61.94 MiB 0.04 6664 -1 -1 1 0.03 -1 -1 30688 -1 -1 17 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63424 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.3 MiB 0.18 410 10345 3142 6004 1199 61.9 MiB 0.09 0.00 2.61938 -68.655 -2.61938 2.61938 0.88 0.000475293 0.000437961 0.0326121 0.0300596 30 1104 16 6.65987e+06 215526 526063. 1820.29 0.88 0.0791356 0.0700718 22546 126617 -1 925 15 425 632 39743 10042 2.04305 2.04305 -69.5237 -2.04305 0 0 666494. 2306.21 0.23 0.04 0.13 -1 -1 0.23 0.0156808 0.0138607 77 21 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.44 vpr 62.75 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1123 11064 3077 6737 1250 62.7 MiB 0.20 0.00 4.10424 -135.549 -4.10424 4.10424 0.90 0.000759355 0.000702963 0.0449625 0.0415504 32 2649 23 6.65987e+06 253560 554710. 1919.41 1.09 0.133131 0.118342 22834 132086 -1 2275 21 1697 2847 274287 58311 3.81777 3.81777 -136.46 -3.81777 0 0 701300. 2426.64 0.28 0.10 0.14 -1 -1 0.28 0.0308668 0.0273658 137 -1 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.08 vpr 61.64 MiB 0.03 6748 -1 -1 1 0.03 -1 -1 30468 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63124 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.1 MiB 0.05 594 8553 1943 6358 252 61.6 MiB 0.09 0.00 2.22607 -81.0919 -2.22607 2.22607 0.87 0.000541374 0.000499385 0.0244718 0.0224484 28 1480 20 6.65987e+06 164814 500653. 1732.36 1.01 0.0808231 0.0713107 21970 115934 -1 1335 16 654 841 73133 16653 1.88005 1.88005 -79.6313 -1.88005 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0173472 0.015316 81 -1 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.31 vpr 62.77 MiB 0.04 7048 -1 -1 1 0.04 -1 -1 30620 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1112 19189 6002 11213 1974 62.8 MiB 0.29 0.01 4.06247 -140.472 -4.06247 4.06247 0.76 0.000807905 0.000745047 0.0723585 0.066881 32 2623 31 6.65987e+06 418374 554710. 1919.41 1.06 0.179732 0.159785 22834 132086 -1 2274 20 1744 2646 251145 52992 3.52217 3.52217 -137.344 -3.52217 0 0 701300. 2426.64 0.28 0.10 0.17 -1 -1 0.28 0.0330698 0.0295783 151 21 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.13 vpr 62.79 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30128 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1134 16059 4004 10217 1838 62.8 MiB 0.26 0.01 3.38184 -119.391 -3.38184 3.38184 0.79 0.000764051 0.000706596 0.0566497 0.0524286 30 2519 20 6.65987e+06 443730 526063. 1820.29 0.96 0.146793 0.130558 22546 126617 -1 2144 20 1350 2172 193746 37851 2.57805 2.57805 -112.436 -2.57805 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0308953 0.0272722 150 -1 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.73 vpr 62.85 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30548 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.5 MiB 0.13 1120 14463 4038 8924 1501 62.8 MiB 0.25 0.01 3.91784 -136.256 -3.91784 3.91784 0.77 0.000849722 0.000780196 0.0566019 0.0523317 28 2849 26 6.65987e+06 443730 500653. 1732.36 1.52 0.164596 0.145846 21970 115934 -1 2389 21 1720 2858 250057 52904 3.28251 3.28251 -132.109 -3.28251 0 0 612192. 2118.31 0.23 0.11 0.12 -1 -1 0.23 0.0381681 0.0335758 153 54 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.84 vpr 62.15 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 30144 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.7 MiB 0.06 736 8191 2107 5347 737 62.1 MiB 0.13 0.00 2.8895 -100.047 -2.8895 2.8895 0.77 0.000667264 0.00061674 0.0348295 0.0322396 28 2070 19 6.65987e+06 190170 500653. 1732.36 0.92 0.11267 0.0993028 21970 115934 -1 1832 17 1063 1714 154274 33200 2.60051 2.60051 -103.823 -2.60051 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0243261 0.0216314 106 31 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.22 vpr 62.52 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30144 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 832 12156 3666 7026 1464 62.5 MiB 0.15 0.00 3.4951 -115.55 -3.4951 3.4951 0.89 0.000687191 0.000634907 0.0416457 0.0382746 32 1923 21 6.65987e+06 240882 554710. 1919.41 0.99 0.114676 0.101024 22834 132086 -1 1735 16 1057 1519 138503 30642 3.21657 3.21657 -118.479 -3.21657 0 0 701300. 2426.64 0.28 0.06 0.14 -1 -1 0.28 0.0207145 0.0183615 115 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.94 vpr 62.20 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30368 -1 -1 20 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63688 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.7 MiB 0.11 590 7820 1903 5456 461 62.2 MiB 0.13 0.00 3.4309 -99.7277 -3.4309 3.4309 0.77 0.000665597 0.00060898 0.0314568 0.0291132 32 1811 24 6.65987e+06 253560 554710. 1919.41 0.95 0.111514 0.0983713 22834 132086 -1 1514 23 1360 2299 192082 46653 2.87211 2.87211 -100.239 -2.87211 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0281576 0.0245821 107 27 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.15 vpr 62.48 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30304 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.10 686 12008 2561 8162 1285 62.5 MiB 0.14 0.00 3.4859 -118.026 -3.4859 3.4859 0.77 0.000658787 0.000612999 0.0470784 0.0435711 32 2249 37 6.65987e+06 228204 554710. 1919.41 1.11 0.143757 0.126884 22834 132086 -1 1782 21 1414 2159 211771 48532 2.96277 2.96277 -119.084 -2.96277 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0278342 0.0244271 125 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.54 vpr 62.25 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30212 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63740 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.6 MiB 0.09 778 11809 2809 7761 1239 62.2 MiB 0.17 0.00 3.29178 -109.233 -3.29178 3.29178 0.88 0.000578476 0.000530307 0.0370845 0.0341519 26 2303 28 6.65987e+06 393018 477104. 1650.88 1.38 0.126576 0.111713 21682 110474 -1 2003 21 1419 2284 214032 47047 2.77445 2.77445 -112.463 -2.77445 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0283179 0.024823 119 26 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.10 vpr 62.39 MiB 0.05 6896 -1 -1 1 0.04 -1 -1 30212 -1 -1 30 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.6 MiB 0.22 717 8047 1725 5786 536 62.4 MiB 0.12 0.00 2.76744 -86.2128 -2.76744 2.76744 0.77 0.000683422 0.000632182 0.0296144 0.0273969 32 1820 27 6.65987e+06 380340 554710. 1919.41 0.95 0.116933 0.102498 22834 132086 -1 1587 18 946 1565 143475 31436 2.18751 2.18751 -85.4353 -2.18751 0 0 701300. 2426.64 0.25 0.07 0.16 -1 -1 0.25 0.0252052 0.0220921 109 55 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 7.35 vpr 62.77 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30504 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.4 MiB 0.31 1246 13117 3185 8526 1406 62.8 MiB 0.26 0.01 4.16036 -141.523 -4.16036 4.16036 0.89 0.000971486 0.000899869 0.0503793 0.0466294 28 3505 33 6.65987e+06 494442 500653. 1732.36 3.69 0.291102 0.255931 21970 115934 -1 2937 20 1876 3284 327080 66990 4.20823 4.20823 -153.954 -4.20823 0 0 612192. 2118.31 0.25 0.12 0.12 -1 -1 0.25 0.036619 0.0326972 179 26 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.53 vpr 62.59 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30440 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1041 9447 2232 6542 673 62.6 MiB 0.16 0.00 3.5061 -122.514 -3.5061 3.5061 0.89 0.00075633 0.000691905 0.0345284 0.0317083 32 2437 19 6.65987e+06 443730 554710. 1919.41 1.08 0.127514 0.112779 22834 132086 -1 2103 21 1792 2638 234590 49464 2.84877 2.84877 -117.967 -2.84877 0 0 701300. 2426.64 0.28 0.10 0.14 -1 -1 0.28 0.0349374 0.0311387 152 62 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.62 vpr 62.65 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30496 -1 -1 28 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 23.9 MiB 0.32 709 5599 957 4403 239 62.7 MiB 0.09 0.00 3.18838 -103.883 -3.18838 3.18838 0.80 0.000547263 0.00049959 0.0175018 0.0160114 26 2171 27 6.65987e+06 354984 477104. 1650.88 1.45 0.108951 0.0945653 21682 110474 -1 1804 23 1187 1881 170156 37941 2.74045 2.74045 -107.323 -2.74045 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0324264 0.0283409 113 77 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.38 vpr 62.96 MiB 0.04 7128 -1 -1 1 0.05 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1062 14541 4862 7202 2477 63.0 MiB 0.23 0.00 3.4921 -118.867 -3.4921 3.4921 0.77 0.000613734 0.000559673 0.0552061 0.050577 32 2482 20 6.65987e+06 266238 554710. 1919.41 0.99 0.152005 0.134486 22834 132086 -1 2162 17 1550 2542 231433 48092 3.06217 3.06217 -116.284 -3.06217 0 0 701300. 2426.64 0.29 0.09 0.14 -1 -1 0.29 0.0306317 0.0271457 148 59 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.30 vpr 63.09 MiB 0.04 7144 -1 -1 1 0.04 -1 -1 30460 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1075 7953 1851 5455 647 63.1 MiB 0.16 0.00 4.84238 -140.996 -4.84238 4.84238 0.77 0.000908548 0.000841038 0.0423867 0.0392741 30 2423 18 6.65987e+06 266238 526063. 1820.29 1.01 0.140354 0.123628 22546 126617 -1 2013 16 894 1488 92373 20895 3.61771 3.61771 -130.591 -3.61771 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.03076 0.0271693 149 111 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.54 vpr 62.85 MiB 0.03 7284 -1 -1 1 0.03 -1 -1 30468 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.1 MiB 0.43 977 8868 2457 6032 379 62.8 MiB 0.16 0.00 4.78027 -132.334 -4.78027 4.78027 0.89 0.000634127 0.000578076 0.0381655 0.035227 30 2244 19 6.65987e+06 266238 526063. 1820.29 0.97 0.131884 0.116398 22546 126617 -1 2005 15 892 1413 106837 23489 3.56377 3.56377 -124.535 -3.56377 0 0 666494. 2306.21 0.23 0.07 0.15 -1 -1 0.23 0.0283007 0.0251995 143 86 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.73 vpr 62.51 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30332 -1 -1 33 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1043 11922 3052 7896 974 62.5 MiB 0.20 0.00 3.40784 -114.93 -3.40784 3.40784 0.77 0.000821812 0.000758822 0.0475937 0.0439298 26 2888 40 6.65987e+06 418374 477104. 1650.88 1.48 0.170832 0.150347 21682 110474 -1 2380 23 1666 2858 270377 56288 2.97205 2.97205 -115.427 -2.97205 0 0 585099. 2024.56 0.22 0.10 0.11 -1 -1 0.22 0.0379183 0.033572 146 58 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.29 vpr 62.70 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30564 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1091 9903 2241 6952 710 62.7 MiB 0.17 0.01 3.91784 -134.792 -3.91784 3.91784 0.77 0.000835167 0.00077207 0.0391575 0.0362231 30 2598 28 6.65987e+06 443730 526063. 1820.29 1.06 0.146784 0.129315 22546 126617 -1 2286 22 1602 2407 193009 39771 3.47091 3.47091 -134.362 -3.47091 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0370745 0.0326516 154 42 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.80 vpr 62.99 MiB 0.03 7252 -1 -1 1 0.03 -1 -1 30764 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.27 1177 18648 4595 11838 2215 63.0 MiB 0.37 0.01 4.0593 -137.323 -4.0593 4.0593 0.82 0.000999266 0.000924531 0.0800799 0.0741939 30 2867 24 6.65987e+06 507120 526063. 1820.29 1.12 0.203662 0.181035 22546 126617 -1 2333 20 1710 2780 223452 45932 3.59957 3.59957 -134.82 -3.59957 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0401891 0.0354539 184 91 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.17 vpr 62.52 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30728 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.8 MiB 0.13 685 11806 2914 7153 1739 62.5 MiB 0.17 0.00 3.55518 -111.493 -3.55518 3.55518 0.79 0.000687332 0.000634359 0.0487388 0.0451476 32 2040 23 6.65987e+06 228204 554710. 1919.41 1.03 0.136711 0.120786 22834 132086 -1 1691 19 1368 2124 202660 44717 3.02691 3.02691 -110.608 -3.02691 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0292326 0.0259607 116 24 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.96 vpr 62.96 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30360 -1 -1 36 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.30 976 9675 2155 7053 467 63.0 MiB 0.17 0.01 4.0281 -131.561 -4.0281 4.0281 0.90 0.000791079 0.000730042 0.0357624 0.033045 28 2622 27 6.65987e+06 456408 500653. 1732.36 1.37 0.138694 0.122947 21970 115934 -1 2361 20 1625 2487 205674 45501 3.75231 3.75231 -142.013 -3.75231 0 0 612192. 2118.31 0.25 0.09 0.12 -1 -1 0.25 0.0328713 0.029299 150 59 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.53 vpr 62.52 MiB 0.03 7032 -1 -1 1 0.03 -1 -1 30680 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1040 11641 3109 7665 867 62.5 MiB 0.20 0.01 3.62624 -117.445 -3.62624 3.62624 0.89 0.000816617 0.000756783 0.0443292 0.0409063 28 2798 22 6.65987e+06 418374 500653. 1732.36 1.10 0.139493 0.123745 21970 115934 -1 2364 20 1534 2676 239893 51271 2.77471 2.77471 -114.222 -2.77471 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0314917 0.0280045 148 54 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 7.11 vpr 62.69 MiB 0.03 6892 -1 -1 1 0.03 -1 -1 30304 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.0 MiB 0.17 853 8685 1897 5601 1187 62.7 MiB 0.14 0.00 4.14936 -138.467 -4.14936 4.14936 0.81 0.000785416 0.000726946 0.0385489 0.0356684 34 3080 28 6.65987e+06 253560 585099. 2024.56 3.84 0.244941 0.215119 23122 138558 -1 2131 22 1805 3226 268798 62833 3.95497 3.95497 -148.55 -3.95497 0 0 742403. 2568.87 0.26 0.10 0.15 -1 -1 0.26 0.0338301 0.0298194 150 -1 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.34 vpr 63.05 MiB 0.05 7160 -1 -1 1 0.04 -1 -1 30344 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1097 11798 3144 7589 1065 63.1 MiB 0.21 0.01 3.29555 -116.715 -3.29555 3.29555 0.77 0.000860825 0.000794559 0.0479499 0.0443194 32 2479 25 6.65987e+06 431052 554710. 1919.41 1.00 0.153585 0.135586 22834 132086 -1 2250 18 1335 1882 176662 38406 2.60625 2.60625 -113.541 -2.60625 0 0 701300. 2426.64 0.23 0.08 0.15 -1 -1 0.23 0.031799 0.0280715 145 81 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.74 vpr 62.57 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30352 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1042 7623 1446 5778 399 62.6 MiB 0.16 0.01 3.5841 -121.365 -3.5841 3.5841 0.89 0.000860827 0.000793306 0.0291903 0.0269685 32 2671 26 6.65987e+06 443730 554710. 1919.41 1.06 0.127952 0.112743 22834 132086 -1 2323 25 1690 2960 280655 59458 3.14937 3.14937 -121.742 -3.14937 0 0 701300. 2426.64 0.28 0.11 0.14 -1 -1 0.28 0.0380475 0.0336565 146 58 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.62 vpr 62.63 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30428 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1118 19136 5296 11671 2169 62.6 MiB 0.31 0.01 3.42984 -118.83 -3.42984 3.42984 0.86 0.000841776 0.000777279 0.0675386 0.0622409 32 2652 17 6.65987e+06 469086 554710. 1919.41 1.05 0.1558 0.138862 22834 132086 -1 2237 20 1603 2448 225438 48631 2.86171 2.86171 -113.456 -2.86171 0 0 701300. 2426.64 0.26 0.09 0.14 -1 -1 0.26 0.0334253 0.029812 155 61 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.28 vpr 62.58 MiB 0.02 7096 -1 -1 1 0.04 -1 -1 30652 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.2 MiB 0.07 1049 17883 5721 9099 3063 62.6 MiB 0.27 0.00 4.02327 -139.097 -4.02327 4.02327 0.76 0.000798978 0.000738908 0.0658598 0.0608693 32 2667 24 6.65987e+06 443730 554710. 1919.41 1.11 0.165811 0.147371 22834 132086 -1 2293 19 1857 2955 271071 57509 3.49097 3.49097 -134.846 -3.49097 0 0 701300. 2426.64 0.28 0.10 0.14 -1 -1 0.28 0.0317472 0.0284423 150 21 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.69 vpr 62.55 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30728 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1032 17491 4961 10150 2380 62.5 MiB 0.26 0.01 3.95704 -138.916 -3.95704 3.95704 0.92 0.000659677 0.000604361 0.0608898 0.0560781 32 2576 27 6.65987e+06 469086 554710. 1919.41 1.13 0.166566 0.148239 22834 132086 -1 2253 21 1800 2706 290137 59417 3.59411 3.59411 -141.056 -3.59411 0 0 701300. 2426.64 0.23 0.11 0.14 -1 -1 0.23 0.0350824 0.0308988 153 50 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.66 vpr 62.66 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30472 -1 -1 34 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1081 15859 4297 9232 2330 62.7 MiB 0.25 0.01 4.24338 -127.817 -4.24338 4.24338 0.85 0.000882876 0.000813993 0.0623383 0.0573044 28 2725 20 6.65987e+06 431052 500653. 1732.36 1.14 0.172412 0.15371 21970 115934 -1 2427 17 1147 2056 161089 35685 3.54025 3.54025 -127.175 -3.54025 0 0 612192. 2118.31 0.24 0.08 0.12 -1 -1 0.24 0.0306113 0.0272709 145 110 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.59 vpr 62.87 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30436 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.5 MiB 0.25 1088 15822 4733 9518 1571 62.9 MiB 0.28 0.01 4.01118 -127.976 -4.01118 4.01118 0.80 0.000879548 0.00081263 0.0792566 0.0732988 32 2709 22 6.65987e+06 253560 554710. 1919.41 1.03 0.184787 0.16439 22834 132086 -1 2407 18 1704 3075 282226 58728 3.17765 3.17765 -126.744 -3.17765 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0341899 0.0302362 149 86 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.04 vpr 62.33 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30608 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.8 MiB 0.06 798 8401 2034 5819 548 62.3 MiB 0.14 0.00 3.27158 -111.236 -3.27158 3.27158 0.82 0.000702082 0.000641541 0.0299656 0.0276612 30 1974 22 6.65987e+06 380340 526063. 1820.29 1.08 0.114358 0.100498 22546 126617 -1 1688 20 1011 1648 118753 27103 2.48705 2.48705 -106.136 -2.48705 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0278211 0.0244563 124 20 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.28 vpr 62.58 MiB 0.03 7000 -1 -1 1 0.04 -1 -1 30456 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.8 MiB 0.26 912 11830 3154 7792 884 62.6 MiB 0.19 0.00 3.41618 -118.934 -3.41618 3.41618 0.77 0.000765582 0.000706701 0.0533875 0.0493339 32 2231 21 6.65987e+06 228204 554710. 1919.41 1.01 0.14561 0.1291 22834 132086 -1 2017 15 1236 1901 166310 36204 2.88191 2.88191 -120.078 -2.88191 0 0 701300. 2426.64 0.23 0.07 0.14 -1 -1 0.23 0.0247636 0.0218897 121 91 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.94 vpr 63.01 MiB 0.04 7204 -1 -1 1 0.05 -1 -1 30784 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.8 MiB 0.17 1362 14988 3862 9734 1392 63.0 MiB 0.27 0.01 4.6627 -159.741 -4.6627 4.6627 0.88 0.000980556 0.000908723 0.0590303 0.0545121 32 3225 30 6.65987e+06 507120 554710. 1919.41 1.29 0.187201 0.16586 22834 132086 -1 2787 21 2487 3966 359693 78795 4.24457 4.24457 -166.909 -4.24457 0 0 701300. 2426.64 0.23 0.12 0.14 -1 -1 0.23 0.0402971 0.0356401 187 53 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.30 vpr 62.72 MiB 0.03 6928 -1 -1 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.1 MiB 0.24 954 14567 4735 7432 2400 62.7 MiB 0.23 0.00 3.51422 -121.562 -3.51422 3.51422 0.77 0.000795537 0.000735506 0.0570652 0.0528493 32 2433 22 6.65987e+06 393018 554710. 1919.41 1.01 0.154054 0.136892 22834 132086 -1 2084 18 1417 2063 192778 42705 2.99617 2.99617 -117.282 -2.99617 0 0 701300. 2426.64 0.28 0.05 0.14 -1 -1 0.28 0.0163658 0.0146613 146 31 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.08 vpr 62.24 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30304 -1 -1 30 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63736 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.7 MiB 0.11 839 17066 5534 9253 2279 62.2 MiB 0.22 0.00 3.49012 -114.14 -3.49012 3.49012 0.77 0.000668154 0.000618363 0.0571389 0.0527978 32 1821 20 6.65987e+06 380340 554710. 1919.41 0.93 0.136351 0.12102 22834 132086 -1 1677 23 1294 1854 172055 36536 2.87297 2.87297 -107.322 -2.87297 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0298967 0.0261547 115 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.97 vpr 63.02 MiB 0.03 7344 -1 -1 1 0.04 -1 -1 31008 -1 -1 43 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.8 MiB 0.56 1333 18829 5161 11634 2034 63.0 MiB 0.36 0.01 4.64147 -157.361 -4.64147 4.64147 0.78 0.0010672 0.000989825 0.0840174 0.0774991 30 2743 21 6.65987e+06 545154 526063. 1820.29 1.17 0.21227 0.189983 22546 126617 -1 2389 20 1878 2839 183467 40618 4.17837 4.17837 -156.388 -4.17837 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0413686 0.0364793 186 109 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.54 vpr 62.41 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30548 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1044 16340 4500 10034 1806 62.4 MiB 0.22 0.00 4.15932 -143.209 -4.15932 4.15932 0.88 0.00057705 0.000527467 0.0523443 0.0481633 28 2455 22 6.65987e+06 456408 500653. 1732.36 1.08 0.13404 0.119579 21970 115934 -1 2154 18 1258 1841 156902 33104 3.65243 3.65243 -141.562 -3.65243 0 0 612192. 2118.31 0.22 0.08 0.13 -1 -1 0.22 0.030218 0.026718 151 31 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.11 vpr 62.12 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30420 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63612 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.6 MiB 0.09 722 13703 3609 8489 1605 62.1 MiB 0.23 0.00 3.4859 -117.474 -3.4859 3.4859 0.79 0.000671601 0.000620192 0.0462196 0.0424534 28 2201 23 6.65987e+06 393018 500653. 1732.36 1.02 0.12987 0.11469 21970 115934 -1 1890 20 1278 2034 171991 38841 2.88177 2.88177 -119.579 -2.88177 0 0 612192. 2118.31 0.21 0.08 0.13 -1 -1 0.21 0.0269308 0.0236795 123 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.47 vpr 62.84 MiB 0.03 7200 -1 -1 1 0.03 -1 -1 30876 -1 -1 41 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1337 12702 3419 8223 1060 62.8 MiB 0.23 0.01 4.90437 -166.477 -4.90437 4.90437 0.77 0.000928126 0.000859859 0.0488845 0.0452858 30 2867 20 6.65987e+06 519798 526063. 1820.29 1.16 0.159 0.140728 22546 126617 -1 2471 24 1924 3323 256854 53471 4.65523 4.65523 -168.564 -4.65523 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0435575 0.0383041 188 26 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 6.13 vpr 62.14 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30464 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63632 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.12 852 11260 3935 5447 1878 62.1 MiB 0.15 0.00 3.4749 -119.679 -3.4749 3.4749 0.77 0.000667259 0.000617073 0.0460652 0.042674 34 2036 27 6.65987e+06 202848 585099. 2024.56 3.09 0.212644 0.185679 23122 138558 -1 1743 17 1227 1977 190054 38913 2.91097 2.91097 -116.247 -2.91097 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0239117 0.0211263 121 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.12 vpr 62.25 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30124 -1 -1 31 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63748 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.7 MiB 0.24 707 8073 1842 5622 609 62.3 MiB 0.13 0.00 3.47387 -110.471 -3.47387 3.47387 0.78 0.000667127 0.000617087 0.0284037 0.0262627 28 2009 20 6.65987e+06 393018 500653. 1732.36 0.96 0.105519 0.0928299 21970 115934 -1 1715 20 1108 1805 143282 32556 2.96317 2.96317 -112.365 -2.96317 0 0 612192. 2118.31 0.21 0.07 0.10 -1 -1 0.21 0.0270163 0.0237188 113 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.27 vpr 63.05 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30400 -1 -1 33 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.31 964 15856 4550 8712 2594 63.1 MiB 0.25 0.01 3.50895 -109.722 -3.50895 3.50895 0.77 0.000801089 0.000739087 0.0623339 0.057549 30 1959 23 6.65987e+06 418374 526063. 1820.29 0.94 0.160173 0.142043 22546 126617 -1 1698 18 1019 1736 108326 23723 2.53617 2.53617 -99.8099 -2.53617 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.030039 0.0265522 133 81 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.36 vpr 62.85 MiB 0.04 7072 -1 -1 1 0.04 -1 -1 30668 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1002 7770 1874 5369 527 62.8 MiB 0.15 0.00 4.0593 -140.547 -4.0593 4.0593 0.80 0.000849419 0.000785676 0.0361867 0.0334842 32 2472 22 6.65987e+06 253560 554710. 1919.41 1.12 0.139332 0.122969 22834 132086 -1 2209 22 2006 3033 336631 67865 3.54837 3.54837 -141.623 -3.54837 0 0 701300. 2426.64 0.27 0.12 0.14 -1 -1 0.27 0.036022 0.0320833 151 53 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.96 vpr 62.59 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30748 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.45 1039 19223 6359 10018 2846 62.6 MiB 0.29 0.01 4.06007 -140.169 -4.06007 4.06007 0.89 0.000846043 0.000782505 0.0692531 0.0638111 28 2641 19 6.65987e+06 431052 500653. 1732.36 1.20 0.168049 0.149674 21970 115934 -1 2295 22 1831 3093 255929 53834 3.62937 3.62937 -141.862 -3.62937 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0366991 0.0323183 152 55 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.17 vpr 62.68 MiB 0.04 6904 -1 -1 1 0.04 -1 -1 30460 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.9 MiB 0.22 697 8614 1900 5780 934 62.7 MiB 0.13 0.00 3.41884 -113.998 -3.41884 3.41884 0.76 0.00074357 0.000686795 0.0324094 0.02996 32 1978 20 6.65987e+06 380340 554710. 1919.41 0.96 0.118711 0.104437 22834 132086 -1 1629 20 1269 1999 182521 39420 2.74151 2.74151 -109.761 -2.74151 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0294718 0.0258799 120 55 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.31 vpr 62.59 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.29 800 12464 4465 5577 2422 62.6 MiB 0.19 0.00 3.46898 -107.312 -3.46898 3.46898 0.80 0.000731561 0.000675508 0.0555126 0.0513095 32 2017 19 6.65987e+06 215526 554710. 1919.41 0.94 0.143008 0.127074 22834 132086 -1 1741 18 1095 1921 164371 36942 2.76045 2.76045 -104.764 -2.76045 0 0 701300. 2426.64 0.23 0.07 0.14 -1 -1 0.23 0.0271444 0.0238475 109 82 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.85 vpr 63.10 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30484 -1 -1 33 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.4 MiB 0.22 996 12623 3384 8308 931 63.1 MiB 0.19 0.01 3.33164 -109.888 -3.33164 3.33164 0.89 0.000775385 0.000723066 0.0454437 0.0418912 26 2568 23 6.65987e+06 418374 477104. 1650.88 1.45 0.145203 0.129338 21682 110474 -1 2150 17 1247 2008 166668 35890 2.93891 2.93891 -111.871 -2.93891 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0282344 0.0249489 137 52 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.07 vpr 62.69 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 24.1 MiB 0.09 995 16207 5283 8775 2149 62.7 MiB 0.25 0.01 4.24344 -123.397 -4.24344 4.24344 0.77 0.000719825 0.00066592 0.0598367 0.055368 28 2388 23 6.65987e+06 393018 500653. 1732.36 1.01 0.14845 0.131789 21970 115934 -1 2125 22 1515 2477 228152 47948 3.71237 3.71237 -127.875 -3.71237 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.031491 0.027671 133 20 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.22 vpr 62.61 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30256 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.9 MiB 0.30 727 13152 3808 7208 2136 62.6 MiB 0.19 0.00 3.5343 -112.204 -3.5343 3.5343 0.76 0.00070036 0.000647218 0.0560463 0.0518405 30 1866 19 6.65987e+06 228204 526063. 1820.29 0.94 0.137844 0.122292 22546 126617 -1 1601 20 1106 1855 131040 29004 2.94697 2.94697 -109.438 -2.94697 0 0 666494. 2306.21 0.23 0.07 0.15 -1 -1 0.23 0.0282053 0.0247816 114 58 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.25 vpr 62.70 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 23.9 MiB 0.29 910 8164 2057 5403 704 62.7 MiB 0.13 0.00 3.44398 -109.924 -3.44398 3.44398 0.89 0.000674395 0.000619566 0.0349773 0.0322407 30 1921 18 6.65987e+06 202848 526063. 1820.29 0.96 0.1118 0.0988094 22546 126617 -1 1678 17 815 1373 99053 21169 2.53845 2.53845 -101.554 -2.53845 0 0 666494. 2306.21 0.23 0.06 0.09 -1 -1 0.23 0.0269488 0.0238305 113 88 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.05 vpr 62.68 MiB 0.07 6988 -1 -1 1 0.03 -1 -1 30168 -1 -1 35 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.0 MiB 0.13 1101 12023 3143 7728 1152 62.7 MiB 0.20 0.01 4.17558 -139.576 -4.17558 4.17558 0.89 0.00079051 0.000728822 0.0422895 0.0390667 28 2923 47 6.65987e+06 443730 500653. 1732.36 1.62 0.167973 0.148553 21970 115934 -1 2495 20 1520 2473 206001 44726 3.86583 3.86583 -145.716 -3.86583 0 0 612192. 2118.31 0.24 0.10 0.11 -1 -1 0.24 0.0324561 0.029139 150 -1 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 7.28 vpr 62.65 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30584 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1037 13598 4125 8601 872 62.7 MiB 0.23 0.01 4.1263 -141.609 -4.1263 4.1263 0.88 0.000926679 0.000858552 0.0498939 0.0459646 26 3011 29 6.65987e+06 431052 477104. 1650.88 3.84 0.262237 0.230652 21682 110474 -1 2361 22 1858 3138 268064 58247 3.73137 3.73137 -143.001 -3.73137 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0364956 0.0321196 153 57 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 10.44 vpr 62.53 MiB 0.03 7032 -1 -1 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1033 10448 2380 7653 415 62.5 MiB 0.19 0.01 4.16458 -142.258 -4.16458 4.16458 0.76 0.000812664 0.0007574 0.0425003 0.0392324 26 3740 46 6.65987e+06 431052 477104. 1650.88 7.19 0.284299 0.24751 21682 110474 -1 2655 20 1818 3071 340604 71940 3.61823 3.61823 -144.403 -3.61823 0 0 585099. 2024.56 0.24 0.12 0.11 -1 -1 0.24 0.0344937 0.0307228 151 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.51 vpr 62.54 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30436 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.26 982 9031 1878 6401 752 62.5 MiB 0.16 0.01 3.86706 -126.941 -3.86706 3.86706 0.89 0.000906041 0.000839315 0.0345536 0.0319712 30 2529 22 6.65987e+06 469086 526063. 1820.29 1.06 0.132586 0.117299 22546 126617 -1 2112 20 1255 2095 142737 32068 3.17551 3.17551 -123.694 -3.17551 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0336794 0.0297379 148 62 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.29 vpr 62.45 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63944 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.6 MiB 0.19 656 10400 2388 7389 623 62.4 MiB 0.16 0.00 3.50927 -110.79 -3.50927 3.50927 0.77 0.000666813 0.000616417 0.0429834 0.0398146 28 2115 34 6.65987e+06 228204 500653. 1732.36 1.22 0.135765 0.119567 21970 115934 -1 1699 20 1090 1687 166819 38026 2.84877 2.84877 -111.687 -2.84877 0 0 612192. 2118.31 0.21 0.08 0.14 -1 -1 0.21 0.0273344 0.0240239 112 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.23 vpr 62.76 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.1 MiB 0.24 986 11613 3437 7269 907 62.8 MiB 0.21 0.00 4.19776 -134.76 -4.19776 4.19776 0.78 0.000802227 0.000741721 0.0538872 0.0498998 32 2169 21 6.65987e+06 278916 554710. 1919.41 0.98 0.149736 0.132829 22834 132086 -1 1929 20 1723 2647 229690 49792 3.46043 3.46043 -129.094 -3.46043 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0327172 0.0288573 145 58 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.63 vpr 62.86 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30936 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.6 MiB 0.33 1052 13117 2855 8842 1420 62.9 MiB 0.19 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000929256 0.00085925 0.0534501 0.0494643 32 2933 28 6.65987e+06 494442 554710. 1919.41 1.15 0.172357 0.151736 22834 132086 -1 2389 19 1826 2904 274360 58479 3.40585 3.40585 -136.959 -3.40585 0 0 701300. 2426.64 0.28 0.11 0.14 -1 -1 0.28 0.035399 0.0310931 154 106 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.57 vpr 62.60 MiB 0.03 7180 -1 -1 1 0.03 -1 -1 30752 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1048 9679 2436 6757 486 62.6 MiB 0.18 0.01 3.91106 -131.073 -3.91106 3.91106 0.90 0.000663619 0.000612575 0.0394496 0.0363843 28 2515 23 6.65987e+06 393018 500653. 1732.36 1.19 0.145769 0.129539 21970 115934 -1 2248 20 1612 2620 212351 46751 3.64531 3.64531 -135.301 -3.64531 0 0 612192. 2118.31 0.25 0.09 0.12 -1 -1 0.25 0.0334944 0.0297637 146 79 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.20 vpr 62.86 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30500 -1 -1 30 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.2 MiB 0.25 967 14375 3613 8859 1903 62.9 MiB 0.22 0.00 3.7785 -114.4 -3.7785 3.7785 0.77 0.000821216 0.000759419 0.0534919 0.0493479 30 1999 19 6.65987e+06 380340 526063. 1820.29 0.92 0.148447 0.131447 22546 126617 -1 1714 15 892 1402 93261 20610 2.81476 2.81476 -107.6 -2.81476 0 0 666494. 2306.21 0.27 0.06 0.13 -1 -1 0.27 0.026057 0.0233669 136 83 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.60 vpr 63.01 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30536 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1103 13477 4009 7448 2020 63.0 MiB 0.23 0.00 4.11944 -143.283 -4.11944 4.11944 0.85 0.000685305 0.000628008 0.0595047 0.0548984 32 2971 22 6.65987e+06 266238 554710. 1919.41 1.13 0.156818 0.139519 22834 132086 -1 2491 17 1823 3150 290494 62408 3.62637 3.62637 -141.729 -3.62637 0 0 701300. 2426.64 0.28 0.10 0.14 -1 -1 0.28 0.0304826 0.0273191 154 58 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.24 vpr 62.71 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.1 MiB 0.21 870 10463 2796 6767 900 62.7 MiB 0.18 0.01 3.39684 -102.663 -3.39684 3.39684 0.78 0.000795274 0.000735565 0.0417977 0.0386704 32 2154 17 6.65987e+06 431052 554710. 1919.41 0.98 0.132182 0.116898 22834 132086 -1 1849 20 1313 2151 174635 39049 2.73771 2.73771 -99.1558 -2.73771 0 0 701300. 2426.64 0.28 0.08 0.14 -1 -1 0.28 0.0301084 0.0266291 134 81 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.16 vpr 62.53 MiB 0.02 6740 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.8 MiB 0.10 838 13496 3888 8529 1079 62.5 MiB 0.19 0.00 3.5031 -123.339 -3.5031 3.5031 0.79 0.000676338 0.000624919 0.0546883 0.0505809 32 2193 23 6.65987e+06 202848 554710. 1919.41 0.98 0.136617 0.121313 22834 132086 -1 1944 21 1428 2237 229012 51040 3.04997 3.04997 -124.145 -3.04997 0 0 701300. 2426.64 0.28 0.09 0.14 -1 -1 0.28 0.0281348 0.0247446 116 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.65 vpr 62.60 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30496 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1015 16525 5345 8784 2396 62.6 MiB 0.27 0.01 4.18856 -142.192 -4.18856 4.18856 0.80 0.000841514 0.000777599 0.0662951 0.0612527 32 2631 22 6.65987e+06 418374 554710. 1919.41 1.07 0.172441 0.153273 22834 132086 -1 2153 22 1830 2678 252919 54042 3.66543 3.66543 -140.281 -3.66543 0 0 701300. 2426.64 0.23 0.10 0.14 -1 -1 0.23 0.0367351 0.0323608 150 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.53 vpr 63.02 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30460 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1026 16081 4881 8736 2464 63.0 MiB 0.28 0.00 4.23393 -146.239 -4.23393 4.23393 0.77 0.000849507 0.000785699 0.0769526 0.0711758 32 2631 21 6.65987e+06 266238 554710. 1919.41 1.10 0.181674 0.161966 22834 132086 -1 2322 23 2202 3301 320840 67850 3.69143 3.69143 -144.808 -3.69143 0 0 701300. 2426.64 0.23 0.12 0.14 -1 -1 0.23 0.0382453 0.0337145 157 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.04 vpr 62.33 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30396 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.24 688 16683 5557 7719 3407 62.3 MiB 0.18 0.00 3.44878 -105.048 -3.44878 3.44878 0.86 0.000569301 0.000511699 0.0506791 0.046499 30 2275 37 6.65987e+06 367662 526063. 1820.29 1.57 0.155378 0.13791 22546 126617 -1 1571 19 941 1397 112363 29013 2.79145 2.79145 -100.95 -2.79145 0 0 666494. 2306.21 0.23 0.07 0.14 -1 -1 0.23 0.0285654 0.0252427 111 47 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.03 vpr 62.18 MiB 0.03 6804 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63672 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.7 MiB 0.13 746 13556 4162 7429 1965 62.2 MiB 0.18 0.00 3.4529 -114.38 -3.4529 3.4529 0.80 0.000482188 0.000441549 0.0466177 0.0429848 30 1939 19 6.65987e+06 228204 526063. 1820.29 0.96 0.123856 0.109705 22546 126617 -1 1750 19 1130 1798 133320 29352 2.72277 2.72277 -110.038 -2.72277 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0253842 0.0223601 118 -1 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.34 vpr 62.80 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.2 MiB 0.32 900 5133 854 4121 158 62.8 MiB 0.11 0.00 4.0123 -128.007 -4.0123 4.0123 0.77 0.000807329 0.000746723 0.0220943 0.0204999 32 2266 23 6.65987e+06 405696 554710. 1919.41 0.99 0.114735 0.100503 22834 132086 -1 1968 22 1688 2507 231410 49920 3.32117 3.32117 -125.209 -3.32117 0 0 701300. 2426.64 0.24 0.10 0.15 -1 -1 0.24 0.0348764 0.030646 138 56 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.31 vpr 62.52 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30532 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.24 879 9892 2434 7009 449 62.5 MiB 0.18 0.01 4.11224 -123.302 -4.11224 4.11224 0.79 0.000834176 0.000770937 0.0416156 0.0384706 28 2827 46 6.65987e+06 380340 500653. 1732.36 1.89 0.172799 0.151486 21970 115934 -1 2192 18 1362 2185 190676 43562 3.70851 3.70851 -130.303 -3.70851 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0296583 0.0262864 134 81 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.20 vpr 62.85 MiB 0.06 7156 -1 -1 1 0.04 -1 -1 30508 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.5 MiB 0.08 1224 16515 4921 9863 1731 62.9 MiB 0.30 0.01 4.82096 -159.28 -4.82096 4.82096 0.86 0.00094388 0.000873996 0.0647955 0.0599772 32 3182 23 6.65987e+06 443730 554710. 1919.41 1.64 0.198783 0.17696 22834 132086 -1 2705 22 2244 3489 354569 72789 4.31103 4.31103 -154.247 -4.31103 0 0 701300. 2426.64 0.24 0.12 0.13 -1 -1 0.24 0.0385295 0.0340999 177 -1 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.37 vpr 63.02 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30580 -1 -1 32 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1012 13726 3606 8436 1684 63.0 MiB 0.22 0.00 3.638 -113.448 -3.638 3.638 0.80 0.000779833 0.000721091 0.0531457 0.0491088 32 2213 19 6.65987e+06 405696 554710. 1919.41 1.01 0.145482 0.129044 22834 132086 -1 1948 19 1429 2175 197689 42468 2.83871 2.83871 -109.786 -2.83871 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0303931 0.0267614 136 47 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.08 vpr 62.17 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30620 -1 -1 20 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63664 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.5 MiB 0.10 768 12754 4322 6521 1911 62.2 MiB 0.15 0.00 3.3979 -99.6122 -3.3979 3.3979 0.80 0.000640256 0.000592877 0.0421531 0.0388528 32 1584 19 6.65987e+06 253560 554710. 1919.41 0.97 0.105691 0.0936291 22834 132086 -1 1440 20 1133 1647 156827 33015 2.65457 2.65457 -95.138 -2.65457 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0242289 0.0212448 107 26 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.84 vpr 63.14 MiB 0.04 7220 -1 -1 1 0.04 -1 -1 30548 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 25.0 MiB 0.22 1366 15232 4128 9656 1448 63.1 MiB 0.28 0.01 4.15924 -136.806 -4.15924 4.15924 0.86 0.000992282 0.00091883 0.0659065 0.0610124 32 3610 25 6.65987e+06 507120 554710. 1919.41 1.24 0.192036 0.171382 22834 132086 -1 3047 22 2356 4186 406844 85604 3.73751 3.73751 -139.024 -3.73751 0 0 701300. 2426.64 0.23 0.14 0.14 -1 -1 0.23 0.0429957 0.0378375 184 85 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.55 vpr 62.98 MiB 0.04 7360 -1 -1 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.2 MiB 0.33 999 12894 3350 8149 1395 63.0 MiB 0.23 0.01 4.3007 -134.868 -4.3007 4.3007 0.77 0.000898898 0.000831159 0.0660174 0.0610726 32 2630 22 6.65987e+06 266238 554710. 1919.41 1.06 0.174851 0.154985 22834 132086 -1 2278 22 1555 2427 250286 53481 3.72031 3.72031 -140.859 -3.72031 0 0 701300. 2426.64 0.27 0.11 0.14 -1 -1 0.27 0.0401762 0.0353422 144 105 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.22 vpr 62.48 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30572 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.8 MiB 0.28 739 9540 2469 6056 1015 62.5 MiB 0.16 0.00 3.43298 -108.977 -3.43298 3.43298 0.78 0.000755668 0.000691555 0.0442397 0.0409096 28 1888 18 6.65987e+06 202848 500653. 1732.36 0.95 0.12983 0.114642 21970 115934 -1 1756 19 1002 1591 140618 30906 2.64451 2.64451 -110.271 -2.64451 0 0 612192. 2118.31 0.23 0.07 0.12 -1 -1 0.23 0.0292237 0.0259642 109 86 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.32 vpr 62.84 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30420 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1126 15645 4217 9584 1844 62.8 MiB 0.24 0.01 4.2677 -137.429 -4.2677 4.2677 0.77 0.000800705 0.000731513 0.0537173 0.049452 28 2550 19 6.65987e+06 405696 500653. 1732.36 1.07 0.143062 0.127443 21970 115934 -1 2250 18 1271 1910 156980 34657 3.73357 3.73357 -135.346 -3.73357 0 0 612192. 2118.31 0.23 0.07 0.12 -1 -1 0.23 0.028437 0.0252612 146 31 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.36 vpr 62.81 MiB 0.04 7208 -1 -1 1 0.04 -1 -1 30636 -1 -1 36 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64316 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1167 13551 3218 9177 1156 62.8 MiB 0.25 0.01 4.22766 -133.836 -4.22766 4.22766 0.76 0.000918067 0.000850076 0.0580039 0.0537096 32 2632 20 6.65987e+06 456408 554710. 1919.41 1.02 0.166388 0.147412 22834 132086 -1 2347 22 1837 2768 244945 52657 3.28351 3.28351 -130.387 -3.28351 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0363556 0.0319106 171 50 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 6.30 vpr 62.77 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30536 -1 -1 33 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1070 11111 2802 7426 883 62.8 MiB 0.17 0.00 3.62941 -110.797 -3.62941 3.62941 0.85 0.000527744 0.000482654 0.0359744 0.0330794 24 3147 38 6.65987e+06 418374 448715. 1552.65 2.88 0.184007 0.161687 21394 104001 -1 2426 23 1537 2660 289049 59225 3.24951 3.24951 -116.597 -3.24951 0 0 554710. 1919.41 0.22 0.11 0.10 -1 -1 0.22 0.0339089 0.0298307 134 50 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.44 vpr 62.55 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 30508 -1 -1 42 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1074 12606 3053 8336 1217 62.6 MiB 0.22 0.01 4.0783 -140.694 -4.0783 4.0783 0.77 0.000741012 0.000657649 0.0445191 0.0410264 30 2409 20 6.65987e+06 532476 526063. 1820.29 1.06 0.12787 0.113564 22546 126617 -1 2059 19 1203 1899 136797 29545 3.46931 3.46931 -130.617 -3.46931 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0328114 0.0289935 157 61 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.21 vpr 62.58 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30528 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.2 MiB 0.23 985 6766 1235 5165 366 62.6 MiB 0.14 0.01 3.41884 -116.445 -3.41884 3.41884 0.77 0.000840434 0.000777181 0.0283471 0.0261864 28 2678 22 6.65987e+06 481764 500653. 1732.36 0.99 0.130585 0.114731 21970 115934 -1 2260 23 1588 2470 242632 50996 2.77665 2.77665 -114.749 -2.77665 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0398032 0.0351337 155 61 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.19 vpr 62.13 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30424 -1 -1 16 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63620 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.7 MiB 0.13 502 12791 3342 7797 1652 62.1 MiB 0.13 0.00 3.7595 -104.343 -3.7595 3.7595 0.81 0.000644297 0.000595047 0.0537143 0.0496762 32 1602 21 6.65987e+06 202848 554710. 1919.41 0.92 0.131944 0.116941 22834 132086 -1 1396 20 1021 1404 146824 34296 2.80171 2.80171 -101.049 -2.80171 0 0 701300. 2426.64 0.23 0.07 0.14 -1 -1 0.23 0.0268186 0.0235708 93 28 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.73 vpr 62.67 MiB 0.06 7028 -1 -1 1 0.03 -1 -1 30068 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 24.0 MiB 0.31 872 14431 4553 8297 1581 62.7 MiB 0.17 0.00 3.69338 -109.525 -3.69338 3.69338 0.92 0.00058206 0.000530915 0.0450758 0.0412366 32 2019 20 6.65987e+06 215526 554710. 1919.41 1.00 0.12993 0.114377 22834 132086 -1 1862 18 991 1408 148682 31095 2.76571 2.76571 -107.677 -2.76571 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.026275 0.0231293 111 79 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.63 vpr 62.73 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 24.1 MiB 0.15 973 15876 4279 9893 1704 62.7 MiB 0.26 0.01 4.55701 -136.44 -4.55701 4.55701 0.79 0.000588064 0.000538954 0.0434036 0.0397676 32 2568 44 6.65987e+06 469086 554710. 1919.41 1.33 0.164922 0.145164 22834 132086 -1 2084 22 1478 2518 248377 50586 3.91571 3.91571 -132.225 -3.91571 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0344239 0.0303174 150 29 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.61 vpr 62.25 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30392 -1 -1 31 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63748 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.25 621 11063 2736 7707 620 62.3 MiB 0.17 0.01 3.58224 -95.8028 -3.58224 3.58224 0.77 0.000442939 0.000405145 0.0376088 0.0347128 26 1925 24 6.65987e+06 393018 477104. 1650.88 1.33 0.123074 0.108395 21682 110474 -1 1605 20 1012 1616 137045 31793 2.98985 2.98985 -98.312 -2.98985 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0268011 0.0233965 108 48 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.86 vpr 62.49 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30320 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 0.20 823 7992 1920 5681 391 62.5 MiB 0.15 0.00 3.5141 -118.56 -3.5141 3.5141 0.77 0.000702833 0.000649854 0.0351111 0.0325293 32 2083 27 6.65987e+06 202848 554710. 1919.41 1.55 0.141154 0.123815 22834 132086 -1 1806 19 1360 2254 222304 48015 3.11917 3.11917 -123.177 -3.11917 0 0 701300. 2426.64 0.25 0.09 0.14 -1 -1 0.25 0.0278161 0.0245268 119 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.19 vpr 62.90 MiB 0.02 7100 -1 -1 1 0.04 -1 -1 30388 -1 -1 36 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1001 11955 3102 7859 994 62.9 MiB 0.20 0.00 3.4951 -117.77 -3.4951 3.4951 0.77 0.000814191 0.000752952 0.0465298 0.042987 26 2312 18 6.65987e+06 456408 477104. 1650.88 1.03 0.133421 0.118298 21682 110474 -1 1995 18 1446 2078 185420 38738 2.98297 2.98297 -119.053 -2.98297 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0306449 0.027101 142 60 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.38 vpr 62.45 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63952 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.8 MiB 0.41 876 12923 4161 7145 1617 62.5 MiB 0.17 0.00 3.11304 -101.32 -3.11304 3.11304 0.77 0.000674791 0.000623491 0.0543256 0.0502688 32 1888 19 6.65987e+06 202848 554710. 1919.41 0.95 0.130459 0.115841 22834 132086 -1 1829 19 956 1616 173715 37361 2.70845 2.70845 -106.172 -2.70845 0 0 701300. 2426.64 0.23 0.07 0.14 -1 -1 0.23 0.0261834 0.0229978 105 49 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.38 vpr 62.80 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30424 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.1 MiB 0.23 929 17616 5738 7949 3929 62.8 MiB 0.20 0.00 3.3979 -111.1 -3.3979 3.3979 0.78 0.000806269 0.000744479 0.0673961 0.0622773 36 2132 20 6.65987e+06 405696 612192. 2118.31 3.94 0.285425 0.249837 23410 145293 -1 1820 21 1232 2115 198429 43101 2.85597 2.85597 -105.882 -2.85597 0 0 782063. 2706.10 0.34 0.08 0.15 -1 -1 0.34 0.0277872 0.024742 136 56 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.66 vpr 62.65 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.1 MiB 0.63 965 17427 4981 9867 2579 62.6 MiB 0.26 0.00 3.7445 -120.758 -3.7445 3.7445 0.81 0.000857152 0.000790731 0.0686425 0.0633522 28 2264 21 6.65987e+06 456408 500653. 1732.36 0.98 0.170347 0.151286 21970 115934 -1 2095 20 1531 2264 183821 40043 3.04917 3.04917 -115.617 -3.04917 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0346504 0.030435 148 88 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.36 vpr 62.50 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30296 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 23.8 MiB 0.19 861 11652 3522 6006 2124 62.5 MiB 0.17 0.00 2.81844 -100.349 -2.81844 2.81844 0.82 0.000727053 0.000672024 0.0496377 0.0459161 32 2039 34 6.65987e+06 228204 554710. 1919.41 1.05 0.150184 0.132669 22834 132086 -1 1662 23 1329 2133 187650 39217 2.42305 2.42305 -99.4307 -2.42305 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0321063 0.0281114 115 54 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.40 vpr 62.79 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.27 667 7380 1595 4913 872 62.8 MiB 0.11 0.00 3.38184 -112.707 -3.38184 3.38184 0.76 0.000736291 0.000680695 0.0328416 0.0303998 32 2464 28 6.65987e+06 228204 554710. 1919.41 1.10 0.127324 0.111786 22834 132086 -1 1741 22 1350 2115 187103 44671 3.01011 3.01011 -117.709 -3.01011 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0315483 0.0277088 121 60 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.36 vpr 62.79 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30804 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1042 12164 2979 8000 1185 62.8 MiB 0.20 0.01 4.02524 -139.262 -4.02524 4.02524 0.76 0.000839746 0.000776384 0.0474374 0.0435096 28 2563 32 6.65987e+06 456408 500653. 1732.36 1.20 0.164085 0.144444 21970 115934 -1 2244 20 1750 2701 248121 52117 3.40285 3.40285 -135.733 -3.40285 0 0 612192. 2118.31 0.21 0.10 0.15 -1 -1 0.21 0.034928 0.0309277 154 49 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.24 vpr 62.93 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30444 -1 -1 32 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.3 MiB 0.23 968 17313 5602 9212 2499 62.9 MiB 0.24 0.00 3.57304 -105.57 -3.57304 3.57304 0.77 0.000770729 0.000713085 0.0667292 0.0616967 32 2229 19 6.65987e+06 405696 554710. 1919.41 0.99 0.159017 0.141489 22834 132086 -1 1913 22 1143 1743 142780 32670 2.73871 2.73871 -102.232 -2.73871 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0342855 0.0301158 133 54 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.71 vpr 62.74 MiB 0.06 7204 -1 -1 1 0.04 -1 -1 30612 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.5 MiB 0.37 1004 11616 2968 7911 737 62.7 MiB 0.21 0.01 3.97241 -135.454 -3.97241 3.97241 0.77 0.00093526 0.000865027 0.0504955 0.0466328 32 2691 23 6.65987e+06 469086 554710. 1919.41 1.04 0.163689 0.144314 22834 132086 -1 2286 22 1896 2820 295208 64735 3.63451 3.63451 -137.029 -3.63451 0 0 701300. 2426.64 0.31 0.11 0.16 -1 -1 0.31 0.034345 0.0302049 156 117 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.81 vpr 61.98 MiB 0.03 6920 -1 -1 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63472 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.3 MiB 0.12 715 5825 1215 4401 209 62.0 MiB 0.10 0.00 2.9397 -97.4988 -2.9397 2.9397 0.79 0.000623624 0.000577279 0.0236973 0.0219861 30 1684 17 6.65987e+06 202848 526063. 1820.29 0.88 0.0947533 0.0832353 22546 126617 -1 1472 18 757 1190 80967 18432 2.50231 2.50231 -98.588 -2.50231 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0234215 0.0205995 105 -1 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.40 vpr 62.51 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30396 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 948 20077 6167 11074 2836 62.5 MiB 0.32 0.01 4.10497 -133.778 -4.10497 4.10497 0.77 0.000848169 0.000783195 0.0792869 0.0729878 32 2310 32 6.65987e+06 418374 554710. 1919.41 1.05 0.186143 0.165197 22834 132086 -1 1969 16 1351 1903 173063 37037 3.55637 3.55637 -127.321 -3.55637 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.0289402 0.0256258 142 89 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 7.46 vpr 62.55 MiB 0.03 6980 -1 -1 1 0.03 -1 -1 30136 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.8 MiB 0.24 805 9196 3450 4876 870 62.6 MiB 0.13 0.00 3.54047 -120.422 -3.54047 3.54047 0.76 0.000774188 0.000714187 0.0445165 0.0408634 28 2201 43 6.65987e+06 202848 500653. 1732.36 4.09 0.255147 0.222071 21970 115934 -1 1876 44 2156 3383 693172 297996 2.94397 2.94397 -123.053 -2.94397 0 0 612192. 2118.31 0.21 0.24 0.12 -1 -1 0.21 0.0589863 0.0512491 115 93 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.69 vpr 62.49 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30356 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1002 18111 5520 9663 2928 62.5 MiB 0.25 0.00 3.45184 -118.995 -3.45184 3.45184 0.89 0.000640779 0.000587259 0.0637942 0.0587444 32 2563 26 6.65987e+06 443730 554710. 1919.41 1.11 0.163269 0.145261 22834 132086 -1 2088 24 1519 2118 208856 45008 2.92871 2.92871 -117.128 -2.92871 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0341879 0.0301346 149 59 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.50 vpr 63.09 MiB 0.03 7320 -1 -1 1 0.03 -1 -1 30868 -1 -1 43 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.9 MiB 0.37 1201 15034 3694 9653 1687 63.1 MiB 0.25 0.01 4.6905 -158.567 -4.6905 4.6905 0.88 0.00103151 0.000956279 0.060333 0.0558201 26 3502 33 6.65987e+06 545154 477104. 1650.88 2.75 0.202513 0.180028 21682 110474 -1 2811 23 2383 3621 349223 71029 4.63217 4.63217 -167.928 -4.63217 0 0 585099. 2024.56 0.24 0.14 0.12 -1 -1 0.24 0.0452984 0.040398 186 81 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.51 vpr 61.80 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63284 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.21 532 10509 2640 7460 409 61.8 MiB 0.11 0.00 2.61752 -80.0454 -2.61752 2.61752 0.83 0.000377025 0.000342142 0.0333954 0.0307105 26 1532 42 6.65987e+06 190170 477104. 1650.88 1.28 0.115406 0.101226 21682 110474 -1 1188 15 697 950 87496 20815 2.05925 2.05925 -81.5015 -2.05925 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0186975 0.0164289 83 51 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.05 vpr 62.10 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63592 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.7 MiB 0.11 758 10536 3415 5493 1628 62.1 MiB 0.14 0.00 3.52904 -110.224 -3.52904 3.52904 0.89 0.000661345 0.000611298 0.0443949 0.0410898 32 1681 18 6.65987e+06 202848 554710. 1919.41 0.92 0.121335 0.107272 22834 132086 -1 1583 17 897 1300 118929 26433 2.68977 2.68977 -104.515 -2.68977 0 0 701300. 2426.64 0.28 0.06 0.14 -1 -1 0.28 0.0236008 0.0210164 96 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.18 vpr 62.53 MiB 0.04 6832 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.11 856 9872 2316 7018 538 62.5 MiB 0.17 0.00 3.4859 -122.574 -3.4859 3.4859 0.77 0.000703258 0.000649521 0.0413745 0.0382972 32 2466 22 6.65987e+06 228204 554710. 1919.41 1.00 0.124315 0.109883 22834 132086 -1 2087 20 1573 2800 258134 57097 2.91997 2.91997 -119.238 -2.91997 0 0 701300. 2426.64 0.23 0.10 0.14 -1 -1 0.23 0.029239 0.0258144 126 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.09 vpr 62.02 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30364 -1 -1 34 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63504 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.4 MiB 0.07 696 13351 3608 8032 1711 62.0 MiB 0.14 0.00 3.32684 -88.9535 -3.32684 3.32684 0.88 0.000403612 0.000367443 0.0374333 0.0346089 26 1661 22 6.65987e+06 431052 477104. 1650.88 0.90 0.0999188 0.0882532 21682 110474 -1 1506 23 1091 1601 139032 30494 2.73151 2.73151 -89.3817 -2.73151 0 0 585099. 2024.56 0.23 0.07 0.11 -1 -1 0.23 0.0274114 0.0239866 103 19 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.65 vpr 63.12 MiB 0.03 7136 -1 -1 1 0.04 -1 -1 30516 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.3 MiB 0.25 877 14541 4608 7775 2158 63.1 MiB 0.26 0.00 4.02035 -125.217 -4.02035 4.02035 0.81 0.00087419 0.000808023 0.0685703 0.0633218 32 2904 24 6.65987e+06 253560 554710. 1919.41 1.12 0.174512 0.154915 22834 132086 -1 2316 21 1799 3238 301370 67088 3.43985 3.43985 -128.883 -3.43985 0 0 701300. 2426.64 0.28 0.12 0.15 -1 -1 0.28 0.0368865 0.0328603 147 84 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.33 vpr 62.64 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 30372 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.2 MiB 0.20 938 18660 5414 10450 2796 62.6 MiB 0.26 0.01 3.4903 -116.326 -3.4903 3.4903 0.79 0.000858952 0.00079385 0.0648846 0.0598126 32 2458 24 6.65987e+06 469086 554710. 1919.41 1.03 0.17274 0.153341 22834 132086 -1 2141 19 1808 2807 273054 57967 2.90897 2.90897 -115.947 -2.90897 0 0 701300. 2426.64 0.26 0.10 0.10 -1 -1 0.26 0.0323384 0.0286372 146 88 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 18.51 vpr 63.67 MiB 0.03 7096 -1 -1 1 0.04 -1 -1 30744 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 25.1 MiB 0.94 758 13949 4789 6835 2325 63.7 MiB 0.17 0.00 3.74419 -135.496 -3.74419 3.74419 0.79 0.000882529 0.000815757 0.0656281 0.0607214 52 2457 36 6.95648e+06 361892 926341. 3205.33 14.19 0.445095 0.389365 29218 227130 -1 1878 22 1835 2866 289802 65113 4.23556 4.23556 -151.128 -4.23556 0 0 1.14541e+06 3963.36 0.35 0.11 0.22 -1 -1 0.35 0.037886 0.0332835 84 80 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 10.99 vpr 63.84 MiB 0.04 7200 -1 -1 1 0.04 -1 -1 30644 -1 -1 14 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65368 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 25.0 MiB 2.15 807 12716 4975 6082 1659 63.8 MiB 0.15 0.00 3.9478 -130.518 -3.9478 3.9478 0.80 0.00082584 0.000762709 0.0659084 0.0609031 54 2146 30 6.95648e+06 202660 949917. 3286.91 5.54 0.338711 0.298264 29506 232905 -1 1685 18 1400 2098 213485 43634 3.62622 3.62622 -131.351 -3.62622 0 0 1.17392e+06 4061.99 0.38 0.08 0.25 -1 -1 0.38 0.0305195 0.0269183 76 78 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 9.27 vpr 63.83 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30424 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 25.0 MiB 0.81 1022 7103 1835 4569 699 63.8 MiB 0.11 0.00 3.60914 -132.635 -3.60914 3.60914 0.83 0.000806652 0.000746038 0.0346183 0.0320583 46 2554 25 6.95648e+06 275038 828058. 2865.25 5.12 0.26738 0.234273 28066 200906 -1 2223 18 1334 2004 216147 39714 3.53062 3.53062 -136.461 -3.53062 0 0 1.01997e+06 3529.29 0.37 0.09 0.20 -1 -1 0.37 0.0305081 0.0273587 77 50 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.68 vpr 63.31 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30472 -1 -1 16 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64832 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.8 MiB 0.39 752 10672 3799 5216 1657 63.3 MiB 0.14 0.00 4.001 -128.21 -4.001 4.001 0.83 0.000742323 0.00068696 0.0514405 0.0476431 42 2751 33 6.95648e+06 231611 744469. 2576.02 1.99 0.184314 0.16205 27202 183097 -1 1913 20 1599 2343 292763 66703 4.24976 4.24976 -148.061 -4.24976 0 0 949917. 3286.91 0.34 0.11 0.18 -1 -1 0.34 0.0304686 0.0271097 75 25 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 7.81 vpr 63.32 MiB 0.03 7008 -1 -1 1 0.03 -1 -1 30264 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.7 MiB 0.72 716 9857 3295 4764 1798 63.3 MiB 0.14 0.00 3.66789 -133.791 -3.66789 3.66789 0.80 0.000802584 0.000741691 0.0530824 0.0490406 56 2114 50 6.95648e+06 188184 973134. 3367.25 3.73 0.249816 0.218559 29794 239141 -1 1733 20 1828 3085 304377 68520 4.18056 4.18056 -146.075 -4.18056 0 0 1.19926e+06 4149.71 0.43 0.11 0.24 -1 -1 0.43 0.0338541 0.030206 78 31 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 17.83 vpr 63.57 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30524 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.7 MiB 0.41 727 15003 5272 7155 2576 63.6 MiB 0.16 0.00 3.0985 -114.166 -3.0985 3.0985 0.83 0.000843296 0.000778425 0.0580252 0.0535264 46 2388 31 6.95648e+06 419795 828058. 2865.25 13.86 0.420542 0.368467 28066 200906 -1 1787 43 2005 2784 730841 315091 3.18097 3.18097 -124.788 -3.18097 0 0 1.01997e+06 3529.29 0.38 0.29 0.21 -1 -1 0.38 0.0664589 0.0584627 89 61 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.41 vpr 62.75 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30664 -1 -1 14 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.2 MiB 3.79 451 8433 2993 4087 1353 62.8 MiB 0.10 0.00 3.26916 -93.4177 -3.26916 3.26916 0.90 0.000830583 0.00076729 0.0370152 0.0342254 40 1248 26 6.95648e+06 202660 706193. 2443.58 2.50 0.159661 0.140173 26914 176310 -1 1055 17 815 1236 107720 25139 2.78643 2.78643 -95.6809 -2.78643 0 0 926341. 3205.33 0.29 0.06 0.19 -1 -1 0.29 0.0225387 0.0198247 54 26 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.61 vpr 63.21 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30192 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64732 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.8 MiB 0.56 722 11088 4563 6076 449 63.2 MiB 0.13 0.00 3.0394 -105.493 -3.0394 3.0394 0.96 0.000726796 0.000672292 0.0435227 0.0401563 46 2473 31 6.95648e+06 246087 828058. 2865.25 3.45 0.206384 0.181893 28066 200906 -1 1759 19 1291 1754 163088 35932 2.94752 2.94752 -110.795 -2.94752 0 0 1.01997e+06 3529.29 0.33 0.08 0.20 -1 -1 0.33 0.0288526 0.0254986 77 -1 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 12.80 vpr 63.02 MiB 0.03 7044 -1 -1 1 0.03 -1 -1 30248 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.4 MiB 1.77 523 9994 2759 5612 1623 63.0 MiB 0.12 0.00 3.10275 -98.727 -3.10275 3.10275 0.85 0.000729878 0.000673563 0.0490899 0.0453942 40 1614 29 6.95648e+06 159232 706193. 2443.58 7.86 0.348133 0.300882 26914 176310 -1 1450 29 1228 1885 240647 64693 3.13827 3.13827 -112.589 -3.13827 0 0 926341. 3205.33 0.29 0.10 0.14 -1 -1 0.29 0.037972 0.0331128 57 81 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 8.50 vpr 63.21 MiB 0.06 6852 -1 -1 1 0.05 -1 -1 30368 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.6 MiB 1.07 638 10614 4216 4843 1555 63.2 MiB 0.13 0.00 2.95005 -114.898 -2.95005 2.95005 0.79 0.000700212 0.000647126 0.0504326 0.0466102 40 1918 25 6.95648e+06 144757 706193. 2443.58 4.30 0.258479 0.225748 26914 176310 -1 1793 21 1498 2160 300910 58021 3.27212 3.27212 -130.848 -3.27212 0 0 926341. 3205.33 0.28 0.10 0.18 -1 -1 0.28 0.0273672 0.0240438 62 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.64 vpr 62.97 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30252 -1 -1 12 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.3 MiB 1.65 651 11079 4648 6085 346 63.0 MiB 0.13 0.00 3.1095 -111.937 -3.1095 3.1095 0.80 0.000703353 0.000649477 0.0527753 0.0488354 36 1920 47 6.95648e+06 173708 648988. 2245.63 1.90 0.185783 0.162862 26050 158493 -1 1519 21 1342 1799 170434 34496 3.10587 3.10587 -117.5 -3.10587 0 0 828058. 2865.25 0.29 0.09 0.20 -1 -1 0.29 0.0342406 0.0300971 60 58 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 15.80 vpr 63.27 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30568 -1 -1 12 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.4 MiB 0.90 540 10476 4331 5741 404 63.3 MiB 0.12 0.00 2.9793 -106.716 -2.9793 2.9793 0.78 0.000710549 0.000655904 0.0489505 0.0452349 46 1966 30 6.95648e+06 173708 828058. 2865.25 11.68 0.379707 0.330866 28066 200906 -1 1411 31 1273 1825 235189 82151 3.08097 3.08097 -112.726 -3.08097 0 0 1.01997e+06 3529.29 0.38 0.11 0.20 -1 -1 0.38 0.0372508 0.0325841 60 57 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.72 vpr 63.73 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30316 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.9 MiB 1.43 751 11803 3277 6504 2022 63.7 MiB 0.15 0.00 3.1024 -116.565 -3.1024 3.1024 0.91 0.000584539 0.00052377 0.0454436 0.0417911 46 2313 25 6.95648e+06 303989 828058. 2865.25 5.64 0.28872 0.252083 28066 200906 -1 1852 21 1546 2289 235897 48439 3.58207 3.58207 -132.449 -3.58207 0 0 1.01997e+06 3529.29 0.32 0.09 0.21 -1 -1 0.32 0.0343248 0.0302546 79 55 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 9.58 vpr 63.60 MiB 0.03 7080 -1 -1 1 0.06 -1 -1 30560 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.7 MiB 1.15 832 16371 6652 7990 1729 63.6 MiB 0.22 0.01 3.72719 -138.885 -3.72719 3.72719 0.79 0.000841189 0.000776333 0.0722643 0.0668196 42 2820 47 6.95648e+06 376368 744469. 2576.02 5.02 0.35875 0.313196 27202 183097 -1 2095 21 1984 2782 328071 63869 4.18856 4.18856 -154.486 -4.18856 0 0 949917. 3286.91 0.35 0.12 0.18 -1 -1 0.35 0.0360318 0.0320996 87 60 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 6.37 vpr 62.82 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30620 -1 -1 13 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64332 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.3 MiB 1.09 465 11234 4544 5569 1121 62.8 MiB 0.12 0.00 3.14676 -95.8879 -3.14676 3.14676 0.79 0.000623652 0.000576443 0.0476535 0.0441076 44 1739 43 6.95648e+06 188184 787024. 2723.27 2.14 0.168394 0.147346 27778 195446 -1 1206 29 1148 1697 153051 34541 2.93173 2.93173 -98.2896 -2.93173 0 0 997811. 3452.63 0.36 0.08 0.20 -1 -1 0.36 0.0305155 0.0266985 58 21 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.55 vpr 63.71 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.8 MiB 1.77 807 11813 5009 6533 271 63.7 MiB 0.16 0.00 3.1505 -120.688 -3.1505 3.1505 0.79 0.000836936 0.000773468 0.0636108 0.0588428 46 2485 26 6.95648e+06 188184 828058. 2865.25 2.47 0.237472 0.209187 28066 200906 -1 1926 23 1996 3149 309800 63389 3.39082 3.39082 -129.414 -3.39082 0 0 1.01997e+06 3529.29 0.33 0.13 0.19 -1 -1 0.33 0.0401222 0.0356426 77 60 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 10.61 vpr 63.57 MiB 0.07 7076 -1 -1 1 0.04 -1 -1 30312 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.7 MiB 1.58 707 11064 3419 5711 1934 63.6 MiB 0.13 0.00 3.0804 -113.837 -3.0804 3.0804 0.93 0.000817876 0.000753792 0.0425561 0.0390354 48 2255 41 6.95648e+06 289514 865456. 2994.66 5.50 0.330212 0.287409 28354 207349 -1 1654 18 1439 1842 226755 48463 3.07472 3.07472 -125.527 -3.07472 0 0 1.05005e+06 3633.38 0.38 0.09 0.20 -1 -1 0.38 0.030918 0.0277745 78 54 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.29 vpr 63.07 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30200 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.7 MiB 0.93 574 10698 2981 5511 2206 63.1 MiB 0.12 0.00 2.43656 -93.1005 -2.43656 2.43656 0.84 0.00072941 0.00067346 0.0468035 0.0433987 46 1623 29 6.95648e+06 289514 828058. 2865.25 2.09 0.171529 0.150609 28066 200906 -1 1217 17 1052 1392 126295 29013 2.49933 2.49933 -95.2478 -2.49933 0 0 1.01997e+06 3529.29 0.31 0.07 0.20 -1 -1 0.31 0.0259871 0.0229177 67 62 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.70 vpr 62.52 MiB 0.02 6764 -1 -1 1 0.03 -1 -1 30184 -1 -1 10 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.0 MiB 0.36 450 11098 4789 5936 373 62.5 MiB 0.09 0.00 2.21746 -80.6728 -2.21746 2.21746 0.91 0.000541115 0.000499665 0.0356199 0.0327386 36 1473 48 6.95648e+06 144757 648988. 2245.63 2.14 0.156089 0.135905 26050 158493 -1 1202 19 727 933 107651 22631 2.32998 2.32998 -89.8135 -2.32998 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.021132 0.0184827 45 29 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 8.08 vpr 63.34 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30584 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64864 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.5 MiB 1.18 525 9374 3845 5090 439 63.3 MiB 0.10 0.00 3.8254 -127.041 -3.8254 3.8254 0.93 0.000503683 0.000456395 0.0375918 0.0344685 46 1833 38 6.95648e+06 159232 828058. 2865.25 3.43 0.200999 0.176533 28066 200906 -1 1250 30 1144 1529 130641 31620 3.60442 3.60442 -125.091 -3.60442 0 0 1.01997e+06 3529.29 0.33 0.09 0.20 -1 -1 0.33 0.03952 0.0344607 61 55 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.93 vpr 63.54 MiB 0.03 7012 -1 -1 1 0.04 -1 -1 30176 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.7 MiB 0.43 664 13663 4054 7770 1839 63.5 MiB 0.18 0.00 3.70954 -128.174 -3.70954 3.70954 0.79 0.000791765 0.000732151 0.0613376 0.0567238 48 1965 25 6.95648e+06 303989 865456. 2994.66 5.25 0.315137 0.275829 28354 207349 -1 1551 23 1679 2175 235771 49979 3.82996 3.82996 -136.933 -3.82996 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0363011 0.0319513 81 31 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.88 vpr 63.85 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30576 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.1 MiB 1.29 791 14779 5223 7361 2195 63.8 MiB 0.20 0.00 3.66119 -126.81 -3.66119 3.66119 0.79 0.000917198 0.000848102 0.069285 0.0640787 46 2549 27 6.95648e+06 390843 828058. 2865.25 2.37 0.237173 0.208305 28066 200906 -1 1937 22 1549 2356 225982 45477 3.72986 3.72986 -137.795 -3.72986 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0389739 0.0341845 85 108 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 8.74 vpr 62.42 MiB 0.03 6780 -1 -1 1 0.03 -1 -1 30584 -1 -1 13 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 23.9 MiB 0.99 348 7809 2770 3912 1127 62.4 MiB 0.07 0.00 2.19726 -66.8557 -2.19726 2.19726 0.84 0.0004744 0.000437478 0.0272543 0.0251676 48 746 30 6.95648e+06 188184 865456. 2994.66 4.59 0.160835 0.1389 28354 207349 -1 684 18 545 674 46181 13138 1.96323 1.96323 -65.8759 -1.96323 0 0 1.05005e+06 3633.38 0.40 0.04 0.20 -1 -1 0.40 0.0180204 0.0157644 44 21 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 10.05 vpr 63.45 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30096 -1 -1 12 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.7 MiB 0.79 737 10316 4241 5568 507 63.5 MiB 0.13 0.00 4.02534 -135.509 -4.02534 4.02534 0.78 0.000750276 0.000694031 0.0511917 0.0474292 52 2457 45 6.95648e+06 173708 926341. 3205.33 5.94 0.355513 0.311391 29218 227130 -1 1700 19 1599 2459 222342 50311 4.00711 4.00711 -137.495 -4.00711 0 0 1.14541e+06 3963.36 0.43 0.09 0.25 -1 -1 0.43 0.0291405 0.0260215 74 -1 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.89 vpr 62.54 MiB 0.02 6664 -1 -1 1 0.03 -1 -1 30372 -1 -1 8 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.0 MiB 0.28 731 9906 3689 5081 1136 62.5 MiB 0.09 0.00 2.15326 -87.6492 -2.15326 2.15326 0.78 0.000509755 0.00046997 0.0352855 0.0325614 36 1684 36 6.95648e+06 115805 648988. 2245.63 3.66 0.184103 0.159888 26050 158493 -1 1509 16 702 877 118293 22547 2.14968 2.14968 -92.7895 -2.14968 0 0 828058. 2865.25 0.31 0.05 0.16 -1 -1 0.31 0.0169567 0.0150934 44 -1 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 9.05 vpr 63.52 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30604 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65048 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.52 827 16371 5667 8716 1988 63.5 MiB 0.21 0.01 3.67409 -135.23 -3.67409 3.67409 0.81 0.000801567 0.000740476 0.068094 0.0627813 44 2408 31 6.95648e+06 376368 787024. 2723.27 5.18 0.356912 0.310892 27778 195446 -1 1982 22 1941 2992 332384 62167 3.93606 3.93606 -144.694 -3.93606 0 0 997811. 3452.63 0.38 0.12 0.19 -1 -1 0.38 0.0350272 0.0311507 85 21 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 8.91 vpr 63.18 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30112 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.33 985 13754 4254 7657 1843 63.2 MiB 0.18 0.00 3.0955 -119.852 -3.0955 3.0955 0.84 0.000761494 0.000704068 0.0547401 0.0506689 36 2737 45 6.95648e+06 405319 648988. 2245.63 5.28 0.237907 0.208441 26050 158493 -1 2323 25 1731 2431 347279 83720 3.08387 3.08387 -128.967 -3.08387 0 0 828058. 2865.25 0.31 0.13 0.16 -1 -1 0.31 0.0370368 0.0329429 87 -1 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 6.81 vpr 63.77 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30524 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65296 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.9 MiB 0.38 789 18308 6099 10070 2139 63.8 MiB 0.25 0.01 3.69663 -134.61 -3.69663 3.69663 0.81 0.000854796 0.000789676 0.0783422 0.0722686 46 2618 24 6.95648e+06 405319 828058. 2865.25 3.04 0.251901 0.221996 28066 200906 -1 1966 23 1947 3005 306179 61070 3.95996 3.95996 -145.033 -3.95996 0 0 1.01997e+06 3529.29 0.37 0.11 0.20 -1 -1 0.37 0.0358914 0.0318089 87 54 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.57 vpr 62.90 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30120 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.77 541 9374 3087 4731 1556 62.9 MiB 0.11 0.00 2.8982 -102.358 -2.8982 2.8982 0.81 0.000667826 0.000616781 0.0428363 0.039626 38 2088 42 6.95648e+06 144757 678818. 2348.85 3.70 0.201263 0.17556 26626 170182 -1 1425 22 1051 1619 152967 32332 3.00582 3.00582 -112.509 -3.00582 0 0 902133. 3121.57 0.28 0.07 0.17 -1 -1 0.28 0.0288036 0.0252188 57 31 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.83 vpr 62.85 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30200 -1 -1 12 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.2 MiB 0.64 571 8444 3466 4635 343 62.9 MiB 0.10 0.00 3.1175 -112.058 -3.1175 3.1175 0.86 0.000490094 0.000445232 0.0363953 0.0336377 40 1898 35 6.95648e+06 173708 706193. 2443.58 2.05 0.182502 0.158482 26914 176310 -1 1445 18 1278 1711 150217 33604 3.28932 3.28932 -123.575 -3.28932 0 0 926341. 3205.33 0.30 0.07 0.17 -1 -1 0.30 0.0252561 0.0223471 60 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.69 vpr 62.85 MiB 0.02 6820 -1 -1 1 0.03 -1 -1 30452 -1 -1 13 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.3 MiB 0.66 505 10257 3681 4972 1604 62.9 MiB 0.11 0.00 3.0435 -97.9378 -3.0435 3.0435 0.92 0.000637241 0.000588924 0.0394502 0.0363433 44 1765 29 6.95648e+06 188184 787024. 2723.27 2.68 0.17518 0.153201 27778 195446 -1 1214 20 1014 1525 141974 32038 2.94567 2.94567 -99.8648 -2.94567 0 0 997811. 3452.63 0.38 0.07 0.21 -1 -1 0.38 0.0263267 0.0234704 61 27 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.99 vpr 63.01 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.26 703 9374 3895 5319 160 63.0 MiB 0.11 0.00 2.93285 -116.414 -2.93285 2.93285 0.92 0.00050668 0.000462748 0.0352476 0.0324159 44 2059 34 6.95648e+06 144757 787024. 2723.27 2.41 0.182521 0.158845 27778 195446 -1 1704 19 1486 2122 212756 41558 3.10432 3.10432 -121.981 -3.10432 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0262121 0.023088 64 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 6.68 vpr 63.15 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64668 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.5 MiB 0.26 623 13443 5605 7395 443 63.2 MiB 0.15 0.00 3.0955 -111.973 -3.0955 3.0955 0.84 0.000694979 0.000642113 0.048868 0.0450301 44 1935 49 6.95648e+06 303989 787024. 2723.27 3.09 0.21043 0.18496 27778 195446 -1 1543 21 1300 1986 180924 37774 3.16997 3.16997 -116.06 -3.16997 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.028744 0.0251837 68 26 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.37 vpr 62.95 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30128 -1 -1 18 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.3 MiB 0.84 508 10219 3550 4648 2021 63.0 MiB 0.11 0.00 2.43392 -85.0275 -2.43392 2.43392 0.78 0.000673009 0.000622219 0.0435682 0.0403391 46 1410 33 6.95648e+06 260562 828058. 2865.25 2.33 0.190656 0.166131 28066 200906 -1 1201 18 1109 1487 126196 30995 2.56343 2.56343 -89.4464 -2.56343 0 0 1.01997e+06 3529.29 0.38 0.06 0.19 -1 -1 0.38 0.0238941 0.0212097 64 55 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 20.95 vpr 63.81 MiB 0.03 7036 -1 -1 1 0.04 -1 -1 30644 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.82 944 14375 4687 7097 2591 63.8 MiB 0.19 0.00 3.95585 -140.771 -3.95585 3.95585 0.80 0.000919389 0.000850866 0.0676993 0.0628071 48 2883 40 6.95648e+06 405319 865456. 2994.66 16.73 0.530971 0.461838 28354 207349 -1 2294 24 2184 3486 377312 90728 4.38722 4.38722 -153.761 -4.38722 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0421925 0.0370482 100 26 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 9.88 vpr 63.66 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30532 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.8 MiB 1.07 786 12739 3070 7853 1816 63.7 MiB 0.18 0.00 3.0804 -115.407 -3.0804 3.0804 0.79 0.000836319 0.000770445 0.0555952 0.0514251 44 2281 28 6.95648e+06 390843 787024. 2723.27 5.51 0.403217 0.353067 27778 195446 -1 1763 21 1720 2390 256667 49921 3.42677 3.42677 -124.128 -3.42677 0 0 997811. 3452.63 0.31 0.10 0.18 -1 -1 0.31 0.0362219 0.0319182 87 62 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 6.57 vpr 63.31 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30504 -1 -1 15 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.4 MiB 1.21 525 12362 5188 6715 459 63.3 MiB 0.14 0.00 3.26916 -109.722 -3.26916 3.26916 0.79 0.000736774 0.000680467 0.0574614 0.05315 48 1724 48 6.95648e+06 217135 865456. 2994.66 2.16 0.203651 0.178567 28354 207349 -1 1454 21 1139 1597 159183 39322 3.13223 3.13223 -112.426 -3.13223 0 0 1.05005e+06 3633.38 0.34 0.08 0.21 -1 -1 0.34 0.0305601 0.0268043 62 77 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.52 vpr 63.88 MiB 0.04 7232 -1 -1 1 0.08 -1 -1 30476 -1 -1 14 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65416 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 25.1 MiB 0.71 965 12791 5492 6957 342 63.9 MiB 0.16 0.00 3.0625 -116.847 -3.0625 3.0625 0.91 0.000817515 0.000756122 0.0613385 0.0565488 36 2834 31 6.95648e+06 202660 648988. 2245.63 2.46 0.203902 0.181149 26050 158493 -1 2372 21 1850 2739 325922 60766 3.31242 3.31242 -129.12 -3.31242 0 0 828058. 2865.25 0.28 0.11 0.16 -1 -1 0.28 0.0341423 0.0300621 79 59 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 27.05 vpr 63.46 MiB 0.07 7232 -1 -1 1 0.04 -1 -1 30664 -1 -1 14 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64988 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.0 MiB 2.49 778 10998 4559 6059 380 63.5 MiB 0.16 0.00 4.63397 -149.774 -4.63397 4.63397 0.81 0.000907837 0.000840205 0.0646163 0.0598835 40 3307 46 6.95648e+06 202660 706193. 2443.58 21.18 0.469022 0.408952 26914 176310 -1 2486 24 1824 2743 347509 73151 4.95601 4.95601 -164.037 -4.95601 0 0 926341. 3205.33 0.30 0.13 0.17 -1 -1 0.30 0.0420561 0.036806 78 111 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 16.91 vpr 63.54 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30348 -1 -1 13 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65064 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.7 MiB 1.61 775 10476 3672 5136 1668 63.5 MiB 0.16 0.00 4.49354 -135.009 -4.49354 4.49354 0.82 0.00084415 0.000780656 0.0577504 0.0534546 40 2938 39 6.95648e+06 188184 706193. 2443.58 11.80 0.419165 0.363611 26914 176310 -1 2335 23 1681 2597 332607 68939 4.45026 4.45026 -151.717 -4.45026 0 0 926341. 3205.33 0.29 0.12 0.18 -1 -1 0.29 0.0375975 0.0330108 76 86 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 7.93 vpr 63.62 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30268 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65148 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.8 MiB 0.96 864 15493 5631 7761 2101 63.6 MiB 0.19 0.00 3.1285 -114.829 -3.1285 3.1285 0.89 0.00082124 0.000759668 0.0679263 0.0627863 38 2729 27 6.95648e+06 361892 678818. 2348.85 3.59 0.242189 0.213476 26626 170182 -1 2125 21 1698 2468 253022 49412 3.53207 3.53207 -129.53 -3.53207 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0343054 0.0302018 85 58 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 24.39 vpr 63.70 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30772 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65232 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 24.8 MiB 0.57 956 10743 3793 5013 1937 63.7 MiB 0.15 0.00 3.77119 -139.239 -3.77119 3.77119 0.79 0.000841684 0.000778202 0.0477633 0.0442027 40 2673 49 6.95648e+06 376368 706193. 2443.58 20.59 0.451176 0.394073 26914 176310 -1 2454 23 2164 3296 573566 160737 4.31196 4.31196 -160.42 -4.31196 0 0 926341. 3205.33 0.29 0.16 0.17 -1 -1 0.29 0.0351126 0.0309268 86 42 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 21.98 vpr 63.82 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30664 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.5 MiB 1.18 1078 14999 4071 8495 2433 63.8 MiB 0.19 0.00 3.84845 -142.865 -3.84845 3.84845 0.93 0.000996545 0.000921442 0.0633652 0.0583685 40 2999 23 6.95648e+06 448746 706193. 2443.58 17.16 0.470464 0.410481 26914 176310 -1 2727 22 2190 3320 395721 75466 4.48431 4.48431 -158.381 -4.48431 0 0 926341. 3205.33 0.29 0.13 0.19 -1 -1 0.29 0.0430746 0.0378676 104 91 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 8.03 vpr 62.94 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30584 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.2 MiB 0.66 721 10304 4339 5695 270 62.9 MiB 0.12 0.00 3.34916 -121.065 -3.34916 3.34916 0.83 0.000672775 0.000619797 0.0482743 0.0446505 36 2206 36 6.95648e+06 159232 648988. 2245.63 3.89 0.203087 0.178591 26050 158493 -1 1763 19 1395 1957 217691 41583 3.36742 3.36742 -127.061 -3.36742 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0263973 0.0232224 62 24 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 6.44 vpr 63.84 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 30588 -1 -1 27 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65376 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 25.0 MiB 0.79 784 13959 3819 8017 2123 63.8 MiB 0.20 0.00 4.0519 -136.516 -4.0519 4.0519 0.78 0.000823394 0.00076055 0.0616753 0.0570221 46 2549 33 6.95648e+06 390843 828058. 2865.25 2.43 0.206928 0.182082 28066 200906 -1 1966 20 1596 2575 244578 49608 4.03652 4.03652 -145.714 -4.03652 0 0 1.01997e+06 3529.29 0.33 0.10 0.19 -1 -1 0.33 0.0331242 0.0291443 86 59 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.66 vpr 63.70 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30692 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.8 MiB 0.83 863 13557 4887 6407 2263 63.7 MiB 0.16 0.00 3.29596 -116.543 -3.29596 3.29596 0.79 0.000825842 0.000762909 0.0587136 0.0542896 52 2397 33 6.95648e+06 376368 926341. 3205.33 5.32 0.330062 0.287289 29218 227130 -1 1791 18 1451 2371 211838 44135 3.12597 3.12597 -117.726 -3.12597 0 0 1.14541e+06 3963.36 0.40 0.10 0.22 -1 -1 0.40 0.0347363 0.0310161 85 54 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 10.94 vpr 63.46 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30408 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.7 MiB 0.90 760 7738 3134 4374 230 63.5 MiB 0.11 0.00 3.65689 -135.736 -3.65689 3.65689 0.92 0.000582025 0.000531773 0.0346297 0.0319671 48 2648 42 6.95648e+06 188184 865456. 2994.66 6.50 0.323419 0.283523 28354 207349 -1 2265 24 2014 3396 489104 98728 4.49846 4.49846 -152.115 -4.49846 0 0 1.05005e+06 3633.38 0.33 0.15 0.22 -1 -1 0.33 0.0361546 0.0318039 78 -1 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.56 vpr 63.68 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 24.8 MiB 1.79 808 11991 3810 6067 2114 63.7 MiB 0.15 0.00 3.1768 -117.392 -3.1768 3.1768 0.79 0.000853125 0.000788206 0.0561984 0.0520041 44 2611 46 6.95648e+06 332941 787024. 2723.27 2.54 0.222616 0.195209 27778 195446 -1 1560 22 1437 2242 163431 39790 3.22927 3.22927 -119.623 -3.22927 0 0 997811. 3452.63 0.37 0.09 0.19 -1 -1 0.37 0.0356762 0.0315326 81 81 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 6.58 vpr 63.57 MiB 0.06 7040 -1 -1 1 0.03 -1 -1 30304 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.7 MiB 0.92 845 12926 3665 7173 2088 63.6 MiB 0.15 0.00 3.1214 -116.244 -3.1214 3.1214 0.84 0.00087214 0.000808694 0.0482186 0.0444766 44 2445 25 6.95648e+06 405319 787024. 2723.27 2.32 0.188516 0.167361 27778 195446 -1 1904 21 1460 2221 211558 41287 3.20917 3.20917 -118.302 -3.20917 0 0 997811. 3452.63 0.37 0.09 0.19 -1 -1 0.37 0.0324295 0.0287279 85 58 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 6.64 vpr 63.73 MiB 0.03 7084 -1 -1 1 0.04 -1 -1 30456 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 24.9 MiB 0.63 803 14996 4547 7782 2667 63.7 MiB 0.20 0.00 3.09676 -115.471 -3.09676 3.09676 0.80 0.000857401 0.000791227 0.0646898 0.0597814 46 2180 41 6.95648e+06 405319 828058. 2865.25 2.76 0.256494 0.225504 28066 200906 -1 1716 21 1648 2481 218899 44509 3.40477 3.40477 -118.761 -3.40477 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0351078 0.0309183 88 61 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.79 vpr 63.63 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30536 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 24.8 MiB 0.57 938 15617 5888 7604 2125 63.6 MiB 0.21 0.00 3.66789 -137.042 -3.66789 3.66789 0.82 0.000810275 0.000749854 0.0641895 0.0593811 46 2570 27 6.95648e+06 405319 828058. 2865.25 4.96 0.304432 0.265806 28066 200906 -1 2139 21 1787 2730 301830 54657 3.79546 3.79546 -143.738 -3.79546 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0333832 0.029405 85 21 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 9.87 vpr 63.61 MiB 0.02 7024 -1 -1 1 0.04 -1 -1 30640 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 24.7 MiB 1.16 799 12448 3955 5788 2705 63.6 MiB 0.14 0.00 3.78219 -138.337 -3.78219 3.78219 0.82 0.000647473 0.000588539 0.0463807 0.0425995 46 2443 27 6.95648e+06 434271 828058. 2865.25 5.42 0.334727 0.293056 28066 200906 -1 1841 21 1843 2632 251505 53793 4.26696 4.26696 -151.283 -4.26696 0 0 1.01997e+06 3529.29 0.38 0.10 0.20 -1 -1 0.38 0.0349839 0.0311473 88 50 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 7.18 vpr 63.77 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30468 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65296 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.0 MiB 1.48 822 11983 4768 6508 707 63.8 MiB 0.17 0.00 4.19045 -134.89 -4.19045 4.19045 0.79 0.000902934 0.0008351 0.0580838 0.053732 46 2766 26 6.95648e+06 361892 828058. 2865.25 2.37 0.213884 0.187677 28066 200906 -1 2132 29 1770 2714 329791 80525 3.91612 3.91612 -138.687 -3.91612 0 0 1.01997e+06 3529.29 0.31 0.13 0.21 -1 -1 0.31 0.047669 0.0416049 84 110 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 8.30 vpr 63.68 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30492 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.0 MiB 1.19 840 10346 3694 5398 1254 63.7 MiB 0.16 0.00 3.7688 -130.649 -3.7688 3.7688 0.90 0.000875695 0.000810074 0.0593315 0.0549464 40 2666 31 6.95648e+06 188184 706193. 2443.58 3.47 0.255193 0.223569 26914 176310 -1 2271 21 1822 3115 333026 65210 4.32296 4.32296 -148.088 -4.32296 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.03653 0.0321069 78 86 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 19.73 vpr 63.07 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30580 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.4 MiB 0.20 594 10647 4341 5910 396 63.1 MiB 0.12 0.00 3.12656 -113.614 -3.12656 3.12656 0.79 0.000695417 0.000642839 0.0408725 0.0377349 50 2129 50 6.95648e+06 332941 902133. 3121.57 16.20 0.357341 0.310305 28642 213929 -1 1461 19 1344 2068 206134 44912 2.83502 2.83502 -112.09 -2.83502 0 0 1.08113e+06 3740.92 0.33 0.08 0.21 -1 -1 0.33 0.0269437 0.0236872 71 20 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 9.73 vpr 63.35 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30412 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.7 MiB 1.21 610 8444 3495 4676 273 63.4 MiB 0.10 0.00 3.0405 -112.422 -3.0405 3.0405 0.78 0.000762887 0.000703601 0.0442232 0.0408897 54 1724 27 6.95648e+06 144757 949917. 3286.91 5.19 0.293008 0.253979 29506 232905 -1 1300 19 1240 1878 157600 35553 2.94772 2.94772 -111.172 -2.94772 0 0 1.17392e+06 4061.99 0.47 0.07 0.25 -1 -1 0.47 0.023866 0.0212968 63 91 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.44 vpr 63.68 MiB 0.09 7224 -1 -1 1 0.03 -1 -1 30820 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.4 MiB 0.76 1000 14152 3772 8188 2192 63.7 MiB 0.22 0.01 4.46224 -157.711 -4.46224 4.46224 0.79 0.000957509 0.000886444 0.0673629 0.0623789 52 3584 32 6.95648e+06 434271 926341. 3205.33 2.78 0.26309 0.231241 29218 227130 -1 2311 24 2463 3926 449300 84329 5.01271 5.01271 -169.61 -5.01271 0 0 1.14541e+06 3963.36 0.46 0.13 0.25 -1 -1 0.46 0.0371861 0.0329943 103 53 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 9.78 vpr 63.56 MiB 0.03 7048 -1 -1 1 0.02 -1 -1 30328 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 1.05 717 11983 4638 6220 1125 63.6 MiB 0.14 0.00 3.1457 -117.079 -3.1457 3.1457 0.93 0.000802354 0.000741269 0.0518552 0.0479598 54 1802 21 6.95648e+06 347416 949917. 3286.91 5.15 0.303769 0.264459 29506 232905 -1 1382 20 1258 1632 162958 33206 3.08582 3.08582 -115.975 -3.08582 0 0 1.17392e+06 4061.99 0.35 0.08 0.23 -1 -1 0.35 0.0324401 0.0285855 83 31 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 7.03 vpr 63.16 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.3 MiB 0.26 571 10581 4367 5776 438 63.2 MiB 0.13 0.00 3.0735 -108.432 -3.0735 3.0735 0.92 0.000653832 0.000608615 0.0431882 0.0403354 38 2111 32 6.95648e+06 275038 678818. 2348.85 3.48 0.186746 0.163917 26626 170182 -1 1660 20 1307 1833 192524 40300 3.39077 3.39077 -120.143 -3.39077 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0272273 0.023905 65 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 9.39 vpr 63.84 MiB 0.05 7368 -1 -1 1 0.03 -1 -1 31060 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.5 MiB 2.25 1126 15215 3732 10105 1378 63.8 MiB 0.23 0.01 4.49524 -160.999 -4.49524 4.49524 0.79 0.00102806 0.000950265 0.0763486 0.0706525 60 2553 21 6.95648e+06 448746 1.01997e+06 3529.29 3.50 0.296679 0.260455 30658 258169 -1 2281 23 2284 3359 426752 73225 4.74191 4.74191 -171.799 -4.74191 0 0 1.27783e+06 4421.56 0.39 0.14 0.27 -1 -1 0.39 0.046143 0.0405808 103 109 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 7.33 vpr 63.55 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30468 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.7 MiB 1.23 804 14375 4842 7223 2310 63.6 MiB 0.18 0.00 3.73321 -136.441 -3.73321 3.73321 0.80 0.000808846 0.00074668 0.0592075 0.0545732 40 2312 24 6.95648e+06 405319 706193. 2443.58 2.76 0.226727 0.198845 26914 176310 -1 2006 29 2483 3423 554964 185828 3.91306 3.91306 -150.861 -3.91306 0 0 926341. 3205.33 0.29 0.19 0.18 -1 -1 0.29 0.0446478 0.0394286 86 31 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.04 vpr 62.88 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.5 MiB 0.33 740 12763 4452 6451 1860 62.9 MiB 0.14 0.00 3.05815 -117.559 -3.05815 3.05815 0.79 0.000671124 0.000620357 0.0462148 0.0427822 44 2027 49 6.95648e+06 347416 787024. 2723.27 2.64 0.204374 0.178473 27778 195446 -1 1626 20 1397 2146 206903 38854 3.01532 3.01532 -120.584 -3.01532 0 0 997811. 3452.63 0.30 0.08 0.13 -1 -1 0.30 0.0271505 0.0239325 70 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 10.86 vpr 63.45 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30816 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.0 MiB 0.56 924 14567 5045 6877 2645 63.4 MiB 0.17 0.00 4.52824 -159.979 -4.52824 4.52824 0.91 0.000642083 0.000586631 0.0565249 0.0520224 56 2718 34 6.95648e+06 448746 973134. 3367.25 6.58 0.361508 0.315943 29794 239141 -1 2226 20 2344 3844 427151 85461 4.96871 4.96871 -171.187 -4.96871 0 0 1.19926e+06 4149.71 0.36 0.13 0.27 -1 -1 0.36 0.0375534 0.033099 105 26 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 16.22 vpr 62.88 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30388 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.39 618 10614 4475 5915 224 62.9 MiB 0.12 0.00 2.92185 -113.699 -2.92185 2.92185 0.78 0.000674382 0.000623863 0.0479614 0.0444002 42 2134 43 6.95648e+06 144757 744469. 2576.02 12.72 0.340754 0.297751 27202 183097 -1 1617 22 1435 1986 209356 43293 3.02152 3.02152 -123.743 -3.02152 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0292109 0.0256215 62 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.08 vpr 62.88 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30212 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.2 MiB 0.87 601 10163 2708 5873 1582 62.9 MiB 0.11 0.00 3.10776 -107.419 -3.10776 3.10776 0.79 0.000670784 0.000620194 0.038947 0.0360202 54 1459 21 6.95648e+06 303989 949917. 3286.91 4.94 0.225913 0.196034 29506 232905 -1 1102 20 985 1434 109295 26496 3.00067 3.00067 -105.385 -3.00067 0 0 1.17392e+06 4061.99 0.38 0.07 0.23 -1 -1 0.38 0.0269248 0.0236461 65 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.16 vpr 63.48 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30348 -1 -1 20 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.7 MiB 1.41 705 12856 4698 6070 2088 63.5 MiB 0.16 0.00 3.39446 -107.671 -3.39446 3.39446 0.80 0.00080459 0.000743781 0.0620087 0.0573779 46 2664 50 6.95648e+06 289514 828058. 2865.25 3.41 0.228573 0.201285 28066 200906 -1 1883 27 1843 2876 287551 57988 3.21827 3.21827 -114.538 -3.21827 0 0 1.01997e+06 3529.29 0.38 0.12 0.20 -1 -1 0.38 0.039881 0.0354427 77 81 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 15.65 vpr 63.73 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30652 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 24.9 MiB 0.96 807 13117 5264 6347 1506 63.7 MiB 0.18 0.00 3.65689 -136.729 -3.65689 3.65689 0.78 0.000951972 0.000889048 0.0664314 0.0612818 38 2388 26 6.95648e+06 188184 678818. 2348.85 11.18 0.385861 0.337288 26626 170182 -1 1894 19 1818 2360 253039 50070 3.94116 3.94116 -150.09 -3.94116 0 0 902133. 3121.57 0.33 0.09 0.18 -1 -1 0.33 0.0287672 0.0258817 78 53 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.36 vpr 63.61 MiB 0.05 7016 -1 -1 1 0.04 -1 -1 30704 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.7 MiB 1.74 890 14345 5510 6931 1904 63.6 MiB 0.18 0.00 3.74419 -138.408 -3.74419 3.74419 0.79 0.000839846 0.000776539 0.0639949 0.0591756 48 2621 24 6.95648e+06 361892 865456. 2994.66 3.18 0.250288 0.222032 28354 207349 -1 2288 23 2108 3323 458543 82724 3.96296 3.96296 -146.844 -3.96296 0 0 1.05005e+06 3633.38 0.34 0.12 0.20 -1 -1 0.34 0.0359859 0.0318417 85 55 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 16.38 vpr 63.36 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 30520 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.7 MiB 1.26 685 10813 4185 5763 865 63.4 MiB 0.13 0.00 3.05815 -117.015 -3.05815 3.05815 0.78 0.000738505 0.000680089 0.0435023 0.0401556 40 2185 26 6.95648e+06 347416 706193. 2443.58 11.83 0.362722 0.317303 26914 176310 -1 1816 29 1969 3032 645063 216819 3.04652 3.04652 -125.213 -3.04652 0 0 926341. 3205.33 0.28 0.19 0.17 -1 -1 0.28 0.0393434 0.0342807 69 55 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.99 vpr 63.11 MiB 0.04 6952 -1 -1 1 0.04 -1 -1 30636 -1 -1 10 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64628 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.4 MiB 1.63 684 10105 3894 4557 1654 63.1 MiB 0.11 0.00 3.30215 -110.841 -3.30215 3.30215 0.92 0.000577084 0.000524927 0.04286 0.0393718 34 2333 36 6.95648e+06 144757 618332. 2139.56 3.03 0.179549 0.157577 25762 151098 -1 1925 22 1346 2104 243920 46754 3.23247 3.23247 -123.267 -3.23247 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0307614 0.0272815 59 82 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 17.02 vpr 63.75 MiB 0.03 6960 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65280 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.9 MiB 0.99 949 12711 4087 6844 1780 63.8 MiB 0.16 0.00 3.1285 -115.995 -3.1285 3.1285 0.90 0.00078659 0.000726725 0.0502426 0.0462542 40 2341 23 6.95648e+06 318465 706193. 2443.58 12.65 0.366524 0.319945 26914 176310 -1 2169 20 1492 2138 239753 46681 3.25017 3.25017 -126.51 -3.25017 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0320091 0.0281781 79 52 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 9.94 vpr 63.21 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64728 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.7 MiB 0.83 684 10156 4202 5354 600 63.2 MiB 0.13 0.00 4.24545 -126.653 -4.24545 4.24545 0.79 0.000721941 0.000667947 0.0483569 0.0447884 38 2774 46 6.95648e+06 231611 678818. 2348.85 5.87 0.228541 0.20099 26626 170182 -1 1904 20 1534 2200 211911 43949 4.35121 4.35121 -139.979 -4.35121 0 0 902133. 3121.57 0.33 0.09 0.17 -1 -1 0.33 0.0271781 0.0241431 74 20 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 7.46 vpr 63.12 MiB 0.03 6872 -1 -1 1 0.03 -1 -1 30184 -1 -1 12 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.5 MiB 0.87 607 9374 3879 5147 348 63.1 MiB 0.11 0.00 3.0545 -108.859 -3.0545 3.0545 0.79 0.000707964 0.000654962 0.0463778 0.042932 38 1928 41 6.95648e+06 173708 678818. 2348.85 3.55 0.205701 0.17927 26626 170182 -1 1502 24 1389 1829 175874 36943 3.02772 3.02772 -116.322 -3.02772 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0325291 0.0283962 61 58 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.61 vpr 63.60 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.7 MiB 1.40 777 7669 3175 4304 190 63.6 MiB 0.09 0.00 3.0765 -113.072 -3.0765 3.0765 0.91 0.000506285 0.000461716 0.0355571 0.032779 36 2485 23 6.95648e+06 144757 648988. 2245.63 3.89 0.191107 0.16706 26050 158493 -1 2046 21 1209 1938 215887 40957 3.41097 3.41097 -124.918 -3.41097 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0327287 0.0288082 60 88 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 19.88 vpr 63.57 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 0.19 795 9448 3333 4743 1372 63.6 MiB 0.12 0.00 3.89245 -136.332 -3.89245 3.89245 0.92 0.000756242 0.000695498 0.034164 0.0314645 46 3176 48 6.95648e+06 361892 828058. 2865.25 16.12 0.376346 0.326225 28066 200906 -1 2136 22 1851 2833 343213 72146 4.28572 4.28572 -152.852 -4.28572 0 0 1.01997e+06 3529.29 0.35 0.12 0.19 -1 -1 0.35 0.0329616 0.0290305 86 -1 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 23.70 vpr 63.62 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30540 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.7 MiB 1.49 926 10495 2590 6894 1011 63.6 MiB 0.16 0.01 3.78219 -140.482 -3.78219 3.78219 0.90 0.000911003 0.000841819 0.0435 0.0401273 38 3067 50 6.95648e+06 390843 678818. 2348.85 18.76 0.424616 0.369597 26626 170182 -1 2334 21 1983 3252 332775 61340 3.97396 3.97396 -151.497 -3.97396 0 0 902133. 3121.57 0.33 0.12 0.17 -1 -1 0.33 0.0358266 0.0315737 86 57 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 9.68 vpr 63.72 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30416 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.77 831 9336 3198 4890 1248 63.7 MiB 0.13 0.00 3.70819 -135.715 -3.70819 3.70819 0.79 0.000817567 0.000752229 0.0427613 0.0395712 46 2972 41 6.95648e+06 376368 828058. 2865.25 4.55 0.238463 0.208273 28066 200906 -1 2199 30 2226 3425 534270 167425 4.11646 4.11646 -151.715 -4.11646 0 0 1.01997e+06 3529.29 0.34 0.18 0.20 -1 -1 0.34 0.0492775 0.0433814 85 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.99 vpr 63.68 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 1.10 822 13351 4683 6743 1925 63.7 MiB 0.18 0.00 3.75544 -130.593 -3.75544 3.75544 0.78 0.000834142 0.000768202 0.0572578 0.0529152 50 2916 25 6.95648e+06 390843 902133. 3121.57 5.50 0.334006 0.290197 28642 213929 -1 2146 24 1746 2898 447947 134755 3.96616 3.96616 -145.731 -3.96616 0 0 1.08113e+06 3740.92 0.33 0.15 0.21 -1 -1 0.33 0.038637 0.0338531 86 62 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.89 vpr 62.95 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30376 -1 -1 12 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 0.79 551 9064 3696 4990 378 62.9 MiB 0.11 0.00 3.29416 -111.889 -3.29416 3.29416 0.79 0.000667761 0.00061722 0.0414365 0.0383544 40 2036 23 6.95648e+06 173708 706193. 2443.58 2.09 0.177169 0.154259 26914 176310 -1 1859 21 1372 2084 273262 58723 3.34052 3.34052 -122.608 -3.34052 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0279618 0.024501 62 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 9.40 vpr 63.65 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30416 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 24.8 MiB 0.82 751 12465 5336 6622 507 63.6 MiB 0.16 0.00 4.015 -133.992 -4.015 4.015 0.79 0.000797222 0.000736495 0.0638313 0.059041 62 1774 24 6.95648e+06 217135 1.05005e+06 3633.38 5.18 0.321573 0.280475 30946 263737 -1 1357 18 1300 1795 167469 33416 3.95226 3.95226 -132.083 -3.95226 0 0 1.30136e+06 4502.97 0.39 0.08 0.25 -1 -1 0.39 0.0304146 0.0269271 78 58 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.49 vpr 63.80 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30852 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.0 MiB 1.68 807 14351 4061 7900 2390 63.8 MiB 0.19 0.00 3.71619 -135.355 -3.71619 3.71619 0.79 0.00093283 0.000863331 0.0651428 0.0603021 48 2485 31 6.95648e+06 448746 865456. 2994.66 5.34 0.352669 0.309324 28354 207349 -1 2096 24 2021 3007 372571 72781 3.85966 3.85966 -144.535 -3.85966 0 0 1.05005e+06 3633.38 0.32 0.13 0.22 -1 -1 0.32 0.0421105 0.0367961 88 106 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.48 vpr 63.64 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30392 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.95 718 14035 5965 7479 591 63.6 MiB 0.18 0.00 3.9948 -135.983 -3.9948 3.9948 0.80 0.000856968 0.000790423 0.0684043 0.0632393 46 2469 42 6.95648e+06 318465 828058. 2865.25 4.30 0.274281 0.241945 28066 200906 -1 1716 21 1568 2319 204950 42316 3.87381 3.87381 -138.135 -3.87381 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0359416 0.0316497 81 79 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 8.22 vpr 63.55 MiB 0.05 7084 -1 -1 1 0.04 -1 -1 30472 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65080 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.7 MiB 1.60 700 13668 5834 7221 613 63.6 MiB 0.16 0.00 3.27591 -109.838 -3.27591 3.27591 0.95 0.000637208 0.000587636 0.0574724 0.0529131 46 2549 39 6.95648e+06 260562 828058. 2865.25 3.08 0.24476 0.215949 28066 200906 -1 1776 26 1662 2481 314380 73518 3.15782 3.15782 -119.93 -3.15782 0 0 1.01997e+06 3529.29 0.31 0.12 0.21 -1 -1 0.31 0.0410678 0.0359946 75 83 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.98 vpr 63.62 MiB 0.04 7020 -1 -1 1 0.04 -1 -1 30612 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.8 MiB 1.80 782 12628 3922 6830 1876 63.6 MiB 0.18 0.00 3.65989 -133.508 -3.65989 3.65989 0.79 0.000846752 0.000782666 0.0683613 0.0632705 48 2703 45 6.95648e+06 188184 865456. 2994.66 3.81 0.267328 0.234808 28354 207349 -1 2210 30 2465 4179 616570 159659 3.98016 3.98016 -151.445 -3.98016 0 0 1.05005e+06 3633.38 0.32 0.19 0.20 -1 -1 0.32 0.0469412 0.0411639 81 58 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 7.10 vpr 63.49 MiB 0.03 7200 -1 -1 1 0.04 -1 -1 30356 -1 -1 22 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 1.12 662 10163 3749 4795 1619 63.5 MiB 0.13 0.00 3.14182 -102.393 -3.14182 3.14182 0.85 0.000789805 0.00072968 0.0488128 0.0451767 48 1973 21 6.95648e+06 318465 865456. 2994.66 2.61 0.204846 0.179238 28354 207349 -1 1696 21 1624 2407 283316 65812 3.55817 3.55817 -118.337 -3.55817 0 0 1.05005e+06 3633.38 0.34 0.10 0.20 -1 -1 0.34 0.0329282 0.0289423 77 81 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 14.02 vpr 62.90 MiB 0.04 6812 -1 -1 1 0.04 -1 -1 30380 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.82 574 9219 3815 5040 364 62.9 MiB 0.11 0.00 2.94595 -112.182 -2.94595 2.94595 0.78 0.000664356 0.000614127 0.0418007 0.0386915 52 1840 30 6.95648e+06 144757 926341. 3205.33 9.92 0.335413 0.289923 29218 227130 -1 1364 19 1266 1929 183032 41983 3.25632 3.25632 -121.311 -3.25632 0 0 1.14541e+06 3963.36 0.42 0.08 0.23 -1 -1 0.42 0.0249884 0.0223409 61 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.83 vpr 63.67 MiB 0.06 7084 -1 -1 1 0.04 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.8 MiB 3.56 749 15688 6578 8529 581 63.7 MiB 0.17 0.00 3.77419 -136.605 -3.77419 3.77419 0.91 0.000588376 0.000538409 0.0607865 0.0558858 54 2216 46 6.95648e+06 347416 949917. 3286.91 3.63 0.270771 0.238349 29506 232905 -1 1659 23 1808 2766 282099 57836 3.98196 3.98196 -141.254 -3.98196 0 0 1.17392e+06 4061.99 0.37 0.13 0.24 -1 -1 0.37 0.0440165 0.0390452 84 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.65 vpr 63.66 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.8 MiB 0.72 800 13117 5732 6986 399 63.7 MiB 0.16 0.00 3.79019 -142.199 -3.79019 3.79019 0.88 0.000763376 0.000697629 0.0614735 0.0565942 44 2737 44 6.95648e+06 188184 787024. 2723.27 2.70 0.258748 0.227525 27778 195446 -1 1953 21 2020 2717 286927 58517 3.99606 3.99606 -152.809 -3.99606 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0355463 0.0313579 81 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 9.05 vpr 63.20 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30524 -1 -1 11 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.3 MiB 1.15 575 11609 4562 5941 1106 63.2 MiB 0.13 0.00 3.25495 -109.238 -3.25495 3.25495 0.92 0.000698739 0.000645872 0.044921 0.0412674 42 2279 39 6.95648e+06 159232 744469. 2576.02 4.55 0.24109 0.210099 27202 183097 -1 1590 19 1210 1704 167210 37749 3.48987 3.48987 -120.589 -3.48987 0 0 949917. 3286.91 0.29 0.07 0.18 -1 -1 0.29 0.0267479 0.0235052 60 47 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 5.75 vpr 62.91 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30396 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.29 835 9529 3959 5371 199 62.9 MiB 0.10 0.00 3.0815 -119.168 -3.0815 3.0815 0.85 0.000497636 0.000453116 0.0342099 0.0314621 36 2313 46 6.95648e+06 159232 648988. 2245.63 2.29 0.158495 0.13944 26050 158493 -1 1902 17 1321 1851 210326 39149 3.23112 3.23112 -132.752 -3.23112 0 0 828058. 2865.25 0.30 0.08 0.15 -1 -1 0.30 0.0239273 0.0211794 63 -1 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 8.16 vpr 63.50 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.7 MiB 1.28 782 14483 5692 6794 1997 63.5 MiB 0.19 0.00 3.70334 -129.205 -3.70334 3.70334 0.78 0.000795574 0.000733458 0.0672545 0.0620897 38 2510 20 6.95648e+06 275038 678818. 2348.85 3.75 0.237773 0.210571 26626 170182 -1 1986 20 1548 2022 200502 38894 3.84821 3.84821 -137.719 -3.84821 0 0 902133. 3121.57 0.31 0.09 0.17 -1 -1 0.31 0.0312387 0.027726 78 56 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.13 vpr 63.53 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30308 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.7 MiB 0.73 793 11474 4768 6294 412 63.5 MiB 0.16 0.00 3.90986 -132.869 -3.90986 3.90986 0.79 0.000828551 0.000765267 0.0574652 0.0531635 40 2926 31 6.95648e+06 260562 706193. 2443.58 5.15 0.241792 0.212945 26914 176310 -1 2267 24 2014 2928 338947 71803 4.63482 4.63482 -153.925 -4.63482 0 0 926341. 3205.33 0.32 0.12 0.17 -1 -1 0.32 0.0384439 0.0336672 78 81 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.39 vpr 63.67 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30560 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.0 MiB 0.46 1152 4375 861 3334 180 63.7 MiB 0.09 0.01 4.48239 -161.071 -4.48239 4.48239 0.81 0.000864767 0.000799712 0.0221924 0.0206434 46 3211 43 6.95648e+06 390843 828058. 2865.25 4.56 0.223501 0.194576 28066 200906 -1 2609 22 2256 3511 404918 72276 4.83866 4.83866 -171.756 -4.83866 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0380061 0.0336272 100 -1 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 6.60 vpr 63.54 MiB 0.03 7124 -1 -1 1 0.04 -1 -1 30572 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65068 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.7 MiB 1.01 698 14528 6104 7488 936 63.5 MiB 0.19 0.00 3.34296 -113.702 -3.34296 3.34296 0.78 0.000782319 0.000722813 0.069419 0.064199 44 2220 24 6.95648e+06 260562 787024. 2723.27 2.28 0.226612 0.199726 27778 195446 -1 1741 19 1523 2204 221976 44959 3.08387 3.08387 -114.275 -3.08387 0 0 997811. 3452.63 0.37 0.09 0.20 -1 -1 0.37 0.0316938 0.0281485 77 47 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.46 vpr 62.79 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 30620 -1 -1 15 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.2 MiB 0.51 465 10459 4157 5359 943 62.8 MiB 0.11 0.00 3.15776 -95.8334 -3.15776 3.15776 0.79 0.000614775 0.000568917 0.0437508 0.0404976 36 1785 30 6.95648e+06 217135 648988. 2245.63 1.95 0.171888 0.149998 26050 158493 -1 1264 21 1100 1314 144780 31077 2.90352 2.90352 -101.292 -2.90352 0 0 828058. 2865.25 0.30 0.07 0.16 -1 -1 0.30 0.0271943 0.0238084 57 26 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 8.34 vpr 63.63 MiB 0.05 7316 -1 -1 1 0.03 -1 -1 30612 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.3 MiB 0.84 956 13513 4288 6425 2800 63.6 MiB 0.19 0.00 4.037 -139.704 -4.037 4.037 0.82 0.000990797 0.000916446 0.0676832 0.062696 52 3911 46 6.95648e+06 434271 926341. 3205.33 3.96 0.31136 0.273724 29218 227130 -1 2300 21 2187 3715 368544 73427 3.95522 3.95522 -145.053 -3.95522 0 0 1.14541e+06 3963.36 0.42 0.13 0.22 -1 -1 0.42 0.0430109 0.0383789 103 85 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.61 vpr 63.80 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30572 -1 -1 14 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65336 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.3 MiB 3.52 899 8716 2535 4990 1191 63.8 MiB 0.13 0.00 4.57784 -152.287 -4.57784 4.57784 0.80 0.000923605 0.00085572 0.0528846 0.0490992 40 2708 23 6.95648e+06 202660 706193. 2443.58 2.90 0.250674 0.221523 26914 176310 -1 2344 24 1803 2731 349724 66961 4.91091 4.91091 -165.721 -4.91091 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0416233 0.0364015 79 105 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 10.90 vpr 63.38 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30556 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.5 MiB 2.87 500 11389 4353 5738 1298 63.4 MiB 0.14 0.00 3.0346 -106.135 -3.0346 3.0346 0.79 0.000742335 0.000685282 0.0580607 0.0536619 46 1833 29 6.95648e+06 144757 828058. 2865.25 4.79 0.32364 0.280819 28066 200906 -1 1205 42 1488 2346 222106 50418 2.99292 2.99292 -111.253 -2.99292 0 0 1.01997e+06 3529.29 0.35 0.11 0.19 -1 -1 0.35 0.047307 0.0411238 58 86 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 7.11 vpr 63.54 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30528 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.7 MiB 0.42 819 12938 5293 7361 284 63.5 MiB 0.16 0.00 4.12326 -140.658 -4.12326 4.12326 0.86 0.000796059 0.000735627 0.0496593 0.045745 44 2749 41 6.95648e+06 318465 787024. 2723.27 3.15 0.211052 0.18592 27778 195446 -1 1951 21 1853 2799 291011 57024 3.96922 3.96922 -146.023 -3.96922 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.0315051 0.0277445 83 31 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 7.17 vpr 63.98 MiB 0.05 7172 -1 -1 1 0.04 -1 -1 30668 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65512 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.2 MiB 0.97 852 12560 4728 5964 1868 64.0 MiB 0.17 0.00 4.1192 -140.393 -4.1192 4.1192 0.92 0.000935551 0.000864538 0.0557527 0.0514239 44 2902 35 6.95648e+06 332941 787024. 2723.27 2.61 0.25674 0.225374 27778 195446 -1 2213 22 1895 2598 274715 53050 4.06632 4.06632 -147.269 -4.06632 0 0 997811. 3452.63 0.36 0.11 0.19 -1 -1 0.36 0.0389031 0.0346155 95 50 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 10.09 vpr 63.37 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64892 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.8 MiB 0.98 739 10762 4429 5782 551 63.4 MiB 0.13 0.00 3.27396 -108.751 -3.27396 3.27396 0.83 0.000787156 0.000727513 0.0504612 0.0467104 52 2215 36 6.95648e+06 289514 926341. 3205.33 5.67 0.296553 0.259238 29218 227130 -1 1673 17 1244 1950 170901 36553 3.43483 3.43483 -113.669 -3.43483 0 0 1.14541e+06 3963.36 0.42 0.07 0.23 -1 -1 0.42 0.0264437 0.0234724 78 50 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 9.12 vpr 63.70 MiB 0.04 7180 -1 -1 1 0.05 -1 -1 30452 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65228 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.0 MiB 0.56 907 15848 6161 8045 1642 63.7 MiB 0.19 0.00 3.79319 -139.401 -3.79319 3.79319 0.80 0.000841567 0.0007768 0.0628856 0.0581262 50 2281 28 6.95648e+06 492173 902133. 3121.57 5.13 0.320544 0.279565 28642 213929 -1 1990 18 1722 2442 281278 52538 3.72056 3.72056 -142.947 -3.72056 0 0 1.08113e+06 3740.92 0.35 0.10 0.20 -1 -1 0.35 0.031668 0.0280057 91 61 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 8.07 vpr 63.89 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30408 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65420 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 25.0 MiB 0.61 794 15215 5485 7366 2364 63.9 MiB 0.20 0.00 3.05335 -116.88 -3.05335 3.05335 0.79 0.000836786 0.000771458 0.0625059 0.0576744 44 2204 29 6.95648e+06 448746 787024. 2723.27 4.15 0.318858 0.277889 27778 195446 -1 1791 20 1510 1967 236570 45600 2.89922 2.89922 -119.601 -2.89922 0 0 997811. 3452.63 0.37 0.09 0.19 -1 -1 0.37 0.0328905 0.0291639 90 61 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 9.69 vpr 62.76 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30556 -1 -1 13 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.2 MiB 3.22 577 8599 3570 4706 323 62.8 MiB 0.09 0.00 3.17976 -103.796 -3.17976 3.17976 0.79 0.000647316 0.000598209 0.0393261 0.0363809 36 1572 28 6.95648e+06 188184 648988. 2245.63 3.52 0.215307 0.186496 26050 158493 -1 1335 20 1019 1254 132251 27005 2.99587 2.99587 -110.83 -2.99587 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0262495 0.0230337 56 28 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.21 vpr 63.22 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30068 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 0.86 584 9839 4132 5456 251 63.2 MiB 0.11 0.00 2.9814 -102.92 -2.9814 2.9814 0.79 0.000706879 0.000652479 0.0473275 0.0437331 40 1922 29 6.95648e+06 144757 706193. 2443.58 2.23 0.176597 0.154444 26914 176310 -1 1589 26 1404 1733 434983 159543 2.91832 2.91832 -112.192 -2.91832 0 0 926341. 3205.33 0.34 0.16 0.18 -1 -1 0.34 0.0353027 0.031254 58 79 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 21.23 vpr 63.27 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30520 -1 -1 28 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64788 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 0.49 743 12331 4128 5906 2297 63.3 MiB 0.14 0.00 4.24545 -140.476 -4.24545 4.24545 0.79 0.000787406 0.000726678 0.0505997 0.046838 48 2419 44 6.95648e+06 405319 865456. 2994.66 17.49 0.42764 0.373157 28354 207349 -1 1892 22 1582 2283 289608 58212 3.88486 3.88486 -143.662 -3.88486 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0341839 0.030087 86 29 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 7.51 vpr 62.85 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30400 -1 -1 14 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.2 MiB 1.20 494 12399 5297 6440 662 62.8 MiB 0.13 0.00 3.26295 -100.502 -3.26295 3.26295 0.82 0.000656281 0.000605218 0.0537417 0.0497071 40 2035 50 6.95648e+06 202660 706193. 2443.58 3.13 0.213961 0.18791 26914 176310 -1 1515 21 1189 1695 204706 57767 3.44692 3.44692 -108.798 -3.44692 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.0260257 0.0229281 59 48 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 8.92 vpr 63.15 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 1.15 698 10149 3910 5225 1014 63.2 MiB 0.14 0.00 3.05815 -118.306 -3.05815 3.05815 0.79 0.000778739 0.000723459 0.0516769 0.0478605 44 2023 20 6.95648e+06 144757 787024. 2723.27 4.59 0.266257 0.233339 27778 195446 -1 1549 20 1394 1924 229579 41672 2.99782 2.99782 -120.785 -2.99782 0 0 997811. 3452.63 0.34 0.09 0.20 -1 -1 0.34 0.0294638 0.0259519 61 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 11.95 vpr 63.59 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30424 -1 -1 24 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65116 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 24.8 MiB 1.07 717 11607 3761 5813 2033 63.6 MiB 0.15 0.00 3.1175 -113.433 -3.1175 3.1175 0.79 0.000808689 0.000747603 0.0520335 0.0480968 38 2211 26 6.95648e+06 347416 678818. 2348.85 7.70 0.38054 0.334093 26626 170182 -1 1635 24 1763 2255 211927 43630 3.42197 3.42197 -127.209 -3.42197 0 0 902133. 3121.57 0.32 0.09 0.17 -1 -1 0.32 0.0353121 0.0312827 82 60 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 9.17 vpr 63.02 MiB 0.06 6872 -1 -1 1 0.03 -1 -1 30308 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.4 MiB 2.20 682 10459 3058 6921 480 63.0 MiB 0.13 0.00 3.13575 -104.344 -3.13575 3.13575 0.79 0.000678842 0.000627539 0.0480396 0.0444584 38 1872 30 6.95648e+06 159232 678818. 2348.85 3.95 0.242474 0.210351 26626 170182 -1 1625 18 976 1436 135459 27796 2.87052 2.87052 -110.596 -2.87052 0 0 902133. 3121.57 0.27 0.07 0.15 -1 -1 0.27 0.026079 0.0229275 57 49 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 7.73 vpr 63.61 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.8 MiB 1.59 710 12323 5117 6727 479 63.6 MiB 0.15 0.00 3.0155 -107.222 -3.0155 3.0155 0.80 0.000799994 0.000739158 0.0590735 0.0546191 48 2055 19 6.95648e+06 275038 865456. 2994.66 2.55 0.214062 0.188034 28354 207349 -1 1680 52 2051 2878 711012 341912 2.95667 2.95667 -110.45 -2.95667 0 0 1.05005e+06 3633.38 0.38 0.28 0.21 -1 -1 0.38 0.0670148 0.0583683 76 56 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.40 vpr 63.62 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30292 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65144 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 24.7 MiB 1.47 717 15298 5325 7460 2513 63.6 MiB 0.20 0.00 3.41641 -118.296 -3.41641 3.41641 0.79 0.000927286 0.000857029 0.0704062 0.0650366 42 2810 47 6.95648e+06 361892 744469. 2576.02 2.65 0.266509 0.237109 27202 183097 -1 1924 21 1793 2419 269475 55278 3.41277 3.41277 -130.193 -3.41277 0 0 949917. 3286.91 0.31 0.11 0.19 -1 -1 0.31 0.0355775 0.0313065 85 88 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 14.33 vpr 63.27 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30520 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.4 MiB 0.87 564 10149 3066 5426 1657 63.3 MiB 0.14 0.00 2.9023 -103.177 -2.9023 2.9023 0.78 0.000718272 0.000662838 0.0484266 0.0447639 40 2101 50 6.95648e+06 144757 706193. 2443.58 10.31 0.36566 0.315942 26914 176310 -1 1651 24 1337 2015 251493 53014 3.17132 3.17132 -117.428 -3.17132 0 0 926341. 3205.33 0.29 0.10 0.17 -1 -1 0.29 0.0345145 0.0303186 61 54 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 6.75 vpr 63.29 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30156 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.4 MiB 1.19 611 8289 3413 4626 250 63.3 MiB 0.10 0.00 3.0515 -113.367 -3.0515 3.0515 0.78 0.00072348 0.000667811 0.0413148 0.0382182 50 1848 45 6.95648e+06 144757 902133. 3121.57 2.46 0.204754 0.178378 28642 213929 -1 1444 22 1459 2240 213350 47597 2.98867 2.98867 -116.822 -2.98867 0 0 1.08113e+06 3740.92 0.33 0.09 0.20 -1 -1 0.33 0.0315724 0.0276645 63 60 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.42 vpr 63.64 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30720 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 24.7 MiB 1.01 951 8283 1857 5834 592 63.6 MiB 0.12 0.01 3.78219 -143.123 -3.78219 3.78219 0.90 0.000905243 0.000837255 0.0324308 0.0298756 40 2468 43 6.95648e+06 419795 706193. 2443.58 3.84 0.229683 0.201743 26914 176310 -1 2327 29 2377 3467 539275 160924 4.19956 4.19956 -161.71 -4.19956 0 0 926341. 3205.33 0.34 0.19 0.17 -1 -1 0.34 0.0449383 0.0397569 88 49 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.82 vpr 63.29 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30504 -1 -1 19 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.7 MiB 1.00 739 8336 2662 4258 1416 63.3 MiB 0.10 0.00 3.1065 -104.923 -3.1065 3.1065 0.90 0.000772408 0.00071462 0.0346764 0.0319599 44 1954 39 6.95648e+06 275038 787024. 2723.27 4.52 0.277859 0.242442 27778 195446 -1 1325 24 1368 1972 122291 31027 3.29527 3.29527 -111.798 -3.29527 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0357986 0.0313761 77 54 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 11.43 vpr 63.90 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30660 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.2 MiB 1.77 819 16473 6066 7302 3105 63.9 MiB 0.17 0.00 3.81039 -138.347 -3.81039 3.81039 0.87 0.00093012 0.00085962 0.0651352 0.0598761 48 2611 41 6.95648e+06 419795 865456. 2994.66 6.01 0.284979 0.251211 28354 207349 -1 2023 29 2304 3495 484791 115328 4.37806 4.37806 -155.925 -4.37806 0 0 1.05005e+06 3633.38 0.39 0.18 0.21 -1 -1 0.39 0.0554864 0.0486196 89 117 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 7.14 vpr 62.78 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30288 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.3 MiB 1.37 588 9529 3953 5280 296 62.8 MiB 0.11 0.00 3.02776 -101.68 -3.02776 3.02776 0.79 0.000618104 0.000571454 0.040734 0.0377461 38 2131 44 6.95648e+06 159232 678818. 2348.85 2.81 0.188293 0.164346 26626 170182 -1 1536 20 1072 1591 142914 31341 3.13237 3.13237 -111.806 -3.13237 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0252618 0.0221883 58 -1 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 7.30 vpr 63.80 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65332 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 1.02 751 13335 4844 6817 1674 63.8 MiB 0.17 0.00 3.74945 -128.098 -3.74945 3.74945 0.80 0.000852565 0.000787041 0.063856 0.0590572 50 2338 33 6.95648e+06 332941 902133. 3121.57 2.99 0.246484 0.216361 28642 213929 -1 1646 23 1669 2164 231096 47396 3.82366 3.82366 -138.646 -3.82366 0 0 1.08113e+06 3740.92 0.35 0.10 0.21 -1 -1 0.35 0.0392064 0.0345223 81 89 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.28 vpr 63.42 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30128 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 2.84 613 11854 5235 6332 287 63.4 MiB 0.15 0.00 2.96105 -113.67 -2.96105 2.96105 0.80 0.000774983 0.000715608 0.0637032 0.0588886 44 2090 26 6.95648e+06 144757 787024. 2723.27 5.12 0.336083 0.292173 27778 195446 -1 1506 23 1524 2132 243246 49801 3.11862 3.11862 -126.977 -3.11862 0 0 997811. 3452.63 0.37 0.10 0.19 -1 -1 0.37 0.0338398 0.0299739 61 93 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.96 vpr 63.63 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 1.19 784 11983 4223 5778 1982 63.6 MiB 0.16 0.00 3.13882 -116.487 -3.13882 3.13882 0.79 0.000835835 0.000771678 0.0542254 0.0501224 48 2200 27 6.95648e+06 347416 865456. 2994.66 2.41 0.225975 0.198075 28354 207349 -1 1848 22 1447 2175 233055 49045 3.64437 3.64437 -129.909 -3.64437 0 0 1.05005e+06 3633.38 0.39 0.10 0.21 -1 -1 0.39 0.035785 0.0318507 84 59 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.40 vpr 63.73 MiB 0.03 7244 -1 -1 1 0.04 -1 -1 30784 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.4 MiB 1.48 961 18301 6218 9454 2629 63.7 MiB 0.25 0.00 4.52824 -160.34 -4.52824 4.52824 0.79 0.00100154 0.00092526 0.0865141 0.0800846 46 2966 28 6.95648e+06 477698 828058. 2865.25 4.48 0.296971 0.261476 28066 200906 -1 2355 22 2510 3753 383660 73024 4.96261 4.96261 -175.35 -4.96261 0 0 1.01997e+06 3529.29 0.37 0.13 0.20 -1 -1 0.37 0.0430155 0.0382964 104 81 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.92 vpr 62.54 MiB 0.06 6948 -1 -1 1 0.03 -1 -1 30164 -1 -1 10 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.0 MiB 0.48 395 8267 2975 4043 1249 62.5 MiB 0.07 0.00 2.20646 -76.6701 -2.20646 2.20646 0.94 0.000399966 0.000367098 0.0242803 0.0221802 38 1014 35 6.95648e+06 144757 678818. 2348.85 2.19 0.148691 0.128143 26626 170182 -1 808 18 542 640 49285 13329 2.20283 2.20283 -74.674 -2.20283 0 0 902133. 3121.57 0.31 0.05 0.18 -1 -1 0.31 0.0213434 0.0186815 45 51 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.94 vpr 62.97 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30380 -1 -1 12 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.3 MiB 1.85 505 9994 3801 4923 1270 63.0 MiB 0.11 0.00 3.20866 -106.336 -3.20866 3.20866 0.80 0.000663413 0.000613668 0.0452039 0.0418432 40 1599 27 6.95648e+06 173708 706193. 2443.58 2.06 0.170366 0.149336 26914 176310 -1 1426 21 1210 1755 189370 41303 3.00687 3.00687 -114.329 -3.00687 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0282687 0.0247944 58 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.92 vpr 62.92 MiB 0.02 6800 -1 -1 1 0.05 -1 -1 30040 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.3 MiB 0.25 594 9219 3126 4706 1387 62.9 MiB 0.13 0.00 2.93285 -111.664 -2.93285 2.93285 0.80 0.000708697 0.00065486 0.0447861 0.0414658 50 1586 28 6.95648e+06 144757 902133. 3121.57 2.24 0.177346 0.155417 28642 213929 -1 1439 19 1416 2281 215816 46389 2.99482 2.99482 -112.756 -2.99482 0 0 1.08113e+06 3740.92 0.33 0.09 0.21 -1 -1 0.33 0.0273884 0.0241204 65 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 11.27 vpr 62.68 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30348 -1 -1 15 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64188 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.2 MiB 0.50 415 9310 3976 4598 736 62.7 MiB 0.09 0.00 3.24096 -89.6096 -3.24096 3.24096 0.87 0.00041289 0.000375781 0.0370456 0.0342983 40 1616 44 6.95648e+06 217135 706193. 2443.58 7.57 0.279445 0.240424 26914 176310 -1 1253 23 1253 1648 153916 35930 3.06187 3.06187 -97.7737 -3.06187 0 0 926341. 3205.33 0.28 0.07 0.17 -1 -1 0.28 0.0262487 0.0228931 56 19 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 9.93 vpr 63.81 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30648 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.1 MiB 1.27 849 10835 4559 6029 247 63.8 MiB 0.16 0.00 3.79924 -134.385 -3.79924 3.79924 0.79 0.000875884 0.000804029 0.06143 0.0568651 46 3184 31 6.95648e+06 188184 828058. 2865.25 5.38 0.332106 0.289207 28066 200906 -1 2502 24 2065 3666 431024 82895 4.27126 4.27126 -153.969 -4.27126 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0403628 0.035351 77 84 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.35 vpr 63.60 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30316 -1 -1 29 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65128 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.0 MiB 1.00 742 12512 4241 5927 2344 63.6 MiB 0.14 0.00 3.1116 -112.527 -3.1116 3.1116 0.90 0.000857173 0.000791605 0.0475808 0.043792 40 2314 27 6.95648e+06 419795 706193. 2443.58 2.77 0.222954 0.194791 26914 176310 -1 1891 43 2995 4090 722606 253385 3.26557 3.26557 -124.08 -3.26557 0 0 926341. 3205.33 0.29 0.24 0.19 -1 -1 0.29 0.0630366 0.0547227 87 88 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 6.85 vpr 63.40 MiB 0.04 7144 -1 -1 1 0.04 -1 -1 30600 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 24.9 MiB 0.76 1062 15584 5717 7278 2589 63.4 MiB 0.20 0.00 4.46104 -158.567 -4.46104 4.46104 0.91 0.000905945 0.000838302 0.0655131 0.0602267 50 3112 23 6.99608e+06 323745 902133. 3121.57 2.51 0.228082 0.200751 28642 213929 -1 2334 20 2172 2554 259886 53091 4.94881 4.94881 -167.782 -4.94881 0 0 1.08113e+06 3740.92 0.33 0.10 0.21 -1 -1 0.33 0.0357533 0.0315378 130 80 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 24.34 vpr 63.61 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30724 -1 -1 20 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65136 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 24.9 MiB 1.35 1018 13610 5732 7207 671 63.6 MiB 0.19 0.00 4.50158 -148.332 -4.50158 4.50158 0.79 0.000834869 0.000771539 0.0676491 0.0625738 48 3345 36 6.99608e+06 294314 865456. 2994.66 19.45 0.50482 0.440688 28354 207349 -1 2686 33 2662 3779 726333 209050 4.88889 4.88889 -165.69 -4.88889 0 0 1.05005e+06 3633.38 0.39 0.23 0.21 -1 -1 0.39 0.0510839 0.0451356 117 78 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 6.69 vpr 63.53 MiB 0.04 7096 -1 -1 1 0.05 -1 -1 30364 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.7 MiB 0.93 1040 13610 5701 7488 421 63.5 MiB 0.17 0.00 3.59279 -128.627 -3.59279 3.59279 0.84 0.00065216 0.00059654 0.0589657 0.0543546 44 3009 38 6.99608e+06 264882 787024. 2723.27 2.43 0.203052 0.179653 27778 195446 -1 2233 22 1759 2058 212655 41848 3.75976 3.75976 -137.846 -3.75976 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0350499 0.0308528 106 50 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.85 vpr 63.04 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.5 MiB 0.74 806 14444 6101 7602 741 63.0 MiB 0.18 0.00 3.79615 -125.537 -3.79615 3.79615 0.78 0.000746675 0.000690712 0.0663805 0.0614788 40 2587 24 6.99608e+06 264882 706193. 2443.58 2.91 0.21681 0.190875 26914 176310 -1 2236 31 2427 3542 431767 103734 4.28572 4.28572 -147.733 -4.28572 0 0 926341. 3205.33 0.28 0.15 0.17 -1 -1 0.28 0.0427337 0.0373982 89 25 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 7.29 vpr 63.32 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30280 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 0.56 871 12416 4669 6393 1354 63.3 MiB 0.18 0.00 4.27644 -154.345 -4.27644 4.27644 0.79 0.000804125 0.000743214 0.0620665 0.0574101 56 2640 24 6.99608e+06 220735 973134. 3367.25 3.39 0.225779 0.198559 29794 239141 -1 2041 22 2151 3328 323663 74894 4.34425 4.34425 -156.25 -4.34425 0 0 1.19926e+06 4149.71 0.36 0.12 0.23 -1 -1 0.36 0.035268 0.0310468 93 31 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 25.82 vpr 63.64 MiB 0.03 7084 -1 -1 1 0.04 -1 -1 30412 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 25.0 MiB 0.57 1298 16069 5589 8587 1893 63.6 MiB 0.21 0.00 3.60699 -134.626 -3.60699 3.60699 0.86 0.000820485 0.000753671 0.0571048 0.0525316 44 3440 31 6.99608e+06 441471 787024. 2723.27 21.70 0.410171 0.356571 27778 195446 -1 2748 20 2148 3100 337734 62228 3.51721 3.51721 -144.234 -3.51721 0 0 997811. 3452.63 0.32 0.11 0.19 -1 -1 0.32 0.0342164 0.0302461 117 61 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 13.46 vpr 62.71 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30616 -1 -1 15 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.1 MiB 1.22 620 8289 3348 4414 527 62.7 MiB 0.09 0.00 3.30124 -103.988 -3.30124 3.30124 0.79 0.000619581 0.000573484 0.0351646 0.0325933 40 1942 39 6.99608e+06 220735 706193. 2443.58 9.16 0.31797 0.275186 26914 176310 -1 1737 21 1506 2153 256688 54350 3.32081 3.32081 -116.197 -3.32081 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0276008 0.024204 68 26 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 8.43 vpr 62.91 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30132 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.3 MiB 0.47 708 9368 3795 5080 493 62.9 MiB 0.11 0.00 2.88485 -101.173 -2.88485 2.88485 0.79 0.000721641 0.000667101 0.041962 0.0388617 46 2364 34 6.99608e+06 250167 828058. 2865.25 4.78 0.204934 0.17898 28066 200906 -1 1729 34 1470 2247 334782 130138 3.09392 3.09392 -114.079 -3.09392 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0443544 0.03869 77 -1 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 9.00 vpr 63.19 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30188 -1 -1 15 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.6 MiB 2.73 865 11366 4429 5807 1130 63.2 MiB 0.15 0.00 3.3156 -116.953 -3.3156 3.3156 0.83 0.000720629 0.000666207 0.0520982 0.048199 44 2727 41 6.99608e+06 220735 787024. 2723.27 3.00 0.212067 0.185359 27778 195446 -1 1903 33 1749 2224 309870 96540 3.06027 3.06027 -119.616 -3.06027 0 0 997811. 3452.63 0.32 0.14 0.19 -1 -1 0.32 0.045326 0.0395432 96 81 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 15.51 vpr 63.14 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30400 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.2 MiB 0.70 668 10346 4043 5155 1148 63.1 MiB 0.13 0.00 3.58059 -133.895 -3.58059 3.58059 0.79 0.000704034 0.000650366 0.0466922 0.0431767 42 2630 45 6.99608e+06 191304 744469. 2576.02 11.66 0.345633 0.299746 27202 183097 -1 1710 20 1619 2027 212307 43301 3.47486 3.47486 -137.882 -3.47486 0 0 949917. 3286.91 0.32 0.09 0.18 -1 -1 0.32 0.0291439 0.0257074 79 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 9.73 vpr 63.07 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30244 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.6 MiB 2.19 858 10835 4264 5113 1458 63.1 MiB 0.14 0.00 3.85932 -133.017 -3.85932 3.85932 0.78 0.000698224 0.000645443 0.0489934 0.0453186 46 2286 23 6.99608e+06 220735 828058. 2865.25 4.29 0.280642 0.245856 28066 200906 -1 1884 18 1438 1958 185223 36063 3.4143 3.4143 -128.878 -3.4143 0 0 1.01997e+06 3529.29 0.31 0.08 0.21 -1 -1 0.31 0.0273836 0.0240927 88 58 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.36 vpr 63.32 MiB 0.03 6812 -1 -1 1 0.03 -1 -1 30488 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.6 MiB 0.78 1078 12030 4277 6214 1539 63.3 MiB 0.16 0.00 3.0712 -121.401 -3.0712 3.0712 0.79 0.000711812 0.000657237 0.0546351 0.0505534 40 2549 25 6.99608e+06 206020 706193. 2443.58 4.45 0.292129 0.25488 26914 176310 -1 2260 19 1422 1534 184570 35837 3.14827 3.14827 -126.647 -3.14827 0 0 926341. 3205.33 0.34 0.08 0.17 -1 -1 0.34 0.0269247 0.0239389 91 57 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 9.86 vpr 63.36 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 24.8 MiB 0.96 883 7132 1837 4428 867 63.4 MiB 0.12 0.00 3.50359 -126.552 -3.50359 3.50359 0.86 0.000821842 0.000760725 0.0366547 0.0339604 52 2492 28 6.99608e+06 235451 926341. 3205.33 5.44 0.319807 0.277356 29218 227130 -1 1599 23 1879 2556 241557 51204 3.27256 3.27256 -119.232 -3.27256 0 0 1.14541e+06 3963.36 0.36 0.10 0.22 -1 -1 0.36 0.0365584 0.0321453 101 55 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 9.02 vpr 63.45 MiB 0.02 7064 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 24.8 MiB 0.86 1134 14123 4441 7724 1958 63.4 MiB 0.19 0.00 4.28564 -153.93 -4.28564 4.28564 0.79 0.000845685 0.000781551 0.0694581 0.0642453 54 2714 33 6.99608e+06 279598 949917. 3286.91 4.84 0.332352 0.290207 29506 232905 -1 2089 26 2435 3170 300276 66640 4.76721 4.76721 -168.357 -4.76721 0 0 1.17392e+06 4061.99 0.36 0.12 0.23 -1 -1 0.36 0.0419893 0.0368393 112 60 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 10.18 vpr 62.66 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30696 -1 -1 14 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.1 MiB 2.14 572 11293 4723 5996 574 62.7 MiB 0.12 0.00 2.92195 -96.6009 -2.92195 2.92195 0.79 0.00062336 0.00057624 0.0475005 0.043935 44 1822 40 6.99608e+06 206020 787024. 2723.27 4.97 0.291983 0.252553 27778 195446 -1 1289 23 1152 1611 122385 30022 2.78502 2.78502 -102.414 -2.78502 0 0 997811. 3452.63 0.31 0.07 0.20 -1 -1 0.31 0.0264313 0.0231242 67 21 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 11.25 vpr 63.57 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 24.8 MiB 2.02 1040 13324 4763 6768 1793 63.6 MiB 0.19 0.00 3.68279 -132.173 -3.68279 3.68279 0.82 0.000840471 0.000776875 0.0677981 0.0626941 56 2559 23 6.99608e+06 235451 973134. 3367.25 5.85 0.35608 0.313983 29794 239141 -1 2347 19 2238 3206 414239 80518 3.72241 3.72241 -142.466 -3.72241 0 0 1.19926e+06 4149.71 0.36 0.12 0.25 -1 -1 0.36 0.0328116 0.0289929 106 60 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.83 vpr 63.36 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30452 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.5 MiB 1.09 1122 6731 1649 4394 688 63.4 MiB 0.11 0.00 3.32994 -131.897 -3.32994 3.32994 0.79 0.000817642 0.000756346 0.0339898 0.0314896 38 3068 44 6.99608e+06 250167 678818. 2348.85 4.68 0.236841 0.208406 26626 170182 -1 2561 20 2056 2574 269484 51224 3.38681 3.38681 -140.304 -3.38681 0 0 902133. 3121.57 0.28 0.10 0.16 -1 -1 0.28 0.0329026 0.0290638 99 54 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.96 vpr 63.29 MiB 0.03 6940 -1 -1 1 0.03 -1 -1 30100 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.4 MiB 0.86 871 13856 5887 7726 243 63.3 MiB 0.17 0.00 3.39034 -128.572 -3.39034 3.39034 0.91 0.000731894 0.000675965 0.0549912 0.0505625 44 3126 37 6.99608e+06 206020 787024. 2723.27 2.63 0.217664 0.191179 27778 195446 -1 2119 20 1605 1945 186185 39147 3.26246 3.26246 -131.653 -3.26246 0 0 997811. 3452.63 0.34 0.09 0.19 -1 -1 0.34 0.0306786 0.0270323 91 62 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.77 vpr 62.32 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30152 -1 -1 11 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63816 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.7 MiB 2.24 536 9041 3932 4796 313 62.3 MiB 0.08 0.00 2.34646 -88.6787 -2.34646 2.34646 0.88 0.00036751 0.000333395 0.0284796 0.0261527 36 1464 23 6.99608e+06 161872 648988. 2245.63 2.40 0.134588 0.117152 26050 158493 -1 1249 21 859 941 99661 21651 2.31283 2.31283 -92.2454 -2.31283 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.0210935 0.01855 56 29 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 7.98 vpr 63.30 MiB 0.03 6876 -1 -1 1 0.03 -1 -1 30516 -1 -1 15 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64824 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.6 MiB 2.21 1018 11532 3380 6660 1492 63.3 MiB 0.15 0.00 3.58639 -133.629 -3.58639 3.58639 0.79 0.000726074 0.000671981 0.0530317 0.0491116 40 2554 24 6.99608e+06 220735 706193. 2443.58 2.67 0.207966 0.183454 26914 176310 -1 2340 19 1636 1976 242345 46544 3.91001 3.91001 -147.151 -3.91001 0 0 926341. 3205.33 0.30 0.09 0.17 -1 -1 0.30 0.0287233 0.025681 91 55 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.87 vpr 63.42 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30188 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.44 1089 12759 4547 6573 1639 63.4 MiB 0.16 0.00 4.04748 -146.851 -4.04748 4.04748 0.80 0.00079984 0.000740292 0.0561867 0.0520352 44 2717 49 6.99608e+06 338461 787024. 2723.27 2.20 0.208946 0.183881 27778 195446 -1 2303 21 2013 2736 323338 58160 4.0578 4.0578 -154.555 -4.0578 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0332829 0.0293392 97 31 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 7.30 vpr 63.50 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.1 MiB 1.28 1280 15206 4884 7262 3060 63.5 MiB 0.22 0.00 4.01908 -141.768 -4.01908 4.01908 0.83 0.000922619 0.000854131 0.0790027 0.0732753 44 3751 45 6.99608e+06 323745 787024. 2723.27 2.71 0.270196 0.237488 27778 195446 -1 2635 21 2297 2593 255916 49641 4.11066 4.11066 -145.12 -4.11066 0 0 997811. 3452.63 0.31 0.10 0.20 -1 -1 0.31 0.0384497 0.0337718 138 108 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 8.04 vpr 62.21 MiB 0.04 6772 -1 -1 1 0.02 -1 -1 30740 -1 -1 15 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63708 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.7 MiB 0.79 401 7217 2934 3827 456 62.2 MiB 0.06 0.00 2.7074 -79.2163 -2.7074 2.7074 0.90 0.000332037 0.000300875 0.0202759 0.018576 38 1353 26 6.99608e+06 220735 678818. 2348.85 4.05 0.139719 0.12046 26626 170182 -1 988 17 651 764 74091 18456 2.58187 2.58187 -84.1057 -2.58187 0 0 902133. 3121.57 0.32 0.05 0.17 -1 -1 0.32 0.0162954 0.0144823 52 21 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 18.47 vpr 62.91 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30224 -1 -1 12 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.80 698 9036 3669 4978 389 62.9 MiB 0.12 0.00 3.97238 -133.231 -3.97238 3.97238 0.79 0.000748224 0.000691902 0.0449566 0.0416312 54 2365 30 6.99608e+06 176588 949917. 3286.91 14.39 0.403777 0.349775 29506 232905 -1 1722 22 1527 2422 223470 49995 3.98506 3.98506 -136.197 -3.98506 0 0 1.17392e+06 4061.99 0.41 0.10 0.24 -1 -1 0.41 0.0323259 0.0287121 75 -1 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.88 vpr 62.16 MiB 0.02 6660 -1 -1 1 0.03 -1 -1 30360 -1 -1 8 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63652 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.7 MiB 0.30 736 9906 3603 5031 1272 62.2 MiB 0.10 0.00 2.06111 -84.6894 -2.06111 2.06111 0.82 0.000608223 0.000560174 0.0367028 0.0338716 34 1720 22 6.99608e+06 117725 618332. 2139.56 1.47 0.1371 0.119793 25762 151098 -1 1528 20 763 967 113677 21734 1.77772 1.77772 -89.6008 -1.77772 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.019218 0.0169531 44 -1 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.76 vpr 63.59 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.7 MiB 1.18 836 12681 5269 6945 467 63.6 MiB 0.17 0.00 3.87925 -141.78 -3.87925 3.87925 0.79 0.000804566 0.000743667 0.0607224 0.0561836 46 2793 28 6.99608e+06 250167 828058. 2865.25 5.23 0.309783 0.272005 28066 200906 -1 2089 23 2071 2884 285544 57782 4.31872 4.31872 -156.909 -4.31872 0 0 1.01997e+06 3529.29 0.38 0.11 0.20 -1 -1 0.38 0.0348438 0.0309102 95 21 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 12.85 vpr 63.26 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30236 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1064 14375 4737 7721 1917 63.3 MiB 0.17 0.00 2.93295 -116.62 -2.93295 2.93295 0.79 0.000754983 0.000698006 0.0558072 0.0516202 36 2925 47 6.99608e+06 412039 648988. 2245.63 9.37 0.345514 0.303149 26050 158493 -1 2389 18 1549 2193 247704 46357 3.02647 3.02647 -128.363 -3.02647 0 0 828058. 2865.25 0.26 0.09 0.17 -1 -1 0.26 0.028254 0.0249557 87 -1 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.62 vpr 63.49 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30536 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1077 13105 3562 8179 1364 63.5 MiB 0.20 0.01 3.82425 -139.818 -3.82425 3.82425 0.82 0.000832829 0.000769076 0.0617991 0.0571238 44 3564 40 6.99608e+06 309029 787024. 2723.27 2.55 0.217123 0.191287 27778 195446 -1 2709 23 2470 3420 381459 71575 4.05842 4.05842 -153.091 -4.05842 0 0 997811. 3452.63 0.32 0.12 0.19 -1 -1 0.32 0.0377239 0.0331477 115 54 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.87 vpr 62.73 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30152 -1 -1 11 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.1 MiB 1.20 701 9397 3869 5271 257 62.7 MiB 0.11 0.00 2.9841 -107.493 -2.9841 2.9841 0.83 0.000681709 0.000630478 0.0382869 0.0353063 38 2528 35 6.99608e+06 161872 678818. 2348.85 2.54 0.161484 0.141159 26626 170182 -1 1644 18 1357 1844 152866 33566 2.86632 2.86632 -118.389 -2.86632 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0250327 0.0220101 72 31 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 15.18 vpr 62.66 MiB 0.09 6984 -1 -1 1 0.03 -1 -1 30180 -1 -1 13 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64160 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.0 MiB 7.80 650 7975 2399 4401 1175 62.7 MiB 0.10 0.00 3.55679 -118.022 -3.55679 3.55679 0.90 0.000503288 0.000464608 0.0341992 0.0315632 46 1982 32 6.99608e+06 191304 828058. 2865.25 3.92 0.178779 0.156189 28066 200906 -1 1490 20 1368 1939 167633 36693 3.59411 3.59411 -129.01 -3.59411 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0269046 0.0236276 73 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.80 vpr 62.70 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30304 -1 -1 15 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.09 739 7975 3247 4371 357 62.7 MiB 0.10 0.00 3.69125 -116.127 -3.69125 3.69125 0.81 0.000632984 0.000585595 0.0343169 0.0317385 36 2500 44 6.99608e+06 220735 648988. 2245.63 2.70 0.162987 0.141788 26050 158493 -1 1976 20 1288 1933 207014 41660 3.47006 3.47006 -124.036 -3.47006 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.025647 0.022445 72 27 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 6.12 vpr 62.61 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 30400 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.1 MiB 0.24 696 7204 2957 4121 126 62.6 MiB 0.10 0.00 2.86245 -113.51 -2.86245 2.86245 0.91 0.000714028 0.00065489 0.0353197 0.0326623 40 2274 37 6.99608e+06 147157 706193. 2443.58 2.52 0.17572 0.154031 26914 176310 -1 1777 22 1537 2365 274166 52976 3.23592 3.23592 -128.876 -3.23592 0 0 926341. 3205.33 0.33 0.10 0.18 -1 -1 0.33 0.0284206 0.0252001 64 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.61 vpr 62.86 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30336 -1 -1 15 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.4 MiB 0.67 709 9540 3934 5278 328 62.9 MiB 0.11 0.00 2.94395 -107.519 -2.94395 2.94395 0.78 0.000683375 0.000631491 0.0414647 0.0383542 46 2300 50 6.99608e+06 220735 828058. 2865.25 2.78 0.204629 0.178118 28066 200906 -1 1561 18 1293 1675 138709 29405 2.88352 2.88352 -107.503 -2.88352 0 0 1.01997e+06 3529.29 0.38 0.07 0.21 -1 -1 0.38 0.0249798 0.0223536 77 26 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 10.78 vpr 63.02 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30224 -1 -1 16 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.5 MiB 3.12 930 10835 4554 5858 423 63.0 MiB 0.13 0.00 2.88685 -103.645 -2.88685 2.88685 0.91 0.000686581 0.000635053 0.0427099 0.0393592 38 2426 29 6.99608e+06 235451 678818. 2348.85 4.43 0.255676 0.222514 26626 170182 -1 2038 17 1401 1714 181805 35323 2.85732 2.85732 -111.228 -2.85732 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0245415 0.021637 86 55 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 10.51 vpr 63.60 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30520 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 24.9 MiB 1.01 1138 15273 6065 7495 1713 63.6 MiB 0.23 0.01 3.90815 -143.373 -3.90815 3.90815 0.79 0.00091075 0.000843316 0.0787371 0.0729405 50 3328 39 6.99608e+06 294314 902133. 3121.57 5.83 0.433006 0.377563 28642 213929 -1 2677 24 2319 3429 348618 67844 3.91781 3.91781 -150.494 -3.91781 0 0 1.08113e+06 3740.92 0.33 0.13 0.21 -1 -1 0.33 0.042148 0.0370867 106 26 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 20.11 vpr 63.49 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 1.01 999 10762 3395 5388 1979 63.5 MiB 0.16 0.00 4.20458 -152.083 -4.20458 4.20458 0.79 0.000845035 0.000781495 0.0537645 0.049749 54 3187 36 6.99608e+06 264882 949917. 3286.91 15.71 0.440863 0.381955 29506 232905 -1 2168 19 2109 2856 331174 67804 4.06765 4.06765 -158.129 -4.06765 0 0 1.17392e+06 4061.99 0.44 0.12 0.23 -1 -1 0.44 0.0344289 0.030877 110 62 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 7.62 vpr 63.45 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30640 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.7 MiB 0.89 1070 8867 2185 5933 749 63.4 MiB 0.11 0.00 3.49385 -125.494 -3.49385 3.49385 0.93 0.000501125 0.000455408 0.0361153 0.0333348 38 2478 46 6.99608e+06 235451 678818. 2348.85 3.38 0.207611 0.182073 26626 170182 -1 2114 21 1372 1414 141321 27540 3.57046 3.57046 -129.802 -3.57046 0 0 902133. 3121.57 0.29 0.08 0.16 -1 -1 0.29 0.0309587 0.0272251 99 77 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.07 vpr 63.39 MiB 0.03 7124 -1 -1 1 0.05 -1 -1 30384 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64908 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.8 MiB 0.90 1182 9006 2249 6265 492 63.4 MiB 0.14 0.00 3.66135 -134.693 -3.66135 3.66135 0.81 0.000807702 0.00074587 0.0450067 0.0415929 40 3046 27 6.99608e+06 264882 706193. 2443.58 2.72 0.214353 0.189217 26914 176310 -1 2796 21 1957 2642 334843 63206 3.85696 3.85696 -149.597 -3.85696 0 0 926341. 3205.33 0.34 0.11 0.18 -1 -1 0.34 0.0332396 0.0296214 105 59 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.18 vpr 63.58 MiB 0.07 7276 -1 -1 1 0.03 -1 -1 30460 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65104 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.2 MiB 1.09 1281 17663 7641 9474 548 63.6 MiB 0.25 0.00 4.62587 -160.146 -4.62587 4.62587 0.81 0.00090827 0.000840305 0.0887858 0.0821502 46 3543 42 6.99608e+06 338461 828058. 2865.25 2.62 0.267571 0.235858 28066 200906 -1 2499 20 2419 2740 262029 50973 4.39645 4.39645 -157.625 -4.39645 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0366453 0.0322431 138 111 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 11.74 vpr 63.74 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30568 -1 -1 19 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65268 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 25.1 MiB 3.29 1159 10762 4075 5172 1515 63.7 MiB 0.17 0.00 4.92973 -159.817 -4.92973 4.92973 0.91 0.00084635 0.000781562 0.0534296 0.0493308 46 3007 22 6.99608e+06 279598 828058. 2865.25 4.93 0.30411 0.26591 28066 200906 -1 2331 20 2014 2627 247488 48142 4.4641 4.4641 -155.515 -4.4641 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0341182 0.0301013 117 86 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 8.54 vpr 63.59 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30324 -1 -1 20 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 24.9 MiB 2.20 1059 13763 5785 7510 468 63.6 MiB 0.19 0.00 3.58185 -130.714 -3.58185 3.58185 0.79 0.000827138 0.000765026 0.0662554 0.0613489 46 2851 46 6.99608e+06 294314 828058. 2865.25 3.10 0.259746 0.228074 28066 200906 -1 2234 20 2061 2771 251252 50775 3.41986 3.41986 -132.529 -3.41986 0 0 1.01997e+06 3529.29 0.31 0.10 0.20 -1 -1 0.31 0.0333655 0.0294397 107 58 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 8.48 vpr 63.65 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30620 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.9 MiB 0.92 1271 6556 1686 3783 1087 63.6 MiB 0.10 0.00 3.81927 -146.587 -3.81927 3.81927 0.92 0.000635599 0.000580731 0.0298959 0.0275765 40 3275 35 6.99608e+06 250167 706193. 2443.58 4.09 0.212608 0.187112 26914 176310 -1 2828 20 2191 2847 376679 72564 4.26672 4.26672 -166.291 -4.26672 0 0 926341. 3205.33 0.32 0.12 0.18 -1 -1 0.32 0.0346183 0.0309151 110 42 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 10.87 vpr 63.71 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30660 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.3 MiB 1.82 1530 16529 5778 8459 2292 63.7 MiB 0.27 0.00 4.81093 -174.639 -4.81093 4.81093 0.78 0.000999743 0.000924428 0.0912159 0.0844998 48 4110 30 6.99608e+06 323745 865456. 2994.66 5.52 0.433346 0.379678 28354 207349 -1 3371 19 2979 4138 453362 89116 5.0453 5.0453 -187.875 -5.0453 0 0 1.05005e+06 3633.38 0.35 0.14 0.20 -1 -1 0.35 0.0391931 0.034664 139 91 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 11.88 vpr 63.19 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 30532 -1 -1 13 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.94 802 9996 3771 4383 1842 63.2 MiB 0.11 0.00 3.1395 -118.304 -3.1395 3.1395 0.90 0.00068767 0.000635797 0.0374154 0.0344186 36 2322 38 6.99608e+06 191304 648988. 2245.63 7.64 0.290231 0.251055 26050 158493 -1 1820 20 1439 1763 180014 35389 3.41577 3.41577 -128.916 -3.41577 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0270725 0.0239949 75 24 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 8.64 vpr 63.65 MiB 0.03 7232 -1 -1 1 0.03 -1 -1 30424 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 25.0 MiB 0.72 1237 14606 4845 8003 1758 63.6 MiB 0.19 0.00 4.54014 -162.571 -4.54014 4.54014 0.92 0.000829514 0.00076695 0.0610822 0.0561785 44 3538 50 6.99608e+06 264882 787024. 2723.27 4.42 0.267704 0.236493 27778 195446 -1 2768 20 1790 2287 279217 49355 4.54181 4.54181 -169.774 -4.54181 0 0 997811. 3452.63 0.33 0.09 0.19 -1 -1 0.33 0.0314708 0.027655 106 59 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.15 vpr 63.56 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30680 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.8 MiB 1.10 1279 13077 3808 7089 2180 63.6 MiB 0.19 0.00 3.54953 -133.609 -3.54953 3.54953 0.79 0.0008376 0.000775101 0.0623846 0.0577772 44 3368 31 6.99608e+06 294314 787024. 2723.27 2.78 0.237977 0.209198 27778 195446 -1 2664 19 1799 2549 251066 47859 3.65646 3.65646 -143.702 -3.65646 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0325344 0.0287345 108 54 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 7.88 vpr 62.89 MiB 0.03 7036 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.5 MiB 0.88 797 9368 3826 5299 243 62.9 MiB 0.13 0.00 3.54729 -133.832 -3.54729 3.54729 0.92 0.000776906 0.000709463 0.0407217 0.0371344 44 2972 48 6.99608e+06 191304 787024. 2723.27 3.57 0.197754 0.174167 27778 195446 -1 2156 20 1886 3136 314647 61290 3.89876 3.89876 -153.648 -3.89876 0 0 997811. 3452.63 0.31 0.11 0.22 -1 -1 0.31 0.0311621 0.0274838 77 -1 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.98 vpr 63.59 MiB 0.04 7096 -1 -1 1 0.05 -1 -1 30384 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.28 1139 10883 2905 7208 770 63.6 MiB 0.17 0.00 3.32994 -127.882 -3.32994 3.32994 0.79 0.000856808 0.000791595 0.0549287 0.0508129 44 3437 31 6.99608e+06 279598 787024. 2723.27 2.38 0.223491 0.196042 27778 195446 -1 2380 32 2331 2753 360000 92498 3.42311 3.42311 -133.503 -3.42311 0 0 997811. 3452.63 0.31 0.14 0.19 -1 -1 0.31 0.0503479 0.0440292 120 81 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 8.10 vpr 63.66 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 25.0 MiB 0.97 1139 12528 3436 7246 1846 63.7 MiB 0.18 0.00 3.59669 -136.453 -3.59669 3.59669 0.80 0.000826055 0.000763939 0.0596635 0.0552013 40 3519 37 6.99608e+06 294314 706193. 2443.58 3.92 0.243612 0.21348 26914 176310 -1 2884 21 2193 3040 368922 71970 4.21416 4.21416 -156.411 -4.21416 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0346957 0.0305783 106 58 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.70 vpr 63.48 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.8 MiB 0.78 1314 14431 4781 7561 2089 63.5 MiB 0.20 0.00 3.61639 -141.899 -3.61639 3.61639 0.92 0.000852166 0.000788151 0.063156 0.0581745 44 3289 26 6.99608e+06 250167 787024. 2723.27 5.33 0.346493 0.3035 27778 195446 -1 2618 32 2384 2887 424659 156961 3.60816 3.60816 -144.298 -3.60816 0 0 997811. 3452.63 0.32 0.17 0.19 -1 -1 0.32 0.0473387 0.0414926 108 61 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.51 vpr 63.44 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30560 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.6 MiB 0.98 813 11432 3614 6147 1671 63.4 MiB 0.15 0.00 3.93015 -141.517 -3.93015 3.93015 0.91 0.000557852 0.000510558 0.0476595 0.0438769 48 3075 30 6.99608e+06 235451 865456. 2994.66 3.93 0.220946 0.193937 28354 207349 -1 2415 23 2024 2864 370121 75748 4.22772 4.22772 -155.148 -4.22772 0 0 1.05005e+06 3633.38 0.40 0.13 0.21 -1 -1 0.40 0.0362615 0.0323176 94 21 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 19.28 vpr 63.44 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30708 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.8 MiB 0.88 930 14500 5516 6956 2028 63.4 MiB 0.20 0.00 3.81585 -138.808 -3.81585 3.81585 0.81 0.000837741 0.000774722 0.0720707 0.0666845 44 3535 46 6.99608e+06 264882 787024. 2723.27 15.00 0.445603 0.390937 27778 195446 -1 2358 22 2319 2747 298113 59116 4.26372 4.26372 -159.191 -4.26372 0 0 997811. 3452.63 0.37 0.11 0.20 -1 -1 0.37 0.0348776 0.030888 110 50 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.16 vpr 63.52 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30492 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.2 MiB 1.59 1399 14035 5589 6713 1733 63.5 MiB 0.18 0.00 3.97768 -141.845 -3.97768 3.97768 0.92 0.000862769 0.000794213 0.0612296 0.0562403 44 3644 30 6.99608e+06 323745 787024. 2723.27 2.96 0.254218 0.22321 27778 195446 -1 2886 20 2066 2402 271623 49819 3.74475 3.74475 -145.215 -3.74475 0 0 997811. 3452.63 0.38 0.10 0.19 -1 -1 0.38 0.0365109 0.0325875 132 110 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.59 vpr 63.49 MiB 0.04 7084 -1 -1 1 0.07 -1 -1 30388 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 1.05 1318 15273 5215 8174 1884 63.5 MiB 0.22 0.00 3.73195 -141.182 -3.73195 3.73195 0.79 0.000878899 0.000812191 0.0768754 0.0711101 40 3816 45 6.99608e+06 294314 706193. 2443.58 4.19 0.283663 0.248998 26914 176310 -1 3467 26 2915 4053 580002 121440 4.21172 4.21172 -164.592 -4.21172 0 0 926341. 3205.33 0.31 0.18 0.17 -1 -1 0.31 0.043802 0.0388486 126 86 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 8.80 vpr 62.77 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30496 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.1 MiB 0.56 921 12528 4814 6023 1691 62.8 MiB 0.17 0.00 2.98795 -120.412 -2.98795 2.98795 0.80 0.000692567 0.000639979 0.0552612 0.0511586 48 2241 35 6.99608e+06 206020 865456. 2994.66 4.85 0.278305 0.242221 28354 207349 -1 1982 19 1395 1911 228326 43620 3.07962 3.07962 -125.336 -3.07962 0 0 1.05005e+06 3633.38 0.41 0.09 0.23 -1 -1 0.41 0.0269071 0.0238872 80 20 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.83 vpr 63.50 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1095 11776 4100 5415 2261 63.5 MiB 0.16 0.00 3.80663 -140.003 -3.80663 3.80663 0.79 0.000772399 0.000713386 0.0552796 0.0511361 44 3191 47 6.99608e+06 235451 787024. 2723.27 2.73 0.21064 0.184628 27778 195446 -1 2428 21 2011 2384 299055 54121 3.795 3.795 -144.367 -3.795 0 0 997811. 3452.63 0.36 0.11 0.19 -1 -1 0.36 0.0322383 0.0285969 108 91 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 23.97 vpr 63.77 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30792 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.4 MiB 0.94 1231 15273 6501 8321 451 63.8 MiB 0.21 0.00 4.57343 -162.846 -4.57343 4.57343 0.92 0.000969538 0.00089635 0.0716233 0.0659238 50 3705 35 6.99608e+06 294314 902133. 3121.57 19.27 0.493381 0.430114 28642 213929 -1 2951 22 2874 3977 465898 87229 4.89726 4.89726 -180.675 -4.89726 0 0 1.08113e+06 3740.92 0.40 0.15 0.21 -1 -1 0.40 0.0431184 0.038488 126 53 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 6.53 vpr 63.36 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30400 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1100 10916 2969 6188 1759 63.4 MiB 0.17 0.00 3.58059 -138.842 -3.58059 3.58059 0.79 0.00079298 0.000733359 0.0538609 0.0498881 40 2668 48 6.99608e+06 235451 706193. 2443.58 2.66 0.245983 0.21547 26914 176310 -1 2470 23 1953 2538 327382 66029 3.79842 3.79842 -146.132 -3.79842 0 0 926341. 3205.33 0.28 0.12 0.18 -1 -1 0.28 0.0357758 0.0314633 93 31 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 6.23 vpr 62.83 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30260 -1 -1 24 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.4 MiB 0.78 716 11804 3687 5992 2125 62.8 MiB 0.14 0.00 3.75245 -123.293 -3.75245 3.75245 0.79 0.000667597 0.000617198 0.0440505 0.04076 38 2328 50 6.99608e+06 353176 678818. 2348.85 2.36 0.180732 0.157865 26626 170182 -1 1809 20 1563 2199 219517 45789 3.64546 3.64546 -134.834 -3.64546 0 0 902133. 3121.57 0.28 0.10 0.18 -1 -1 0.28 0.0292604 0.0257555 80 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 25.57 vpr 63.82 MiB 0.03 7364 -1 -1 1 0.04 -1 -1 31080 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65352 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.6 MiB 0.89 1504 15883 5797 7858 2228 63.8 MiB 0.27 0.01 5.34997 -188.353 -5.34997 5.34997 0.79 0.00104062 0.000963355 0.089705 0.0831347 48 4382 30 6.99608e+06 353176 865456. 2994.66 21.13 0.582974 0.513236 28354 207349 -1 3343 24 3596 4389 527266 102534 6.19829 6.19829 -212.066 -6.19829 0 0 1.05005e+06 3633.38 0.36 0.17 0.21 -1 -1 0.36 0.0480669 0.0422502 159 109 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.54 vpr 63.41 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30536 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.69 938 15044 6550 8115 379 63.4 MiB 0.20 0.00 4.27644 -157.663 -4.27644 4.27644 0.80 0.000812036 0.000750699 0.0740914 0.068584 46 2727 27 6.99608e+06 235451 828058. 2865.25 2.44 0.223027 0.197137 28066 200906 -1 2068 21 2208 2839 254160 49760 4.18671 4.18671 -160.824 -4.18671 0 0 1.01997e+06 3529.29 0.37 0.09 0.19 -1 -1 0.37 0.0277361 0.0247481 92 31 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 8.44 vpr 63.00 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.4 MiB 0.32 660 12763 5275 7138 350 63.0 MiB 0.14 0.00 2.98775 -114.509 -2.98775 2.98775 0.80 0.000664417 0.000613588 0.0459439 0.0424642 52 1866 50 6.99608e+06 353176 926341. 3205.33 4.81 0.268904 0.233583 29218 227130 -1 1420 21 1418 2017 205194 39328 2.89002 2.89002 -115.259 -2.89002 0 0 1.14541e+06 3963.36 0.42 0.09 0.22 -1 -1 0.42 0.0267438 0.023552 70 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 9.40 vpr 63.70 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30832 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65228 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.0 MiB 0.76 1143 13432 5563 7207 662 63.7 MiB 0.19 0.00 4.46895 -161.038 -4.46895 4.46895 0.80 0.000681507 0.000624743 0.0623633 0.057542 46 3873 37 6.99608e+06 264882 828058. 2865.25 5.20 0.278251 0.243764 28066 200906 -1 2625 23 2724 3857 379667 75631 4.76691 4.76691 -175.058 -4.76691 0 0 1.01997e+06 3529.29 0.38 0.14 0.21 -1 -1 0.38 0.0435707 0.0388052 112 26 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.56 vpr 62.70 MiB 0.03 6788 -1 -1 1 0.04 -1 -1 30468 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.1 MiB 0.33 625 10614 4416 5947 251 62.7 MiB 0.13 0.00 2.85145 -111.794 -2.85145 2.85145 0.79 0.000660829 0.000610685 0.0476558 0.0441022 40 2193 47 6.99608e+06 147157 706193. 2443.58 3.05 0.204948 0.178885 26914 176310 -1 1788 23 1506 2283 265685 53379 3.55877 3.55877 -131.907 -3.55877 0 0 926341. 3205.33 0.38 0.11 0.18 -1 -1 0.38 0.0342919 0.0301725 62 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.52 vpr 62.77 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30284 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.3 MiB 0.84 755 9857 4076 5498 283 62.8 MiB 0.13 0.00 3.30794 -118.735 -3.30794 3.30794 0.83 0.000673072 0.000622329 0.0432071 0.0400209 44 2282 49 6.99608e+06 220735 787024. 2723.27 2.46 0.204092 0.178074 27778 195446 -1 1673 24 1668 2164 209991 40161 3.18821 3.18821 -120.1 -3.18821 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0311316 0.0272436 74 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.66 vpr 63.53 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30328 -1 -1 20 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65056 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1003 15481 6003 6865 2613 63.5 MiB 0.21 0.00 3.85703 -126.704 -3.85703 3.85703 0.80 0.000804085 0.000743119 0.0744078 0.0688262 46 3234 28 6.99608e+06 294314 828058. 2865.25 3.68 0.246007 0.216683 28066 200906 -1 2248 20 1778 2388 235772 48596 3.781 3.781 -129.295 -3.781 0 0 1.01997e+06 3529.29 0.32 0.10 0.19 -1 -1 0.32 0.0326198 0.0287539 113 81 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 9.53 vpr 63.57 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30692 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 1.06 1068 14144 5407 6800 1937 63.6 MiB 0.19 0.00 4.29664 -157.784 -4.29664 4.29664 0.79 0.00084136 0.000777838 0.0699099 0.0646642 46 2924 33 6.99608e+06 264882 828058. 2865.25 5.12 0.332641 0.290641 28066 200906 -1 2220 21 2376 3177 329018 65168 4.80451 4.80451 -171.198 -4.80451 0 0 1.01997e+06 3529.29 0.31 0.11 0.25 -1 -1 0.31 0.0349796 0.0308285 109 53 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.45 vpr 63.76 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30592 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 1.06 1151 6846 1472 4993 381 63.8 MiB 0.12 0.00 4.30354 -157.84 -4.30354 4.30354 0.79 0.000844606 0.000781197 0.0355415 0.0329427 46 3310 24 6.99608e+06 264882 828058. 2865.25 5.18 0.313551 0.272422 28066 200906 -1 2777 23 2721 3697 430936 81233 4.7832 4.7832 -179.954 -4.7832 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0383298 0.0337535 110 55 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 7.60 vpr 63.14 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30516 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.6 MiB 0.72 792 12585 5306 6906 373 63.1 MiB 0.14 0.00 3.44424 -128.433 -3.44424 3.44424 0.89 0.000523894 0.000471355 0.0485682 0.0446848 46 2581 47 6.99608e+06 220735 828058. 2865.25 3.51 0.22674 0.198534 28066 200906 -1 1896 19 1587 1758 194159 42467 3.37581 3.37581 -131.824 -3.37581 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0284784 0.0250745 92 55 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 10.63 vpr 63.20 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 30564 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.6 MiB 2.29 885 11260 4668 6241 351 63.2 MiB 0.15 0.00 3.46644 -123.995 -3.46644 3.46644 0.78 0.000738821 0.000682213 0.0510156 0.0471529 48 2570 23 6.99608e+06 250167 865456. 2994.66 4.97 0.277939 0.242247 28354 207349 -1 2043 20 1781 2203 271135 54431 3.29451 3.29451 -123.936 -3.29451 0 0 1.05005e+06 3633.38 0.41 0.11 0.23 -1 -1 0.41 0.0314221 0.0280758 102 82 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.65 vpr 63.46 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64988 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.6 MiB 1.28 904 12506 5230 6653 623 63.5 MiB 0.15 0.00 3.42074 -117.96 -3.42074 3.42074 0.92 0.000796837 0.000736482 0.0514467 0.0473565 44 3125 40 6.99608e+06 279598 787024. 2723.27 3.82 0.239472 0.21099 27778 195446 -1 2179 19 1792 2583 268019 54386 3.32347 3.32347 -122.917 -3.32347 0 0 997811. 3452.63 0.31 0.10 0.20 -1 -1 0.31 0.0307962 0.0271559 101 52 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 15.11 vpr 63.37 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64888 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.6 MiB 0.64 824 9872 4064 5274 534 63.4 MiB 0.13 0.00 3.73195 -121.956 -3.73195 3.73195 0.80 0.000742603 0.000688326 0.0465074 0.0431673 40 2601 27 6.99608e+06 264882 706193. 2443.58 11.29 0.356562 0.3108 26914 176310 -1 2027 22 1962 2845 292025 59620 4.01812 4.01812 -140.127 -4.01812 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.037161 0.0325698 87 20 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.74 vpr 63.26 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30208 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.74 814 10672 3702 5165 1805 63.3 MiB 0.13 0.00 4.51934 -148.35 -4.51934 4.51934 0.91 0.000497842 0.000457152 0.0425487 0.0391719 44 2642 48 6.99608e+06 220735 787024. 2723.27 3.66 0.212909 0.186978 27778 195446 -1 1774 20 1557 2067 185492 39180 3.92835 3.92835 -139.766 -3.92835 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0285708 0.0251227 88 58 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 9.58 vpr 63.41 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.5 MiB 2.63 1000 12585 4720 5647 2218 63.4 MiB 0.18 0.00 3.77345 -134.122 -3.77345 3.77345 0.79 0.00075419 0.000696082 0.0589294 0.0544453 46 3137 24 6.99608e+06 220735 828058. 2865.25 3.69 0.216045 0.189969 28066 200906 -1 2294 19 1680 2057 221540 43101 3.38457 3.38457 -131.137 -3.38457 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0294297 0.0258888 104 88 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 7.79 vpr 62.93 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30212 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.4 MiB 0.16 808 15688 5217 8110 2361 62.9 MiB 0.21 0.00 3.76925 -134.079 -3.76925 3.76925 0.79 0.000757471 0.000700658 0.0634091 0.058698 46 2968 49 6.99608e+06 367892 828058. 2865.25 4.30 0.246021 0.215601 28066 200906 -1 2099 20 1737 2679 255414 50348 3.80946 3.80946 -144.206 -3.80946 0 0 1.01997e+06 3529.29 0.31 0.09 0.20 -1 -1 0.31 0.0302554 0.0266709 86 -1 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.36 vpr 63.59 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30592 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 24.9 MiB 0.68 1209 11281 3120 7720 441 63.6 MiB 0.17 0.00 4.19534 -154.628 -4.19534 4.19534 0.79 0.000846851 0.000783335 0.0510868 0.0470333 46 3289 24 6.99608e+06 250167 828058. 2865.25 5.31 0.319359 0.280091 28066 200906 -1 2672 35 2958 3970 624693 211535 4.42125 4.42125 -170.726 -4.42125 0 0 1.01997e+06 3529.29 0.31 0.21 0.19 -1 -1 0.31 0.0527098 0.0460005 110 57 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 11.09 vpr 63.68 MiB 0.04 7152 -1 -1 1 0.04 -1 -1 30400 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.9 MiB 0.69 1142 12364 5175 6807 382 63.7 MiB 0.18 0.00 5.12678 -171.348 -5.12678 5.12678 0.87 0.000849886 0.00078594 0.06191 0.0572829 56 3076 34 6.99608e+06 264882 973134. 3367.25 6.75 0.349107 0.305395 29794 239141 -1 2432 23 2020 2865 426659 81345 4.8698 4.8698 -174.457 -4.8698 0 0 1.19926e+06 4149.71 0.43 0.14 0.24 -1 -1 0.43 0.037209 0.0331867 108 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 9.96 vpr 63.58 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30528 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.8 MiB 0.65 1089 13788 4649 7550 1589 63.6 MiB 0.21 0.01 4.15408 -148.064 -4.15408 4.15408 0.79 0.000833914 0.000770986 0.0671993 0.0621219 48 3541 40 6.99608e+06 264882 865456. 2994.66 6.04 0.411821 0.361243 28354 207349 -1 2669 20 2197 3146 367501 69749 4.38845 4.38845 -163.645 -4.38845 0 0 1.05005e+06 3633.38 0.32 0.12 0.20 -1 -1 0.32 0.0341334 0.0301247 107 62 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.06 vpr 62.79 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30420 -1 -1 13 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.4 MiB 0.88 692 12241 5462 6300 479 62.8 MiB 0.13 0.00 3.58339 -124.571 -3.58339 3.58339 0.93 0.000509726 0.00045702 0.0453856 0.0417197 46 2487 43 6.99608e+06 191304 828058. 2865.25 2.72 0.206045 0.180225 28066 200906 -1 1730 21 1484 2023 211955 49368 3.57516 3.57516 -133.138 -3.57516 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0280447 0.0245913 76 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.97 vpr 63.48 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30516 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65004 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.7 MiB 2.20 1070 13152 5486 7187 479 63.5 MiB 0.19 0.00 4.68713 -157.481 -4.68713 4.68713 0.78 0.000805797 0.00074542 0.0646106 0.0598194 46 3443 41 6.99608e+06 264882 828058. 2865.25 3.40 0.249515 0.218785 28066 200906 -1 2674 20 2344 3355 392549 74415 4.65964 4.65964 -165.262 -4.65964 0 0 1.01997e+06 3529.29 0.38 0.13 0.20 -1 -1 0.38 0.0338539 0.0302776 105 58 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.87 vpr 63.60 MiB 0.03 7288 -1 -1 1 0.03 -1 -1 30892 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.2 MiB 0.85 1372 11615 4190 5568 1857 63.6 MiB 0.18 0.01 4.17744 -155.5 -4.17744 4.17744 0.91 0.000942199 0.000873323 0.0593958 0.05496 46 3286 26 6.99608e+06 323745 828058. 2865.25 3.45 0.249618 0.218946 28066 200906 -1 2610 23 2488 2557 260256 48862 4.17865 4.17865 -163.239 -4.17865 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0410129 0.0359827 139 106 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 22.62 vpr 63.33 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30700 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64852 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 24.9 MiB 1.57 1101 12733 5285 6817 631 63.3 MiB 0.16 0.00 4.35899 -150.667 -4.35899 4.35899 0.91 0.000785441 0.000719564 0.0537367 0.0494457 48 3295 46 6.99608e+06 323745 865456. 2994.66 17.47 0.485888 0.42202 28354 207349 -1 2446 23 2180 2577 357569 90356 4.90781 4.90781 -172.379 -4.90781 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0388928 0.0342721 125 79 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.57 vpr 63.55 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30552 -1 -1 22 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65072 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.9 MiB 2.61 1072 15456 6595 7994 867 63.5 MiB 0.21 0.00 4.1343 -135.415 -4.1343 4.1343 0.79 0.000827141 0.000764765 0.0728426 0.0673958 48 3642 46 6.99608e+06 323745 865456. 2994.66 4.62 0.26799 0.235359 28354 207349 -1 2744 24 2716 3910 575188 151569 4.0456 4.0456 -149.131 -4.0456 0 0 1.05005e+06 3633.38 0.32 0.17 0.20 -1 -1 0.32 0.0383008 0.0336087 114 83 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 25.37 vpr 63.57 MiB 0.03 7016 -1 -1 1 0.04 -1 -1 30588 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.96 1174 14500 5592 7226 1682 63.6 MiB 0.20 0.00 4.33244 -160.384 -4.33244 4.33244 0.79 0.000842551 0.00077897 0.0719661 0.0665719 48 3402 24 6.99608e+06 264882 865456. 2994.66 20.70 0.421907 0.370432 28354 207349 -1 2979 22 2650 3673 556919 103311 5.26361 5.26361 -187.949 -5.26361 0 0 1.05005e+06 3633.38 0.40 0.17 0.21 -1 -1 0.40 0.0377692 0.0337576 110 58 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 11.79 vpr 63.57 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30292 -1 -1 20 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.66 1070 11106 4662 5983 461 63.6 MiB 0.16 0.00 3.53179 -119.754 -3.53179 3.53179 0.84 0.00078122 0.000724406 0.0531851 0.0491944 38 3421 42 6.99608e+06 294314 678818. 2348.85 6.89 0.250649 0.220191 26626 170182 -1 2681 22 2138 2749 328741 62893 3.80371 3.80371 -137.038 -3.80371 0 0 902133. 3121.57 0.33 0.12 0.17 -1 -1 0.33 0.0348655 0.031096 112 81 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 8.50 vpr 62.91 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.4 MiB 0.63 592 9684 3186 4658 1840 62.9 MiB 0.12 0.00 2.86245 -110.719 -2.86245 2.86245 0.78 0.000674501 0.000623872 0.0442612 0.0410211 44 2074 30 6.99608e+06 147157 787024. 2723.27 4.84 0.253028 0.220684 27778 195446 -1 1574 22 1415 2175 199836 41901 3.23592 3.23592 -126.551 -3.23592 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0287336 0.0251714 62 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 7.19 vpr 63.61 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.73 999 9872 3990 5501 381 63.6 MiB 0.13 0.00 4.9054 -173.166 -4.9054 4.9054 0.91 0.000686336 0.000620029 0.0433501 0.0399169 62 2744 23 6.99608e+06 264882 1.05005e+06 3633.38 2.85 0.213488 0.188066 30946 263737 -1 2123 24 2258 3181 358169 70413 4.7445 4.7445 -170.013 -4.7445 0 0 1.30136e+06 4502.97 0.39 0.12 0.26 -1 -1 0.39 0.039506 0.0347724 110 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 9.25 vpr 63.48 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30460 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 24.8 MiB 0.87 1203 7431 1958 4126 1347 63.5 MiB 0.12 0.00 4.63877 -167.295 -4.63877 4.63877 0.79 0.00084552 0.000781531 0.0390196 0.0361427 46 3333 24 6.99608e+06 250167 828058. 2865.25 5.20 0.296252 0.258203 28066 200906 -1 2656 22 2804 3786 394276 74953 4.66634 4.66634 -172.162 -4.66634 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0370017 0.0326466 111 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 11.32 vpr 63.13 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.7 MiB 2.14 766 11324 4293 5664 1367 63.1 MiB 0.12 0.00 3.24452 -112.954 -3.24452 3.24452 0.90 0.000695881 0.000637477 0.0433873 0.0399002 54 2045 29 6.99608e+06 191304 949917. 3286.91 5.77 0.243346 0.212287 29506 232905 -1 1561 25 1493 1793 269158 104756 3.30446 3.30446 -112.623 -3.30446 0 0 1.17392e+06 4061.99 0.35 0.12 0.23 -1 -1 0.35 0.0340314 0.0298265 85 47 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 12.87 vpr 62.70 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 30512 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.25 592 7514 3020 4270 224 62.7 MiB 0.09 0.00 3.0031 -111.146 -3.0031 3.0031 0.78 0.000649123 0.000600161 0.0341904 0.0316955 40 2119 31 6.99608e+06 161872 706193. 2443.58 9.62 0.315555 0.272261 26914 176310 -1 1770 20 1496 2203 239802 50434 3.31422 3.31422 -129.579 -3.31422 0 0 926341. 3205.33 0.33 0.09 0.18 -1 -1 0.33 0.0250792 0.022308 63 -1 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 8.49 vpr 63.44 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30312 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.6 MiB 0.87 1014 12331 5131 6918 282 63.4 MiB 0.16 0.00 4.03648 -138.539 -4.03648 4.03648 0.79 0.000804739 0.000743566 0.0597632 0.055296 48 2476 31 6.99608e+06 250167 865456. 2994.66 4.43 0.32573 0.283743 28354 207349 -1 2157 19 1888 2255 246308 47435 3.9826 3.9826 -141.448 -3.9826 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.031473 0.0277669 102 56 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.22 vpr 63.66 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 25.0 MiB 1.61 1077 13043 5447 7262 334 63.7 MiB 0.18 0.00 4.38874 -150.527 -4.38874 4.38874 0.91 0.000834621 0.000771463 0.0634599 0.0586537 48 2884 30 6.99608e+06 279598 865456. 2994.66 3.00 0.245177 0.217426 28354 207349 -1 2400 34 2377 2774 439804 133957 4.98181 4.98181 -163.724 -4.98181 0 0 1.05005e+06 3633.38 0.38 0.17 0.20 -1 -1 0.38 0.0521734 0.0456995 115 81 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 7.25 vpr 63.63 MiB 0.02 7176 -1 -1 1 0.04 -1 -1 30576 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.6 MiB 0.46 981 8047 1739 5489 819 63.6 MiB 0.13 0.00 4.28063 -149.977 -4.28063 4.28063 1.05 0.000765818 0.000701957 0.0344717 0.031821 46 3547 49 6.99608e+06 397324 828058. 2865.25 3.14 0.21127 0.186928 28066 200906 -1 2387 18 2049 3293 292730 62405 4.63691 4.63691 -167.157 -4.63691 0 0 1.01997e+06 3529.29 0.38 0.10 0.20 -1 -1 0.38 0.0296705 0.0264775 100 -1 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 9.98 vpr 63.44 MiB 0.03 7200 -1 -1 1 0.03 -1 -1 30620 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64960 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.6 MiB 1.06 884 14431 6074 7798 559 63.4 MiB 0.20 0.00 3.66815 -119.86 -3.66815 3.66815 0.96 0.000752425 0.000701925 0.0613215 0.0568127 44 2956 27 6.99608e+06 279598 787024. 2723.27 5.25 0.316812 0.277046 27778 195446 -1 2173 23 1887 2656 284917 57425 3.44206 3.44206 -123.302 -3.44206 0 0 997811. 3452.63 0.34 0.11 0.20 -1 -1 0.34 0.034022 0.0302063 101 47 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.43 vpr 62.68 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30600 -1 -1 16 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.1 MiB 1.42 589 11925 5033 6263 629 62.7 MiB 0.14 0.00 3.68305 -110.555 -3.68305 3.68305 0.82 0.000828295 0.000765729 0.0536289 0.0495021 38 1894 41 6.99608e+06 235451 678818. 2348.85 2.41 0.201901 0.181169 26626 170182 -1 1319 22 1124 1631 144485 29534 3.42422 3.42422 -112.626 -3.42422 0 0 902133. 3121.57 0.33 0.08 0.19 -1 -1 0.33 0.0279026 0.0244876 67 26 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 11.43 vpr 63.78 MiB 0.05 7240 -1 -1 1 0.06 -1 -1 30640 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65312 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.3 MiB 0.85 1512 15151 5383 7381 2387 63.8 MiB 0.27 0.01 4.46404 -157.207 -4.46404 4.46404 0.81 0.000976209 0.000901291 0.080374 0.0742315 58 3583 22 6.99608e+06 309029 997811. 3452.63 7.05 0.453391 0.399537 30370 251734 -1 3115 20 2207 3141 407814 72637 4.40551 4.40551 -158.325 -4.40551 0 0 1.25153e+06 4330.55 0.38 0.13 0.25 -1 -1 0.38 0.0404062 0.0356707 141 85 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 12.48 vpr 63.70 MiB 0.03 7272 -1 -1 1 0.04 -1 -1 30616 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65224 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.3 MiB 2.88 1389 9013 2681 4820 1512 63.7 MiB 0.14 0.00 4.97674 -167.764 -4.97674 4.97674 0.79 0.000896743 0.000828316 0.0477092 0.0442409 46 3406 27 6.99608e+06 323745 828058. 2865.25 6.20 0.350501 0.306617 28066 200906 -1 2739 21 2272 2564 313348 56923 4.49084 4.49084 -166.839 -4.49084 0 0 1.01997e+06 3529.29 0.39 0.13 0.23 -1 -1 0.39 0.0409153 0.0365524 138 105 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 9.58 vpr 63.32 MiB 0.04 6952 -1 -1 1 0.04 -1 -1 30548 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.6 MiB 3.21 1031 11233 4729 6294 210 63.3 MiB 0.15 0.00 3.87693 -140.03 -3.87693 3.87693 0.88 0.000747727 0.000690193 0.0528975 0.0488693 46 2773 28 6.99608e+06 220735 828058. 2865.25 3.02 0.214005 0.189442 28066 200906 -1 2160 19 1544 1886 207098 40355 3.49636 3.49636 -132.802 -3.49636 0 0 1.01997e+06 3529.29 0.36 0.09 0.18 -1 -1 0.36 0.0303121 0.0272005 102 86 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.32 vpr 63.46 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.92 1034 14184 5996 7912 276 63.5 MiB 0.18 0.00 3.78975 -136.67 -3.78975 3.78975 0.98 0.000628665 0.000574967 0.0566815 0.0521359 44 3480 35 6.99608e+06 235451 787024. 2723.27 2.71 0.216327 0.19267 27778 195446 -1 2405 20 1843 2520 295523 55469 3.90876 3.90876 -146.859 -3.90876 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0318875 0.0281419 92 31 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 11.26 vpr 63.92 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 30788 -1 -1 20 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65456 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 25.2 MiB 1.72 1068 13943 4857 7191 1895 63.9 MiB 0.20 0.00 3.9689 -135.877 -3.9689 3.9689 0.99 0.000899457 0.000829627 0.0611794 0.0562673 42 3620 46 6.99608e+06 294314 744469. 2576.02 5.70 0.416671 0.365454 27202 183097 -1 2561 20 2277 3121 321402 63296 4.17942 4.17942 -155.272 -4.17942 0 0 949917. 3286.91 0.40 0.14 0.19 -1 -1 0.40 0.0444857 0.040286 117 50 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 12.43 vpr 63.43 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30424 -1 -1 20 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64948 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.5 MiB 1.08 1088 13788 5313 5928 2547 63.4 MiB 0.19 0.00 3.56069 -123.887 -3.56069 3.56069 0.78 0.000773122 0.000713928 0.062869 0.0581 36 3956 47 6.99608e+06 294314 648988. 2245.63 8.02 0.259525 0.228928 26050 158493 -1 2798 19 1894 2674 288799 57479 4.11666 4.11666 -146.456 -4.11666 0 0 828058. 2865.25 0.37 0.12 0.18 -1 -1 0.37 0.0344254 0.0310992 101 50 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.14 vpr 63.54 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30476 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1034 13906 5203 6656 2047 63.5 MiB 0.19 0.00 4.17744 -150.809 -4.17744 4.17744 0.92 0.000875401 0.000796958 0.0608013 0.0559225 46 3485 32 6.99608e+06 250167 828058. 2865.25 5.02 0.259997 0.231118 28066 200906 -1 2406 21 2327 2820 259212 52221 4.29031 4.29031 -156.162 -4.29031 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0351763 0.0309989 107 61 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.27 vpr 63.64 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30388 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 24.9 MiB 0.74 1295 11830 3708 6867 1255 63.6 MiB 0.18 0.00 3.61179 -138.351 -3.61179 3.61179 0.79 0.000840992 0.000777102 0.0589367 0.0545339 44 3191 24 6.99608e+06 264882 787024. 2723.27 2.32 0.227924 0.200356 27778 195446 -1 2693 17 1923 2487 300291 52272 3.51406 3.51406 -139.097 -3.51406 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0306692 0.0271475 108 61 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 8.59 vpr 62.78 MiB 0.03 6908 -1 -1 1 0.03 -1 -1 30512 -1 -1 14 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.1 MiB 1.23 714 7817 3113 4376 328 62.8 MiB 0.08 0.00 3.29694 -113.946 -3.29694 3.29694 0.90 0.000455701 0.000413749 0.0283943 0.026113 38 1867 23 6.99608e+06 206020 678818. 2348.85 4.08 0.198013 0.171288 26626 170182 -1 1559 20 1588 2046 190589 37091 3.19997 3.19997 -118.373 -3.19997 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0225882 0.0199577 73 28 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 10.69 vpr 63.12 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30104 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.5 MiB 2.50 796 13192 4518 6301 2373 63.1 MiB 0.15 0.00 3.75163 -124.237 -3.75163 3.75163 0.79 0.000690165 0.000634893 0.0593159 0.0548057 50 2077 25 6.99608e+06 206020 902133. 3121.57 4.97 0.280178 0.243634 28642 213929 -1 1652 22 1549 1842 186994 40726 4.09861 4.09861 -132.343 -4.09861 0 0 1.08113e+06 3740.92 0.37 0.09 0.21 -1 -1 0.37 0.0307248 0.0269996 91 79 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 8.02 vpr 63.38 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30576 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64896 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.69 1104 8164 1792 5984 388 63.4 MiB 0.12 0.00 3.79614 -138.31 -3.79614 3.79614 0.86 0.000804803 0.000745817 0.040613 0.0376797 38 3127 30 6.99608e+06 250167 678818. 2348.85 4.07 0.212802 0.187142 26626 170182 -1 2392 23 2190 2883 304820 62456 4.34802 4.34802 -161.484 -4.34802 0 0 902133. 3121.57 0.28 0.12 0.17 -1 -1 0.28 0.0365733 0.0321464 92 29 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.99 vpr 62.86 MiB 0.03 7036 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 1.88 924 11813 4851 6237 725 62.9 MiB 0.15 0.00 3.23604 -112.025 -3.23604 3.23604 0.80 0.000673904 0.000623704 0.0547906 0.0506402 38 2416 22 6.99608e+06 235451 678818. 2348.85 2.86 0.18549 0.162459 26626 170182 -1 2045 19 1337 1490 175878 33922 3.28546 3.28546 -116.28 -3.28546 0 0 902133. 3121.57 0.29 0.08 0.17 -1 -1 0.29 0.0270512 0.0238336 81 48 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 7.36 vpr 62.97 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30348 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.3 MiB 0.77 800 12628 5339 6973 316 63.0 MiB 0.14 0.00 3.56959 -131.903 -3.56959 3.56959 0.95 0.000512441 0.000469268 0.0483805 0.0439829 44 2475 44 6.99608e+06 191304 787024. 2723.27 3.04 0.217872 0.190743 27778 195446 -1 1596 18 1540 1960 172553 34424 3.22926 3.22926 -129.623 -3.22926 0 0 997811. 3452.63 0.37 0.08 0.19 -1 -1 0.37 0.0261987 0.0233821 79 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 8.92 vpr 63.50 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30460 -1 -1 19 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65028 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.6 MiB 1.11 964 11296 3574 5293 2429 63.5 MiB 0.16 0.00 4.06828 -143.162 -4.06828 4.06828 0.78 0.000812953 0.000751464 0.0549305 0.0508702 40 3391 34 6.99608e+06 279598 706193. 2443.58 4.63 0.255573 0.226849 26914 176310 -1 2529 22 2362 3166 365151 78777 4.44141 4.44141 -159.612 -4.44141 0 0 926341. 3205.33 0.28 0.12 0.19 -1 -1 0.28 0.033656 0.0298398 105 60 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.55 vpr 62.86 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30364 -1 -1 13 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.3 MiB 2.46 694 11756 4613 5996 1147 62.9 MiB 0.12 0.00 3.23724 -109.795 -3.23724 3.23724 0.90 0.000465496 0.000421445 0.0438329 0.0402861 48 2170 46 6.99608e+06 191304 865456. 2994.66 3.66 0.206453 0.181575 28354 207349 -1 1618 22 1355 1700 196397 44692 3.59736 3.59736 -125.075 -3.59736 0 0 1.05005e+06 3633.38 0.41 0.08 0.21 -1 -1 0.41 0.0277442 0.024625 81 49 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 10.78 vpr 63.41 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.5 MiB 1.50 911 15034 6476 7971 587 63.4 MiB 0.19 0.00 3.61105 -126.923 -3.61105 3.61105 0.80 0.000803957 0.000743167 0.0730089 0.0675398 58 2106 25 6.99608e+06 264882 997811. 3452.63 5.72 0.345696 0.304148 30370 251734 -1 1782 19 1376 1932 209105 42196 3.29596 3.29596 -122.173 -3.29596 0 0 1.25153e+06 4330.55 0.50 0.09 0.28 -1 -1 0.50 0.0343563 0.0308945 103 56 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 8.32 vpr 63.37 MiB 0.03 7248 -1 -1 1 0.03 -1 -1 30332 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64888 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 24.9 MiB 0.92 1135 16081 6006 7648 2427 63.4 MiB 0.21 0.00 4.67827 -157.924 -4.67827 4.67827 0.90 0.000761343 0.000692838 0.0667929 0.0614284 44 3525 28 6.99608e+06 323745 787024. 2723.27 3.76 0.248717 0.220328 27778 195446 -1 2402 19 2339 3194 287262 58979 4.16544 4.16544 -153.745 -4.16544 0 0 997811. 3452.63 0.36 0.13 0.20 -1 -1 0.36 0.0404457 0.0358055 123 88 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.96 vpr 63.29 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30356 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.5 MiB 2.40 1185 10050 2506 6241 1303 63.3 MiB 0.13 0.00 3.59004 -135.268 -3.59004 3.59004 0.79 0.000717674 0.000663176 0.0453942 0.0420045 44 2781 32 6.99608e+06 220735 787024. 2723.27 4.22 0.271027 0.235661 27778 195446 -1 2287 20 1397 1977 185089 35808 3.40501 3.40501 -132.205 -3.40501 0 0 997811. 3452.63 0.43 0.11 0.20 -1 -1 0.43 0.0283972 0.0253056 88 54 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 7.01 vpr 62.98 MiB 0.03 6896 -1 -1 1 0.03 -1 -1 30108 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.4 MiB 0.71 844 13856 5698 7170 988 63.0 MiB 0.16 0.00 3.30794 -123.058 -3.30794 3.30794 0.86 0.000494405 0.00044912 0.0555208 0.0510691 44 2742 46 6.99608e+06 206020 787024. 2723.27 2.93 0.206629 0.182628 27778 195446 -1 1902 21 1713 2093 211626 42432 3.26227 3.26227 -126.383 -3.26227 0 0 997811. 3452.63 0.38 0.09 0.20 -1 -1 0.38 0.0306391 0.0269243 91 60 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 6.47 vpr 63.49 MiB 0.03 7088 -1 -1 1 0.04 -1 -1 30760 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.90 1239 11118 3579 5407 2132 63.5 MiB 0.16 0.00 3.81515 -143.501 -3.81515 3.81515 0.82 0.000843742 0.00078101 0.0553641 0.0512794 44 2923 36 6.99608e+06 264882 787024. 2723.27 2.32 0.217855 0.191348 27778 195446 -1 2350 30 2551 3097 377121 94989 4.28572 4.28572 -157.815 -4.28572 0 0 997811. 3452.63 0.35 0.14 0.19 -1 -1 0.35 0.0390467 0.034123 110 49 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.24 vpr 63.45 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30560 -1 -1 21 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64972 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.6 MiB 1.66 913 9160 3758 4976 426 63.4 MiB 0.12 0.00 3.41124 -117.262 -3.41124 3.41124 0.82 0.000779675 0.000720892 0.038241 0.0352967 38 3183 28 6.99608e+06 309029 678818. 2348.85 4.44 0.208425 0.183941 26626 170182 -1 2328 19 1859 2511 239150 48117 3.30551 3.30551 -121.983 -3.30551 0 0 902133. 3121.57 0.26 0.09 0.11 -1 -1 0.26 0.0300509 0.0265233 101 54 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 21.18 vpr 63.86 MiB 0.02 7292 -1 -1 1 0.04 -1 -1 30640 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.5 MiB 0.82 1399 13316 4006 7788 1522 63.9 MiB 0.20 0.00 4.54237 -164.626 -4.54237 4.54237 0.91 0.000883027 0.000810055 0.0607222 0.0559481 40 3878 28 6.99608e+06 323745 706193. 2443.58 16.79 0.461861 0.404078 26914 176310 -1 3371 24 3368 4022 523552 98678 5.38994 5.38994 -191.987 -5.38994 0 0 926341. 3205.33 0.31 0.17 0.19 -1 -1 0.31 0.0442179 0.0388653 140 117 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 8.84 vpr 62.59 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30328 -1 -1 11 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.1 MiB 1.02 486 10149 3821 5138 1190 62.6 MiB 0.11 0.00 2.81885 -95.7056 -2.81885 2.81885 0.79 0.000623619 0.000577201 0.0431952 0.0400259 52 1650 26 6.99608e+06 161872 926341. 3205.33 4.71 0.243216 0.210996 29218 227130 -1 1075 21 952 1438 111425 26148 2.68322 2.68322 -95.7641 -2.68322 0 0 1.14541e+06 3963.36 0.35 0.06 0.22 -1 -1 0.35 0.0259504 0.0227192 57 -1 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 8.56 vpr 63.57 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 2.57 1299 14303 5218 6688 2397 63.6 MiB 0.20 0.00 4.76923 -166.635 -4.76923 4.76923 0.79 0.00084802 0.000783267 0.0706736 0.0653431 44 3653 46 6.99608e+06 279598 787024. 2723.27 2.68 0.259059 0.229168 27778 195446 -1 2739 35 2977 3876 655064 246825 5.1629 5.1629 -184.634 -5.1629 0 0 997811. 3452.63 0.32 0.22 0.19 -1 -1 0.32 0.0535976 0.0467252 118 89 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 9.12 vpr 63.36 MiB 0.03 6932 -1 -1 1 0.03 -1 -1 30196 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.7 MiB 0.86 1244 15216 5143 8703 1370 63.4 MiB 0.21 0.00 4.66407 -173.875 -4.66407 4.66407 0.79 0.000777132 0.000718187 0.0716993 0.0662943 46 3193 24 6.99608e+06 235451 828058. 2865.25 5.02 0.291841 0.255588 28066 200906 -1 2647 18 2412 3040 357696 64281 4.53514 4.53514 -175.329 -4.53514 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0297272 0.0261994 110 93 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.19 vpr 63.56 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30348 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1129 13403 5326 6238 1839 63.6 MiB 0.18 0.00 3.33684 -128.417 -3.33684 3.33684 0.92 0.000582904 0.000534118 0.0556396 0.0511763 44 3178 28 6.99608e+06 279598 787024. 2723.27 4.85 0.31291 0.27347 27778 195446 -1 2462 22 2118 2760 262213 50463 3.34651 3.34651 -134.995 -3.34651 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0361646 0.0318835 106 59 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 8.16 vpr 63.62 MiB 0.03 7368 -1 -1 1 0.04 -1 -1 30840 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.5 MiB 0.79 1500 14261 4373 7976 1912 63.6 MiB 0.22 0.00 4.89654 -177.942 -4.89654 4.89654 0.90 0.00102284 0.000948009 0.076104 0.0703445 38 4397 44 6.99608e+06 323745 678818. 2348.85 3.91 0.282986 0.25108 26626 170182 -1 3358 19 2771 3228 340104 64704 5.48635 5.48635 -202.122 -5.48635 0 0 902133. 3121.57 0.28 0.13 0.17 -1 -1 0.28 0.0423989 0.0376468 140 81 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 9.13 vpr 62.60 MiB 0.03 6840 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.1 MiB 1.97 577 8449 3482 4728 239 62.6 MiB 0.09 0.00 2.75275 -95.2487 -2.75275 2.75275 0.79 0.00057868 0.000534968 0.0329981 0.0305499 38 1825 38 6.99608e+06 191304 678818. 2348.85 4.17 0.19027 0.164593 26626 170182 -1 1362 16 802 818 87304 19051 2.52972 2.52972 -90.4789 -2.52972 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0180785 0.0160647 65 51 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.22 vpr 62.93 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30408 -1 -1 14 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.3 MiB 3.19 870 9516 3877 5353 286 62.9 MiB 0.10 0.00 3.41559 -121.499 -3.41559 3.41559 0.84 0.000461012 0.000420535 0.0362795 0.0334202 34 2254 47 6.99608e+06 206020 618332. 2139.56 2.87 0.189499 0.165259 25762 151098 -1 1955 21 1516 2154 280411 53388 3.56046 3.56046 -133.208 -3.56046 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0277548 0.0242774 72 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 7.67 vpr 62.84 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30052 -1 -1 12 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.2 MiB 0.27 764 10316 3722 4683 1911 62.8 MiB 0.13 0.00 3.37904 -128.379 -3.37904 3.37904 1.03 0.000544777 0.000496245 0.0412011 0.0378459 44 2942 28 6.99608e+06 176588 787024. 2723.27 3.72 0.193024 0.169948 27778 195446 -1 2049 21 1886 2867 305927 60681 3.57511 3.57511 -140.146 -3.57511 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.029461 0.0258625 80 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.24 vpr 62.61 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64108 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.1 MiB 0.74 497 10819 4307 4933 1579 62.6 MiB 0.11 0.00 3.31386 -89.9377 -3.31386 3.31386 0.98 0.000411974 0.000377875 0.0358022 0.0330161 36 2036 37 6.99608e+06 264882 648988. 2245.63 2.24 0.147579 0.129051 26050 158493 -1 1366 17 995 1268 119650 25504 3.57407 3.57407 -107.286 -3.57407 0 0 828058. 2865.25 0.26 0.06 0.15 -1 -1 0.26 0.020768 0.018234 68 19 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 8.91 vpr 63.57 MiB 0.02 7148 -1 -1 1 0.04 -1 -1 30520 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 1.06 1423 14358 4574 7658 2126 63.6 MiB 0.20 0.00 3.77875 -143.667 -3.77875 3.77875 0.89 0.00074459 0.000692448 0.0604954 0.0556973 46 3903 28 6.99608e+06 294314 828058. 2865.25 4.41 0.259072 0.229418 28066 200906 -1 3282 18 2502 3565 466593 78362 4.00512 4.00512 -159.031 -4.00512 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.033724 0.0298524 125 84 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 21.66 vpr 63.65 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30376 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 1.05 1182 13663 4698 6384 2581 63.6 MiB 0.20 0.00 4.16978 -143.827 -4.16978 4.16978 0.79 0.000850455 0.00078583 0.0662658 0.0613113 40 3354 39 6.99608e+06 323745 706193. 2443.58 17.22 0.423275 0.368528 26914 176310 -1 2889 30 3385 4412 593112 133870 4.33865 4.33865 -161.302 -4.33865 0 0 926341. 3205.33 0.33 0.19 0.18 -1 -1 0.33 0.047936 0.0423221 121 88 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 10.00 vpr 62.71 MiB 0.05 6876 -1 -1 14 0.30 -1 -1 32876 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.76 1265 9263 2276 5364 1623 62.7 MiB 0.15 0.00 8.4853 -170.751 -8.4853 8.4853 0.78 0.00102614 0.000940382 0.0573368 0.0529427 46 3122 18 6.79088e+06 255968 828058. 2865.25 4.80 0.293268 0.257868 27406 200422 -1 2530 16 1190 3157 226839 44676 7.3039 7.3039 -158.523 -7.3039 0 0 1.01997e+06 3529.29 0.38 0.10 0.19 -1 -1 0.38 0.0384128 0.0345914 134 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 8.23 vpr 62.99 MiB 0.02 6832 -1 -1 14 0.32 -1 -1 32932 -1 -1 20 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1228 8270 2008 5297 965 63.0 MiB 0.13 0.00 7.98833 -161.421 -7.98833 7.98833 0.83 0.000983844 0.00091021 0.0499735 0.0462642 38 3404 29 6.79088e+06 269440 678818. 2348.85 3.18 0.264232 0.231902 25966 169698 -1 2588 17 1208 3291 212347 43535 6.92108 6.92108 -150.768 -6.92108 0 0 902133. 3121.57 0.27 0.09 0.18 -1 -1 0.27 0.0374923 0.0334042 132 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 10.32 vpr 62.67 MiB 0.05 6768 -1 -1 11 0.30 -1 -1 32788 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.0 MiB 1.64 1125 11613 3520 5862 2231 62.7 MiB 0.17 0.00 7.03202 -141.666 -7.03202 7.03202 0.79 0.000977881 0.000902866 0.0663086 0.0612832 38 3680 41 6.79088e+06 269440 678818. 2348.85 4.95 0.303591 0.266572 25966 169698 -1 2585 16 1212 3568 231943 48515 6.12643 6.12643 -138.147 -6.12643 0 0 902133. 3121.57 0.37 0.11 0.23 -1 -1 0.37 0.0363466 0.032772 138 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 16.51 vpr 62.80 MiB 0.05 6776 -1 -1 12 0.33 -1 -1 32848 -1 -1 22 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1021 7643 1879 4700 1064 62.8 MiB 0.12 0.00 7.24011 -138.658 -7.24011 7.24011 0.79 0.000987931 0.00091328 0.0472703 0.0437739 30 3085 43 6.79088e+06 296384 556674. 1926.21 11.77 0.427338 0.371643 24526 138013 -1 2450 16 1319 3817 225640 49413 6.41977 6.41977 -136.967 -6.41977 0 0 706193. 2443.58 0.26 0.09 0.14 -1 -1 0.26 0.0332432 0.029626 136 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 32.40 vpr 63.30 MiB 0.03 6664 -1 -1 13 0.32 -1 -1 33016 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.5 MiB 2.01 1463 12568 3276 7023 2269 63.3 MiB 0.20 0.00 8.02445 -169.708 -8.02445 8.02445 0.78 0.0011381 0.0010517 0.0785487 0.0726016 38 4106 49 6.79088e+06 323328 678818. 2348.85 26.98 0.580271 0.50901 25966 169698 -1 3079 17 1569 4128 270153 55137 7.21431 7.21431 -164.027 -7.21431 0 0 902133. 3121.57 0.27 0.11 0.16 -1 -1 0.27 0.0426031 0.0380136 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 10.88 vpr 63.06 MiB 0.04 6820 -1 -1 12 0.30 -1 -1 32696 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.6 MiB 2.41 1344 4768 918 3685 165 63.1 MiB 0.08 0.00 7.61832 -163.245 -7.61832 7.61832 0.80 0.000789961 0.000719558 0.0240281 0.0220677 46 3284 15 6.79088e+06 323328 828058. 2865.25 5.08 0.275123 0.240295 27406 200422 -1 2938 17 1308 3933 259145 51530 6.72076 6.72076 -156.363 -6.72076 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0398085 0.0354753 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 9.33 vpr 62.41 MiB 0.02 6600 -1 -1 12 0.22 -1 -1 32232 -1 -1 20 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63904 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.8 MiB 1.46 1000 7177 1656 4753 768 62.4 MiB 0.09 0.00 7.28149 -137.47 -7.28149 7.28149 0.79 0.000764855 0.000706544 0.0355552 0.0328997 38 2671 39 6.79088e+06 269440 678818. 2348.85 4.58 0.305587 0.26628 25966 169698 -1 2285 15 988 2588 169972 35341 6.33023 6.33023 -131.211 -6.33023 0 0 902133. 3121.57 0.37 0.07 0.19 -1 -1 0.37 0.023657 0.0213382 101 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 8.24 vpr 62.86 MiB 0.10 6620 -1 -1 11 0.22 -1 -1 32716 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64364 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 1.43 1129 9531 2421 6090 1020 62.9 MiB 0.14 0.00 6.82017 -140.384 -6.82017 6.82017 0.83 0.000938953 0.000859258 0.0544079 0.0500911 36 3346 46 6.79088e+06 242496 648988. 2245.63 3.17 0.245864 0.215047 25390 158009 -1 2698 37 1260 3820 745821 363415 5.90727 5.90727 -136.224 -5.90727 0 0 828058. 2865.25 0.29 0.27 0.17 -1 -1 0.29 0.0640587 0.0562251 118 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 9.44 vpr 62.26 MiB 0.02 6744 -1 -1 12 0.19 -1 -1 32524 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 23.8 MiB 2.62 1115 11631 3187 7135 1309 62.3 MiB 0.15 0.00 6.73244 -139.285 -6.73244 6.73244 0.82 0.000819195 0.000755006 0.0578393 0.0533925 36 3063 26 6.79088e+06 242496 648988. 2245.63 3.49 0.231716 0.203189 25390 158009 -1 2517 16 1153 2536 182283 38952 5.61753 5.61753 -132.175 -5.61753 0 0 828058. 2865.25 0.32 0.09 0.18 -1 -1 0.32 0.0317341 0.0286735 111 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 7.13 vpr 62.54 MiB 0.02 6652 -1 -1 13 0.22 -1 -1 32764 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.1 MiB 1.79 1011 5412 1090 4064 258 62.5 MiB 0.09 0.00 7.30367 -163.797 -7.30367 7.30367 0.80 0.000891773 0.000823689 0.0319071 0.0295479 38 2820 18 6.79088e+06 215552 678818. 2348.85 2.07 0.204828 0.178655 25966 169698 -1 2266 14 1013 2548 157125 33369 6.24757 6.24757 -156.753 -6.24757 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0290887 0.0259451 107 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 7.45 vpr 62.26 MiB 0.02 6620 -1 -1 12 0.18 -1 -1 32788 -1 -1 16 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63752 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.7 MiB 1.40 838 6386 1352 4871 163 62.3 MiB 0.08 0.00 7.31171 -145.298 -7.31171 7.31171 1.05 0.000582411 0.000530165 0.0260587 0.0238597 36 2537 49 6.79088e+06 215552 648988. 2245.63 2.67 0.179579 0.158544 25390 158009 -1 1970 16 866 2221 141030 31159 5.99697 5.99697 -136.566 -5.99697 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0274456 0.0244037 93 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 7.88 vpr 62.25 MiB 0.02 6728 -1 -1 12 0.17 -1 -1 32648 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 23.7 MiB 1.99 1055 4560 1014 3240 306 62.2 MiB 0.07 0.00 6.46989 -155.558 -6.46989 6.46989 0.88 0.00077257 0.000712071 0.0217693 0.0200147 44 2615 18 6.79088e+06 188608 787024. 2723.27 2.51 0.184047 0.163352 27118 194962 -1 2143 16 904 2301 156029 32465 5.57489 5.57489 -143.498 -5.57489 0 0 997811. 3452.63 0.35 0.07 0.19 -1 -1 0.35 0.0263009 0.0234922 94 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 9.82 vpr 63.18 MiB 0.02 6684 -1 -1 13 0.25 -1 -1 32976 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1239 11431 3102 6258 2071 63.2 MiB 0.17 0.00 7.91359 -165.523 -7.91359 7.91359 0.84 0.00107267 0.000990022 0.0674771 0.0622539 48 2752 19 6.79088e+06 282912 865456. 2994.66 4.82 0.377796 0.334448 27694 206865 -1 2517 15 1126 3261 235384 47905 6.72081 6.72081 -152.612 -6.72081 0 0 1.05005e+06 3633.38 0.44 0.11 0.20 -1 -1 0.44 0.0420375 0.0385953 148 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 8.60 vpr 63.41 MiB 0.02 6712 -1 -1 14 0.35 -1 -1 33168 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.7 MiB 1.79 1366 11245 3016 6173 2056 63.4 MiB 0.18 0.00 9.12295 -182.881 -9.12295 9.12295 0.84 0.00107377 0.00099088 0.0702233 0.0648203 40 3541 29 6.79088e+06 282912 706193. 2443.58 3.01 0.311717 0.276588 26254 175826 -1 3097 30 1471 4012 507506 187303 7.76595 7.76595 -174.076 -7.76595 0 0 926341. 3205.33 0.32 0.22 0.18 -1 -1 0.32 0.0647415 0.0579049 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 9.67 vpr 62.57 MiB 0.02 6548 -1 -1 11 0.17 -1 -1 32460 -1 -1 20 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64076 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.2 MiB 1.50 857 12681 3929 6469 2283 62.6 MiB 0.14 0.00 6.92892 -133.02 -6.92892 6.92892 0.91 0.00083749 0.000771243 0.0524472 0.0481242 46 2148 18 6.79088e+06 269440 828058. 2865.25 4.62 0.270523 0.236192 27406 200422 -1 1803 15 1028 2480 155521 33104 5.98994 5.98994 -123.39 -5.98994 0 0 1.01997e+06 3529.29 0.34 0.08 0.21 -1 -1 0.34 0.0282554 0.0255472 111 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 12.21 vpr 63.15 MiB 0.03 6768 -1 -1 12 0.30 -1 -1 32960 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.4 MiB 2.31 1420 13992 4103 7703 2186 63.1 MiB 0.22 0.00 7.6046 -160.271 -7.6046 7.6046 0.79 0.00109491 0.00101131 0.0835051 0.0768681 48 3640 29 6.79088e+06 269440 865456. 2994.66 6.11 0.457774 0.406802 27694 206865 -1 3371 19 1538 4880 378934 74036 6.46241 6.46241 -153.75 -6.46241 0 0 1.05005e+06 3633.38 0.43 0.13 0.24 -1 -1 0.43 0.0462589 0.0413736 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 8.35 vpr 63.20 MiB 0.03 6768 -1 -1 13 0.26 -1 -1 32804 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1236 10687 3174 5565 1948 63.2 MiB 0.17 0.00 8.28661 -168.45 -8.28661 8.28661 0.80 0.00109669 0.00101196 0.0672312 0.0621539 36 3961 32 6.79088e+06 282912 648988. 2245.63 3.47 0.271494 0.239135 25390 158009 -1 2894 16 1353 3870 256704 55383 7.17085 7.17085 -165.969 -7.17085 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0393058 0.0350569 144 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 8.37 vpr 62.22 MiB 0.02 6580 -1 -1 12 0.20 -1 -1 32520 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.8 MiB 2.24 945 7992 1779 4650 1563 62.2 MiB 0.10 0.00 6.70943 -154.61 -6.70943 6.70943 0.91 0.000597555 0.000541909 0.0364154 0.0334786 36 2616 20 6.79088e+06 215552 648988. 2245.63 2.67 0.195685 0.17248 25390 158009 -1 2179 13 893 2413 159661 34187 6.24403 6.24403 -153.872 -6.24403 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.0257763 0.0230698 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 14.24 vpr 61.85 MiB 0.03 6460 -1 -1 10 0.13 -1 -1 32228 -1 -1 12 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63336 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.4 MiB 2.89 878 7049 1926 4350 773 61.9 MiB 0.08 0.00 5.18321 -124.627 -5.18321 5.18321 0.88 0.000594485 0.000545761 0.0305483 0.0282166 34 2331 47 6.79088e+06 161664 618332. 2139.56 8.07 0.261302 0.227367 25102 150614 -1 1892 17 714 1691 130311 27331 4.71101 4.71101 -125.559 -4.71101 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0227525 0.020076 67 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 8.35 vpr 62.23 MiB 0.04 6588 -1 -1 13 0.19 -1 -1 32700 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 23.8 MiB 2.19 974 6332 1469 4570 293 62.2 MiB 0.09 0.00 7.59608 -163.359 -7.59608 7.59608 0.96 0.00084933 0.000784675 0.0288929 0.0265355 38 2406 16 6.79088e+06 215552 678818. 2348.85 2.48 0.189444 0.166976 25966 169698 -1 2040 14 916 2242 136287 29099 6.53742 6.53742 -149.679 -6.53742 0 0 902133. 3121.57 0.32 0.06 0.17 -1 -1 0.32 0.0261623 0.0235253 99 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 10.32 vpr 62.93 MiB 0.03 6664 -1 -1 13 0.32 -1 -1 32748 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.5 MiB 1.33 1254 12371 3408 7445 1518 62.9 MiB 0.18 0.00 7.46133 -157.73 -7.46133 7.46133 1.03 0.000768116 0.000697758 0.0668037 0.0615158 44 3071 18 6.79088e+06 296384 787024. 2723.27 5.02 0.360282 0.319258 27118 194962 -1 2625 17 1230 3436 247174 49122 6.74533 6.74533 -151.264 -6.74533 0 0 997811. 3452.63 0.32 0.10 0.20 -1 -1 0.32 0.0398439 0.0355501 143 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 9.19 vpr 63.10 MiB 0.03 6748 -1 -1 13 0.35 -1 -1 33184 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.6 MiB 2.14 1425 10883 2960 6054 1869 63.1 MiB 0.16 0.00 8.13867 -171.504 -8.13867 8.13867 1.04 0.00105838 0.000982769 0.063758 0.058951 38 3766 24 6.79088e+06 255968 678818. 2348.85 2.99 0.244812 0.218654 25966 169698 -1 3015 29 1430 4034 486344 196054 7.06211 7.06211 -163.741 -7.06211 0 0 902133. 3121.57 0.33 0.22 0.17 -1 -1 0.33 0.063888 0.0573034 141 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 6.36 vpr 61.63 MiB 0.02 6384 -1 -1 9 0.12 -1 -1 32148 -1 -1 16 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63108 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.1 MiB 1.76 588 10149 2859 5591 1699 61.6 MiB 0.09 0.00 4.97273 -93.6629 -4.97273 4.97273 1.07 0.000421597 0.000383526 0.0343312 0.0316827 30 1755 23 6.79088e+06 215552 556674. 1926.21 1.12 0.101282 0.0890872 24526 138013 -1 1376 17 628 1476 88712 19831 4.30345 4.30345 -92.6615 -4.30345 0 0 706193. 2443.58 0.31 0.06 0.14 -1 -1 0.31 0.019548 0.0173935 64 66 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 11.25 vpr 63.00 MiB 0.03 6660 -1 -1 13 0.35 -1 -1 32968 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.3 MiB 2.47 1289 7268 1575 5261 432 63.0 MiB 0.12 0.00 8.3813 -168.316 -8.3813 8.3813 0.91 0.000976026 0.000900261 0.0410489 0.0378847 38 3580 34 6.79088e+06 296384 678818. 2348.85 4.95 0.289402 0.257179 25966 169698 -1 2849 28 1382 3915 372113 120257 7.42571 7.42571 -158.613 -7.42571 0 0 902133. 3121.57 0.28 0.17 0.18 -1 -1 0.28 0.0626272 0.0551531 137 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 7.40 vpr 61.82 MiB 0.02 6500 -1 -1 8 0.09 -1 -1 31056 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63300 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.4 MiB 2.72 737 11631 4246 5219 2166 61.8 MiB 0.10 0.00 4.77835 -104.906 -4.77835 4.77835 1.03 0.000413252 0.000375228 0.0297397 0.0271196 30 1919 23 6.79088e+06 229024 556674. 1926.21 1.25 0.0967525 0.0847912 24526 138013 -1 1543 14 639 1400 84887 18827 4.0956 4.0956 -103.294 -4.0956 0 0 706193. 2443.58 0.29 0.05 0.14 -1 -1 0.29 0.0181292 0.0162944 64 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 8.36 vpr 62.48 MiB 0.04 6700 -1 -1 15 0.26 -1 -1 33016 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 23.9 MiB 2.12 1155 10581 3115 6097 1369 62.5 MiB 0.14 0.00 8.86251 -178.17 -8.86251 8.86251 0.93 0.000877448 0.000804756 0.053929 0.0496349 44 2823 15 6.79088e+06 229024 787024. 2723.27 2.38 0.190082 0.16888 27118 194962 -1 2387 15 1054 2850 193895 39529 7.79833 7.79833 -165.154 -7.79833 0 0 997811. 3452.63 0.38 0.09 0.20 -1 -1 0.38 0.0327074 0.0297528 118 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 10.97 vpr 63.26 MiB 0.02 6772 -1 -1 12 0.27 -1 -1 32784 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.5 MiB 1.85 1241 4433 817 3477 139 63.3 MiB 0.09 0.00 7.21583 -155.808 -7.21583 7.21583 0.81 0.00107318 0.000989672 0.0298711 0.0277089 38 3494 26 6.79088e+06 296384 678818. 2348.85 5.55 0.364844 0.319964 25966 169698 -1 2706 17 1350 4089 264321 55092 6.08302 6.08302 -143.331 -6.08302 0 0 902133. 3121.57 0.35 0.11 0.16 -1 -1 0.35 0.0415886 0.0377538 145 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 10.24 vpr 62.70 MiB 0.03 6760 -1 -1 13 0.29 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.1 MiB 1.61 1284 4659 748 3690 221 62.7 MiB 0.09 0.00 8.13835 -165.274 -8.13835 8.13835 0.94 0.00109835 0.00101053 0.0320517 0.0296776 44 2964 20 6.79088e+06 269440 787024. 2723.27 4.82 0.280418 0.24498 27118 194962 -1 2484 15 1163 3248 214002 43911 6.88526 6.88526 -151.223 -6.88526 0 0 997811. 3452.63 0.35 0.09 0.20 -1 -1 0.35 0.0362374 0.0324884 136 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 8.19 vpr 62.38 MiB 0.04 6536 -1 -1 12 0.17 -1 -1 32276 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 23.9 MiB 2.19 1045 5303 1002 3952 349 62.4 MiB 0.08 0.00 6.60115 -147.873 -6.60115 6.60115 1.18 0.000788612 0.000728341 0.0267081 0.0246376 36 2801 18 6.79088e+06 255968 648988. 2245.63 2.14 0.162936 0.145592 25390 158009 -1 2423 27 1018 2690 333742 130702 5.90389 5.90389 -142.494 -5.90389 0 0 828058. 2865.25 0.29 0.14 0.16 -1 -1 0.29 0.0433939 0.038279 106 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 9.12 vpr 62.25 MiB 0.02 6636 -1 -1 11 0.16 -1 -1 32700 -1 -1 20 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63740 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.6 MiB 1.92 954 11652 3379 7115 1158 62.2 MiB 0.12 0.00 6.23714 -130.615 -6.23714 6.23714 1.05 0.000621645 0.000570257 0.0446626 0.0409811 38 2569 30 6.79088e+06 269440 678818. 2348.85 3.42 0.232597 0.206598 25966 169698 -1 2105 29 963 2521 392849 183299 5.44954 5.44954 -132.131 -5.44954 0 0 902133. 3121.57 0.36 0.18 0.16 -1 -1 0.36 0.0434473 0.0384144 97 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 8.54 vpr 62.40 MiB 0.05 6496 -1 -1 11 0.16 -1 -1 32432 -1 -1 19 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 24.0 MiB 1.31 1013 7346 1810 4929 607 62.4 MiB 0.10 0.00 6.76313 -133.919 -6.76313 6.76313 0.95 0.000601402 0.00055017 0.0380812 0.0351458 34 3046 38 6.79088e+06 255968 618332. 2139.56 3.78 0.232297 0.206818 25102 150614 -1 2486 27 1330 3631 331393 103640 5.93949 5.93949 -130.293 -5.93949 0 0 787024. 2723.27 0.26 0.13 0.16 -1 -1 0.26 0.0420391 0.0369913 107 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 8.89 vpr 62.60 MiB 0.02 6600 -1 -1 12 0.19 -1 -1 32460 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.0 MiB 2.22 1274 9443 2812 5690 941 62.6 MiB 0.13 0.00 6.88424 -161.28 -6.88424 6.88424 0.95 0.00083044 0.000765565 0.0453434 0.0416958 38 3319 21 6.79088e+06 255968 678818. 2348.85 3.05 0.236879 0.209367 25966 169698 -1 2704 18 1310 3289 208989 43326 6.07609 6.07609 -158.229 -6.07609 0 0 902133. 3121.57 0.34 0.10 0.17 -1 -1 0.34 0.0367338 0.0331076 119 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 10.13 vpr 62.39 MiB 0.03 6552 -1 -1 11 0.20 -1 -1 32476 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 23.7 MiB 1.71 908 10056 3226 4794 2036 62.4 MiB 0.16 0.00 6.39517 -140.882 -6.39517 6.39517 0.84 0.000846167 0.000780155 0.0595931 0.0551406 38 2755 22 6.79088e+06 229024 678818. 2348.85 4.68 0.301456 0.26564 25966 169698 -1 2040 15 1034 2877 174412 37944 5.77505 5.77505 -137.161 -5.77505 0 0 902133. 3121.57 0.28 0.08 0.16 -1 -1 0.28 0.0300727 0.0272455 107 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 9.30 vpr 62.24 MiB 0.03 6600 -1 -1 10 0.14 -1 -1 32624 -1 -1 18 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63736 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.6 MiB 1.57 870 8022 2297 4713 1012 62.2 MiB 0.09 0.00 6.19022 -129.37 -6.19022 6.19022 0.93 0.000591574 0.000534669 0.0331751 0.0304525 36 2237 37 6.79088e+06 242496 648988. 2245.63 4.34 0.255203 0.22388 25390 158009 -1 1994 14 815 2200 139304 30627 5.49212 5.49212 -124.76 -5.49212 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0268637 0.0243403 103 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 9.48 vpr 63.34 MiB 0.03 6860 -1 -1 13 0.33 -1 -1 33192 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.55 1352 10103 2504 6636 963 63.3 MiB 0.17 0.00 7.85531 -169.709 -7.85531 7.85531 0.78 0.00116091 0.0010717 0.0664651 0.0613691 44 3490 24 6.79088e+06 296384 787024. 2723.27 4.42 0.39433 0.344007 27118 194962 -1 2933 18 1339 4434 291900 58564 6.88531 6.88531 -156.489 -6.88531 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0458395 0.040786 162 238 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 14.75 vpr 63.18 MiB 0.02 6780 -1 -1 13 0.34 -1 -1 32976 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.85 1274 13849 4315 6877 2657 63.2 MiB 0.13 0.00 7.85526 -169.716 -7.85526 7.85526 0.83 0.000719434 0.000635266 0.0428283 0.038929 36 4502 45 6.79088e+06 282912 648988. 2245.63 9.40 0.319045 0.281275 25390 158009 -1 3213 17 1761 5055 363084 75955 6.78797 6.78797 -164.341 -6.78797 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.0410245 0.0368784 152 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 13.12 vpr 62.37 MiB 0.02 6600 -1 -1 12 0.16 -1 -1 32720 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.7 MiB 1.27 851 11631 4796 6628 207 62.4 MiB 0.14 0.00 7.11438 -152.359 -7.11438 7.11438 0.78 0.00080952 0.000745835 0.0561353 0.0517207 36 3188 46 6.79088e+06 242496 648988. 2245.63 8.67 0.268694 0.236568 25390 158009 -1 2215 16 1048 2788 204960 43952 6.29098 6.29098 -145.949 -6.29098 0 0 828058. 2865.25 0.28 0.08 0.16 -1 -1 0.28 0.0292887 0.0260262 102 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 8.09 vpr 63.12 MiB 0.06 6736 -1 -1 12 0.29 -1 -1 33104 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1154 12749 3915 6368 2466 63.1 MiB 0.20 0.00 7.84323 -159.621 -7.84323 7.84323 0.94 0.00107753 0.000994529 0.0775948 0.0716951 40 3270 35 6.79088e+06 309856 706193. 2443.58 2.62 0.328226 0.28992 26254 175826 -1 2980 64 2413 8958 1170832 550314 6.96022 6.96022 -155.612 -6.96022 0 0 926341. 3205.33 0.28 0.44 0.17 -1 -1 0.28 0.118205 0.10284 148 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 7.88 vpr 62.79 MiB 0.04 6764 -1 -1 14 0.41 -1 -1 33048 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 1.36 1375 11247 2864 6672 1711 62.8 MiB 0.17 0.00 8.18012 -172.817 -8.18012 8.18012 0.89 0.00109253 0.0010086 0.0651941 0.0602197 40 3161 25 6.79088e+06 282912 706193. 2443.58 2.59 0.290195 0.258118 26254 175826 -1 3189 19 1412 3984 296498 60647 7.38657 7.38657 -166.197 -7.38657 0 0 926341. 3205.33 0.29 0.12 0.18 -1 -1 0.29 0.0449506 0.0400728 146 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 9.86 vpr 62.74 MiB 0.02 6884 -1 -1 13 0.30 -1 -1 32828 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.1 MiB 2.54 1310 10149 2655 5632 1862 62.7 MiB 0.15 0.00 7.78561 -164.423 -7.78561 7.78561 1.07 0.000974586 0.00090014 0.0517354 0.0475543 38 3481 47 6.79088e+06 282912 678818. 2348.85 3.37 0.262523 0.232253 25966 169698 -1 2783 22 1469 3916 246840 51205 7.28573 7.28573 -163.177 -7.28573 0 0 902133. 3121.57 0.28 0.12 0.17 -1 -1 0.28 0.0467443 0.0414892 126 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 21.36 vpr 62.75 MiB 0.02 6776 -1 -1 12 0.29 -1 -1 32916 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.1 MiB 1.07 1267 10859 2857 6722 1280 62.7 MiB 0.15 0.00 7.65156 -158.395 -7.65156 7.65156 0.96 0.000740101 0.00067898 0.0550902 0.0507073 40 3056 37 6.79088e+06 309856 706193. 2443.58 16.42 0.487774 0.426273 26254 175826 -1 2912 15 1223 3639 274466 56476 6.59546 6.59546 -151.828 -6.59546 0 0 926341. 3205.33 0.35 0.11 0.18 -1 -1 0.35 0.036887 0.0334769 135 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 9.85 vpr 62.48 MiB 0.02 6924 -1 -1 12 0.19 -1 -1 32700 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.0 MiB 1.12 1093 11106 3659 5731 1716 62.5 MiB 0.16 0.00 7.11863 -144.901 -7.11863 7.11863 0.90 0.000683542 0.000622352 0.0651653 0.0609261 36 3155 46 6.79088e+06 229024 648988. 2245.63 5.24 0.314069 0.280766 25390 158009 -1 2478 18 1153 2944 213889 45889 6.48693 6.48693 -146.091 -6.48693 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0361302 0.0321008 113 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 11.05 vpr 63.41 MiB 0.03 7024 -1 -1 14 0.44 -1 -1 32532 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.6 MiB 1.49 1406 13355 3498 8147 1710 63.4 MiB 0.23 0.00 8.18038 -175.8 -8.18038 8.18038 0.97 0.000920472 0.000835289 0.0742317 0.0680308 48 3394 30 6.79088e+06 336800 865456. 2994.66 5.32 0.449287 0.39348 27694 206865 -1 3185 17 1457 4522 331889 66497 7.37233 7.37233 -166.816 -7.37233 0 0 1.05005e+06 3633.38 0.33 0.12 0.20 -1 -1 0.33 0.0455332 0.0407838 169 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 10.41 vpr 62.51 MiB 0.03 6596 -1 -1 11 0.22 -1 -1 32332 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.1 MiB 1.94 1088 9006 2212 5478 1316 62.5 MiB 0.13 0.00 6.58747 -141.672 -6.58747 6.58747 0.89 0.000890821 0.000821643 0.0501577 0.0463876 38 3071 35 6.79088e+06 242496 678818. 2348.85 4.80 0.321513 0.282686 25966 169698 -1 2487 16 1148 3022 201368 41429 5.78197 5.78197 -135.83 -5.78197 0 0 902133. 3121.57 0.35 0.09 0.17 -1 -1 0.35 0.032852 0.0299292 113 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 10.02 vpr 62.59 MiB 0.03 6888 -1 -1 13 0.27 -1 -1 32892 -1 -1 19 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.0 MiB 1.55 1133 5422 1123 3954 345 62.6 MiB 0.09 0.00 7.76692 -152.212 -7.76692 7.76692 1.06 0.000649083 0.000593087 0.0283633 0.0261523 44 2770 26 6.79088e+06 255968 787024. 2723.27 4.63 0.309402 0.272276 27118 194962 -1 2298 15 853 2931 200982 39328 6.59546 6.59546 -142.598 -6.59546 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0337229 0.0300851 132 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 11.28 vpr 63.14 MiB 0.02 6764 -1 -1 12 0.26 -1 -1 32924 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1437 6967 1505 4666 796 63.1 MiB 0.12 0.00 7.30746 -159.645 -7.30746 7.30746 1.01 0.000863647 0.000784241 0.0376058 0.0343269 40 3686 38 6.79088e+06 282912 706193. 2443.58 5.95 0.426947 0.370752 26254 175826 -1 3189 17 1414 4200 334125 66331 6.50582 6.50582 -151.873 -6.50582 0 0 926341. 3205.33 0.35 0.12 0.18 -1 -1 0.35 0.0425794 0.0384955 153 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 10.41 vpr 62.83 MiB 0.03 6648 -1 -1 13 0.28 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.2 MiB 1.41 1157 7823 1835 4914 1074 62.8 MiB 0.12 0.00 7.47708 -158.746 -7.47708 7.47708 0.96 0.000978441 0.00090408 0.0466041 0.0431122 38 3107 27 6.79088e+06 255968 678818. 2348.85 5.18 0.338737 0.298328 25966 169698 -1 2483 16 1181 3418 209760 44377 6.58427 6.58427 -148.959 -6.58427 0 0 902133. 3121.57 0.42 0.10 0.19 -1 -1 0.42 0.0371271 0.0338033 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 10.98 vpr 63.06 MiB 0.03 6764 -1 -1 13 0.25 -1 -1 32748 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.4 MiB 2.23 1097 11106 3753 5771 1582 63.1 MiB 0.17 0.00 7.69072 -162.222 -7.69072 7.69072 0.91 0.000951254 0.000877809 0.0691182 0.0636504 38 2792 27 6.79088e+06 229024 678818. 2348.85 5.06 0.384144 0.338046 25966 169698 -1 2183 16 1063 2965 165926 36303 6.50592 6.50592 -150.237 -6.50592 0 0 902133. 3121.57 0.37 0.08 0.17 -1 -1 0.37 0.034837 0.031641 118 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 11.07 vpr 62.78 MiB 0.03 6712 -1 -1 12 0.28 -1 -1 32800 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.3 MiB 2.01 1359 8151 1869 5680 602 62.8 MiB 0.14 0.00 7.62073 -165.231 -7.62073 7.62073 0.93 0.0010651 0.000982307 0.0545097 0.0503897 44 3268 18 6.79088e+06 309856 787024. 2723.27 5.03 0.344855 0.30565 27118 194962 -1 2708 34 1126 3852 693243 368597 7.12467 7.12467 -161.248 -7.12467 0 0 997811. 3452.63 0.39 0.32 0.22 -1 -1 0.39 0.0767213 0.0688882 150 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 24.12 vpr 62.85 MiB 0.02 6780 -1 -1 13 0.28 -1 -1 32916 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.4 MiB 2.08 1315 9051 2036 5908 1107 62.8 MiB 0.14 0.00 7.55776 -165.084 -7.55776 7.55776 0.79 0.00106094 0.000979234 0.0564909 0.0521943 40 3083 20 6.79088e+06 269440 706193. 2443.58 18.36 0.523158 0.459853 26254 175826 -1 3051 16 1443 4020 305386 63250 6.95247 6.95247 -160.51 -6.95247 0 0 926341. 3205.33 0.39 0.13 0.17 -1 -1 0.39 0.0457683 0.041978 143 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 8.42 vpr 62.98 MiB 0.04 6836 -1 -1 14 0.26 -1 -1 32844 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.4 MiB 2.19 1139 8270 1889 5806 575 63.0 MiB 0.13 0.00 8.36252 -172.285 -8.36252 8.36252 0.93 0.000945067 0.000873448 0.0476766 0.0441327 42 3528 44 6.79088e+06 242496 744469. 2576.02 2.56 0.227168 0.202504 26542 182613 -1 2722 15 1147 3233 231368 48389 7.46496 7.46496 -165.839 -7.46496 0 0 949917. 3286.91 0.29 0.09 0.19 -1 -1 0.29 0.0329268 0.029411 123 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 9.87 vpr 62.92 MiB 0.03 6740 -1 -1 13 0.28 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.1 MiB 3.10 1159 8868 1881 6136 851 62.9 MiB 0.14 0.00 8.02321 -165.348 -8.02321 8.02321 0.81 0.00102565 0.000947093 0.0533915 0.0493304 34 4215 50 6.79088e+06 269440 618332. 2139.56 3.33 0.291178 0.258024 25102 150614 -1 3004 21 1633 4521 350617 72580 6.88182 6.88182 -161.562 -6.88182 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0445758 0.0394609 134 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 8.97 vpr 63.13 MiB 0.03 6772 -1 -1 13 0.35 -1 -1 32960 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.4 MiB 1.41 1323 8591 2185 5991 415 63.1 MiB 0.19 0.00 8.19403 -174.315 -8.19403 8.19403 0.95 0.0011332 0.00104695 0.065946 0.0611433 38 3671 47 6.79088e+06 309856 678818. 2348.85 3.67 0.34358 0.304038 25966 169698 -1 2911 16 1429 4237 279860 56946 7.17168 7.17168 -164.519 -7.17168 0 0 902133. 3121.57 0.34 0.12 0.17 -1 -1 0.34 0.0425965 0.0387664 154 218 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 10.97 vpr 63.14 MiB 0.05 6788 -1 -1 12 0.33 -1 -1 32740 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.4 MiB 1.41 1325 11983 3288 6841 1854 63.1 MiB 0.18 0.00 7.62163 -166.383 -7.62163 7.62163 0.93 0.00112551 0.0010393 0.0663505 0.0609046 46 3445 33 6.79088e+06 323328 828058. 2865.25 5.56 0.372328 0.328435 27406 200422 -1 2655 18 1350 3864 252132 51724 6.45553 6.45553 -153.664 -6.45553 0 0 1.01997e+06 3529.29 0.39 0.10 0.18 -1 -1 0.39 0.0415534 0.0377877 157 229 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 10.10 vpr 62.27 MiB 0.02 6664 -1 -1 11 0.14 -1 -1 32436 -1 -1 13 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.7 MiB 1.41 956 7249 1855 4884 510 62.3 MiB 0.10 0.00 6.10061 -138.097 -6.10061 6.10061 0.79 0.000761388 0.000702494 0.0368251 0.034018 46 2238 34 6.79088e+06 175136 828058. 2865.25 5.37 0.241906 0.211737 27406 200422 -1 1965 30 873 2227 360189 186259 5.5245 5.5245 -131.587 -5.5245 0 0 1.01997e+06 3529.29 0.39 0.16 0.19 -1 -1 0.39 0.0408623 0.0364105 90 121 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 8.90 vpr 62.52 MiB 0.02 6576 -1 -1 13 0.21 -1 -1 32780 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.33 1073 11631 3861 5991 1779 62.5 MiB 0.16 0.00 7.81611 -170.556 -7.81611 7.81611 0.79 0.000889576 0.000821337 0.062969 0.0581755 38 2856 21 6.79088e+06 229024 678818. 2348.85 3.28 0.261551 0.233529 25966 169698 -1 2319 14 1038 2655 165089 34827 6.70962 6.70962 -157.226 -6.70962 0 0 902133. 3121.57 0.27 0.08 0.18 -1 -1 0.27 0.0293807 0.0262635 113 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 11.37 vpr 63.42 MiB 0.03 7000 -1 -1 14 0.47 -1 -1 32856 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.5 MiB 1.02 1399 15493 4561 8338 2594 63.4 MiB 0.25 0.00 8.67312 -179.019 -8.67312 8.67312 0.79 0.00125877 0.00115688 0.104467 0.0964023 44 4436 24 6.79088e+06 323328 787024. 2723.27 6.35 0.550918 0.484387 27118 194962 -1 3311 16 1770 5416 372153 76605 7.4684 7.4684 -168.384 -7.4684 0 0 997811. 3452.63 0.43 0.14 0.20 -1 -1 0.43 0.0532758 0.0488159 180 266 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 10.13 vpr 63.23 MiB 0.02 6608 -1 -1 13 0.32 -1 -1 32704 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.5 MiB 2.52 1244 13849 3731 7364 2754 63.2 MiB 0.21 0.00 8.43396 -178.911 -8.43396 8.43396 0.89 0.000928329 0.000839291 0.081021 0.0743504 36 4571 48 6.79088e+06 282912 648988. 2245.63 3.77 0.323169 0.286713 25390 158009 -1 3087 18 1511 4155 302116 66225 7.34737 7.34737 -169.624 -7.34737 0 0 828058. 2865.25 0.30 0.12 0.17 -1 -1 0.30 0.046586 0.0414928 154 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 6.07 vpr 62.45 MiB 0.02 6628 -1 -1 11 0.18 -1 -1 32684 -1 -1 17 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.76 899 5994 1459 3795 740 62.4 MiB 0.09 0.00 6.69493 -140.456 -6.69493 6.69493 0.88 0.000784356 0.000722864 0.0310234 0.028579 30 2482 27 6.79088e+06 229024 556674. 1926.21 2.04 0.14057 0.124626 24526 138013 -1 1965 17 917 2589 146449 32281 5.90384 5.90384 -132.64 -5.90384 0 0 706193. 2443.58 0.28 0.07 0.14 -1 -1 0.28 0.027931 0.0250959 99 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 10.33 vpr 63.47 MiB 0.04 7000 -1 -1 15 0.48 -1 -1 32844 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.6 MiB 1.25 1572 8083 1890 5078 1115 63.5 MiB 0.15 0.00 9.61575 -193.644 -9.61575 9.61575 0.80 0.00120235 0.00110368 0.0551439 0.0508624 46 4045 27 6.79088e+06 323328 828058. 2865.25 5.33 0.405559 0.353735 27406 200422 -1 3169 18 1508 4603 318410 62168 8.1454 8.1454 -176.643 -8.1454 0 0 1.01997e+06 3529.29 0.31 0.12 0.20 -1 -1 0.31 0.0472635 0.0421508 172 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 7.52 vpr 62.97 MiB 0.02 6680 -1 -1 13 0.31 -1 -1 33268 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.5 MiB 1.22 1447 9914 2954 6315 645 63.0 MiB 0.15 0.00 8.38843 -181.197 -8.38843 8.38843 0.89 0.00103727 0.00095944 0.0553559 0.0510042 36 3960 36 6.79088e+06 296384 648988. 2245.63 2.65 0.240173 0.213715 25390 158009 -1 3268 17 1506 4194 304675 62185 7.43336 7.43336 -178.34 -7.43336 0 0 828058. 2865.25 0.25 0.11 0.15 -1 -1 0.25 0.0403346 0.0359247 149 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 6.06 vpr 62.23 MiB 0.03 6612 -1 -1 11 0.15 -1 -1 32756 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.6 MiB 1.54 1043 11604 3704 5973 1927 62.2 MiB 0.15 0.00 6.83225 -151.19 -6.83225 6.83225 0.80 0.000798671 0.000735524 0.0575955 0.053129 30 2577 19 6.79088e+06 215552 556674. 1926.21 1.43 0.153756 0.136486 24526 138013 -1 2225 18 998 2442 143990 31391 6.20139 6.20139 -147.73 -6.20139 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0311334 0.0275813 97 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 8.46 vpr 63.17 MiB 0.03 7028 -1 -1 12 0.32 -1 -1 32764 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.69 1321 11989 3057 7272 1660 63.2 MiB 0.17 0.00 7.80487 -167.158 -7.80487 7.80487 0.95 0.00113821 0.0010464 0.0674693 0.0620744 38 3489 26 6.79088e+06 282912 678818. 2348.85 2.83 0.280573 0.24955 25966 169698 -1 2937 30 1426 4413 561061 248678 6.74877 6.74877 -154.693 -6.74877 0 0 902133. 3121.57 0.29 0.25 0.16 -1 -1 0.29 0.0682647 0.0613588 152 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 10.48 vpr 62.47 MiB 0.02 6560 -1 -1 12 0.20 -1 -1 32440 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1076 11776 3996 5804 1976 62.5 MiB 0.16 0.00 7.20737 -155.525 -7.20737 7.20737 0.79 0.000914219 0.000844632 0.0662778 0.0612873 40 2876 47 6.79088e+06 215552 706193. 2443.58 5.53 0.431236 0.380109 26254 175826 -1 2657 18 1255 3284 287920 61191 6.20488 6.20488 -148.339 -6.20488 0 0 926341. 3205.33 0.35 0.11 0.18 -1 -1 0.35 0.0370293 0.0333598 115 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 5.51 vpr 62.58 MiB 0.04 6636 -1 -1 12 0.19 -1 -1 32760 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 23.9 MiB 1.24 861 12331 3461 6927 1943 62.6 MiB 0.15 0.00 7.68992 -150.206 -7.68992 7.68992 0.79 0.000826044 0.000762316 0.061161 0.0564901 30 2279 22 6.79088e+06 255968 556674. 1926.21 1.18 0.16205 0.143785 24526 138013 -1 1867 13 775 2173 112780 25618 6.47016 6.47016 -140.483 -6.47016 0 0 706193. 2443.58 0.23 0.06 0.13 -1 -1 0.23 0.025533 0.022857 105 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 9.76 vpr 62.95 MiB 0.03 6804 -1 -1 12 0.32 -1 -1 32752 -1 -1 24 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.2 MiB 1.53 1109 13105 4321 6403 2381 62.9 MiB 0.18 0.00 7.73882 -148.46 -7.73882 7.73882 0.91 0.000939103 0.000859954 0.0696262 0.0639783 44 3073 26 6.79088e+06 323328 787024. 2723.27 4.41 0.366165 0.323199 27118 194962 -1 2202 15 1010 3369 196736 41979 6.80802 6.80802 -136.104 -6.80802 0 0 997811. 3452.63 0.37 0.09 0.19 -1 -1 0.37 0.0385304 0.0350653 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 30.23 vpr 63.17 MiB 0.04 6756 -1 -1 14 0.35 -1 -1 33028 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.4 MiB 2.62 1442 8024 2021 5399 604 63.2 MiB 0.14 0.00 8.63126 -174.325 -8.63126 8.63126 0.92 0.00103846 0.000958378 0.0473336 0.0435826 42 3928 32 6.79088e+06 296384 744469. 2576.02 23.67 0.537017 0.472887 26542 182613 -1 3156 20 1704 4448 351968 71204 7.64055 7.64055 -165.444 -7.64055 0 0 949917. 3286.91 0.31 0.15 0.20 -1 -1 0.31 0.0552542 0.050203 155 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 10.23 vpr 62.73 MiB 0.02 6672 -1 -1 12 0.25 -1 -1 32824 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1323 12503 3954 6429 2120 62.7 MiB 0.17 0.00 7.68002 -164.527 -7.68002 7.68002 0.95 0.000783723 0.000708648 0.0652048 0.0598595 38 3737 43 6.79088e+06 255968 678818. 2348.85 5.05 0.314872 0.278649 25966 169698 -1 2891 18 1369 3963 302432 68591 6.75652 6.75652 -158.471 -6.75652 0 0 902133. 3121.57 0.27 0.11 0.16 -1 -1 0.27 0.0401824 0.0357605 137 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 8.30 vpr 62.25 MiB 0.02 6700 -1 -1 12 0.17 -1 -1 32688 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.7 MiB 1.29 883 6839 1546 5160 133 62.3 MiB 0.10 0.00 7.22527 -147.319 -7.22527 7.22527 0.78 0.000781458 0.00071287 0.0351886 0.0324053 36 2385 16 6.79088e+06 202080 648988. 2245.63 3.92 0.213334 0.185772 25390 158009 -1 2029 16 842 2333 154772 33320 6.16917 6.16917 -141.929 -6.16917 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0276674 0.0246059 95 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 8.84 vpr 62.57 MiB 0.02 6612 -1 -1 12 0.27 -1 -1 32304 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.2 MiB 2.24 1016 11806 3829 5905 2072 62.6 MiB 0.15 0.00 7.21239 -153.602 -7.21239 7.21239 0.96 0.000795617 0.000728381 0.0565567 0.0519827 44 2603 19 6.79088e+06 242496 787024. 2723.27 2.29 0.218422 0.194283 27118 194962 -1 2065 15 888 2438 165954 33937 6.38057 6.38057 -142.436 -6.38057 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0318244 0.0287856 114 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 23.19 vpr 62.84 MiB 0.03 6676 -1 -1 11 0.21 -1 -1 32732 -1 -1 22 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.3 MiB 3.13 1192 7587 1799 4901 887 62.8 MiB 0.12 0.00 6.65573 -139.172 -6.65573 6.65573 0.92 0.000968443 0.00089304 0.0448669 0.0414174 38 3146 28 6.79088e+06 296384 678818. 2348.85 16.18 0.416231 0.365262 25966 169698 -1 2651 15 1163 3604 226505 46075 5.73164 5.73164 -133.904 -5.73164 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0343357 0.0310632 129 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 25.69 vpr 62.69 MiB 0.03 6876 -1 -1 11 0.24 -1 -1 32700 -1 -1 21 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 1.46 990 12156 4943 6412 801 62.7 MiB 0.17 0.00 6.59863 -125.892 -6.59863 6.59863 1.00 0.00071657 0.000653149 0.0632487 0.0588698 40 2995 50 6.79088e+06 282912 706193. 2443.58 20.12 0.497239 0.434245 26254 175826 -1 2536 29 1635 4811 462729 149224 5.98983 5.98983 -123.995 -5.98983 0 0 926341. 3205.33 0.28 0.17 0.18 -1 -1 0.28 0.050822 0.0445225 125 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 9.22 vpr 62.17 MiB 0.02 6636 -1 -1 13 0.19 -1 -1 32640 -1 -1 16 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.7 MiB 2.99 1023 6220 1452 4481 287 62.2 MiB 0.09 0.00 7.37394 -146.255 -7.37394 7.37394 0.98 0.0007522 0.000695303 0.0326697 0.0301484 34 2942 40 6.79088e+06 215552 618332. 2139.56 2.61 0.174546 0.153434 25102 150614 -1 2408 16 989 2444 169826 36658 6.50592 6.50592 -143.367 -6.50592 0 0 787024. 2723.27 0.28 0.07 0.17 -1 -1 0.28 0.0281226 0.0251012 104 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 10.11 vpr 62.79 MiB 0.02 6576 -1 -1 12 0.21 -1 -1 32428 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 23.9 MiB 2.10 1239 4476 858 3235 383 62.8 MiB 0.07 0.00 7.13568 -159.479 -7.13568 7.13568 0.98 0.000525089 0.000473757 0.024925 0.0229448 36 2894 18 6.79088e+06 269440 648988. 2245.63 4.43 0.227953 0.201335 25390 158009 -1 2565 14 1082 2807 201948 41879 6.45548 6.45548 -154.903 -6.45548 0 0 828058. 2865.25 0.29 0.08 0.16 -1 -1 0.29 0.031044 0.0277107 125 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 8.28 vpr 62.82 MiB 0.03 6676 -1 -1 13 0.31 -1 -1 32812 -1 -1 20 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.4 MiB 1.84 1176 7283 1697 4959 627 62.8 MiB 0.12 0.00 7.98183 -162.706 -7.98183 7.98183 0.79 0.00101499 0.00093848 0.0451838 0.0417837 36 2947 28 6.79088e+06 269440 648988. 2245.63 3.04 0.252336 0.225511 25390 158009 -1 2526 16 1152 3499 224433 48027 6.80691 6.80691 -150.824 -6.80691 0 0 828058. 2865.25 0.34 0.09 0.16 -1 -1 0.34 0.0331236 0.0296795 137 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 8.95 vpr 63.17 MiB 0.02 6748 -1 -1 14 0.27 -1 -1 32692 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1408 9013 2325 5592 1096 63.2 MiB 0.15 0.00 8.8032 -181.521 -8.8032 8.8032 0.80 0.00107966 0.000994519 0.0575389 0.0530817 36 3716 28 6.79088e+06 282912 648988. 2245.63 3.90 0.319745 0.284137 25390 158009 -1 3017 16 1370 3693 258657 53176 7.85554 7.85554 -177.767 -7.85554 0 0 828058. 2865.25 0.40 0.13 0.17 -1 -1 0.40 0.0463147 0.0421515 149 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 8.99 vpr 62.67 MiB 0.03 6744 -1 -1 14 0.26 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.3 MiB 2.51 1168 12528 4001 6466 2061 62.7 MiB 0.17 0.00 8.11366 -160.164 -8.11366 8.11366 0.85 0.00100343 0.000926617 0.0650075 0.0597542 44 3091 21 6.79088e+06 269440 787024. 2723.27 2.70 0.27703 0.24562 27118 194962 -1 2374 16 1082 3276 209350 43431 7.21863 7.21863 -147.746 -7.21863 0 0 997811. 3452.63 0.43 0.10 0.23 -1 -1 0.43 0.0433906 0.0398633 136 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 21.88 vpr 62.90 MiB 0.02 6804 -1 -1 13 0.36 -1 -1 33316 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.4 MiB 2.19 1266 7823 1896 4973 954 62.9 MiB 0.12 0.00 7.98865 -167.696 -7.98865 7.98865 0.95 0.000919414 0.000842708 0.0424689 0.0390224 38 3341 46 6.79088e+06 255968 678818. 2348.85 15.83 0.505982 0.441468 25966 169698 -1 2673 18 1200 3630 224806 47231 6.74882 6.74882 -156.035 -6.74882 0 0 902133. 3121.57 0.37 0.10 0.19 -1 -1 0.37 0.0436831 0.0393477 139 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 7.44 vpr 62.36 MiB 0.02 6604 -1 -1 13 0.19 -1 -1 32780 -1 -1 16 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 23.7 MiB 1.64 955 5888 1275 4387 226 62.4 MiB 0.09 0.00 7.30909 -151.711 -7.30909 7.30909 0.79 0.000829003 0.00076504 0.0325003 0.0300551 38 2560 19 6.79088e+06 215552 678818. 2348.85 2.58 0.160976 0.142072 25966 169698 -1 2100 15 975 2306 140137 30240 6.20837 6.20837 -141.215 -6.20837 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0251301 0.0225257 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 10.54 vpr 63.06 MiB 0.03 6652 -1 -1 13 0.44 -1 -1 32768 -1 -1 23 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1281 12175 3045 7735 1395 63.1 MiB 0.19 0.00 8.2401 -167.978 -8.2401 8.2401 0.95 0.00105496 0.000973607 0.0698109 0.0643643 36 3633 23 6.79088e+06 309856 648988. 2245.63 5.24 0.306062 0.271633 25390 158009 -1 2926 15 1331 3364 242193 50003 7.30041 7.30041 -163.44 -7.30041 0 0 828058. 2865.25 0.27 0.10 0.16 -1 -1 0.27 0.0383154 0.0347572 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 8.14 vpr 63.05 MiB 0.03 6944 -1 -1 14 0.32 -1 -1 31556 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1252 6306 1410 4478 418 63.1 MiB 0.10 0.00 8.1933 -176.786 -8.1933 8.1933 0.93 0.000828803 0.000763939 0.0330569 0.0304544 44 3050 16 6.79088e+06 269440 787024. 2723.27 2.64 0.205011 0.182005 27118 194962 -1 2540 16 1037 3296 220504 43729 7.43347 7.43347 -167.702 -7.43347 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0348544 0.0309668 133 181 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 9.01 vpr 62.87 MiB 0.05 6832 -1 -1 12 0.28 -1 -1 32884 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1214 6855 1626 4139 1090 62.9 MiB 0.11 0.00 7.87232 -159.238 -7.87232 7.87232 0.95 0.00113342 0.00102421 0.0404205 0.0373375 38 3179 23 6.79088e+06 282912 678818. 2348.85 3.41 0.252317 0.223505 25966 169698 -1 2619 17 1191 3371 219063 45384 6.75996 6.75996 -149.97 -6.75996 0 0 902133. 3121.57 0.34 0.10 0.18 -1 -1 0.34 0.0390497 0.0354264 143 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 9.24 vpr 62.70 MiB 0.05 6796 -1 -1 13 0.26 -1 -1 32736 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64200 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.1 MiB 1.86 1166 13583 4513 7114 1956 62.7 MiB 0.19 0.00 8.05477 -151.514 -8.05477 8.05477 0.79 0.000965069 0.000892 0.0768995 0.0710986 38 3229 19 6.79088e+06 282912 678818. 2348.85 3.78 0.276339 0.24487 25966 169698 -1 2657 23 1308 3559 283929 73986 7.08558 7.08558 -144.285 -7.08558 0 0 902133. 3121.57 0.35 0.12 0.22 -1 -1 0.35 0.0420796 0.0377602 126 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 10.03 vpr 63.00 MiB 0.04 6876 -1 -1 14 0.34 -1 -1 32948 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.5 MiB 1.57 1356 6595 1328 4700 567 63.0 MiB 0.12 0.00 8.2637 -174.994 -8.2637 8.2637 0.79 0.00110728 0.00102309 0.0436984 0.0404857 38 3944 40 6.79088e+06 282912 678818. 2348.85 4.83 0.305722 0.267642 25966 169698 -1 3101 22 1685 4745 323481 65687 7.17162 7.17162 -164.744 -7.17162 0 0 902133. 3121.57 0.35 0.12 0.17 -1 -1 0.35 0.0459009 0.0410207 154 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 11.64 vpr 62.60 MiB 0.03 6800 -1 -1 11 0.29 -1 -1 32876 -1 -1 22 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.0 MiB 1.32 1061 13403 4351 6899 2153 62.6 MiB 0.17 0.00 6.99502 -136.053 -6.99502 6.99502 0.95 0.000816622 0.000753733 0.0643671 0.0592665 34 3443 44 6.79088e+06 296384 618332. 2139.56 6.57 0.403393 0.355613 25102 150614 -1 2733 16 1355 4037 291660 60995 6.00456 6.00456 -130.805 -6.00456 0 0 787024. 2723.27 0.31 0.12 0.15 -1 -1 0.31 0.0422807 0.0386675 130 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 10.31 vpr 62.38 MiB 0.02 6508 -1 -1 13 0.18 -1 -1 32732 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 23.8 MiB 2.86 995 4062 701 3272 89 62.4 MiB 0.07 0.00 6.9771 -161.617 -6.9771 6.9771 0.78 0.00081012 0.000746947 0.0230495 0.0213318 38 2669 23 6.79088e+06 188608 678818. 2348.85 4.35 0.241609 0.211714 25966 169698 -1 2317 16 1087 2615 182540 37203 6.36594 6.36594 -158.261 -6.36594 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0304634 0.02767 99 130 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 10.45 vpr 63.04 MiB 0.03 6864 -1 -1 14 0.23 -1 -1 32840 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.71 1302 5483 1117 4002 364 63.0 MiB 0.09 0.00 8.68565 -176.783 -8.68565 8.68565 0.82 0.000977367 0.000903516 0.0336382 0.0311652 36 3251 31 6.79088e+06 255968 648988. 2245.63 5.39 0.269915 0.239304 25390 158009 -1 2857 22 1274 3475 326178 96259 7.59375 7.59375 -168.045 -7.59375 0 0 828058. 2865.25 0.32 0.14 0.16 -1 -1 0.32 0.045527 0.0410795 129 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 11.30 vpr 63.18 MiB 0.03 6684 -1 -1 15 0.42 -1 -1 33228 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.4 MiB 2.03 1292 9914 2574 6184 1156 63.2 MiB 0.18 0.00 9.1052 -186.475 -9.1052 9.1052 0.94 0.00115979 0.00107087 0.06832 0.0631063 42 3852 48 6.79088e+06 296384 744469. 2576.02 5.28 0.406869 0.360078 26542 182613 -1 2971 30 1580 4351 426615 133445 7.8164 7.8164 -176.348 -7.8164 0 0 949917. 3286.91 0.29 0.17 0.18 -1 -1 0.29 0.0649423 0.057258 153 227 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 9.98 vpr 62.24 MiB 0.02 6616 -1 -1 11 0.20 -1 -1 32636 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 2.22 829 6054 1305 4663 86 62.2 MiB 0.09 0.00 6.63906 -133.693 -6.63906 6.63906 0.95 0.000678052 0.00062269 0.0283885 0.0261142 36 2378 25 6.79088e+06 188608 648988. 2245.63 4.36 0.223299 0.195828 25390 158009 -1 1951 18 929 2412 156359 35347 5.66443 5.66443 -131.497 -5.66443 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0288851 0.0256958 91 123 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 8.41 vpr 62.49 MiB 0.05 6648 -1 -1 12 0.21 -1 -1 32536 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 24.0 MiB 1.72 1045 8360 2472 4444 1444 62.5 MiB 0.12 0.00 7.09988 -155.106 -7.09988 7.09988 0.79 0.000872943 0.000805925 0.0468101 0.0433015 36 2903 31 6.79088e+06 215552 648988. 2245.63 3.30 0.237526 0.209132 25390 158009 -1 2494 18 1219 3245 218949 46971 6.15449 6.15449 -148.32 -6.15449 0 0 828058. 2865.25 0.32 0.10 0.16 -1 -1 0.32 0.0356507 0.0320212 111 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 9.76 vpr 63.03 MiB 0.03 6776 -1 -1 12 0.39 -1 -1 32876 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.5 MiB 1.36 1231 6306 1337 4274 695 63.0 MiB 0.11 0.00 7.48442 -156.804 -7.48442 7.48442 1.02 0.00107798 0.000994115 0.0386919 0.0356386 36 3660 48 6.79088e+06 269440 648988. 2245.63 4.53 0.335995 0.298005 25390 158009 -1 2930 18 1374 3677 255073 54763 6.67381 6.67381 -159.977 -6.67381 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0442015 0.0394396 145 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 10.24 vpr 62.83 MiB 0.03 6804 -1 -1 12 0.25 -1 -1 32848 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.85 1313 9443 2521 5826 1096 62.8 MiB 0.14 0.00 7.56551 -160.745 -7.56551 7.56551 0.93 0.000787448 0.000721084 0.0520445 0.0480628 36 3743 26 6.79088e+06 255968 648988. 2245.63 4.76 0.279399 0.248769 25390 158009 -1 2904 15 1243 3681 239298 50800 6.72081 6.72081 -157.76 -6.72081 0 0 828058. 2865.25 0.26 0.11 0.15 -1 -1 0.26 0.0355003 0.0323703 133 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 10.28 vpr 63.46 MiB 0.03 6940 -1 -1 14 0.50 -1 -1 33288 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.8 MiB 1.29 1284 5079 907 4069 103 63.5 MiB 0.11 0.00 8.77515 -179.37 -8.77515 8.77515 0.82 0.00118959 0.00109555 0.0373689 0.0345516 44 3796 32 6.79088e+06 309856 787024. 2723.27 5.18 0.426483 0.373355 27118 194962 -1 2993 20 1472 4331 292142 60580 7.75826 7.75826 -170.084 -7.75826 0 0 997811. 3452.63 0.32 0.12 0.20 -1 -1 0.32 0.0508406 0.0454741 170 238 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 21.73 vpr 62.59 MiB 0.02 6736 -1 -1 11 0.26 -1 -1 32440 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64088 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.0 MiB 1.84 1159 11963 3648 6429 1886 62.6 MiB 0.17 0.00 7.06667 -142.983 -7.06667 7.06667 0.81 0.000955349 0.000882247 0.0669998 0.0619208 36 3496 38 6.79088e+06 282912 648988. 2245.63 16.50 0.424145 0.372762 25390 158009 -1 2773 15 1239 3552 235473 50045 6.29442 6.29442 -138.561 -6.29442 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0327826 0.0292352 128 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 14.45 vpr 62.27 MiB 0.05 6676 -1 -1 11 0.19 -1 -1 32348 -1 -1 19 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63768 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.7 MiB 1.31 770 7714 1883 5409 422 62.3 MiB 0.10 0.00 6.64923 -122.654 -6.64923 6.64923 0.84 0.000841282 0.000776837 0.0357535 0.032851 30 2716 40 6.79088e+06 255968 556674. 1926.21 9.71 0.336445 0.293869 24526 138013 -1 1974 15 964 2526 169628 37379 5.81779 5.81779 -122.796 -5.81779 0 0 706193. 2443.58 0.23 0.07 0.16 -1 -1 0.23 0.0269911 0.0240565 101 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 11.17 vpr 63.84 MiB 0.03 6892 -1 -1 13 0.42 -1 -1 32832 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65372 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 25.1 MiB 1.86 1654 14793 4090 8037 2666 63.8 MiB 0.26 0.00 8.15219 -167.23 -8.15219 8.15219 0.90 0.00131839 0.00121077 0.101149 0.0932711 40 4854 26 6.79088e+06 390688 706193. 2443.58 5.25 0.41033 0.364869 26254 175826 -1 4216 20 2198 6707 533986 105795 7.26116 7.26116 -164.519 -7.26116 0 0 926341. 3205.33 0.29 0.18 0.17 -1 -1 0.29 0.0596838 0.0533244 191 278 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 6.76 vpr 62.99 MiB 0.03 6784 -1 -1 14 0.27 -1 -1 33336 -1 -1 20 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.4 MiB 1.27 1216 6923 1704 4584 635 63.0 MiB 0.11 0.00 8.60637 -173.25 -8.60637 8.60637 0.80 0.000972108 0.000891677 0.0410357 0.0379582 30 3411 33 6.79088e+06 269440 556674. 1926.21 2.20 0.175674 0.154261 24526 138013 -1 2773 18 1384 3729 235085 50450 7.42577 7.42577 -168.834 -7.42577 0 0 706193. 2443.58 0.28 0.10 0.13 -1 -1 0.28 0.0379727 0.0337423 128 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 20.06 vpr 62.35 MiB 0.02 6608 -1 -1 12 0.16 -1 -1 32276 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 24.0 MiB 2.13 1144 8723 2365 5890 468 62.4 MiB 0.12 0.00 7.40683 -169.316 -7.40683 7.40683 0.78 0.000821939 0.000757915 0.0430561 0.039715 38 3028 21 6.79088e+06 255968 678818. 2348.85 14.79 0.351517 0.308291 25966 169698 -1 2585 14 1125 2806 183086 38344 6.54507 6.54507 -162.036 -6.54507 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0268382 0.0239893 109 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 8.43 vpr 62.63 MiB 0.02 6764 -1 -1 13 0.32 -1 -1 32740 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.1 MiB 2.79 1115 5066 1001 3852 213 62.6 MiB 0.09 0.00 8.33866 -169.136 -8.33866 8.33866 0.80 0.000964859 0.000886799 0.031833 0.0295117 46 2861 28 6.79088e+06 242496 828058. 2865.25 2.14 0.207902 0.181716 27406 200422 -1 2407 16 1069 3093 203685 41602 7.04987 7.04987 -155.226 -7.04987 0 0 1.01997e+06 3529.29 0.39 0.06 0.21 -1 -1 0.39 0.0261599 0.0236902 125 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 23.55 vpr 63.17 MiB 0.03 6940 -1 -1 13 0.37 -1 -1 33312 -1 -1 25 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.5 MiB 2.13 1490 8083 1681 5214 1188 63.2 MiB 0.14 0.00 7.4732 -162.473 -7.4732 7.4732 0.78 0.00113544 0.0010483 0.0523489 0.0484631 38 4036 37 6.79088e+06 336800 678818. 2348.85 17.82 0.578829 0.502335 25966 169698 -1 3216 17 1586 4292 286233 57211 6.50587 6.50587 -152.554 -6.50587 0 0 902133. 3121.57 0.34 0.12 0.18 -1 -1 0.34 0.0441565 0.0400446 159 232 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 10.92 vpr 62.93 MiB 0.05 6740 -1 -1 11 0.29 -1 -1 32800 -1 -1 23 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.3 MiB 1.75 1209 11059 2877 6113 2069 62.9 MiB 0.18 0.00 7.11391 -144.84 -7.11391 7.11391 0.80 0.0010101 0.000932486 0.0715452 0.0659608 36 3831 43 6.79088e+06 309856 648988. 2245.63 5.70 0.324127 0.287389 25390 158009 -1 2979 22 1388 4671 437225 111116 6.45892 6.45892 -142.761 -6.45892 0 0 828058. 2865.25 0.26 0.15 0.15 -1 -1 0.26 0.0457674 0.0404357 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 12.07 vpr 62.94 MiB 0.02 6756 -1 -1 15 0.36 -1 -1 32884 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.5 MiB 1.55 1211 12503 3460 7559 1484 62.9 MiB 0.17 0.00 9.11536 -184.558 -9.11536 9.11536 0.85 0.00106033 0.000979014 0.0705493 0.0651225 36 3544 49 6.79088e+06 255968 648988. 2245.63 7.02 0.45125 0.395937 25390 158009 -1 2865 18 1396 3592 244264 53181 7.59386 7.59386 -167.107 -7.59386 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0437469 0.0390384 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 15.18 vpr 63.29 MiB 0.05 6684 -1 -1 13 0.39 -1 -1 33036 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.5 MiB 2.07 1357 5463 1001 4200 262 63.3 MiB 0.10 0.00 8.32676 -176.58 -8.32676 8.32676 0.80 0.00113811 0.00104624 0.036376 0.0336377 36 4105 41 6.79088e+06 309856 648988. 2245.63 9.00 0.300989 0.262402 25390 158009 -1 3336 18 1449 4444 312347 65803 7.3039 7.3039 -168.956 -7.3039 0 0 828058. 2865.25 0.31 0.13 0.15 -1 -1 0.31 0.0472566 0.0422461 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 6.97 vpr 62.35 MiB 0.02 6672 -1 -1 12 0.20 -1 -1 32212 -1 -1 18 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63848 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 23.9 MiB 1.87 941 10557 3755 4946 1856 62.4 MiB 0.14 0.00 7.68137 -155.362 -7.68137 7.68137 0.80 0.000848382 0.000784553 0.0558626 0.0515681 34 2784 27 6.79088e+06 242496 618332. 2139.56 1.85 0.193558 0.170581 25102 150614 -1 2219 17 1118 2552 158377 36969 6.45897 6.45897 -146.842 -6.45897 0 0 787024. 2723.27 0.30 0.08 0.16 -1 -1 0.30 0.0330902 0.0295913 109 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 23.26 vpr 62.34 MiB 0.03 6540 -1 -1 11 0.16 -1 -1 32332 -1 -1 14 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 23.7 MiB 1.37 1148 5224 1190 3763 271 62.3 MiB 0.08 0.00 6.84847 -147.97 -6.84847 6.84847 0.81 0.000805588 0.000743453 0.0282204 0.0260537 38 3149 47 6.79088e+06 188608 678818. 2348.85 18.62 0.407514 0.355044 25966 169698 -1 2462 14 1116 2832 183379 38076 6.07953 6.07953 -142.464 -6.07953 0 0 902133. 3121.57 0.28 0.07 0.16 -1 -1 0.28 0.0262937 0.0234848 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 8.07 vpr 62.93 MiB 0.04 6728 -1 -1 13 0.37 -1 -1 32776 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.5 MiB 1.06 1115 8455 2194 4906 1355 62.9 MiB 0.14 0.00 7.89179 -153.02 -7.89179 7.89179 0.79 0.00105321 0.000972351 0.0522493 0.0483069 38 3284 25 6.79088e+06 296384 678818. 2348.85 3.50 0.284551 0.249715 25966 169698 -1 2440 20 1317 3733 228435 48311 6.79916 6.79916 -143.904 -6.79916 0 0 902133. 3121.57 0.27 0.11 0.17 -1 -1 0.27 0.0449637 0.0399148 144 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 7.25 vpr 62.32 MiB 0.02 6688 -1 -1 10 0.18 -1 -1 32840 -1 -1 17 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63816 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.7 MiB 1.67 851 10204 2504 7246 454 62.3 MiB 0.12 0.00 6.11518 -125.484 -6.11518 6.11518 0.86 0.000789158 0.000728394 0.0507975 0.0469145 36 2718 44 6.79088e+06 229024 648988. 2245.63 2.14 0.2041 0.179574 25390 158009 -1 2001 18 1039 2804 174359 39570 5.36333 5.36333 -123.093 -5.36333 0 0 828058. 2865.25 0.26 0.08 0.17 -1 -1 0.26 0.0311138 0.0275962 98 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 11.14 vpr 62.48 MiB 0.02 6512 -1 -1 14 0.22 -1 -1 32632 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 24.0 MiB 3.60 1049 6312 1330 4556 426 62.5 MiB 0.10 0.00 7.76918 -161.081 -7.76918 7.76918 0.80 0.00084757 0.000782521 0.0337816 0.0312754 44 2770 18 6.79088e+06 242496 787024. 2723.27 4.05 0.263848 0.230068 27118 194962 -1 2297 15 1001 2657 186808 38493 6.62358 6.62358 -150.482 -6.62358 0 0 997811. 3452.63 0.35 0.08 0.22 -1 -1 0.35 0.0294071 0.0262942 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 9.88 vpr 62.81 MiB 0.02 6728 -1 -1 12 0.40 -1 -1 32908 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64316 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.3 MiB 1.16 1262 12919 3620 7000 2299 62.8 MiB 0.20 0.00 7.60154 -161.988 -7.60154 7.60154 0.79 0.00104113 0.000960884 0.0767609 0.0708754 36 3548 40 6.79088e+06 296384 648988. 2245.63 5.15 0.325665 0.286156 25390 158009 -1 2918 18 1293 3840 265441 54208 6.42321 6.42321 -152.443 -6.42321 0 0 828058. 2865.25 0.27 0.11 0.16 -1 -1 0.27 0.0415233 0.0369561 143 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 9.07 vpr 62.27 MiB 0.04 6568 -1 -1 12 0.18 -1 -1 32276 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.8 MiB 2.15 992 10726 2823 7181 722 62.3 MiB 0.14 0.00 6.58069 -144.507 -6.58069 6.58069 0.78 0.000791473 0.000730096 0.053796 0.0497002 36 2863 30 6.79088e+06 215552 648988. 2245.63 3.78 0.284153 0.247858 25390 158009 -1 2275 14 965 2262 159533 33519 6.11529 6.11529 -140.819 -6.11529 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0260801 0.023304 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 8.33 vpr 63.01 MiB 0.05 6672 -1 -1 12 0.21 -1 -1 32932 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.1 MiB 1.32 1163 7736 1889 5402 445 63.0 MiB 0.12 0.00 7.51176 -154.757 -7.51176 7.51176 0.78 0.00097528 0.000899374 0.0464316 0.04289 38 3230 44 6.79088e+06 242496 678818. 2348.85 3.60 0.280477 0.244397 25966 169698 -1 2488 18 1146 3399 217401 44562 6.38406 6.38406 -145.229 -6.38406 0 0 902133. 3121.57 0.37 0.10 0.18 -1 -1 0.37 0.0394321 0.034929 123 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 11.84 vpr 62.73 MiB 0.02 6912 -1 -1 13 0.29 -1 -1 33048 -1 -1 19 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.0 MiB 1.44 1250 11296 2557 6849 1890 62.7 MiB 0.17 0.00 7.49717 -162.624 -7.49717 7.49717 0.93 0.00100011 0.000923092 0.0674722 0.0623037 44 3142 26 6.79088e+06 255968 787024. 2723.27 6.56 0.39224 0.343604 27118 194962 -1 2511 16 1097 3167 207050 42004 6.33367 6.33367 -147.614 -6.33367 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0354222 0.0315689 134 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 7.86 vpr 62.42 MiB 0.02 6584 -1 -1 11 0.20 -1 -1 32292 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 1.57 937 7515 1724 5667 124 62.4 MiB 0.10 0.00 7.16165 -142.405 -7.16165 7.16165 0.82 0.000825215 0.000776956 0.0390422 0.0363265 46 2632 18 6.79088e+06 202080 828058. 2865.25 2.90 0.218223 0.193111 27406 200422 -1 2080 16 1139 3041 211464 44102 6.16912 6.16912 -135.714 -6.16912 0 0 1.01997e+06 3529.29 0.31 0.09 0.23 -1 -1 0.31 0.0314661 0.0281808 105 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 10.04 vpr 62.46 MiB 0.02 6664 -1 -1 13 0.24 -1 -1 32448 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 1.94 1005 13381 4639 6392 2350 62.5 MiB 0.18 0.00 7.38301 -157.601 -7.38301 7.38301 0.79 0.000921853 0.000851473 0.0746166 0.0689525 40 2519 33 6.79088e+06 229024 706193. 2443.58 4.54 0.367843 0.321053 26254 175826 -1 2305 18 1198 3223 222898 47664 6.58427 6.58427 -149.311 -6.58427 0 0 926341. 3205.33 0.44 0.10 0.18 -1 -1 0.44 0.0382717 0.0347792 116 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 8.27 vpr 62.82 MiB 0.03 6816 -1 -1 13 0.32 -1 -1 32864 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.1 MiB 1.86 1327 8092 2018 5457 617 62.8 MiB 0.13 0.00 7.14878 -159.209 -7.14878 7.14878 0.80 0.00100582 0.000929948 0.049393 0.0456979 46 3184 21 6.79088e+06 242496 828058. 2865.25 2.89 0.271192 0.239134 27406 200422 -1 2556 17 1275 3494 248391 48405 6.28328 6.28328 -149.085 -6.28328 0 0 1.01997e+06 3529.29 0.32 0.10 0.21 -1 -1 0.32 0.0394779 0.0351943 130 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 8.29 vpr 62.49 MiB 0.02 6700 -1 -1 11 0.19 -1 -1 32684 -1 -1 22 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.0 MiB 1.65 925 13403 4743 6446 2214 62.5 MiB 0.17 0.00 6.69836 -125.024 -6.69836 6.69836 0.79 0.000875115 0.00080806 0.0695789 0.0642485 36 2683 30 6.79088e+06 296384 648988. 2245.63 3.39 0.25853 0.226666 25390 158009 -1 2102 15 950 2757 175002 37372 5.69593 5.69593 -120.693 -5.69593 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.030091 0.0267923 115 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 7.58 vpr 63.23 MiB 0.02 6728 -1 -1 14 0.32 -1 -1 33372 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.5 MiB 1.40 1410 8213 2036 5597 580 63.2 MiB 0.14 0.00 9.10514 -189.548 -9.10514 9.10514 0.79 0.00113019 0.00104256 0.0535286 0.0494339 44 3687 21 6.79088e+06 296384 787024. 2723.27 2.61 0.274186 0.240315 27118 194962 -1 2785 17 1255 3625 246974 50006 7.69105 7.69105 -173.768 -7.69105 0 0 997811. 3452.63 0.32 0.11 0.21 -1 -1 0.32 0.0445414 0.0398289 160 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 9.98 vpr 62.43 MiB 0.05 6548 -1 -1 12 0.16 -1 -1 32588 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.0 MiB 2.67 1093 11281 2937 6811 1533 62.4 MiB 0.14 0.00 6.61653 -142.296 -6.61653 6.61653 0.78 0.000807117 0.000744582 0.0555257 0.0512504 40 2615 16 6.79088e+06 242496 706193. 2443.58 4.04 0.28338 0.247985 26254 175826 -1 2478 16 1026 2502 188895 39224 5.57833 5.57833 -134.227 -5.57833 0 0 926341. 3205.33 0.29 0.08 0.18 -1 -1 0.29 0.0293895 0.0261984 108 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 10.28 vpr 62.87 MiB 0.04 6804 -1 -1 13 0.27 -1 -1 32844 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 1.85 1323 14123 4442 7710 1971 62.9 MiB 0.20 0.00 7.64293 -157.325 -7.64293 7.64293 0.78 0.000994871 0.000918739 0.0821696 0.0759274 46 3030 19 6.79088e+06 255968 828058. 2865.25 4.74 0.346862 0.303832 27406 200422 -1 2647 16 1175 3471 246657 48376 6.37287 6.37287 -146.251 -6.37287 0 0 1.01997e+06 3529.29 0.41 0.09 0.21 -1 -1 0.41 0.0331241 0.0296705 132 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 8.21 vpr 62.45 MiB 0.05 6604 -1 -1 13 0.18 -1 -1 32644 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63944 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 23.7 MiB 1.97 1020 12120 3554 6383 2183 62.4 MiB 0.15 0.00 7.35402 -164.423 -7.35402 7.35402 0.79 0.000821639 0.000757882 0.0613349 0.056648 34 3085 41 6.79088e+06 215552 618332. 2139.56 2.89 0.24694 0.216718 25102 150614 -1 2549 18 1134 2700 200329 42942 6.62003 6.62003 -161.17 -6.62003 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0325607 0.0289878 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 10.16 vpr 62.91 MiB 0.04 6792 -1 -1 12 0.21 -1 -1 32696 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.1 MiB 1.85 1030 11783 4465 6036 1282 62.9 MiB 0.17 0.00 7.13827 -153.033 -7.13827 7.13827 0.78 0.000952375 0.000878135 0.0662272 0.0611619 46 2739 28 6.79088e+06 255968 828058. 2865.25 4.87 0.346012 0.301762 27406 200422 -1 2087 16 995 3192 193213 42234 6.16912 6.16912 -140.388 -6.16912 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0344399 0.0306247 121 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 9.79 vpr 63.27 MiB 0.05 6872 -1 -1 15 0.49 -1 -1 32924 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.8 MiB 1.91 1457 12373 3076 6798 2499 63.3 MiB 0.21 0.00 9.48621 -188.88 -9.48621 9.48621 0.78 0.00122987 0.00113451 0.0828053 0.0764422 44 4104 47 6.79088e+06 323328 787024. 2723.27 3.97 0.335096 0.295779 27118 194962 -1 3134 16 1569 4964 350874 69772 8.1923 8.1923 -172.037 -8.1923 0 0 997811. 3452.63 0.31 0.15 0.19 -1 -1 0.31 0.0474038 0.0423389 176 249 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 6.50 vpr 61.70 MiB 0.04 6356 -1 -1 10 0.10 -1 -1 32180 -1 -1 11 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63180 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.1 MiB 1.47 678 9345 2965 4615 1765 61.7 MiB 0.10 0.00 5.03415 -115.492 -5.03415 5.03415 0.80 0.000605489 0.000558625 0.040121 0.0370269 36 1720 43 6.79088e+06 148192 648988. 2245.63 1.96 0.181179 0.157762 25390 158009 -1 1483 15 602 1368 88654 19495 4.56879 4.56879 -110.334 -4.56879 0 0 828058. 2865.25 0.28 0.05 0.16 -1 -1 0.28 0.0205732 0.018199 63 82 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.87 vpr 62.39 MiB 0.02 6632 -1 -1 13 0.18 -1 -1 32480 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63884 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.0 MiB 1.64 930 9881 2975 5177 1729 62.4 MiB 0.12 0.00 7.15369 -149.901 -7.15369 7.15369 0.78 0.000820051 0.000757507 0.0497343 0.0459615 36 2740 38 6.79088e+06 255968 648988. 2245.63 3.05 0.239409 0.209723 25390 158009 -1 2157 19 1034 2498 173546 42776 6.58089 6.58089 -149.012 -6.58089 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0334708 0.0297283 105 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 9.50 vpr 62.52 MiB 0.04 6576 -1 -1 12 0.19 -1 -1 32480 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1026 12331 4984 6774 573 62.5 MiB 0.17 0.00 7.35057 -161.147 -7.35057 7.35057 0.79 0.00091262 0.000842116 0.0682588 0.06306 44 3035 21 6.79088e+06 229024 787024. 2723.27 4.31 0.326043 0.284679 27118 194962 -1 2281 16 1182 2918 212536 44343 6.40514 6.40514 -149.51 -6.40514 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0332315 0.0295915 115 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 5.24 vpr 62.14 MiB 0.04 6568 -1 -1 9 0.13 -1 -1 32528 -1 -1 20 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63628 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.7 MiB 1.05 772 8553 2593 4994 966 62.1 MiB 0.09 0.00 5.4216 -101.246 -5.4216 5.4216 0.83 0.000670783 0.000619861 0.0374142 0.0346039 32 2036 28 6.79088e+06 269440 586450. 2029.24 1.14 0.127264 0.112119 24814 144142 -1 1804 14 700 1830 142548 30310 5.04314 5.04314 -102.725 -5.04314 0 0 744469. 2576.02 0.23 0.06 0.14 -1 -1 0.23 0.0215917 0.0191895 86 103 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 11.46 vpr 63.05 MiB 0.05 6864 -1 -1 12 0.26 -1 -1 32744 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.3 MiB 2.33 1475 10263 2607 5842 1814 63.1 MiB 0.16 0.00 7.81518 -176.908 -7.81518 7.81518 0.78 0.00105019 0.000964915 0.0605056 0.0558853 38 3938 38 6.79088e+06 309856 678818. 2348.85 5.67 0.314699 0.276672 25966 169698 -1 3175 17 1566 4094 254753 52955 6.59551 6.59551 -162.987 -6.59551 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0397188 0.0353842 146 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 10.26 vpr 63.16 MiB 0.06 6856 -1 -1 14 0.91 -1 -1 32796 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.22 1195 12733 3723 6434 2576 63.2 MiB 0.21 0.00 9.14434 -182.838 -9.14434 9.14434 0.85 0.0011813 0.00109835 0.0807804 0.0745936 38 3582 41 6.79088e+06 296384 678818. 2348.85 4.71 0.350281 0.308081 25966 169698 -1 2689 16 1326 3877 228775 49593 7.60495 7.60495 -163.291 -7.60495 0 0 902133. 3121.57 0.29 0.10 0.16 -1 -1 0.29 0.0391766 0.034956 151 202 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.24 vpr 63.50 MiB 0.03 7216 -1 -1 1 0.03 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.7 MiB 1.22 895 12321 3076 8292 953 63.5 MiB 0.22 0.01 4.3249 -144.349 -4.3249 4.3249 0.79 0.000884955 0.000818994 0.0494586 0.0457358 32 3456 32 6.87369e+06 517032 586450. 2029.24 3.74 0.322254 0.279779 25474 144626 -1 2375 21 2015 3352 376702 84002 4.165 4.165 -152.752 -4.165 0 0 744469. 2576.02 0.24 0.13 0.15 -1 -1 0.24 0.0358111 0.0313558 155 80 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 7.57 vpr 63.34 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30504 -1 -1 23 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64856 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.5 MiB 3.23 889 13477 4603 6656 2218 63.3 MiB 0.23 0.00 4.22285 -135.326 -4.22285 4.22285 0.81 0.000827482 0.000765148 0.0626896 0.0579967 32 3121 31 6.87369e+06 321398 586450. 2029.24 1.19 0.169173 0.149764 25474 144626 -1 2227 19 1805 2980 321736 70632 4.2653 4.2653 -148.64 -4.2653 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.0306559 0.0269464 141 78 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.97 vpr 63.27 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30336 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.5 MiB 1.79 953 18428 5979 9684 2765 63.3 MiB 0.26 0.01 3.74716 -129.333 -3.74716 3.74716 0.79 0.000808165 0.000746116 0.0667703 0.06154 30 2555 24 6.87369e+06 503058 556674. 1926.21 1.12 0.164308 0.145603 25186 138497 -1 1959 20 1255 1992 157512 33342 3.4085 3.4085 -127.068 -3.4085 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0311584 0.0273253 145 50 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.25 vpr 63.03 MiB 0.03 7048 -1 -1 1 0.04 -1 -1 30488 -1 -1 23 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.3 MiB 1.32 922 15090 5352 7218 2520 63.0 MiB 0.25 0.00 4.1666 -130.205 -4.1666 4.1666 0.79 0.000746851 0.000690134 0.0640235 0.0592512 34 2535 23 6.87369e+06 321398 618332. 2139.56 1.75 0.205537 0.180917 25762 151098 -1 2037 21 1820 3125 293534 62306 3.7734 3.7734 -135.656 -3.7734 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0303904 0.0266201 136 25 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.99 vpr 63.28 MiB 0.04 7068 -1 -1 1 0.04 -1 -1 30188 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 1.81 1047 14965 5078 8038 1849 63.3 MiB 0.26 0.01 4.2175 -149.421 -4.2175 4.2175 0.81 0.000802701 0.000741737 0.0678045 0.0627376 34 3065 24 6.87369e+06 293451 618332. 2139.56 1.89 0.230968 0.203076 25762 151098 -1 2471 23 2296 4252 413327 88159 3.8924 3.8924 -153.294 -3.8924 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0333376 0.0292791 147 31 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.72 vpr 63.29 MiB 0.04 7180 -1 -1 1 0.04 -1 -1 30448 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.5 MiB 1.18 1041 20588 6432 11323 2833 63.3 MiB 0.30 0.01 3.55395 -124.862 -3.55395 3.55395 0.80 0.000643391 0.00058504 0.0720983 0.0664368 32 2935 41 6.87369e+06 544980 586450. 2029.24 1.24 0.196033 0.173341 25474 144626 -1 2284 20 1589 2488 250471 54156 2.97596 2.97596 -124.287 -2.97596 0 0 744469. 2576.02 0.24 0.10 0.15 -1 -1 0.24 0.033138 0.0290574 154 61 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.16 vpr 62.68 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64180 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.0 MiB 2.12 640 10388 2730 6621 1037 62.7 MiB 0.15 0.00 3.6994 -105.15 -3.6994 3.6994 0.80 0.000615363 0.000569218 0.0384171 0.0355396 28 1909 23 6.87369e+06 279477 531479. 1839.03 1.08 0.117415 0.103523 24610 126494 -1 1613 19 1140 1839 172281 36946 2.98231 2.98231 -107.384 -2.98231 0 0 648988. 2245.63 0.21 0.07 0.15 -1 -1 0.21 0.0237601 0.020771 102 26 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.45 vpr 63.20 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30164 -1 -1 35 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 1.11 969 14273 4212 7662 2399 63.2 MiB 0.21 0.01 3.61131 -114.549 -3.61131 3.61131 0.79 0.000734356 0.000675403 0.0487524 0.0450693 30 2470 20 6.87369e+06 489084 556674. 1926.21 1.08 0.133814 0.118442 25186 138497 -1 1928 19 1100 1766 126719 28446 2.81296 2.81296 -109.061 -2.81296 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0270921 0.0237597 141 -1 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.50 vpr 62.98 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30036 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.2 MiB 2.46 735 9712 2823 5738 1151 63.0 MiB 0.15 0.00 3.24697 -108.666 -3.24697 3.24697 0.80 0.000717454 0.000662606 0.0457274 0.0423293 28 1948 25 6.87369e+06 223581 531479. 1839.03 0.96 0.135158 0.119327 24610 126494 -1 1700 18 919 1439 127547 28177 2.73801 2.73801 -111.083 -2.73801 0 0 648988. 2245.63 0.26 0.07 0.14 -1 -1 0.26 0.0256687 0.0224893 103 81 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 10.49 vpr 62.67 MiB 0.03 6924 -1 -1 1 0.02 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.55 706 12808 2978 8428 1402 62.7 MiB 0.15 0.00 3.8076 -131.302 -3.8076 3.8076 0.79 0.000699011 0.000645854 0.0542994 0.0502011 36 2038 25 6.87369e+06 223581 648988. 2245.63 3.72 0.254464 0.221541 26050 158493 -1 1684 21 1391 2108 172313 39454 3.10126 3.10126 -128.062 -3.10126 0 0 828058. 2865.25 0.35 0.11 0.17 -1 -1 0.35 0.0376982 0.0331672 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 9.85 vpr 62.89 MiB 0.03 6932 -1 -1 1 0.03 -1 -1 30052 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64400 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.3 MiB 3.43 860 11776 3165 7564 1047 62.9 MiB 0.17 0.00 3.7375 -122.128 -3.7375 3.7375 0.86 0.00070806 0.00065475 0.0505597 0.0467769 34 1948 24 6.87369e+06 251529 618332. 2139.56 3.06 0.213236 0.185973 25762 151098 -1 1682 17 1107 1637 134273 29951 3.06651 3.06651 -119.718 -3.06651 0 0 787024. 2723.27 0.25 0.07 0.17 -1 -1 0.25 0.0243914 0.0214178 109 58 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.16 vpr 62.91 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30344 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.0 MiB 1.47 881 15207 4108 9975 1124 62.9 MiB 0.21 0.01 3.45001 -118.108 -3.45001 3.45001 0.81 0.000724399 0.000662273 0.0538715 0.0496958 34 2216 20 6.87369e+06 447163 618332. 2139.56 1.58 0.194326 0.169983 25762 151098 -1 1828 19 1165 1948 196597 39780 2.67096 2.67096 -112.436 -2.67096 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0266245 0.0232718 116 57 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.87 vpr 63.25 MiB 0.02 7148 -1 -1 1 0.04 -1 -1 30136 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 4.60 958 19935 5624 11872 2439 63.2 MiB 0.31 0.01 3.64005 -125.972 -3.64005 3.64005 0.81 0.000859421 0.000785146 0.0748821 0.0690663 34 2675 21 6.87369e+06 489084 618332. 2139.56 1.81 0.233765 0.20596 25762 151098 -1 2191 19 1661 2748 238239 53745 3.16086 3.16086 -124.987 -3.16086 0 0 787024. 2723.27 0.38 0.11 0.20 -1 -1 0.38 0.0310823 0.0276195 147 55 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.18 vpr 63.55 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30284 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.9 MiB 2.45 1059 21016 6637 11817 2562 63.6 MiB 0.32 0.01 4.34584 -150.842 -4.34584 4.34584 0.93 0.000846276 0.000780693 0.0789689 0.0727743 30 2673 25 6.87369e+06 517032 556674. 1926.21 1.16 0.185724 0.165314 25186 138497 -1 2249 20 1566 2558 195970 42249 3.9034 3.9034 -150.113 -3.9034 0 0 706193. 2443.58 0.28 0.10 0.16 -1 -1 0.28 0.0345133 0.0308117 155 60 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.05 vpr 62.43 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30460 -1 -1 19 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 1.68 791 11776 3380 6895 1501 62.4 MiB 0.15 0.00 3.6364 -112.843 -3.6364 3.6364 0.88 0.000622925 0.000575397 0.0446216 0.041278 32 2063 24 6.87369e+06 265503 586450. 2029.24 1.00 0.121775 0.107408 25474 144626 -1 1804 22 1150 1893 198261 42627 3.15791 3.15791 -114.173 -3.15791 0 0 744469. 2576.02 0.30 0.10 0.16 -1 -1 0.30 0.0332985 0.0291285 102 21 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.43 vpr 63.29 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30228 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.7 MiB 2.81 930 14221 5969 7807 445 63.3 MiB 0.25 0.00 3.52575 -124.171 -3.52575 3.52575 0.83 0.000841574 0.000777021 0.0669453 0.0619079 36 2588 24 6.87369e+06 293451 648988. 2245.63 1.98 0.233439 0.205039 26050 158493 -1 2019 22 1887 3285 276413 61675 3.42516 3.42516 -127.907 -3.42516 0 0 828058. 2865.25 0.33 0.12 0.18 -1 -1 0.33 0.0366856 0.032657 145 60 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 8.74 vpr 63.33 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30212 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 4.17 1056 17238 4537 10962 1739 63.3 MiB 0.24 0.01 3.55695 -127.024 -3.55695 3.55695 0.90 0.000807035 0.000746149 0.0611755 0.0564615 28 2543 23 6.87369e+06 531006 531479. 1839.03 1.03 0.159652 0.141602 24610 126494 -1 2271 15 1352 1958 186271 38351 2.86466 2.86466 -124.633 -2.86466 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.0253811 0.0223716 148 54 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.35 vpr 63.01 MiB 0.03 6924 -1 -1 1 0.03 -1 -1 30048 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.1 MiB 2.37 836 17103 4501 10697 1905 63.0 MiB 0.24 0.00 3.09156 -112.02 -3.09156 3.09156 0.84 0.000730719 0.000675061 0.0622604 0.0575189 26 2230 36 6.87369e+06 405241 503264. 1741.40 1.51 0.168823 0.149416 24322 120374 -1 2035 25 1343 2071 218189 48579 2.56377 2.56377 -110.713 -2.56377 0 0 618332. 2139.56 0.26 0.11 0.12 -1 -1 0.26 0.0350532 0.0309605 117 62 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.49 vpr 62.22 MiB 0.06 6876 -1 -1 1 0.03 -1 -1 30092 -1 -1 14 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63712 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.6 MiB 0.50 560 9036 3714 4978 344 62.2 MiB 0.08 0.00 2.94056 -94.1681 -2.94056 2.94056 0.80 0.000374825 0.000342345 0.022816 0.0208504 28 1632 30 6.87369e+06 195634 531479. 1839.03 1.12 0.0780033 0.0678869 24610 126494 -1 1356 18 720 1022 89298 20607 2.29547 2.29547 -92.8103 -2.29547 0 0 648988. 2245.63 0.22 0.05 0.13 -1 -1 0.22 0.0196536 0.017123 73 29 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 5.30 vpr 62.83 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30272 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.26 944 12636 3568 7641 1427 62.8 MiB 0.17 0.00 4.39847 -135.821 -4.39847 4.39847 0.79 0.000719004 0.00066472 0.0552436 0.0510747 32 2256 21 6.87369e+06 237555 586450. 2029.24 1.01 0.118843 0.105954 25474 144626 -1 1917 20 1020 1518 166618 33866 3.4178 3.4178 -128.066 -3.4178 0 0 744469. 2576.02 0.31 0.07 0.15 -1 -1 0.31 0.0229895 0.0203495 113 55 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.80 vpr 63.30 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 29980 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.5 MiB 0.87 894 19124 5624 10425 3075 63.3 MiB 0.27 0.00 4.20059 -139.885 -4.20059 4.20059 0.81 0.000790638 0.000730773 0.0679645 0.0627372 34 2601 23 6.87369e+06 503058 618332. 2139.56 1.72 0.224544 0.197493 25762 151098 -1 1988 20 1674 2373 228179 49576 3.8767 3.8767 -138.505 -3.8767 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0309956 0.0272209 150 31 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.16 vpr 63.46 MiB 0.03 7264 -1 -1 1 0.03 -1 -1 30784 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.8 MiB 2.99 951 19380 5821 10599 2960 63.5 MiB 0.31 0.01 3.81248 -128.436 -3.81248 3.81248 0.79 0.000914469 0.000844105 0.0763484 0.0703485 34 2793 27 6.87369e+06 558954 618332. 2139.56 1.97 0.264681 0.231556 25762 151098 -1 2010 20 1489 2271 210689 46809 3.7314 3.7314 -130.657 -3.7314 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0349929 0.030531 154 108 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.88 vpr 62.05 MiB 0.04 6660 -1 -1 1 0.02 -1 -1 30432 -1 -1 16 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63536 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.6 MiB 1.95 600 9219 3759 4898 562 62.0 MiB 0.10 0.00 2.91856 -82.7442 -2.91856 2.91856 0.86 0.000470182 0.000440589 0.0295774 0.027507 28 1391 16 6.87369e+06 223581 531479. 1839.03 0.94 0.0827513 0.0730903 24610 126494 -1 1274 19 709 1086 97848 21852 2.15012 2.15012 -81.0459 -2.15012 0 0 648988. 2245.63 0.21 0.05 0.13 -1 -1 0.21 0.0181779 0.0158377 69 21 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.37 vpr 63.08 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30020 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.4 MiB 1.40 1038 9757 2635 6591 531 63.1 MiB 0.18 0.01 4.1666 -141.416 -4.1666 4.1666 0.81 0.000750919 0.000694801 0.0416732 0.0385459 34 2849 25 6.87369e+06 293451 618332. 2139.56 1.81 0.166947 0.147012 25762 151098 -1 2149 22 1877 3114 262692 60108 3.971 3.971 -146.122 -3.971 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0316281 0.0277088 141 -1 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.72 vpr 62.18 MiB 0.06 6736 -1 -1 1 0.03 -1 -1 30228 -1 -1 12 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.7 MiB 0.40 506 9516 2238 6770 508 62.2 MiB 0.10 0.00 2.55523 -88.1124 -2.55523 2.55523 0.79 0.000507078 0.000471332 0.0318432 0.0293706 34 1379 23 6.87369e+06 167686 618332. 2139.56 1.42 0.132263 0.115664 25762 151098 -1 1186 16 589 739 57202 14357 2.08317 2.08317 -88.0105 -2.08317 0 0 787024. 2723.27 0.25 0.04 0.15 -1 -1 0.25 0.0168437 0.0148079 71 -1 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 7.79 vpr 63.27 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30404 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1092 17964 4627 11625 1712 63.3 MiB 0.27 0.01 4.26205 -149.131 -4.26205 4.26205 0.79 0.000610251 0.000549408 0.0586068 0.0539632 34 2731 22 6.87369e+06 503058 618332. 2139.56 3.64 0.257072 0.225331 25762 151098 -1 2347 25 1909 2745 262335 55271 3.7953 3.7953 -146.529 -3.7953 0 0 787024. 2723.27 0.25 0.11 0.20 -1 -1 0.25 0.038118 0.0333913 155 21 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.88 vpr 63.23 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 29988 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.82 964 9612 2267 6482 863 63.2 MiB 0.17 0.01 3.55269 -121.215 -3.55269 3.55269 0.79 0.000761974 0.000703854 0.0343017 0.0316974 32 2790 24 6.87369e+06 503058 586450. 2029.24 1.06 0.109492 0.0967954 25474 144626 -1 2159 22 1627 2614 248004 54455 2.96796 2.96796 -121.001 -2.96796 0 0 744469. 2576.02 0.24 0.10 0.15 -1 -1 0.24 0.0318042 0.0278633 151 -1 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 7.52 vpr 63.45 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30392 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.6 MiB 0.91 1088 13358 3512 8899 947 63.4 MiB 0.23 0.01 4.2809 -148.724 -4.2809 4.2809 0.79 0.000837453 0.000772268 0.0496682 0.0457534 28 2976 28 6.87369e+06 544980 531479. 1839.03 3.54 0.256448 0.223668 24610 126494 -1 2550 20 1992 3369 314920 67275 3.8734 3.8734 -150.357 -3.8734 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0328697 0.0288324 156 54 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.54 vpr 62.60 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.1 MiB 0.88 734 6839 1724 4743 372 62.6 MiB 0.12 0.00 3.07332 -108.035 -3.07332 3.07332 0.80 0.000677207 0.000625652 0.031312 0.0289931 34 2087 23 6.87369e+06 209608 618332. 2139.56 1.57 0.169965 0.147689 25762 151098 -1 1683 18 1057 1708 149535 33389 2.73466 2.73466 -111.64 -2.73466 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0204935 0.0181236 104 31 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.11 vpr 62.53 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 29976 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64032 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 0.96 856 11260 3834 5392 2034 62.5 MiB 0.15 0.00 3.7936 -125.971 -3.7936 3.7936 0.88 0.000664419 0.000614279 0.0457404 0.0423023 32 2219 21 6.87369e+06 251529 586450. 2029.24 1.04 0.120332 0.106269 25474 144626 -1 1733 22 1340 1951 184834 40027 3.21861 3.21861 -124.254 -3.21861 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0281281 0.0245404 109 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.09 vpr 62.59 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30196 -1 -1 19 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.0 MiB 0.99 743 13092 5209 6121 1762 62.6 MiB 0.18 0.00 3.48175 -108.034 -3.48175 3.48175 0.80 0.0006336 0.000585985 0.0510006 0.047166 28 2259 26 6.87369e+06 265503 531479. 1839.03 1.09 0.130971 0.115812 24610 126494 -1 1875 21 1326 2212 209433 45791 3.19356 3.19356 -120.046 -3.19356 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.025694 0.0223859 104 27 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.99 vpr 62.58 MiB 0.07 6820 -1 -1 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 1.16 861 14700 5460 6955 2285 62.6 MiB 0.21 0.00 3.58201 -129.205 -3.58201 3.58201 0.79 0.000662199 0.000611895 0.0593169 0.0549291 34 2299 21 6.87369e+06 223581 618332. 2139.56 1.63 0.189925 0.16693 25762 151098 -1 1972 22 1561 2562 248423 51074 2.98996 2.98996 -127.676 -2.98996 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.0199799 0.0175382 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.84 vpr 62.65 MiB 0.08 6924 -1 -1 1 0.03 -1 -1 30232 -1 -1 32 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.0 MiB 0.73 924 11975 3064 7554 1357 62.6 MiB 0.16 0.00 3.50375 -121.402 -3.50375 3.50375 0.80 0.0006823 0.000630151 0.0398625 0.0368233 32 2461 24 6.87369e+06 447163 586450. 2029.24 1.03 0.12299 0.108321 25474 144626 -1 2015 21 1378 2178 226315 48894 3.10126 3.10126 -123.592 -3.10126 0 0 744469. 2576.02 0.24 0.09 0.14 -1 -1 0.24 0.0274107 0.0239309 119 26 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.10 vpr 62.82 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 29980 -1 -1 32 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 23.9 MiB 2.54 824 15003 4455 7859 2689 62.8 MiB 0.19 0.00 2.90021 -94.838 -2.90021 2.90021 0.79 0.000679067 0.000625835 0.0509572 0.0470112 34 1790 20 6.87369e+06 447163 618332. 2139.56 1.50 0.18227 0.159377 25762 151098 -1 1473 22 1204 1983 170650 36726 2.15482 2.15482 -87.5068 -2.15482 0 0 787024. 2723.27 0.23 0.04 0.15 -1 -1 0.23 0.014712 0.0128752 113 55 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.43 vpr 63.75 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30288 -1 -1 44 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 25.0 MiB 3.64 1315 20411 5511 12546 2354 63.8 MiB 0.37 0.01 4.25391 -147.758 -4.25391 4.25391 0.79 0.000902904 0.000833805 0.0748017 0.0689769 28 3519 42 6.87369e+06 614849 531479. 1839.03 2.51 0.218923 0.193743 24610 126494 -1 3002 23 2374 4134 394775 84463 3.8924 3.8924 -153.788 -3.8924 0 0 648988. 2245.63 0.21 0.14 0.13 -1 -1 0.21 0.0402229 0.0352707 184 26 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.14 vpr 63.38 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30404 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.8 MiB 2.85 1049 18419 4848 10881 2690 63.4 MiB 0.26 0.01 3.66825 -130.624 -3.66825 3.66825 0.79 0.000838708 0.000775937 0.0672421 0.0621456 32 2676 20 6.87369e+06 544980 586450. 2029.24 1.07 0.165206 0.146851 25474 144626 -1 2168 20 1841 2718 280411 56383 2.90386 2.90386 -124.352 -2.90386 0 0 744469. 2576.02 0.24 0.10 0.14 -1 -1 0.24 0.0326293 0.02865 154 62 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.95 vpr 62.95 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30432 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.5 MiB 3.18 881 17134 5393 9307 2434 62.9 MiB 0.23 0.00 3.56305 -119.83 -3.56305 3.56305 0.79 0.000733485 0.000677068 0.0612185 0.0564123 34 1902 21 6.87369e+06 433189 618332. 2139.56 1.59 0.203639 0.178319 25762 151098 -1 1734 22 1123 1765 160585 34701 2.76901 2.76901 -110.136 -2.76901 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0305663 0.026624 116 77 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.81 vpr 63.32 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 30268 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.88 1019 8641 2131 5612 898 63.3 MiB 0.18 0.01 3.59121 -120.774 -3.59121 3.59121 0.78 0.000817994 0.000756119 0.0404168 0.0374116 34 2669 38 6.87369e+06 307425 618332. 2139.56 1.76 0.219825 0.191619 25762 151098 -1 2245 18 1626 2631 257169 54704 3.24216 3.24216 -123.479 -3.24216 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0313675 0.0277668 141 59 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.11 vpr 63.45 MiB 0.05 7340 -1 -1 1 0.03 -1 -1 30372 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64972 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.6 MiB 4.63 1071 16825 7101 8757 967 63.4 MiB 0.31 0.01 4.97069 -151.888 -4.97069 4.97069 0.80 0.000912632 0.000844804 0.0885133 0.0820035 34 2828 30 6.87369e+06 307425 618332. 2139.56 2.14 0.27828 0.244444 25762 151098 -1 2357 21 1543 2502 259073 52983 4.35625 4.35625 -150.665 -4.35625 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0363681 0.0316154 145 111 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 6.64 vpr 63.20 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30252 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.3 MiB 1.72 980 12175 3299 8119 757 63.2 MiB 0.21 0.00 4.75154 -140.36 -4.75154 4.75154 0.79 0.000842327 0.000777929 0.057715 0.0533368 34 2546 25 6.87369e+06 307425 618332. 2139.56 1.79 0.226891 0.198925 25762 151098 -1 2138 19 1436 2308 211264 46103 3.7011 3.7011 -139.741 -3.7011 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0315689 0.02774 141 86 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.28 vpr 63.32 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64836 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 2.41 1053 19023 5653 10954 2416 63.3 MiB 0.28 0.01 3.64005 -125.414 -3.64005 3.64005 0.79 0.000815513 0.000754647 0.0706596 0.0652317 34 2438 22 6.87369e+06 503058 618332. 2139.56 1.66 0.231654 0.203273 25762 151098 -1 2015 22 1832 2978 268710 57273 2.97896 2.97896 -122.08 -2.97896 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.034436 0.0301353 148 58 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 10.31 vpr 63.36 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30356 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.5 MiB 1.67 1150 19618 5466 12522 1630 63.4 MiB 0.30 0.01 4.1996 -145.707 -4.1996 4.1996 0.79 0.000842057 0.000778382 0.0722358 0.0666759 28 3251 24 6.87369e+06 531006 531479. 1839.03 5.26 0.308468 0.26987 24610 126494 -1 2631 22 2061 3263 360463 72578 4.1633 4.1633 -153.028 -4.1633 0 0 648988. 2245.63 0.21 0.12 0.13 -1 -1 0.21 0.0347094 0.0303776 156 42 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 7.86 vpr 63.78 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30428 -1 -1 42 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.2 MiB 3.01 1303 13356 3327 8820 1209 63.8 MiB 0.27 0.01 4.31511 -149.42 -4.31511 4.31511 0.78 0.00100904 0.000925944 0.0581602 0.0537211 28 3479 42 6.87369e+06 586901 531479. 1839.03 1.53 0.21226 0.18703 24610 126494 -1 2859 21 2184 3519 341649 86796 4.068 4.068 -153.969 -4.068 0 0 648988. 2245.63 0.21 0.13 0.13 -1 -1 0.21 0.0402721 0.0352593 186 91 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.49 vpr 62.64 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30584 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.1 MiB 1.78 908 12636 4255 7048 1333 62.6 MiB 0.19 0.00 3.7654 -130.371 -3.7654 3.7654 0.81 0.000646888 0.000594754 0.052257 0.048348 32 2444 26 6.87369e+06 237555 586450. 2029.24 1.56 0.177261 0.155593 25474 144626 -1 1997 19 1380 2189 253007 50669 3.04031 3.04031 -127.245 -3.04031 0 0 744469. 2576.02 0.24 0.09 0.13 -1 -1 0.24 0.0254936 0.0222705 112 24 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.33 vpr 63.23 MiB 0.04 7228 -1 -1 1 0.03 -1 -1 30232 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 2.46 1036 19820 6398 10981 2441 63.2 MiB 0.29 0.01 4.25889 -142.345 -4.25889 4.25889 0.79 0.000819814 0.000757269 0.0732881 0.0677204 32 3074 50 6.87369e+06 517032 586450. 2029.24 1.55 0.207059 0.183087 25474 144626 -1 2324 22 1864 2990 312759 68331 4.0207 4.0207 -147.051 -4.0207 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.0348138 0.030507 152 59 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.56 vpr 63.33 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30436 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 1.80 1118 16515 4839 10227 1449 63.3 MiB 0.26 0.01 3.56001 -125.702 -3.56001 3.56001 0.79 0.000825825 0.000762908 0.0629681 0.0582023 28 3021 24 6.87369e+06 489084 531479. 1839.03 1.61 0.16592 0.147253 24610 126494 -1 2615 22 1771 3016 325176 70417 3.56776 3.56776 -133.37 -3.56776 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0346224 0.030336 150 54 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.82 vpr 63.18 MiB 0.06 6904 -1 -1 1 0.03 -1 -1 30220 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 1.37 942 16081 4088 11306 687 63.2 MiB 0.26 0.01 4.1996 -144.758 -4.1996 4.1996 0.79 0.000767179 0.000709177 0.06875 0.0635942 32 3838 45 6.87369e+06 293451 586450. 2029.24 2.20 0.22167 0.195294 25474 144626 -1 2552 22 2101 3718 392075 88502 4.3856 4.3856 -161.51 -4.3856 0 0 744469. 2576.02 0.24 0.13 0.15 -1 -1 0.24 0.0337162 0.029621 147 -1 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.40 vpr 63.39 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30324 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 3.52 1066 20980 7180 11264 2536 63.4 MiB 0.31 0.00 3.54349 -125.696 -3.54349 3.54349 0.81 0.000853684 0.000788999 0.07993 0.0737297 34 2382 19 6.87369e+06 503058 618332. 2139.56 1.68 0.24402 0.214929 25762 151098 -1 2059 20 1553 2377 204278 44081 3.11056 3.11056 -122.373 -3.11056 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0328288 0.0287609 148 81 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.10 vpr 63.11 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30208 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.6 MiB 3.46 1032 19142 4987 12020 2135 63.1 MiB 0.29 0.01 3.61805 -127.505 -3.61805 3.61805 0.78 0.00083515 0.000771155 0.0687355 0.0635183 28 2612 28 6.87369e+06 544980 531479. 1839.03 1.45 0.176803 0.156821 24610 126494 -1 2209 23 1405 2576 228128 54501 3.45816 3.45816 -130.308 -3.45816 0 0 648988. 2245.63 0.23 0.06 0.13 -1 -1 0.23 0.0183169 0.0161124 152 58 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.09 vpr 63.30 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30268 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.4 MiB 2.67 1111 18648 5184 11229 2235 63.3 MiB 0.28 0.01 3.58025 -126.995 -3.58025 3.58025 0.78 0.000839311 0.000775295 0.0672134 0.0619518 32 2996 26 6.87369e+06 558954 586450. 2029.24 1.11 0.172451 0.152807 25474 144626 -1 2349 20 1782 2831 316070 65946 3.04626 3.04626 -125.689 -3.04626 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0327541 0.0286421 156 61 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.25 vpr 63.42 MiB 0.08 6940 -1 -1 1 0.03 -1 -1 30396 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.6 MiB 0.78 973 12876 3455 7707 1714 63.4 MiB 0.17 0.00 4.3249 -147.802 -4.3249 4.3249 0.81 0.000811084 0.000750731 0.0463834 0.0429295 34 2955 22 6.87369e+06 544980 618332. 2139.56 2.20 0.204038 0.178738 25762 151098 -1 2334 22 1977 3105 248054 59141 3.8564 3.8564 -150.074 -3.8564 0 0 787024. 2723.27 0.25 0.10 0.16 -1 -1 0.25 0.0338085 0.0296469 156 21 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.80 vpr 63.50 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30552 -1 -1 41 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.5 MiB 2.61 1087 15172 3966 9854 1352 63.5 MiB 0.24 0.01 4.1996 -143.047 -4.1996 4.1996 0.79 0.000838751 0.000775688 0.0543582 0.0501488 34 2589 26 6.87369e+06 572927 618332. 2139.56 1.98 0.223811 0.19599 25762 151098 -1 2318 20 1991 3188 306028 64645 3.9114 3.9114 -149.692 -3.9114 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0323887 0.02842 157 50 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.11 vpr 63.48 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30300 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65008 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 24.8 MiB 3.69 988 19356 5396 10906 3054 63.5 MiB 0.32 0.01 4.16785 -135.645 -4.16785 4.16785 0.78 0.000890424 0.000822595 0.0781905 0.0721923 30 2560 23 6.87369e+06 517032 556674. 1926.21 1.19 0.185387 0.164338 25186 138497 -1 2036 20 1385 2303 176840 37835 3.7104 3.7104 -131.155 -3.7104 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0343126 0.0299663 150 110 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.98 vpr 63.39 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30288 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.69 1079 15709 4633 9421 1655 63.4 MiB 0.28 0.00 4.13359 -143.515 -4.13359 4.13359 0.78 0.000874949 0.000805649 0.0767064 0.0709681 34 3091 27 6.87369e+06 293451 618332. 2139.56 1.91 0.254917 0.224097 25762 151098 -1 2493 23 2106 3878 346569 76160 3.808 3.808 -146.549 -3.808 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0393719 0.0344522 145 86 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.87 vpr 63.07 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 30420 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.2 MiB 0.86 919 15426 4260 9754 1412 63.1 MiB 0.21 0.00 3.51475 -125.544 -3.51475 3.51475 0.79 0.000694867 0.00064294 0.0512886 0.0473499 32 2502 23 6.87369e+06 447163 586450. 2029.24 1.02 0.135208 0.119603 25474 144626 -1 2028 21 1419 2100 231013 47999 2.89626 2.89626 -123.549 -2.89626 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.028287 0.0247207 121 20 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.21 vpr 62.98 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 3.01 953 12980 4579 7047 1354 63.0 MiB 0.20 0.00 3.6884 -132.193 -3.6884 3.6884 0.79 0.000774595 0.000715697 0.060519 0.0559411 32 2514 23 6.87369e+06 223581 586450. 2029.24 1.05 0.152208 0.134827 25474 144626 -1 2183 26 1558 2421 278355 57411 3.18556 3.18556 -133.388 -3.18556 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.0365955 0.0318383 112 91 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.63 vpr 63.31 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30644 -1 -1 44 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.8 MiB 1.87 1419 16556 4403 10830 1323 63.3 MiB 0.30 0.01 4.99284 -170.715 -4.99284 4.99284 0.79 0.000974181 0.00090244 0.0665862 0.0615936 28 3994 50 6.87369e+06 614849 531479. 1839.03 2.48 0.222526 0.196204 24610 126494 -1 3262 28 3071 5173 640962 159943 5.15175 5.15175 -184.104 -5.15175 0 0 648988. 2245.63 0.21 0.20 0.13 -1 -1 0.21 0.0488799 0.0426792 189 53 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.94 vpr 63.24 MiB 0.08 6980 -1 -1 1 0.03 -1 -1 30304 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.4 MiB 2.48 1069 15831 4027 10006 1798 63.2 MiB 0.25 0.01 3.59121 -127.943 -3.59121 3.59121 0.78 0.000798728 0.000737719 0.0580907 0.053558 26 2789 27 6.87369e+06 489084 503264. 1741.40 1.25 0.159123 0.14082 24322 120374 -1 2436 34 2265 3380 289937 62279 3.25476 3.25476 -133.033 -3.25476 0 0 618332. 2139.56 0.20 0.13 0.12 -1 -1 0.20 0.0481519 0.0419267 150 31 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.69 vpr 62.87 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30160 -1 -1 31 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 23.9 MiB 0.66 823 15633 5297 7776 2560 62.9 MiB 0.20 0.00 3.51601 -116.196 -3.51601 3.51601 0.79 0.000669968 0.000618625 0.0520831 0.04804 28 2073 25 6.87369e+06 433189 531479. 1839.03 1.07 0.135965 0.120159 24610 126494 -1 1792 21 1273 1941 190005 41190 2.94296 2.94296 -117.741 -2.94296 0 0 648988. 2245.63 0.21 0.07 0.13 -1 -1 0.21 0.0201718 0.0175924 116 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 12.68 vpr 63.62 MiB 0.05 7344 -1 -1 1 0.03 -1 -1 30764 -1 -1 47 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 5.37 1193 22455 6528 13018 2909 63.6 MiB 0.36 0.01 4.91264 -167.151 -4.91264 4.91264 0.79 0.00103364 0.000955752 0.0903006 0.0834325 34 3197 25 6.87369e+06 656770 618332. 2139.56 3.87 0.364304 0.319117 25762 151098 -1 2491 18 2150 3394 330141 68182 4.40195 4.40195 -166.047 -4.40195 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0365013 0.0320396 190 109 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 7.61 vpr 63.35 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30328 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.5 MiB 2.86 975 19868 5843 10688 3337 63.4 MiB 0.26 0.00 4.28153 -144.516 -4.28153 4.28153 0.79 0.00080733 0.000746367 0.0684622 0.0632697 32 2856 45 6.87369e+06 558954 586450. 2029.24 1.47 0.196713 0.174218 25474 144626 -1 2042 20 1784 2638 286672 58798 3.692 3.692 -144.147 -3.692 0 0 744469. 2576.02 0.29 0.11 0.13 -1 -1 0.29 0.0335765 0.029701 156 31 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.75 vpr 62.71 MiB 0.08 6800 -1 -1 1 0.03 -1 -1 30232 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.1 MiB 0.61 857 11197 2857 7409 931 62.7 MiB 0.17 0.00 3.64005 -128.736 -3.64005 3.64005 0.78 0.000670724 0.000620277 0.0359144 0.0332115 30 2178 23 6.87369e+06 461137 556674. 1926.21 1.04 0.117319 0.103315 25186 138497 -1 1775 21 1230 1970 151074 32661 2.83966 2.83966 -121.177 -2.83966 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0270109 0.0235786 123 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.39 vpr 63.70 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30844 -1 -1 45 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.9 MiB 2.38 1249 21169 5887 12519 2763 63.7 MiB 0.34 0.01 4.9297 -168.732 -4.9297 4.9297 0.79 0.000934147 0.000865445 0.0788498 0.0729769 28 3386 22 6.87369e+06 628823 531479. 1839.03 1.53 0.190696 0.169564 24610 126494 -1 2946 22 2710 4692 480536 102974 4.96875 4.96875 -181.051 -4.96875 0 0 648988. 2245.63 0.21 0.15 0.13 -1 -1 0.21 0.0389448 0.0340133 189 26 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.63 vpr 62.56 MiB 0.05 6748 -1 -1 1 0.03 -1 -1 30100 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.87 806 12292 2857 8871 564 62.6 MiB 0.18 0.00 3.7764 -134.344 -3.7764 3.7764 0.81 0.000661989 0.000612207 0.0495749 0.0458588 34 2164 21 6.87369e+06 223581 618332. 2139.56 1.60 0.180052 0.157682 25762 151098 -1 1866 19 1444 2279 206960 44293 3.24861 3.24861 -134.145 -3.24861 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0252074 0.0221025 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.28 vpr 62.69 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 29988 -1 -1 33 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 2.15 719 10463 2628 6946 889 62.7 MiB 0.16 0.00 3.56001 -114.458 -3.56001 3.56001 0.79 0.000670882 0.000620443 0.0347019 0.0320417 28 1981 24 6.87369e+06 461137 531479. 1839.03 1.06 0.117445 0.103023 24610 126494 -1 1811 20 1338 2196 193261 43933 3.04926 3.04926 -120.3 -3.04926 0 0 648988. 2245.63 0.22 0.08 0.13 -1 -1 0.22 0.026504 0.0231612 118 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.03 vpr 63.37 MiB 0.03 7200 -1 -1 1 0.03 -1 -1 30228 -1 -1 35 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64892 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 3.13 1008 14550 3923 8443 2184 63.4 MiB 0.22 0.01 3.54707 -114.227 -3.54707 3.54707 0.79 0.000803738 0.000742447 0.0560648 0.0518263 34 2477 22 6.87369e+06 489084 618332. 2139.56 1.84 0.214641 0.188196 25762 151098 -1 2041 18 1492 2496 220761 49447 3.06026 3.06026 -116.465 -3.06026 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0288728 0.0253415 141 81 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.17 vpr 63.23 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30512 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 2.12 854 12175 2685 7576 1914 63.2 MiB 0.17 0.00 4.2388 -146.065 -4.2388 4.2388 0.80 0.000787184 0.000718883 0.0586785 0.0541431 34 2701 21 6.87369e+06 293451 618332. 2139.56 1.87 0.223511 0.196154 25762 151098 -1 2095 22 2113 3203 298788 67400 3.8814 3.8814 -153.436 -3.8814 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0353522 0.0309895 147 53 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 8.25 vpr 63.34 MiB 0.05 7148 -1 -1 1 0.04 -1 -1 30488 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.4 MiB 3.66 1100 18901 5336 11603 1962 63.3 MiB 0.29 0.01 4.27679 -150.534 -4.27679 4.27679 0.80 0.000850165 0.000777213 0.070565 0.0650517 30 2755 22 6.87369e+06 517032 556674. 1926.21 1.18 0.170535 0.151395 25186 138497 -1 2296 22 1746 2869 238082 49702 3.7954 3.7954 -147.423 -3.7954 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.0363353 0.0319751 155 55 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.26 vpr 62.99 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30392 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 3.51 825 17191 6233 8742 2216 63.0 MiB 0.23 0.00 3.60705 -126.657 -3.60705 3.60705 0.79 0.00068532 0.000620372 0.0603835 0.0556495 36 2015 20 6.87369e+06 461137 648988. 2245.63 1.68 0.201458 0.176517 26050 158493 -1 1687 20 1364 2004 159771 36079 2.98526 2.98526 -118.844 -2.98526 0 0 828058. 2865.25 0.26 0.08 0.14 -1 -1 0.26 0.0283598 0.024796 123 55 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.63 vpr 62.95 MiB 0.04 7028 -1 -1 1 0.04 -1 -1 30260 -1 -1 18 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 3.96 738 4456 873 3135 448 62.9 MiB 0.09 0.00 3.6994 -119.902 -3.6994 3.6994 0.79 0.000742527 0.00068676 0.0211794 0.0196112 34 2166 19 6.87369e+06 251529 618332. 2139.56 1.67 0.162508 0.140541 25762 151098 -1 1843 20 1296 2275 198451 45228 2.92101 2.92101 -115.635 -2.92101 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.0284722 0.0248526 108 82 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 10.38 vpr 63.12 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.3 MiB 3.16 914 16740 4391 9932 2417 63.1 MiB 0.26 0.01 3.59605 -116.379 -3.59605 3.59605 0.98 0.000785057 0.000725163 0.0627744 0.0580153 36 1934 22 6.87369e+06 475111 648988. 2245.63 3.66 0.275832 0.241009 26050 158493 -1 1649 20 1161 1858 128532 30053 2.71266 2.71266 -105.41 -2.71266 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0306635 0.02689 143 52 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 8.43 vpr 63.02 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30308 -1 -1 35 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.3 MiB 1.50 905 12191 3346 7959 886 63.0 MiB 0.18 0.01 4.19891 -125.962 -4.19891 4.19891 0.95 0.000968729 0.000896219 0.0327231 0.0299323 28 2288 22 6.87369e+06 489084 531479. 1839.03 3.46 0.195735 0.169628 24610 126494 -1 2126 20 1575 2558 233066 49556 3.9657 3.9657 -131.64 -3.9657 0 0 648988. 2245.63 0.26 0.09 0.11 -1 -1 0.26 0.0285015 0.0249839 139 20 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.81 vpr 62.94 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.1 MiB 2.34 882 11432 3518 6484 1430 62.9 MiB 0.19 0.00 3.7324 -126.153 -3.7324 3.7324 0.81 0.000702149 0.000648739 0.0529406 0.0489607 30 2122 21 6.87369e+06 251529 556674. 1926.21 1.03 0.136448 0.120673 25186 138497 -1 1811 19 1105 1746 155853 31047 2.82871 2.82871 -117.627 -2.82871 0 0 706193. 2443.58 0.30 0.08 0.14 -1 -1 0.30 0.0283507 0.0249319 110 58 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.70 vpr 63.03 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30380 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.2 MiB 3.15 904 14256 4718 7453 2085 63.0 MiB 0.21 0.00 3.6144 -123.374 -3.6144 3.6144 0.79 0.000751389 0.000693439 0.0635171 0.0586745 34 2187 23 6.87369e+06 237555 618332. 2139.56 1.54 0.2128 0.186736 25762 151098 -1 1905 19 1117 1836 170529 36037 2.94131 2.94131 -121.588 -2.94131 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0279882 0.0245038 110 88 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.86 vpr 62.93 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30324 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.80 962 16804 5215 8614 2975 62.9 MiB 0.26 0.01 4.24789 -140.354 -4.24789 4.24789 0.89 0.00075658 0.000709884 0.0579297 0.0537203 28 3244 22 6.87369e+06 517032 531479. 1839.03 1.84 0.151344 0.134303 24610 126494 -1 2364 23 2045 3247 311101 68900 4.013 4.013 -147.381 -4.013 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0328338 0.0287448 151 -1 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.31 vpr 63.24 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30612 -1 -1 38 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.4 MiB 3.76 1093 19380 5712 11198 2470 63.2 MiB 0.29 0.01 4.29189 -149.386 -4.29189 4.29189 0.80 0.000595554 0.000545113 0.0711142 0.0656616 28 3094 23 6.87369e+06 531006 531479. 1839.03 1.38 0.172626 0.153542 24610 126494 -1 2636 21 2017 3493 348626 74415 4.154 4.154 -157.069 -4.154 0 0 648988. 2245.63 0.21 0.12 0.13 -1 -1 0.21 0.0339798 0.029773 156 57 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.83 vpr 63.29 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30240 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 3.49 1146 17256 4889 10338 2029 63.3 MiB 0.27 0.01 4.30289 -150.744 -4.30289 4.30289 0.83 0.000852773 0.000787452 0.0646052 0.0600868 30 2874 20 6.87369e+06 517032 556674. 1926.21 1.20 0.163987 0.145942 25186 138497 -1 2267 22 1603 2677 187101 42313 3.7751 3.7751 -150.357 -3.7751 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.0358432 0.0314225 155 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 7.63 vpr 63.54 MiB 0.02 7112 -1 -1 1 0.06 -1 -1 30324 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.8 MiB 2.88 1114 16491 4519 10066 1906 63.5 MiB 0.25 0.01 4.16249 -142.489 -4.16249 4.16249 0.80 0.000836354 0.000773014 0.0598086 0.0551835 28 3091 32 6.87369e+06 544980 531479. 1839.03 1.63 0.170742 0.151152 24610 126494 -1 2653 21 1907 3356 304380 67039 3.8674 3.8674 -148.199 -3.8674 0 0 648988. 2245.63 0.21 0.13 0.13 -1 -1 0.21 0.037962 0.0332169 152 62 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 6.55 vpr 62.71 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30236 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 2.34 746 10406 2932 6420 1054 62.7 MiB 0.16 0.00 3.7324 -121.378 -3.7324 3.7324 0.79 0.000649126 0.000597934 0.0417131 0.0385861 32 2228 50 6.87369e+06 265503 586450. 2029.24 1.21 0.150275 0.131739 25474 144626 -1 1896 22 1397 2294 239488 52405 3.10126 3.10126 -123.581 -3.10126 0 0 744469. 2576.02 0.24 0.09 0.13 -1 -1 0.24 0.0251918 0.0220438 110 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.03 vpr 63.27 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30232 -1 -1 23 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.5 MiB 3.01 980 15709 4819 8970 1920 63.3 MiB 0.24 0.00 4.23999 -140.261 -4.23999 4.23999 0.79 0.000803822 0.000742972 0.0700887 0.0648234 30 2267 20 6.87369e+06 321398 556674. 1926.21 1.07 0.1657 0.147421 25186 138497 -1 1881 20 1446 2277 189047 37373 3.4678 3.4678 -134.471 -3.4678 0 0 706193. 2443.58 0.23 0.07 0.12 -1 -1 0.23 0.022567 0.0198744 140 58 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 12.00 vpr 63.44 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30740 -1 -1 43 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.7 MiB 5.05 1155 15540 3963 10188 1389 63.4 MiB 0.26 0.01 4.23385 -146.284 -4.23385 4.23385 0.79 0.000941958 0.000870891 0.0607074 0.0560732 34 2916 22 6.87369e+06 600875 618332. 2139.56 3.74 0.282893 0.246152 25762 151098 -1 2355 20 1764 2860 261155 55142 3.7781 3.7781 -148.019 -3.7781 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0357635 0.0312703 158 106 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 5.91 vpr 63.31 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30404 -1 -1 33 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64832 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.4 MiB 1.29 1029 18273 5989 9373 2911 63.3 MiB 0.29 0.00 4.26989 -143.564 -4.26989 4.26989 0.80 0.000852752 0.000788311 0.0743595 0.0686876 28 2792 23 6.87369e+06 461137 531479. 1839.03 1.39 0.178982 0.159074 24610 126494 -1 2386 20 2006 3301 288453 62127 4.2433 4.2433 -152.042 -4.2433 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0338644 0.0297805 149 79 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.65 vpr 63.22 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30336 -1 -1 32 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64740 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.18 942 16921 5030 8706 3185 63.2 MiB 0.27 0.01 3.63595 -118.056 -3.63595 3.63595 0.80 0.000828794 0.000758766 0.0677808 0.0624833 30 2311 22 6.87369e+06 447163 556674. 1926.21 1.18 0.170021 0.150462 25186 138497 -1 1761 20 1271 2086 143021 32075 2.83166 2.83166 -109.296 -2.83166 0 0 706193. 2443.58 0.29 0.07 0.14 -1 -1 0.29 0.02391 0.021063 141 83 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 10.11 vpr 63.38 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30472 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 4.24 1087 14593 4252 9147 1194 63.4 MiB 0.26 0.01 4.1996 -148.308 -4.1996 4.1996 0.82 0.000855453 0.000790315 0.0699527 0.0647264 34 3128 22 6.87369e+06 293451 618332. 2139.56 2.27 0.238793 0.210176 25762 151098 -1 2683 21 2102 3613 377856 80987 4.1823 4.1823 -153.613 -4.1823 0 0 787024. 2723.27 0.30 0.13 0.15 -1 -1 0.30 0.0348337 0.0305936 147 58 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.40 vpr 63.12 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30192 -1 -1 36 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.4 MiB 2.14 943 12751 3363 8405 983 63.1 MiB 0.20 0.01 3.54105 -112.818 -3.54105 3.54105 0.79 0.000794006 0.000730716 0.0497703 0.0459069 26 2537 25 6.87369e+06 503058 503264. 1741.40 1.17 0.134205 0.118551 24322 120374 -1 2326 21 1581 2537 280617 59933 3.31886 3.31886 -119.89 -3.31886 0 0 618332. 2139.56 0.27 0.09 0.13 -1 -1 0.27 0.0264838 0.0233181 138 81 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.41 vpr 62.52 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 0.73 862 12292 3174 7904 1214 62.5 MiB 0.18 0.00 3.7104 -131.958 -3.7104 3.7104 0.80 0.000662195 0.000612113 0.0498836 0.0461767 34 2300 22 6.87369e+06 223581 618332. 2139.56 1.60 0.18092 0.158534 25762 151098 -1 1995 22 1621 2455 234261 50963 3.06026 3.06026 -127.39 -3.06026 0 0 787024. 2723.27 0.25 0.09 0.16 -1 -1 0.25 0.028304 0.0247144 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.22 vpr 63.22 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.4 MiB 4.57 1088 19841 5443 12522 1876 63.2 MiB 0.31 0.01 4.3249 -149.309 -4.3249 4.3249 0.85 0.000850968 0.000786636 0.0748715 0.0691651 32 2986 28 6.87369e+06 517032 586450. 2029.24 1.23 0.188722 0.167851 25474 144626 -1 2365 22 1941 3015 309765 68413 3.7811 3.7811 -149.424 -3.7811 0 0 744469. 2576.02 0.32 0.11 0.15 -1 -1 0.32 0.029918 0.0263475 155 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.90 vpr 63.24 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 3.95 1071 15151 5130 8107 1914 63.2 MiB 0.25 0.00 4.2388 -148.068 -4.2388 4.2388 0.79 0.00084537 0.00077997 0.0711195 0.0657031 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.80 0.239779 0.210752 26050 158493 -1 2163 21 2029 3311 262893 58163 3.9224 3.9224 -150.751 -3.9224 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0306286 0.0270776 147 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.11 vpr 63.16 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30236 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.3 MiB 3.45 885 16708 4981 9424 2303 63.2 MiB 0.21 0.00 3.50501 -121.209 -3.50501 3.50501 0.78 0.000690711 0.000637086 0.0562931 0.0518861 34 2077 21 6.87369e+06 419215 618332. 2139.56 1.56 0.190574 0.166814 25762 151098 -1 1809 21 1176 1935 187866 40061 2.80666 2.80666 -115.637 -2.80666 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.027646 0.0241144 112 47 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.13 vpr 62.57 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30240 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.88 723 6960 1528 4773 659 62.6 MiB 0.12 0.00 3.7434 -125.643 -3.7434 3.7434 0.87 0.00065232 0.000603274 0.028622 0.0265285 32 2169 22 6.87369e+06 237555 586450. 2029.24 1.02 0.10676 0.0937192 25474 144626 -1 1844 19 1245 1939 174718 38152 3.12161 3.12161 -123.219 -3.12161 0 0 744469. 2576.02 0.28 0.08 0.16 -1 -1 0.28 0.0247188 0.0216618 112 -1 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.99 vpr 63.18 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30092 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 2.78 1023 18795 5447 10788 2560 63.2 MiB 0.27 0.01 4.30799 -144.78 -4.30799 4.30799 0.81 0.000799553 0.000737528 0.0693252 0.0639092 28 2593 22 6.87369e+06 489084 531479. 1839.03 1.05 0.166131 0.147547 24610 126494 -1 2325 19 1561 2324 213063 45266 3.9849 3.9849 -144.228 -3.9849 0 0 648988. 2245.63 0.22 0.09 0.13 -1 -1 0.22 0.0300305 0.0263511 144 56 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.66 vpr 63.32 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30260 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.5 MiB 1.11 1094 18745 5603 10775 2367 63.3 MiB 0.28 0.01 4.21185 -141.009 -4.21185 4.21185 0.84 0.000837725 0.000773283 0.0734501 0.0677876 28 2800 35 6.87369e+06 461137 531479. 1839.03 1.31 0.190692 0.168947 24610 126494 -1 2381 19 1560 2367 223774 47687 4.101 4.101 -150.64 -4.101 0 0 648988. 2245.63 0.28 0.09 0.12 -1 -1 0.28 0.0275414 0.0244234 142 81 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 7.81 vpr 63.49 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30368 -1 -1 41 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.8 MiB 0.87 1329 17642 5677 9392 2573 63.5 MiB 0.33 0.01 4.98719 -165.596 -4.98719 4.98719 0.86 0.00086876 0.000802962 0.065484 0.0604954 34 3780 46 6.87369e+06 572927 618332. 2139.56 3.50 0.273339 0.240115 25762 151098 -1 2789 24 2167 3582 392838 77584 4.73185 4.73185 -164.804 -4.73185 0 0 787024. 2723.27 0.33 0.13 0.15 -1 -1 0.33 0.0334117 0.0296096 183 -1 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.17 vpr 63.28 MiB 0.03 7036 -1 -1 1 0.03 -1 -1 30404 -1 -1 32 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64796 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.5 MiB 2.45 1005 13300 3782 8501 1017 63.3 MiB 0.21 0.00 3.59605 -120.715 -3.59605 3.59605 0.79 0.000782891 0.000722826 0.051558 0.047528 34 2301 19 6.87369e+06 447163 618332. 2139.56 1.60 0.201448 0.1764 25762 151098 -1 1965 19 1677 2647 218762 48155 2.81766 2.81766 -114.632 -2.81766 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0304552 0.0267646 141 47 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.68 vpr 62.66 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30432 -1 -1 20 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.2 MiB 0.71 735 12247 4571 5926 1750 62.7 MiB 0.15 0.00 3.6866 -109.378 -3.6866 3.6866 0.80 0.000608564 0.00056109 0.0423449 0.0390171 32 1716 21 6.87369e+06 279477 586450. 2029.24 0.98 0.116076 0.102281 25474 144626 -1 1503 18 1099 1582 163671 34178 2.93831 2.93831 -103.745 -2.93831 0 0 744469. 2576.02 0.27 0.07 0.15 -1 -1 0.27 0.0225819 0.0197456 102 26 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 7.38 vpr 63.48 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30440 -1 -1 42 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.2 MiB 2.38 1290 11856 2585 8478 793 63.5 MiB 0.26 0.01 4.1886 -144.868 -4.1886 4.1886 0.85 0.000995179 0.000919335 0.0547802 0.0505531 30 3532 24 6.87369e+06 586901 556674. 1926.21 1.76 0.179018 0.157863 25186 138497 -1 2683 18 1789 3215 259275 53272 3.6951 3.6951 -143.92 -3.6951 0 0 706193. 2443.58 0.23 0.10 0.12 -1 -1 0.23 0.0351121 0.0308839 184 85 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.74 vpr 63.55 MiB 0.03 7268 -1 -1 1 0.04 -1 -1 30468 -1 -1 23 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65076 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.7 MiB 3.16 874 9914 2276 6234 1404 63.6 MiB 0.16 0.00 4.91157 -150.663 -4.91157 4.91157 0.80 0.000910126 0.000842205 0.0500358 0.0462995 34 2599 26 6.87369e+06 321398 618332. 2139.56 2.37 0.237136 0.206868 25762 151098 -1 1912 18 1301 1955 158035 37634 3.97725 3.97725 -145.293 -3.97725 0 0 787024. 2723.27 0.25 0.08 0.17 -1 -1 0.25 0.0326303 0.0286381 144 105 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.80 vpr 62.81 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30208 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.07 802 14356 5267 6628 2461 62.8 MiB 0.21 0.00 4.598 -126.496 -4.598 4.598 0.80 0.000740719 0.000683508 0.0639981 0.0590537 34 2120 26 6.87369e+06 223581 618332. 2139.56 1.59 0.214452 0.187923 25762 151098 -1 1730 13 755 1133 101933 22903 3.18321 3.18321 -119.523 -3.18321 0 0 787024. 2723.27 0.25 0.06 0.17 -1 -1 0.25 0.0213599 0.0188837 107 86 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.55 vpr 63.22 MiB 0.03 7004 -1 -1 1 0.04 -1 -1 30232 -1 -1 34 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 0.94 1114 14723 4652 8968 1103 63.2 MiB 0.24 0.01 4.1955 -143.003 -4.1955 4.1955 0.79 0.000789777 0.000730177 0.054063 0.0499273 28 2958 29 6.87369e+06 475111 531479. 1839.03 1.56 0.160287 0.142016 24610 126494 -1 2562 20 1646 2372 254330 54262 3.8876 3.8876 -148.132 -3.8876 0 0 648988. 2245.63 0.21 0.10 0.13 -1 -1 0.21 0.0311671 0.0273352 147 31 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.46 vpr 63.57 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30616 -1 -1 40 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65092 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.8 MiB 1.96 1006 19865 6118 9930 3817 63.6 MiB 0.32 0.01 4.28153 -140.004 -4.28153 4.28153 0.79 0.00103074 0.000944435 0.0733449 0.0675331 34 2871 25 6.87369e+06 558954 618332. 2139.56 2.15 0.264768 0.232301 25762 151098 -1 2251 21 2065 3079 248272 57609 4.2353 4.2353 -148.418 -4.2353 0 0 787024. 2723.27 0.25 0.12 0.17 -1 -1 0.25 0.0410562 0.036198 176 50 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.81 vpr 63.27 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30412 -1 -1 36 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.5 MiB 1.82 1085 17873 5357 10009 2507 63.3 MiB 0.27 0.01 3.50639 -115.998 -3.50639 3.50639 0.79 0.000777667 0.000718512 0.0649544 0.0599083 34 2648 21 6.87369e+06 503058 618332. 2139.56 1.81 0.21745 0.190995 25762 151098 -1 2185 20 1570 2707 253045 54396 2.91296 2.91296 -111.322 -2.91296 0 0 787024. 2723.27 0.25 0.10 0.16 -1 -1 0.25 0.0304508 0.0266992 144 50 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 10.58 vpr 63.35 MiB 0.02 7064 -1 -1 1 0.04 -1 -1 30360 -1 -1 46 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.61 1127 20887 5685 13197 2005 63.3 MiB 0.32 0.01 4.26133 -148.826 -4.26133 4.26133 0.81 0.000846996 0.000782415 0.0701624 0.0647383 26 3226 36 6.87369e+06 642796 503264. 1741.40 4.76 0.295956 0.259167 24322 120374 -1 2725 23 2142 3609 374040 77757 4.3109 4.3109 -165.452 -4.3109 0 0 618332. 2139.56 0.20 0.13 0.12 -1 -1 0.20 0.036379 0.0318016 160 61 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 9.38 vpr 63.47 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30476 -1 -1 42 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.6 MiB 3.16 1115 19606 5308 11826 2472 63.5 MiB 0.27 0.01 3.52575 -126.542 -3.52575 3.52575 0.82 0.000644869 0.000587182 0.0623143 0.056876 28 2688 21 6.87369e+06 586901 531479. 1839.03 3.05 0.277568 0.241946 24610 126494 -1 2475 23 1832 2907 280173 57728 3.04926 3.04926 -129.512 -3.04926 0 0 648988. 2245.63 0.22 0.11 0.13 -1 -1 0.22 0.0363585 0.0316983 157 61 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.19 vpr 62.57 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30328 -1 -1 19 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64076 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.1 MiB 1.59 669 12808 5105 6141 1562 62.6 MiB 0.17 0.00 3.73366 -117.212 -3.73366 3.73366 0.79 0.000649659 0.000600665 0.0508944 0.0470932 34 1739 20 6.87369e+06 265503 618332. 2139.56 1.50 0.178227 0.156289 25762 151098 -1 1474 19 1114 1626 149957 30822 3.14961 3.14961 -114.451 -3.14961 0 0 787024. 2723.27 0.35 0.06 0.15 -1 -1 0.35 0.0209973 0.0184838 107 28 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.44 vpr 63.00 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 2.48 808 7256 1653 5365 238 63.0 MiB 0.13 0.00 4.2805 -117.484 -4.2805 4.2805 0.87 0.000750232 0.000692527 0.0292309 0.0268172 34 2091 23 6.87369e+06 237555 618332. 2139.56 1.78 0.156519 0.136444 25762 151098 -1 1680 15 735 1039 89992 20316 2.95265 2.95265 -114.233 -2.95265 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0223348 0.0196458 102 79 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 8.60 vpr 63.23 MiB 0.04 7048 -1 -1 1 0.05 -1 -1 30268 -1 -1 39 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.4 MiB 1.67 1136 19618 6151 11073 2394 63.2 MiB 0.34 0.01 4.1886 -141.394 -4.1886 4.1886 0.79 0.000795843 0.000736148 0.0723529 0.0669201 34 2703 21 6.87369e+06 544980 618332. 2139.56 3.57 0.303037 0.265343 25762 151098 -1 2269 19 1662 2690 279336 55393 3.6624 3.6624 -140.179 -3.6624 0 0 787024. 2723.27 0.34 0.10 0.17 -1 -1 0.34 0.0300925 0.026455 152 29 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.52 vpr 62.59 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30264 -1 -1 32 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64088 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 24.0 MiB 3.10 794 17103 5256 9538 2309 62.6 MiB 0.16 0.00 3.45975 -106.144 -3.45975 3.45975 0.78 0.000391163 0.000355583 0.0338128 0.0307573 24 2388 42 6.87369e+06 447163 470940. 1629.55 1.49 0.115287 0.100842 24034 113901 -1 1895 24 1467 2302 282666 58727 3.29516 3.29516 -114.317 -3.29516 0 0 586450. 2029.24 0.23 0.11 0.12 -1 -1 0.23 0.0294293 0.0257252 108 48 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.77 vpr 62.90 MiB 0.02 6752 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.15 809 12464 3077 8852 535 62.9 MiB 0.19 0.00 3.7104 -131.395 -3.7104 3.7104 0.79 0.000699567 0.000647063 0.0531448 0.0491644 34 2325 23 6.87369e+06 223581 618332. 2139.56 1.59 0.191998 0.168374 25762 151098 -1 1861 22 1487 2386 206389 46555 3.18261 3.18261 -130.176 -3.18261 0 0 787024. 2723.27 0.28 0.09 0.14 -1 -1 0.28 0.029895 0.0261522 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.11 vpr 63.27 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 30336 -1 -1 35 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64788 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.5 MiB 2.36 1003 13598 3664 8482 1452 63.3 MiB 0.21 0.00 3.61625 -124.489 -3.61625 3.61625 0.80 0.000939382 0.000869862 0.0531927 0.049058 34 2238 22 6.87369e+06 489084 618332. 2139.56 1.61 0.213381 0.187163 25762 151098 -1 1911 22 1954 2949 261513 54578 2.83496 2.83496 -116.926 -2.83496 0 0 787024. 2723.27 0.26 0.10 0.15 -1 -1 0.26 0.0345425 0.0303335 146 60 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.00 vpr 62.67 MiB 0.05 6884 -1 -1 1 0.04 -1 -1 30204 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 23.9 MiB 2.74 698 11402 3727 5924 1751 62.7 MiB 0.16 0.00 3.33623 -109.833 -3.33623 3.33623 0.79 0.00067562 0.000623867 0.0476559 0.0440628 26 2208 31 6.87369e+06 223581 503264. 1741.40 1.14 0.139146 0.122319 24322 120374 -1 1844 19 1180 1824 173955 39534 3.31721 3.31721 -122.86 -3.31721 0 0 618332. 2139.56 0.21 0.08 0.13 -1 -1 0.21 0.0253716 0.0221694 103 49 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.45 vpr 63.32 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30492 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.6 MiB 3.07 1019 17256 4700 9815 2741 63.3 MiB 0.24 0.00 3.59195 -122.625 -3.59195 3.59195 0.80 0.000802506 0.000741516 0.0620027 0.0573127 32 2653 23 6.87369e+06 517032 586450. 2029.24 1.05 0.159608 0.141513 25474 144626 -1 2197 24 1481 2462 240513 52081 3.06356 3.06356 -120.102 -3.06356 0 0 744469. 2576.02 0.24 0.10 0.15 -1 -1 0.24 0.0360417 0.0314715 143 56 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 7.48 vpr 63.43 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 30344 -1 -1 39 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64952 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 3.33 929 10336 2368 6764 1204 63.4 MiB 0.18 0.01 3.59605 -120.102 -3.59605 3.59605 0.79 0.00087574 0.000808595 0.0410994 0.0380354 32 2497 23 6.87369e+06 544980 586450. 2029.24 1.08 0.146139 0.12888 25474 144626 -1 2023 23 2079 3051 321684 70271 3.07756 3.07756 -118.737 -3.07756 0 0 744469. 2576.02 0.25 0.10 0.14 -1 -1 0.25 0.0296043 0.0261633 151 88 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.42 vpr 62.88 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 30164 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.0 MiB 2.44 812 13206 3975 7418 1813 62.9 MiB 0.16 0.00 3.26897 -114.681 -3.26897 3.26897 1.01 0.000453866 0.000416127 0.0390878 0.0357078 34 2125 22 6.87369e+06 237555 618332. 2139.56 1.66 0.161192 0.140252 25762 151098 -1 1871 17 1123 1746 178839 37759 2.82101 2.82101 -115.669 -2.82101 0 0 787024. 2723.27 0.33 0.07 0.15 -1 -1 0.33 0.0231803 0.0206589 110 54 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.41 vpr 63.08 MiB 0.02 6972 -1 -1 1 0.04 -1 -1 30000 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.2 MiB 3.00 923 10056 2840 6443 773 63.1 MiB 0.13 0.00 3.6884 -128.712 -3.6884 3.6884 0.99 0.000445466 0.000407055 0.0292819 0.0267714 32 2557 20 6.87369e+06 223581 586450. 2029.24 1.10 0.122117 0.107275 25474 144626 -1 2096 20 1373 2246 235384 49493 3.16356 3.16356 -127.756 -3.16356 0 0 744469. 2576.02 0.32 0.08 0.16 -1 -1 0.32 0.0241931 0.0213096 112 60 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.52 vpr 63.26 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30648 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.7 MiB 2.89 1032 14988 3846 9829 1313 63.3 MiB 0.23 0.01 4.29009 -147.998 -4.29009 4.29009 0.79 0.000841366 0.000776992 0.0544184 0.050219 32 2850 24 6.87369e+06 558954 586450. 2029.24 1.59 0.185007 0.162662 25474 144626 -1 2290 23 2001 3232 308913 63957 3.7811 3.7811 -148.452 -3.7811 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0360389 0.0315466 157 49 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.47 vpr 63.25 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64768 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.62 880 11759 2826 8215 718 63.2 MiB 0.18 0.00 3.59605 -112.745 -3.59605 3.59605 0.83 0.000774692 0.000715711 0.0446233 0.041156 26 2603 46 6.87369e+06 475111 503264. 1741.40 1.81 0.165787 0.14541 24322 120374 -1 2282 23 1512 2421 250540 62847 3.17456 3.17456 -121.262 -3.17456 0 0 618332. 2139.56 0.26 0.11 0.12 -1 -1 0.26 0.0339128 0.0296573 140 54 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 10.48 vpr 63.48 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 30508 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 24.7 MiB 4.80 930 19136 5654 10352 3130 63.5 MiB 0.30 0.01 4.25669 -144.754 -4.25669 4.25669 0.79 0.000937722 0.000859511 0.0761684 0.0702777 34 2770 22 6.87369e+06 558954 618332. 2139.56 2.25 0.256638 0.225026 25762 151098 -1 2253 20 1970 3101 280460 62199 3.7891 3.7891 -143.05 -3.7891 0 0 787024. 2723.27 0.31 0.11 0.15 -1 -1 0.31 0.0369149 0.0323274 157 117 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.58 vpr 62.45 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30212 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63948 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 24.0 MiB 0.76 801 6501 1452 4525 524 62.4 MiB 0.11 0.00 3.09052 -106.923 -3.09052 3.09052 0.81 0.000623646 0.000576989 0.0262805 0.0243656 32 2210 22 6.87369e+06 223581 586450. 2029.24 0.98 0.101255 0.0887684 25474 144626 -1 1773 15 998 1501 159384 34551 3.12776 3.12776 -122.774 -3.12776 0 0 744469. 2576.02 0.25 0.05 0.13 -1 -1 0.25 0.0148733 0.0132283 104 -1 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.55 vpr 63.34 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30200 -1 -1 37 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.5 MiB 1.65 977 17961 5555 9821 2585 63.3 MiB 0.27 0.01 4.24789 -140.827 -4.24789 4.24789 0.79 0.000852293 0.000787699 0.0681808 0.0630034 34 2364 23 6.87369e+06 517032 618332. 2139.56 1.70 0.23532 0.2066 25762 151098 -1 1896 23 1598 2273 215743 45990 3.6278 3.6278 -135.914 -3.6278 0 0 787024. 2723.27 0.33 0.09 0.15 -1 -1 0.33 0.0301755 0.0265491 147 89 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.51 vpr 63.09 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.92 961 12808 4157 6979 1672 63.1 MiB 0.19 0.00 3.7416 -135.274 -3.7416 3.7416 0.79 0.000774052 0.000714358 0.0596854 0.0551171 34 2185 20 6.87369e+06 223581 618332. 2139.56 1.55 0.208517 0.182819 25762 151098 -1 1910 19 1399 1959 184105 39513 2.94001 2.94001 -129.783 -2.94001 0 0 787024. 2723.27 0.26 0.08 0.13 -1 -1 0.26 0.0289584 0.0253772 114 93 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 9.06 vpr 63.34 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30216 -1 -1 39 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.6 MiB 2.67 1013 13117 3136 9263 718 63.3 MiB 0.21 0.01 3.62407 -127.528 -3.62407 3.62407 0.78 0.000850628 0.000786343 0.0489688 0.0452453 34 2595 22 6.87369e+06 544980 618332. 2139.56 3.33 0.286667 0.249494 25762 151098 -1 2009 20 1553 2283 191142 42175 2.98996 2.98996 -125.379 -2.98996 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0326086 0.0285855 153 59 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 11.54 vpr 63.61 MiB 0.03 7364 -1 -1 1 0.04 -1 -1 30620 -1 -1 47 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.2 MiB 4.44 1138 14475 3597 10051 827 63.6 MiB 0.25 0.01 4.97494 -166.026 -4.97494 4.97494 0.79 0.00100127 0.000926615 0.0584478 0.0540101 34 3043 24 6.87369e+06 656770 618332. 2139.56 3.92 0.323186 0.282554 25762 151098 -1 2443 22 2326 3580 346884 72568 4.60055 4.60055 -167.64 -4.60055 0 0 787024. 2723.27 0.24 0.09 0.17 -1 -1 0.24 0.0314491 0.0275479 190 81 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.79 vpr 62.55 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 29992 -1 -1 14 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.8 MiB 2.02 613 9036 2242 6211 583 62.6 MiB 0.10 0.00 2.94746 -92.2629 -2.94746 2.94746 0.79 0.000569064 0.000525628 0.0339888 0.0314152 32 1509 20 6.87369e+06 195634 586450. 2029.24 0.91 0.100472 0.0882095 25474 144626 -1 1331 15 659 917 92542 21138 2.09702 2.09702 -89.9926 -2.09702 0 0 744469. 2576.02 0.24 0.05 0.16 -1 -1 0.24 0.0177375 0.0154994 72 51 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.99 vpr 62.63 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30312 -1 -1 18 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.1 MiB 0.89 764 12120 4745 5717 1658 62.6 MiB 0.17 0.00 3.7196 -120.247 -3.7196 3.7196 0.80 0.000669791 0.000619521 0.0498605 0.0461904 32 2060 22 6.87369e+06 251529 586450. 2029.24 1.01 0.131884 0.116812 25474 144626 -1 1714 19 1337 1870 198418 42606 3.15261 3.15261 -122.811 -3.15261 0 0 744469. 2576.02 0.27 0.06 0.14 -1 -1 0.27 0.0193282 0.0169673 109 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.31 vpr 62.87 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30008 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.19 884 12464 4265 6183 2016 62.9 MiB 0.20 0.00 3.52575 -127.584 -3.52575 3.52575 0.81 0.000701499 0.000647965 0.0535435 0.0495165 34 2676 23 6.87369e+06 223581 618332. 2139.56 1.77 0.19329 0.169522 25762 151098 -1 2184 22 1777 3164 312994 68188 3.08856 3.08856 -129.648 -3.08856 0 0 787024. 2723.27 0.26 0.10 0.15 -1 -1 0.26 0.0231122 0.0202969 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.76 vpr 62.41 MiB 0.06 6888 -1 -1 1 0.03 -1 -1 30272 -1 -1 37 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63904 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 23.9 MiB 0.70 742 15004 4316 8330 2358 62.4 MiB 0.18 0.00 3.44875 -93.4127 -3.44875 3.44875 0.82 0.000577472 0.000534289 0.0451136 0.0417309 30 1602 21 6.87369e+06 517032 556674. 1926.21 0.93 0.114711 0.101259 25186 138497 -1 1380 16 752 1139 67557 16205 2.78766 2.78766 -95.4077 -2.78766 0 0 706193. 2443.58 0.23 0.05 0.15 -1 -1 0.23 0.0191852 0.0168002 105 19 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.71 vpr 63.38 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30368 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.71 1035 11989 3061 8035 893 63.4 MiB 0.23 0.00 4.14459 -143.245 -4.14459 4.14459 0.79 0.000862281 0.000793944 0.0607317 0.056227 34 2891 27 6.87369e+06 293451 618332. 2139.56 1.85 0.238729 0.209256 25762 151098 -1 2318 23 2049 3735 335649 72247 3.8364 3.8364 -145.461 -3.8364 0 0 787024. 2723.27 0.25 0.11 0.13 -1 -1 0.25 0.0325768 0.0285062 145 84 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.27 vpr 63.36 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30136 -1 -1 40 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.4 MiB 2.41 969 12394 3038 8536 820 63.4 MiB 0.21 0.01 3.62425 -121.977 -3.62425 3.62425 0.79 0.000852022 0.000786465 0.0474782 0.0437367 34 2257 22 6.87369e+06 558954 618332. 2139.56 1.67 0.214418 0.187327 25762 151098 -1 1967 23 1974 2870 267635 57824 2.97896 2.97896 -119.514 -2.97896 0 0 787024. 2723.27 0.25 0.09 0.14 -1 -1 0.25 0.0271858 0.0238801 151 88 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 9.15 vpr 63.40 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 30668 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.7 MiB 1.63 1383 18363 6134 9531 2698 63.4 MiB 0.30 0.00 5.11247 -173.262 -5.11247 5.11247 0.93 0.000686622 0.000628221 0.0637466 0.0583912 38 2985 35 6.89349e+06 408721 678818. 2348.85 4.04 0.321306 0.279553 26626 170182 -1 2611 20 2052 2589 220032 44829 4.28005 4.28005 -163.885 -4.28005 0 0 902133. 3121.57 0.30 0.10 0.17 -1 -1 0.30 0.0359324 0.0315027 192 80 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.00 vpr 63.28 MiB 0.02 7168 -1 -1 1 0.04 -1 -1 30500 -1 -1 29 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64800 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.4 MiB 1.44 1338 16411 5641 8181 2589 63.3 MiB 0.28 0.00 5.22297 -160.634 -5.22297 5.22297 0.80 0.000833851 0.000770393 0.0701914 0.0649101 36 3164 26 6.89349e+06 408721 648988. 2245.63 2.38 0.241366 0.212823 26050 158493 -1 2686 19 1867 2596 255636 51478 4.51278 4.51278 -152.831 -4.51278 0 0 828058. 2865.25 0.27 0.10 0.16 -1 -1 0.27 0.0322717 0.0284234 177 78 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 9.17 vpr 63.28 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30216 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.5 MiB 1.72 1277 15533 4267 9018 2248 63.3 MiB 0.28 0.01 4.0146 -140.879 -4.0146 4.0146 0.79 0.00111195 0.00103294 0.0719439 0.0665067 36 3037 21 6.89349e+06 352346 648988. 2245.63 4.26 0.299127 0.262022 26050 158493 -1 2516 20 1540 1936 197338 38483 3.5358 3.5358 -137.598 -3.5358 0 0 828058. 2865.25 0.27 0.09 0.16 -1 -1 0.27 0.0329288 0.02899 167 50 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.96 vpr 62.80 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30344 -1 -1 25 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.3 MiB 1.91 1071 16718 5447 9404 1867 62.8 MiB 0.28 0.00 4.53305 -141.516 -4.53305 4.53305 0.79 0.000749497 0.000693336 0.0703612 0.065195 34 2604 24 6.89349e+06 352346 618332. 2139.56 1.92 0.222059 0.196045 25762 151098 -1 2082 20 1652 2487 184015 41746 3.99576 3.99576 -144.727 -3.99576 0 0 787024. 2723.27 0.25 0.08 0.17 -1 -1 0.25 0.0292479 0.0256139 148 25 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 7.60 vpr 63.07 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30248 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1361 14518 4265 8140 2113 63.1 MiB 0.27 0.01 5.03124 -172.909 -5.03124 5.03124 0.79 0.000814138 0.000752913 0.0633876 0.0585419 36 3204 23 6.89349e+06 338252 648988. 2245.63 2.58 0.230046 0.202598 26050 158493 -1 2708 21 2164 3702 308376 64335 4.25485 4.25485 -163.62 -4.25485 0 0 828058. 2865.25 0.26 0.11 0.17 -1 -1 0.26 0.0329176 0.0288699 163 31 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.18 vpr 63.30 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30276 -1 -1 41 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.4 MiB 1.78 1499 20359 6047 11800 2512 63.3 MiB 0.33 0.01 4.44565 -148.532 -4.44565 4.44565 0.80 0.00084374 0.00077925 0.0724717 0.0669076 34 3638 42 6.89349e+06 577847 618332. 2139.56 2.02 0.263504 0.231453 25762 151098 -1 2902 20 1840 2888 245956 51403 3.4637 3.4637 -135.971 -3.4637 0 0 787024. 2723.27 0.28 0.10 0.17 -1 -1 0.28 0.0327198 0.028741 179 61 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.59 vpr 62.29 MiB 0.04 6912 -1 -1 1 0.04 -1 -1 30528 -1 -1 21 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63788 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 23.8 MiB 1.40 730 14528 4147 9388 993 62.3 MiB 0.19 0.00 3.83226 -109.129 -3.83226 3.83226 0.85 0.000489956 0.000447156 0.0508848 0.0468912 30 2001 25 6.89349e+06 295971 556674. 1926.21 1.04 0.102912 0.0913573 25186 138497 -1 1566 20 1090 1583 119409 26752 3.12146 3.12146 -110.895 -3.12146 0 0 706193. 2443.58 0.26 0.07 0.12 -1 -1 0.26 0.024426 0.0213335 112 26 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.52 vpr 63.10 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30084 -1 -1 35 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.3 MiB 0.80 921 14273 4335 7347 2591 63.1 MiB 0.20 0.00 3.53335 -112.01 -3.53335 3.53335 0.79 0.000730109 0.000673727 0.0485939 0.0449136 34 2330 17 6.89349e+06 493284 618332. 2139.56 1.69 0.18465 0.161938 25762 151098 -1 1917 19 1254 2012 156951 34298 2.77281 2.77281 -107.285 -2.77281 0 0 787024. 2723.27 0.29 0.08 0.14 -1 -1 0.29 0.0255141 0.0223952 141 -1 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.29 vpr 62.84 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30028 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.4 MiB 1.51 1141 14358 3961 8348 2049 62.8 MiB 0.21 0.00 3.63141 -123.531 -3.63141 3.63141 0.79 0.000719334 0.000665268 0.058663 0.0542804 34 2823 25 6.89349e+06 295971 618332. 2139.56 1.72 0.207254 0.181459 25762 151098 -1 2192 22 1635 2026 176828 38039 3.00146 3.00146 -118.923 -3.00146 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0302659 0.0264411 140 81 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.35 vpr 62.56 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30324 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.0 MiB 1.69 873 6923 1573 5100 250 62.6 MiB 0.14 0.00 3.71245 -131.003 -3.71245 3.71245 0.79 0.000701028 0.000647741 0.0295991 0.0274221 34 2504 22 6.89349e+06 267783 618332. 2139.56 1.70 0.167064 0.145222 25762 151098 -1 1973 21 1746 2253 208153 45634 3.25976 3.25976 -129.578 -3.25976 0 0 787024. 2723.27 0.28 0.09 0.15 -1 -1 0.28 0.0284881 0.024921 127 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.58 vpr 62.82 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30020 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.0 MiB 1.92 942 6923 1677 4944 302 62.8 MiB 0.12 0.00 4.3965 -138.695 -4.3965 4.3965 0.89 0.000706104 0.000652693 0.0297516 0.027534 34 2549 23 6.89349e+06 295971 618332. 2139.56 1.62 0.165114 0.143442 25762 151098 -1 1994 17 1444 1905 163453 34945 3.53595 3.53595 -132.555 -3.53595 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0245061 0.0215119 135 58 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.38 vpr 62.87 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30380 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.0 MiB 1.75 883 15822 6326 7340 2156 62.9 MiB 0.21 0.00 3.8129 -121.35 -3.8129 3.8129 0.82 0.000716906 0.000662706 0.0639933 0.0591445 36 2268 22 6.89349e+06 281877 648988. 2245.63 2.38 0.205378 0.18045 26050 158493 -1 1772 21 1263 1439 119035 27655 2.96941 2.96941 -110.48 -2.96941 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.029064 0.0253982 135 57 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.88 vpr 63.10 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30168 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.3 MiB 1.16 987 17513 5731 7853 3929 63.1 MiB 0.23 0.00 4.23419 -140.25 -4.23419 4.23419 0.78 0.000814319 0.000753073 0.0742873 0.0686673 38 2680 30 6.89349e+06 352346 678818. 2348.85 4.52 0.236489 0.209675 26626 170182 -1 2093 20 1732 2323 205928 46210 3.2913 3.2913 -123.28 -3.2913 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0322271 0.0283384 161 55 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.72 vpr 63.16 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30328 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.3 MiB 1.40 1162 11063 2970 6995 1098 63.2 MiB 0.21 0.01 5.02024 -166.562 -5.02024 5.02024 0.79 0.000845261 0.000781933 0.047925 0.044309 34 3453 43 6.89349e+06 394628 618332. 2139.56 2.12 0.196696 0.172987 25762 151098 -1 2666 22 2359 3101 270233 58754 4.72305 4.72305 -173.843 -4.72305 0 0 787024. 2723.27 0.33 0.10 0.17 -1 -1 0.33 0.0300489 0.0266263 175 60 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.86 vpr 62.35 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30464 -1 -1 21 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63844 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.9 MiB 1.49 754 11296 2879 7697 720 62.3 MiB 0.14 0.00 3.61645 -112 -3.61645 3.61645 0.79 0.000624762 0.000577857 0.0416495 0.0385238 34 1936 20 6.89349e+06 295971 618332. 2139.56 1.49 0.151929 0.132907 25762 151098 -1 1538 17 987 1359 111715 25185 2.74466 2.74466 -104.488 -2.74466 0 0 787024. 2723.27 0.30 0.06 0.16 -1 -1 0.30 0.0189369 0.016707 112 21 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.77 vpr 63.20 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30184 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.3 MiB 2.20 1259 17315 5682 9212 2421 63.2 MiB 0.31 0.00 4.31019 -146.5 -4.31019 4.31019 0.80 0.000838123 0.000774649 0.0763737 0.0704821 34 3731 27 6.89349e+06 352346 618332. 2139.56 2.29 0.247588 0.218054 25762 151098 -1 2971 22 2639 4122 391062 81050 3.98685 3.98685 -151.495 -3.98685 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0357412 0.0313518 174 60 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.91 vpr 63.06 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30156 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.3 MiB 1.08 1183 12365 3291 7811 1263 63.1 MiB 0.21 0.00 3.69045 -130.871 -3.69045 3.69045 0.78 0.000804733 0.000743758 0.0528554 0.0488601 34 2818 23 6.89349e+06 352346 618332. 2139.56 1.67 0.212574 0.186188 25762 151098 -1 2268 18 1664 2099 189158 40020 2.91031 2.91031 -121.711 -2.91031 0 0 787024. 2723.27 0.25 0.08 0.17 -1 -1 0.25 0.029855 0.0263156 160 54 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 9.07 vpr 63.03 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 29972 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1015 15395 4903 8010 2482 63.0 MiB 0.23 0.00 3.61051 -123.557 -3.61051 3.61051 0.79 0.000727258 0.000671788 0.0620574 0.0573143 40 2180 24 6.89349e+06 310065 706193. 2443.58 4.00 0.283229 0.246261 26914 176310 -1 2013 19 1525 2041 197470 41961 2.81226 2.81226 -113.173 -2.81226 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0273651 0.0239758 139 62 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.35 vpr 62.12 MiB 0.02 6672 -1 -1 1 0.03 -1 -1 29936 -1 -1 15 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63608 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.6 MiB 1.01 569 8227 1998 5670 559 62.1 MiB 0.09 0.00 3.06366 -95.1937 -3.06366 3.06366 0.83 0.000544964 0.000503025 0.0295509 0.0273375 34 1458 19 6.89349e+06 211408 618332. 2139.56 1.38 0.133884 0.116246 25762 151098 -1 1239 16 711 837 71164 16553 2.11917 2.11917 -84.2942 -2.11917 0 0 787024. 2723.27 0.30 0.05 0.17 -1 -1 0.30 0.0180918 0.0158309 85 29 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.06 vpr 62.87 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30260 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.24 1101 13663 4048 7780 1835 62.9 MiB 0.20 0.00 4.32835 -147.32 -4.32835 4.32835 0.88 0.000724072 0.000669103 0.0543884 0.050297 34 2686 22 6.89349e+06 310065 618332. 2139.56 1.63 0.196162 0.171961 25762 151098 -1 2178 20 1578 2066 186237 40242 3.4358 3.4358 -138.035 -3.4358 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0261281 0.0233805 141 55 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.82 vpr 63.41 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30036 -1 -1 40 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.7 MiB 0.89 1052 20112 6009 11047 3056 63.4 MiB 0.29 0.00 4.67003 -155.404 -4.67003 4.67003 0.79 0.000793939 0.000734605 0.0679927 0.0627919 34 2788 22 6.89349e+06 563754 618332. 2139.56 1.79 0.223867 0.197008 25762 151098 -1 2140 20 1895 2615 252223 51509 3.80464 3.80464 -143.966 -3.80464 0 0 787024. 2723.27 0.29 0.09 0.13 -1 -1 0.29 0.0258903 0.023004 166 31 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.74 vpr 63.41 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30408 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.7 MiB 1.26 1507 16511 4972 9774 1765 63.4 MiB 0.29 0.00 4.34661 -147.62 -4.34661 4.34661 0.84 0.00093214 0.000863785 0.0738836 0.0684315 36 3443 24 6.89349e+06 436909 648988. 2245.63 2.06 0.256237 0.224798 26050 158493 -1 2951 20 2192 2505 223884 47625 4.1265 4.1265 -146.678 -4.1265 0 0 828058. 2865.25 0.35 0.09 0.18 -1 -1 0.35 0.0304266 0.0267756 201 108 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.88 vpr 62.13 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 26 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63624 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.6 MiB 1.25 692 10476 3888 5359 1229 62.1 MiB 0.11 0.00 2.84541 -81.5212 -2.84541 2.84541 0.79 0.000480485 0.000443722 0.0331564 0.0306459 30 1474 16 6.89349e+06 253689 556674. 1926.21 1.88 0.134225 0.116674 25186 138497 -1 1249 12 461 583 45569 9801 1.92605 1.92605 -76.6152 -1.92605 0 0 706193. 2443.58 0.21 0.03 0.11 -1 -1 0.21 0.013352 0.0117991 77 21 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 8.04 vpr 62.69 MiB 0.02 6896 -1 -1 1 0.04 -1 -1 30144 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.0 MiB 1.07 1016 9571 2543 6414 614 62.7 MiB 0.17 0.00 4.12784 -139.243 -4.12784 4.12784 0.79 0.000754642 0.000697955 0.0408804 0.0378254 34 2761 33 6.89349e+06 295971 618332. 2139.56 3.82 0.273286 0.237464 25762 151098 -1 2113 17 1420 2384 197860 42885 3.69405 3.69405 -140.075 -3.69405 0 0 787024. 2723.27 0.34 0.08 0.15 -1 -1 0.34 0.0266971 0.0235695 141 -1 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.08 vpr 61.98 MiB 0.02 6556 -1 -1 1 0.03 -1 -1 30372 -1 -1 12 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63464 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.6 MiB 0.33 514 9356 2285 6456 615 62.0 MiB 0.10 0.00 2.43188 -86.7872 -2.43188 2.43188 0.79 0.00046656 0.000425605 0.0318581 0.0293868 28 1518 34 6.89349e+06 169126 531479. 1839.03 0.92 0.0914063 0.0803952 24610 126494 -1 1316 16 737 1032 84969 21628 2.01906 2.01906 -89.2091 -2.01906 0 0 648988. 2245.63 0.26 0.04 0.13 -1 -1 0.26 0.0122804 0.0108361 71 -1 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.64 vpr 63.07 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30400 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1097 15929 4551 10101 1277 63.1 MiB 0.28 0.01 4.62958 -159.64 -4.62958 4.62958 0.79 0.000802225 0.000742489 0.0676687 0.0626695 30 2798 23 6.89349e+06 352346 556674. 1926.21 1.18 0.173072 0.154075 25186 138497 -1 2125 22 1641 2244 170678 38588 3.89866 3.89866 -147.919 -3.89866 0 0 706193. 2443.58 0.29 0.08 0.16 -1 -1 0.29 0.0299035 0.0264453 161 21 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.23 vpr 62.95 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 29988 -1 -1 36 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.1 MiB 0.67 885 10772 2583 7345 844 62.9 MiB 0.15 0.00 3.4709 -116.935 -3.4709 3.4709 0.98 0.000533888 0.000483288 0.0252418 0.0229847 32 2589 22 6.89349e+06 507378 586450. 2029.24 1.04 0.116811 0.102101 25474 144626 -1 2046 21 1493 2314 198941 46206 2.86981 2.86981 -118.592 -2.86981 0 0 744469. 2576.02 0.32 0.08 0.16 -1 -1 0.32 0.0242072 0.0214127 151 -1 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 7.21 vpr 63.10 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30392 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.3 MiB 1.58 1365 8130 1863 5269 998 63.1 MiB 0.17 0.00 4.69935 -162.091 -4.69935 4.69935 0.83 0.000844005 0.000780243 0.0368724 0.0341653 34 3602 24 6.89349e+06 366440 618332. 2139.56 2.16 0.211134 0.184344 25762 151098 -1 2917 21 2256 3261 289615 59329 4.17126 4.17126 -159.891 -4.17126 0 0 787024. 2723.27 0.26 0.11 0.15 -1 -1 0.26 0.0339958 0.0298494 174 54 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.37 vpr 62.46 MiB 0.03 6840 -1 -1 1 0.03 -1 -1 30148 -1 -1 17 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 23.9 MiB 1.67 863 14256 5690 7135 1431 62.5 MiB 0.19 0.00 3.57625 -122.952 -3.57625 3.57625 0.85 0.000667753 0.000617015 0.0564942 0.0522373 34 2829 35 6.89349e+06 239595 618332. 2139.56 2.41 0.184012 0.162819 25762 151098 -1 2035 21 1520 2215 227493 47957 3.01556 3.01556 -122.395 -3.01556 0 0 787024. 2723.27 0.25 0.09 0.14 -1 -1 0.25 0.0276484 0.0241831 118 31 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.55 vpr 62.50 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 29940 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64000 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 23.9 MiB 1.62 1065 12331 4460 6746 1125 62.5 MiB 0.19 0.00 4.27029 -139.911 -4.27029 4.27029 0.79 0.000670378 0.00062004 0.049591 0.0459064 34 2593 29 6.89349e+06 267783 618332. 2139.56 1.80 0.18818 0.164503 25762 151098 -1 2233 19 1366 2106 228988 44819 3.6861 3.6861 -143.167 -3.6861 0 0 787024. 2723.27 0.34 0.08 0.17 -1 -1 0.34 0.0203606 0.0179392 121 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 9.53 vpr 62.53 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.0 MiB 1.96 839 10231 2827 6777 627 62.5 MiB 0.17 0.00 4.26535 -126.926 -4.26535 4.26535 0.83 0.000636917 0.000589425 0.0392538 0.0363217 28 2398 29 6.89349e+06 295971 531479. 1839.03 4.48 0.188753 0.164649 24610 126494 -1 2141 21 1319 2092 187747 41382 3.7956 3.7956 -134.911 -3.7956 0 0 648988. 2245.63 0.28 0.07 0.14 -1 -1 0.28 0.022102 0.019663 115 27 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.91 vpr 62.36 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30100 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 1.17 860 14700 5342 7547 1811 62.4 MiB 0.22 0.00 3.60535 -129.612 -3.60535 3.60535 0.84 0.000662238 0.000617914 0.0590715 0.0551897 34 2253 23 6.89349e+06 225501 618332. 2139.56 1.64 0.191218 0.168362 25762 151098 -1 1939 19 1411 2286 225053 45416 2.93496 2.93496 -125.353 -2.93496 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0250386 0.0219368 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 5.60 vpr 62.40 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30220 -1 -1 19 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 23.8 MiB 1.54 985 14322 4727 7440 2155 62.4 MiB 0.22 0.00 3.69435 -127.028 -3.69435 3.69435 0.84 0.000662467 0.000617783 0.0564777 0.0526057 30 2344 17 6.89349e+06 267783 556674. 1926.21 1.01 0.125058 0.111809 25186 138497 -1 1897 15 992 1416 93539 20851 2.86686 2.86686 -117.141 -2.86686 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0213185 0.0187597 121 26 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.20 vpr 62.62 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30016 -1 -1 23 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 24.2 MiB 1.54 1052 14724 4760 7779 2185 62.6 MiB 0.22 0.00 3.57215 -115.596 -3.57215 3.57215 0.78 0.000662525 0.000610473 0.0572803 0.0529982 34 2390 19 6.89349e+06 324158 618332. 2139.56 1.52 0.188943 0.165835 25762 151098 -1 2029 18 1059 1423 121903 26092 2.78696 2.78696 -109.841 -2.78696 0 0 787024. 2723.27 0.25 0.07 0.14 -1 -1 0.25 0.024673 0.0216052 130 55 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 9.47 vpr 63.27 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 30364 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.4 MiB 1.91 1199 18247 5521 9891 2835 63.3 MiB 0.33 0.00 4.73855 -160.484 -4.73855 4.73855 0.83 0.000972332 0.000892846 0.0843061 0.0780864 36 3057 20 6.89349e+06 380534 648988. 2245.63 4.20 0.34289 0.301454 26050 158493 -1 2646 18 1819 2962 256822 53587 4.09316 4.09316 -154.573 -4.09316 0 0 828058. 2865.25 0.27 0.08 0.17 -1 -1 0.27 0.0259427 0.02316 184 26 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.40 vpr 63.28 MiB 0.03 7008 -1 -1 1 0.04 -1 -1 30304 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.5 MiB 1.71 1143 14147 4354 7296 2497 63.3 MiB 0.26 0.01 4.17974 -143.168 -4.17974 4.17974 0.87 0.00119678 0.00110619 0.0630532 0.0582604 34 3558 33 6.89349e+06 352346 618332. 2139.56 2.29 0.244795 0.214767 25762 151098 -1 2715 23 2711 3700 353275 74502 4.18925 4.18925 -153.784 -4.18925 0 0 787024. 2723.27 0.25 0.12 0.17 -1 -1 0.25 0.037327 0.0327639 173 62 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.58 vpr 62.92 MiB 0.04 7036 -1 -1 1 0.03 -1 -1 30396 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 0.89 1094 14965 4562 8063 2340 62.9 MiB 0.22 0.00 3.67235 -123.222 -3.67235 3.67235 0.79 0.000734519 0.000678752 0.0621194 0.0574874 34 2633 22 6.89349e+06 310065 618332. 2139.56 1.61 0.205827 0.180687 25762 151098 -1 2095 22 1337 1402 149763 31290 3.16091 3.16091 -119.072 -3.16091 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0220486 0.0193357 143 77 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.56 vpr 63.07 MiB 0.02 7112 -1 -1 1 0.04 -1 -1 30236 -1 -1 26 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.4 MiB 2.27 1244 16523 4277 10843 1403 63.1 MiB 0.30 0.01 4.45875 -146.616 -4.45875 4.45875 0.83 0.000814682 0.00075343 0.0708833 0.0655701 34 3041 49 6.89349e+06 366440 618332. 2139.56 2.01 0.266087 0.233211 25762 151098 -1 2511 19 1670 2368 218285 45586 3.6923 3.6923 -141.034 -3.6923 0 0 787024. 2723.27 0.25 0.09 0.16 -1 -1 0.25 0.0309389 0.0271918 170 59 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.04 vpr 63.65 MiB 0.04 7368 -1 -1 1 0.04 -1 -1 30332 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.81 1489 17560 4957 10293 2310 63.6 MiB 0.34 0.01 5.02254 -165.43 -5.02254 5.02254 0.81 0.000918073 0.000850619 0.0795506 0.0737041 36 3302 26 6.89349e+06 436909 648988. 2245.63 3.96 0.343097 0.299491 26050 158493 -1 2694 20 1876 2118 175285 38262 4.53904 4.53904 -162.317 -4.53904 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0354067 0.0310005 201 111 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.80 vpr 63.27 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30264 -1 -1 28 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.4 MiB 2.11 1401 11923 3470 7236 1217 63.3 MiB 0.23 0.01 5.49816 -175.294 -5.49816 5.49816 0.77 0.000846055 0.000776923 0.0517324 0.0478514 42 2926 22 6.89349e+06 394628 744469. 2576.02 4.25 0.278286 0.241937 27202 183097 -1 2527 16 1749 2356 203221 43700 4.63614 4.63614 -164.711 -4.63614 0 0 949917. 3286.91 0.36 0.07 0.17 -1 -1 0.36 0.0229019 0.0204206 181 86 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.70 vpr 63.18 MiB 0.04 7116 -1 -1 1 0.04 -1 -1 30232 -1 -1 27 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.3 MiB 1.50 1340 14763 4284 8311 2168 63.2 MiB 0.27 0.01 3.76655 -130.012 -3.76655 3.76655 0.79 0.000816451 0.000754963 0.0630278 0.0583363 34 3196 35 6.89349e+06 380534 618332. 2139.56 1.98 0.24236 0.213197 25762 151098 -1 2557 21 1950 2707 248885 51843 3.05126 3.05126 -124.604 -3.05126 0 0 787024. 2723.27 0.25 0.10 0.18 -1 -1 0.25 0.0340432 0.0299188 168 58 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 8.61 vpr 63.19 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30340 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.4 MiB 1.72 1284 16207 4365 9844 1998 63.2 MiB 0.27 0.01 4.62085 -160.706 -4.62085 4.62085 0.79 0.000842567 0.000779621 0.0676512 0.0625926 40 2601 20 6.89349e+06 380534 706193. 2443.58 3.64 0.312991 0.273443 26914 176310 -1 2516 20 1939 2561 273038 55896 3.93166 3.93166 -155.11 -3.93166 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0327241 0.0287469 178 42 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.87 vpr 63.28 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30488 -1 -1 31 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 24.8 MiB 2.04 1764 15215 4236 8627 2352 63.3 MiB 0.32 0.01 5.15348 -175.341 -5.15348 5.15348 0.80 0.000997821 0.000923061 0.0734752 0.0680386 34 4963 46 6.89349e+06 436909 618332. 2139.56 3.47 0.312897 0.274748 25762 151098 -1 3860 23 3483 4904 572738 110091 4.92129 4.92129 -185.826 -4.92129 0 0 787024. 2723.27 0.25 0.17 0.15 -1 -1 0.25 0.0452064 0.0396984 220 91 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.11 vpr 62.53 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.59 822 6743 1455 4759 529 62.5 MiB 0.12 0.00 3.853 -129.297 -3.853 3.853 0.78 0.000685467 0.000633811 0.0277078 0.0256496 34 2130 23 6.89349e+06 281877 618332. 2139.56 1.48 0.162233 0.141085 25762 151098 -1 1735 17 1232 1587 138246 30502 3.18261 3.18261 -125.282 -3.18261 0 0 787024. 2723.27 0.32 0.07 0.16 -1 -1 0.32 0.0242124 0.0213164 127 24 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 7.37 vpr 63.32 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30200 -1 -1 27 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64836 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.5 MiB 1.54 1294 17376 6419 8627 2330 63.3 MiB 0.29 0.01 5.00234 -161.335 -5.00234 5.00234 0.81 0.000826514 0.0007631 0.073475 0.0678698 34 3330 27 6.89349e+06 380534 618332. 2139.56 2.42 0.246867 0.217173 25762 151098 -1 2476 17 1626 2007 191409 39462 3.97305 3.97305 -146.178 -3.97305 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.028533 0.0251389 168 59 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.19 vpr 63.25 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30576 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.4 MiB 1.83 1356 15391 5368 7626 2397 63.2 MiB 0.28 0.01 4.39449 -148.549 -4.39449 4.39449 0.79 0.000830991 0.000768785 0.0656583 0.0607046 36 3399 20 6.89349e+06 380534 648988. 2245.63 2.17 0.227223 0.199859 26050 158493 -1 2665 18 1552 2335 195483 42653 3.4388 3.4388 -137.093 -3.4388 0 0 828058. 2865.25 0.28 0.09 0.18 -1 -1 0.28 0.0321071 0.0284489 172 54 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.65 vpr 63.19 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30388 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 1.34 953 14407 3720 10033 654 63.2 MiB 0.24 0.00 4.3344 -147.594 -4.3344 4.3344 0.85 0.000777513 0.000718712 0.0626934 0.0580156 34 2905 27 6.89349e+06 295971 618332. 2139.56 2.06 0.223323 0.196375 25762 151098 -1 2232 23 1991 3487 264360 60022 4.157 4.157 -158.907 -4.157 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0337633 0.0296237 147 -1 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.62 vpr 63.23 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30272 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.6 MiB 1.43 1279 18101 5797 9598 2706 63.2 MiB 0.31 0.00 4.41459 -148.068 -4.41459 4.41459 0.81 0.000851346 0.000787258 0.0778297 0.0720267 34 3391 28 6.89349e+06 394628 618332. 2139.56 1.99 0.253022 0.222505 25762 151098 -1 2463 21 1740 1984 171491 37870 3.5578 3.5578 -134.352 -3.5578 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0389776 0.0345098 184 81 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 9.41 vpr 63.18 MiB 0.04 7036 -1 -1 1 0.04 -1 -1 30120 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.3 MiB 1.90 1221 17635 5673 8836 3126 63.2 MiB 0.27 0.00 4.28929 -146.442 -4.28929 4.28929 0.79 0.000834043 0.000771542 0.0750143 0.0694104 38 2787 32 6.89349e+06 380534 678818. 2348.85 4.22 0.327414 0.287337 26626 170182 -1 2196 20 1647 2496 191119 42455 3.4967 3.4967 -139.433 -3.4967 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.032899 0.0289463 169 58 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.64 vpr 63.30 MiB 0.04 7036 -1 -1 1 0.03 -1 -1 30288 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.57 1303 7027 1560 5110 357 63.3 MiB 0.16 0.01 3.72045 -130.455 -3.72045 3.72045 0.80 0.000842121 0.00077857 0.0316568 0.0292824 34 3419 35 6.89349e+06 380534 618332. 2139.56 1.92 0.213694 0.185941 25762 151098 -1 2708 23 2357 3298 307090 64592 3.36316 3.36316 -133.871 -3.36316 0 0 787024. 2723.27 0.25 0.11 0.17 -1 -1 0.25 0.0367089 0.0321722 175 61 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.64 vpr 63.16 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30360 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.4 MiB 1.70 1190 14518 4171 8562 1785 63.2 MiB 0.25 0.01 4.63815 -161.109 -4.63815 4.63815 0.79 0.000811519 0.000751193 0.0633873 0.0586745 34 2823 20 6.89349e+06 338252 618332. 2139.56 1.82 0.218761 0.192526 25762 151098 -1 2319 21 1986 2951 235767 49816 3.91446 3.91446 -155.236 -3.91446 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0335781 0.0295617 161 21 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.35 vpr 63.09 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30512 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.3 MiB 1.22 1201 13351 3240 8446 1665 63.1 MiB 0.23 0.01 4.60525 -158.398 -4.60525 4.60525 0.85 0.000844498 0.000781448 0.0578506 0.0535409 34 3331 29 6.89349e+06 380534 618332. 2139.56 1.85 0.215172 0.189477 25762 151098 -1 2649 22 2149 2702 249037 53736 4.18866 4.18866 -157.463 -4.18866 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0353601 0.0309969 177 50 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.50 vpr 63.27 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30424 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64788 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.6 MiB 1.20 1470 18625 5270 10765 2590 63.3 MiB 0.33 0.01 5.00359 -155.604 -5.00359 5.00359 0.82 0.000895773 0.000828257 0.0822957 0.0761514 34 3579 26 6.89349e+06 436909 618332. 2139.56 1.87 0.267683 0.235175 25762 151098 -1 2722 18 1799 2119 187648 40452 4.02335 4.02335 -144.794 -4.02335 0 0 787024. 2723.27 0.26 0.09 0.16 -1 -1 0.26 0.0333717 0.0296528 195 110 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.66 vpr 63.30 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.36 1648 15391 4130 9133 2128 63.3 MiB 0.31 0.01 4.77885 -161.828 -4.77885 4.77885 0.82 0.00088334 0.000816516 0.0712659 0.0659997 34 3960 24 6.89349e+06 380534 618332. 2139.56 1.84 0.212528 0.187637 25762 151098 -1 3178 23 2615 3790 338322 69689 4.23076 4.23076 -158.094 -4.23076 0 0 787024. 2723.27 0.28 0.12 0.14 -1 -1 0.28 0.0382995 0.0335412 190 86 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.22 vpr 62.54 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30484 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 24.0 MiB 1.40 1067 16081 5068 9178 1835 62.5 MiB 0.24 0.00 3.68745 -131.866 -3.68745 3.68745 0.88 0.000692662 0.00064084 0.0626098 0.0579186 34 2357 23 6.89349e+06 295971 618332. 2139.56 1.61 0.200666 0.176363 25762 151098 -1 1967 17 1190 1666 131784 28869 2.87006 2.87006 -123.027 -2.87006 0 0 787024. 2723.27 0.26 0.07 0.18 -1 -1 0.26 0.0239549 0.0210702 127 20 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.62 vpr 63.04 MiB 0.02 7100 -1 -1 1 0.04 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.3 MiB 1.40 1122 7711 1541 6020 150 63.0 MiB 0.15 0.00 4.29439 -143.523 -4.29439 4.29439 0.78 0.000767035 0.000708527 0.0342298 0.0316365 34 3377 24 6.89349e+06 295971 618332. 2139.56 4.13 0.280081 0.242896 25762 151098 -1 2389 19 1791 2103 185285 40185 3.75629 3.75629 -143.49 -3.75629 0 0 787024. 2723.27 0.26 0.08 0.16 -1 -1 0.26 0.0289983 0.025413 154 91 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 9.72 vpr 63.64 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 30644 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65168 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.8 MiB 1.92 1537 17347 5978 9037 2332 63.6 MiB 0.37 0.01 5.35709 -181.872 -5.35709 5.35709 0.78 0.000958412 0.0008866 0.0809977 0.0750062 40 3492 28 6.89349e+06 422815 706193. 2443.58 4.33 0.361901 0.316438 26914 176310 -1 3290 22 2569 3530 394888 79275 4.8653 4.8653 -179.92 -4.8653 0 0 926341. 3205.33 0.35 0.13 0.18 -1 -1 0.35 0.040448 0.035804 209 53 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.97 vpr 63.01 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.64 1176 14295 4272 7910 2113 63.0 MiB 0.25 0.00 3.7808 -134.415 -3.7808 3.7808 0.80 0.000795245 0.000735169 0.0617617 0.0570914 34 2907 49 6.89349e+06 324158 618332. 2139.56 2.18 0.263698 0.232017 25762 151098 -1 2422 22 1986 2851 281439 59899 3.20196 3.20196 -131.664 -3.20196 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.033442 0.0292663 156 31 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.69 vpr 62.50 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30172 -1 -1 32 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64000 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 23.9 MiB 1.00 932 11809 3108 7963 738 62.5 MiB 0.18 0.00 4.33203 -134.423 -4.33203 4.33203 0.80 0.000672419 0.000622185 0.0398272 0.0367879 34 2068 25 6.89349e+06 451003 618332. 2139.56 1.62 0.176281 0.15373 25762 151098 -1 1701 15 905 1471 107118 24626 3.33535 3.33535 -123.792 -3.33535 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0210052 0.0184677 129 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 8.03 vpr 63.43 MiB 0.05 7360 -1 -1 1 0.04 -1 -1 30728 -1 -1 35 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.2 MiB 1.62 1787 18111 5206 10704 2201 63.4 MiB 0.38 0.01 5.73258 -193.193 -5.73258 5.73258 0.79 0.000986542 0.000908379 0.0863634 0.0799711 36 4118 48 6.89349e+06 493284 648988. 2245.63 2.94 0.333728 0.293098 26050 158493 -1 3418 20 2804 3462 325135 67797 5.21313 5.21313 -189.443 -5.21313 0 0 828058. 2865.25 0.24 0.12 0.16 -1 -1 0.24 0.041214 0.0362161 239 109 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.30 vpr 63.07 MiB 0.05 7052 -1 -1 1 0.04 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.32 1091 13143 3864 7923 1356 63.1 MiB 0.23 0.00 4.41749 -154.465 -4.41749 4.41749 0.80 0.000736327 0.000674832 0.0579819 0.0536541 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.82 0.219666 0.193728 25762 151098 -1 2351 20 2110 2852 281849 57752 3.8948 3.8948 -150.219 -3.8948 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0314234 0.0275841 159 31 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.91 vpr 62.36 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 30324 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 23.8 MiB 0.62 849 10087 2557 6780 750 62.4 MiB 0.17 0.01 3.73565 -131.011 -3.73565 3.73565 0.91 0.000672587 0.000620725 0.0339591 0.0314293 30 2145 37 6.89349e+06 465097 556674. 1926.21 1.10 0.130939 0.115038 25186 138497 -1 1790 17 1066 1721 123895 26365 2.88186 2.88186 -122.82 -2.88186 0 0 706193. 2443.58 0.29 0.08 0.12 -1 -1 0.29 0.0239945 0.0211384 123 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 9.79 vpr 63.49 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 30660 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 2.05 1275 12273 3390 7733 1150 63.5 MiB 0.26 0.01 5.39711 -179.414 -5.39711 5.39711 0.81 0.000936044 0.000867846 0.0604372 0.0560727 36 3338 23 6.89349e+06 408721 648988. 2245.63 4.38 0.35125 0.305792 26050 158493 -1 2845 20 2352 3565 345882 68008 4.6679 4.6679 -175.907 -4.6679 0 0 828058. 2865.25 0.36 0.11 0.18 -1 -1 0.36 0.0308438 0.0272546 194 26 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.41 vpr 62.43 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.86 787 10056 2193 7590 273 62.4 MiB 0.16 0.00 3.8468 -135.678 -3.8468 3.8468 0.79 0.000663592 0.000613387 0.0411664 0.0381097 34 2238 23 6.89349e+06 225501 618332. 2139.56 1.62 0.172411 0.150626 25762 151098 -1 1877 18 1328 2065 190837 40411 3.36591 3.36591 -135.858 -3.36591 0 0 787024. 2723.27 0.25 0.08 0.16 -1 -1 0.25 0.0244308 0.0214594 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.78 vpr 62.38 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 29908 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.8 MiB 1.08 801 8131 1824 5536 771 62.4 MiB 0.12 0.00 3.71635 -120.03 -3.71635 3.71635 0.79 0.000675443 0.000624973 0.0331451 0.0306716 34 2364 23 6.89349e+06 267783 618332. 2139.56 1.69 0.138682 0.12128 25762 151098 -1 1782 21 1295 1784 162485 36885 3.21091 3.21091 -120.796 -3.21091 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0284426 0.0248518 121 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 6.77 vpr 63.21 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30364 -1 -1 31 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64728 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1254 15203 3953 9019 2231 63.2 MiB 0.21 0.00 4.1318 -129.307 -4.1318 4.1318 0.84 0.000477734 0.000435379 0.0413461 0.037795 34 2820 23 6.89349e+06 436909 618332. 2139.56 1.72 0.192089 0.167378 25762 151098 -1 2345 20 1641 2166 182248 39607 3.39955 3.39955 -126.469 -3.39955 0 0 787024. 2723.27 0.25 0.08 0.16 -1 -1 0.25 0.0313995 0.0275238 171 81 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.29 vpr 63.39 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30600 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.86 1381 16974 4929 9664 2381 63.4 MiB 0.24 0.00 5.29596 -177.687 -5.29596 5.29596 0.79 0.000849633 0.00078579 0.0746223 0.0690612 36 3494 21 6.89349e+06 366440 648988. 2245.63 2.16 0.239848 0.211474 26050 158493 -1 2820 17 1901 2735 261577 53957 5.07405 5.07405 -182.909 -5.07405 0 0 828058. 2865.25 0.28 0.10 0.17 -1 -1 0.28 0.0312657 0.0277964 178 53 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.16 vpr 63.24 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30508 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.60 1376 18180 6112 9250 2818 63.2 MiB 0.33 0.01 5.13064 -174.448 -5.13064 5.13064 0.79 0.000841493 0.000778276 0.0795664 0.0736055 34 3613 48 6.89349e+06 366440 618332. 2139.56 2.18 0.27903 0.245404 25762 151098 -1 2866 21 2253 3201 304840 63244 4.63885 4.63885 -176.025 -4.63885 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0342619 0.0300834 175 55 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.91 vpr 62.90 MiB 0.03 6900 -1 -1 1 0.04 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.2 MiB 1.15 1013 14221 3579 9597 1045 62.9 MiB 0.21 0.00 4.30029 -147.314 -4.30029 4.30029 0.80 0.000735204 0.000679619 0.0591536 0.054724 34 2732 24 6.89349e+06 295971 618332. 2139.56 1.67 0.207278 0.181004 25762 151098 -1 2015 19 1406 1593 133316 30393 3.3494 3.3494 -133.253 -3.3494 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0275604 0.0241723 141 55 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.33 vpr 62.70 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30244 -1 -1 22 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.2 MiB 1.54 1168 10501 2617 6825 1059 62.7 MiB 0.17 0.00 4.23729 -139.76 -4.23729 4.23729 0.79 0.00074928 0.000693376 0.0432435 0.0399397 34 2803 22 6.89349e+06 310065 618332. 2139.56 1.79 0.160916 0.140494 25762 151098 -1 2315 18 1381 1746 171701 35037 3.5783 3.5783 -133.622 -3.5783 0 0 787024. 2723.27 0.25 0.08 0.16 -1 -1 0.25 0.0270172 0.0237269 146 82 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.02 vpr 63.16 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30276 -1 -1 29 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1158 18043 5948 9235 2860 63.2 MiB 0.28 0.00 3.9471 -130.183 -3.9471 3.9471 0.80 0.000784699 0.000725571 0.072532 0.0671166 36 2674 16 6.89349e+06 408721 648988. 2245.63 2.09 0.194166 0.172724 26050 158493 -1 2244 18 1420 2011 166835 35003 3.21861 3.21861 -122.147 -3.21861 0 0 828058. 2865.25 0.30 0.08 0.18 -1 -1 0.30 0.0288398 0.0253472 164 52 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.60 vpr 62.69 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30240 -1 -1 27 28 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.31 970 11031 2869 6600 1562 62.7 MiB 0.16 0.00 4.51585 -132.654 -4.51585 4.51585 0.83 0.000725368 0.000671798 0.0439386 0.0407139 30 2481 29 6.89349e+06 380534 556674. 1926.21 1.20 0.13909 0.122614 25186 138497 -1 1987 20 1339 2052 152088 33944 3.78146 3.78146 -130.249 -3.78146 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0288012 0.0252623 145 20 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 9.17 vpr 62.71 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30004 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.1 MiB 2.14 1087 9083 2557 5800 726 62.7 MiB 0.15 0.00 4.36859 -139.508 -4.36859 4.36859 0.87 0.000713369 0.000660723 0.0383408 0.0355121 38 2342 21 6.89349e+06 295971 678818. 2348.85 3.91 0.223689 0.194241 26626 170182 -1 2087 21 1472 2123 172136 36029 3.80594 3.80594 -138.667 -3.80594 0 0 902133. 3121.57 0.27 0.08 0.18 -1 -1 0.27 0.0290055 0.0253782 136 58 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.54 vpr 63.04 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30320 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.3 MiB 1.66 1180 8827 2269 5871 687 63.0 MiB 0.18 0.01 3.8008 -130.21 -3.8008 3.8008 0.79 0.000755359 0.000697646 0.0410145 0.0378738 36 2716 22 6.89349e+06 295971 648988. 2245.63 3.85 0.251226 0.217937 26050 158493 -1 2232 19 1513 1775 147110 31963 3.11881 3.11881 -119.74 -3.11881 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0283056 0.0248251 150 88 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.84 vpr 62.92 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30068 -1 -1 37 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.0 MiB 0.86 1032 15180 4497 8229 2454 62.9 MiB 0.24 0.01 4.35445 -144.691 -4.35445 4.35445 0.80 0.000763406 0.000706392 0.0515348 0.0476561 28 3008 36 6.89349e+06 521472 531479. 1839.03 1.89 0.161909 0.14298 24610 126494 -1 2392 22 1777 2806 285610 57698 3.9346 3.9346 -143.906 -3.9346 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0319121 0.0280462 151 -1 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 6.13 vpr 63.23 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 30448 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.4 MiB 1.20 1263 12351 3110 8140 1101 63.2 MiB 0.23 0.01 4.78058 -162.367 -4.78058 4.78058 0.80 0.000850726 0.000786559 0.0546154 0.0505032 34 3399 34 6.89349e+06 366440 618332. 2139.56 1.83 0.235609 0.206337 25762 151098 -1 2706 18 1885 2496 205287 45812 4.02319 4.02319 -158.993 -4.02319 0 0 787024. 2723.27 0.28 0.09 0.14 -1 -1 0.28 0.0317743 0.0285009 173 57 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.50 vpr 63.14 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 30328 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.3 MiB 1.59 1405 10743 3107 6650 986 63.1 MiB 0.22 0.01 4.9601 -169.723 -4.9601 4.9601 0.80 0.000853988 0.000789315 0.0487427 0.0451167 36 3325 24 6.89349e+06 366440 648988. 2245.63 2.64 0.224815 0.197085 26050 158493 -1 2749 22 2484 3506 327366 66012 4.46955 4.46955 -169.261 -4.46955 0 0 828058. 2865.25 0.32 0.13 0.17 -1 -1 0.32 0.0375745 0.033495 171 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.17 vpr 63.19 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30264 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1306 10087 2279 7315 493 63.2 MiB 0.17 0.00 4.3224 -145.723 -4.3224 4.3224 0.96 0.00056256 0.000512958 0.0299611 0.0274046 34 3934 28 6.89349e+06 380534 618332. 2139.56 2.01 0.160238 0.139554 25762 151098 -1 2951 21 2029 2952 296662 60214 3.78825 3.78825 -144.975 -3.78825 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0342995 0.0301141 172 62 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.14 vpr 62.56 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30272 -1 -1 19 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.48 814 9181 2458 5686 1037 62.6 MiB 0.15 0.00 3.809 -121.257 -3.809 3.809 0.81 0.000669537 0.000619078 0.0371441 0.0343624 34 2348 26 6.89349e+06 267783 618332. 2139.56 1.62 0.172551 0.150198 25762 151098 -1 1926 17 1215 1701 148054 32425 3.21081 3.21081 -123.009 -3.21081 0 0 787024. 2723.27 0.26 0.06 0.13 -1 -1 0.26 0.0191238 0.0168484 122 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.39 vpr 62.97 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30408 -1 -1 26 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.4 MiB 2.09 1287 12568 3293 7724 1551 63.0 MiB 0.23 0.00 5.05854 -160.711 -5.05854 5.05854 0.84 0.000802561 0.00074191 0.056408 0.0522562 34 3197 46 6.89349e+06 366440 618332. 2139.56 2.07 0.243138 0.212621 25762 151098 -1 2658 21 2057 2844 305752 60544 4.59485 4.59485 -165.774 -4.59485 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0327601 0.0288025 165 58 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.65 vpr 63.48 MiB 0.02 7232 -1 -1 1 0.04 -1 -1 30640 -1 -1 30 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.6 MiB 1.44 1479 11383 3062 7492 829 63.5 MiB 0.19 0.00 4.57601 -155.587 -4.57601 4.57601 0.80 0.000554835 0.000506133 0.038048 0.0347895 34 3886 33 6.89349e+06 422815 618332. 2139.56 2.04 0.197341 0.171651 25762 151098 -1 3027 19 1951 2004 192662 42165 4.26295 4.26295 -162.459 -4.26295 0 0 787024. 2723.27 0.24 0.09 0.14 -1 -1 0.24 0.0354695 0.0311564 204 106 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.07 vpr 63.29 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30344 -1 -1 29 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.60 1301 16445 5093 9336 2016 63.3 MiB 0.31 0.01 5.17904 -171.173 -5.17904 5.17904 0.81 0.000862025 0.000797158 0.0746337 0.0689686 34 3498 49 6.89349e+06 408721 618332. 2139.56 2.22 0.22399 0.197152 25762 151098 -1 2699 19 2082 2598 213053 46293 4.54965 4.54965 -166.671 -4.54965 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0258743 0.0228372 186 79 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 9.04 vpr 63.07 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30480 -1 -1 28 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.2 MiB 1.84 1252 12351 3368 8179 804 63.1 MiB 0.23 0.01 4.25135 -136.296 -4.25135 4.25135 0.82 0.00082488 0.000763193 0.0533342 0.0493132 36 3049 24 6.89349e+06 394628 648988. 2245.63 3.92 0.263 0.229299 26050 158493 -1 2522 21 1966 2807 250416 53606 3.89165 3.89165 -138.409 -3.89165 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0350072 0.0308602 175 83 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.40 vpr 63.26 MiB 0.05 7016 -1 -1 1 0.04 -1 -1 30476 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.56 1349 14160 4180 8412 1568 63.3 MiB 0.27 0.01 5.11687 -171.214 -5.11687 5.11687 0.84 0.000842768 0.000779186 0.0645257 0.0595672 34 3509 33 6.89349e+06 366440 618332. 2139.56 2.49 0.24975 0.219248 25762 151098 -1 2815 22 2450 3498 334320 66324 4.55265 4.55265 -173.997 -4.55265 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0314941 0.0277072 177 58 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.03 vpr 63.14 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30180 -1 -1 30 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.3 MiB 1.78 1337 17431 5595 9274 2562 63.1 MiB 0.28 0.00 4.49555 -136.793 -4.49555 4.49555 0.85 0.000791152 0.000730721 0.0705563 0.0652683 34 3084 22 6.89349e+06 422815 618332. 2139.56 1.83 0.227431 0.200041 25762 151098 -1 2573 22 1699 2439 269215 77632 3.6655 3.6655 -128.202 -3.6655 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0355038 0.0311727 170 81 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.16 vpr 62.41 MiB 0.08 6868 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 0.47 851 10744 3065 7267 412 62.4 MiB 0.16 0.00 3.7888 -133.854 -3.7888 3.7888 0.79 0.000664279 0.00061421 0.0431888 0.0399042 34 2303 19 6.89349e+06 225501 618332. 2139.56 1.58 0.169832 0.148448 25762 151098 -1 1875 22 1383 2259 198659 43008 3.17461 3.17461 -133.102 -3.17461 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0228141 0.0200484 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.38 vpr 63.34 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.5 MiB 1.46 1266 16411 5685 8276 2450 63.3 MiB 0.29 0.01 5.17997 -174.972 -5.17997 5.17997 0.79 0.000812476 0.000752678 0.0711918 0.0658436 34 4061 33 6.89349e+06 380534 618332. 2139.56 2.56 0.259382 0.229027 25762 151098 -1 2843 23 2561 3505 347098 72064 4.80838 4.80838 -169.412 -4.80838 0 0 787024. 2723.27 0.31 0.11 0.16 -1 -1 0.31 0.0310767 0.027682 174 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.98 vpr 63.29 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30352 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.6 MiB 2.48 1294 9791 2343 6863 585 63.3 MiB 0.20 0.01 5.01095 -168.663 -5.01095 5.01095 0.79 0.000855218 0.0007906 0.0450689 0.0416954 34 4015 26 6.89349e+06 352346 618332. 2139.56 2.31 0.218518 0.191067 25762 151098 -1 3070 19 2361 3295 385436 74721 4.64369 4.64369 -175.083 -4.64369 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0336223 0.0295951 176 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.28 vpr 62.86 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.0 MiB 1.47 971 13043 4021 6975 2047 62.9 MiB 0.18 0.00 3.51612 -116.281 -3.51612 3.51612 0.81 0.000681185 0.000626018 0.0520063 0.0480932 34 2444 25 6.89349e+06 267783 618332. 2139.56 1.63 0.191633 0.167758 25762 151098 -1 1981 21 1089 1354 142020 29449 2.8425 2.8425 -109.803 -2.8425 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0281789 0.0246282 128 47 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.97 vpr 62.44 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30216 -1 -1 17 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.78 734 11604 2641 7381 1582 62.4 MiB 0.17 0.00 3.8218 -128.161 -3.8218 3.8218 0.87 0.000639702 0.000589814 0.0465646 0.0430797 32 2297 21 6.89349e+06 239595 586450. 2029.24 1.08 0.124783 0.110479 25474 144626 -1 1870 20 1329 2112 204763 44912 3.24681 3.24681 -128.647 -3.24681 0 0 744469. 2576.02 0.25 0.07 0.14 -1 -1 0.25 0.0192521 0.0170308 112 -1 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.68 vpr 63.20 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30232 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.4 MiB 1.29 1234 14147 4178 8444 1525 63.2 MiB 0.25 0.01 4.31849 -141.833 -4.31849 4.31849 0.86 0.000935451 0.000873958 0.0604024 0.0560403 34 2949 32 6.89349e+06 352346 618332. 2139.56 2.19 0.24858 0.219506 25762 151098 -1 2362 26 1673 2115 256666 68253 3.8146 3.8146 -142.771 -3.8146 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0386033 0.0337317 158 56 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.91 vpr 63.32 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30372 -1 -1 26 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.5 MiB 1.69 1314 10341 2747 6842 752 63.3 MiB 0.21 0.01 5.10864 -160.907 -5.10864 5.10864 0.84 0.000852262 0.000789309 0.0467007 0.0431709 34 3359 28 6.89349e+06 366440 618332. 2139.56 2.08 0.224664 0.196245 25762 151098 -1 2652 20 1871 2249 217061 46097 4.49045 4.49045 -159.834 -4.49045 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0325533 0.0285877 170 81 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.62 vpr 63.53 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30432 -1 -1 41 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.7 MiB 0.95 1292 15419 3797 10101 1521 63.5 MiB 0.27 0.01 4.85078 -164.688 -4.85078 4.85078 0.79 0.000875821 0.000810615 0.056884 0.0525624 34 3344 31 6.89349e+06 577847 618332. 2139.56 2.36 0.242296 0.212769 25762 151098 -1 2706 22 2017 3264 290736 61788 4.57459 4.57459 -168.113 -4.57459 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0362 0.0317463 183 -1 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.57 vpr 63.12 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30392 -1 -1 27 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1124 9395 2323 6078 994 63.1 MiB 0.17 0.00 3.8961 -125.22 -3.8961 3.8961 0.90 0.000779862 0.000721334 0.0397479 0.0367604 34 2608 30 6.89349e+06 380534 618332. 2139.56 1.68 0.203282 0.177241 25762 151098 -1 2170 18 1582 2251 195239 41667 3.15261 3.15261 -121.154 -3.15261 0 0 787024. 2723.27 0.34 0.08 0.18 -1 -1 0.34 0.0290196 0.0255709 160 47 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 5.65 vpr 62.33 MiB 0.03 6792 -1 -1 1 0.03 -1 -1 30620 -1 -1 22 27 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63828 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 23.9 MiB 1.10 915 13031 5095 6351 1585 62.3 MiB 0.18 0.00 4.34539 -126.288 -4.34539 4.34539 0.81 0.000616492 0.000570357 0.0482495 0.0446417 34 2080 22 6.89349e+06 310065 618332. 2139.56 1.57 0.167934 0.146855 25762 151098 -1 1772 16 1085 1549 150890 30808 3.6703 3.6703 -125.114 -3.6703 0 0 787024. 2723.27 0.26 0.06 0.13 -1 -1 0.26 0.0210215 0.0184999 112 26 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.48 vpr 63.41 MiB 0.03 7268 -1 -1 1 0.04 -1 -1 30424 -1 -1 32 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.58 1748 16302 4126 10044 2132 63.4 MiB 0.34 0.01 5.09354 -170.611 -5.09354 5.09354 0.81 0.000593925 0.000541642 0.0675109 0.0623285 34 4402 48 6.89349e+06 451003 618332. 2139.56 2.51 0.301644 0.263481 25762 151098 -1 3508 22 2585 3669 343037 71730 4.44325 4.44325 -166.851 -4.44325 0 0 787024. 2723.27 0.27 0.13 0.16 -1 -1 0.27 0.0432628 0.0379938 219 85 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.42 vpr 63.27 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30384 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.7 MiB 2.19 1467 12661 2948 8528 1185 63.3 MiB 0.23 0.01 5.14784 -166.315 -5.14784 5.14784 0.81 0.000899969 0.000837618 0.0551654 0.0511469 34 3712 49 6.89349e+06 436909 618332. 2139.56 2.04 0.232874 0.203602 25762 151098 -1 2946 21 2233 2583 234439 50015 4.57455 4.57455 -167.42 -4.57455 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.0268724 0.0235833 201 105 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.07 vpr 63.15 MiB 0.02 6992 -1 -1 1 0.04 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.4 MiB 2.33 1133 9914 2313 7132 469 63.1 MiB 0.17 0.00 4.28535 -139.234 -4.28535 4.28535 0.79 0.000754432 0.000697125 0.0421082 0.0389199 34 2977 23 6.89349e+06 310065 618332. 2139.56 1.73 0.190624 0.166337 25762 151098 -1 2380 20 1560 1805 189048 39047 3.5891 3.5891 -135.452 -3.5891 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0206529 0.0181477 150 86 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.45 vpr 63.01 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30248 -1 -1 23 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1114 12951 3612 7720 1619 63.0 MiB 0.23 0.00 4.53785 -150.754 -4.53785 4.53785 0.83 0.000789805 0.000729978 0.0557382 0.0515583 34 2710 25 6.89349e+06 324158 618332. 2139.56 1.72 0.214259 0.18811 25762 151098 -1 2246 21 1441 2064 174635 41141 3.97086 3.97086 -148.232 -3.97086 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.03384 0.0297067 151 31 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.07 vpr 63.42 MiB 0.03 7204 -1 -1 1 0.04 -1 -1 30544 -1 -1 30 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64944 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.7 MiB 1.78 1475 19413 5609 11709 2095 63.4 MiB 0.36 0.01 4.64537 -154.979 -4.64537 4.64537 0.81 0.00093173 0.000855291 0.0886088 0.0819644 34 3531 23 6.89349e+06 422815 618332. 2139.56 2.03 0.271435 0.238783 25762 151098 -1 2771 19 2085 2846 264065 53778 4.04596 4.04596 -152.134 -4.04596 0 0 787024. 2723.27 0.24 0.09 0.10 -1 -1 0.24 0.0323139 0.0284292 193 50 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.42 vpr 63.13 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30400 -1 -1 28 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.4 MiB 1.75 1223 16773 5429 8542 2802 63.1 MiB 0.26 0.01 4.28025 -135.791 -4.28025 4.28025 0.89 0.00059547 0.000543019 0.0524847 0.0480828 36 2785 20 6.89349e+06 394628 648988. 2245.63 2.10 0.175524 0.154458 26050 158493 -1 2364 18 1465 2272 195212 39751 3.6611 3.6611 -134.254 -3.6611 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0201544 0.0178216 162 50 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.18 vpr 63.33 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30284 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.5 MiB 1.33 1373 17066 5393 8866 2807 63.3 MiB 0.26 0.00 5.03124 -168.563 -5.03124 5.03124 0.97 0.00054544 0.00049666 0.048884 0.0446372 34 3519 30 6.89349e+06 394628 618332. 2139.56 2.28 0.201542 0.175906 25762 151098 -1 2722 21 2081 2842 299132 59932 4.28315 4.28315 -158.84 -4.28315 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0346574 0.0304976 173 61 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.76 vpr 63.31 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30344 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.66 1418 13147 3928 7969 1250 63.3 MiB 0.24 0.01 3.78872 -134.171 -3.78872 3.78872 0.79 0.00085217 0.000787577 0.0583874 0.0540226 34 3355 23 6.89349e+06 380534 618332. 2139.56 1.85 0.225581 0.197839 25762 151098 -1 2832 22 2160 2944 280190 58885 3.17981 3.17981 -133.721 -3.17981 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.035955 0.0315944 175 61 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.84 vpr 62.73 MiB 0.03 6804 -1 -1 1 0.04 -1 -1 30204 -1 -1 21 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.2 MiB 1.22 802 14322 5252 6511 2559 62.7 MiB 0.19 0.00 3.809 -119.785 -3.809 3.809 0.78 0.000649618 0.000600477 0.0542549 0.0501807 34 2039 20 6.89349e+06 295971 618332. 2139.56 1.52 0.178547 0.156479 25762 151098 -1 1734 18 1378 1799 177816 35993 3.12481 3.12481 -115.748 -3.12481 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0233669 0.0204605 118 28 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.09 vpr 62.90 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 29972 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.0 MiB 1.10 1059 7038 1561 5080 397 62.9 MiB 0.11 0.00 4.31213 -129.707 -4.31213 4.31213 0.83 0.000726076 0.000672124 0.021582 0.0198751 34 2688 48 6.89349e+06 281877 618332. 2139.56 1.96 0.190343 0.164319 25762 151098 -1 2144 19 1351 1641 133763 30853 3.90915 3.90915 -130.083 -3.90915 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0271962 0.0238528 136 79 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.57 vpr 63.01 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 30304 -1 -1 24 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.27 1144 15255 6301 7544 1410 63.0 MiB 0.25 0.01 4.60015 -151.135 -4.60015 4.60015 0.80 0.000786223 0.000727371 0.0660937 0.0612341 34 3190 33 6.89349e+06 338252 618332. 2139.56 1.98 0.203611 0.179626 25762 151098 -1 2239 19 1844 2733 251452 52853 3.97076 3.97076 -149.336 -3.97076 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0257501 0.0230233 154 29 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.63 vpr 62.61 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30356 -1 -1 21 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64108 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 24.0 MiB 1.09 955 13610 4945 6467 2198 62.6 MiB 0.18 0.00 3.4839 -106.878 -3.4839 3.4839 0.80 0.000654997 0.000604811 0.0520596 0.0481172 34 2268 20 6.89349e+06 295971 618332. 2139.56 1.53 0.179082 0.156657 25762 151098 -1 1919 19 1310 1518 142462 30697 2.92026 2.92026 -107.338 -2.92026 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0246718 0.0215374 123 48 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.82 vpr 62.49 MiB 0.02 6752 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.0 MiB 1.84 1000 12186 3922 6390 1874 62.5 MiB 0.19 0.00 3.839 -135.657 -3.839 3.839 0.86 0.000708044 0.000654506 0.0507423 0.0469495 34 2640 18 6.89349e+06 253689 618332. 2139.56 1.81 0.188148 0.165103 25762 151098 -1 2213 19 1673 2318 259352 50229 3.14671 3.14671 -131.475 -3.14671 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.026408 0.0231304 127 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.17 vpr 63.15 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30224 -1 -1 27 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64668 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.3 MiB 1.66 1201 16773 5048 9300 2425 63.2 MiB 0.28 0.00 4.20938 -143.511 -4.20938 4.20938 0.83 0.000809088 0.000747803 0.0706755 0.0653487 36 2839 20 6.89349e+06 380534 648988. 2245.63 2.08 0.232012 0.205171 26050 158493 -1 2455 20 1991 2822 283713 57574 3.5954 3.5954 -142.131 -3.5954 0 0 828058. 2865.25 0.27 0.10 0.15 -1 -1 0.27 0.0319135 0.0280185 164 60 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.75 vpr 62.62 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30204 -1 -1 21 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 24.0 MiB 1.30 877 7953 1966 5579 408 62.6 MiB 0.13 0.00 3.31212 -108.619 -3.31212 3.31212 0.78 0.000673833 0.000623221 0.0314669 0.0291215 34 2313 21 6.89349e+06 295971 618332. 2139.56 1.55 0.149587 0.13017 25762 151098 -1 1934 14 1112 1375 116562 25693 2.88726 2.88726 -110.203 -2.88726 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0203071 0.0179023 125 49 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.30 vpr 63.14 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30316 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1287 17711 6388 9306 2017 63.1 MiB 0.31 0.01 4.20729 -140.905 -4.20729 4.20729 0.80 0.000800397 0.000739551 0.0746785 0.0689568 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.69 0.237002 0.208689 25762 151098 -1 2529 17 1415 2007 217239 42638 3.6814 3.6814 -137.46 -3.6814 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0282034 0.0248585 162 56 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.65 vpr 63.29 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 30140 -1 -1 31 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64812 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1441 16921 4862 9627 2432 63.3 MiB 0.32 0.01 5.00842 -163.951 -5.00842 5.00842 0.85 0.000857635 0.000793296 0.0727666 0.0672497 36 3323 22 6.89349e+06 436909 648988. 2245.63 2.40 0.241615 0.212503 26050 158493 -1 2930 21 2238 3214 312910 63029 4.23384 4.23384 -159.107 -4.23384 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0350996 0.0308357 185 88 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 7.43 vpr 62.99 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30184 -1 -1 21 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.2 MiB 2.31 1150 11245 3095 6987 1163 63.0 MiB 0.17 0.00 3.53115 -123.245 -3.53115 3.53115 0.83 0.000733993 0.000679515 0.0357197 0.0326801 34 2954 36 6.89349e+06 295971 618332. 2139.56 2.02 0.19249 0.166701 25762 151098 -1 2384 20 1527 2113 189701 39339 2.98341 2.98341 -122.792 -2.98341 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0200207 0.0176252 137 54 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.29 vpr 62.90 MiB 0.02 6908 -1 -1 1 0.04 -1 -1 29980 -1 -1 20 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.0 MiB 1.31 1121 13443 3684 8167 1592 62.9 MiB 0.16 0.00 3.817 -131.483 -3.817 3.817 0.82 0.000443266 0.000403293 0.0342033 0.0311593 34 2918 33 6.89349e+06 281877 618332. 2139.56 1.88 0.183257 0.158808 25762 151098 -1 2375 19 1471 1757 175873 36845 3.22686 3.22686 -129.372 -3.22686 0 0 787024. 2723.27 0.29 0.08 0.14 -1 -1 0.29 0.0277574 0.0243328 139 60 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.57 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30496 -1 -1 27 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.4 MiB 1.33 1272 13147 3375 7731 2041 63.3 MiB 0.22 0.01 4.61515 -160.202 -4.61515 4.61515 0.79 0.000839251 0.000775731 0.0572085 0.0529622 36 3050 22 6.89349e+06 380534 648988. 2245.63 1.98 0.22241 0.195254 26050 158493 -1 2591 15 1738 2111 219335 43653 4.15236 4.15236 -152.966 -4.15236 0 0 828058. 2865.25 0.29 0.09 0.16 -1 -1 0.29 0.0273484 0.0241334 178 49 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.93 vpr 63.12 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30360 -1 -1 26 29 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1161 15639 4794 8641 2204 63.1 MiB 0.26 0.00 3.67945 -117.378 -3.67945 3.67945 0.80 0.000772442 0.000713852 0.0670503 0.0620143 30 2539 19 6.89349e+06 366440 556674. 1926.21 1.02 0.156778 0.139497 25186 138497 -1 2022 19 1469 1927 146494 31574 2.96516 2.96516 -115.184 -2.96516 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0289912 0.0254528 157 54 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 7.10 vpr 63.49 MiB 0.03 7316 -1 -1 1 0.04 -1 -1 30608 -1 -1 29 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.7 MiB 1.24 1517 16893 4857 9388 2648 63.5 MiB 0.24 0.00 4.97404 -168.093 -4.97404 4.97404 0.96 0.000578594 0.000527174 0.0514862 0.0470227 36 3707 47 6.89349e+06 408721 648988. 2245.63 2.47 0.280098 0.243549 26050 158493 -1 3088 21 2558 2957 322665 62271 4.54459 4.54459 -163.46 -4.54459 0 0 828058. 2865.25 0.29 0.12 0.16 -1 -1 0.29 0.0375571 0.0328063 203 117 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.59 vpr 62.34 MiB 0.03 6852 -1 -1 1 0.02 -1 -1 30164 -1 -1 16 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63832 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.7 MiB 0.59 803 5149 1186 3599 364 62.3 MiB 0.09 0.00 2.99217 -104.791 -2.99217 2.99217 0.80 0.000619018 0.00057283 0.0210958 0.0195791 30 1975 22 6.89349e+06 225501 556674. 1926.21 0.97 0.0980567 0.0858326 25186 138497 -1 1605 19 895 1455 108023 23403 2.76181 2.76181 -112.416 -2.76181 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0234085 0.020441 104 -1 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 7.15 vpr 63.32 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30248 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1396 18101 5815 9868 2418 63.3 MiB 0.30 0.00 5.41163 -177.078 -5.41163 5.41163 0.79 0.000854714 0.000789697 0.0775848 0.0716736 34 3517 43 6.89349e+06 394628 618332. 2139.56 2.24 0.274307 0.240874 25762 151098 -1 2890 18 2143 2753 258620 53081 5.19854 5.19854 -181.308 -5.19854 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0309189 0.0272431 179 89 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.45 vpr 63.19 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30044 -1 -1 24 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.4 MiB 1.98 1193 17248 5142 9796 2310 63.2 MiB 0.30 0.00 4.89074 -162.672 -4.89074 4.89074 0.78 0.000784014 0.000725067 0.0730916 0.067569 34 3597 29 6.89349e+06 338252 618332. 2139.56 2.30 0.210372 0.18557 25762 151098 -1 2747 21 2521 3161 334852 68612 4.44349 4.44349 -166.285 -4.44349 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0316634 0.027713 161 93 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.33 vpr 63.20 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 30192 -1 -1 25 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.4 MiB 1.49 1163 10187 2742 6187 1258 63.2 MiB 0.19 0.00 3.75965 -128.904 -3.75965 3.75965 0.81 0.000804646 0.000740412 0.0459106 0.0424699 34 3023 23 6.89349e+06 352346 618332. 2139.56 1.77 0.216003 0.189173 25762 151098 -1 2468 20 1474 2042 210296 42699 3.2337 3.2337 -126.334 -3.2337 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0326684 0.0287148 170 59 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.15 vpr 63.27 MiB 0.04 7364 -1 -1 1 0.03 -1 -1 30644 -1 -1 33 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.8 MiB 1.47 1578 21409 7235 11132 3042 63.3 MiB 0.41 0.01 5.18464 -176.869 -5.18464 5.18464 0.79 0.000995677 0.000921813 0.0995899 0.0922231 36 3737 27 6.89349e+06 465097 648988. 2245.63 3.28 0.309126 0.272923 26050 158493 -1 3165 21 2807 3319 366015 71035 4.79385 4.79385 -179.291 -4.79385 0 0 828058. 2865.25 0.26 0.13 0.16 -1 -1 0.26 0.0412303 0.0361672 224 81 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.13 vpr 62.22 MiB 0.11 6888 -1 -1 1 0.25 -1 -1 29996 -1 -1 16 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63712 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 1.04 774 12860 4018 7384 1458 62.2 MiB 0.15 0.00 3.08706 -94.2237 -3.08706 3.08706 0.79 0.000575212 0.000531696 0.0481709 0.0445662 34 1748 21 6.89349e+06 225501 618332. 2139.56 1.40 0.159445 0.139752 25762 151098 -1 1554 14 674 692 55467 12901 2.36767 2.36767 -92.4489 -2.36767 0 0 787024. 2723.27 0.25 0.04 0.15 -1 -1 0.25 0.0170858 0.0149423 93 51 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.63 vpr 62.46 MiB 0.11 6904 -1 -1 1 0.25 -1 -1 29888 -1 -1 21 30 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.14 936 13763 4663 7110 1990 62.5 MiB 0.19 0.00 4.23979 -138.497 -4.23979 4.23979 0.79 0.000667149 0.000616698 0.0536836 0.0497059 34 2082 18 6.89349e+06 295971 618332. 2139.56 1.64 0.181352 0.159798 25762 151098 -1 1768 20 1523 2266 206901 43532 3.3262 3.3262 -130.931 -3.3262 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0260891 0.0228084 124 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.27 vpr 62.57 MiB 0.11 6792 -1 -1 1 0.25 -1 -1 29708 -1 -1 18 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.0 MiB 2.02 1009 8448 2021 6048 379 62.6 MiB 0.20 0.01 4.33609 -148.866 -4.33609 4.33609 0.87 0.000803016 0.000750866 0.0431555 0.0403681 36 2700 20 6.89349e+06 253689 648988. 2245.63 2.34 0.18112 0.158675 26050 158493 -1 2281 23 1769 3110 278278 57305 3.6125 3.6125 -144.261 -3.6125 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0306847 0.0267853 129 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.36 vpr 62.21 MiB 0.11 6840 -1 -1 1 0.25 -1 -1 29952 -1 -1 24 25 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63700 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.8 MiB 1.11 636 10231 2621 6138 1472 62.2 MiB 0.15 0.00 3.787 -96.2626 -3.787 3.787 0.79 0.000580629 0.000538438 0.0353713 0.0327622 34 1776 26 6.89349e+06 338252 618332. 2139.56 1.57 0.155646 0.136116 25762 151098 -1 1437 20 1022 1367 112324 25574 3.04631 3.04631 -94.8291 -3.04631 0 0 787024. 2723.27 0.26 0.03 0.16 -1 -1 0.26 0.011913 0.0104578 107 19 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.74 vpr 63.43 MiB 0.11 7088 -1 -1 1 0.25 -1 -1 30268 -1 -1 28 32 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.27 1453 17273 5845 8574 2854 63.4 MiB 0.33 0.01 4.55715 -154.068 -4.55715 4.55715 0.80 0.000855803 0.000787727 0.0760713 0.0702838 36 3909 34 6.89349e+06 394628 648988. 2245.63 2.37 0.229838 0.203104 26050 158493 -1 3007 20 2568 3702 367411 72019 3.88186 3.88186 -150.304 -3.88186 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.034472 0.0302626 190 84 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 10.19 vpr 63.43 MiB 0.12 7124 -1 -1 1 0.25 -1 -1 30128 -1 -1 27 31 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64948 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.5 MiB 1.99 1285 13758 3623 8223 1912 63.4 MiB 0.26 0.01 4.84654 -156.987 -4.84654 4.84654 0.81 0.000854138 0.000789377 0.0626294 0.0578806 36 3253 21 6.89349e+06 380534 648988. 2245.63 4.07 0.293769 0.256715 26050 158493 -1 2736 19 2116 2884 294154 58412 4.38739 4.38739 -157.397 -4.38739 0 0 828058. 2865.25 0.34 0.11 0.16 -1 -1 0.34 0.0340432 0.0299655 183 88 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/config.txt index 704d5d7b142..4268abaa631 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/config.txt @@ -47,5 +47,5 @@ pass_requirements_file=pass_requirements.txt #We increase the critical path router iterations beyond the default 50, to avoid #spurrious routing failures at relaxed channel width (since we know they should #be routable via the minimum channel width search) -script_params=-starting_stage vpr -track_memory_usage -crit_path_router_iterations 60 --seed 250 +script_params=-starting_stage vpr -track_memory_usage -crit_path_router_iterations 60 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt index e7ea4f3cf48..5661cac943f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt @@ -1,21 +1,21 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 572.03 vpr 304.46 MiB 2.12 127116 -1 -1 18 86.99 -1 -1 66764 -1 -1 1012 133 24 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 311772 133 179 18379 18161 1 8999 1348 39 39 1521 clb auto 184.1 MiB 38.60 144653 730762 252485 457469 20808 214.3 MiB 34.29 0.33 18.0632 -145590 -18.0632 18.0632 7.78 0.0647769 0.0566222 6.92816 5.79209 112 210232 48 8.65315e+07 6.7694e+07 1.08482e+07 7132.26 334.21 34.1319 27.9798 228224 2324812 -1 189097 15 35559 128529 9171441 1448317 18.5229 18.5229 -156974 -18.5229 0 0 1.37577e+07 9045.20 7.66 6.48 3.07 -1 -1 7.66 3.50861 3.0563 -k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 932.91 vpr 712.39 MiB 5.94 372908 -1 -1 14 376.73 -1 -1 148568 -1 -1 2738 257 0 11 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 729484 257 32 36518 33906 1 19790 3038 63 63 3969 clb auto 379.8 MiB 88.10 243374 2180444 769966 1381940 28538 712.4 MiB 170.18 1.64 20.2445 -25110.7 -20.2445 20.2445 57.76 0.137785 0.121661 14.9631 12.547 74 383736 21 2.36641e+08 1.5192e+08 2.02178e+07 5093.92 141.91 50.8846 42.4119 502298 4195434 -1 372047 18 93679 421555 19362646 2835250 21.5811 21.5811 -25767.4 -21.5811 0 0 2.53694e+07 6391.88 11.31 14.15 4.67 -1 -1 11.31 7.34605 6.42361 -k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 247.85 vpr 162.64 MiB 0.65 57348 -1 -1 5 65.67 -1 -1 60508 -1 -1 616 36 0 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 166544 36 100 14036 11283 1 3221 752 31 31 961 clb auto 120.9 MiB 22.13 47466 325462 103444 204467 17551 154.0 MiB 11.98 0.10 14.8999 -2981.78 -14.8999 14.8999 3.64 0.0291058 0.0262294 3.40771 2.90666 64 77113 38 5.14688e+07 3.31987e+07 4.14665e+06 4314.93 122.78 13.1953 10.9983 112594 842736 -1 69171 18 13544 61217 2681893 353331 15.1178 15.1178 -3156.01 -15.1178 0 0 5.17798e+06 5388.12 2.44 2.53 0.92 -1 -1 2.44 1.60517 1.40542 -k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 9.44 vpr 70.59 MiB 0.86 45112 -1 -1 3 0.65 -1 -1 37696 -1 -1 92 142 0 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72284 142 193 1069 1140 1 565 427 14 14 196 clb auto 32.6 MiB 0.94 1776 145057 50878 74819 19360 70.6 MiB 0.80 0.01 3.3871 -518.476 -3.3871 3.3871 0.60 0.00272552 0.00252834 0.281214 0.261769 38 3968 24 9.20055e+06 4.95825e+06 467348. 2384.43 1.98 0.969062 0.900167 18724 93853 -1 3390 10 1176 1708 73641 19447 3.78656 3.78656 -562.598 -3.78656 0 0 593372. 3027.41 0.17 0.15 0.10 -1 -1 0.17 0.10677 0.101001 -k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 4.20 vpr 65.89 MiB 0.05 9444 -1 -1 3 0.30 -1 -1 34492 -1 -1 65 99 1 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67472 99 130 363 493 1 251 295 12 12 144 clb auto 27.5 MiB 0.24 684 70927 26093 33715 11119 65.9 MiB 0.26 0.01 2.16753 -221.96 -2.16753 2.16753 0.44 0.000906391 0.000832448 0.0733325 0.0677745 46 1573 9 5.66058e+06 4.05111e+06 378966. 2631.71 1.05 0.248479 0.226768 13518 73784 -1 1438 10 596 769 38199 11594 2.43996 2.43996 -238.909 -2.43996 0 0 486261. 3376.82 0.15 0.05 0.08 -1 -1 0.15 0.0308399 0.0290733 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 12.99 vpr 69.19 MiB 0.04 9268 -1 -1 6 0.24 -1 -1 34064 -1 -1 32 162 0 5 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70848 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 31.2 MiB 0.52 5073 90547 34495 49420 6632 69.2 MiB 1.15 0.02 15.7804 -1282.87 -15.7804 15.7804 1.06 0.00435754 0.00403661 0.421294 0.390413 50 11105 42 1.21132e+07 3.70461e+06 780532. 3048.95 6.89 1.47287 1.3655 26044 153858 -1 9384 19 3289 5657 1065524 289116 16.9436 16.9436 -1441.68 -16.9436 0 0 1.00276e+06 3917.05 0.45 0.49 0.18 -1 -1 0.45 0.182982 0.171996 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 11.50 vpr 67.98 MiB 0.03 8316 -1 -1 6 0.13 -1 -1 34104 -1 -1 20 66 0 7 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69616 66 96 866 607 1 547 189 18 18 324 mult_36 auto 29.8 MiB 0.53 4838 50053 18112 27527 4414 68.0 MiB 0.74 0.01 12.8146 -774.958 -12.8146 12.8146 0.88 0.00328685 0.00311923 0.310735 0.29466 52 10291 21 1.57076e+07 3.84988e+06 1.05274e+06 3249.19 5.68 1.09545 1.03295 34348 215132 -1 9583 18 2712 5397 1498229 374411 13.5078 13.5078 -855.66 -13.5078 0 0 1.38553e+06 4276.33 0.53 0.45 0.23 -1 -1 0.53 0.128525 0.122547 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 1101.79 vpr 654.54 MiB 6.63 206856 -1 -1 101 131.04 -1 -1 104540 -1 -1 2196 114 44 8 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 670244 114 102 38224 33865 1 18116 2464 57 57 3249 clb auto 364.9 MiB 102.96 233363 1898854 715121 1159121 24612 654.5 MiB 159.39 1.43 75.2443 -57434.8 -75.2443 75.2443 50.56 0.159502 0.126154 17.8617 14.7713 94 352768 36 1.92089e+08 1.45633e+08 2.02161e+07 6222.26 563.78 73.2124 59.8283 451367 4270599 -1 325149 22 71396 269734 16065113 2674929 76.0706 76.0706 -69889.3 -76.0706 0 0 2.54722e+07 7840.01 10.88 14.78 4.98 -1 -1 10.88 8.34701 7.19291 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 13564.36 vpr 2.15 GiB 25.90 702020 -1 -1 101 847.40 -1 -1 313984 -1 -1 7514 114 167 32 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2256332 114 102 124851 111146 1 59132 7929 103 103 10609 clb auto 1155.8 MiB 318.31 1032466 9965835 4156838 5766631 42366 2056.3 MiB 771.24 5.31 74.5507 -334650 -74.5507 74.5507 125.90 0.454897 0.369452 60.4486 49.7817 126 1390372 30 6.46441e+08 5.09111e+08 8.73307e+07 8231.76 11127.91 229.662 188.347 1710436 19091112 -1 1320676 23 217927 911181 56569625 8923882 74.6862 74.6862 -453362 -74.6862 0 0 1.10400e+08 10406.3 83.74 55.23 24.94 -1 -1 83.74 31.4103 26.3866 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 89.49 vpr 362.02 MiB 1.41 69568 -1 -1 5 7.63 -1 -1 53076 -1 -1 456 506 45 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 370712 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 59.9 MiB 7.29 16223 1177280 568012 422801 186467 362.0 MiB 7.11 0.11 8.00587 -2019.22 -8.00587 8.00587 24.29 0.0249164 0.0219072 3.38914 2.96174 38 24377 18 1.47946e+08 4.92362e+07 6.86579e+06 2746.32 20.04 9.36139 8.37248 258216 1426232 -1 23339 13 4164 5357 1236514 281438 8.40094 8.40094 -2302.67 -8.40094 0 0 8.69102e+06 3476.41 3.27 1.12 1.43 -1 -1 3.27 0.874301 0.805845 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 16.48 vpr 73.71 MiB 0.20 16812 -1 -1 2 0.14 -1 -1 33664 -1 -1 29 311 15 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75480 311 156 1019 1160 1 965 511 28 28 784 memory auto 33.2 MiB 0.74 8231 196543 68732 117636 10175 73.7 MiB 1.47 0.03 4.52468 -4317.72 -4.52468 4.52468 2.23 0.006134 0.00525217 0.612043 0.52581 40 14261 14 4.25198e+07 9.78293e+06 2.13295e+06 2720.61 5.81 2.0088 1.75458 78662 432578 -1 13504 13 2499 2881 758158 201838 4.67443 4.67443 -4902.09 -4.67443 0 0 2.67004e+06 3405.67 0.83 0.39 0.44 -1 -1 0.83 0.215315 0.19421 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 29.49 vpr 84.33 MiB 0.45 29316 -1 -1 4 1.88 -1 -1 38052 -1 -1 188 193 5 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86352 193 205 2863 2789 1 1455 591 20 20 400 memory auto 47.2 MiB 3.66 11761 241054 80292 135385 25377 84.3 MiB 2.90 0.04 4.93372 -2777.3 -4.93372 4.93372 1.05 0.00862198 0.00772494 0.89014 0.792613 50 22935 40 2.07112e+07 1.28721e+07 1.26946e+06 3173.65 13.85 3.26384 2.89484 41784 253636 -1 18523 16 5841 14780 887803 176010 4.89482 4.89482 -2987.7 -4.89482 0 0 1.63222e+06 4080.54 0.46 0.61 0.26 -1 -1 0.46 0.381932 0.349995 -k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 62.75 vpr 108.03 MiB 0.87 39700 -1 -1 8 4.30 -1 -1 42064 -1 -1 258 385 2 1 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 110624 385 394 4673 4537 1 2422 1040 27 27 729 io auto 62.8 MiB 10.83 30303 596211 231002 339947 25262 100.2 MiB 8.94 0.11 8.60469 -10297 -8.60469 8.60469 2.08 0.0182184 0.0169459 2.19112 2.0052 82 47551 31 3.93038e+07 1.53967e+07 3.81397e+06 5231.78 24.56 8.49354 7.7612 93757 790517 -1 43603 21 10876 39731 2324197 395854 8.83312 8.83312 -10565.6 -8.83312 0 0 4.78910e+06 6569.41 1.41 1.63 0.80 -1 -1 1.41 0.934482 0.866207 -k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 24.18 vpr 84.88 MiB 0.50 31752 -1 -1 3 1.17 -1 -1 40472 -1 -1 112 214 0 8 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86920 214 305 2963 2869 1 1445 639 19 19 361 io auto 47.1 MiB 3.27 11113 270237 88141 166398 15698 84.9 MiB 2.61 0.04 4.56481 -2678.35 -4.56481 4.56481 0.94 0.00830941 0.00760278 0.868366 0.795933 58 23299 26 1.72706e+07 9.20413e+06 1.32779e+06 3678.09 9.65 2.94882 2.69462 39763 268823 -1 19204 15 5801 13382 1782716 413666 4.86979 4.86979 -2952.78 -4.86979 0 0 1.69263e+06 4688.74 0.47 0.74 0.28 -1 -1 0.47 0.351894 0.328873 -k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 265.31 abc 92.53 MiB 2.08 38240 -1 -1 3 242.27 -1 -1 94752 -1 -1 156 38 0 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85820 38 36 2995 2744 1 1210 230 17 17 289 clb auto 47.0 MiB 2.75 11198 48102 12488 32954 2660 83.8 MiB 1.75 0.03 9.47702 -2551.65 -9.47702 9.47702 0.73 0.0072085 0.00641156 0.551771 0.484686 66 17157 42 1.34605e+07 8.40746e+06 1.18400e+06 4096.89 6.45 2.52021 2.19798 32635 233413 -1 15612 20 4572 12534 452358 76582 10.1892 10.1892 -2828.19 -10.1892 0 0 1.47169e+06 5092.36 0.39 0.53 0.25 -1 -1 0.39 0.383184 0.345279 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 14.07 vpr 73.27 MiB 0.29 20720 -1 -1 15 0.73 -1 -1 36024 -1 -1 65 45 3 1 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75032 45 32 1275 1232 1 831 146 14 14 196 memory auto 35.8 MiB 3.29 7392 30866 8721 18288 3857 73.3 MiB 0.91 0.01 10.9642 -7007.15 -10.9642 10.9642 0.47 0.00406084 0.00351085 0.351718 0.304936 66 14244 28 9.20055e+06 5.54311e+06 787562. 4018.17 5.11 1.3459 1.16995 22236 154735 -1 12410 16 3786 10125 950472 211280 11.4636 11.4636 -7526.89 -11.4636 0 0 978561. 4992.66 0.31 0.42 0.18 -1 -1 0.31 0.194878 0.176836 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 92.61 vpr 237.35 MiB 2.17 122724 -1 -1 5 8.45 -1 -1 70860 -1 -1 706 157 0 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 243044 157 197 23846 21799 1 6628 1060 33 33 1089 clb auto 181.9 MiB 10.56 41674 546662 181504 343118 22040 215.9 MiB 12.11 0.12 3.46682 -14136.8 -3.46682 3.46682 3.43 0.0377936 0.0323965 4.20989 3.57011 52 65347 47 6.0475e+07 3.80493e+07 3.78249e+06 3473.36 30.90 15.7586 13.3354 119479 787594 -1 58746 14 16993 27299 1169763 221324 3.70102 3.70102 -15909 -3.70102 0 0 4.97914e+06 4572.21 1.61 2.06 0.78 -1 -1 1.61 1.81822 1.62926 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 175.22 vpr 288.57 MiB 2.01 107976 -1 -1 3 42.21 -1 -1 85196 -1 -1 680 115 0 40 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 295500 115 145 23133 19546 1 9699 980 40 40 1600 mult_36 auto 181.6 MiB 10.83 80965 536130 181948 327422 26760 226.4 MiB 15.99 0.18 5.43333 -22538.2 -5.43333 5.43333 5.20 0.039059 0.0327748 4.58865 3.9089 90 127349 50 9.16046e+07 5.24886e+07 9.36380e+06 5852.37 65.28 20.529 17.5174 215224 1946903 -1 115905 14 30807 46641 7203438 1510777 5.68075 5.68075 -24326.3 -5.68075 0 0 1.17131e+07 7320.69 3.86 3.40 2.03 -1 -1 3.86 1.81819 1.64154 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 685.84 vpr 1.53 GiB 2.65 155928 -1 -1 3 8.80 -1 -1 202484 -1 -1 1652 149 0 324 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 1603292 149 182 65737 42630 1 35969 2307 104 104 10816 mult_36 auto 447.8 MiB 41.26 334645 2028828 725723 1238132 64973 1565.7 MiB 100.24 0.73 15.4668 -62727.2 -15.4668 15.4668 133.36 0.133527 0.120925 19.1542 16.8721 80 458268 38 6.67561e+08 2.17331e+08 5.94869e+07 5499.90 251.54 70.6411 62.0837 1421150 12563967 -1 438298 21 115507 135214 15408707 3163462 16.5178 16.5178 -69745.3 -16.5178 0 0 7.49726e+07 6931.63 35.32 11.69 13.21 -1 -1 35.32 7.38133 6.64245 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.48 vpr 64.60 MiB 0.11 10204 -1 -1 5 0.14 -1 -1 33284 -1 -1 14 11 0 0 success v8.0.0-10679-gf7ec2fdd6 release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-07-12T15:05:17 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66148 11 30 313 321 2 118 55 7 7 49 clb auto 26.4 MiB 0.31 415 2551 483 1993 75 64.6 MiB 0.06 0.00 2.62024 -172.563 -2.62024 2.28298 0.07 0.000878978 0.000785423 0.0266227 0.024245 34 896 15 1.07788e+06 754516 84249.8 1719.38 0.41 0.200381 0.172849 3756 15224 -1 720 14 520 915 30115 10025 2.47304 2.21531 -187.375 -2.47304 0 0 103542. 2113.11 0.02 0.06 0.01 -1 -1 0.02 0.0367955 0.033292 +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 334.51 vpr 379.41 MiB 3.48 126900 -1 -1 18 68.59 -1 -1 67024 -1 -1 1012 133 24 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 388520 133 179 18379 18161 1 8999 1348 39 39 1521 clb auto 184.7 MiB 34.98 144653 730762 252485 457469 20808 215.1 MiB 31.21 0.34 18.0632 -145590 -18.0632 18.0632 5.04 0.0949699 0.0849348 6.92038 5.86606 114 207069 34 8.65315e+07 6.7694e+07 1.10076e+07 7237.11 129.82 30.1398 25.3065 229744 2354338 -1 192822 17 39304 142167 9577015 1552698 18.4786 18.4786 -157744 -18.4786 0 0 1.39104e+07 9145.53 5.27 6.30 2.71 -1 -1 5.27 3.29953 2.90562 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 751.05 vpr 753.04 MiB 7.64 372888 -1 -1 14 278.00 -1 -1 148396 -1 -1 2738 257 0 11 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 771116 257 32 36518 33906 1 19790 3038 63 63 3969 clb auto 379.7 MiB 87.17 243374 2180444 769966 1381940 28538 753.0 MiB 110.09 1.06 20.2445 -25110.7 -20.2445 20.2445 40.15 0.117341 0.10575 13.1592 11.3509 72 398957 42 2.36641e+08 1.5192e+08 1.98694e+07 5006.15 140.30 51.4709 43.7839 498330 4113940 -1 367671 19 94831 437825 19320792 2831841 21.5512 21.5512 -25774.6 -21.5512 0 0 2.48734e+07 6266.93 8.56 12.31 4.18 -1 -1 8.56 6.23213 5.51098 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 143.10 vpr 194.41 MiB 0.64 57516 -1 -1 5 43.34 -1 -1 60372 -1 -1 616 36 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 199076 36 100 14036 11283 1 3221 752 31 31 961 clb auto 121.0 MiB 22.00 47466 325462 103444 204467 17551 154.0 MiB 10.96 0.11 14.8999 -2981.78 -14.8999 14.8999 3.09 0.0304882 0.0277551 3.14016 2.76455 66 74246 27 5.14688e+07 3.31987e+07 4.27576e+06 4449.28 43.83 14.329 12.2609 113554 863722 -1 69088 17 14218 67124 2829505 364339 15.0935 15.0935 -3313.09 -15.0935 0 0 5.30541e+06 5520.72 1.77 2.44 0.91 -1 -1 1.77 1.53016 1.35873 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 9.37 vpr 70.58 MiB 0.80 45112 -1 -1 3 0.54 -1 -1 37872 -1 -1 92 142 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72272 142 193 1069 1140 1 565 427 14 14 196 clb auto 32.5 MiB 0.97 1776 145057 50878 74819 19360 70.6 MiB 0.84 0.01 3.3871 -518.476 -3.3871 3.3871 0.47 0.00338519 0.00316723 0.320616 0.299895 38 3944 17 9.20055e+06 4.95825e+06 467348. 2384.43 1.85 1.02702 0.944306 18724 93853 -1 3342 10 1234 1866 74808 19487 3.78656 3.78656 -559.145 -3.78656 0 0 593372. 3027.41 0.16 0.13 0.11 -1 -1 0.16 0.0972087 0.091191 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.76 vpr 65.46 MiB 0.08 9588 -1 -1 3 0.28 -1 -1 34544 -1 -1 65 99 1 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67036 99 130 363 493 1 251 295 12 12 144 clb auto 27.1 MiB 0.23 684 70927 26093 33715 11119 65.5 MiB 0.31 0.01 2.16753 -221.96 -2.16753 2.16753 0.31 0.00137221 0.00128846 0.104274 0.0980084 46 1570 16 5.66058e+06 4.05111e+06 378966. 2631.71 0.98 0.351229 0.322262 13518 73784 -1 1440 9 608 775 39640 11994 2.43996 2.43996 -240.621 -2.43996 0 0 486261. 3376.82 0.15 0.05 0.09 -1 -1 0.15 0.0313242 0.0293003 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 13.27 vpr 69.14 MiB 0.03 9408 -1 -1 6 0.22 -1 -1 33948 -1 -1 32 162 0 5 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70804 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 31.1 MiB 0.45 5073 90547 34495 49420 6632 69.1 MiB 0.99 0.02 15.7804 -1282.87 -15.7804 15.7804 0.66 0.00405623 0.00382514 0.373164 0.351728 56 10420 22 1.21132e+07 3.70461e+06 870502. 3400.40 8.11 1.84712 1.71859 27064 172478 -1 9372 20 3179 5421 1111490 298164 17.3293 17.3293 -1452.82 -17.3293 0 0 1.11200e+06 4343.75 0.28 0.45 0.19 -1 -1 0.28 0.18742 0.175966 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 10.58 vpr 67.99 MiB 0.03 8528 -1 -1 6 0.14 -1 -1 33964 -1 -1 20 66 0 7 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69620 66 96 866 607 1 547 189 18 18 324 mult_36 auto 29.8 MiB 0.60 4838 50053 18112 27527 4414 68.0 MiB 0.76 0.01 12.8146 -774.958 -12.8146 12.8146 1.03 0.00328392 0.00312457 0.335251 0.318673 52 10368 20 1.57076e+07 3.84988e+06 1.05274e+06 3249.19 4.79 1.00021 0.939642 34348 215132 -1 9403 18 2647 5354 1543699 385836 13.518 13.518 -858.135 -13.518 0 0 1.38553e+06 4276.33 0.38 0.52 0.25 -1 -1 0.38 0.157423 0.148945 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 669.25 vpr 707.74 MiB 5.63 207040 -1 -1 101 92.73 -1 -1 104572 -1 -1 2196 114 44 8 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 724724 114 102 38224 33865 1 18116 2464 57 57 3249 clb auto 363.4 MiB 96.88 233363 1898854 715121 1159121 24612 653.2 MiB 115.49 0.99 75.2443 -57434.8 -75.2443 75.2443 34.28 0.132286 0.110566 16.6451 14.0968 96 357351 33 1.92089e+08 1.45633e+08 2.06182e+07 6346.02 244.45 68.0815 56.8997 454615 4338889 -1 324899 23 71564 277559 15790096 2642317 75.9367 75.9367 -69587 -75.9367 0 0 2.57864e+07 7936.73 9.23 13.11 4.63 -1 -1 9.23 7.59306 6.59673 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 3305.08 vpr 2.49 GiB 25.67 702032 -1 -1 101 798.36 -1 -1 313716 -1 -1 7514 114 167 32 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2615672 114 102 124851 111146 1 59132 7929 103 103 10609 clb auto 1155.7 MiB 316.67 1032466 9965835 4156838 5766631 42366 2056.0 MiB 592.69 5.15 74.5507 -334650 -74.5507 74.5507 110.12 0.440059 0.3582 58.711 48.392 130 1376063 21 6.46441e+08 5.09111e+08 8.95632e+07 8442.19 1168.57 275.976 227.761 1731652 19555380 -1 1325934 22 231410 984155 57188753 9060162 74.5874 74.5874 -463161 -74.5874 0 0 1.13461e+08 10694.8 47.83 43.82 22.66 -1 -1 47.83 24.3708 21.0258 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 91.45 vpr 361.89 MiB 1.36 69520 -1 -1 5 7.57 -1 -1 52836 -1 -1 456 506 45 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 370572 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 59.8 MiB 7.42 16223 1177280 568012 422801 186467 361.9 MiB 7.56 0.12 8.00587 -2019.22 -8.00587 8.00587 25.63 0.02562 0.022921 3.52136 3.09474 38 24780 18 1.47946e+08 4.92362e+07 6.86579e+06 2746.32 20.49 9.66293 8.65487 258216 1426232 -1 23762 13 4340 5558 1125042 273145 8.45924 8.45924 -2949.42 -8.45924 0 0 8.69102e+06 3476.41 3.31 1.11 1.48 -1 -1 3.31 0.877992 0.807452 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 16.88 vpr 73.70 MiB 0.20 16788 -1 -1 2 0.14 -1 -1 33576 -1 -1 29 311 15 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75464 311 156 1019 1160 1 965 511 28 28 784 memory auto 33.3 MiB 0.74 8231 196543 68732 117636 10175 73.7 MiB 1.20 0.02 4.52468 -4317.72 -4.52468 4.52468 2.48 0.00269112 0.0023271 0.476172 0.41459 40 14599 13 4.25198e+07 9.78293e+06 2.13295e+06 2720.61 5.72 1.93326 1.69891 78662 432578 -1 13695 14 2681 3067 712116 200214 4.67443 4.67443 -5040.85 -4.67443 0 0 2.67004e+06 3405.67 0.86 0.42 0.45 -1 -1 0.86 0.226767 0.210272 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 29.69 vpr 84.12 MiB 0.48 29288 -1 -1 4 2.00 -1 -1 38044 -1 -1 188 193 5 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86144 193 205 2863 2789 1 1455 591 20 20 400 memory auto 47.1 MiB 3.76 11761 241054 80292 135385 25377 84.1 MiB 2.78 0.04 4.93372 -2777.3 -4.93372 4.93372 1.16 0.00851002 0.00771234 0.840903 0.754452 56 20831 22 2.07112e+07 1.28721e+07 1.41661e+06 3541.53 13.43 3.64129 3.25885 43380 284034 -1 18181 16 5578 13970 734917 144981 4.89371 4.89371 -3034.85 -4.89371 0 0 1.80858e+06 4521.44 0.54 0.67 0.33 -1 -1 0.54 0.426403 0.393408 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 66.05 vpr 110.19 MiB 0.90 39740 -1 -1 8 4.57 -1 -1 41912 -1 -1 258 385 2 1 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 112836 385 394 4673 4537 1 2422 1040 27 27 729 io auto 62.9 MiB 10.85 30303 596211 231002 339947 25262 99.7 MiB 9.10 0.12 8.60469 -10297 -8.60469 8.60469 2.10 0.0188485 0.0175664 2.21796 2.04021 82 48195 38 3.93038e+07 1.53967e+07 3.81397e+06 5231.78 27.53 8.80953 8.09745 93757 790517 -1 43646 19 11211 39961 2185089 375272 8.82095 8.82095 -10570.5 -8.82095 0 0 4.78910e+06 6569.41 1.47 1.63 0.81 -1 -1 1.47 1.0011 0.93811 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 25.40 vpr 84.58 MiB 0.49 31632 -1 -1 3 1.07 -1 -1 40448 -1 -1 112 214 0 8 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86608 214 305 2963 2869 1 1445 639 19 19 361 io auto 47.0 MiB 3.27 11113 270237 88141 166398 15698 84.6 MiB 2.85 0.04 4.56481 -2678.35 -4.56481 4.56481 1.12 0.00978515 0.00901614 1.00498 0.928535 58 23989 36 1.72706e+07 9.20413e+06 1.32779e+06 3678.09 10.52 3.34067 3.0635 39763 268823 -1 19085 19 5952 13555 1696447 393990 4.88418 4.88418 -2941.15 -4.88418 0 0 1.69263e+06 4688.74 0.47 0.80 0.33 -1 -1 0.47 0.412612 0.384576 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 260.85 abc 92.81 MiB 1.64 38328 -1 -1 3 233.45 -1 -1 95040 -1 -1 156 38 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85960 38 36 2995 2744 1 1210 230 17 17 289 clb auto 47.1 MiB 2.87 11198 48102 12488 32954 2660 83.9 MiB 1.84 0.03 9.47702 -2551.65 -9.47702 9.47702 0.74 0.00790518 0.00709338 0.604681 0.534861 78 15789 20 1.34605e+07 8.40746e+06 1.34572e+06 4656.47 10.65 3.51292 3.07412 34939 273081 -1 15055 17 4313 12021 442097 72275 10.1903 10.1903 -2809.51 -10.1903 0 0 1.70510e+06 5900.00 0.44 0.51 0.29 -1 -1 0.44 0.368411 0.334691 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 15.94 vpr 72.44 MiB 0.35 20592 -1 -1 15 0.99 -1 -1 36068 -1 -1 65 45 3 1 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 74176 45 32 1275 1232 1 831 146 14 14 196 memory auto 34.8 MiB 3.34 7392 30866 8721 18288 3857 72.4 MiB 0.93 0.01 10.9642 -7007.15 -10.9642 10.9642 0.46 0.00434545 0.00379478 0.375464 0.328883 64 14938 29 9.20055e+06 5.54311e+06 762053. 3888.03 6.56 1.71215 1.49047 22040 150681 -1 12702 16 4281 11340 960809 217696 11.5643 11.5643 -7756.46 -11.5643 0 0 953435. 4864.47 0.24 0.46 0.18 -1 -1 0.24 0.223488 0.204316 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 92.79 vpr 238.91 MiB 2.33 122740 -1 -1 5 9.33 -1 -1 70704 -1 -1 706 157 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 244640 157 197 23846 21799 1 6628 1060 33 33 1089 clb auto 182.2 MiB 10.65 41674 546662 181504 343118 22040 216.0 MiB 12.43 0.13 3.46682 -14136.8 -3.46682 3.46682 3.65 0.0384764 0.0331564 4.29849 3.631 52 65482 42 6.0475e+07 3.80493e+07 3.78249e+06 3473.36 29.96 16.611 14.0752 119479 787594 -1 59123 14 18596 29525 1142310 223069 3.69991 3.69991 -15787.9 -3.69991 0 0 4.97914e+06 4572.21 1.56 2.02 0.77 -1 -1 1.56 1.78757 1.60846 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 210.40 vpr 347.64 MiB 2.02 108036 -1 -1 3 41.38 -1 -1 84872 -1 -1 680 115 0 40 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 355988 115 145 23133 19546 1 9699 980 40 40 1600 mult_36 auto 181.3 MiB 11.19 80965 536130 181948 327422 26760 226.8 MiB 17.53 0.20 5.43333 -22538.2 -5.43333 5.43333 5.29 0.0421382 0.0350196 5.18053 4.41876 94 127526 29 9.16046e+07 5.24886e+07 9.73810e+06 6086.31 97.45 24.8949 21.3325 220020 2042174 -1 117582 15 32665 49993 8249104 1735049 5.69071 5.69071 -24837.4 -5.69071 0 0 1.22648e+07 7665.48 4.84 4.30 2.27 -1 -1 4.84 2.12367 1.90198 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 684.23 vpr 1.55 GiB 2.75 155876 -1 -1 3 9.07 -1 -1 202388 -1 -1 1652 149 0 324 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 1627296 149 182 65737 42630 1 35969 2307 104 104 10816 mult_36 auto 446.2 MiB 41.69 334645 2028828 725723 1238132 64973 1589.2 MiB 105.48 0.76 15.4668 -62727.2 -15.4668 15.4668 137.30 0.136967 0.124422 20.0828 17.7652 76 473830 41 6.67561e+08 2.17331e+08 5.69471e+07 5265.08 245.93 70.6729 62.1757 1388702 11875539 -1 456557 22 134434 158539 18740521 3907514 16.3764 16.3764 -70876 -16.3764 0 0 7.12204e+07 6584.73 26.92 12.85 12.39 -1 -1 26.92 7.63362 6.86746 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 3.62 vpr 63.87 MiB 0.13 9996 -1 -1 5 0.61 -1 -1 33072 -1 -1 14 11 0 0 success v8.0.0-10952-g2cc04cabe-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-14T21:42:43 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65400 11 30 313 321 2 118 55 7 7 49 clb auto 25.6 MiB 0.30 415 2551 483 1993 75 63.9 MiB 0.06 0.00 2.62024 -172.563 -2.62024 2.28298 0.07 0.000987605 0.000894184 0.0291761 0.0267773 34 851 20 1.07788e+06 754516 84249.8 1719.38 0.45 0.230775 0.198274 3756 15224 -1 721 14 511 913 35378 11233 2.52106 2.22169 -187.601 -2.52106 0 0 103542. 2113.11 0.02 0.06 0.02 -1 -1 0.02 0.0361342 0.0323658 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/config/config.txt index 72bc9a25270..12ca36138ac 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_update_lb_delays/config/config.txt @@ -24,6 +24,6 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements_fixed_chan_width.txt # Script parameters -script_params_common = -starting_stage vpr --route_chan_width 70 +script_params_common = -starting_stage vpr --route_chan_width 70 --seed 3 script_params_list_add = --router_update_lower_bound_delays off script_params_list_add = --router_update_lower_bound_delays on diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/config.txt index 13261584247..d4046ffc179 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_routing/config/config.txt @@ -26,4 +26,4 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params_common = -start odin --route_type global +script_params_common = -start odin --route_type global --seed 3 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/config/config.txt index 72bc9a25270..12ca36138ac 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_router_update_lb_delays/config/config.txt @@ -24,6 +24,6 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements_fixed_chan_width.txt # Script parameters -script_params_common = -starting_stage vpr --route_chan_width 70 +script_params_common = -starting_stage vpr --route_chan_width 70 --seed 3 script_params_list_add = --router_update_lower_bound_delays off script_params_list_add = --router_update_lower_bound_delays on From 17ab565b6f3bebb1a5748dc0d331a91d8f09dab7 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Tue, 20 Aug 2024 14:09:31 -0400 Subject: [PATCH 20/25] #ifdef-ed extra heap data and added CI test --- .github/workflows/test.yml | 5 +++++ CMakeLists.txt | 3 +++ vpr/CMakeLists.txt | 12 ++++++++++- vpr/src/base/vpr_types.h | 10 ++++----- vpr/src/route/connection_router.cpp | 31 ++++++++++++++++++++++++++++ vpr/src/route/connection_router.h | 3 +++ vpr/src/route/heap_type.cpp | 2 ++ vpr/src/route/heap_type.h | 2 ++ vpr/src/route/lookahead_profiler.cpp | 22 +++++++++++++++----- vpr/src/route/lookahead_profiler.h | 3 +++ vpr/src/route/route_common.cpp | 4 ++++ vpr/src/route/route_common.h | 5 +++++ vpr/src/route/route_path_manager.cpp | 5 +++++ 13 files changed, 96 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8404082f25e..749909b4e85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -156,6 +156,11 @@ jobs: params: '-DVTR_ASSERT_LEVEL=3 -DWITH_BLIFEXPLORER=on -DVPR_USE_EZGL=on -DVPR_USE_SERVER=off', suite: 'vtr_reg_basic' }, + { + name: 'Basic with PROFILE_LOOKAHEAD', + params: '-DVTR_ASSERT_LEVEL=3 -DVPR_PROFILE_LOOKAHEAD=on', + suite: 'vtr_reg_basic' + }, { name: 'Basic with CAPNPROTO disabled', params: '-DCMAKE_COMPILE_WARNING_AS_ERROR=on -DVTR_ASSERT_LEVEL=3 -DWITH_BLIFEXPLORER=on -DVTR_ENABLE_CAPNPROTO=off', diff --git a/CMakeLists.txt b/CMakeLists.txt index dfc90c3e851..aab624dd334 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,6 +42,9 @@ option(VTR_ENABLE_CAPNPROTO "Enable capnproto binary serialization support in VP #Allow the user to decide whether to compile the server module option(VPR_USE_SERVER "Specify whether vpr enables the server mode" ON) +#Allow the user to decide whether to profile the router lookahead +option(VPR_PROFILE_LOOKAHEAD "Specify whether to enable the router LookaheadProfiler" OFF) + #Allow the user to enable/disable VPR analytic placement #VPR option --enable_analytic_placer is also required for Analytic Placement option(VPR_ANALYTIC_PLACE "Enable analytic placement in VPR." ON) diff --git a/vpr/CMakeLists.txt b/vpr/CMakeLists.txt index 226822084f3..d9aaf6e0ebe 100644 --- a/vpr/CMakeLists.txt +++ b/vpr/CMakeLists.txt @@ -51,6 +51,16 @@ else() message(STATUS "Server mode is disabled${SERVER_DISABILED_REASON}") endif() +#Handle router lookahead profiler setup +set(ROUTER_DEFINES "") + +if (VPR_PROFILE_LOOKAHEAD) + list(APPEND ROUTER_DEFINES "-DPROFILE_LOOKAHEAD") + message(STATUS "Router lookahead profiler enabled") +else () + message(STATUS "Router lookahead profiler disabled") +endif () + # # Build Configuration # @@ -163,7 +173,7 @@ if (VPR_USE_EZGL STREQUAL "on") endif() -target_compile_definitions(libvpr PUBLIC ${GRAPHICS_DEFINES} ${SERVER_DEFINES}) +target_compile_definitions(libvpr PUBLIC ${GRAPHICS_DEFINES} ${SERVER_DEFINES} ${ROUTER_DEFINES}) if(${VTR_ENABLE_CAPNPROTO}) target_link_libraries(libvpr libvtrcapnproto) diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index b749342bb88..fa367764336 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1749,11 +1749,7 @@ constexpr bool is_src_sink(e_rr_type type) { return (type == SOURCE || type == S * the expected cost to the target if the timing_driven router * is being used. * @param backward_path_cost Total cost of the path up to and including - * this node. Recorded for LookaheadProfiler. - * @param backward_path_delay Total delay in the path up to and including - * this node. Recorded for LookaheadProfiler. - * @param backward_path_congestion Total congestion in the path up to and - * including this node. + * this node. * @param occ The current occupancy of the associated rr node */ struct t_rr_node_route_inf { @@ -1762,8 +1758,12 @@ struct t_rr_node_route_inf { float acc_cost; float path_cost; float backward_path_cost; +#ifdef PROFILE_LOOKAHEAD + ///@brief Total delay in the path up to and including this node. float backward_path_delay; + ///@brief Total congestion in the path up to and including this node. float backward_path_congestion; +#endif public: //Accessors short occ() const { return occ_; } diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 8deb7bca140..fe23de9a2c5 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -239,12 +239,21 @@ 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()) { +#ifdef PROFILE_LOOKAHEAD rcv_path_manager.insert_backwards_path_into_traceback(cheapest->path_data, cheapest->cost, cheapest->backward_path_cost, cheapest->backward_path_delay, cheapest->backward_path_congestion, route_ctx); +#else + rcv_path_manager.insert_backwards_path_into_traceback(cheapest->path_data, + cheapest->cost, + cheapest->backward_path_cost, + /*backward_path_delay=*/0.f, + /*backward_path_congestion=*/0.f, + route_ctx); +#endif } 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; @@ -557,8 +566,10 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& // Costs initialized to current next.cost = std::numeric_limits::infinity(); //Not used directly next.backward_path_cost = current->backward_path_cost; +#ifdef PROFILE_LOOKAHEAD next.backward_path_delay = current->backward_path_delay; next.backward_path_congestion = current->backward_path_congestion; +#endif // path_data variables are initialized to current values if (rcv_path_manager.is_enabled() && current->path_data) { @@ -604,8 +615,10 @@ void ConnectionRouter::timing_driven_add_to_heap(const t_conn_cost_params& next_ptr->cost = next.cost; next_ptr->R_upstream = next.R_upstream; next_ptr->backward_path_cost = next.backward_path_cost; +#ifdef PROFILE_LOOKAHEAD next_ptr->backward_path_delay = next.backward_path_delay; next_ptr->backward_path_congestion = next.backward_path_congestion; +#endif next_ptr->index = to_node; next_ptr->set_prev_edge(from_edge); @@ -793,8 +806,10 @@ void ConnectionRouter::evaluate_timing_driven_node_costs(t_heap* to, //Update the backward cost (upstream already included) to->backward_path_cost += (1. - cost_params.criticality) * cong_cost; //Congestion cost to->backward_path_cost += cost_params.criticality * Tdel; //Delay cost +#ifdef PROFILE_LOOKAHEAD to->backward_path_delay += Tdel; to->backward_path_congestion += cong_cost; +#endif if (cost_params.bend_cost != 0.) { t_rr_type from_type = rr_graph_->node_type(from_node); @@ -843,8 +858,10 @@ void ConnectionRouter::empty_heap_annotating_node_route_inf() { rr_node_route_inf_[tmp->index].path_cost = tmp->cost; rr_node_route_inf_[tmp->index].backward_path_cost = tmp->backward_path_cost; +#ifdef PROFILE_LOOKAHEAD rr_node_route_inf_[tmp->index].backward_path_delay = tmp->backward_path_delay; rr_node_route_inf_[tmp->index].backward_path_congestion = tmp->backward_path_congestion; +#endif modified_rr_node_inf_.push_back(tmp->index); rcv_path_manager.free_path_struct(tmp->path_data); @@ -905,8 +922,10 @@ void ConnectionRouter::add_route_tree_node_to_heap( const auto& device_ctx = g_vpr_ctx.device(); const RRNodeId inode = rt_node.inode; float backward_path_cost = cost_params.criticality * rt_node.Tdel; +#ifdef PROFILE_LOOKAHEAD float backward_path_delay = rt_node.Tdel; float backward_path_congestion = 0.0; +#endif float R_upstream = rt_node.R_upstream; /* Don't push to heap if not in bounding box: no-op for serial router, important for parallel router */ @@ -928,6 +947,7 @@ 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()); +#ifdef PROFILE_LOOKAHEAD push_back_node(&heap_, rr_node_route_inf_, inode, @@ -937,6 +957,17 @@ void ConnectionRouter::add_route_tree_node_to_heap( backward_path_delay, backward_path_congestion, R_upstream); +#else + push_back_node(&heap_, + rr_node_route_inf_, + inode, + tot_cost, + /*prev_edge=*/RREdgeId::INVALID(), + backward_path_cost, + /*backward_path_delay=*/0.f, + /*backward_path_congestion=*/0.f, + R_upstream); +#endif } else { float expected_total_cost = compute_node_cost_using_rcv(cost_params, inode, target_node, rt_node.Tdel, 0, R_upstream); diff --git a/vpr/src/route/connection_router.h b/vpr/src/route/connection_router.h index 4bb8a80fb7d..c4ae0b071fa 100644 --- a/vpr/src/route/connection_router.h +++ b/vpr/src/route/connection_router.h @@ -2,6 +2,7 @@ #define _CONNECTION_ROUTER_H #include "connection_router_interface.h" +#include "lookahead_profiler.h" #include "rr_graph_storage.h" #include "route_common.h" #include "router_lookahead.h" @@ -153,8 +154,10 @@ class ConnectionRouter : public ConnectionRouterInterface { route_inf->prev_edge = cheapest->prev_edge(); route_inf->path_cost = cheapest->cost; route_inf->backward_path_cost = cheapest->backward_path_cost; +#ifdef PROFILE_LOOKAHEAD route_inf->backward_path_delay = cheapest->backward_path_delay; route_inf->backward_path_congestion = cheapest->backward_path_congestion; +#endif } /** Common logic from timing_driven_route_connection_from_route_tree and diff --git a/vpr/src/route/heap_type.cpp b/vpr/src/route/heap_type.cpp index 62008a69774..092cde378f2 100644 --- a/vpr/src/route/heap_type.cpp +++ b/vpr/src/route/heap_type.cpp @@ -27,8 +27,10 @@ HeapStorage::alloc() { temp_ptr->set_next_heap_item(nullptr); temp_ptr->cost = 0.; temp_ptr->backward_path_cost = 0.; +#ifdef PROFILE_LOOKAHEAD temp_ptr->backward_path_delay = 0.; temp_ptr->backward_path_congestion = 0.; +#endif temp_ptr->R_upstream = 0.; temp_ptr->index = RRNodeId::INVALID(); temp_ptr->path_data = nullptr; diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index 4f46f314249..d184abce606 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -18,10 +18,12 @@ struct t_heap { ///@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.; +#ifdef PROFILE_LOOKAHEAD ///@brief The "known" delay in the path up to and including this node. Recorded for LookaheadProfiler during routing. float backward_path_delay = 0.; ///@brief The "known" congestion in the path up to and including this node. Recorded for LookaheadProfiler during routing. float backward_path_congestion = 0.; +#endif ///@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.; diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 9ae63324004..092641cc466 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -13,12 +13,11 @@ void LookaheadProfiler::set_file_name(const std::string& file_name) { if (!enabled_) return; +#ifdef PROFILE_LOOKAHEAD lookahead_verifier_csv_.open(file_name, std::ios::out); if (!lookahead_verifier_csv_.is_open()) { - std::string message = "Could not open " + file_name; - VTR_LOG_ERROR(message.c_str()); - throw vtr::VtrError(message, "lookahead_profiler.cpp", 21); + throw vtr::VtrError("Could not open " + file_name, "lookahead_profiler.cpp", 21); } lookahead_verifier_csv_ @@ -44,6 +43,9 @@ void LookaheadProfiler::set_file_name(const std::string& file_name) { << ",predicted congestion" << ",criticality" << "\n"; +#else + throw vtr::VtrError("Profiler enabled, but PROFILE_LOOKAHEAD not defined.", "lookahead_profiler.cpp", 47); +#endif } void LookaheadProfiler::record(int iteration, @@ -60,9 +62,9 @@ void LookaheadProfiler::record(int iteration, if (!enabled_) return; +#ifdef PROFILE_LOOKAHEAD if (!lookahead_verifier_csv_.is_open()) { - VTR_LOG_ERROR("Output file is not open."); - throw vtr::VtrError("Output file is not open.", "lookahead_profiler.cpp", 65); + throw vtr::VtrError("Output file is not open.", "lookahead_profiler.cpp", 67); } // The default value in RouteTree::update_from_heap() is -1; only calls which descend from route_net() @@ -159,6 +161,16 @@ void LookaheadProfiler::record(int iteration, lookahead_verifier_csv_ << cost_params.criticality; // criticality lookahead_verifier_csv_ << "\n"; } +#else + throw vtr::VtrError("Profiler enabled, but PROFILE_LOOKAHEAD not defined.", "lookahead_profiler.cpp", 165); + (void)iteration; + (void)target_net_pin_index; + (void)cost_params; + (void)router_lookahead; + (void)net_id; + (void)net_list; + (void)branch_inodes; +#endif } void LookaheadProfiler::clear() { diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index d3e339b3362..6117a052e89 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -11,6 +11,9 @@ * @brief A class which records information used to profile the router lookahead: most importantly, * the actual cost (delay and congestion) from nodes to the sink to which they have been routed, as * well as the lookahead's estimation of this cost. + * + * @warning + * To use the LookaheadProfiler, you must build VPR with #define PROFILE_LOOKAHEAD. */ class LookaheadProfiler { public: diff --git a/vpr/src/route/route_common.cpp b/vpr/src/route/route_common.cpp index f0998fcdaf8..f166eeb9eda 100644 --- a/vpr/src/route/route_common.cpp +++ b/vpr/src/route/route_common.cpp @@ -289,8 +289,10 @@ void reset_path_costs(const std::vector& visited_rr_nodes) { for (auto node : 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(); +#ifdef PROFILE_LOOKAHEAD route_ctx.rr_node_route_inf[node].backward_path_delay = std::numeric_limits::infinity(); route_ctx.rr_node_route_inf[node].backward_path_congestion = std::numeric_limits::infinity(); +#endif route_ctx.rr_node_route_inf[node].prev_edge = RREdgeId::INVALID(); } } @@ -428,8 +430,10 @@ void reset_rr_node_route_structs() { node_inf.acc_cost = 1.0; node_inf.path_cost = std::numeric_limits::infinity(); node_inf.backward_path_cost = std::numeric_limits::infinity(); +#ifdef PROFILE_LOOKAHEAD node_inf.backward_path_delay = std::numeric_limits::infinity(); node_inf.backward_path_congestion = std::numeric_limits::infinity(); +#endif node_inf.set_occ(0); } } diff --git a/vpr/src/route/route_common.h b/vpr/src/route/route_common.h index 0aa0c3275a2..a92e3d223d1 100644 --- a/vpr/src/route/route_common.h +++ b/vpr/src/route/route_common.h @@ -173,8 +173,13 @@ t_heap* prepare_to_add_node_to_heap( hptr->cost = total_cost; hptr->set_prev_edge(prev_edge); hptr->backward_path_cost = backward_path_cost; +#ifdef PROFILE_LOOKAHEAD hptr->backward_path_delay = backward_path_delay; hptr->backward_path_congestion = backward_path_congestion; +#else + (void)backward_path_delay; + (void)backward_path_congestion; +#endif hptr->R_upstream = R_upstream; return hptr; } diff --git a/vpr/src/route/route_path_manager.cpp b/vpr/src/route/route_path_manager.cpp index fe0a2b1c456..9e8a6f57167 100644 --- a/vpr/src/route/route_path_manager.cpp +++ b/vpr/src/route/route_path_manager.cpp @@ -53,8 +53,13 @@ void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, route_ctx.rr_node_route_inf[node_2].prev_edge = edge; route_ctx.rr_node_route_inf[node_2].path_cost = cost; route_ctx.rr_node_route_inf[node_2].backward_path_cost = backward_path_cost; +#ifdef PROFILE_LOOKAHEAD route_ctx.rr_node_route_inf[node_2].backward_path_delay = backward_path_delay; route_ctx.rr_node_route_inf[node_2].backward_path_congestion = backward_path_congestion; +#else + (void)backward_path_delay; + (void)backward_path_congestion; +#endif } } From 2f10ec581de7498e3cabe846798feef8e2b79a3a Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Tue, 20 Aug 2024 15:11:27 -0400 Subject: [PATCH 21/25] Fixed compilation warnings --- libs/EXTERNAL/libcatch2 | 2 +- vpr/src/route/lookahead_profiler.cpp | 8 ++++---- .../multless_consts/config/golden_results.txt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/EXTERNAL/libcatch2 b/libs/EXTERNAL/libcatch2 index 33e24b14fcf..4e8d92bf02f 160000 --- a/libs/EXTERNAL/libcatch2 +++ b/libs/EXTERNAL/libcatch2 @@ -1 +1 @@ -Subproject commit 33e24b14fcf95c1c31c8d6b68f445ebb12e026cc +Subproject commit 4e8d92bf02f7d1c8006a0e7a5ecabd8e62d98502 diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 092641cc466..29dc846d6c2 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -55,14 +55,14 @@ void LookaheadProfiler::record(int iteration, const ParentNetId& net_id, const Netlist<>& net_list, const std::vector& branch_inodes) { - auto& device_ctx = g_vpr_ctx.device(); - const auto& rr_graph = device_ctx.rr_graph; - auto& route_ctx = g_vpr_ctx.routing(); - if (!enabled_) return; #ifdef PROFILE_LOOKAHEAD + auto& device_ctx = g_vpr_ctx.device(); + const auto& rr_graph = device_ctx.rr_graph; + auto& route_ctx = g_vpr_ctx.routing(); + if (!lookahead_verifier_csv_.is_open()) { throw vtr::VtrError("Output file is not open.", "lookahead_profiler.cpp", 67); } diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index 0de71e47d9b..847e17d5f84 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,4 +1,4 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est 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 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 4.76 vpr 62.50 MiB 0.02 6740 -1 -1 14 0.24 -1 -1 32952 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1354 8532 2094 5512 926 62.5 MiB 0.09 0.00 8.19013 -165.934 -8.19013 8.19013 0.63 0.000911572 0.000845455 0.0421278 0.0389893 28 3693 28 6.55708e+06 313430 500653. 1732.36 1.79 0.162717 0.142573 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037161 0.0324187 186 186 -1 -1 -1 -1 fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 62.45 MiB 0.03 6716 -1 -1 14 0.29 -1 -1 32772 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1292 15824 4267 9033 2524 62.4 MiB 0.15 0.00 8.12966 -162.719 -8.12966 8.12966 0.66 0.000907128 0.000840271 0.0750926 0.0696213 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.22 0.194161 0.171438 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341478 0.0299947 189 189 -1 -1 -1 -1 fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.29 vpr 62.25 MiB 0.05 6840 -1 -1 11 0.22 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1266 13157 3416 7667 2074 62.3 MiB 0.13 0.00 6.4728 -136.716 -6.4728 6.4728 0.63 0.000893199 0.000827038 0.0631231 0.0583866 36 3746 35 6.55708e+06 301375 612192. 2118.31 4.11 0.262229 0.228441 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0390401 0.0341413 180 180 -1 -1 -1 -1 From 9bcad703cb3dcfa556bd41554185808e15dbccd2 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Tue, 20 Aug 2024 16:03:09 -0400 Subject: [PATCH 22/25] Fixed error in record() --- vpr/src/route/lookahead_profiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 29dc846d6c2..357ea1db8dd 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -90,7 +90,7 @@ void LookaheadProfiler::record(int iteration, ClusterBlockId cluster_block_id = atom_to_cluster(atom_block_id); sink_cluster_block_[sink_inode] = g_vpr_ctx.clustering().clb_nlist.block_type(cluster_block_id); - tile_types_[sink_inode] = physical_tile_type(cluster_block_id); + tile_types_[sink_inode] = physical_tile_type(atom_block_id); } VTR_ASSERT_SAFE(sink_atom_block_.find(sink_inode) != sink_atom_block_.end()); From c05e498c05035874cb178af925bfa996f4f44bc7 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 21 Aug 2024 14:18:58 -0400 Subject: [PATCH 23/25] Updated golden results --- .../multless_consts/config/golden_results.txt | 3072 ++++++++++------ .../multless_consts/config/golden_results.txt | 3074 +++++++++++------ .../vtr_bidir/config/golden_results.txt | 82 +- .../titan_quick_qor/config/golden_results.txt | 46 +- 4 files changed, 4161 insertions(+), 2113 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 eb63dd05026..b2e9c7b10dd 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,2049 @@ 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 5.62 vpr 62.68 MiB -1 -1 0.22 17644 14 0.27 -1 -1 32900 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1279 6823 1440 4905 478 62.7 MiB 0.08 0.00 7.95704 -163.811 -7.95704 7.95704 0.64 0.000902389 0.00083636 0.0344606 0.031912 36 3193 16 6.55708e+06 325485 612192. 2118.31 2.16 0.203512 0.176225 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.20 0.16 0.13 -1 -1 0.20 0.0545367 0.0472303 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.56 vpr 62.51 MiB -1 -1 0.26 17588 14 0.28 -1 -1 32880 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 24.0 MiB 0.48 1272 10173 2471 6545 1157 62.5 MiB 0.10 0.00 8.16064 -158.468 -8.16064 8.16064 0.63 0.000895349 0.000826618 0.0471883 0.0436956 36 3251 22 6.55708e+06 373705 612192. 2118.31 1.95 0.223988 0.194373 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.20 0.16 0.12 -1 -1 0.20 0.046782 0.0406998 184 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 6.05 vpr 62.42 MiB -1 -1 0.23 17344 11 0.22 -1 -1 33024 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1375 11748 3042 6701 2005 62.4 MiB 0.11 0.00 6.90223 -139.699 -6.90223 6.90223 0.63 0.000901418 0.000834301 0.0561511 0.0520026 28 4030 31 6.55708e+06 313430 500653. 1732.36 2.73 0.18013 0.158215 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0367008 0.0321419 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.99 vpr 62.45 MiB -1 -1 0.26 17512 12 0.29 -1 -1 32936 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1263 4783 870 3608 305 62.4 MiB 0.06 0.00 7.83974 -145.087 -7.83974 7.83974 0.63 0.000906685 0.000840812 0.0246669 0.0228533 36 3198 28 6.55708e+06 361650 612192. 2118.31 2.37 0.21186 0.182666 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.034316 0.0301343 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.86 vpr 62.60 MiB -1 -1 0.22 17608 13 0.28 -1 -1 32776 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 24.1 MiB 0.47 1445 11111 2879 6967 1265 62.6 MiB 0.11 0.00 7.83935 -165.421 -7.83935 7.83935 0.63 0.000977509 0.000904574 0.0540974 0.05001 28 4394 44 6.55708e+06 373705 500653. 1732.36 2.36 0.207488 0.181481 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0401928 0.0352959 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.66 vpr 62.36 MiB -1 -1 0.26 17588 13 0.31 -1 -1 32660 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1337 11046 2900 6780 1366 62.4 MiB 0.11 0.00 7.78297 -154.862 -7.78297 7.78297 0.65 0.000943375 0.00087297 0.0512421 0.0473791 36 3405 22 6.55708e+06 385760 612192. 2118.31 2.14 0.239535 0.208267 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.20 0.08 0.15 -1 -1 0.20 0.0313411 0.0276803 198 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 3.93 vpr 61.97 MiB -1 -1 0.14 17512 12 0.21 -1 -1 32508 -1 -1 27 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1022 8969 2278 5945 746 62.0 MiB 0.08 0.00 7.21391 -130.754 -7.21391 7.21391 0.69 0.000744894 0.000691066 0.0383272 0.0355106 30 2436 17 6.55708e+06 325485 526063. 1820.29 0.81 0.123241 0.108495 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0255822 0.022555 152 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.07 vpr 61.98 MiB -1 -1 0.24 17396 12 0.19 -1 -1 32728 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63472 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1233 12733 3609 7498 1626 62.0 MiB 0.11 0.00 6.32286 -134.975 -6.32286 6.32286 0.69 0.000731381 0.000677603 0.0532902 0.0492864 36 3149 24 6.55708e+06 265210 612192. 2118.31 2.94 0.200974 0.175662 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.20 0.05 0.08 -1 -1 0.20 0.0153743 0.0138471 140 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.04 vpr 62.30 MiB -1 -1 0.24 17820 12 0.17 -1 -1 32636 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1203 13157 3412 7574 2171 62.3 MiB 0.11 0.00 6.35469 -136.224 -6.35469 6.35469 0.64 0.000753491 0.000697515 0.0531959 0.0492368 36 2772 21 6.55708e+06 313430 612192. 2118.31 1.87 0.203758 0.178128 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.20 0.06 0.12 -1 -1 0.20 0.0238826 0.0211356 150 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.03 vpr 62.05 MiB -1 -1 0.23 17572 13 0.20 -1 -1 32664 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1164 8207 1986 5229 992 62.0 MiB 0.08 0.00 7.79043 -163.222 -7.79043 7.79043 0.67 0.000814597 0.000754806 0.0361659 0.0334722 28 3341 23 6.55708e+06 301375 500653. 1732.36 1.79 0.142762 0.12533 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.17 0.08 0.12 -1 -1 0.17 0.0283229 0.0249606 157 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.55 vpr 62.11 MiB -1 -1 0.25 17452 12 0.18 -1 -1 32344 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1043 7646 1812 5284 550 62.1 MiB 0.07 0.00 6.98257 -137.016 -6.98257 6.98257 0.64 0.000703158 0.000651618 0.0311417 0.0288199 28 2870 17 6.55708e+06 289320 500653. 1732.36 1.39 0.0994698 0.0879755 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0382854 0.0332743 132 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.13 vpr 61.93 MiB -1 -1 0.24 17364 12 0.18 -1 -1 32664 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1210 6701 1475 4829 397 61.9 MiB 0.04 0.00 6.74278 -155.388 -6.74278 6.74278 0.70 0.00033776 0.000311305 0.0142202 0.0130933 28 3180 36 6.55708e+06 265210 500653. 1732.36 1.96 0.122122 0.106125 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0337018 0.0294952 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 4.81 vpr 62.59 MiB -1 -1 0.16 17816 13 0.25 -1 -1 32504 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1329 9892 2541 6359 992 62.6 MiB 0.12 0.00 8.09466 -168.958 -8.09466 8.09466 0.63 0.00110939 0.00102855 0.0493349 0.0456504 28 3841 47 6.55708e+06 361650 500653. 1732.36 1.73 0.191144 0.167899 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.029961 0.0265361 191 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 5.09 vpr 62.77 MiB -1 -1 0.25 17716 14 0.31 -1 -1 32804 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1640 11170 2650 7415 1105 62.8 MiB 0.12 0.00 9.0039 -186.596 -9.0039 9.0039 0.64 0.000971383 0.000899453 0.0550565 0.0508814 30 4087 23 6.55708e+06 361650 526063. 1820.29 1.39 0.175104 0.153815 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0409182 0.0361608 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.33 vpr 62.07 MiB -1 -1 0.18 17348 11 0.19 -1 -1 32668 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 23.6 MiB 0.25 878 5158 949 3601 608 62.1 MiB 0.05 0.00 6.71354 -123.992 -6.71354 6.71354 0.63 0.000723461 0.000670134 0.021848 0.0202442 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.29 0.127168 0.110536 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.027411 0.0241001 147 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 6.99 vpr 62.71 MiB -1 -1 0.26 17592 12 0.27 -1 -1 32836 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1420 10309 2435 6528 1346 62.7 MiB 0.11 0.00 7.45763 -153.823 -7.45763 7.45763 0.69 0.000991629 0.000919182 0.049887 0.0461754 34 4188 46 6.55708e+06 397815 585099. 2024.56 3.40 0.289113 0.251465 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.20 0.17 0.12 -1 -1 0.20 0.0544962 0.047436 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.62 vpr 62.55 MiB -1 -1 0.25 17832 14 0.26 -1 -1 32860 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1436 5553 1081 4073 399 62.6 MiB 0.07 0.00 7.42808 -156.41 -7.42808 7.42808 0.64 0.000907065 0.000838494 0.0275138 0.0254882 38 3267 17 6.55708e+06 349595 638502. 2209.35 2.29 0.202098 0.174494 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.21 0.08 0.14 -1 -1 0.21 0.0325326 0.0286036 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.87 vpr 61.95 MiB -1 -1 0.24 17456 12 0.16 -1 -1 32376 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 23.5 MiB 0.32 1097 11991 2937 7207 1847 62.0 MiB 0.12 0.00 7.19884 -160.926 -7.19884 7.19884 0.65 0.000745309 0.000689721 0.0528949 0.0485609 28 3171 46 6.55708e+06 277265 500653. 1732.36 1.63 0.173416 0.152056 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0281932 0.0248797 140 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.52 vpr 61.36 MiB -1 -1 0.13 17268 10 0.12 -1 -1 32216 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62832 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 22.7 MiB 0.16 733 7548 1614 5464 470 61.4 MiB 0.06 0.00 5.36346 -120.328 -5.36346 5.36346 0.63 0.00056886 0.00052818 0.0274799 0.0255075 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.81 0.100269 0.0877092 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0193292 0.0169096 91 87 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 4.75 vpr 62.06 MiB -1 -1 0.22 17540 13 0.18 -1 -1 32576 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1075 12951 3421 7713 1817 62.1 MiB 0.11 0.00 6.90774 -144.707 -6.90774 6.90774 0.64 0.000714523 0.000657214 0.0532935 0.0492805 28 3088 32 6.55708e+06 289320 500653. 1732.36 1.50 0.158442 0.139474 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0316506 0.0277484 144 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.31 vpr 62.87 MiB -1 -1 0.22 17896 13 0.27 -1 -1 32840 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 24.3 MiB 0.42 1429 6575 1166 5105 304 62.9 MiB 0.08 0.00 8.01121 -157.98 -8.01121 8.01121 0.65 0.00101117 0.00093888 0.0342334 0.031667 34 3477 22 6.55708e+06 373705 585099. 2024.56 1.80 0.223989 0.193768 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0389581 0.0341969 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 18.40 vpr 62.47 MiB -1 -1 0.26 17588 13 0.29 -1 -1 32436 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1433 6823 1289 5315 219 62.5 MiB 0.08 0.00 7.886 -165.604 -7.886 7.886 0.63 0.000931546 0.000863515 0.0350133 0.03243 36 4367 47 6.55708e+06 325485 612192. 2118.31 14.69 0.422041 0.362053 22750 144809 -1 3332 17 1366 4336 289824 66269 7.0397 7.0397 -158.876 -7.0397 0 0 782063. 2706.10 0.20 0.10 0.12 -1 -1 0.20 0.0355541 0.0314865 194 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.90 vpr 61.47 MiB -1 -1 0.20 17080 9 0.11 -1 -1 32184 -1 -1 24 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62948 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 22.8 MiB 0.18 744 10762 3120 6243 1399 61.5 MiB 0.07 0.00 5.06374 -98.4324 -5.06374 5.06374 0.65 0.000495841 0.000458958 0.0328293 0.0305036 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.06 0.0938294 0.0825431 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.017105 0.0150223 87 76 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 5.85 vpr 62.36 MiB -1 -1 0.11 17572 13 0.25 -1 -1 32648 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1381 10781 2930 5957 1894 62.4 MiB 0.11 0.00 7.83519 -151.249 -7.83519 7.83519 0.64 0.0009263 0.00085861 0.0539042 0.049952 30 4083 42 6.55708e+06 301375 526063. 1820.29 2.74 0.201279 0.176533 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0359074 0.0314989 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.54 vpr 61.28 MiB -1 -1 0.15 17024 8 0.10 -1 -1 32720 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62748 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 22.6 MiB 0.15 553 7648 2806 3716 1126 61.3 MiB 0.06 0.00 4.12642 -89.8462 -4.12642 4.12642 0.63 0.000519194 0.000483024 0.0244382 0.0226942 30 1616 22 6.55708e+06 192880 526063. 1820.29 0.84 0.0871768 0.076154 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0157602 0.0138246 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.52 vpr 62.49 MiB -1 -1 0.23 17456 15 0.23 -1 -1 32804 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1321 6923 1475 4903 545 62.5 MiB 0.07 0.00 8.32249 -162.146 -8.32249 8.32249 0.76 0.000626968 0.00056968 0.0272709 0.0250822 36 3269 25 6.55708e+06 337540 612192. 2118.31 2.08 0.202922 0.175179 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.20 0.08 0.13 -1 -1 0.20 0.0293646 0.0257905 165 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 10.19 vpr 62.38 MiB -1 -1 0.23 17816 13 0.29 -1 -1 32764 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 23.7 MiB 0.26 1319 5919 1133 4327 459 62.4 MiB 0.07 0.00 7.07675 -156.6 -7.07675 7.07675 0.65 0.000850948 0.000789225 0.0287711 0.026656 28 3679 22 6.55708e+06 313430 500653. 1732.36 6.83 0.293044 0.252913 21310 115450 -1 3055 23 1552 4783 319503 75123 6.44892 6.44892 -155.475 -6.44892 0 0 612192. 2118.31 0.17 0.12 0.12 -1 -1 0.17 0.0387261 0.0338122 168 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 4.52 vpr 62.42 MiB -1 -1 0.24 17736 13 0.26 -1 -1 32948 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1276 11223 2538 6825 1860 62.4 MiB 0.11 0.00 7.85647 -160.581 -7.85647 7.85647 0.64 0.000919398 0.000853369 0.0525743 0.0487414 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.22 0.168088 0.148005 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0304651 0.0269186 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 6.05 vpr 62.02 MiB -1 -1 0.23 17336 12 0.16 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 23.5 MiB 0.31 1153 7191 1558 5291 342 62.0 MiB 0.07 0.00 6.57592 -147.41 -6.57592 6.57592 0.64 0.00075806 0.000701625 0.0312734 0.0289382 36 3148 35 6.55708e+06 277265 612192. 2118.31 2.84 0.20415 0.177274 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.21 0.07 0.14 -1 -1 0.21 0.0265405 0.0234325 147 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.13 vpr 61.92 MiB -1 -1 0.22 17452 11 0.16 -1 -1 32644 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 23.3 MiB 0.16 963 12919 3847 7319 1753 61.9 MiB 0.10 0.00 6.46503 -135.82 -6.46503 6.46503 0.64 0.000690025 0.000639917 0.0489722 0.0452813 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.07 0.130341 0.11508 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0227488 0.020072 131 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.61 vpr 62.00 MiB -1 -1 0.23 17680 11 0.17 -1 -1 32708 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1010 6913 1544 4325 1044 62.0 MiB 0.06 0.00 6.38158 -126.573 -6.38158 6.38158 0.66 0.000594672 0.000545237 0.0238069 0.0217726 26 3323 50 6.55708e+06 337540 477104. 1650.88 2.26 0.150318 0.130354 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.21 0.08 0.10 -1 -1 0.21 0.0311089 0.0275726 150 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 5.77 vpr 62.21 MiB -1 -1 0.21 17364 12 0.20 -1 -1 32724 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 23.5 MiB 0.25 1304 6321 1255 4617 449 62.2 MiB 0.05 0.00 7.16635 -157.812 -7.16635 7.16635 0.63 0.000396787 0.000364913 0.0226794 0.0209295 26 3817 49 6.55708e+06 313430 477104. 1650.88 2.48 0.170258 0.147196 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.25 0.10 0.11 -1 -1 0.25 0.0327543 0.0292721 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 5.07 vpr 62.04 MiB -1 -1 0.23 17672 12 0.16 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.60 980 5567 1150 4291 126 62.0 MiB 0.06 0.00 7.18658 -144.693 -7.18658 7.18658 0.63 0.000748352 0.000692935 0.0249335 0.0231188 28 3147 34 6.55708e+06 277265 500653. 1732.36 1.79 0.132417 0.115295 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.18 0.14 0.07 -1 -1 0.18 0.0447219 0.0391917 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.00 vpr 61.98 MiB -1 -1 0.24 17512 10 0.17 -1 -1 32716 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63464 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1013 6563 1489 4557 517 62.0 MiB 0.06 0.00 5.76546 -121.445 -5.76546 5.76546 0.69 0.00072126 0.000667915 0.0294293 0.0272516 30 2358 16 6.55708e+06 265210 526063. 1820.29 0.91 0.111032 0.0974338 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.23 0.08 0.11 -1 -1 0.23 0.0296647 0.02616 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.23 vpr 62.73 MiB -1 -1 0.28 17912 13 0.29 -1 -1 32904 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1488 10247 2366 6979 902 62.7 MiB 0.11 0.00 7.78037 -164.973 -7.78037 7.78037 0.66 0.00101415 0.000938323 0.0522587 0.0483277 32 4128 46 6.55708e+06 373705 554710. 1919.41 1.68 0.213974 0.18787 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0359716 0.0317478 221 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 5.08 vpr 62.44 MiB -1 -1 0.23 17948 14 0.33 -1 -1 33256 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1341 7544 1708 5122 714 62.4 MiB 0.08 0.00 7.48711 -165.315 -7.48711 7.48711 0.66 0.000932259 0.000864202 0.0380248 0.0352368 30 3756 44 6.55708e+06 337540 526063. 1820.29 1.58 0.185737 0.162177 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0356917 0.031486 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.04 vpr 62.13 MiB -1 -1 0.14 17568 12 0.19 -1 -1 32584 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1061 14582 3956 8171 2455 62.1 MiB 0.12 0.00 7.55424 -147.694 -7.55424 7.55424 0.64 0.00053241 0.000482013 0.0524228 0.048038 36 2670 17 6.55708e+06 349595 612192. 2118.31 1.96 0.196438 0.171065 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.21 0.07 0.14 -1 -1 0.21 0.0264527 0.023582 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.00 vpr 62.80 MiB -1 -1 0.28 17760 12 0.27 -1 -1 32864 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1440 9951 2153 6171 1627 62.8 MiB 0.09 0.00 7.66392 -155.521 -7.66392 7.66392 0.63 0.000613184 0.000558982 0.0446412 0.0411656 30 3843 35 6.55708e+06 397815 526063. 1820.29 1.52 0.187569 0.164359 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0414466 0.0363438 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.25 vpr 62.79 MiB -1 -1 0.28 18160 14 0.31 -1 -1 33136 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1368 10442 2445 6848 1149 62.8 MiB 0.11 0.00 8.27333 -162.102 -8.27333 8.27333 0.64 0.000960355 0.000890313 0.0521276 0.0482821 30 3476 48 6.55708e+06 349595 526063. 1820.29 1.66 0.211201 0.185979 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0345171 0.030365 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.48 vpr 62.41 MiB -1 -1 0.28 18084 13 0.25 -1 -1 32732 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1406 11311 2955 7221 1135 62.4 MiB 0.11 0.00 7.94497 -159.991 -7.94497 7.94497 0.63 0.000902976 0.000836846 0.0538069 0.0497417 36 3512 22 6.55708e+06 337540 612192. 2118.31 1.97 0.234022 0.203842 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.20 0.09 0.08 -1 -1 0.20 0.0345657 0.0304813 185 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 5.97 vpr 62.41 MiB -1 -1 0.17 17588 13 0.25 -1 -1 32828 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 23.9 MiB 0.34 1345 7613 1868 4862 883 62.4 MiB 0.08 0.00 7.08841 -141.492 -7.08841 7.08841 0.64 0.000888876 0.000823629 0.0370707 0.034293 34 3664 49 6.55708e+06 313430 585099. 2024.56 2.81 0.254318 0.220254 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.19 0.09 0.08 -1 -1 0.19 0.0323341 0.0284852 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.57 vpr 62.20 MiB -1 -1 0.24 17672 12 0.20 -1 -1 32728 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1315 5548 1167 3981 400 62.2 MiB 0.06 0.00 7.00741 -145.329 -7.00741 7.00741 0.63 0.000829561 0.00076962 0.0277242 0.0257009 28 3273 27 6.55708e+06 289320 500653. 1732.36 1.43 0.134399 0.116907 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.031496 0.0275799 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 7.41 vpr 62.75 MiB -1 -1 0.31 18688 14 0.38 -1 -1 32828 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.3 MiB 0.38 1670 9383 2100 6642 641 62.8 MiB 0.11 0.00 8.23218 -176.173 -8.23218 8.23218 0.59 0.00104014 0.000961646 0.0496256 0.0458082 34 4632 43 6.55708e+06 373705 585099. 2024.56 3.75 0.244639 0.212879 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0370763 0.0327778 230 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.43 vpr 62.34 MiB -1 -1 0.19 17568 11 0.23 -1 -1 32540 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1051 8603 2089 5379 1135 62.3 MiB 0.09 0.00 6.74223 -137.589 -6.74223 6.74223 0.65 0.000808708 0.000749919 0.0380819 0.0352726 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.24 0.151205 0.131835 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.029275 0.0257464 163 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.08 vpr 62.54 MiB -1 -1 0.27 17632 13 0.27 -1 -1 33276 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1315 7435 1572 5156 707 62.5 MiB 0.08 0.00 8.06447 -154.642 -8.06447 8.06447 0.59 0.000904129 0.000848441 0.0368304 0.0340059 28 3730 45 6.55708e+06 337540 500653. 1732.36 1.92 0.181442 0.157636 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.23 0.11 0.10 -1 -1 0.23 0.0348589 0.0310441 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.86 vpr 62.81 MiB -1 -1 0.14 17776 12 0.26 -1 -1 32832 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 24.1 MiB 0.52 1532 15213 4154 8657 2402 62.8 MiB 0.15 0.00 7.13712 -150.826 -7.13712 7.13712 0.63 0.000968201 0.000896339 0.0747242 0.0689959 36 3865 38 6.55708e+06 349595 612192. 2118.31 3.30 0.295727 0.259192 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.20 0.15 0.13 -1 -1 0.20 0.0437089 0.0381922 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 4.10 vpr 62.45 MiB -1 -1 0.14 17556 13 0.25 -1 -1 32856 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1350 5133 911 3808 414 62.5 MiB 0.06 0.00 7.54057 -158.305 -7.54057 7.54057 0.63 0.000893515 0.000827381 0.0255727 0.0236916 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.03 0.134814 0.11752 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0336921 0.0296487 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 6.12 vpr 62.29 MiB -1 -1 0.22 17600 13 0.20 -1 -1 32780 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1371 12351 2891 7373 2087 62.3 MiB 0.11 0.00 7.1188 -155.865 -7.1188 7.1188 0.64 0.000680554 0.000621476 0.051316 0.0471237 36 3355 27 6.55708e+06 313430 612192. 2118.31 2.81 0.235124 0.204353 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0290932 0.0256632 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 5.53 vpr 62.51 MiB -1 -1 0.26 17896 12 0.24 -1 -1 32772 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1446 11170 2757 7067 1346 62.5 MiB 0.11 0.00 7.31654 -157.818 -7.31654 7.31654 0.64 0.000929709 0.000860226 0.0521652 0.0481657 38 3284 17 6.55708e+06 361650 638502. 2209.35 1.98 0.231444 0.201471 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.22 0.08 0.13 -1 -1 0.22 0.0318218 0.0281035 197 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 5.82 vpr 63.04 MiB -1 -1 0.19 17908 13 0.29 -1 -1 32960 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 24.3 MiB 0.38 1513 7223 1461 5178 584 63.0 MiB 0.08 0.00 7.58438 -161.714 -7.58438 7.58438 0.63 0.000991599 0.000917959 0.0370962 0.034308 36 3945 19 6.55708e+06 373705 612192. 2118.31 2.39 0.230565 0.199808 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0374623 0.0330326 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 4.92 vpr 62.40 MiB -1 -1 0.20 17336 14 0.27 -1 -1 32932 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1215 10813 2361 6891 1561 62.4 MiB 0.10 0.00 8.31609 -163.248 -8.31609 8.31609 0.66 0.000860088 0.000796071 0.0513005 0.0474652 30 3273 27 6.55708e+06 289320 526063. 1820.29 1.63 0.163702 0.143889 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0325786 0.0286191 168 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.95 vpr 62.42 MiB -1 -1 0.24 17824 13 0.26 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1503 5206 957 3956 293 62.4 MiB 0.08 0.00 8.07478 -162.365 -8.07478 8.07478 0.63 0.001087 0.000998673 0.0301524 0.0277422 28 4195 32 6.55708e+06 361650 500653. 1732.36 2.60 0.160436 0.139416 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0366031 0.0321564 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.95 vpr 62.46 MiB -1 -1 0.28 17936 13 0.32 -1 -1 32700 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1405 8401 1949 5780 672 62.5 MiB 0.09 0.00 7.80415 -160.841 -7.80415 7.80415 0.66 0.000966561 0.000888885 0.0421913 0.0389617 34 3777 50 6.55708e+06 373705 585099. 2024.56 2.57 0.282711 0.244107 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0320292 0.0282573 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.61 vpr 62.47 MiB -1 -1 0.23 17652 12 0.32 -1 -1 32792 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1438 11641 3058 7283 1300 62.5 MiB 0.12 0.00 7.70272 -159.771 -7.70272 7.70272 0.63 0.000966548 0.0008948 0.0545895 0.0504425 30 3780 27 6.55708e+06 397815 526063. 1820.29 1.28 0.180135 0.159057 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0369427 0.0326025 216 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.37 vpr 61.78 MiB -1 -1 0.22 17268 11 0.12 -1 -1 32632 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63260 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 23.1 MiB 0.29 1054 3998 719 2985 294 61.8 MiB 0.04 0.00 6.14869 -128.86 -6.14869 6.14869 0.64 0.00068613 0.000631873 0.0179147 0.0166002 26 2734 30 6.55708e+06 216990 477104. 1650.88 1.35 0.110965 0.0962569 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0248369 0.0218323 125 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.83 vpr 62.25 MiB -1 -1 0.20 17608 13 0.21 -1 -1 32680 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1266 7888 1808 5375 705 62.2 MiB 0.08 0.00 7.4424 -157.565 -7.4424 7.4424 0.63 0.00083038 0.00077039 0.0368154 0.0341134 28 3615 32 6.55708e+06 289320 500653. 1732.36 1.63 0.149972 0.130911 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0330649 0.0290168 161 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 5.31 vpr 62.88 MiB -1 -1 0.28 18344 14 0.42 -1 -1 32920 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1601 9199 2042 6426 731 62.9 MiB 0.11 0.00 8.66873 -176.87 -8.66873 8.66873 0.63 0.00111182 0.00102358 0.0502765 0.0464378 30 4285 34 6.55708e+06 397815 526063. 1820.29 1.76 0.203737 0.178472 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.18 0.10 0.12 -1 -1 0.18 0.0398915 0.0352571 245 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 5.53 vpr 62.47 MiB -1 -1 0.26 17608 13 0.32 -1 -1 32812 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1376 4579 799 3553 227 62.5 MiB 0.06 0.00 8.02278 -172.696 -8.02278 8.02278 0.63 0.000905355 0.000830866 0.0235654 0.0218137 36 3334 17 6.55708e+06 325485 612192. 2118.31 2.10 0.174207 0.150621 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0316358 0.0279219 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.03 vpr 61.90 MiB -1 -1 0.15 17432 11 0.16 -1 -1 32664 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63388 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1035 10687 2518 6679 1490 61.9 MiB 0.09 0.00 6.59735 -138.464 -6.59735 6.59735 0.64 0.00087787 0.000814552 0.0436406 0.0403095 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.05 0.189384 0.164689 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.20 0.07 0.12 -1 -1 0.20 0.0261246 0.0229644 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.18 vpr 62.84 MiB -1 -1 0.30 18560 15 0.50 -1 -1 32856 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1771 9773 2274 6549 950 62.8 MiB 0.12 0.00 9.55013 -184.943 -9.55013 9.55013 0.70 0.00112311 0.00103818 0.0545978 0.0504585 36 4458 20 6.55708e+06 409870 612192. 2118.31 3.19 0.286556 0.249827 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0463971 0.0407293 257 257 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.38 vpr 62.94 MiB -1 -1 0.25 17660 13 0.30 -1 -1 32868 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1402 7958 1933 5289 736 62.9 MiB 0.09 0.00 7.87358 -164.462 -7.87358 7.87358 0.64 0.000888595 0.000817115 0.0411948 0.0380676 30 3523 41 6.55708e+06 337540 526063. 1820.29 5.01 0.326059 0.28124 21886 126133 -1 2862 16 1203 3677 173554 41260 6.73256 6.73256 -152.703 -6.73256 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0336165 0.029693 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.23 vpr 61.85 MiB -1 -1 0.21 17268 11 0.13 -1 -1 32436 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63332 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 23.4 MiB 0.29 1082 11804 3066 7108 1630 61.8 MiB 0.10 0.00 6.28346 -137.062 -6.28346 6.28346 0.64 0.000730603 0.000676828 0.0483634 0.0447757 30 2616 26 6.55708e+06 265210 526063. 1820.29 1.10 0.141032 0.124313 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.25 0.06 0.11 -1 -1 0.25 0.021796 0.0193213 141 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 13.06 vpr 62.73 MiB -1 -1 0.21 17772 12 0.29 -1 -1 32744 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1459 6058 1136 4425 497 62.7 MiB 0.07 0.00 7.4882 -153.189 -7.4882 7.4882 0.63 0.000960979 0.000887993 0.0311492 0.0288322 28 4439 38 6.55708e+06 361650 500653. 1732.36 9.35 0.35739 0.306707 21310 115450 -1 3721 57 4013 13613 1649164 568355 6.87004 6.87004 -155.733 -6.87004 0 0 612192. 2118.31 0.17 0.45 0.10 -1 -1 0.17 0.0930184 0.0797293 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.53 vpr 62.15 MiB -1 -1 0.21 17104 12 0.19 -1 -1 32720 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1183 11346 2851 6780 1715 62.2 MiB 0.10 0.00 7.37351 -152.427 -7.37351 7.37351 0.63 0.000789633 0.000732088 0.0477205 0.0442547 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.33 0.153809 0.135088 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0287753 0.0253382 153 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.04 vpr 61.95 MiB -1 -1 0.20 17344 12 0.23 -1 -1 32640 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 23.5 MiB 0.19 948 9803 2338 5714 1751 61.9 MiB 0.09 0.00 7.00946 -139.977 -7.00946 7.00946 0.63 0.000741495 0.000687044 0.0433646 0.0401003 26 3038 22 6.55708e+06 253155 477104. 1650.88 1.94 0.137295 0.121038 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.23 0.10 0.10 -1 -1 0.23 0.0356974 0.0320201 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 10.63 vpr 62.26 MiB -1 -1 0.27 17896 12 0.26 -1 -1 32692 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1279 5474 1033 4128 313 62.3 MiB 0.06 0.00 6.7577 -128.343 -6.7577 6.7577 0.63 0.000916435 0.000850116 0.0277685 0.0257427 30 3505 36 6.55708e+06 373705 526063. 1820.29 7.22 0.301086 0.259454 21886 126133 -1 2899 27 1332 4449 354174 132887 5.94258 5.94258 -126.347 -5.94258 0 0 666494. 2306.21 0.23 0.14 0.12 -1 -1 0.23 0.0511593 0.0451008 191 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 5.59 vpr 62.72 MiB -1 -1 0.26 17796 13 0.43 -1 -1 32764 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.2 MiB 0.53 1641 6757 1409 4886 462 62.7 MiB 0.08 0.00 8.4108 -177.204 -8.4108 8.4108 0.63 0.00103866 0.00096184 0.0353468 0.0326995 30 4203 45 6.55708e+06 397815 526063. 1820.29 1.84 0.197469 0.171712 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.0390821 0.0344285 238 236 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.66 vpr 62.41 MiB -1 -1 0.26 17588 12 0.27 -1 -1 32816 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1388 15645 4295 9025 2325 62.4 MiB 0.15 0.00 7.61066 -152.509 -7.61066 7.61066 0.63 0.00094641 0.000872945 0.0712624 0.0658114 30 3749 42 6.55708e+06 385760 526063. 1820.29 2.09 0.217175 0.190896 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.18 0.10 0.14 -1 -1 0.18 0.039802 0.0348552 200 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.27 vpr 61.77 MiB -1 -1 0.22 17560 12 0.18 -1 -1 32424 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63248 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 23.3 MiB 0.53 1058 4842 1062 3260 520 61.8 MiB 0.05 0.00 6.82123 -141.643 -6.82123 6.82123 0.63 0.000559608 0.000510727 0.0206815 0.0190925 30 2539 19 6.55708e+06 241100 526063. 1820.29 0.98 0.103203 0.0900578 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0336133 0.0293351 126 120 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.06 vpr 62.16 MiB -1 -1 0.25 17632 12 0.23 -1 -1 32436 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 23.6 MiB 0.34 1176 10455 2348 6392 1715 62.2 MiB 0.10 0.00 7.13387 -142.33 -7.13387 7.13387 0.65 0.00080301 0.000736554 0.0463731 0.0429175 28 3265 32 6.55708e+06 289320 500653. 1732.36 1.78 0.156435 0.137396 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0365056 0.0320114 154 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.10 vpr 62.46 MiB -1 -1 0.21 17776 11 0.23 -1 -1 32648 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1196 13547 4241 6931 2375 62.5 MiB 0.12 0.00 6.85121 -131.802 -6.85121 6.85121 0.78 0.000870052 0.000803406 0.0602416 0.0556347 36 3385 32 6.55708e+06 361650 612192. 2118.31 3.57 0.254014 0.221032 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0282945 0.0250334 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.30 vpr 62.32 MiB -1 -1 0.22 17328 11 0.20 -1 -1 32732 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 23.6 MiB 0.17 1080 10647 2769 6876 1002 62.3 MiB 0.09 0.00 6.62889 -122.091 -6.62889 6.62889 0.74 0.00063506 0.000581468 0.039159 0.0357844 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.01 0.20548 0.177653 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0346683 0.030266 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 5.23 vpr 62.12 MiB -1 -1 0.23 17324 13 0.21 -1 -1 32720 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1040 5271 1036 3997 238 62.1 MiB 0.06 0.00 7.2482 -136.339 -7.2482 7.2482 0.68 0.000771735 0.000715037 0.0245464 0.0226815 36 2751 18 6.55708e+06 301375 612192. 2118.31 2.04 0.168727 0.146685 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.21 0.08 0.12 -1 -1 0.21 0.031966 0.0279204 148 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.15 vpr 62.28 MiB -1 -1 0.20 17740 12 0.18 -1 -1 32676 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1203 11270 2888 6672 1710 62.3 MiB 0.12 0.00 7.39203 -156.297 -7.39203 7.39203 0.68 0.000854172 0.000790632 0.0553627 0.0514326 30 3360 45 6.55708e+06 337540 526063. 1820.29 1.86 0.190245 0.166773 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0285339 0.0256096 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.47 vpr 62.35 MiB -1 -1 0.20 17604 13 0.28 -1 -1 32736 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1314 8130 1959 5459 712 62.4 MiB 0.08 0.00 8.02027 -155.447 -8.02027 8.02027 0.66 0.000909159 0.000842698 0.0405243 0.0375494 30 3005 23 6.55708e+06 325485 526063. 1820.29 1.15 0.155258 0.135627 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.23 0.07 0.11 -1 -1 0.23 0.0289458 0.0256149 187 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.61 vpr 62.58 MiB -1 -1 0.22 17896 14 0.25 -1 -1 32804 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1224 14168 3595 8187 2386 62.6 MiB 0.14 0.00 8.42547 -164.88 -8.42547 8.42547 0.63 0.000938912 0.000867629 0.0680988 0.0629251 26 3972 40 6.55708e+06 337540 477104. 1650.88 2.37 0.212474 0.187082 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0391546 0.034268 196 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 4.94 vpr 62.38 MiB -1 -1 0.27 18200 14 0.24 -1 -1 32984 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 23.9 MiB 0.27 1263 9791 2392 5641 1758 62.4 MiB 0.09 0.00 7.61341 -152.493 -7.61341 7.61341 0.60 0.000883697 0.00081819 0.0467791 0.0433476 30 3316 50 6.55708e+06 301375 526063. 1820.29 1.67 0.192514 0.168121 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.22 0.08 0.11 -1 -1 0.22 0.0323637 0.0288305 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.45 vpr 62.53 MiB -1 -1 0.23 18032 13 0.32 -1 -1 32808 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1335 6813 1455 4737 621 62.5 MiB 0.08 0.00 7.97606 -158.638 -7.97606 7.97606 0.65 0.000961073 0.000889504 0.0349899 0.0324024 28 4023 34 6.55708e+06 349595 500653. 1732.36 2.03 0.168189 0.146324 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.17 0.18 0.10 -1 -1 0.17 0.05553 0.0482778 205 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.31 vpr 61.93 MiB -1 -1 0.19 17532 13 0.18 -1 -1 32376 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63412 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 23.4 MiB 0.39 1181 4811 970 3437 404 61.9 MiB 0.05 0.00 7.32681 -149.503 -7.32681 7.32681 0.64 0.000752414 0.000693348 0.0219869 0.0203296 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.17 0.118601 0.103452 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0272285 0.0239721 147 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 6.08 vpr 62.55 MiB -1 -1 0.19 17924 13 0.44 -1 -1 32904 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1409 6058 1135 4495 428 62.5 MiB 0.07 0.00 8.2444 -163.721 -8.2444 8.2444 0.63 0.000986105 0.000914713 0.032741 0.0303689 36 3519 23 6.55708e+06 385760 612192. 2118.31 2.67 0.230859 0.200283 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.20 0.08 0.13 -1 -1 0.20 0.0338734 0.0298847 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 5.47 vpr 62.42 MiB -1 -1 0.25 17780 14 0.32 -1 -1 32836 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 23.9 MiB 0.44 1264 7231 1520 5560 151 62.4 MiB 0.08 0.00 8.00109 -166.402 -8.00109 8.00109 0.79 0.000905152 0.000834002 0.0364219 0.0336322 30 3743 50 6.55708e+06 325485 526063. 1820.29 1.87 0.184969 0.160767 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0288165 0.0254639 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.17 vpr 62.38 MiB -1 -1 0.22 17720 13 0.22 -1 -1 32760 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1305 14323 3915 8229 2179 62.4 MiB 0.13 0.00 7.86768 -158.537 -7.86768 7.86768 0.63 0.00087121 0.000807574 0.0675021 0.0625652 38 3237 35 6.55708e+06 301375 638502. 2209.35 2.58 0.25872 0.226201 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.23 0.11 0.15 -1 -1 0.23 0.0400319 0.0350057 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.13 vpr 62.39 MiB -1 -1 0.27 17692 13 0.21 -1 -1 32744 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1164 9989 2471 5804 1714 62.4 MiB 0.08 0.00 7.4808 -136.781 -7.4808 7.4808 0.64 0.000867177 0.000803666 0.032558 0.0298046 28 4049 33 6.55708e+06 325485 500653. 1732.36 3.77 0.157841 0.137209 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.24 0.10 0.10 -1 -1 0.24 0.0313235 0.0277301 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 8.00 vpr 62.74 MiB -1 -1 0.16 17612 14 0.34 -1 -1 32936 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1476 8091 1866 5495 730 62.7 MiB 0.09 0.00 7.88885 -165.953 -7.88885 7.88885 0.63 0.00100812 0.000933366 0.0387456 0.0358911 30 3544 39 6.55708e+06 446035 526063. 1820.29 4.55 0.350649 0.302344 21886 126133 -1 2956 19 1495 4336 195157 47267 7.0377 7.0377 -158.211 -7.0377 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.039337 0.0345541 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.82 vpr 62.47 MiB -1 -1 0.29 17724 11 0.27 -1 -1 32716 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1160 8130 1856 5819 455 62.5 MiB 0.09 0.00 6.86478 -134.007 -6.86478 6.86478 0.70 0.000887622 0.000818824 0.039382 0.036347 28 3852 30 6.55708e+06 349595 500653. 1732.36 2.27 0.168528 0.147423 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.21 0.11 0.10 -1 -1 0.21 0.0364168 0.0319017 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.34 vpr 61.93 MiB -1 -1 0.18 17060 13 0.17 -1 -1 32612 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 23.5 MiB 0.25 1142 8083 2034 5178 871 61.9 MiB 0.04 0.00 7.01052 -158.499 -7.01052 7.01052 0.59 0.000323115 0.00029612 0.0155777 0.0142832 28 3461 48 6.55708e+06 289320 500653. 1732.36 2.45 0.133163 0.114959 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.23 0.09 0.11 -1 -1 0.23 0.0284807 0.0250328 138 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.49 vpr 62.25 MiB -1 -1 0.26 17896 14 0.30 -1 -1 32856 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 23.7 MiB 0.54 1316 5267 941 3849 477 62.3 MiB 0.06 0.00 8.08175 -166.146 -8.08175 8.08175 0.63 0.000878686 0.000815169 0.0261129 0.0241958 36 3344 49 6.55708e+06 337540 612192. 2118.31 3.90 0.240137 0.207451 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0340415 0.0298988 179 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 14.19 vpr 62.91 MiB -1 -1 0.24 18280 15 0.50 -1 -1 32828 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1738 9421 2028 6135 1258 62.9 MiB 0.11 0.00 9.11118 -191.695 -9.11118 9.11118 0.63 0.00107847 0.000998512 0.0497301 0.0460509 30 4813 25 6.55708e+06 397815 526063. 1820.29 10.53 0.339347 0.294745 21886 126133 -1 3846 17 1881 5477 280413 64438 7.85982 7.85982 -180.296 -7.85982 0 0 666494. 2306.21 0.21 0.11 0.11 -1 -1 0.21 0.0406614 0.0360204 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.94 vpr 61.80 MiB -1 -1 0.18 17364 11 0.21 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63284 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 23.2 MiB 0.44 1015 8213 1831 5887 495 61.8 MiB 0.07 0.00 6.43354 -132.345 -6.43354 6.43354 0.64 0.000709664 0.000657825 0.0333795 0.0309252 26 2795 26 6.55708e+06 265210 477104. 1650.88 1.80 0.124338 0.108911 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.16 0.08 0.06 -1 -1 0.16 0.0266727 0.0233841 129 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 4.97 vpr 62.26 MiB -1 -1 0.22 17116 12 0.23 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1181 9395 2257 5715 1423 62.3 MiB 0.09 0.00 7.12111 -149.72 -7.12111 7.12111 0.76 0.000784101 0.000726786 0.0400481 0.0370684 34 3103 20 6.55708e+06 313430 585099. 2024.56 1.71 0.191288 0.166106 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.20 0.07 0.08 -1 -1 0.20 0.0260192 0.0229575 156 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.15 vpr 62.53 MiB -1 -1 0.27 17600 12 0.29 -1 -1 32732 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1374 9732 2347 6008 1377 62.5 MiB 0.10 0.00 7.22518 -156.32 -7.22518 7.22518 0.63 0.000987404 0.000913434 0.047494 0.0439283 30 3769 28 6.55708e+06 385760 526063. 1820.29 1.74 0.177063 0.154795 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0373941 0.0328894 213 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 5.49 vpr 62.38 MiB -1 -1 0.27 17628 12 0.24 -1 -1 32860 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1295 7929 1664 5456 809 62.4 MiB 0.09 0.00 7.52995 -159.234 -7.52995 7.52995 0.63 0.000868922 0.000795895 0.0384175 0.035536 36 3430 23 6.55708e+06 313430 612192. 2118.31 2.09 0.215758 0.187098 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0294248 0.0261497 181 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.53 vpr 62.90 MiB -1 -1 0.27 17980 14 0.56 -1 -1 32880 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.4 MiB 0.49 1613 7655 1578 5578 499 62.9 MiB 0.09 0.00 9.00229 -179.771 -9.00229 9.00229 0.64 0.00106775 0.000987724 0.0425373 0.0393225 36 4565 44 6.55708e+06 373705 612192. 2118.31 4.53 0.300757 0.260772 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.25 0.11 0.14 -1 -1 0.25 0.0408003 0.0360208 234 233 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.76 vpr 62.27 MiB -1 -1 0.26 17364 12 0.21 -1 -1 32688 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 23.6 MiB 0.48 1246 9687 2384 6348 955 62.3 MiB 0.09 0.00 7.02918 -135.408 -7.02918 7.02918 0.75 0.000677993 0.000620472 0.0441905 0.0407053 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.15 0.156189 0.136988 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0176914 0.0159263 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.27 vpr 62.05 MiB -1 -1 0.22 17672 11 0.19 -1 -1 32624 -1 -1 26 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 23.6 MiB 0.29 833 9013 2082 5123 1808 62.0 MiB 0.08 0.00 7.08055 -122.398 -7.08055 7.08055 0.70 0.000712222 0.000659564 0.037363 0.0345959 28 2481 16 6.55708e+06 313430 500653. 1732.36 0.95 0.120802 0.106491 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0262979 0.0232706 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 8.67 vpr 62.98 MiB -1 -1 0.29 18536 13 0.41 -1 -1 32972 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 24.7 MiB 0.41 1984 9864 2435 6697 732 63.0 MiB 0.11 0.00 7.66038 -164.562 -7.66038 7.66038 0.63 0.00117282 0.00108413 0.0522674 0.0482588 36 4924 33 6.55708e+06 482200 612192. 2118.31 4.79 0.308698 0.267816 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0472875 0.0416873 286 286 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 4.90 vpr 62.42 MiB -1 -1 0.22 17940 14 0.25 -1 -1 33200 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1315 7027 1431 4957 639 62.4 MiB 0.08 0.00 8.27869 -161.961 -8.27869 8.27869 0.63 0.000896298 0.000831276 0.0344007 0.0319053 28 3660 24 6.55708e+06 337540 500653. 1732.36 1.70 0.155301 0.136287 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0364846 0.0319693 188 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 4.22 vpr 62.09 MiB -1 -1 0.24 17608 12 0.21 -1 -1 32372 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63580 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1196 5395 963 4230 202 62.1 MiB 0.05 0.00 7.24055 -154.388 -7.24055 7.24055 0.64 0.000587797 0.00053718 0.0198688 0.0182244 30 2856 20 6.55708e+06 325485 526063. 1820.29 1.03 0.109201 0.095004 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0288878 0.0259008 145 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 4.74 vpr 62.45 MiB -1 -1 0.26 17628 13 0.27 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1201 6321 1371 4614 336 62.4 MiB 0.07 0.00 7.64034 -157.02 -7.64034 7.64034 0.69 0.000880549 0.000815455 0.0337812 0.0313537 30 3256 40 6.55708e+06 313430 526063. 1820.29 1.24 0.163496 0.142339 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0304574 0.0270465 169 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.02 vpr 62.97 MiB -1 -1 0.26 18100 13 0.37 -1 -1 32820 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1537 8423 1899 6115 409 63.0 MiB 0.09 0.00 7.71709 -159.898 -7.71709 7.71709 0.71 0.00102057 0.000944543 0.0424441 0.0392349 36 3879 25 6.55708e+06 421925 612192. 2118.31 2.57 0.260918 0.226219 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.20 0.06 0.10 -1 -1 0.20 0.022951 0.0207361 233 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.66 vpr 62.80 MiB -1 -1 0.25 17768 11 0.24 -1 -1 32684 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1421 8703 2291 5674 738 62.8 MiB 0.10 0.00 6.43018 -129.379 -6.43018 6.43018 0.65 0.000920913 0.00085366 0.0466386 0.0431736 38 3311 27 6.55708e+06 373705 638502. 2209.35 2.31 0.235314 0.204093 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.22 0.09 0.13 -1 -1 0.22 0.0338109 0.0298135 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.01 vpr 62.70 MiB -1 -1 0.28 17804 15 0.35 -1 -1 32684 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 24.0 MiB 0.47 1495 8283 1832 5858 593 62.7 MiB 0.09 0.00 9.21891 -185.491 -9.21891 9.21891 0.64 0.000958347 0.000885807 0.0419258 0.0387979 38 3387 17 6.55708e+06 349595 638502. 2209.35 2.29 0.227459 0.197566 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.23 0.08 0.13 -1 -1 0.23 0.0309697 0.0274712 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 11.31 vpr 62.52 MiB -1 -1 0.28 18088 13 0.31 -1 -1 32688 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1391 6271 1140 4757 374 62.5 MiB 0.07 0.00 8.07023 -173.04 -8.07023 8.07023 0.67 0.000743943 0.0006821 0.0262411 0.0241326 30 3593 20 6.55708e+06 361650 526063. 1820.29 7.73 0.277374 0.239094 21886 126133 -1 2903 17 1284 3905 184760 43217 7.10844 7.10844 -159.923 -7.10844 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0343961 0.0302981 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.58 vpr 62.13 MiB -1 -1 0.24 17508 12 0.20 -1 -1 32844 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 23.6 MiB 0.46 1116 9738 2558 6406 774 62.1 MiB 0.09 0.00 7.61081 -154.169 -7.61081 7.61081 0.63 0.000781222 0.000724484 0.0406666 0.0376605 30 3005 25 6.55708e+06 349595 526063. 1820.29 4.18 0.227645 0.197295 21886 126133 -1 2423 19 1255 3517 162640 39524 6.47024 6.47024 -141.633 -6.47024 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0302983 0.0266056 157 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 9.73 vpr 62.04 MiB -1 -1 0.20 17540 11 0.20 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1023 14221 4533 7413 2275 62.0 MiB 0.12 0.00 6.85492 -138.928 -6.85492 6.85492 0.64 0.000733699 0.000679105 0.0588553 0.0544248 30 2928 46 6.55708e+06 253155 526063. 1820.29 6.51 0.298242 0.258627 21886 126133 -1 2286 18 1070 2867 167614 45871 6.07244 6.07244 -136.814 -6.07244 0 0 666494. 2306.21 0.21 0.07 0.12 -1 -1 0.21 0.0275551 0.0242017 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 7.09 vpr 62.54 MiB -1 -1 0.25 17600 13 0.31 -1 -1 32756 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 23.9 MiB 0.47 1413 7544 1727 4833 984 62.5 MiB 0.08 0.00 7.87899 -160.785 -7.87899 7.87899 0.65 0.000947523 0.00087614 0.0384111 0.0355323 36 4021 32 6.55708e+06 349595 612192. 2118.31 3.40 0.249496 0.21695 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.23 0.11 0.13 -1 -1 0.23 0.0377968 0.0331596 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.07 vpr 61.89 MiB -1 -1 0.23 17512 10 0.21 -1 -1 32588 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63376 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 23.5 MiB 0.20 868 12919 4781 6181 1957 61.9 MiB 0.11 0.00 5.78714 -114.742 -5.78714 5.78714 0.63 0.000714506 0.000655741 0.0519028 0.0479665 36 2361 20 6.55708e+06 289320 612192. 2118.31 1.97 0.195938 0.170685 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0225356 0.0199402 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 4.83 vpr 62.03 MiB -1 -1 0.22 17344 14 0.19 -1 -1 32628 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63520 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 23.5 MiB 0.48 1127 8083 1934 5578 571 62.0 MiB 0.08 0.00 7.89252 -162.804 -7.89252 7.89252 0.65 0.000769535 0.000712076 0.0347412 0.0321566 30 2792 49 6.55708e+06 289320 526063. 1820.29 1.50 0.159698 0.139173 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0314272 0.0275588 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 4.97 vpr 62.29 MiB -1 -1 0.28 18056 13 0.28 -1 -1 32732 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1259 5343 1011 3807 525 62.3 MiB 0.06 0.00 7.51815 -158.387 -7.51815 7.51815 0.64 0.000859942 0.000796204 0.0252866 0.0234705 30 3403 50 6.55708e+06 361650 526063. 1820.29 1.62 0.167142 0.144715 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341109 0.0299565 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 5.90 vpr 61.98 MiB -1 -1 0.23 17380 12 0.20 -1 -1 32592 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63468 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 23.5 MiB 0.31 1126 6425 1245 4721 459 62.0 MiB 0.06 0.00 6.61153 -138.873 -6.61153 6.61153 0.66 0.000724375 0.000671539 0.0264456 0.0244954 26 3323 44 6.55708e+06 313430 477104. 1650.88 2.76 0.138588 0.120423 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0274351 0.0240656 138 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 6.51 vpr 62.44 MiB -1 -1 0.21 17720 12 0.24 -1 -1 32968 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1378 9336 2424 5781 1131 62.4 MiB 0.09 0.00 6.98257 -148.375 -6.98257 6.98257 0.69 0.000657391 0.000601924 0.0376873 0.0344535 28 3883 35 6.55708e+06 313430 500653. 1732.36 3.21 0.174672 0.152182 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.043068 0.0374353 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 4.84 vpr 62.68 MiB -1 -1 0.24 18208 13 0.28 -1 -1 32748 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1315 8372 1899 5332 1141 62.7 MiB 0.09 0.00 7.89081 -157.415 -7.89081 7.89081 0.63 0.000914525 0.000845925 0.0412714 0.0382094 30 3625 30 6.55708e+06 349595 526063. 1820.29 1.32 0.169378 0.148359 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0341033 0.0300214 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.31 vpr 62.04 MiB -1 -1 0.23 17380 11 0.17 -1 -1 32668 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1172 8405 1842 5723 840 62.0 MiB 0.08 0.00 6.25963 -142.54 -6.25963 6.25963 0.63 0.00076163 0.000696475 0.0344382 0.0318608 28 3065 24 6.55708e+06 301375 500653. 1732.36 1.25 0.129778 0.113739 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0248129 0.021875 148 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.76 vpr 62.33 MiB -1 -1 0.24 17324 13 0.20 -1 -1 32756 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1201 7888 1972 5242 674 62.3 MiB 0.08 0.00 7.53481 -156.077 -7.53481 7.53481 0.63 0.000830592 0.000769757 0.0365793 0.0338676 36 3071 27 6.55708e+06 289320 612192. 2118.31 2.60 0.213351 0.185131 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0275581 0.0243411 164 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 4.96 vpr 62.33 MiB -1 -1 0.25 17660 13 0.26 -1 -1 33036 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 23.8 MiB 0.74 1318 8165 2007 5452 706 62.3 MiB 0.09 0.00 7.90343 -168.183 -7.90343 7.90343 0.65 0.000918547 0.000851292 0.0401702 0.0371416 30 3226 19 6.55708e+06 337540 526063. 1820.29 1.09 0.1467 0.128589 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.26 0.08 0.12 -1 -1 0.26 0.0332039 0.0296354 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 11.73 vpr 62.04 MiB -1 -1 0.25 17644 11 0.24 -1 -1 32716 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 23.5 MiB 0.19 1119 12568 3466 6955 2147 62.0 MiB 0.11 0.00 6.27069 -123.259 -6.27069 6.27069 0.68 0.000796484 0.000737787 0.0546023 0.0505123 30 2940 50 6.55708e+06 325485 526063. 1820.29 8.44 0.356377 0.306526 21886 126133 -1 2517 15 1008 3060 157394 36211 5.50298 5.50298 -118.863 -5.50298 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0269436 0.023766 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 11.68 vpr 62.73 MiB -1 -1 0.29 18324 14 0.31 -1 -1 33224 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 24.3 MiB 0.35 1606 6711 1323 5111 277 62.7 MiB 0.08 0.00 8.36721 -183.374 -8.36721 8.36721 0.65 0.00102486 0.000947672 0.0344959 0.0319436 30 4329 37 6.55708e+06 421925 526063. 1820.29 8.12 0.32868 0.284636 21886 126133 -1 3550 24 1906 6091 351716 94716 7.38604 7.38604 -174.226 -7.38604 0 0 666494. 2306.21 0.20 0.13 0.14 -1 -1 0.20 0.0393313 0.0353088 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.87 vpr 61.95 MiB -1 -1 0.19 17232 12 0.15 -1 -1 32552 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63436 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 23.5 MiB 0.26 1117 4987 873 3940 174 61.9 MiB 0.05 0.00 6.95154 -148.876 -6.95154 6.95154 0.63 0.000724331 0.000671803 0.0204352 0.0189657 36 2672 44 6.55708e+06 337540 612192. 2118.31 1.90 0.185477 0.159989 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.20 0.06 0.13 -1 -1 0.20 0.0217652 0.0193206 138 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 6.78 vpr 62.48 MiB -1 -1 0.27 18024 13 0.29 -1 -1 32920 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1370 8603 2025 5470 1108 62.5 MiB 0.09 0.00 7.91043 -160.998 -7.91043 7.91043 0.64 0.000918437 0.000850414 0.0435052 0.0402443 28 4265 49 6.55708e+06 301375 500653. 1732.36 3.27 0.199403 0.174719 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.17 0.11 0.11 -1 -1 0.17 0.0343638 0.0302617 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 4.16 vpr 62.10 MiB -1 -1 0.23 17728 13 0.17 -1 -1 32472 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1056 8130 1788 5768 574 62.1 MiB 0.08 0.00 7.50778 -157.173 -7.50778 7.50778 0.64 0.000760406 0.00070167 0.0336013 0.0310274 30 2704 18 6.55708e+06 313430 526063. 1820.29 0.96 0.121572 0.106554 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0266043 0.0235058 151 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 5.66 vpr 62.36 MiB -1 -1 0.26 17564 12 0.21 -1 -1 32784 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1163 6723 1513 4783 427 62.4 MiB 0.07 0.00 6.89912 -149.425 -6.89912 6.89912 0.65 0.00088808 0.00082135 0.033233 0.030714 28 3528 41 6.55708e+06 313430 500653. 1732.36 2.40 0.174982 0.151967 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.22 0.06 0.10 -1 -1 0.22 0.0268275 0.0237434 176 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 17.83 vpr 62.72 MiB -1 -1 0.29 18192 15 0.47 -1 -1 33296 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1744 7060 1356 4899 805 62.7 MiB 0.09 0.00 8.47263 -171.112 -8.47263 8.47263 0.68 0.00113888 0.00105259 0.0395491 0.0365833 30 5706 47 6.55708e+06 433980 526063. 1820.29 14.03 0.405721 0.349834 21886 126133 -1 4008 29 2412 8168 612663 183661 7.6799 7.6799 -172.318 -7.6799 0 0 666494. 2306.21 0.18 0.20 0.11 -1 -1 0.18 0.0630638 0.0549973 256 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.35 vpr 61.52 MiB -1 -1 0.21 17184 10 0.11 -1 -1 32088 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62992 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 23.1 MiB 0.15 585 9368 2413 5125 1830 61.5 MiB 0.07 0.00 5.46394 -116.249 -5.46394 5.46394 0.63 0.000565513 0.000524361 0.0323319 0.0299492 34 2054 46 6.55708e+06 216990 585099. 2024.56 1.54 0.163501 0.141471 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.21 0.03 0.12 -1 -1 0.21 0.0106667 0.00963732 90 84 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.77 vpr 62.02 MiB -1 -1 0.24 17540 13 0.18 -1 -1 32752 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1072 8919 2278 5395 1246 62.0 MiB 0.08 0.00 7.24406 -148.604 -7.24406 7.24406 0.65 0.000751972 0.000696948 0.0378901 0.0351301 36 2670 24 6.55708e+06 301375 612192. 2118.31 1.67 0.188483 0.164096 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.026035 0.0230102 143 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 4.40 vpr 62.24 MiB -1 -1 0.18 17396 12 0.20 -1 -1 32828 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1142 5938 1144 4647 147 62.2 MiB 0.07 0.00 7.66077 -153.727 -7.66077 7.66077 0.63 0.000850854 0.000789001 0.0292442 0.0270897 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.34 0.144068 0.125452 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0336964 0.0294795 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.11 vpr 61.61 MiB -1 -1 0.21 17112 9 0.13 -1 -1 32588 -1 -1 22 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63088 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 23.0 MiB 0.16 820 8191 2009 5395 787 61.6 MiB 0.07 0.00 5.29417 -99.0147 -5.29417 5.29417 0.63 0.000620747 0.000575977 0.0319767 0.0296659 28 2275 34 6.55708e+06 265210 500653. 1732.36 1.18 0.117706 0.102746 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.17 0.06 0.14 -1 -1 0.17 0.0229447 0.0200984 111 110 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 6.75 vpr 62.74 MiB -1 -1 0.27 17720 12 0.25 -1 -1 32720 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1501 7867 1766 5013 1088 62.7 MiB 0.08 0.00 7.24465 -156.602 -7.24465 7.24465 0.64 0.000958498 0.000887543 0.0378301 0.0350031 36 4232 25 6.55708e+06 397815 612192. 2118.31 3.26 0.205148 0.178354 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.29 0.11 0.14 -1 -1 0.29 0.0365336 0.0322191 212 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.04 vpr 62.54 MiB -1 -1 0.23 17924 13 0.30 -1 -1 32772 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1408 5343 959 3971 413 62.5 MiB 0.08 0.00 8.27458 -166.489 -8.27458 8.27458 0.71 0.000954636 0.00088339 0.0372846 0.0345073 30 3772 34 6.55708e+06 361650 526063. 1820.29 1.64 0.173169 0.151512 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.18 0.09 0.07 -1 -1 0.18 0.0348652 0.0307083 200 199 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.77 vpr 62.60 MiB -1 -1 0.20 17792 1 0.04 -1 -1 29972 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1124 13017 3784 8461 772 62.6 MiB 0.13 0.00 5.44269 -161.211 -5.44269 5.44269 0.64 0.000715108 0.000665402 0.0446369 0.0414901 32 2442 21 6.64007e+06 401856 554710. 1919.41 0.82 0.127216 0.112398 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0298896 0.026078 154 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.82 vpr 62.80 MiB -1 -1 0.20 17900 1 0.03 -1 -1 30408 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1017 14639 5117 7505 2017 62.8 MiB 0.15 0.00 4.98742 -150.865 -4.98742 4.98742 0.64 0.00071411 0.000663173 0.0574368 0.0533487 32 2368 24 6.64007e+06 301392 554710. 1919.41 0.86 0.144263 0.127817 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.19 0.08 0.15 -1 -1 0.19 0.0293314 0.0256167 139 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.10 vpr 62.34 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30204 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.7 MiB 0.24 982 7575 1808 5319 448 62.3 MiB 0.08 0.00 4.35696 -123.732 -4.35696 4.35696 0.63 0.000622767 0.000584088 0.0270145 0.0251309 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.23 0.11292 0.0988938 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0261028 0.0227748 126 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.52 vpr 62.19 MiB -1 -1 0.19 17244 1 0.04 -1 -1 30268 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.7 MiB 0.05 985 10228 2796 6251 1181 62.2 MiB 0.10 0.00 4.65835 -126.219 -4.65835 4.65835 0.63 0.000635111 0.000589893 0.0354783 0.0329869 32 2212 23 6.64007e+06 339066 554710. 1919.41 0.84 0.112039 0.0984495 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.19 0.08 0.10 -1 -1 0.19 0.026366 0.0229502 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.50 vpr 62.39 MiB -1 -1 0.15 17576 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.8 MiB 0.08 1007 9687 2297 6508 882 62.4 MiB 0.10 0.00 4.57112 -133.029 -4.57112 4.57112 0.63 0.000685553 0.000637928 0.0369668 0.0344092 30 2231 22 6.64007e+06 288834 526063. 1820.29 0.84 0.119461 0.105286 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0249203 0.0218348 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.19 vpr 62.47 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30260 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1031 10673 2804 7227 642 62.5 MiB 0.11 0.00 3.47522 -121.603 -3.47522 3.47522 0.67 0.000720224 0.000669161 0.0366703 0.0340659 26 2825 19 6.64007e+06 426972 477104. 1650.88 1.37 0.120069 0.105815 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.16 0.08 0.08 -1 -1 0.16 0.0286129 0.0249948 142 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.58 vpr 62.16 MiB -1 -1 0.11 17312 1 0.03 -1 -1 30664 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.10 589 11532 3345 7374 813 62.2 MiB 0.11 0.00 4.00878 -100.807 -4.00878 4.00878 0.68 0.00056006 0.00051829 0.0467099 0.043428 32 1498 22 6.64007e+06 238602 554710. 1919.41 0.79 0.114318 0.101236 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.19 0.05 0.14 -1 -1 0.19 0.0212322 0.0184908 93 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.52 vpr 62.21 MiB -1 -1 0.18 17156 1 0.03 -1 -1 30080 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.07 892 10318 2381 7361 576 62.2 MiB 0.09 0.00 3.4251 -99.9264 -3.4251 3.4251 0.63 0.000596582 0.0005557 0.0310054 0.0288281 28 2086 21 6.64007e+06 389298 500653. 1732.36 0.81 0.101315 0.0890007 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.022673 0.0197983 115 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.58 vpr 62.54 MiB -1 -1 0.15 17772 1 0.03 -1 -1 30180 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 24.0 MiB 0.22 960 9623 2754 6116 753 62.5 MiB 0.09 0.00 3.62801 -120.96 -3.62801 3.62801 0.64 0.000637918 0.000593334 0.0361898 0.0336753 28 2163 20 6.64007e+06 251160 500653. 1732.36 0.79 0.110239 0.0970858 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0237328 0.0208442 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.06 MiB -1 -1 0.12 17500 1 0.03 -1 -1 30080 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.6 MiB 0.17 841 12506 4273 6237 1996 62.1 MiB 0.12 0.00 3.87558 -126.558 -3.87558 3.87558 0.69 0.000617351 0.000571712 0.0466399 0.0433854 28 1979 19 6.64007e+06 213486 500653. 1732.36 0.88 0.113957 0.101028 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.023396 0.0205072 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.78 vpr 62.18 MiB -1 -1 0.13 17464 1 0.03 -1 -1 30340 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.5 MiB 0.14 796 12078 3517 6936 1625 62.2 MiB 0.11 0.00 4.09995 -113.228 -4.09995 4.09995 0.66 0.00061672 0.000573424 0.0460834 0.0428695 32 1650 18 6.64007e+06 213486 554710. 1919.41 0.78 0.116359 0.102969 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0223267 0.019433 98 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.67 vpr 62.31 MiB -1 -1 0.19 17312 1 0.03 -1 -1 30108 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 0.20 811 8448 2011 5971 466 62.3 MiB 0.09 0.00 3.76138 -119.223 -3.76138 3.76138 0.65 0.000595625 0.000553916 0.0300347 0.0277524 32 2052 21 6.64007e+06 226044 554710. 1919.41 0.79 0.0993311 0.0869632 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.23 0.05 0.13 -1 -1 0.23 0.0211891 0.0185846 109 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.86 vpr 62.50 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30424 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1094 10228 2675 6918 635 62.5 MiB 0.11 0.00 4.45106 -144.281 -4.45106 4.45106 0.65 0.000694857 0.000645755 0.038396 0.0356676 28 2647 19 6.64007e+06 301392 500653. 1732.36 0.95 0.119458 0.105329 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0288436 0.0251533 139 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.10 vpr 62.67 MiB -1 -1 0.16 17636 1 0.03 -1 -1 30280 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 940 8735 2013 6355 367 62.7 MiB 0.10 0.00 5.05578 -142.31 -5.05578 5.05578 0.65 0.000721625 0.000670063 0.0315537 0.0292718 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.25 0.131309 0.115034 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0264947 0.023045 134 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.54 vpr 61.96 MiB -1 -1 0.17 17508 1 0.03 -1 -1 30380 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.4 MiB 0.11 637 6668 1590 4651 427 62.0 MiB 0.07 0.00 3.28519 -90.5035 -3.28519 3.28519 0.70 0.000546239 0.000508512 0.0277072 0.0258924 28 1662 22 6.64007e+06 263718 500653. 1732.36 0.83 0.0932098 0.0819535 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0198158 0.0172555 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.69 vpr 62.60 MiB -1 -1 0.19 17504 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 24.0 MiB 0.15 961 6890 1523 4904 463 62.6 MiB 0.08 0.00 4.06512 -124.686 -4.06512 4.06512 0.66 0.000720839 0.000669571 0.0289929 0.0269658 32 2268 21 6.64007e+06 276276 554710. 1919.41 0.86 0.114843 0.100645 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0277771 0.0243553 133 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 3.80 vpr 62.58 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30088 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1114 15447 4373 9239 1835 62.6 MiB 0.15 0.00 4.49004 -144.522 -4.49004 4.49004 0.64 0.000707714 0.000658878 0.0581151 0.0540047 30 2367 22 6.64007e+06 288834 526063. 1820.29 0.92 0.140926 0.125116 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0293273 0.0256321 138 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.50 vpr 62.26 MiB -1 -1 0.09 17364 1 0.03 -1 -1 30288 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.8 MiB 0.10 723 8493 1892 6266 335 62.3 MiB 0.09 0.00 2.85064 -99.9956 -2.85064 2.85064 0.63 0.000655907 0.000607859 0.0284804 0.0264517 26 1971 23 6.64007e+06 364182 477104. 1650.88 0.92 0.106345 0.0930189 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0286757 0.0248945 110 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.34 vpr 61.74 MiB -1 -1 0.14 17312 1 0.03 -1 -1 30160 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63220 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.1 MiB 0.06 681 12139 4399 6260 1480 61.7 MiB 0.09 0.00 2.38033 -81.64 -2.38033 2.38033 0.64 0.000494934 0.000459568 0.0383807 0.0356678 32 1405 20 6.64007e+06 188370 554710. 1919.41 0.73 0.0957291 0.0845742 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.20 0.03 0.12 -1 -1 0.20 0.0105295 0.00931477 81 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.70 vpr 62.27 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30448 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 0.22 706 14123 4873 6572 2678 62.3 MiB 0.12 0.00 4.95769 -142.332 -4.95769 4.95769 0.64 0.000614608 0.000571874 0.0503569 0.0468352 36 1838 20 6.64007e+06 251160 612192. 2118.31 1.77 0.165203 0.145008 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0215654 0.0189283 128 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.48 vpr 62.54 MiB -1 -1 0.15 17728 1 0.03 -1 -1 30388 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.06 905 8735 1899 5951 885 62.5 MiB 0.09 0.00 4.18572 -129.145 -4.18572 4.18572 0.67 0.000701475 0.000645104 0.0305489 0.0283647 30 2116 22 6.64007e+06 389298 526063. 1820.29 0.80 0.113734 0.0993768 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0283488 0.0247594 135 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.83 vpr 62.95 MiB -1 -1 0.17 17792 1 0.03 -1 -1 30244 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1203 12167 3358 7515 1294 63.0 MiB 0.13 0.00 4.64616 -143.706 -4.64616 4.64616 0.65 0.000728747 0.00067724 0.0476266 0.0442487 26 3212 23 6.64007e+06 313950 477104. 1650.88 1.81 0.137198 0.121241 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0291194 0.0258586 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.48 vpr 61.70 MiB -1 -1 0.18 16976 1 0.02 -1 -1 30648 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63180 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.1 MiB 0.16 410 10636 4183 5187 1266 61.7 MiB 0.07 0.00 2.43955 -66.7065 -2.43955 2.43955 0.63 0.000430156 0.000399752 0.0301011 0.0279994 26 1192 25 6.64007e+06 226044 477104. 1650.88 0.78 0.0855527 0.0754868 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0151801 0.0133364 77 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.59 vpr 62.23 MiB -1 -1 0.18 17184 1 0.03 -1 -1 30232 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.06 995 7897 1725 4978 1194 62.2 MiB 0.08 0.00 5.05066 -128.356 -5.05066 5.05066 0.66 0.000621641 0.000578795 0.0284151 0.0264605 28 2296 20 6.64007e+06 263718 500653. 1732.36 0.82 0.100861 0.0884325 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0302627 0.0264445 118 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.24 vpr 61.64 MiB -1 -1 0.08 17004 1 0.02 -1 -1 30108 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63124 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.1 MiB 0.07 661 11200 3826 5626 1748 61.6 MiB 0.07 0.00 2.56853 -79.0193 -2.56853 2.56853 0.63 0.000423618 0.000393301 0.0298689 0.0277424 28 1267 14 6.64007e+06 175812 500653. 1732.36 0.72 0.0786409 0.0698868 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.17 0.03 0.10 -1 -1 0.17 0.0130873 0.0115158 79 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.50 vpr 62.27 MiB -1 -1 0.18 17400 1 0.03 -1 -1 30436 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.8 MiB 0.06 831 10318 2723 6880 715 62.3 MiB 0.10 0.00 4.58015 -125.342 -4.58015 4.58015 0.63 0.000625513 0.000580529 0.0327761 0.0304523 28 2131 21 6.64007e+06 376740 500653. 1732.36 0.83 0.107341 0.0943208 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0233594 0.0204135 123 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.60 vpr 62.24 MiB -1 -1 0.13 17248 1 0.03 -1 -1 30352 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.7 MiB 0.06 850 7439 1494 5462 483 62.2 MiB 0.07 0.00 3.82887 -106.637 -3.82887 3.82887 0.74 0.000495139 0.000453898 0.0194017 0.0178374 28 2324 24 6.64007e+06 389298 500653. 1732.36 0.87 0.0972265 0.0845006 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0244515 0.0214183 128 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.17 vpr 62.36 MiB -1 -1 0.12 17848 1 0.03 -1 -1 30216 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 23.8 MiB 0.13 906 17635 6157 8662 2816 62.4 MiB 0.16 0.00 4.78135 -133.838 -4.78135 4.78135 0.65 0.000685258 0.000636188 0.0613465 0.0569353 28 2693 30 6.64007e+06 339066 500653. 1732.36 1.44 0.153206 0.135698 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0250737 0.0219797 126 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.50 vpr 62.16 MiB -1 -1 0.11 17532 1 0.03 -1 -1 30028 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.09 735 5928 1206 4471 251 62.2 MiB 0.06 0.00 3.02179 -99.7239 -3.02179 3.02179 0.63 0.000605528 0.000563599 0.0225999 0.0210452 26 2048 22 6.64007e+06 200928 477104. 1650.88 0.90 0.0955974 0.0834544 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.17 0.09 0.12 -1 -1 0.17 0.0299786 0.0261106 101 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.54 vpr 61.95 MiB -1 -1 0.18 17504 1 0.03 -1 -1 30140 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.08 661 11617 2521 8405 691 61.9 MiB 0.09 0.00 3.24119 -97.0143 -3.24119 3.24119 0.64 0.000570344 0.00053096 0.0374839 0.0348677 28 1701 20 6.64007e+06 288834 500653. 1732.36 0.90 0.103819 0.0916309 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0197295 0.0172216 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.60 vpr 62.07 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30064 -1 -1 23 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.07 583 14123 3845 8834 1444 62.1 MiB 0.11 0.00 3.43604 -94.4648 -3.43604 3.43604 0.63 0.00055454 0.000515695 0.0456054 0.0424057 28 1800 26 6.64007e+06 288834 500653. 1732.36 0.92 0.116046 0.102442 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.23 0.03 0.11 -1 -1 0.23 0.0122704 0.0108113 98 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.81 vpr 62.13 MiB -1 -1 0.16 17100 1 0.03 -1 -1 30260 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.5 MiB 0.06 702 4763 881 3747 135 62.1 MiB 0.05 0.00 3.98575 -113.461 -3.98575 3.98575 0.67 0.000629302 0.000586718 0.0170139 0.0158625 26 2390 34 6.64007e+06 238602 477104. 1650.88 1.12 0.095251 0.0826246 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.17 0.07 0.12 -1 -1 0.17 0.0256134 0.0224433 110 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.63 vpr 62.15 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30144 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.5 MiB 0.06 705 6924 1381 5320 223 62.1 MiB 0.07 0.00 3.56847 -102.973 -3.56847 3.56847 0.67 0.00060865 0.000560695 0.0221444 0.0206066 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.00 0.110175 0.0956717 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.16 0.06 0.07 -1 -1 0.16 0.0219971 0.0191803 103 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.56 vpr 62.34 MiB -1 -1 0.18 17536 1 0.03 -1 -1 30332 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 23.8 MiB 0.13 800 11799 3784 6073 1942 62.3 MiB 0.10 0.00 3.4791 -109.298 -3.4791 3.4791 0.64 0.000598207 0.000555751 0.038916 0.0361733 28 1940 18 6.64007e+06 326508 500653. 1732.36 0.78 0.106245 0.0937018 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0227502 0.0198097 105 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.62 vpr 62.81 MiB -1 -1 0.18 17800 1 0.03 -1 -1 30384 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.3 MiB 0.10 1109 16524 4269 9768 2487 62.8 MiB 0.16 0.00 4.35696 -124.032 -4.35696 4.35696 0.65 0.000851818 0.000799641 0.0573464 0.0533602 32 2645 21 6.64007e+06 477204 554710. 1919.41 0.88 0.151745 0.134631 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0267255 0.0235557 151 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.81 vpr 62.66 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30272 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1062 10676 2654 7216 806 62.7 MiB 0.11 0.00 3.87558 -130.413 -3.87558 3.87558 0.64 0.000759471 0.000702595 0.0371107 0.0343898 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.01 0.132045 0.116169 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0286618 0.0250356 147 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.72 vpr 62.25 MiB -1 -1 0.18 17312 1 0.03 -1 -1 30140 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 23.8 MiB 0.23 894 10228 3268 4917 2043 62.3 MiB 0.10 0.00 4.39381 -127.308 -4.39381 4.39381 0.65 0.000593193 0.000551721 0.0358152 0.0331971 32 2018 21 6.64007e+06 238602 554710. 1919.41 0.84 0.105921 0.093155 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0228558 0.0199305 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.75 vpr 62.59 MiB -1 -1 0.19 17608 1 0.03 -1 -1 30412 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1026 15298 5172 7552 2574 62.6 MiB 0.15 0.00 4.30797 -133.38 -4.30797 4.30797 0.64 0.000718239 0.000667037 0.0589517 0.0547481 32 2288 22 6.64007e+06 313950 554710. 1919.41 0.84 0.144758 0.128306 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.030585 0.0266518 138 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.09 vpr 62.53 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30244 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1296 14996 4340 8343 2313 62.5 MiB 0.15 0.00 5.87616 -177.472 -5.87616 5.87616 0.66 0.00107137 0.00101535 0.0562414 0.0522572 32 3094 21 6.64007e+06 364182 554710. 1919.41 0.90 0.144053 0.127612 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.028605 0.0250134 172 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.85 vpr 62.76 MiB -1 -1 0.13 17620 1 0.04 -1 -1 30388 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1150 16974 4810 10660 1504 62.8 MiB 0.17 0.00 5.08852 -153.875 -5.08852 5.08852 0.64 0.000741348 0.000688796 0.0653868 0.0607044 28 3077 19 6.64007e+06 339066 500653. 1732.36 0.90 0.150853 0.134147 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0293994 0.0257367 164 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.56 vpr 62.51 MiB -1 -1 0.19 17868 1 0.03 -1 -1 30400 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1075 13513 3858 8482 1173 62.5 MiB 0.13 0.00 4.68524 -137.744 -4.68524 4.68524 0.63 0.00069934 0.00064989 0.0468313 0.0434887 30 2366 21 6.64007e+06 389298 526063. 1820.29 0.79 0.128986 0.113924 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0224408 0.0197664 135 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.92 vpr 62.34 MiB -1 -1 0.18 17420 1 0.03 -1 -1 30468 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 23.8 MiB 0.16 975 7767 1720 5470 577 62.3 MiB 0.08 0.00 4.38513 -117.551 -4.38513 4.38513 0.65 0.000621192 0.00057841 0.0272146 0.0252866 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.15 0.104843 0.0919021 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.023845 0.0208563 119 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.16 vpr 62.87 MiB -1 -1 0.20 17884 1 0.03 -1 -1 30436 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 24.6 MiB 0.20 1225 15720 4488 9844 1388 62.9 MiB 0.17 0.00 5.18355 -167.471 -5.18355 5.18355 0.64 0.00086579 0.00080435 0.0589895 0.0547534 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.09 0.158329 0.140034 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0304793 0.0266638 174 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.46 vpr 62.09 MiB -1 -1 0.11 17380 1 0.03 -1 -1 30184 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 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.5 MiB 0.08 755 11064 4559 5783 722 62.1 MiB 0.09 0.00 3.8227 -103.618 -3.8227 3.8227 0.64 0.000569251 0.000528786 0.0362618 0.0336749 30 1736 20 6.64007e+06 263718 526063. 1820.29 0.85 0.102595 0.0903289 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.20 0.06 0.13 -1 -1 0.20 0.0233839 0.0203418 101 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.95 vpr 62.45 MiB -1 -1 0.21 17576 1 0.03 -1 -1 30096 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1189 14518 4594 8025 1899 62.4 MiB 0.15 0.00 5.24081 -156.256 -5.24081 5.24081 0.64 0.00068598 0.000637791 0.0535827 0.0497969 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.03 0.138755 0.122857 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.027047 0.0239126 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.90 vpr 62.45 MiB -1 -1 0.15 17812 1 0.03 -1 -1 30268 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1030 10531 2414 7661 456 62.4 MiB 0.12 0.00 4.0171 -121.213 -4.0171 4.0171 0.66 0.00072362 0.00067412 0.0362372 0.0336762 26 3025 43 6.64007e+06 414414 477104. 1650.88 2.13 0.145621 0.127345 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0216481 0.0190938 131 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.61 vpr 62.25 MiB -1 -1 0.17 17116 1 0.03 -1 -1 30060 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.8 MiB 0.06 891 13153 4464 6066 2623 62.3 MiB 0.12 0.00 4.20356 -126.138 -4.20356 4.20356 0.63 0.000633522 0.00058907 0.0448799 0.041756 32 2178 21 6.64007e+06 301392 554710. 1919.41 0.86 0.119764 0.10589 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0261382 0.0228338 123 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.54 vpr 62.42 MiB -1 -1 0.19 17776 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1089 13933 3596 8128 2209 62.4 MiB 0.14 0.00 4.81394 -142.313 -4.81394 4.81394 0.60 0.000700153 0.000650679 0.0525015 0.048778 26 2775 32 6.64007e+06 301392 477104. 1650.88 1.57 0.149476 0.131736 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.22 0.07 0.10 -1 -1 0.22 0.0258331 0.022654 138 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.71 vpr 62.85 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 24.2 MiB 0.16 935 7980 1596 5688 696 62.9 MiB 0.08 0.00 3.76946 -120.7 -3.76946 3.76946 0.68 0.000726051 0.000668689 0.028641 0.0266203 30 2198 19 6.64007e+06 401856 526063. 1820.29 0.84 0.110496 0.096887 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0248982 0.0218602 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.71 vpr 62.80 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30256 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.15 901 8796 1803 6364 629 62.8 MiB 0.10 0.00 4.787 -140.677 -4.787 4.787 0.64 0.000745789 0.000692196 0.0304585 0.028289 32 2513 22 6.64007e+06 464646 554710. 1919.41 0.82 0.118929 0.104291 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.25 0.06 0.12 -1 -1 0.25 0.026882 0.0235501 145 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.65 vpr 62.27 MiB -1 -1 0.18 17608 1 0.03 -1 -1 30264 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.06 902 12903 3419 8175 1309 62.3 MiB 0.13 0.00 4.24273 -122.494 -4.24273 4.24273 0.75 0.000512073 0.000470057 0.0389235 0.0357683 32 1909 19 6.64007e+06 364182 554710. 1919.41 0.84 0.112757 0.0991028 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.19 0.06 0.08 -1 -1 0.19 0.0243922 0.0213178 122 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.85 vpr 62.51 MiB -1 -1 0.18 17580 1 0.03 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 24.0 MiB 0.21 983 6913 1568 4936 409 62.5 MiB 0.08 0.00 5.07997 -139.694 -5.07997 5.07997 0.72 0.000642421 0.000595637 0.0255685 0.0237639 32 2406 21 6.64007e+06 301392 554710. 1919.41 0.82 0.103313 0.0904823 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0261835 0.0229036 133 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.33 vpr 62.68 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30348 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1148 9058 2364 5808 886 62.7 MiB 0.10 0.00 5.0113 -149.211 -5.0113 5.0113 0.68 0.000731018 0.000678776 0.0359504 0.0333048 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.30 0.156583 0.136772 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0331519 0.0288885 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.97 vpr 62.68 MiB -1 -1 0.21 17576 1 0.03 -1 -1 30256 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 24.2 MiB 0.16 977 15962 5144 8098 2720 62.7 MiB 0.16 0.00 4.21776 -130.397 -4.21776 4.21776 0.64 0.000739301 0.000685369 0.0650922 0.0603868 32 2870 23 6.64007e+06 276276 554710. 1919.41 0.98 0.154874 0.137368 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0239374 0.02108 136 77 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.51 vpr 62.06 MiB -1 -1 0.16 17532 1 0.03 -1 -1 30152 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.4 MiB 0.06 763 11398 3223 7297 878 62.1 MiB 0.09 0.00 3.46744 -102.907 -3.46744 3.46744 0.63 0.000558953 0.000520841 0.0347023 0.0322915 26 1977 28 6.64007e+06 301392 477104. 1650.88 0.87 0.106557 0.093677 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0221946 0.0193039 97 23 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.74 vpr 62.41 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30440 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 23.8 MiB 0.22 982 8969 2347 6212 410 62.4 MiB 0.10 0.00 4.05536 -139.886 -4.05536 4.05536 0.66 0.000676919 0.00062881 0.0344285 0.0319859 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.84 0.113829 0.100064 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.18 0.06 0.08 -1 -1 0.18 0.0256841 0.0224497 127 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.26 vpr 62.46 MiB -1 -1 0.17 17504 1 0.03 -1 -1 30256 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1389 7443 1662 5262 519 62.5 MiB 0.10 0.00 5.61123 -170.011 -5.61123 5.61123 0.63 0.000764936 0.000711149 0.029874 0.0277767 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.34 0.124912 0.109349 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.031858 0.0278978 169 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.67 vpr 62.36 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30472 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 23.8 MiB 0.15 962 14988 4939 7718 2331 62.4 MiB 0.14 0.00 4.60549 -136.553 -4.60549 4.60549 0.63 0.000694692 0.000645246 0.049945 0.0464469 30 2140 21 6.64007e+06 401856 526063. 1820.29 0.81 0.131351 0.11633 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0264284 0.0232124 133 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.43 vpr 62.13 MiB -1 -1 0.16 17368 1 0.03 -1 -1 30324 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.7 MiB 0.07 702 10423 3012 6489 922 62.1 MiB 0.09 0.00 3.51327 -104.848 -3.51327 3.51327 0.64 0.000594854 0.000553304 0.0340355 0.0316368 28 1807 22 6.64007e+06 326508 500653. 1732.36 0.77 0.106209 0.0935211 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0250183 0.0217388 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.01 vpr 62.78 MiB -1 -1 0.20 17876 1 0.03 -1 -1 30340 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1216 15187 4686 7965 2536 62.8 MiB 0.17 0.00 6.49087 -185.665 -6.49087 6.49087 0.63 0.000831771 0.000773283 0.0633436 0.0588618 30 3247 27 6.64007e+06 339066 526063. 1820.29 0.88 0.135336 0.120732 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0356343 0.0310874 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.94 vpr 62.63 MiB -1 -1 0.19 17604 1 0.03 -1 -1 30528 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 24.0 MiB 0.15 903 6979 1333 5401 245 62.6 MiB 0.08 0.00 4.64606 -138.337 -4.64606 4.64606 0.64 0.000688693 0.000640439 0.0240618 0.0223953 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.14 0.127284 0.110607 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0258701 0.0226108 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.37 vpr 61.98 MiB -1 -1 0.16 17116 1 0.03 -1 -1 30352 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63464 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.5 MiB 0.06 832 12375 4208 6622 1545 62.0 MiB 0.10 0.00 3.58247 -103.673 -3.58247 3.58247 0.64 0.000534391 0.00049757 0.0367471 0.0342109 28 2023 24 6.64007e+06 288834 500653. 1732.36 0.78 0.102637 0.0905276 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0203822 0.0177449 100 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.92 vpr 62.55 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30080 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.1 MiB 0.12 993 9098 1971 6187 940 62.5 MiB 0.09 0.00 5.56744 -134.001 -5.56744 5.56744 0.64 0.000716042 0.000665021 0.0313615 0.0291637 28 2715 23 6.64007e+06 426972 500653. 1732.36 1.16 0.119878 0.105339 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0298208 0.0259943 139 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.47 vpr 61.97 MiB -1 -1 0.16 17132 1 0.03 -1 -1 30120 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63456 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.4 MiB 0.06 822 7770 1860 5212 698 62.0 MiB 0.08 0.00 3.4291 -106.218 -3.4291 3.4291 0.64 0.000561161 0.000523005 0.0267368 0.024882 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.80 0.0921675 0.080851 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0218856 0.0190208 104 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.60 vpr 62.15 MiB -1 -1 0.19 17532 1 0.03 -1 -1 30376 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.7 MiB 0.11 857 12839 3557 7998 1284 62.2 MiB 0.11 0.00 4.12483 -113.809 -4.12483 4.12483 0.64 0.000598645 0.000557152 0.0373807 0.0347601 26 1933 22 6.64007e+06 414414 477104. 1650.88 0.92 0.107972 0.0950287 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0203803 0.01778 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.75 vpr 62.52 MiB -1 -1 0.20 17776 1 0.03 -1 -1 30236 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1104 17175 4885 10433 1857 62.5 MiB 0.18 0.00 4.60024 -135.427 -4.60024 4.60024 0.64 0.000756615 0.000697243 0.0691796 0.0642894 28 2667 21 6.64007e+06 326508 500653. 1732.36 0.84 0.151786 0.135099 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0328187 0.0285775 139 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.63 vpr 62.71 MiB -1 -1 0.15 17864 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 24.2 MiB 0.12 772 4768 876 3724 168 62.7 MiB 0.06 0.00 4.51224 -132.005 -4.51224 4.51224 0.63 0.000706232 0.000655511 0.0196446 0.0182548 32 2190 25 6.64007e+06 301392 554710. 1919.41 0.90 0.108062 0.0941881 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303643 0.0265108 130 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.70 vpr 62.55 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30012 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1030 11891 3350 7362 1179 62.5 MiB 0.12 0.00 4.72138 -141.993 -4.72138 4.72138 0.67 0.000711163 0.000660682 0.0429016 0.0398739 32 2311 18 6.64007e+06 351624 554710. 1919.41 0.84 0.122529 0.108161 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0256644 0.0224968 133 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.76 vpr 62.21 MiB -1 -1 0.14 17372 1 0.03 -1 -1 30348 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 23.8 MiB 0.24 799 9356 2375 6010 971 62.2 MiB 0.09 0.00 4.79432 -131.982 -4.79432 4.79432 0.64 0.000603623 0.000561298 0.0338372 0.0314684 26 2160 21 6.64007e+06 213486 477104. 1650.88 0.94 0.104117 0.0915474 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0244662 0.0213289 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.68 vpr 62.35 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.8 MiB 0.23 899 12898 4205 6789 1904 62.3 MiB 0.12 0.00 3.96736 -127.03 -3.96736 3.96736 0.63 0.000638233 0.00059284 0.0486761 0.0452454 32 2035 18 6.64007e+06 238602 554710. 1919.41 0.80 0.116056 0.102891 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0251628 0.0219614 113 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.09 vpr 62.39 MiB -1 -1 0.17 17620 1 0.03 -1 -1 30356 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.8 MiB 0.12 857 8087 1703 5875 509 62.4 MiB 0.08 0.00 3.59243 -98.9543 -3.59243 3.59243 0.64 0.000671229 0.000624533 0.0267231 0.024854 26 2500 27 6.64007e+06 414414 477104. 1650.88 1.40 0.112613 0.0984252 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0250888 0.0218678 123 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.56 vpr 62.19 MiB -1 -1 0.21 17532 1 0.03 -1 -1 30400 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.7 MiB 0.09 873 14567 3705 9538 1324 62.2 MiB 0.11 0.00 4.33724 -105.319 -4.33724 4.33724 0.63 0.00059201 0.000550886 0.0420061 0.0390643 26 2165 27 6.64007e+06 439530 477104. 1650.88 0.80 0.117235 0.103276 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0225144 0.0196001 115 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.76 vpr 62.47 MiB -1 -1 0.19 17768 1 0.03 -1 -1 30340 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63972 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.14 857 12980 4441 6366 2173 62.5 MiB 0.12 0.00 4.19523 -120.389 -4.19523 4.19523 0.74 0.00063886 0.000594279 0.0502554 0.0467698 32 1926 20 6.64007e+06 226044 554710. 1919.41 0.82 0.123765 0.109579 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0242153 0.0211386 108 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.76 vpr 62.43 MiB -1 -1 0.16 17852 1 0.03 -1 -1 30076 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1011 9385 2419 5667 1299 62.4 MiB 0.10 0.00 4.0237 -135.679 -4.0237 4.0237 0.65 0.000671971 0.000624542 0.0364479 0.0339058 32 2261 23 6.64007e+06 263718 554710. 1919.41 0.82 0.116565 0.102524 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0241745 0.0211394 121 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.76 vpr 62.56 MiB -1 -1 0.19 17268 1 0.03 -1 -1 30380 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 24.0 MiB 0.06 926 9383 1965 6366 1052 62.6 MiB 0.09 0.00 4.61041 -129.144 -4.61041 4.61041 0.64 0.000636687 0.000592739 0.0299046 0.0278325 28 2322 28 6.64007e+06 401856 500653. 1732.36 1.11 0.113217 0.0993307 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.16 0.04 0.07 -1 -1 0.16 0.0138205 0.0122676 127 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.89 vpr 62.80 MiB -1 -1 0.19 17856 1 0.03 -1 -1 30544 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1230 14128 4435 7821 1872 62.8 MiB 0.15 0.00 5.3267 -167.408 -5.3267 5.3267 0.63 0.000705439 0.000656018 0.0539561 0.050153 32 3153 21 6.64007e+06 301392 554710. 1919.41 0.88 0.137193 0.121719 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0281014 0.0246216 146 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.10 vpr 62.73 MiB -1 -1 0.14 17516 1 0.03 -1 -1 30428 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.2 MiB 0.19 846 12473 3077 8180 1216 62.7 MiB 0.14 0.00 5.24026 -142.21 -5.24026 5.24026 0.70 0.000857417 0.000789723 0.0456586 0.0423259 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.02 0.139185 0.122709 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0289687 0.0253883 144 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.88 vpr 62.96 MiB -1 -1 0.11 17692 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.5 MiB 0.17 1088 19136 5971 10565 2600 63.0 MiB 0.17 0.00 4.47484 -142.459 -4.47484 4.47484 0.67 0.000751473 0.000698061 0.0639017 0.0593053 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.09 0.155785 0.1384 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.16 0.05 0.11 -1 -1 0.16 0.0157503 0.0140273 140 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.76 vpr 62.11 MiB -1 -1 0.19 17592 1 0.03 -1 -1 30148 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.5 MiB 0.11 810 10756 3573 5296 1887 62.1 MiB 0.10 0.00 3.86158 -115.559 -3.86158 3.86158 0.65 0.000585104 0.000544624 0.0374935 0.0347985 28 2024 20 6.64007e+06 238602 500653. 1732.36 0.79 0.107105 0.0935896 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.26 0.07 0.13 -1 -1 0.26 0.0245218 0.0216489 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.69 MiB -1 -1 0.15 17656 1 0.03 -1 -1 30612 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 24.0 MiB 0.16 996 11989 3165 6999 1825 62.7 MiB 0.13 0.00 4.82523 -141.177 -4.82523 4.82523 0.64 0.000728244 0.00067669 0.0459413 0.0423506 32 2408 19 6.64007e+06 288834 554710. 1919.41 0.89 0.130754 0.115218 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300323 0.0262765 138 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.11 vpr 62.52 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30416 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.0 MiB 0.16 1103 10743 2816 7025 902 62.5 MiB 0.11 0.00 5.45357 -158.764 -5.45357 5.45357 0.64 0.000695329 0.000646856 0.0394073 0.036608 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.18 0.12453 0.109704 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0201585 0.0178034 140 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.85 vpr 62.55 MiB -1 -1 0.14 17772 1 0.04 -1 -1 30352 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1102 15423 4945 8075 2403 62.6 MiB 0.14 0.00 5.30601 -154.372 -5.30601 5.30601 0.63 0.000690762 0.000642675 0.0533531 0.0496074 28 3024 19 6.64007e+06 376740 500653. 1732.36 0.98 0.133155 0.118147 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0274837 0.0240558 148 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.79 vpr 62.87 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30468 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 24.3 MiB 0.20 960 11975 3127 7423 1425 62.9 MiB 0.12 0.00 4.52304 -132.575 -4.52304 4.52304 0.65 0.000728217 0.000676312 0.0427295 0.0396292 32 2201 21 6.64007e+06 414414 554710. 1919.41 0.86 0.128385 0.113013 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0263898 0.0230799 135 83 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.79 vpr 62.46 MiB -1 -1 0.16 17664 1 0.03 -1 -1 30312 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 23.9 MiB 0.14 891 9571 2183 6911 477 62.5 MiB 0.11 0.00 5.02278 -140.291 -5.02278 5.02278 0.63 0.000715214 0.000664569 0.0393129 0.0365273 30 2581 25 6.64007e+06 263718 526063. 1820.29 0.96 0.131346 0.115493 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0304578 0.0265957 134 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.76 vpr 62.65 MiB -1 -1 0.20 17576 1 0.03 -1 -1 30320 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.0 MiB 0.16 875 11270 2503 8088 679 62.7 MiB 0.12 0.00 4.91881 -136.338 -4.91881 4.91881 0.65 0.000719081 0.000667388 0.0394595 0.0364711 32 2070 20 6.64007e+06 389298 554710. 1919.41 0.82 0.122765 0.107858 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.19 0.07 0.13 -1 -1 0.19 0.0295278 0.0256608 132 85 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.52 vpr 62.15 MiB -1 -1 0.15 17100 1 0.03 -1 -1 30396 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.6 MiB 0.05 680 10219 2541 6421 1257 62.2 MiB 0.09 0.00 3.88758 -112.502 -3.88758 3.88758 0.65 0.000549474 0.000511697 0.0353846 0.0329127 28 1667 19 6.64007e+06 188370 500653. 1732.36 0.88 0.100177 0.0885004 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.020541 0.0180068 96 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.31 vpr 62.64 MiB -1 -1 0.18 17748 1 0.03 -1 -1 30376 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1003 15426 4168 9105 2153 62.6 MiB 0.16 0.00 4.65236 -140.168 -4.65236 4.65236 0.89 0.00125965 0.00118657 0.0527027 0.0484376 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.08 0.139328 0.122854 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0289952 0.025299 132 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.98 vpr 62.79 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1074 11237 2615 7354 1268 62.8 MiB 0.12 0.00 4.84723 -152.835 -4.84723 4.84723 0.66 0.000777337 0.000722356 0.0484951 0.0451131 32 2517 24 6.64007e+06 276276 554710. 1919.41 0.95 0.145684 0.128587 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0329674 0.0288742 148 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.88 vpr 62.14 MiB -1 -1 0.18 17604 1 0.03 -1 -1 30088 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 23.7 MiB 0.27 745 8136 1743 5584 809 62.1 MiB 0.07 0.00 4.31784 -119.848 -4.31784 4.31784 0.64 0.000589694 0.000548877 0.0281466 0.0261957 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.01 0.105986 0.0927071 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.17 0.06 0.07 -1 -1 0.17 0.0239778 0.0208778 109 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.59 vpr 62.29 MiB -1 -1 0.18 17380 1 0.03 -1 -1 30292 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.7 MiB 0.06 720 11430 2918 7192 1320 62.3 MiB 0.10 0.00 3.81035 -108.914 -3.81035 3.81035 0.80 0.000560266 0.000513505 0.0345998 0.0321283 26 2000 23 6.64007e+06 263718 477104. 1650.88 0.79 0.10131 0.0891779 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0213612 0.0186465 106 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.48 vpr 62.80 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30624 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1132 12753 3748 7734 1271 62.8 MiB 0.13 0.00 5.06147 -160.912 -5.06147 5.06147 0.64 0.000706986 0.000657166 0.0472128 0.0438917 26 3087 40 6.64007e+06 326508 477104. 1650.88 1.56 0.1536 0.135415 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0277822 0.0242861 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.00 vpr 62.59 MiB -1 -1 0.16 17648 1 0.02 -1 -1 30280 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1035 16893 5570 8364 2959 62.6 MiB 0.15 0.00 5.02458 -149.361 -5.02458 5.02458 0.64 0.000706181 0.000656397 0.0594944 0.05526 32 2745 25 6.64007e+06 364182 554710. 1919.41 0.88 0.147976 0.131255 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0257169 0.0228581 155 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.35 vpr 62.76 MiB -1 -1 0.16 17396 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1057 12164 2729 8794 641 62.8 MiB 0.12 0.00 5.48474 -146.154 -5.48474 5.48474 0.64 0.000719401 0.000665888 0.0412908 0.0382209 28 3239 24 6.64007e+06 452088 500653. 1732.36 1.48 0.133919 0.118767 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.24 0.09 0.12 -1 -1 0.24 0.0253217 0.022463 153 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.78 vpr 62.36 MiB -1 -1 0.18 17696 1 0.03 -1 -1 30248 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 890 11170 2805 7440 925 62.4 MiB 0.12 0.00 3.51924 -105.227 -3.51924 3.51924 0.74 0.000642314 0.000597757 0.0397649 0.0368102 26 2070 19 6.64007e+06 401856 477104. 1650.88 0.82 0.115471 0.101602 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0250533 0.0216291 121 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.41 vpr 62.03 MiB -1 -1 0.15 17356 1 0.02 -1 -1 30708 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63520 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.5 MiB 0.06 645 11948 3714 6556 1678 62.0 MiB 0.09 0.00 3.4543 -94.7001 -3.4543 3.4543 0.68 0.000548314 0.000510501 0.0400654 0.03729 26 1652 20 6.64007e+06 263718 477104. 1650.88 0.81 0.107687 0.0950436 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0219605 0.0190682 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 62.93 MiB -1 -1 0.21 17664 1 0.03 -1 -1 30300 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.8 MiB 0.19 1270 10743 2480 7803 460 62.9 MiB 0.12 0.00 4.37195 -138.919 -4.37195 4.37195 0.63 0.000809491 0.000752218 0.0461627 0.0428952 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.04 0.128629 0.114139 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0357618 0.0311961 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.86 vpr 62.65 MiB -1 -1 0.21 17800 1 0.04 -1 -1 30232 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 24.1 MiB 0.31 989 14828 4611 8220 1997 62.7 MiB 0.14 0.00 5.41669 -159.225 -5.41669 5.41669 0.66 0.00071023 0.000660037 0.0585085 0.0543891 28 2481 23 6.64007e+06 288834 500653. 1732.36 0.85 0.14291 0.126949 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.17 0.08 0.07 -1 -1 0.17 0.028775 0.0251933 152 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.84 vpr 62.29 MiB -1 -1 0.19 17504 1 0.03 -1 -1 30360 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 23.8 MiB 0.30 825 13583 3778 7563 2242 62.3 MiB 0.13 0.00 4.65475 -131.833 -4.65475 4.65475 0.64 0.000657303 0.00061095 0.0519701 0.04829 30 1948 20 6.64007e+06 238602 526063. 1820.29 0.84 0.134105 0.118951 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0253092 0.0222849 128 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.95 vpr 62.48 MiB -1 -1 0.16 17240 1 0.03 -1 -1 30432 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.9 MiB 0.07 911 16708 5166 8976 2566 62.5 MiB 0.15 0.00 5.41998 -135.015 -5.41998 5.41998 0.64 0.000672471 0.000625111 0.0552309 0.0513016 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.25 0.140752 0.124677 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0263475 0.0230392 126 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.34 vpr 62.65 MiB -1 -1 0.15 17812 1 0.03 -1 -1 30216 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1048 7423 1517 5297 609 62.6 MiB 0.09 0.00 5.01701 -136.816 -5.01701 5.01701 0.64 0.000738087 0.000683191 0.0272552 0.0253411 26 2859 33 6.64007e+06 426972 477104. 1650.88 1.55 0.132451 0.115939 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0291294 0.025487 145 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.69 vpr 62.36 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30116 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.8 MiB 0.13 829 7233 1598 5117 518 62.4 MiB 0.07 0.00 3.67989 -107.648 -3.67989 3.67989 0.63 0.000654189 0.000606873 0.0249233 0.0231433 30 2144 22 6.64007e+06 389298 526063. 1820.29 0.89 0.103767 0.0906129 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.22 0.07 0.11 -1 -1 0.22 0.0274135 0.0240456 124 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.83 vpr 62.86 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1174 10979 2913 7012 1054 62.9 MiB 0.12 0.00 5.12747 -161.736 -5.12747 5.12747 0.63 0.000708682 0.000658963 0.0420086 0.0390671 26 3490 36 6.64007e+06 313950 477104. 1650.88 1.90 0.14334 0.125956 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.028161 0.0246536 148 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.83 vpr 62.65 MiB -1 -1 0.13 17908 1 0.03 -1 -1 30084 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1093 17036 4934 9564 2538 62.6 MiB 0.16 0.00 4.75546 -148.188 -4.75546 4.75546 0.64 0.000756673 0.000702616 0.0568535 0.0527537 28 2591 20 6.64007e+06 452088 500653. 1732.36 0.94 0.144197 0.127811 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.18 0.07 0.12 -1 -1 0.18 0.0250233 0.0220306 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.44 vpr 62.06 MiB -1 -1 0.19 17488 1 0.03 -1 -1 30504 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.4 MiB 0.06 731 10536 4018 5581 937 62.1 MiB 0.09 0.00 3.74538 -111.28 -3.74538 3.74538 0.72 0.000573231 0.000533171 0.0382983 0.035651 30 1443 17 6.64007e+06 213486 526063. 1820.29 0.75 0.103052 0.091061 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.020887 0.018283 91 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.67 vpr 62.33 MiB -1 -1 0.11 17796 1 0.03 -1 -1 30388 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 23.8 MiB 0.18 882 13849 5109 6856 1884 62.3 MiB 0.12 0.00 4.03956 -127.808 -4.03956 4.03956 0.64 0.000628502 0.000583756 0.0490118 0.0455531 28 2218 24 6.64007e+06 263718 500653. 1732.36 0.89 0.126124 0.111463 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0284818 0.0247356 117 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.67 vpr 62.54 MiB -1 -1 0.19 17776 1 0.03 -1 -1 30412 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.9 MiB 0.08 954 14020 3601 8035 2384 62.5 MiB 0.12 0.00 4.80044 -128.284 -4.80044 4.80044 0.64 0.000670238 0.000622963 0.0429836 0.0398841 32 2139 23 6.64007e+06 464646 554710. 1919.41 0.84 0.12354 0.108955 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0278252 0.0243081 129 33 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.76 vpr 62.34 MiB -1 -1 0.12 17428 1 0.03 -1 -1 30364 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 23.9 MiB 0.26 763 7103 1547 5010 546 62.3 MiB 0.07 0.00 4.32884 -114.709 -4.32884 4.32884 0.64 0.000565121 0.000526739 0.0242338 0.0225833 26 2139 24 6.64007e+06 276276 477104. 1650.88 0.96 0.0939803 0.0820802 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.16 0.05 0.10 -1 -1 0.16 0.0208274 0.0182042 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.71 vpr 62.05 MiB -1 -1 0.16 17252 1 0.03 -1 -1 30000 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 23.4 MiB 0.14 634 12856 3328 7254 2274 62.0 MiB 0.11 0.00 3.90075 -115.478 -3.90075 3.90075 0.66 0.000603739 0.000562652 0.04625 0.0430354 28 2041 24 6.64007e+06 213486 500653. 1732.36 0.83 0.119072 0.105243 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.17 0.08 0.13 -1 -1 0.17 0.0258087 0.022495 108 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.63 vpr 62.63 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30124 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 24.2 MiB 0.09 1014 15147 3968 9710 1469 62.6 MiB 0.14 0.00 4.15695 -125.813 -4.15695 4.15695 0.64 0.000727913 0.000676775 0.0509695 0.0473116 32 1987 18 6.64007e+06 452088 554710. 1919.41 0.81 0.132967 0.117744 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0254188 0.0222887 136 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.50 vpr 62.22 MiB -1 -1 0.18 17372 1 0.03 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63712 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 23.8 MiB 0.18 920 10163 2724 6503 936 62.2 MiB 0.09 0.00 4.05252 -124.711 -4.05252 4.05252 0.64 0.000576257 0.000536722 0.0348557 0.0324404 30 1979 19 6.64007e+06 251160 526063. 1820.29 0.77 0.101032 0.0890048 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.18 0.06 0.09 -1 -1 0.18 0.0227775 0.0198235 107 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.86 vpr 62.41 MiB -1 -1 0.19 17644 1 0.03 -1 -1 30124 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 23.7 MiB 0.13 987 10827 2770 6959 1098 62.4 MiB 0.11 0.00 3.75038 -118.864 -3.75038 3.75038 0.69 0.000707778 0.000658712 0.0367867 0.0341863 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.03 0.118897 0.104631 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.19 0.08 0.10 -1 -1 0.19 0.0285091 0.0248723 127 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.94 vpr 62.59 MiB -1 -1 0.21 17516 1 0.03 -1 -1 30280 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.2 MiB 0.30 927 10247 2394 7169 684 62.6 MiB 0.11 0.00 4.34696 -134.379 -4.34696 4.34696 0.63 0.000746171 0.000693189 0.0382338 0.0355107 32 2248 20 6.64007e+06 401856 554710. 1919.41 0.85 0.133471 0.117551 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.24 0.09 0.12 -1 -1 0.24 0.0358379 0.0315019 138 91 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.57 vpr 62.06 MiB -1 -1 0.14 17552 1 0.03 -1 -1 30224 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.4 MiB 0.16 835 12681 3362 7951 1368 62.1 MiB 0.11 0.00 3.3851 -106.107 -3.3851 3.3851 0.64 0.000623789 0.000579651 0.0473723 0.0440087 26 2103 18 6.64007e+06 213486 477104. 1650.88 0.85 0.118076 0.104563 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.17 0.07 0.12 -1 -1 0.17 0.0267148 0.0232157 104 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.74 vpr 62.26 MiB -1 -1 0.15 17300 1 0.03 -1 -1 30220 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 23.7 MiB 0.25 876 14407 4775 7452 2180 62.3 MiB 0.13 0.00 4.41384 -136.056 -4.41384 4.41384 0.65 0.000609475 0.000567148 0.0494112 0.0459448 30 2137 20 6.64007e+06 263718 526063. 1820.29 0.81 0.12075 0.107097 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.21 0.06 0.11 -1 -1 0.21 0.0234924 0.0205418 117 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.71 vpr 62.37 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1070 9111 2300 6161 650 62.4 MiB 0.10 0.00 4.68344 -140.114 -4.68344 4.68344 0.66 0.00065576 0.000610001 0.0336073 0.0312472 32 2486 17 6.64007e+06 288834 554710. 1919.41 0.82 0.110182 0.0971981 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.18 0.04 0.13 -1 -1 0.18 0.0147641 0.0131498 130 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.60 vpr 62.36 MiB -1 -1 0.16 17576 1 0.03 -1 -1 30280 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 23.8 MiB 0.17 969 13959 4223 8147 1589 62.4 MiB 0.12 0.00 4.71146 -123.714 -4.71146 4.71146 0.63 0.000640351 0.000593764 0.0477533 0.0443891 32 1988 20 6.64007e+06 364182 554710. 1919.41 0.78 0.124322 0.110042 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0201121 0.0177341 122 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.00 vpr 63.14 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30480 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1164 12568 3311 8092 1165 63.1 MiB 0.14 0.00 5.44678 -170.492 -5.44678 5.44678 0.64 0.000756051 0.000702809 0.0515184 0.047846 28 3017 24 6.64007e+06 301392 500653. 1732.36 0.99 0.142808 0.126463 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.17 0.09 0.13 -1 -1 0.17 0.029164 0.0255591 154 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.50 vpr 62.11 MiB -1 -1 0.18 17160 1 0.03 -1 -1 30512 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.6 MiB 0.05 802 9356 2223 6300 833 62.1 MiB 0.08 0.00 3.65167 -102.287 -3.65167 3.65167 0.66 0.000533601 0.000497088 0.0304749 0.028402 32 1738 16 6.64007e+06 226044 554710. 1919.41 0.79 0.0853531 0.0753248 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0195931 0.017117 96 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.94 vpr 62.63 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30276 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1014 15173 4325 8191 2657 62.6 MiB 0.14 0.00 4.24115 -141.749 -4.24115 4.24115 0.63 0.000772499 0.000716203 0.0550165 0.0510705 32 2563 27 6.64007e+06 426972 554710. 1919.41 0.93 0.154172 0.136318 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0297903 0.0260507 145 90 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.88 vpr 62.55 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.1 MiB 0.28 854 11456 4252 5499 1705 62.5 MiB 0.11 0.00 3.5233 -125.693 -3.5233 3.5233 0.66 0.000718867 0.000667113 0.0491952 0.0456921 32 1976 23 6.64007e+06 213486 554710. 1919.41 0.84 0.134818 0.118986 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0270269 0.0235739 114 96 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.02 vpr 62.51 MiB -1 -1 0.20 17644 1 0.03 -1 -1 30256 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 23.9 MiB 0.13 993 15864 4238 9461 2165 62.5 MiB 0.15 0.00 4.43584 -134.986 -4.43584 4.43584 0.74 0.000712962 0.000661026 0.0536841 0.0497677 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.05 0.144223 0.127582 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0231331 0.0203709 131 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.37 vpr 62.68 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30340 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1309 17635 5897 9510 2228 62.7 MiB 0.20 0.00 6.39084 -191.431 -6.39084 6.39084 0.66 0.000784591 0.000728948 0.0706394 0.0655589 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.21 0.168723 0.15057 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0312642 0.0274405 170 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.60 vpr 61.95 MiB -1 -1 0.17 17588 1 0.02 -1 -1 30060 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 23.4 MiB 0.16 697 8680 1945 6222 513 61.9 MiB 0.07 0.00 3.31307 -102.387 -3.31307 3.31307 0.67 0.000506989 0.000471992 0.0274071 0.025497 28 1666 19 6.64007e+06 226044 500653. 1732.36 0.83 0.0856716 0.0753047 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.17 0.05 0.12 -1 -1 0.17 0.0156957 0.0137983 87 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.59 vpr 62.02 MiB -1 -1 0.14 17664 1 0.03 -1 -1 30368 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.10 791 11864 3247 7177 1440 62.0 MiB 0.10 0.00 4.38638 -124.628 -4.38638 4.38638 0.66 0.000597516 0.000555325 0.0447479 0.0416283 32 1680 15 6.64007e+06 200928 554710. 1919.41 0.78 0.111586 0.0988361 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.26 0.07 0.14 -1 -1 0.26 0.0248858 0.0219925 92 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.61 vpr 62.07 MiB -1 -1 0.18 17588 1 0.04 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.7 MiB 0.09 807 14407 3847 9113 1447 62.1 MiB 0.13 0.00 3.46104 -112.673 -3.46104 3.46104 0.65 0.00062727 0.000582313 0.0510193 0.0473981 28 2067 23 6.64007e+06 263718 500653. 1732.36 0.80 0.12665 0.112173 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.20 0.08 0.10 -1 -1 0.20 0.0256826 0.0223786 115 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.43 vpr 61.93 MiB -1 -1 0.15 17588 1 0.02 -1 -1 30204 -1 -1 27 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.4 MiB 0.07 469 9234 3273 3848 2113 61.9 MiB 0.06 0.00 3.37029 -77.6943 -3.37029 3.37029 0.64 0.000477927 0.000443335 0.0257001 0.023812 30 1496 25 6.64007e+06 339066 526063. 1820.29 0.88 0.0893111 0.0781578 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.20 0.04 0.12 -1 -1 0.20 0.0174321 0.0152557 89 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.60 vpr 62.57 MiB -1 -1 0.17 17516 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 23.9 MiB 0.16 937 9571 2534 6630 407 62.6 MiB 0.10 0.00 4.28889 -129.632 -4.28889 4.28889 0.63 0.000727441 0.000675838 0.0399595 0.0371239 30 2291 20 6.64007e+06 263718 526063. 1820.29 0.77 0.113522 0.100361 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.20 0.07 0.11 -1 -1 0.20 0.0279715 0.0245055 136 72 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.87 vpr 62.71 MiB -1 -1 0.21 17664 1 0.03 -1 -1 30356 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1018 17423 5293 9473 2657 62.7 MiB 0.16 0.00 4.47881 -144.552 -4.47881 4.47881 0.63 0.000765895 0.000710983 0.0619942 0.0575305 32 2355 20 6.64007e+06 439530 554710. 1919.41 0.83 0.150415 0.13339 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0315018 0.027493 143 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.05 vpr 62.60 MiB -1 -1 0.15 17808 1 0.03 -1 -1 30240 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 24.1 MiB 0.33 962 17134 5020 8898 3216 62.6 MiB 0.16 0.00 5.27972 -153.369 -5.27972 5.27972 0.64 0.000704748 0.000654599 0.058954 0.0547221 32 2793 32 6.65987e+06 380340 554710. 1919.41 0.96 0.1542 0.136493 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.26 0.09 0.10 -1 -1 0.26 0.0290435 0.0258217 152 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.87 vpr 62.61 MiB -1 -1 0.19 17644 1 0.03 -1 -1 30392 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1040 12361 3404 6762 2195 62.6 MiB 0.13 0.00 4.63676 -143.523 -4.63676 4.63676 0.63 0.000714149 0.000663615 0.0499558 0.0464684 32 2391 26 6.65987e+06 291594 554710. 1919.41 0.85 0.138386 0.122332 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0309925 0.0271593 138 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.16 vpr 62.18 MiB -1 -1 0.18 17916 1 0.03 -1 -1 30336 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.5 MiB 0.15 1057 9111 2109 6460 542 62.2 MiB 0.09 0.00 4.05544 -117.725 -4.05544 4.05544 0.66 0.000632208 0.000588004 0.0321911 0.0299501 26 2909 26 6.65987e+06 291594 477104. 1650.88 1.37 0.114425 0.100592 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.18 0.10 0.10 -1 -1 0.18 0.0345186 0.0300281 126 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.57 vpr 62.10 MiB -1 -1 0.11 17544 1 0.02 -1 -1 30320 -1 -1 27 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.5 MiB 0.10 995 11593 2944 7290 1359 62.1 MiB 0.11 0.00 4.34155 -118.133 -4.34155 4.34155 0.65 0.000643859 0.000591726 0.0400953 0.0372243 32 2314 24 6.65987e+06 342306 554710. 1919.41 0.83 0.118372 0.104135 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0254095 0.022192 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.45 vpr 62.18 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30248 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1007 8919 2464 5628 827 62.2 MiB 0.10 0.00 4.36781 -127.596 -4.36781 4.36781 0.68 0.000690942 0.000642842 0.0343999 0.0319892 34 2558 26 6.65987e+06 291594 585099. 2024.56 1.52 0.175613 0.152766 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0277277 0.0243858 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.56 vpr 62.59 MiB -1 -1 0.11 17792 1 0.03 -1 -1 30328 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1045 18079 5207 10774 2098 62.6 MiB 0.17 0.00 3.41904 -120.465 -3.41904 3.41904 0.64 0.000593104 0.000544404 0.0501273 0.0459581 30 2159 22 6.65987e+06 418374 526063. 1820.29 0.83 0.134965 0.118698 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.17 0.03 0.07 -1 -1 0.17 0.0154161 0.0137925 141 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.52 vpr 61.81 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30788 -1 -1 18 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 23.2 MiB 0.16 496 10509 2613 7281 615 61.8 MiB 0.09 0.00 3.88752 -95.8054 -3.88752 3.88752 0.64 0.000552535 0.000514342 0.0375571 0.0349621 30 1262 24 6.65987e+06 228204 526063. 1820.29 0.78 0.106996 0.0938216 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.20 0.05 0.11 -1 -1 0.20 0.0229307 0.0199522 94 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.47 vpr 62.04 MiB -1 -1 0.18 17276 1 0.03 -1 -1 30100 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.4 MiB 0.06 903 9466 2130 6738 598 62.0 MiB 0.09 0.00 3.22661 -96.4595 -3.22661 3.22661 0.65 0.000603666 0.000560647 0.0286062 0.0265573 30 1887 19 6.65987e+06 393018 526063. 1820.29 0.80 0.0972312 0.0852996 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.18 0.05 0.12 -1 -1 0.18 0.0214929 0.0188426 115 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.69 vpr 62.30 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30236 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 23.7 MiB 0.15 765 13788 3701 7917 2170 62.3 MiB 0.12 0.00 3.4209 -112.776 -3.4209 3.4209 0.64 0.000637765 0.00059322 0.0519872 0.0483553 32 2114 22 6.65987e+06 240882 554710. 1919.41 0.80 0.129208 0.11461 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0251894 0.0217122 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.78 vpr 62.06 MiB -1 -1 0.15 17428 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.6 MiB 0.24 876 13906 4295 8097 1514 62.1 MiB 0.13 0.00 3.72312 -122.883 -3.72312 3.72312 0.66 0.000632058 0.000587849 0.0525519 0.0488367 32 2018 21 6.65987e+06 215526 554710. 1919.41 0.82 0.126471 0.112216 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0302335 0.0262756 113 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.59 vpr 61.97 MiB -1 -1 0.19 17252 1 0.03 -1 -1 30508 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63456 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.6 MiB 0.24 696 7008 1825 4747 436 62.0 MiB 0.07 0.00 4.00989 -109.174 -4.00989 4.00989 0.63 0.000618201 0.000575347 0.0277909 0.0258784 30 1525 18 6.65987e+06 215526 526063. 1820.29 0.76 0.0979135 0.0859388 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0217589 0.0190897 98 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.01 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30072 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 23.5 MiB 0.23 721 6381 1297 4466 618 62.0 MiB 0.06 0.00 3.89466 -119.961 -3.89466 3.89466 0.64 0.000594902 0.000553789 0.0237471 0.0221179 32 2079 21 6.65987e+06 215526 554710. 1919.41 0.83 0.0944944 0.0827499 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.19 0.08 0.09 -1 -1 0.19 0.0271031 0.0236843 106 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.93 vpr 62.62 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30448 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1056 16468 6105 8420 1943 62.6 MiB 0.16 0.00 4.37712 -140.294 -4.37712 4.37712 0.64 0.000693143 0.000644146 0.0613342 0.0569826 32 2620 22 6.65987e+06 304272 554710. 1919.41 0.87 0.146747 0.130579 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.21 0.09 0.12 -1 -1 0.21 0.029354 0.0256971 139 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.75 vpr 62.32 MiB -1 -1 0.16 17868 1 0.03 -1 -1 30292 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 23.9 MiB 0.18 951 14365 3991 8802 1572 62.3 MiB 0.14 0.00 4.63803 -131.953 -4.63803 4.63803 0.63 0.000716238 0.000665642 0.0508577 0.0472535 28 2495 26 6.65987e+06 380340 500653. 1732.36 0.90 0.140971 0.124698 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.20 0.09 0.09 -1 -1 0.20 0.0315723 0.0275192 133 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.40 vpr 61.85 MiB -1 -1 0.18 17364 1 0.03 -1 -1 30068 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.2 MiB 0.10 640 7914 1978 5337 599 61.9 MiB 0.07 0.00 3.16393 -88.5429 -3.16393 3.16393 0.64 0.000389442 0.000354138 0.0260038 0.0241942 28 1656 19 6.65987e+06 266238 500653. 1732.36 0.75 0.0884431 0.0775046 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0202422 0.017697 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.03 vpr 62.48 MiB -1 -1 0.19 17648 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1044 14035 4479 7571 1985 62.5 MiB 0.14 0.00 3.91387 -124.268 -3.91387 3.91387 0.70 0.000739892 0.000672823 0.0574538 0.0533791 32 2474 22 6.65987e+06 266238 554710. 1919.41 0.85 0.145477 0.129122 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291381 0.0255022 132 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.03 vpr 62.37 MiB -1 -1 0.18 17796 1 0.02 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1069 12919 3925 6776 2218 62.4 MiB 0.13 0.00 4.31458 -139.268 -4.31458 4.31458 0.69 0.000697703 0.000644088 0.0505984 0.0470387 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.06 0.136604 0.120876 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0308195 0.0269322 137 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.49 vpr 62.21 MiB -1 -1 0.17 17384 1 0.03 -1 -1 30236 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.7 MiB 0.17 695 9543 2025 7276 242 62.2 MiB 0.09 0.00 2.85064 -99.0938 -2.85064 2.85064 0.63 0.000649437 0.000602781 0.0317814 0.0295204 30 1712 20 6.65987e+06 367662 526063. 1820.29 0.77 0.106968 0.0938905 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0208128 0.0182668 110 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.26 vpr 61.59 MiB -1 -1 0.16 17556 1 0.03 -1 -1 30076 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63072 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.2 MiB 0.11 717 11976 4624 5984 1368 61.6 MiB 0.09 0.00 2.25907 -80.296 -2.25907 2.25907 0.63 0.000582822 0.000541158 0.0391084 0.0363432 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.69 0.0983352 0.0868881 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.16 0.05 0.08 -1 -1 0.16 0.017573 0.0153749 81 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.84 vpr 62.16 MiB -1 -1 0.13 17544 1 0.03 -1 -1 30368 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 23.6 MiB 0.37 848 12008 3931 5654 2423 62.2 MiB 0.12 0.00 4.81535 -141.646 -4.81535 4.81535 0.63 0.000771743 0.00071184 0.0441231 0.0410427 32 2106 20 6.65987e+06 240882 554710. 1919.41 0.83 0.115919 0.10263 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0246845 0.0215607 127 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.64 vpr 62.32 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30472 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.06 910 8087 1796 5473 818 62.3 MiB 0.08 0.00 4.13176 -127.852 -4.13176 4.13176 0.68 0.000692299 0.000643685 0.0284175 0.026402 28 2425 21 6.65987e+06 393018 500653. 1732.36 0.87 0.11035 0.0967346 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0281168 0.0246299 135 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.83 vpr 62.71 MiB -1 -1 0.20 17816 1 0.03 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1181 9303 2469 6067 767 62.7 MiB 0.10 0.00 4.32644 -135.633 -4.32644 4.32644 0.65 0.000730705 0.000679472 0.0381954 0.0355027 30 2631 22 6.65987e+06 291594 526063. 1820.29 0.88 0.129703 0.114095 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.034662 0.0303641 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.47 vpr 61.58 MiB -1 -1 0.13 17624 1 0.02 -1 -1 30532 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63060 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 22.9 MiB 0.23 356 10636 3977 4816 1843 61.6 MiB 0.07 0.00 2.4343 -65.7683 -2.4343 2.4343 0.64 0.000431153 0.000401117 0.029871 0.0277607 30 997 16 6.65987e+06 228204 526063. 1820.29 0.76 0.0788397 0.0697166 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0147102 0.0129192 77 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.64 vpr 62.00 MiB -1 -1 0.18 17232 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.5 MiB 0.10 978 9571 2391 5607 1573 62.0 MiB 0.10 0.00 4.9364 -125.004 -4.9364 4.9364 0.64 0.000617679 0.00057493 0.0349201 0.0325098 32 2187 34 6.65987e+06 266238 554710. 1919.41 0.90 0.119667 0.105042 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.024416 0.0214414 118 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.22 vpr 61.69 MiB -1 -1 0.15 16984 1 0.02 -1 -1 30008 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63172 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.1 MiB 0.04 681 11200 3514 6177 1509 61.7 MiB 0.07 0.00 2.44727 -77.3331 -2.44727 2.44727 0.64 0.00042169 0.000391925 0.0302624 0.0281113 26 1411 15 6.65987e+06 177492 477104. 1650.88 0.72 0.076924 0.0680889 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.16 0.04 0.10 -1 -1 0.16 0.0139574 0.0122721 79 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.53 vpr 62.14 MiB -1 -1 0.15 17428 1 0.03 -1 -1 30004 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.6 MiB 0.10 819 10531 2694 7192 645 62.1 MiB 0.10 0.00 4.34174 -119.601 -4.34174 4.34174 0.65 0.000634799 0.00059023 0.0349834 0.0325715 32 2048 22 6.65987e+06 380340 554710. 1919.41 0.83 0.11458 0.100941 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0235003 0.0206074 123 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.75 vpr 62.29 MiB -1 -1 0.15 17240 1 0.03 -1 -1 30468 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.6 MiB 0.11 841 8087 1664 5850 573 62.3 MiB 0.08 0.00 3.58635 -102.903 -3.58635 3.58635 0.64 0.000641197 0.00059634 0.0262601 0.0243889 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.11 0.103193 0.0906049 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0247138 0.0217011 128 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.74 vpr 62.33 MiB -1 -1 0.19 17768 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1047 15165 4413 8666 2086 62.3 MiB 0.17 0.00 4.3944 -130.237 -4.3944 4.3944 0.64 0.000850628 0.000792141 0.0645201 0.0599381 32 2492 25 6.65987e+06 329628 554710. 1919.41 0.87 0.150136 0.133501 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0260983 0.0228677 125 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.44 vpr 61.93 MiB -1 -1 0.15 17400 1 0.03 -1 -1 30224 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63412 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.06 780 6100 1392 4485 223 61.9 MiB 0.07 0.00 2.90053 -100.349 -2.90053 2.90053 0.64 0.000600602 0.00055846 0.0233207 0.0216904 32 1965 19 6.65987e+06 202848 554710. 1919.41 0.79 0.0939238 0.082148 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0249767 0.021753 101 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.72 vpr 61.95 MiB -1 -1 0.19 17532 1 0.03 -1 -1 30140 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63436 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.10 630 9199 2049 6385 765 61.9 MiB 0.08 0.00 2.99867 -92.259 -2.99867 2.99867 0.64 0.000574568 0.000534157 0.0300709 0.0279132 32 1813 20 6.65987e+06 291594 554710. 1919.41 0.79 0.0966983 0.0849187 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0233315 0.0202782 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.59 vpr 61.96 MiB -1 -1 0.11 17536 1 0.03 -1 -1 30188 -1 -1 23 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63448 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.3 MiB 0.05 575 14123 3775 8918 1430 62.0 MiB 0.11 0.00 3.31478 -91.535 -3.31478 3.31478 0.64 0.000559298 0.000519857 0.0456117 0.0422948 32 1755 23 6.65987e+06 291594 554710. 1919.41 0.83 0.114616 0.101244 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.22 0.06 0.14 -1 -1 0.22 0.0232196 0.0201817 98 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.63 vpr 62.19 MiB -1 -1 0.18 17184 1 0.03 -1 -1 30248 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.8 MiB 0.11 714 4763 885 3714 164 62.2 MiB 0.05 0.00 3.74323 -109.194 -3.74323 3.74323 0.67 0.000564653 0.000524779 0.0170156 0.0158448 30 1851 22 6.65987e+06 240882 526063. 1820.29 0.91 0.0868361 0.0757019 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0309905 0.0269963 110 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.51 vpr 62.01 MiB -1 -1 0.19 17256 1 0.03 -1 -1 30224 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.6 MiB 0.11 740 8130 1715 6151 264 62.0 MiB 0.07 0.00 3.32595 -98.9982 -3.32595 3.32595 0.65 0.000595418 0.000554417 0.0254263 0.0236563 32 1842 22 6.65987e+06 342306 554710. 1919.41 0.81 0.0988369 0.0866466 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0231552 0.0201451 103 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.71 vpr 62.02 MiB -1 -1 0.18 17400 1 0.03 -1 -1 30496 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 23.5 MiB 0.25 874 10103 2597 6479 1027 62.0 MiB 0.09 0.00 3.27578 -104.365 -3.27578 3.27578 0.64 0.000603122 0.000561405 0.0343499 0.0319794 32 1837 16 6.65987e+06 316950 554710. 1919.41 0.82 0.102237 0.090286 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0229651 0.0201139 105 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.80 vpr 62.68 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30432 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1205 9971 2413 6766 792 62.7 MiB 0.10 0.00 4.35696 -124.779 -4.35696 4.35696 0.64 0.000741696 0.000689822 0.0343894 0.0319824 30 2470 20 6.65987e+06 469086 526063. 1820.29 0.82 0.120567 0.106603 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.29 0.07 0.11 -1 -1 0.29 0.0309795 0.0271685 150 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.11 vpr 62.59 MiB -1 -1 0.20 17620 1 0.03 -1 -1 30424 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1009 12860 3291 8398 1171 62.6 MiB 0.17 0.00 3.75432 -126.947 -3.75432 3.75432 0.72 0.000759951 0.000706002 0.057412 0.053107 26 2525 36 6.65987e+06 456408 477104. 1650.88 0.98 0.14462 0.127966 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0298993 0.0263047 146 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.76 vpr 62.10 MiB -1 -1 0.13 17548 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 23.5 MiB 0.24 731 8852 2206 5531 1115 62.1 MiB 0.09 0.00 4.21752 -119.384 -4.21752 4.21752 0.64 0.000594183 0.000553018 0.0326864 0.0304389 28 2061 26 6.65987e+06 215526 500653. 1732.36 0.94 0.107845 0.0946282 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.023938 0.0209153 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.87 vpr 62.68 MiB -1 -1 0.21 17676 1 0.03 -1 -1 30472 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 24.1 MiB 0.19 838 9687 2447 6341 899 62.7 MiB 0.11 0.00 4.30117 -127.913 -4.30117 4.30117 0.64 0.000722212 0.000670446 0.0391258 0.0363579 28 2472 25 6.65987e+06 304272 500653. 1732.36 0.96 0.129062 0.113427 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0304579 0.0266577 137 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.91 vpr 62.23 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30272 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1313 13758 3781 7541 2436 62.2 MiB 0.15 0.00 5.77198 -171.36 -5.77198 5.77198 0.63 0.000732187 0.000679961 0.0530304 0.0492907 32 3132 21 6.65987e+06 342306 554710. 1919.41 0.88 0.140028 0.124061 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0317277 0.0277713 170 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.87 vpr 62.77 MiB -1 -1 0.17 17772 1 0.03 -1 -1 30560 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 24.1 MiB 1.11 956 15103 4666 7688 2749 62.8 MiB 0.15 0.00 4.78629 -143.571 -4.78629 4.78629 0.64 0.000741923 0.000688116 0.0600777 0.0557568 32 2967 29 6.65987e+06 316950 554710. 1919.41 0.99 0.157118 0.13908 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0267723 0.0238554 162 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.11 vpr 62.50 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30560 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 24.0 MiB 0.22 864 6095 1129 4612 354 62.5 MiB 0.08 0.00 4.47092 -130.094 -4.47092 4.47092 0.64 0.000708118 0.000658498 0.0232673 0.0216556 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.19 0.121098 0.105697 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.02895 0.0253095 133 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.94 vpr 62.04 MiB -1 -1 0.18 17360 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63524 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 23.5 MiB 0.19 918 12371 3407 6390 2574 62.0 MiB 0.11 0.00 4.0455 -110.07 -4.0455 4.0455 0.68 0.00061861 0.000575629 0.0428319 0.039817 28 2605 20 6.65987e+06 278916 500653. 1732.36 1.08 0.117556 0.103966 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0241227 0.0211519 118 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.28 vpr 62.62 MiB -1 -1 0.21 18164 1 0.04 -1 -1 30368 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1184 10336 2301 7496 539 62.6 MiB 0.14 0.01 5.18869 -164.242 -5.18869 5.18869 0.67 0.0028986 0.00269315 0.0434371 0.0403099 26 3457 39 6.65987e+06 481764 477104. 1650.88 1.97 0.181324 0.1605 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.16 0.12 0.11 -1 -1 0.16 0.0410122 0.0357347 172 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.53 vpr 61.87 MiB -1 -1 0.11 17508 1 0.03 -1 -1 30140 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63356 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.2 MiB 0.10 660 11064 4480 5786 798 61.9 MiB 0.09 0.00 3.61218 -99.209 -3.61218 3.61218 0.64 0.0006575 0.00061565 0.0378042 0.0351312 32 1891 29 6.65987e+06 266238 554710. 1919.41 0.84 0.114316 0.10043 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0245812 0.0213393 101 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.05 vpr 62.54 MiB -1 -1 0.16 17516 1 0.03 -1 -1 30236 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1031 5756 1118 4418 220 62.5 MiB 0.04 0.00 5.03726 -146.602 -5.03726 5.03726 0.65 0.000306906 0.000283044 0.011477 0.0106156 28 2854 46 6.65987e+06 291594 500653. 1732.36 1.38 0.121313 0.104903 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.16 0.04 0.09 -1 -1 0.16 0.0170027 0.0151315 142 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.10 vpr 62.40 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30292 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.9 MiB 0.14 975 10087 2133 7508 446 62.4 MiB 0.10 0.00 3.91407 -118.639 -3.91407 3.91407 0.63 0.000705127 0.00065601 0.0344889 0.0320793 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.26 0.143201 0.125425 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0221547 0.0197924 131 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.92 vpr 62.02 MiB -1 -1 0.18 17100 1 0.03 -1 -1 30104 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63504 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.4 MiB 0.09 889 13153 5130 6680 1343 62.0 MiB 0.12 0.00 4.00941 -121.212 -4.00941 4.00941 0.69 0.00062903 0.000585334 0.0443727 0.0412423 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.02 0.135126 0.119001 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.19 0.14 0.12 -1 -1 0.19 0.0338402 0.0293566 123 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.88 vpr 62.42 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1135 8213 1899 5522 792 62.4 MiB 0.09 0.00 4.53182 -135.539 -4.53182 4.53182 0.64 0.000701984 0.000652867 0.0332084 0.0308712 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.02 0.120688 0.105988 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0319934 0.0279884 136 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.25 vpr 62.39 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30264 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 23.9 MiB 0.35 1054 11759 3077 7738 944 62.4 MiB 0.12 0.00 3.70469 -122.012 -3.70469 3.70469 0.68 0.000716721 0.000666386 0.0419932 0.0390316 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.15 0.130667 0.115261 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.19 0.08 0.10 -1 -1 0.19 0.0309487 0.0270545 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.21 vpr 62.56 MiB -1 -1 0.20 17504 1 0.04 -1 -1 30428 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1080 10772 2746 7404 622 62.6 MiB 0.11 0.00 4.49669 -137.938 -4.49669 4.49669 0.64 0.000742796 0.000690076 0.0374908 0.034727 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.05 0.12648 0.111126 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0320442 0.0279973 144 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.66 vpr 62.17 MiB -1 -1 0.17 17240 1 0.03 -1 -1 30248 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.6 MiB 0.10 888 10593 2829 7083 681 62.2 MiB 0.10 0.00 3.98836 -118.206 -3.98836 3.98836 0.66 0.000640659 0.000595764 0.0345144 0.0320523 32 2021 22 6.65987e+06 367662 554710. 1919.41 0.84 0.111075 0.0977541 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0265818 0.0232021 122 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.63 vpr 62.67 MiB -1 -1 0.16 17852 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 24.1 MiB 0.10 1026 6999 1560 5055 384 62.7 MiB 0.08 0.00 4.76946 -136.875 -4.76946 4.76946 0.68 0.000661349 0.000614469 0.0264729 0.0246281 32 2525 24 6.65987e+06 291594 554710. 1919.41 0.86 0.107686 0.0941953 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0276597 0.0242159 133 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.95 vpr 62.76 MiB -1 -1 0.20 17900 1 0.03 -1 -1 30416 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1149 15584 5177 7856 2551 62.8 MiB 0.17 0.00 4.99307 -147.134 -4.99307 4.99307 0.63 0.000733225 0.000681085 0.0626627 0.0581992 32 3017 27 6.65987e+06 291594 554710. 1919.41 0.91 0.154916 0.137378 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0281602 0.0245561 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.77 vpr 62.46 MiB -1 -1 0.20 17520 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 23.9 MiB 0.18 1089 11245 3394 6770 1081 62.5 MiB 0.12 0.00 3.85398 -125.73 -3.85398 3.85398 0.64 0.00074555 0.000692384 0.0476985 0.044288 32 2804 22 6.65987e+06 266238 554710. 1919.41 0.90 0.139162 0.123142 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.18 0.06 0.08 -1 -1 0.18 0.0199393 0.0176189 135 77 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.58 vpr 61.92 MiB -1 -1 0.08 17536 1 0.03 -1 -1 30164 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.3 MiB 0.09 769 15493 4232 9363 1898 61.9 MiB 0.12 0.00 3.34618 -101.012 -3.34618 3.34618 0.67 0.000566877 0.00052757 0.0465615 0.0433176 30 1787 28 6.65987e+06 304272 526063. 1820.29 0.85 0.118613 0.104877 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0187807 0.0165045 97 23 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.79 vpr 62.24 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30400 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 23.8 MiB 0.13 904 12345 3635 7531 1179 62.2 MiB 0.12 0.00 3.9733 -136.305 -3.9733 3.9733 0.68 0.000686313 0.000638485 0.0485171 0.0450938 28 2501 21 6.65987e+06 253560 500653. 1732.36 0.96 0.12837 0.113521 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0280301 0.0244753 125 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.02 vpr 62.46 MiB -1 -1 0.20 17696 1 0.03 -1 -1 30292 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1234 10649 2580 7238 831 62.5 MiB 0.13 0.00 5.507 -161.149 -5.507 5.507 0.63 0.000776215 0.000722064 0.0424831 0.0395106 32 3101 24 6.65987e+06 354984 554710. 1919.41 0.96 0.139119 0.122837 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0313697 0.027588 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.66 vpr 62.44 MiB -1 -1 0.17 17512 1 0.03 -1 -1 30360 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.26 868 6791 1309 5265 217 62.4 MiB 0.08 0.00 4.3812 -128.187 -4.3812 4.3812 0.63 0.000689209 0.000640979 0.0241759 0.0224797 30 2033 20 6.65987e+06 393018 526063. 1820.29 0.79 0.105199 0.0921474 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.18 0.06 0.12 -1 -1 0.18 0.0278792 0.0244527 133 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.69 vpr 62.04 MiB -1 -1 0.16 17528 1 0.03 -1 -1 30504 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.5 MiB 0.05 691 10228 2870 6479 879 62.0 MiB 0.09 0.00 3.33678 -100.638 -3.33678 3.33678 0.63 0.000590529 0.000549754 0.0330236 0.0307361 26 1949 23 6.65987e+06 329628 477104. 1650.88 1.02 0.104325 0.0915417 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.18 0.08 0.11 -1 -1 0.18 0.0253964 0.0220549 104 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.27 vpr 62.60 MiB -1 -1 0.21 17768 1 0.03 -1 -1 30268 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1262 6623 1301 4680 642 62.6 MiB 0.10 0.00 6.41663 -184.149 -6.41663 6.41663 0.64 0.000711927 0.000655168 0.0324282 0.0301175 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.25 0.13925 0.122015 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0346893 0.0306326 168 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.01 vpr 62.37 MiB -1 -1 0.17 17868 1 0.03 -1 -1 30376 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 23.7 MiB 0.30 921 16959 4303 11211 1445 62.4 MiB 0.15 0.00 4.44175 -133.512 -4.44175 4.44175 0.71 0.000686753 0.000638961 0.0557759 0.0518798 26 2186 24 6.65987e+06 405696 477104. 1650.88 0.87 0.140859 0.125016 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.16 0.07 0.11 -1 -1 0.16 0.0295175 0.0257902 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.41 vpr 61.69 MiB -1 -1 0.14 17372 1 0.03 -1 -1 30504 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63172 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.1 MiB 0.05 793 12375 3802 6579 1994 61.7 MiB 0.10 0.00 3.21869 -96.935 -3.21869 3.21869 0.63 0.000539173 0.00050233 0.0364165 0.0339235 30 1766 15 6.65987e+06 291594 526063. 1820.29 0.81 0.100785 0.0890078 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.18 0.05 0.12 -1 -1 0.18 0.0180659 0.0158245 100 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.86 vpr 62.64 MiB -1 -1 0.17 17900 1 0.04 -1 -1 30160 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.0 MiB 0.12 997 10448 2232 7093 1123 62.6 MiB 0.10 0.00 5.44618 -130.736 -5.44618 5.44618 0.64 0.000713311 0.000662719 0.0357604 0.0332467 30 2483 23 6.65987e+06 431052 526063. 1820.29 0.98 0.122749 0.10815 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0304247 0.0266053 139 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.53 vpr 61.93 MiB -1 -1 0.17 17368 1 0.03 -1 -1 30160 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63420 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.3 MiB 0.09 805 9600 2394 6142 1064 61.9 MiB 0.09 0.00 3.39504 -104.25 -3.39504 3.39504 0.63 0.000556067 0.000517791 0.0311112 0.028948 30 1773 21 6.65987e+06 253560 526063. 1820.29 0.84 0.0972155 0.0855191 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0215431 0.0188395 104 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.00 vpr 62.08 MiB -1 -1 0.19 17312 1 0.03 -1 -1 30376 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.6 MiB 0.17 870 16295 4607 9720 1968 62.1 MiB 0.13 0.00 3.88231 -108.178 -3.88231 3.88231 0.73 0.000594076 0.000553148 0.0465786 0.0432809 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.05 0.122299 0.107975 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.16 0.05 0.10 -1 -1 0.16 0.0199234 0.0174714 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.09 vpr 62.70 MiB -1 -1 0.16 17772 1 0.03 -1 -1 30468 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1186 15151 5050 8219 1882 62.7 MiB 0.15 0.00 4.37661 -129.138 -4.37661 4.37661 0.65 0.000694275 0.000645305 0.0590446 0.0549076 28 2757 20 6.65987e+06 304272 500653. 1732.36 1.14 0.142319 0.1265 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0280023 0.0244891 138 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.82 vpr 62.25 MiB -1 -1 0.10 17816 1 0.04 -1 -1 30352 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.6 MiB 0.20 884 5548 1103 3958 487 62.3 MiB 0.08 0.00 4.37207 -129.772 -4.37207 4.37207 0.66 0.000716914 0.000666741 0.0315796 0.0295335 32 2141 21 6.65987e+06 304272 554710. 1919.41 0.84 0.11508 0.101319 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.22 0.07 0.13 -1 -1 0.22 0.028411 0.0248028 130 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.82 vpr 62.34 MiB -1 -1 0.15 17796 1 0.03 -1 -1 30000 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1040 15391 4199 8930 2262 62.3 MiB 0.19 0.00 4.54089 -136.701 -4.54089 4.54089 0.64 0.00145075 0.0013486 0.0645074 0.0597496 32 2316 24 6.65987e+06 342306 554710. 1919.41 0.84 0.151875 0.134859 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0263382 0.0231392 132 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.56 vpr 61.91 MiB -1 -1 0.13 17532 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63396 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 23.5 MiB 0.26 821 7476 1923 4958 595 61.9 MiB 0.04 0.00 4.66411 -131.468 -4.66411 4.66411 0.65 0.000268522 0.000247063 0.0133875 0.0123654 30 1841 19 6.65987e+06 202848 526063. 1820.29 0.76 0.0858076 0.0745663 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.20 0.05 0.12 -1 -1 0.20 0.0219255 0.0191949 103 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.61 vpr 62.37 MiB -1 -1 0.14 17808 1 0.04 -1 -1 30340 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.8 MiB 0.19 768 7736 1918 4969 849 62.4 MiB 0.08 0.00 3.69598 -115.422 -3.69598 3.69598 0.63 0.000638307 0.000592616 0.029934 0.0278047 30 1988 17 6.65987e+06 240882 526063. 1820.29 0.80 0.10127 0.0888009 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.19 0.06 0.12 -1 -1 0.19 0.0255815 0.0223264 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.93 vpr 62.21 MiB -1 -1 0.19 17872 1 0.03 -1 -1 30396 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.6 MiB 0.18 822 9815 2052 6788 975 62.2 MiB 0.08 0.00 3.34001 -95.394 -3.34001 3.34001 0.63 0.000658534 0.000611671 0.0322888 0.0300252 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.19 0.113535 0.0994473 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.021531 0.0189502 123 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.19 vpr 62.07 MiB -1 -1 0.19 17256 1 0.03 -1 -1 30304 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63556 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.5 MiB 0.12 864 12623 3003 8699 921 62.1 MiB 0.10 0.00 4.17801 -101.983 -4.17801 4.17801 0.68 0.000593272 0.000552174 0.037397 0.0347458 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.33 0.113139 0.0998039 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.17 0.07 0.11 -1 -1 0.17 0.0260453 0.0231838 115 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.71 vpr 61.99 MiB -1 -1 0.19 17836 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63480 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 23.5 MiB 0.19 739 8360 2842 3913 1605 62.0 MiB 0.09 0.00 4.07397 -113.958 -4.07397 4.07397 0.64 0.000637661 0.000592599 0.0337256 0.0313844 32 2126 22 6.65987e+06 215526 554710. 1919.41 0.85 0.109921 0.0964776 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0251881 0.0219659 108 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.24 vpr 62.26 MiB -1 -1 0.19 17868 1 0.03 -1 -1 30052 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 23.7 MiB 0.19 854 4110 634 3368 108 62.3 MiB 0.06 0.00 3.78604 -125.597 -3.78604 3.78604 0.64 0.000674829 0.000627612 0.0173504 0.0161734 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.29 0.107294 0.0935161 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.16 0.07 0.09 -1 -1 0.16 0.0268601 0.0233554 120 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.76 vpr 62.23 MiB -1 -1 0.19 17304 1 0.03 -1 -1 30420 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.09 847 5711 1070 3973 668 62.2 MiB 0.06 0.00 4.49904 -123.598 -4.49904 4.49904 0.64 0.000632663 0.000588321 0.0189213 0.0176025 30 2337 22 6.65987e+06 405696 526063. 1820.29 0.91 0.0944913 0.0824075 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.21 0.07 0.12 -1 -1 0.21 0.0288576 0.0251325 127 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.02 vpr 62.65 MiB -1 -1 0.17 17772 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1096 14639 4278 7910 2451 62.6 MiB 0.17 0.00 5.13815 -159.632 -5.13815 5.13815 0.66 0.000702481 0.000652804 0.0583243 0.0539059 32 3087 25 6.65987e+06 278916 554710. 1919.41 0.89 0.147101 0.130112 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0294427 0.0257909 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.03 vpr 62.86 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30244 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1097 14331 4044 8499 1788 62.9 MiB 0.14 0.00 4.9662 -142.984 -4.9662 4.9662 0.64 0.000787381 0.00071603 0.0522839 0.0485364 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.00 0.14137 0.125145 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.026523 0.0233458 142 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.23 vpr 62.50 MiB -1 -1 0.19 17520 1 0.03 -1 -1 30236 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1087 19136 6054 10420 2662 62.5 MiB 0.17 0.00 4.23232 -136.463 -4.23232 4.23232 0.64 0.000751658 0.000697935 0.0641519 0.0594746 28 2899 28 6.65987e+06 469086 500653. 1732.36 1.18 0.162816 0.144321 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0351721 0.0306412 140 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.67 vpr 61.95 MiB -1 -1 0.18 17240 1 0.03 -1 -1 30148 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63440 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.6 MiB 0.19 753 14081 4985 6810 2286 62.0 MiB 0.12 0.00 3.61906 -107.365 -3.61906 3.61906 0.63 0.000583674 0.000543015 0.049158 0.0456631 32 1967 21 6.65987e+06 240882 554710. 1919.41 0.80 0.117929 0.104482 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0248239 0.0215885 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.88 vpr 62.60 MiB -1 -1 0.20 17692 1 0.03 -1 -1 30464 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 23.9 MiB 0.23 993 13583 3880 7603 2100 62.6 MiB 0.14 0.00 4.75724 -141.541 -4.75724 4.75724 0.64 0.000728366 0.000676059 0.0571087 0.0529817 32 2250 20 6.65987e+06 266238 554710. 1919.41 0.87 0.142183 0.126089 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.028961 0.0253585 137 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.06 vpr 62.54 MiB -1 -1 0.19 17504 1 0.04 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 23.9 MiB 0.26 984 6328 1212 4906 210 62.5 MiB 0.08 0.00 5.08874 -146.537 -5.08874 5.08874 0.65 0.000686748 0.000638265 0.024705 0.022972 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.07 0.133684 0.116338 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.23 0.07 0.11 -1 -1 0.23 0.0283532 0.0249038 138 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.94 vpr 62.57 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30380 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1115 15391 3929 9868 1594 62.6 MiB 0.16 0.00 5.2191 -153.261 -5.2191 5.2191 0.64 0.000757881 0.000698838 0.0496936 0.0456658 32 2703 22 6.65987e+06 354984 554710. 1919.41 0.86 0.132016 0.116288 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0308503 0.027255 146 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.52 vpr 62.46 MiB -1 -1 0.20 17580 1 0.03 -1 -1 30124 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 24.0 MiB 1.00 822 9963 2514 6047 1402 62.5 MiB 0.11 0.00 4.35758 -125.649 -4.35758 4.35758 0.64 0.000724418 0.00067348 0.037253 0.0346508 30 1914 20 6.65987e+06 393018 526063. 1820.29 0.82 0.122579 0.10778 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0268726 0.0235811 133 83 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.96 vpr 62.47 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1042 15822 5317 8613 1892 62.5 MiB 0.16 0.00 4.76549 -137.992 -4.76549 4.76549 0.67 0.000725994 0.000674637 0.0656753 0.0610691 30 2491 20 6.65987e+06 253560 526063. 1820.29 0.91 0.143795 0.128346 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0249352 0.0222199 133 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.30 vpr 62.46 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30244 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.0 MiB 0.33 913 8934 2134 6274 526 62.5 MiB 0.10 0.00 4.51892 -126.294 -4.51892 4.51892 0.63 0.000735969 0.000683983 0.034832 0.0323781 26 2602 20 6.65987e+06 367662 477104. 1650.88 1.36 0.120772 0.106048 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.16 0.08 0.07 -1 -1 0.16 0.0285932 0.0249585 131 85 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.54 vpr 61.84 MiB -1 -1 0.15 17188 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.3 MiB 0.09 724 12416 3530 7132 1754 61.8 MiB 0.11 0.00 3.74649 -112.139 -3.74649 3.74649 0.63 0.00055351 0.000514366 0.0426826 0.0396684 32 1726 22 6.65987e+06 190170 554710. 1919.41 0.79 0.110012 0.0974881 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0206079 0.0180472 96 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.86 vpr 62.58 MiB -1 -1 0.15 17800 1 0.03 -1 -1 30232 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 24.2 MiB 0.25 989 15430 4612 8155 2663 62.6 MiB 0.14 0.00 4.41154 -133.367 -4.41154 4.41154 0.64 0.000735954 0.000683715 0.0550803 0.0511072 32 2429 22 6.65987e+06 380340 554710. 1919.41 0.89 0.143227 0.126745 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.19 0.08 0.11 -1 -1 0.19 0.029874 0.0261111 130 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.88 vpr 62.51 MiB -1 -1 0.16 17504 1 0.03 -1 -1 30416 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 24.0 MiB 0.25 902 8685 2007 6399 279 62.5 MiB 0.11 0.00 4.76517 -143.598 -4.76517 4.76517 0.63 0.000770538 0.000715214 0.0393245 0.036504 32 2497 24 6.65987e+06 253560 554710. 1919.41 0.89 0.134928 0.118882 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0319837 0.0280189 147 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.14 vpr 62.12 MiB -1 -1 0.17 17528 1 0.03 -1 -1 30152 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 23.6 MiB 0.20 946 12143 3182 7420 1541 62.1 MiB 0.11 0.00 4.15372 -120.605 -4.15372 4.15372 0.63 0.000580299 0.000539256 0.041136 0.0382046 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.33 0.129117 0.113268 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0302092 0.0261948 111 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.38 vpr 61.84 MiB -1 -1 0.17 17268 1 0.03 -1 -1 30436 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63320 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.1 MiB 0.07 732 8685 2467 5468 750 61.8 MiB 0.08 0.00 3.75938 -108.757 -3.75938 3.75938 0.64 0.000552648 0.000514651 0.0279605 0.0260058 30 1655 19 6.65987e+06 266238 526063. 1820.29 0.77 0.0922423 0.0810629 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0228562 0.0199226 106 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.06 vpr 62.57 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30424 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1015 15533 4784 8284 2465 62.6 MiB 0.15 0.00 4.92983 -152.714 -4.92983 4.92983 0.63 0.000701762 0.000652268 0.0576584 0.0536286 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.12 0.151321 0.13407 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0302505 0.0264273 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.80 vpr 62.39 MiB -1 -1 0.20 17856 1 0.03 -1 -1 30032 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 23.9 MiB 0.50 1191 12305 3278 8039 988 62.4 MiB 0.12 0.00 4.93544 -150.743 -4.93544 4.93544 0.64 0.000719859 0.000662811 0.0456271 0.0424112 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.32 0.133465 0.118765 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.23 0.12 0.11 -1 -1 0.23 0.0355072 0.0311193 151 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.21 vpr 62.61 MiB -1 -1 0.15 17532 1 0.03 -1 -1 30152 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 23.8 MiB 0.06 1117 11004 2566 7834 604 62.6 MiB 0.11 0.00 5.28255 -141.369 -5.28255 5.28255 0.64 0.000726403 0.000675156 0.0368641 0.034207 26 3370 49 6.65987e+06 456408 477104. 1650.88 2.32 0.159731 0.139848 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0292646 0.0256987 153 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.93 vpr 62.13 MiB -1 -1 0.15 17576 1 0.03 -1 -1 30068 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63624 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 23.6 MiB 0.24 750 7863 1674 5072 1117 62.1 MiB 0.08 0.00 3.28175 -94.6726 -3.28175 3.28175 0.64 0.000642724 0.00059755 0.0261842 0.0243401 30 1756 22 6.65987e+06 393018 526063. 1820.29 0.85 0.102459 0.0896681 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.22 0.06 0.11 -1 -1 0.22 0.0248834 0.021794 120 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.30 vpr 62.00 MiB -1 -1 0.15 17484 1 0.03 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.05 638 11948 3525 6694 1729 62.0 MiB 0.09 0.00 3.4543 -94.1654 -3.4543 3.4543 0.64 0.000549818 0.00051219 0.0399699 0.0372221 28 1599 22 6.65987e+06 266238 500653. 1732.36 0.75 0.105436 0.0930724 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0219562 0.0190642 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.42 vpr 62.68 MiB -1 -1 0.20 17636 1 0.03 -1 -1 30336 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1319 10542 2869 6884 789 62.7 MiB 0.12 0.00 4.22384 -138.261 -4.22384 4.22384 0.71 0.00079704 0.00074469 0.0451586 0.0419595 28 3615 24 6.65987e+06 329628 500653. 1732.36 1.41 0.146648 0.129144 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0346968 0.0303347 170 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.51 vpr 62.44 MiB -1 -1 0.19 17560 1 0.03 -1 -1 30288 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 23.9 MiB 0.93 967 9417 2580 6478 359 62.4 MiB 0.10 0.00 5.3126 -152.671 -5.3126 5.3126 0.64 0.000716782 0.000666096 0.039088 0.0363086 30 2413 22 6.65987e+06 266238 526063. 1820.29 0.87 0.124497 0.109619 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0296175 0.0259426 150 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.29 vpr 62.26 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 23.7 MiB 0.80 910 12186 3808 6300 2078 62.3 MiB 0.12 0.00 4.17204 -128.915 -4.17204 4.17204 0.63 0.000661136 0.000614265 0.0476864 0.0443468 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.80 0.126669 0.112159 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0245689 0.0215455 126 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.57 vpr 62.26 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30440 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.7 MiB 0.10 997 13726 4134 8495 1097 62.3 MiB 0.13 0.00 4.87399 -127.071 -4.87399 4.87399 0.64 0.000657619 0.000608055 0.0457822 0.0424462 30 2100 21 6.65987e+06 380340 526063. 1820.29 0.80 0.125275 0.110751 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0238182 0.0209644 126 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.39 vpr 62.61 MiB -1 -1 0.20 17576 1 0.03 -1 -1 30156 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1094 9732 2284 6801 647 62.6 MiB 0.11 0.00 4.71929 -136.272 -4.71929 4.71929 0.64 0.000737997 0.000685994 0.0354473 0.0329888 26 2676 39 6.65987e+06 418374 477104. 1650.88 1.40 0.142241 0.124542 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0282117 0.0247189 144 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.63 vpr 62.55 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30124 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.9 MiB 0.15 968 12693 2914 8596 1183 62.6 MiB 0.13 0.00 3.66981 -110.801 -3.66981 3.66981 0.64 0.000662621 0.000615604 0.0418715 0.0388767 32 2261 19 6.65987e+06 393018 554710. 1919.41 0.83 0.117578 0.103737 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0261012 0.0228294 124 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.96 vpr 62.82 MiB -1 -1 0.17 17788 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1162 15493 5220 7522 2751 62.8 MiB 0.15 0.00 4.81692 -150.127 -4.81692 4.81692 0.70 0.000705196 0.000655497 0.058788 0.0546448 32 3110 26 6.65987e+06 304272 554710. 1919.41 0.95 0.147421 0.130952 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.19 0.11 0.14 -1 -1 0.19 0.0317431 0.0280114 147 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.49 vpr 62.55 MiB -1 -1 0.19 17644 1 0.03 -1 -1 30184 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1013 10448 2457 7443 548 62.6 MiB 0.12 0.00 4.61703 -140.056 -4.61703 4.61703 0.66 0.000758659 0.000704848 0.0376082 0.0349359 26 2952 23 6.65987e+06 431052 477104. 1650.88 1.40 0.131853 0.115839 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.23 0.07 0.11 -1 -1 0.23 0.0280804 0.0248476 143 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.49 vpr 61.92 MiB -1 -1 0.18 17588 1 0.03 -1 -1 30356 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.3 MiB 0.12 669 12030 4965 6160 905 61.9 MiB 0.10 0.00 3.76255 -110.557 -3.76255 3.76255 0.63 0.000573335 0.000533235 0.0435472 0.040524 32 1475 20 6.65987e+06 215526 554710. 1919.41 0.77 0.11101 0.098317 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0225579 0.0197286 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.72 vpr 62.11 MiB -1 -1 0.17 17532 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 23.5 MiB 0.25 897 13992 5018 7267 1707 62.1 MiB 0.13 0.00 3.93547 -124.701 -3.93547 3.93547 0.64 0.000633091 0.00058737 0.0508198 0.0471816 28 2149 19 6.65987e+06 253560 500653. 1732.36 0.81 0.124241 0.110116 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0277561 0.0243395 116 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.47 vpr 62.45 MiB -1 -1 0.13 17576 1 0.03 -1 -1 30460 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.9 MiB 0.08 945 14020 3581 8011 2428 62.4 MiB 0.12 0.00 4.66818 -124.475 -4.66818 4.66818 0.63 0.000668964 0.000621666 0.0427353 0.0397137 32 2224 21 6.65987e+06 469086 554710. 1919.41 0.83 0.121738 0.107489 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0297765 0.0259755 129 33 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.14 vpr 61.83 MiB -1 -1 0.18 17528 1 0.03 -1 -1 30452 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63312 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 23.4 MiB 0.19 809 8448 1963 6049 436 61.8 MiB 0.08 0.00 4.16472 -111.492 -4.16472 4.16472 0.64 0.000564912 0.000525789 0.0286936 0.026731 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.31 0.107803 0.0942981 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.023463 0.0204317 110 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.70 vpr 62.02 MiB -1 -1 0.14 17532 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 23.6 MiB 0.20 618 8852 1890 6315 647 62.0 MiB 0.08 0.00 3.69503 -110.464 -3.69503 3.69503 0.64 0.000597692 0.000556373 0.0327667 0.0305045 32 2025 24 6.65987e+06 202848 554710. 1919.41 0.86 0.106369 0.0935412 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.26 0.07 0.12 -1 -1 0.26 0.0215032 0.0189514 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.87 vpr 62.69 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30144 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 938 16973 4485 9905 2583 62.7 MiB 0.15 0.00 4.16177 -122.328 -4.16177 4.16177 0.67 0.000727514 0.000676489 0.0576836 0.0535794 32 2086 22 6.65987e+06 443730 554710. 1919.41 0.83 0.144947 0.128612 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0280438 0.0246174 135 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.61 vpr 62.07 MiB -1 -1 0.20 17588 1 0.03 -1 -1 30328 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63564 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 23.6 MiB 0.14 818 9872 2327 5876 1669 62.1 MiB 0.09 0.00 3.9535 -119.787 -3.9535 3.9535 0.63 0.000573753 0.00053417 0.034367 0.0319772 28 2135 19 6.65987e+06 240882 500653. 1732.36 0.84 0.101001 0.0889808 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0211817 0.018517 108 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.11 vpr 62.29 MiB -1 -1 0.15 17664 1 0.03 -1 -1 30040 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 23.6 MiB 0.25 854 7007 1324 4687 996 62.3 MiB 0.07 0.00 3.67932 -112.828 -3.67932 3.67932 0.63 0.000695505 0.000645676 0.0250294 0.0232507 26 2878 47 6.65987e+06 393018 477104. 1650.88 2.20 0.134019 0.116399 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.17 0.09 0.13 -1 -1 0.17 0.0278106 0.0244426 126 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.40 vpr 62.57 MiB -1 -1 0.19 17812 1 0.02 -1 -1 30452 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.1 MiB 0.77 956 13055 3385 8531 1139 62.6 MiB 0.13 0.00 4.2257 -136.613 -4.2257 4.2257 0.67 0.000741568 0.000687713 0.0476881 0.0442345 32 2142 21 6.65987e+06 405696 554710. 1919.41 0.90 0.136023 0.120407 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0296691 0.0259779 138 91 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.70 vpr 62.10 MiB -1 -1 0.15 17400 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.7 MiB 0.28 770 8481 2112 5900 469 62.1 MiB 0.08 0.00 3.26384 -102.093 -3.26384 3.26384 0.68 0.000626935 0.000582822 0.0324408 0.0301745 30 1814 29 6.65987e+06 215526 526063. 1820.29 0.82 0.10783 0.0946756 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0219261 0.0192926 104 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.62 vpr 62.30 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30292 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 23.7 MiB 0.16 877 7823 1725 5526 572 62.3 MiB 0.08 0.00 4.21052 -129.412 -4.21052 4.21052 0.67 0.000615584 0.000573503 0.0288106 0.0268309 28 2168 19 6.65987e+06 240882 500653. 1732.36 0.82 0.099488 0.0874187 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0254452 0.0222095 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.97 vpr 62.42 MiB -1 -1 0.18 17504 1 0.03 -1 -1 30440 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 23.8 MiB 0.12 1033 8591 2028 5962 601 62.4 MiB 0.10 0.00 4.5425 -136.752 -4.5425 4.5425 0.65 0.000665216 0.000619046 0.0357455 0.0330954 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.15 0.119933 0.105464 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.16 0.07 0.11 -1 -1 0.16 0.0246855 0.0216694 130 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.71 vpr 62.39 MiB -1 -1 0.16 17900 1 0.03 -1 -1 30128 -1 -1 28 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 878 11177 3323 6945 909 62.4 MiB 0.11 0.00 4.7062 -118.142 -4.7062 4.7062 0.67 0.000653816 0.000608378 0.0392962 0.0365428 30 1916 16 6.65987e+06 354984 526063. 1820.29 0.76 0.111256 0.0983502 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0211737 0.018649 121 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.84 vpr 62.37 MiB -1 -1 0.15 17640 1 0.03 -1 -1 30452 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1007 9495 2407 6691 397 62.4 MiB 0.11 0.00 5.16517 -161.462 -5.16517 5.16517 0.63 0.000761924 0.000707605 0.040445 0.037587 32 2658 22 6.65987e+06 291594 554710. 1919.41 0.88 0.133454 0.117678 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0326736 0.0285887 153 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.46 vpr 62.00 MiB -1 -1 0.19 17080 1 0.03 -1 -1 30392 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.4 MiB 0.09 794 9181 2203 6150 828 62.0 MiB 0.08 0.00 3.53041 -99.5418 -3.53041 3.53041 0.69 0.000536862 0.000500345 0.0299814 0.0279442 32 1764 19 6.65987e+06 228204 554710. 1919.41 0.75 0.0916865 0.0807126 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0196275 0.0171774 96 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.94 vpr 62.58 MiB -1 -1 0.18 17796 1 0.04 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.0 MiB 0.39 947 7201 1402 5250 549 62.6 MiB 0.08 0.00 4.0805 -134.669 -4.0805 4.0805 0.63 0.000733459 0.000676153 0.0278018 0.0257911 32 2497 24 6.65987e+06 418374 554710. 1919.41 0.85 0.121886 0.106517 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0332167 0.0290265 144 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.77 vpr 62.37 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.8 MiB 0.22 692 9368 2494 5834 1040 62.4 MiB 0.10 0.00 3.5233 -119.857 -3.5233 3.5233 0.64 0.000714689 0.000663149 0.0412209 0.0382782 32 1730 23 6.65987e+06 202848 554710. 1919.41 0.83 0.127899 0.112634 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0318821 0.0278196 115 96 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.03 vpr 62.37 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30284 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 23.7 MiB 0.35 963 9383 2362 6118 903 62.4 MiB 0.10 0.00 4.19332 -127.565 -4.19332 4.19332 0.65 0.000711843 0.000661739 0.0340217 0.0316241 32 2293 25 6.65987e+06 393018 554710. 1919.41 0.80 0.110085 0.0970461 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0300339 0.0262307 130 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.36 vpr 62.49 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30360 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 24.3 MiB 0.37 1323 16127 4193 10390 1544 62.5 MiB 0.21 0.00 6.49946 -194.782 -6.49946 6.49946 0.79 0.000774499 0.000718908 0.075628 0.0704876 28 3840 36 6.65987e+06 316950 500653. 1732.36 2.00 0.189538 0.168566 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0328751 0.0288628 168 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.53 vpr 61.85 MiB -1 -1 0.14 17532 1 0.03 -1 -1 30108 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63336 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.3 MiB 0.16 701 10895 2966 6376 1553 61.9 MiB 0.09 0.00 3.19181 -99.2246 -3.19181 3.19181 0.67 0.000504402 0.0004699 0.034222 0.0318637 32 1552 19 6.65987e+06 215526 554710. 1919.41 0.75 0.0918316 0.0810976 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0207805 0.0180709 86 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.63 vpr 62.00 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30100 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63492 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.11 559 11200 4645 5368 1187 62.0 MiB 0.11 0.00 4.03052 -111.683 -4.03052 4.03052 0.64 0.000606082 0.000563109 0.0523247 0.0486096 32 1719 26 6.65987e+06 202848 554710. 1919.41 0.89 0.123319 0.10939 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0355558 0.0306064 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.61 vpr 62.05 MiB -1 -1 0.18 17388 1 0.03 -1 -1 29952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63544 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.6 MiB 0.06 882 13663 3967 7775 1921 62.1 MiB 0.13 0.00 3.38183 -111.047 -3.38183 3.38183 0.69 0.000624881 0.000575782 0.047758 0.0444007 32 2232 25 6.65987e+06 266238 554710. 1919.41 0.84 0.125362 0.110872 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0257419 0.0224335 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.03 vpr 61.66 MiB -1 -1 0.10 17484 1 0.02 -1 -1 30352 -1 -1 27 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63144 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.1 MiB 0.08 461 9234 2985 4025 2224 61.7 MiB 0.06 0.00 3.09981 -73.1644 -3.09981 3.09981 0.68 0.000481448 0.000447166 0.0257622 0.0239461 38 1143 33 6.65987e+06 342306 638502. 2209.35 1.35 0.127073 0.109894 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.24 0.04 0.13 -1 -1 0.24 0.017045 0.0149281 89 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.89 vpr 62.73 MiB -1 -1 0.18 17664 1 0.03 -1 -1 30348 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1082 15273 5386 7964 1923 62.7 MiB 0.16 0.00 3.97418 -128.905 -3.97418 3.97418 0.64 0.000739123 0.000686993 0.0647446 0.060132 32 2803 23 6.65987e+06 253560 554710. 1919.41 0.89 0.15251 0.135424 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0323923 0.0282712 135 72 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.93 vpr 62.71 MiB -1 -1 0.21 17900 1 0.03 -1 -1 30420 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 24.0 MiB 0.34 841 9951 2183 7152 616 62.7 MiB 0.11 0.00 4.37472 -138.365 -4.37472 4.37472 0.69 0.000616454 0.000564312 0.0382039 0.0353979 32 2335 20 6.65987e+06 418374 554710. 1919.41 0.87 0.128906 0.113262 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0270313 0.0237707 142 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 7.85 vpr 63.26 MiB -1 -1 0.18 17516 1 0.03 -1 -1 30236 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 24.7 MiB 2.13 849 12139 5116 6732 291 63.3 MiB 0.11 0.00 5.4594 -159.287 -5.4594 5.4594 0.69 0.000711151 0.000660793 0.0553456 0.0514466 44 2778 24 6.95648e+06 188184 787024. 2723.27 2.66 0.199522 0.175067 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.25 0.09 0.18 -1 -1 0.25 0.0309786 0.0271579 81 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 6.90 vpr 63.27 MiB -1 -1 0.20 17664 1 0.03 -1 -1 30372 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 24.7 MiB 1.93 750 10998 3991 5243 1764 63.3 MiB 0.10 0.00 4.63092 -138.355 -4.63092 4.63092 0.68 0.000671164 0.000628994 0.0505176 0.047005 40 2398 38 6.95648e+06 217135 706193. 2443.58 2.02 0.186395 0.162871 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.031848 0.0278319 80 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 6.65 vpr 63.27 MiB -1 -1 0.13 17252 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 24.8 MiB 1.06 1011 6839 1853 4585 401 63.3 MiB 0.07 0.00 3.76508 -124.296 -3.76508 3.76508 0.67 0.000633253 0.000589235 0.0286755 0.0267324 38 2570 30 6.95648e+06 217135 678818. 2348.85 2.81 0.166286 0.144488 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0254155 0.0222392 76 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.61 vpr 62.91 MiB -1 -1 0.18 17312 1 0.03 -1 -1 30332 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 24.5 MiB 0.39 653 13152 5791 6666 695 62.9 MiB 0.11 0.00 4.18338 -115.281 -4.18338 4.18338 0.65 0.000635274 0.000590126 0.051036 0.0474001 46 2265 28 6.95648e+06 275038 828058. 2865.25 2.39 0.182425 0.159412 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0246308 0.0215743 71 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.95 vpr 63.10 MiB -1 -1 0.15 17696 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 24.5 MiB 0.73 735 12120 5042 6627 451 63.1 MiB 0.11 0.00 4.33299 -127.984 -4.33299 4.33299 0.65 0.000683732 0.000635163 0.0507399 0.0471609 46 2384 49 6.95648e+06 231611 828058. 2865.25 3.38 0.214836 0.187207 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.25 0.07 0.20 -1 -1 0.25 0.0264762 0.0232156 73 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.29 vpr 63.10 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30296 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 24.5 MiB 0.94 762 14779 6278 7942 559 63.1 MiB 0.12 0.00 3.0584 -114.242 -3.0584 3.0584 0.68 0.000728652 0.000676185 0.0599483 0.0556427 46 2130 23 6.95648e+06 303989 828058. 2865.25 2.46 0.202671 0.177639 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0306388 0.0268009 79 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.57 vpr 62.86 MiB -1 -1 0.18 17404 1 0.03 -1 -1 30656 -1 -1 13 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 24.5 MiB 4.05 400 8118 3296 4253 569 62.9 MiB 0.07 0.00 3.56899 -93.1575 -3.56899 3.56899 0.65 0.000550309 0.00051152 0.0322747 0.0300558 40 1513 27 6.95648e+06 188184 706193. 2443.58 1.72 0.149207 0.129223 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.28 0.04 0.15 -1 -1 0.28 0.0138504 0.0123415 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.59 vpr 62.95 MiB -1 -1 0.19 17160 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.5 MiB 0.35 691 11983 4028 5840 2115 62.9 MiB 0.10 0.00 3.0166 -94.5957 -3.0166 3.0166 0.66 0.000605604 0.000563423 0.0409873 0.0380828 38 2198 34 6.95648e+06 361892 678818. 2348.85 2.43 0.170338 0.148003 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0248082 0.0216613 69 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 6.47 vpr 62.97 MiB -1 -1 0.19 17580 1 0.03 -1 -1 30124 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 24.6 MiB 1.78 579 9684 3905 5251 528 63.0 MiB 0.09 0.00 3.39469 -115.112 -3.39469 3.39469 0.65 0.000634704 0.000589781 0.0419442 0.0390098 48 1811 26 6.95648e+06 159232 865456. 2994.66 1.86 0.169373 0.147502 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.25 0.07 0.12 -1 -1 0.25 0.0272541 0.0237499 66 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.17 vpr 62.77 MiB -1 -1 0.14 17240 1 0.03 -1 -1 30240 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 24.2 MiB 0.91 566 8134 3343 4546 245 62.8 MiB 0.08 0.00 3.30928 -114.291 -3.30928 3.30928 0.65 0.00062459 0.000580626 0.0350523 0.0326251 42 1921 24 6.95648e+06 144757 744469. 2576.02 1.53 0.159074 0.138235 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.23 0.06 0.15 -1 -1 0.23 0.0241922 0.0212204 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 5.93 vpr 62.84 MiB -1 -1 0.13 17544 1 0.03 -1 -1 30332 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 24.2 MiB 1.66 471 10304 4280 5549 475 62.8 MiB 0.09 0.00 3.43453 -102.366 -3.43453 3.43453 0.68 0.000619707 0.000575675 0.0433629 0.0403114 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.53 0.179783 0.156092 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.25 0.06 0.16 -1 -1 0.25 0.023621 0.0206284 55 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 7.18 vpr 62.86 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30200 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 1.46 590 10614 3394 4881 2339 62.9 MiB 0.10 0.00 3.37833 -114.652 -3.37833 3.37833 0.65 0.000692799 0.000638656 0.0438232 0.0407749 48 2065 26 6.95648e+06 144757 865456. 2994.66 2.85 0.166094 0.144813 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0257135 0.0224352 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 19.34 vpr 63.22 MiB -1 -1 0.13 17620 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 24.6 MiB 1.71 833 13261 5618 7295 348 63.2 MiB 0.12 0.00 3.96008 -134.144 -3.96008 3.96008 0.65 0.000696444 0.000646684 0.0576148 0.0534019 46 2758 33 6.95648e+06 217135 828058. 2865.25 14.64 0.353175 0.306036 28066 200906 -1 2047 22 1722 2490 195693 41961 3.39476 3.39476 -130.85 -3.39476 0 0 1.01997e+06 3529.29 0.32 0.09 0.20 -1 -1 0.32 0.0306544 0.0268618 83 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 5.51 vpr 63.18 MiB -1 -1 0.13 17800 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 24.6 MiB 0.82 789 9158 3216 4675 1267 63.2 MiB 0.08 0.00 4.48063 -134.265 -4.48063 4.48063 0.65 0.000714952 0.000663649 0.0372043 0.0345929 46 2203 26 6.95648e+06 318465 828058. 2865.25 1.92 0.179265 0.155841 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0326451 0.028468 75 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.83 vpr 62.59 MiB -1 -1 0.13 17344 1 0.03 -1 -1 30324 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.1 MiB 1.17 470 8444 3456 4562 426 62.6 MiB 0.07 0.00 3.10275 -88.0296 -3.10275 3.10275 0.65 0.000567425 0.000528907 0.0325698 0.0303778 40 2005 31 6.95648e+06 188184 706193. 2443.58 1.97 0.149222 0.129702 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0241339 0.020942 55 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 5.94 vpr 63.19 MiB -1 -1 0.19 17816 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 24.6 MiB 1.02 736 13381 4767 6091 2523 63.2 MiB 0.11 0.00 3.0625 -113.087 -3.0625 3.0625 0.65 0.000722052 0.000670349 0.0579789 0.053856 46 2125 28 6.95648e+06 246087 828058. 2865.25 1.99 0.205529 0.179748 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.03129 0.027305 76 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 7.59 vpr 63.21 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30104 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 24.6 MiB 1.87 821 11698 3981 5913 1804 63.2 MiB 0.11 0.00 4.42651 -139.682 -4.42651 4.42651 0.69 0.000685107 0.000636399 0.0505079 0.0469561 38 2675 39 6.95648e+06 202660 678818. 2348.85 2.84 0.208158 0.181837 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.22 0.07 0.12 -1 -1 0.22 0.0288801 0.0253088 79 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.43 vpr 62.91 MiB -1 -1 0.17 17764 1 0.03 -1 -1 30224 -1 -1 9 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 24.2 MiB 0.80 568 11625 5013 6229 383 62.9 MiB 0.10 0.00 2.28966 -90.0891 -2.28966 2.28966 0.66 0.000653757 0.0006067 0.0517858 0.0480985 46 1756 36 6.95648e+06 130281 828058. 2865.25 2.78 0.19462 0.169858 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0248199 0.0217118 57 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.57 vpr 62.41 MiB -1 -1 0.17 17316 1 0.02 -1 -1 30112 -1 -1 9 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 23.8 MiB 0.31 438 9707 4039 5351 317 62.4 MiB 0.07 0.00 2.22846 -79.3536 -2.22846 2.22846 0.65 0.000492665 0.000461096 0.0346168 0.0322012 38 1481 49 6.95648e+06 130281 678818. 2348.85 1.56 0.151792 0.131363 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0198487 0.0173049 43 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 6.77 vpr 62.77 MiB -1 -1 0.19 17372 1 0.03 -1 -1 30440 -1 -1 12 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 24.3 MiB 2.03 900 8449 3439 4770 240 62.8 MiB 0.07 0.00 4.11557 -135.517 -4.11557 4.11557 0.67 0.000621364 0.000577667 0.0345888 0.032184 40 2181 21 6.95648e+06 173708 706193. 2443.58 1.97 0.159264 0.138641 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0265893 0.0232089 69 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.29 vpr 63.14 MiB -1 -1 0.16 17644 1 0.03 -1 -1 30408 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 24.5 MiB 0.62 691 13626 5075 6512 2039 63.1 MiB 0.11 0.00 3.69419 -120.83 -3.69419 3.69419 0.65 0.000695095 0.000645299 0.0542781 0.0503966 44 2266 33 6.95648e+06 289514 787024. 2723.27 2.84 0.209783 0.183661 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0349995 0.0304375 75 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 20.74 vpr 63.35 MiB -1 -1 0.17 17516 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 24.7 MiB 1.34 803 10868 4396 5912 560 63.3 MiB 0.10 0.00 4.7576 -138.082 -4.7576 4.7576 0.66 0.000727766 0.000675393 0.0499145 0.0463329 48 2894 42 6.95648e+06 202660 865456. 2994.66 16.37 0.391403 0.337617 28354 207349 -1 2151 23 1823 2679 262855 61699 4.41832 4.41832 -141.927 -4.41832 0 0 1.05005e+06 3633.38 0.31 0.10 0.17 -1 -1 0.31 0.0324325 0.0283793 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 4.69 vpr 62.40 MiB -1 -1 0.14 17500 1 0.03 -1 -1 30596 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 23.8 MiB 0.82 416 8539 3544 4471 524 62.4 MiB 0.06 0.00 2.23646 -66.7931 -2.23646 2.23646 0.65 0.000428041 0.000397757 0.0263601 0.0244784 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.25 0.127594 0.110486 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.20 0.04 0.13 -1 -1 0.20 0.0154227 0.0134854 44 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 6.29 vpr 62.88 MiB -1 -1 0.18 17164 1 0.03 -1 -1 30436 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 24.4 MiB 0.68 670 9543 3600 4533 1410 62.9 MiB 0.08 0.00 4.68425 -117.235 -4.68425 4.68425 0.67 0.000620444 0.0005767 0.037287 0.0346967 44 2456 40 6.95648e+06 217135 787024. 2723.27 2.80 0.175548 0.152616 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0303391 0.0263894 66 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.62 vpr 62.31 MiB -1 -1 0.15 16928 1 0.02 -1 -1 30016 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.7 MiB 0.28 360 10055 3887 4514 1654 62.3 MiB 0.07 0.00 2.15326 -68.8392 -2.15326 2.15326 0.65 0.000424398 0.000394018 0.0301036 0.0279628 38 1061 21 6.95648e+06 115805 678818. 2348.85 1.58 0.116207 0.101122 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.22 0.04 0.16 -1 -1 0.22 0.0159718 0.013987 42 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 9.54 vpr 62.91 MiB -1 -1 0.16 17604 1 0.03 -1 -1 30024 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 24.4 MiB 0.84 746 14106 6043 7637 426 62.9 MiB 0.06 0.00 4.49111 -123.956 -4.49111 4.49111 0.69 0.000283536 0.000259771 0.0256876 0.0235959 38 2858 40 6.95648e+06 217135 678818. 2348.85 5.94 0.161709 0.139823 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0257897 0.0225571 68 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 5.50 vpr 62.93 MiB -1 -1 0.19 17120 1 0.03 -1 -1 30400 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.5 MiB 0.48 675 10873 4420 6034 419 62.9 MiB 0.09 0.00 2.9573 -100.116 -2.9573 2.9573 0.69 0.000636281 0.000590745 0.0409086 0.0379791 46 2093 50 6.95648e+06 303989 828058. 2865.25 2.14 0.191378 0.166343 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0295683 0.0257386 74 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 5.96 vpr 63.03 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30256 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 24.5 MiB 0.74 795 15383 6700 8206 477 63.0 MiB 0.13 0.00 4.43549 -130.994 -4.43549 4.43549 0.70 0.000680516 0.000632505 0.0599764 0.0556889 48 2092 29 6.95648e+06 275038 865456. 2994.66 2.26 0.200019 0.175252 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0292952 0.0255059 72 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.29 vpr 62.68 MiB -1 -1 0.18 17524 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.1 MiB 0.84 836 12164 3915 6903 1346 62.7 MiB 0.10 0.00 3.08875 -104.395 -3.08875 3.08875 0.65 0.000613621 0.000571219 0.0498631 0.0463952 38 2054 21 6.95648e+06 144757 678818. 2348.85 1.60 0.169124 0.148225 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.31 0.06 0.17 -1 -1 0.31 0.0204742 0.0181331 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 4.57 vpr 62.70 MiB -1 -1 0.12 17296 1 0.03 -1 -1 30128 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.1 MiB 0.23 486 10916 4488 5855 573 62.7 MiB 0.08 0.00 3.37953 -96.5612 -3.37953 3.37953 0.65 0.0005694 0.000529416 0.0382305 0.0355411 42 1738 31 6.95648e+06 260562 744469. 2576.02 1.59 0.156601 0.13607 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.25 0.06 0.16 -1 -1 0.25 0.0230209 0.0201654 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.40 vpr 62.75 MiB -1 -1 0.18 17400 1 0.02 -1 -1 30148 -1 -1 16 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.2 MiB 0.45 447 10796 4457 5651 688 62.7 MiB 0.08 0.00 2.9532 -88.5671 -2.9532 2.9532 0.65 0.000560787 0.000521631 0.0401211 0.0373657 44 1895 36 6.95648e+06 231611 787024. 2723.27 2.22 0.158346 0.137661 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.25 0.06 0.13 -1 -1 0.25 0.022521 0.0196317 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 11.61 vpr 62.71 MiB -1 -1 0.17 17232 1 0.02 -1 -1 30340 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.2 MiB 0.42 490 8754 2672 4372 1710 62.7 MiB 0.07 0.00 3.37459 -106.603 -3.37459 3.37459 0.66 0.000575354 0.000535734 0.0344164 0.0320483 46 1609 38 6.95648e+06 144757 828058. 2865.25 8.60 0.306364 0.262879 28066 200906 -1 1166 19 1064 1493 99508 25826 3.01962 3.01962 -108.184 -3.01962 0 0 1.01997e+06 3529.29 0.24 0.03 0.11 -1 -1 0.24 0.0125197 0.0111523 58 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.72 vpr 62.66 MiB -1 -1 0.11 17488 1 0.03 -1 -1 30216 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.1 MiB 0.39 514 10050 3328 4861 1861 62.7 MiB 0.08 0.00 3.16614 -99.0057 -3.16614 3.16614 0.66 0.000592319 0.000549061 0.0354803 0.032883 44 1932 39 6.95648e+06 275038 787024. 2723.27 2.55 0.166952 0.144845 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.25 0.09 0.18 -1 -1 0.25 0.0266682 0.0231869 61 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.83 vpr 62.77 MiB -1 -1 0.18 17548 1 0.03 -1 -1 30404 -1 -1 12 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 24.1 MiB 1.12 761 12537 5784 6209 544 62.8 MiB 0.10 0.00 2.98425 -104.866 -2.98425 2.98425 0.67 0.000600188 0.000557402 0.0516219 0.047971 40 1951 35 6.95648e+06 173708 706193. 2443.58 2.89 0.183383 0.160001 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0231761 0.020268 61 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 6.58 vpr 63.27 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 24.6 MiB 0.68 827 14593 4666 7411 2516 63.3 MiB 0.13 0.00 4.22723 -122.469 -4.22723 4.22723 0.67 0.000735051 0.000682715 0.0604865 0.0561151 40 2898 29 6.95648e+06 303989 706193. 2443.58 3.01 0.215817 0.189168 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0333062 0.0291427 84 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.34 vpr 63.13 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30356 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 24.5 MiB 1.05 745 13738 4997 6870 1871 63.1 MiB 0.12 0.00 3.2962 -117.206 -3.2962 3.2962 0.66 0.000756935 0.000700374 0.0561521 0.0519884 40 2441 27 6.95648e+06 347416 706193. 2443.58 2.42 0.207023 0.181084 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0334099 0.0293047 82 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 13.07 vpr 62.88 MiB -1 -1 0.18 17392 1 0.03 -1 -1 30108 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 24.2 MiB 1.71 860 8754 2885 4850 1019 62.9 MiB 0.08 0.00 4.04047 -132.719 -4.04047 4.04047 0.69 0.000607923 0.000566227 0.0361842 0.0337216 40 2120 31 6.95648e+06 159232 706193. 2443.58 8.54 0.286697 0.246404 26914 176310 -1 2014 22 1310 1843 197131 38779 3.56322 3.56322 -132.421 -3.56322 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0257061 0.0224192 63 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 6.82 vpr 63.00 MiB -1 -1 0.13 17748 1 0.03 -1 -1 30380 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 24.5 MiB 0.79 747 9036 3143 4486 1407 63.0 MiB 0.09 0.00 3.76434 -122.812 -3.76434 3.76434 0.66 0.000717059 0.000665703 0.0412693 0.0383672 38 2983 41 6.95648e+06 231611 678818. 2348.85 3.29 0.207537 0.18044 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.03015 0.0263963 76 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.27 vpr 63.26 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30344 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 24.7 MiB 2.08 943 12585 5266 6878 441 63.3 MiB 0.12 0.00 5.54066 -172.627 -5.54066 5.54066 0.65 0.000743037 0.000690219 0.0575184 0.053443 56 2573 26 6.95648e+06 231611 973134. 3367.25 2.13 0.203599 0.176771 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.29 0.11 0.20 -1 -1 0.29 0.0327672 0.0286803 97 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 7.32 vpr 63.22 MiB -1 -1 0.20 17708 1 0.03 -1 -1 30552 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 24.8 MiB 2.53 938 15120 6700 8021 399 63.2 MiB 0.14 0.00 4.47954 -148.558 -4.47954 4.47954 0.61 0.000746312 0.000693405 0.0693479 0.064426 40 2977 25 6.95648e+06 231611 706193. 2443.58 1.86 0.222669 0.195583 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.23 0.09 0.17 -1 -1 0.23 0.0298102 0.0260686 88 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.31 vpr 62.98 MiB -1 -1 0.10 17796 1 0.03 -1 -1 30548 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 24.4 MiB 1.21 806 12733 4192 6306 2235 63.0 MiB 0.11 0.00 4.14583 -131.471 -4.14583 4.14583 0.65 0.000700857 0.000651395 0.0506607 0.0471394 44 2580 41 6.95648e+06 318465 787024. 2723.27 2.27 0.209928 0.183245 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0281384 0.0246822 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.55 vpr 62.86 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30428 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 24.4 MiB 1.19 717 8212 2161 5077 974 62.9 MiB 0.08 0.00 4.19005 -113.386 -4.19005 4.19005 0.65 0.000626146 0.000582854 0.0330292 0.0307453 46 1942 38 6.95648e+06 202660 828058. 2865.25 2.54 0.169388 0.146875 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.25 0.06 0.17 -1 -1 0.25 0.0230741 0.020245 71 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 7.36 vpr 63.71 MiB -1 -1 0.21 18076 1 0.03 -1 -1 30352 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 24.9 MiB 1.57 969 15017 6294 8197 526 63.7 MiB 0.15 0.00 4.79262 -158.033 -4.79262 4.79262 0.66 0.000870034 0.000808023 0.0722496 0.0670813 44 3004 31 6.95648e+06 318465 787024. 2723.27 2.80 0.256534 0.224373 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0369729 0.0322359 93 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.14 vpr 62.71 MiB -1 -1 0.18 17508 1 0.03 -1 -1 30148 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.2 MiB 0.72 451 10702 3732 4796 2174 62.7 MiB 0.08 0.00 3.25706 -97.1743 -3.25706 3.25706 0.65 0.000564676 0.000525261 0.0384554 0.0357761 42 1868 35 6.95648e+06 217135 744469. 2576.02 1.58 0.160913 0.139818 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.24 0.08 0.15 -1 -1 0.24 0.0357774 0.0309543 56 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.04 vpr 63.25 MiB -1 -1 0.19 17668 1 0.03 -1 -1 30180 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 24.6 MiB 1.24 1043 13358 5192 6540 1626 63.2 MiB 0.13 0.00 4.83562 -153.036 -4.83562 4.83562 0.65 0.000684874 0.000636808 0.0583439 0.0542992 40 2908 41 6.95648e+06 217135 706193. 2443.58 3.09 0.222162 0.192466 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.22 0.05 0.10 -1 -1 0.22 0.015261 0.0136813 84 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 17.07 vpr 63.07 MiB -1 -1 0.11 17796 1 0.03 -1 -1 30444 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 24.5 MiB 1.04 832 15481 6850 8276 355 63.1 MiB 0.13 0.00 3.22585 -113.908 -3.22585 3.22585 0.66 0.000706404 0.000646665 0.0640674 0.0594879 40 2681 28 6.95648e+06 246087 706193. 2443.58 13.24 0.3548 0.307335 26914 176310 -1 2155 23 1599 2614 231061 49102 3.24022 3.24022 -125.665 -3.24022 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0309639 0.0270147 73 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 6.13 vpr 63.05 MiB -1 -1 0.15 17132 1 0.03 -1 -1 30084 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 0.92 692 9712 3251 4487 1974 63.0 MiB 0.08 0.00 4.55274 -121.613 -4.55274 4.55274 0.68 0.000628705 0.000584448 0.0381845 0.035547 44 2409 26 6.95648e+06 231611 787024. 2723.27 2.36 0.170932 0.149068 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.24 0.07 0.19 -1 -1 0.24 0.0291258 0.0253996 68 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 14.98 vpr 63.12 MiB -1 -1 0.19 17516 1 0.04 -1 -1 30332 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 24.6 MiB 2.51 796 11532 3820 5366 2346 63.1 MiB 0.11 0.00 4.43423 -134.57 -4.43423 4.43423 0.65 0.000703427 0.000653831 0.0514793 0.0478927 40 2553 40 6.95648e+06 202660 706193. 2443.58 9.63 0.360223 0.311113 26914 176310 -1 2106 22 1511 2049 167648 37819 3.63736 3.63736 -132.097 -3.63736 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0303123 0.0265025 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 8.73 vpr 63.13 MiB -1 -1 0.11 17828 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 24.6 MiB 1.64 763 10406 4042 5595 769 63.1 MiB 0.10 0.00 3.235 -115.411 -3.235 3.235 0.65 0.000715813 0.000664492 0.0453468 0.0421604 38 2855 46 6.95648e+06 246087 678818. 2348.85 4.40 0.222824 0.194096 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.22 0.08 0.11 -1 -1 0.22 0.0288342 0.0252709 75 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 6.15 vpr 63.35 MiB -1 -1 0.14 17644 1 0.03 -1 -1 30344 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 24.7 MiB 0.91 832 13758 4740 6643 2375 63.3 MiB 0.13 0.00 4.17869 -135.166 -4.17869 4.17869 0.66 0.0010225 0.000940379 0.0548246 0.0508591 46 2399 24 6.95648e+06 376368 828058. 2865.25 2.32 0.204425 0.178817 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0339334 0.0296052 83 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 5.65 vpr 63.08 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30200 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 24.6 MiB 0.97 704 11804 4117 5540 2147 63.1 MiB 0.09 0.00 4.32723 -118.436 -4.32723 4.32723 0.68 0.0006416 0.000595601 0.0426413 0.0396 42 2228 31 6.95648e+06 318465 744469. 2576.02 1.88 0.177031 0.154127 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.23 0.08 0.16 -1 -1 0.23 0.0248025 0.0217213 69 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.75 vpr 62.97 MiB -1 -1 0.13 17624 1 0.03 -1 -1 30388 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.23 822 10020 3444 5308 1268 63.0 MiB 0.10 0.00 4.15778 -128.101 -4.15778 4.15778 0.66 0.000658658 0.000612123 0.0429054 0.0399146 40 2642 40 6.95648e+06 188184 706193. 2443.58 2.71 0.182267 0.159134 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.03099 0.0270017 79 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 8.46 vpr 63.33 MiB -1 -1 0.20 17868 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 24.6 MiB 1.35 847 12030 5014 6584 432 63.3 MiB 0.12 0.00 4.57287 -144.308 -4.57287 4.57287 0.65 0.000724907 0.000672986 0.0552937 0.0513688 46 3239 34 6.95648e+06 217135 828058. 2865.25 4.20 0.216353 0.18926 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0303822 0.0265866 85 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 8.14 vpr 63.05 MiB -1 -1 0.13 17644 1 0.03 -1 -1 30284 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 24.5 MiB 2.18 757 13443 5119 6395 1929 63.0 MiB 0.12 0.00 4.08826 -130.07 -4.08826 4.08826 0.66 0.000739571 0.000686709 0.0639239 0.0593671 50 2778 50 6.95648e+06 188184 902133. 3121.57 3.01 0.24258 0.212059 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.27 0.12 0.18 -1 -1 0.27 0.0410783 0.0356638 76 77 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 10.98 vpr 62.72 MiB -1 -1 0.17 17604 1 0.04 -1 -1 30120 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.2 MiB 0.25 503 12542 4062 6070 2410 62.7 MiB 0.09 0.00 3.14908 -92.6386 -3.14908 3.14908 0.66 0.000559735 0.00052012 0.041585 0.0386641 44 1782 30 6.95648e+06 260562 787024. 2723.27 7.90 0.264169 0.22756 27778 195446 -1 1231 37 1182 1770 242494 107698 2.83957 2.83957 -96.0143 -2.83957 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0366439 0.0316026 57 23 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 6.27 vpr 63.11 MiB -1 -1 0.16 17900 1 0.03 -1 -1 30528 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 1.29 674 9676 3990 5312 374 63.1 MiB 0.09 0.00 3.76865 -134.987 -3.76865 3.76865 0.66 0.000673631 0.00062522 0.0433643 0.0402968 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 1.97 0.175095 0.152661 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.36 0.09 0.22 -1 -1 0.36 0.0316685 0.027598 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.05 vpr 63.22 MiB -1 -1 0.20 17856 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 24.8 MiB 1.72 1197 6788 1593 4785 410 63.2 MiB 0.08 0.00 4.81732 -154.887 -4.81732 4.81732 0.71 0.00076689 0.000712869 0.0333847 0.0310947 56 2745 25 6.95648e+06 231611 973134. 3367.25 2.27 0.183875 0.159976 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.29 0.10 0.21 -1 -1 0.29 0.0312555 0.0274626 97 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.13 vpr 63.26 MiB -1 -1 0.14 17852 1 0.03 -1 -1 30384 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 24.7 MiB 0.93 755 11806 4947 6514 345 63.3 MiB 0.11 0.00 4.55181 -144.133 -4.55181 4.55181 0.65 0.000691022 0.000642074 0.0492244 0.0457633 46 2302 50 6.95648e+06 246087 828058. 2865.25 2.40 0.213801 0.18654 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.25 0.08 0.18 -1 -1 0.25 0.0297459 0.0260238 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.81 vpr 62.78 MiB -1 -1 0.15 17512 1 0.03 -1 -1 30316 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 24.2 MiB 0.48 536 11296 4661 6055 580 62.8 MiB 0.09 0.00 2.9714 -97.779 -2.9714 2.9714 0.68 0.000591172 0.000548198 0.0395504 0.0367301 46 1687 48 6.95648e+06 289514 828058. 2865.25 2.48 0.180385 0.156092 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0221161 0.0194858 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 9.34 vpr 63.40 MiB -1 -1 0.20 18076 1 0.03 -1 -1 30332 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 24.9 MiB 1.74 1154 14782 4940 8104 1738 63.4 MiB 0.16 0.00 6.12641 -181.225 -6.12641 6.12641 0.65 0.000829629 0.000771076 0.0762296 0.0708945 46 2972 48 6.95648e+06 217135 828058. 2865.25 4.29 0.281434 0.246625 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.37 0.10 0.20 -1 -1 0.37 0.0346116 0.0306345 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.23 vpr 63.09 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.23 717 11799 3733 5850 2216 63.1 MiB 0.10 0.00 4.62806 -129.887 -4.62806 4.62806 0.70 0.000685892 0.000636192 0.0448714 0.041569 40 2137 23 6.95648e+06 332941 706193. 2443.58 2.02 0.184764 0.161162 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.23 0.09 0.19 -1 -1 0.23 0.0306914 0.026915 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 4.68 vpr 62.50 MiB -1 -1 0.17 17100 1 0.03 -1 -1 30516 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.1 MiB 0.25 514 10509 3980 5034 1495 62.5 MiB 0.08 0.00 2.96656 -92.2738 -2.96656 2.96656 0.64 0.000534005 0.00049723 0.0362112 0.0337229 44 1513 24 6.95648e+06 188184 787024. 2723.27 1.63 0.143345 0.125004 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.27 0.05 0.19 -1 -1 0.27 0.0184391 0.0161947 51 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 10.02 vpr 63.14 MiB -1 -1 0.12 17840 1 0.03 -1 -1 30224 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 24.5 MiB 0.52 1076 14908 4738 8798 1372 63.1 MiB 0.13 0.00 4.96917 -138.118 -4.96917 4.96917 0.65 0.000719054 0.000667867 0.0571509 0.0531079 38 3145 48 6.95648e+06 347416 678818. 2348.85 6.63 0.23477 0.205533 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0295138 0.0257964 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 5.28 vpr 62.68 MiB -1 -1 0.17 17132 1 0.03 -1 -1 30236 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.2 MiB 0.91 492 11034 4564 6063 407 62.7 MiB 0.08 0.00 2.9972 -99.2597 -2.9972 2.9972 0.65 0.000554559 0.000515541 0.0387657 0.0360448 40 1961 39 6.95648e+06 202660 706193. 2443.58 1.68 0.162261 0.141005 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.23 0.08 0.10 -1 -1 0.23 0.0244759 0.0213203 57 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 6.43 vpr 62.73 MiB -1 -1 0.19 17380 1 0.03 -1 -1 30264 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 24.1 MiB 0.88 565 8867 3613 4967 287 62.7 MiB 0.08 0.00 3.45473 -106.167 -3.45473 3.45473 0.65 0.000590649 0.000548914 0.0331125 0.0308357 38 1930 30 6.95648e+06 246087 678818. 2348.85 2.79 0.158073 0.137157 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0228396 0.0198974 60 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 6.83 vpr 63.21 MiB -1 -1 0.14 17776 1 0.03 -1 -1 30276 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 24.6 MiB 1.41 851 11487 4862 6149 476 63.2 MiB 0.11 0.00 3.95502 -124.066 -3.95502 3.95502 0.65 0.000708392 0.000656479 0.0525957 0.0487832 44 2861 40 6.95648e+06 231611 787024. 2723.27 2.58 0.209221 0.18252 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0301075 0.0262749 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 5.99 vpr 63.15 MiB -1 -1 0.10 17852 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 24.6 MiB 1.19 719 14528 6712 7344 472 63.1 MiB 0.12 0.00 4.55468 -132.882 -4.55468 4.55468 0.65 0.00070734 0.000656694 0.0624181 0.0579504 44 2547 35 6.95648e+06 231611 787024. 2723.27 1.97 0.214046 0.187367 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0363648 0.0317619 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.80 vpr 63.09 MiB -1 -1 0.18 17748 1 0.03 -1 -1 30124 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 24.5 MiB 1.76 751 11200 4198 5153 1849 63.1 MiB 0.11 0.00 4.43749 -136.856 -4.43749 4.43749 0.67 0.000709798 0.000659969 0.0506409 0.0471251 46 2439 25 6.95648e+06 202660 828058. 2865.25 2.20 0.193066 0.168881 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.25 0.08 0.13 -1 -1 0.25 0.0304493 0.0266989 73 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 7.70 vpr 62.82 MiB -1 -1 0.11 17428 1 0.03 -1 -1 30336 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 24.2 MiB 2.92 640 8909 3664 5023 222 62.8 MiB 0.08 0.00 4.07418 -127.444 -4.07418 4.07418 0.65 0.000592583 0.000551219 0.0362871 0.0337584 40 2228 26 6.95648e+06 144757 706193. 2443.58 2.15 0.155398 0.135064 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0238783 0.0208694 61 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 6.59 vpr 63.01 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30376 -1 -1 12 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 24.5 MiB 1.90 607 11925 5002 6435 488 63.0 MiB 0.10 0.00 3.79972 -120.636 -3.79972 3.79972 0.67 0.00063889 0.0005937 0.0507212 0.0471509 48 1984 29 6.95648e+06 173708 865456. 2994.66 1.85 0.183276 0.160035 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0276389 0.0240801 68 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.46 vpr 62.99 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30376 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 24.5 MiB 0.77 673 11064 3726 5225 2113 63.0 MiB 0.10 0.00 3.0162 -94.6102 -3.0162 3.0162 0.66 0.000659684 0.000612073 0.0440426 0.0408688 38 2318 31 6.95648e+06 318465 678818. 2348.85 2.89 0.183979 0.160175 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.028405 0.0247519 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.27 vpr 62.78 MiB -1 -1 0.18 17428 1 0.03 -1 -1 30348 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 24.4 MiB 0.45 661 10813 4387 5735 691 62.8 MiB 0.08 0.00 3.6526 -99.519 -3.6526 3.6526 0.65 0.000587334 0.000545207 0.0350415 0.0325801 42 1918 35 6.95648e+06 405319 744469. 2576.02 2.10 0.16241 0.14078 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.23 0.07 0.17 -1 -1 0.23 0.0225936 0.0197048 72 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 5.73 vpr 63.25 MiB -1 -1 0.19 17712 1 0.03 -1 -1 30348 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64764 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 24.6 MiB 0.80 539 10769 4210 5259 1300 63.2 MiB 0.10 0.00 3.44073 -108.225 -3.44073 3.44073 0.66 0.000637297 0.00059244 0.0468682 0.0436157 48 1688 34 6.95648e+06 173708 865456. 2994.66 2.03 0.185596 0.159988 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.27 0.07 0.17 -1 -1 0.27 0.0255828 0.0223288 60 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.67 vpr 62.86 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30272 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 24.3 MiB 1.35 645 12715 5333 6940 442 62.9 MiB 0.06 0.00 3.42769 -121.093 -3.42769 3.42769 0.67 0.000296782 0.00027199 0.0256023 0.023568 50 2241 50 6.95648e+06 159232 902133. 3121.57 2.54 0.180161 0.155158 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.26 0.07 0.15 -1 -1 0.26 0.0256567 0.0224833 72 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 7.43 vpr 62.85 MiB -1 -1 0.16 17284 1 0.03 -1 -1 30372 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.3 MiB 0.40 742 11799 3162 6813 1824 62.9 MiB 0.10 0.00 4.51778 -120.862 -4.51778 4.51778 0.65 0.000633674 0.000587345 0.0411768 0.0382653 38 2757 47 6.95648e+06 347416 678818. 2348.85 4.27 0.191682 0.166826 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.22 0.08 0.16 -1 -1 0.22 0.0273601 0.0238882 74 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.46 vpr 63.24 MiB -1 -1 0.15 17664 1 0.03 -1 -1 30336 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 24.6 MiB 1.59 848 13606 5964 7217 425 63.2 MiB 0.13 0.00 4.62557 -150.036 -4.62557 4.62557 0.65 0.000706143 0.000655334 0.0615269 0.0572063 48 2886 26 6.95648e+06 188184 865456. 2994.66 3.00 0.206053 0.180711 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0296261 0.0259707 82 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.50 vpr 63.40 MiB -1 -1 0.17 17900 1 0.03 -1 -1 30368 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 24.7 MiB 1.42 797 15688 5451 7649 2588 63.4 MiB 0.14 0.00 4.33979 -134.933 -4.33979 4.33979 0.70 0.000735847 0.000681569 0.0624982 0.057941 46 2516 45 6.95648e+06 347416 828058. 2865.25 4.14 0.235154 0.20534 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0307788 0.026884 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 6.34 vpr 63.25 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 24.6 MiB 0.79 866 12951 5370 7312 269 63.3 MiB 0.12 0.00 4.06852 -135.722 -4.06852 4.06852 0.65 0.000760681 0.000706479 0.0538713 0.0500471 46 2675 25 6.95648e+06 332941 828058. 2865.25 2.65 0.205194 0.179475 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.28 0.09 0.17 -1 -1 0.28 0.0339317 0.0296036 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.09 vpr 62.68 MiB -1 -1 0.12 17368 1 0.03 -1 -1 30192 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 24.1 MiB 0.71 535 10769 4485 5866 418 62.7 MiB 0.09 0.00 3.76076 -107.124 -3.76076 3.76076 0.65 0.000586035 0.000545107 0.0425411 0.0396 40 1903 31 6.95648e+06 173708 706193. 2443.58 1.73 0.165224 0.143579 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0224319 0.0195958 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.22 vpr 63.08 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30420 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 24.5 MiB 0.98 646 9676 4013 5115 548 63.1 MiB 0.09 0.00 4.36203 -132.758 -4.36203 4.36203 0.66 0.000728372 0.000676738 0.0469684 0.0436945 48 2052 23 6.95648e+06 202660 865456. 2994.66 2.09 0.193998 0.169519 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.27 0.08 0.17 -1 -1 0.27 0.0312258 0.0272383 76 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 19.17 vpr 63.10 MiB -1 -1 0.14 17644 1 0.03 -1 -1 30264 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 24.5 MiB 1.47 811 10204 3614 5065 1525 63.1 MiB 0.10 0.00 4.885 -145.205 -4.885 4.885 0.65 0.000690716 0.000641303 0.0449295 0.0418004 48 2507 26 6.95648e+06 202660 865456. 2994.66 14.74 0.329033 0.284209 28354 207349 -1 2034 21 1699 2745 250883 55251 4.29192 4.29192 -147.488 -4.29192 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0289523 0.0253829 80 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 17.51 vpr 63.09 MiB -1 -1 0.16 17772 1 0.03 -1 -1 30360 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 24.5 MiB 1.89 840 10509 4398 5789 322 63.1 MiB 0.10 0.00 5.54805 -153.523 -5.54805 5.54805 0.65 0.000681341 0.000632994 0.0465425 0.0432883 40 2695 24 6.95648e+06 202660 706193. 2443.58 12.88 0.327768 0.283394 26914 176310 -1 2048 21 1310 1986 181257 39768 4.92101 4.92101 -156.505 -4.92101 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0286243 0.02507 79 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 6.86 vpr 63.20 MiB -1 -1 0.12 17692 1 0.03 -1 -1 30380 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 24.6 MiB 1.55 981 8543 2209 4916 1418 63.2 MiB 0.05 0.00 4.87546 -153.661 -4.87546 4.87546 0.81 0.000724219 0.000672815 0.0189053 0.0174926 38 2411 22 6.95648e+06 303989 678818. 2348.85 2.46 0.1613 0.139156 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.026511 0.0232314 74 83 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 6.07 vpr 63.10 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30236 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 24.6 MiB 1.05 757 8390 3202 4298 890 63.1 MiB 0.08 0.00 4.41913 -136.437 -4.41913 4.41913 0.73 0.000568669 0.000522016 0.0318708 0.0292868 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.07 0.181088 0.156792 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0308823 0.0269341 72 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 12.76 vpr 63.16 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30328 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 24.6 MiB 1.13 676 7412 2307 3688 1417 63.2 MiB 0.07 0.00 4.03938 -124.354 -4.03938 4.03938 0.65 0.000722134 0.00067069 0.0352608 0.0327771 40 1915 29 6.95648e+06 231611 706193. 2443.58 8.69 0.328935 0.282639 26914 176310 -1 1850 28 1578 2394 351685 123617 3.69672 3.69672 -129.056 -3.69672 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0385674 0.0334623 73 85 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.08 vpr 62.52 MiB -1 -1 0.13 17116 1 0.03 -1 -1 30416 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 24.1 MiB 0.78 565 8134 3323 4613 198 62.5 MiB 0.07 0.00 3.56099 -106.975 -3.56099 3.56099 0.65 0.000553924 0.000515348 0.0312464 0.0290873 38 2071 30 6.95648e+06 144757 678818. 2348.85 2.64 0.147629 0.128291 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0222787 0.0194679 53 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 7.90 vpr 63.45 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30232 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 24.8 MiB 3.01 780 14679 6171 7995 513 63.4 MiB 0.12 0.00 4.81946 -134.729 -4.81946 4.81946 0.66 0.000732851 0.000680207 0.0590425 0.0548395 52 2232 23 6.95648e+06 332941 926341. 3205.33 1.97 0.203937 0.17874 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.27 0.08 0.17 -1 -1 0.27 0.0320954 0.0280104 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.13 vpr 63.20 MiB -1 -1 0.20 17692 1 0.03 -1 -1 30432 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 24.6 MiB 0.69 707 10672 3433 5510 1729 63.2 MiB 0.11 0.00 4.24958 -138.057 -4.24958 4.24958 0.65 0.000765754 0.000711032 0.0529107 0.049155 46 2101 39 6.95648e+06 188184 828058. 2865.25 2.47 0.220684 0.192476 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.25 0.08 0.20 -1 -1 0.25 0.0315986 0.027727 78 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 12.38 vpr 62.79 MiB -1 -1 0.16 17528 1 0.03 -1 -1 30168 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 24.1 MiB 1.38 678 11925 5137 6457 331 62.8 MiB 0.10 0.00 4.05037 -122.042 -4.05037 4.05037 0.65 0.000575891 0.000534537 0.0456379 0.0424081 44 1982 25 6.95648e+06 159232 787024. 2723.27 8.22 0.272725 0.235216 27778 195446 -1 1574 22 1167 1476 132878 28622 3.52322 3.52322 -118.138 -3.52322 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.024899 0.0217358 68 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 5.54 vpr 62.63 MiB -1 -1 0.16 17368 1 0.03 -1 -1 30344 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.1 MiB 1.01 478 11916 5026 6437 453 62.6 MiB 0.09 0.00 3.32523 -101.355 -3.32523 3.32523 0.65 0.000551008 0.000512249 0.0432004 0.0401767 44 1783 23 6.95648e+06 188184 787024. 2723.27 1.73 0.152441 0.133158 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0265155 0.0230968 57 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.47 vpr 63.19 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30440 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 24.6 MiB 1.48 850 12416 5241 6727 448 63.2 MiB 0.13 0.00 4.62707 -149.564 -4.62707 4.62707 0.67 0.00125206 0.0011631 0.0638828 0.0594109 46 2722 26 6.95648e+06 217135 828058. 2865.25 3.05 0.206195 0.181651 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0293192 0.0257009 85 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 7.59 vpr 63.18 MiB -1 -1 0.21 17772 1 0.03 -1 -1 30296 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 24.6 MiB 1.04 1128 10536 3281 5855 1400 63.2 MiB 0.10 0.00 4.81844 -154.124 -4.81844 4.81844 0.65 0.000702643 0.000652495 0.0473039 0.0439684 38 3024 27 6.95648e+06 202660 678818. 2348.85 3.66 0.193784 0.169344 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.22 0.13 0.14 -1 -1 0.22 0.0369168 0.0321498 82 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.10 vpr 63.18 MiB -1 -1 0.18 17532 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.6 MiB 0.43 843 11456 4360 5763 1333 63.2 MiB 0.11 0.00 4.93982 -142.75 -4.93982 4.93982 0.65 0.000715971 0.000665168 0.049617 0.0461452 46 2871 42 6.95648e+06 246087 828058. 2865.25 3.76 0.215024 0.187562 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0324624 0.0284236 83 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.26 vpr 63.21 MiB -1 -1 0.19 17876 1 0.03 -1 -1 30136 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 24.7 MiB 0.84 630 11063 3050 5652 2361 63.2 MiB 0.09 0.00 3.41127 -97.5363 -3.41127 3.41127 0.65 0.000643694 0.000598549 0.0419032 0.038976 40 1835 26 6.95648e+06 303989 706193. 2443.58 1.71 0.170408 0.148299 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0275467 0.0239991 69 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.75 vpr 62.54 MiB -1 -1 0.17 17524 1 0.03 -1 -1 30516 -1 -1 14 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 24.1 MiB 0.45 487 8585 3718 4335 532 62.5 MiB 0.07 0.00 2.94405 -89.6154 -2.94405 2.94405 0.65 0.000554434 0.000515934 0.0329656 0.0306859 38 1494 30 6.95648e+06 202660 678818. 2348.85 1.70 0.147471 0.128031 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.22 0.06 0.10 -1 -1 0.22 0.0235636 0.0204899 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 6.42 vpr 63.45 MiB -1 -1 0.22 17772 1 0.03 -1 -1 30288 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 24.8 MiB 1.15 1018 15904 6884 8410 610 63.4 MiB 0.16 0.00 3.84665 -134.608 -3.84665 3.84665 0.65 0.000810015 0.000751803 0.0777036 0.072194 50 3513 31 6.95648e+06 231611 902133. 3121.57 2.27 0.246988 0.216983 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.27 0.11 0.18 -1 -1 0.27 0.0364794 0.0318759 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 10.91 vpr 63.16 MiB -1 -1 0.20 17620 1 0.03 -1 -1 30240 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 24.6 MiB 4.38 805 13026 5515 7018 493 63.2 MiB 0.12 0.00 5.43776 -152.039 -5.43776 5.43776 0.65 0.000713941 0.000663266 0.0590357 0.0548631 46 2740 36 6.95648e+06 217135 828058. 2865.25 3.64 0.220013 0.19267 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.26 0.10 0.16 -1 -1 0.26 0.0292825 0.0259551 82 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 8.54 vpr 63.20 MiB -1 -1 0.15 17648 1 0.03 -1 -1 30336 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 24.5 MiB 3.19 636 10029 4132 5585 312 63.2 MiB 0.09 0.00 3.67834 -124.027 -3.67834 3.67834 0.66 0.000660582 0.000613163 0.0449093 0.0417532 48 2185 28 6.95648e+06 159232 865456. 2994.66 2.49 0.181872 0.15845 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0254882 0.0223149 70 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.23 vpr 63.09 MiB -1 -1 0.14 17800 1 0.03 -1 -1 30420 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 24.5 MiB 0.32 731 15206 6549 8090 567 63.1 MiB 0.12 0.00 4.25273 -121.678 -4.25273 4.25273 0.65 0.000668671 0.000620532 0.0563166 0.0523071 48 2298 32 6.95648e+06 318465 865456. 2994.66 2.12 0.197129 0.172651 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0288928 0.0252277 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.29 vpr 63.19 MiB -1 -1 0.09 17792 1 0.03 -1 -1 30140 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 24.6 MiB 0.85 751 14323 4212 7223 2888 63.2 MiB 0.12 0.00 4.42633 -128.985 -4.42633 4.42633 0.66 0.000730882 0.000678487 0.0559876 0.0519445 40 2622 38 6.95648e+06 361892 706193. 2443.58 2.68 0.222632 0.194459 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0303727 0.0265464 83 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.80 vpr 63.06 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30536 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 24.6 MiB 0.96 713 11034 4424 5642 968 63.1 MiB 0.10 0.00 3.35027 -102.373 -3.35027 3.35027 0.66 0.000659869 0.000608738 0.0459779 0.0427236 38 2733 50 6.95648e+06 231611 678818. 2348.85 3.99 0.207473 0.180386 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0295839 0.0258069 68 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 7.74 vpr 63.23 MiB -1 -1 0.13 17812 1 0.04 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 24.6 MiB 1.39 907 11200 3286 6600 1314 63.2 MiB 0.11 0.00 4.64467 -151.435 -4.64467 4.64467 0.81 0.000708323 0.000657645 0.0504692 0.0469352 48 2706 42 6.95648e+06 202660 865456. 2994.66 3.30 0.21182 0.184973 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.28 0.10 0.18 -1 -1 0.28 0.0313796 0.0276375 88 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 15.87 vpr 63.16 MiB -1 -1 0.17 17664 1 0.03 -1 -1 30020 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 24.5 MiB 0.93 748 12542 5225 6709 608 63.2 MiB 0.12 0.00 4.47033 -145.191 -4.47033 4.47033 0.68 0.000753998 0.000699721 0.0562892 0.052328 48 2531 41 6.95648e+06 260562 865456. 2994.66 11.78 0.417632 0.35997 28354 207349 -1 1938 24 1584 2112 216788 50249 4.07261 4.07261 -144.703 -4.07261 0 0 1.05005e+06 3633.38 0.36 0.10 0.20 -1 -1 0.36 0.0329089 0.0288684 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.48 vpr 62.60 MiB -1 -1 0.18 17380 1 0.03 -1 -1 30292 -1 -1 12 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 24.1 MiB 4.02 466 10105 4186 5463 456 62.6 MiB 0.08 0.00 3.92822 -103.3 -3.92822 3.92822 0.65 0.000573555 0.000533193 0.0402406 0.037473 36 1523 22 6.95648e+06 173708 648988. 2245.63 1.76 0.153215 0.133556 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0212084 0.0187953 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.77 vpr 63.09 MiB -1 -1 0.18 17516 1 0.03 -1 -1 30324 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 24.4 MiB 1.02 606 9397 3361 4720 1316 63.1 MiB 0.08 0.00 3.68935 -126.523 -3.68935 3.68935 0.65 0.000628805 0.000584068 0.039702 0.0369057 42 2317 35 6.95648e+06 159232 744469. 2576.02 1.97 0.17603 0.152741 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.23 0.07 0.15 -1 -1 0.23 0.0261565 0.022813 64 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 6.19 vpr 62.86 MiB -1 -1 0.15 17920 1 0.03 -1 -1 30452 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 24.4 MiB 0.85 743 11993 4026 5805 2162 62.9 MiB 0.10 0.00 4.14331 -121.523 -4.14331 4.14331 0.65 0.000669773 0.000621473 0.0449726 0.0417766 44 2597 32 6.95648e+06 332941 787024. 2723.27 2.59 0.186581 0.1626 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0276749 0.0242023 77 33 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 5.82 vpr 62.66 MiB -1 -1 0.15 17384 1 0.03 -1 -1 30472 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 24.1 MiB 1.41 616 10459 4329 5659 471 62.7 MiB 0.09 0.00 4.04737 -116.055 -4.04737 4.04737 0.65 0.00056569 0.000526132 0.0402796 0.0374848 42 2143 50 6.95648e+06 188184 744469. 2576.02 1.73 0.173164 0.150282 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.23 0.07 0.10 -1 -1 0.23 0.027278 0.0238507 67 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 10.66 vpr 62.73 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30052 -1 -1 9 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 24.2 MiB 1.26 561 11321 4813 6209 299 62.7 MiB 0.10 0.00 3.85356 -111.135 -3.85356 3.85356 0.65 0.000601665 0.000559752 0.0471938 0.043867 40 1771 25 6.95648e+06 130281 706193. 2443.58 6.56 0.269242 0.232217 26914 176310 -1 1463 37 1552 2418 363039 142367 3.13687 3.13687 -111.746 -3.13687 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0387793 0.0334343 56 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 5.53 vpr 63.17 MiB -1 -1 0.21 17792 1 0.03 -1 -1 30260 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 24.6 MiB 1.01 696 13719 4819 6392 2508 63.2 MiB 0.12 0.00 3.46983 -115.227 -3.46983 3.46983 0.66 0.000732537 0.000679221 0.0546501 0.0507584 44 2085 27 6.95648e+06 347416 787024. 2723.27 1.63 0.201263 0.175924 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0322461 0.0280983 79 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.08 vpr 62.79 MiB -1 -1 0.15 17400 1 0.03 -1 -1 30344 -1 -1 12 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 24.2 MiB 2.28 587 9081 3433 3891 1757 62.8 MiB 0.08 0.00 3.99537 -118.981 -3.99537 3.99537 0.68 0.000572852 0.000532843 0.0351489 0.032706 44 2307 34 6.95648e+06 173708 787024. 2723.27 1.95 0.146461 0.127286 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0241094 0.0210356 64 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.37 vpr 63.32 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30196 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 24.8 MiB 1.40 827 13505 5541 6681 1283 63.3 MiB 0.12 0.00 3.208 -113.036 -3.208 3.208 0.65 0.000697409 0.000646763 0.052045 0.0483385 40 2180 23 6.95648e+06 318465 706193. 2443.58 2.08 0.182403 0.159849 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0300314 0.0262667 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 12.73 vpr 63.33 MiB -1 -1 0.17 17748 1 0.03 -1 -1 30284 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 24.8 MiB 1.85 717 9706 3985 5340 381 63.3 MiB 0.10 0.00 3.995 -134.818 -3.995 3.995 0.66 0.000750151 0.000695667 0.0467054 0.0433918 40 2180 49 6.95648e+06 217135 706193. 2443.58 8.12 0.370641 0.319297 26914 176310 -1 1785 21 1473 1992 159433 36664 3.82681 3.82681 -135.82 -3.82681 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0308506 0.0269709 73 91 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 6.19 vpr 62.76 MiB -1 -1 0.16 17384 1 0.03 -1 -1 30292 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 24.2 MiB 1.20 546 10149 3579 4930 1640 62.8 MiB 0.09 0.00 2.9023 -96.8242 -2.9023 2.9023 0.66 0.000620783 0.000576793 0.0428319 0.0398382 46 1638 37 6.95648e+06 144757 828058. 2865.25 2.21 0.180608 0.157182 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.25 0.09 0.16 -1 -1 0.25 0.0347854 0.0300585 57 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 6.19 vpr 62.80 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30284 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 24.4 MiB 1.31 688 11293 4712 6328 253 62.8 MiB 0.10 0.00 4.09973 -130.941 -4.09973 4.09973 0.65 0.000612306 0.000569525 0.0463918 0.0431701 46 2135 28 6.95648e+06 159232 828058. 2865.25 2.05 0.173172 0.151269 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0274162 0.0238661 70 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.84 vpr 62.98 MiB -1 -1 0.15 17900 1 0.03 -1 -1 30284 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 24.4 MiB 2.13 759 11034 4566 6063 405 63.0 MiB 0.10 0.00 4.18668 -129.57 -4.18668 4.18668 0.65 0.00065731 0.00061006 0.0470595 0.0437359 40 2605 27 6.95648e+06 202660 706193. 2443.58 2.92 0.183581 0.160448 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0343902 0.0299018 79 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 5.84 vpr 63.20 MiB -1 -1 0.11 17852 1 0.03 -1 -1 30124 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 24.7 MiB 1.09 716 10228 3612 4706 1910 63.2 MiB 0.09 0.00 4.16289 -113.847 -4.16289 4.16289 0.65 0.000651684 0.000605773 0.0399302 0.0371575 40 2239 28 6.95648e+06 303989 706193. 2443.58 2.06 0.174298 0.151588 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0270612 0.0235779 71 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 6.84 vpr 63.37 MiB -1 -1 0.19 17648 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 24.9 MiB 1.40 846 13524 5903 7163 458 63.4 MiB 0.13 0.00 4.885 -157.826 -4.885 4.885 0.71 0.000758611 0.000704125 0.0646907 0.060133 56 2698 26 6.95648e+06 202660 973134. 3367.25 2.35 0.218336 0.19153 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.32 0.12 0.20 -1 -1 0.32 0.0352502 0.0308107 89 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 5.84 vpr 62.71 MiB -1 -1 0.17 17232 1 0.03 -1 -1 30396 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.2 MiB 1.28 501 12076 4244 5318 2514 62.7 MiB 0.08 0.00 3.74884 -94.0057 -3.74884 3.74884 0.66 0.000405556 0.000370242 0.0413969 0.0384571 40 1910 34 6.95648e+06 188184 706193. 2443.58 1.86 0.157114 0.136809 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.23 0.06 0.16 -1 -1 0.23 0.0224647 0.0196092 54 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.32 vpr 63.67 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30268 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 25.0 MiB 1.06 1008 14543 5389 7197 1957 63.7 MiB 0.13 0.00 3.70954 -138.278 -3.70954 3.70954 0.65 0.000775732 0.000717393 0.059727 0.055205 40 2412 20 6.95648e+06 361892 706193. 2443.58 2.41 0.211717 0.185414 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0296428 0.0260042 81 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.51 vpr 63.04 MiB -1 -1 0.11 17620 1 0.03 -1 -1 30124 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.75 599 11389 4446 5401 1542 63.0 MiB 0.11 0.00 2.96105 -112.244 -2.96105 2.96105 0.72 0.000713953 0.000661914 0.0549607 0.0510375 38 1957 49 6.95648e+06 144757 678818. 2348.85 2.97 0.227989 0.198562 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0293941 0.0256569 61 96 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.13 vpr 63.20 MiB -1 -1 0.20 17748 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 24.6 MiB 1.14 728 11993 4280 5583 2130 63.2 MiB 0.12 0.00 4.11943 -125.672 -4.11943 4.11943 0.66 0.000629413 0.000577862 0.0565471 0.0525645 44 2660 42 6.95648e+06 318465 787024. 2723.27 2.05 0.221043 0.193575 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0313019 0.0272787 75 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.08 vpr 63.44 MiB -1 -1 0.12 17796 1 0.03 -1 -1 30344 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.65 1133 13599 5570 7048 981 63.4 MiB 0.14 0.00 6.01533 -177.28 -6.01533 6.01533 0.65 0.000782345 0.000726413 0.0655167 0.0608605 46 3137 40 6.95648e+06 217135 828058. 2865.25 4.53 0.247595 0.217646 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0341662 0.0299909 95 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.71 vpr 62.50 MiB -1 -1 0.14 17428 1 0.03 -1 -1 30180 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 24.1 MiB 2.30 506 10409 4642 5419 348 62.5 MiB 0.08 0.00 2.68965 -94.6691 -2.68965 2.68965 0.65 0.000497957 0.000463347 0.0360833 0.0335831 38 1556 24 6.95648e+06 159232 678818. 2348.85 1.75 0.135718 0.118044 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0194995 0.0170282 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.30 vpr 62.79 MiB -1 -1 0.17 17336 1 0.03 -1 -1 30092 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 24.2 MiB 1.29 453 9649 4016 5181 452 62.8 MiB 0.08 0.00 3.70034 -111.62 -3.70034 3.70034 0.65 0.000599326 0.000557058 0.0403097 0.0375021 46 1640 50 6.95648e+06 159232 828058. 2865.25 2.23 0.183932 0.159615 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0240189 0.0209265 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.66 vpr 62.81 MiB -1 -1 0.17 17588 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 24.2 MiB 0.45 657 10304 4396 5657 251 62.8 MiB 0.09 0.00 3.0756 -108.291 -3.0756 3.0756 0.66 0.000622949 0.000579266 0.043702 0.0406679 48 2011 23 6.95648e+06 144757 865456. 2994.66 2.39 0.167332 0.145994 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0285511 0.024828 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.21 vpr 62.55 MiB -1 -1 0.16 17372 1 0.03 -1 -1 30184 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.1 MiB 0.42 433 7975 3255 4078 642 62.5 MiB 0.06 0.00 3.29759 -76.2304 -3.29759 3.29759 0.65 0.000475371 0.000442208 0.0259151 0.0241298 38 1530 37 6.95648e+06 260562 678818. 2348.85 2.00 0.134129 0.115721 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.32 0.04 0.16 -1 -1 0.32 0.0140964 0.0124832 53 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 10.33 vpr 63.16 MiB -1 -1 0.20 17676 1 0.03 -1 -1 30216 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 24.6 MiB 1.63 736 10796 3697 5176 1923 63.2 MiB 0.10 0.00 3.75962 -125.032 -3.75962 3.75962 0.65 0.000740279 0.000687672 0.0522149 0.048514 46 3469 47 6.95648e+06 173708 828058. 2865.25 5.69 0.228212 0.198813 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.28 0.13 0.17 -1 -1 0.28 0.0395094 0.0345485 73 72 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.83 vpr 63.30 MiB -1 -1 0.13 17516 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 24.6 MiB 1.09 761 10744 4472 5806 466 63.3 MiB 0.10 0.00 4.07648 -139.886 -4.07648 4.07648 0.65 0.000777763 0.000721569 0.0513405 0.047688 40 2524 30 6.95648e+06 246087 706193. 2443.58 2.83 0.214045 0.186602 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.26 0.11 0.19 -1 -1 0.26 0.0351576 0.0306181 80 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 18.57 vpr 62.96 MiB -1 -1 0.20 17600 1 0.03 -1 -1 30280 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 24.4 MiB 1.44 820 12416 4576 5562 2278 63.0 MiB 0.11 0.00 5.01635 -146.768 -5.01635 5.01635 0.65 0.000589787 0.000538986 0.0530153 0.0490407 46 2906 37 6.99608e+06 220735 828058. 2865.25 14.13 0.355297 0.306063 28066 200906 -1 1988 21 1560 2181 170932 41761 4.40451 4.40451 -147.033 -4.40451 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0293116 0.0256771 88 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 7.00 vpr 62.88 MiB -1 -1 0.20 17668 1 0.03 -1 -1 30388 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 1.25 962 11233 3707 5934 1592 62.9 MiB 0.11 0.00 5.03284 -151.156 -5.03284 5.03284 0.65 0.000710814 0.000659744 0.0499474 0.0464076 48 2930 36 6.99608e+06 250167 865456. 2994.66 2.81 0.20511 0.178802 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.26 0.11 0.18 -1 -1 0.26 0.0306402 0.0267643 99 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 17.36 vpr 62.78 MiB -1 -1 0.18 17420 1 0.02 -1 -1 30224 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 24.3 MiB 0.71 839 12196 5162 6681 353 62.8 MiB 0.10 0.00 3.55379 -113.123 -3.55379 3.55379 0.66 0.000628947 0.000584638 0.0486023 0.0451899 42 2585 35 6.99608e+06 206020 744469. 2576.02 13.60 0.337699 0.291575 27202 183097 -1 1882 23 1419 1986 154978 35763 3.65286 3.65286 -116.181 -3.65286 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.0278961 0.0242684 76 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.16 vpr 62.85 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30276 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 24.3 MiB 1.17 700 12302 4830 6041 1431 62.8 MiB 0.11 0.00 4.05128 -116.185 -4.05128 4.05128 0.65 0.00063263 0.000587723 0.0503029 0.046777 44 2703 50 6.99608e+06 235451 787024. 2723.27 2.14 0.202105 0.176093 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.25 0.07 0.17 -1 -1 0.25 0.0269985 0.0236629 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 8.88 vpr 63.08 MiB -1 -1 0.18 17644 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 24.6 MiB 2.22 903 10204 4241 5732 231 63.1 MiB 0.10 0.00 4.44731 -141.413 -4.44731 4.44731 0.66 0.000796444 0.000735068 0.0446521 0.0414665 40 3203 32 6.99608e+06 206020 706193. 2443.58 3.73 0.195362 0.170674 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.24 0.13 0.16 -1 -1 0.24 0.0340941 0.0297637 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 8.06 vpr 63.03 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30312 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 24.3 MiB 2.58 903 12506 4545 6575 1386 63.0 MiB 0.12 0.00 3.38924 -119.322 -3.38924 3.38924 0.66 0.000722632 0.000671393 0.0539658 0.050095 50 2568 40 6.99608e+06 250167 902133. 3121.57 2.60 0.214287 0.18699 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.27 0.08 0.18 -1 -1 0.27 0.0277759 0.0243647 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 7.12 vpr 62.43 MiB -1 -1 0.17 17428 1 0.03 -1 -1 30688 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 23.9 MiB 1.35 527 10769 4406 5481 882 62.4 MiB 0.09 0.00 3.89582 -110.808 -3.89582 3.89582 0.65 0.000552724 0.000514098 0.0403215 0.0375213 36 2292 38 6.99608e+06 220735 648988. 2245.63 3.05 0.165319 0.143618 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0231778 0.0201729 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 5.40 vpr 62.67 MiB -1 -1 0.19 17136 1 0.02 -1 -1 30100 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.0 MiB 0.31 664 11203 3028 6067 2108 62.7 MiB 0.09 0.00 2.75465 -88.1636 -2.75465 2.75465 0.65 0.000596878 0.000554547 0.0369359 0.0343117 40 2155 26 6.99608e+06 367892 706193. 2443.58 2.30 0.158794 0.138154 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0235847 0.0205493 69 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.98 vpr 62.82 MiB -1 -1 0.17 17872 1 0.03 -1 -1 30092 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 24.2 MiB 0.85 886 12302 5141 6872 289 62.8 MiB 0.11 0.00 3.35914 -124.887 -3.35914 3.35914 0.66 0.000636463 0.000591143 0.0506287 0.0470579 38 2606 25 6.99608e+06 206020 678818. 2348.85 3.29 0.183094 0.159972 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0302884 0.0263048 87 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 9.74 vpr 62.79 MiB -1 -1 0.17 17640 1 0.03 -1 -1 30152 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 24.4 MiB 0.80 886 11650 3739 6142 1769 62.8 MiB 0.10 0.00 3.93292 -137.573 -3.93292 3.93292 0.66 0.00074457 0.000692694 0.0471706 0.0438975 40 2221 25 6.99608e+06 191304 706193. 2443.58 6.21 0.289922 0.25029 26914 176310 -1 1877 19 1373 1734 139655 29281 3.35756 3.35756 -128.359 -3.35756 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0242107 0.0212019 75 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 5.78 vpr 62.77 MiB -1 -1 0.19 17372 1 0.03 -1 -1 30368 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 24.3 MiB 0.73 675 11436 3956 5372 2108 62.8 MiB 0.10 0.00 3.86033 -123.728 -3.86033 3.86033 0.65 0.000616095 0.000572464 0.0464509 0.0431826 44 2557 34 6.99608e+06 206020 787024. 2723.27 2.20 0.178379 0.155297 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0272158 0.0236301 83 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 12.90 vpr 62.70 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30064 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 24.1 MiB 0.64 784 8133 1910 6031 192 62.7 MiB 0.08 0.00 3.27288 -116.653 -3.27288 3.27288 0.66 0.000586028 0.000544474 0.0322971 0.0300487 38 2394 39 6.99608e+06 161872 678818. 2348.85 9.47 0.313154 0.26924 26626 170182 -1 1832 20 1203 1524 136412 27823 2.83937 2.83937 -113.586 -2.83937 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0238431 0.0208082 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.03 vpr 62.91 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30376 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 24.4 MiB 0.75 822 13937 5978 7482 477 62.9 MiB 0.13 0.00 3.95082 -133.749 -3.95082 3.95082 0.65 0.000703775 0.000653066 0.0601516 0.0559281 44 2826 40 6.99608e+06 220735 787024. 2723.27 2.25 0.217678 0.190478 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.029933 0.0261734 87 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 8.67 vpr 63.46 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 24.7 MiB 1.27 975 9706 2651 5494 1561 63.5 MiB 0.10 0.00 4.79397 -141.28 -4.79397 4.79397 0.66 0.000718969 0.000667985 0.0427886 0.0398274 40 3303 38 6.99608e+06 250167 706193. 2443.58 4.39 0.205617 0.1791 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0317509 0.0277165 97 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.52 vpr 62.43 MiB -1 -1 0.15 17256 1 0.03 -1 -1 30372 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 23.9 MiB 2.49 630 8909 3655 4893 361 62.4 MiB 0.07 0.00 3.0564 -89.3526 -3.0564 3.0564 0.66 0.000545752 0.000507644 0.0334219 0.0310963 38 2055 28 6.99608e+06 191304 678818. 2348.85 2.35 0.147991 0.128438 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0216198 0.0188189 64 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.37 vpr 63.06 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 24.4 MiB 1.23 999 13840 5885 7630 325 63.1 MiB 0.13 0.00 3.63599 -124.523 -3.63599 3.63599 0.65 0.000727513 0.000675786 0.0614215 0.0570519 42 3382 43 6.99608e+06 235451 744469. 2576.02 2.30 0.234721 0.205448 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.24 0.09 0.13 -1 -1 0.24 0.0314076 0.0274286 96 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 6.01 vpr 62.77 MiB -1 -1 0.19 17564 1 0.03 -1 -1 30088 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 24.3 MiB 0.72 791 13092 5076 6583 1433 62.8 MiB 0.12 0.00 4.34151 -134.806 -4.34151 4.34151 0.66 0.000687402 0.000638612 0.0558908 0.0519683 46 2501 32 6.99608e+06 220735 828058. 2865.25 2.44 0.201721 0.17627 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0255575 0.0224393 84 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.22 vpr 62.91 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 24.3 MiB 0.74 778 13261 3730 7601 1930 62.9 MiB 0.12 0.00 3.17504 -117.557 -3.17504 3.17504 0.65 0.000651425 0.000605466 0.0536418 0.0498961 50 2131 33 6.99608e+06 220735 902133. 3121.57 2.56 0.193122 0.168806 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0273641 0.0239378 89 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 5.80 vpr 62.32 MiB -1 -1 0.13 17416 1 0.02 -1 -1 30084 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 23.7 MiB 1.65 513 10949 4743 5895 311 62.3 MiB 0.08 0.00 2.33546 -88.3817 -2.33546 2.33546 0.65 0.000499163 0.000464337 0.0379831 0.0353257 40 1324 27 6.99608e+06 147157 706193. 2443.58 1.48 0.145752 0.126979 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0219292 0.0190238 52 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 7.00 vpr 62.75 MiB -1 -1 0.19 17380 1 0.03 -1 -1 30136 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.0 MiB 1.91 843 8236 2227 5366 643 62.8 MiB 0.08 0.00 3.78247 -126.288 -3.78247 3.78247 0.66 0.000611533 0.000568574 0.0350667 0.0326315 38 2536 29 6.99608e+06 191304 678818. 2348.85 2.27 0.162358 0.14107 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0271511 0.0236362 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 6.00 vpr 62.90 MiB -1 -1 0.18 17868 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 24.4 MiB 1.21 802 15273 5455 7440 2378 62.9 MiB 0.13 0.00 3.98218 -132.203 -3.98218 3.98218 0.66 0.000696333 0.000644477 0.0567516 0.0522826 44 2430 42 6.99608e+06 294314 787024. 2723.27 1.90 0.210441 0.183411 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0298214 0.0260843 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 9.67 vpr 63.13 MiB -1 -1 0.14 17772 1 0.03 -1 -1 30216 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 24.7 MiB 2.02 1225 15044 5236 8229 1579 63.1 MiB 0.14 0.00 4.6726 -146.803 -4.6726 4.6726 0.66 0.000731398 0.000678663 0.067029 0.0622993 40 3256 42 6.99608e+06 235451 706193. 2443.58 4.79 0.23958 0.210237 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0316332 0.0276442 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.98 vpr 62.21 MiB -1 -1 0.13 17324 1 0.03 -1 -1 30696 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 23.4 MiB 1.91 422 8539 3493 4523 523 62.2 MiB 0.06 0.00 2.7298 -77.3475 -2.7298 2.7298 0.65 0.000430225 0.000399841 0.0271182 0.0252412 38 1230 26 6.99608e+06 191304 678818. 2348.85 1.45 0.114103 0.0988812 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.22 0.04 0.14 -1 -1 0.22 0.0153494 0.0134321 53 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.51 vpr 62.64 MiB -1 -1 0.10 17264 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.0 MiB 0.87 692 10050 3569 4878 1603 62.6 MiB 0.09 0.00 4.56174 -113.848 -4.56174 4.56174 0.65 0.000618709 0.000575837 0.0390741 0.0364104 40 2097 25 6.99608e+06 220735 706193. 2443.58 1.91 0.162892 0.141948 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0274064 0.0238741 66 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.51 vpr 62.16 MiB -1 -1 0.16 16984 1 0.03 -1 -1 29996 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63652 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.7 MiB 0.20 399 10055 4241 5582 232 62.2 MiB 0.07 0.00 2.06111 -67.7592 -2.06111 2.06111 0.65 0.000423783 0.000393376 0.0299726 0.0278495 36 1381 35 6.99608e+06 117725 648988. 2245.63 1.63 0.123234 0.10727 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.24 0.06 0.14 -1 -1 0.24 0.0217574 0.0194172 42 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.75 vpr 62.90 MiB -1 -1 0.17 17636 1 0.03 -1 -1 30112 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 24.5 MiB 1.12 805 13358 5696 7249 413 62.9 MiB 0.11 0.00 4.47086 -121.677 -4.47086 4.47086 0.65 0.000633212 0.000588433 0.0534467 0.0496924 38 2634 33 6.99608e+06 206020 678818. 2348.85 2.86 0.179235 0.156737 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0207965 0.0184245 73 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 5.40 vpr 62.68 MiB -1 -1 0.17 17244 1 0.04 -1 -1 30476 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.0 MiB 0.45 715 11617 3653 5870 2094 62.7 MiB 0.10 0.00 2.89821 -97.4108 -2.89821 2.89821 0.67 0.000637666 0.000593237 0.0421677 0.0392063 40 2334 43 6.99608e+06 309029 706193. 2443.58 2.16 0.186863 0.162504 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0278753 0.0243094 74 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 8.60 vpr 62.93 MiB -1 -1 0.11 17752 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.4 MiB 1.35 800 6839 1729 4140 970 62.9 MiB 0.07 0.00 4.20669 -125.419 -4.20669 4.20669 0.65 0.000678913 0.000631073 0.0298671 0.0277761 46 2866 37 6.99608e+06 220735 828058. 2865.25 4.39 0.186298 0.161664 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0343832 0.0299487 87 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.47 vpr 62.56 MiB -1 -1 0.11 17372 1 0.03 -1 -1 30092 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.1 MiB 2.08 688 11116 4644 6232 240 62.6 MiB 0.11 0.00 3.13575 -107.33 -3.13575 3.13575 0.66 0.00060428 0.000561779 0.0542066 0.0504363 40 2069 25 6.99608e+06 176588 706193. 2443.58 1.58 0.174744 0.152964 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0214679 0.0188742 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 7.16 vpr 62.60 MiB -1 -1 0.15 17528 1 0.03 -1 -1 30476 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 24.1 MiB 1.28 579 8876 3271 4297 1308 62.6 MiB 0.07 0.00 3.70857 -107.816 -3.70857 3.70857 0.65 0.000571018 0.000531104 0.0335408 0.0311965 46 2274 40 6.99608e+06 206020 828058. 2865.25 3.11 0.16087 0.139393 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.25 0.06 0.18 -1 -1 0.25 0.0209057 0.0182897 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 5.52 vpr 62.57 MiB -1 -1 0.17 17512 1 0.03 -1 -1 30160 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 24.0 MiB 0.70 581 9540 3893 5214 433 62.6 MiB 0.08 0.00 3.25804 -101.918 -3.25804 3.25804 0.67 0.00055774 0.000518787 0.0339713 0.0315977 40 1989 36 6.99608e+06 264882 706193. 2443.58 2.09 0.156232 0.135292 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.23 0.07 0.12 -1 -1 0.23 0.0233008 0.0202391 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 5.34 vpr 62.37 MiB -1 -1 0.18 17124 1 0.03 -1 -1 30276 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 23.9 MiB 0.33 677 11234 4696 6284 254 62.4 MiB 0.09 0.00 3.31833 -109.934 -3.31833 3.31833 0.65 0.000570039 0.000530094 0.0434023 0.040418 38 2069 49 6.99608e+06 147157 678818. 2348.85 2.28 0.180239 0.157241 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0242196 0.021089 58 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 7.88 vpr 62.59 MiB -1 -1 0.19 17588 1 0.03 -1 -1 30236 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 24.0 MiB 0.71 656 7596 1857 5260 479 62.6 MiB 0.07 0.00 3.30918 -105.476 -3.30918 3.30918 0.65 0.000581269 0.000540049 0.0298331 0.0277739 36 2831 44 6.99608e+06 191304 648988. 2245.63 4.49 0.169873 0.146982 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0247293 0.0215313 69 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 7.23 vpr 62.71 MiB -1 -1 0.19 17356 1 0.03 -1 -1 30436 -1 -1 15 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.3 MiB 2.29 919 9036 2362 6094 580 62.7 MiB 0.08 0.00 2.93125 -106.214 -2.93125 2.93125 0.65 0.000599553 0.000557819 0.0358315 0.0333743 38 2275 29 6.99608e+06 220735 678818. 2348.85 2.20 0.160573 0.139395 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0241256 0.0210397 77 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 6.30 vpr 63.09 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30500 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 24.4 MiB 1.06 980 13324 5630 7408 286 63.1 MiB 0.13 0.00 4.30703 -125.875 -4.30703 4.30703 0.65 0.000710701 0.000656862 0.0597547 0.0555019 48 2769 27 6.99608e+06 235451 865456. 2994.66 2.31 0.209841 0.183906 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.030632 0.0268359 92 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.46 vpr 63.14 MiB -1 -1 0.19 17556 1 0.03 -1 -1 30348 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 24.6 MiB 1.37 1014 12683 4657 5804 2222 63.1 MiB 0.13 0.00 4.21676 -146.737 -4.21676 4.21676 0.67 0.000757846 0.000702727 0.0563138 0.0522856 40 3377 27 6.99608e+06 279598 706193. 2443.58 3.26 0.214158 0.187747 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.23 0.11 0.14 -1 -1 0.23 0.0326596 0.028586 106 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 6.02 vpr 62.72 MiB -1 -1 0.20 17224 1 0.03 -1 -1 30144 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.1 MiB 1.13 880 9374 3265 4936 1173 62.7 MiB 0.08 0.00 3.62727 -120.557 -3.62727 3.62727 0.67 0.000597165 0.000555757 0.038331 0.035701 38 2274 42 6.99608e+06 161872 678818. 2348.85 2.20 0.172618 0.149955 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.24 0.04 0.14 -1 -1 0.24 0.013593 0.0120469 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.00 vpr 63.00 MiB -1 -1 0.19 17820 1 0.03 -1 -1 30336 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 24.3 MiB 1.41 969 14528 6235 7667 626 63.0 MiB 0.13 0.00 3.54759 -121.928 -3.54759 3.54759 0.65 0.000731267 0.00067358 0.0653388 0.0606558 44 3091 40 6.99608e+06 250167 787024. 2723.27 2.67 0.229408 0.200643 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0329064 0.0287835 99 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.80 vpr 63.23 MiB -1 -1 0.21 17640 1 0.04 -1 -1 30276 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 24.8 MiB 1.39 989 9196 3129 4406 1661 63.2 MiB 0.09 0.00 5.24281 -163.942 -5.24281 5.24281 0.66 0.00072925 0.000676716 0.0419016 0.0389197 46 3107 34 6.99608e+06 250167 828058. 2865.25 3.43 0.201737 0.175578 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.27 0.11 0.17 -1 -1 0.27 0.0342895 0.0300129 104 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.67 vpr 63.34 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30560 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 24.6 MiB 2.80 930 9881 4037 5524 320 63.3 MiB 0.10 0.00 5.08213 -159.731 -5.08213 5.08213 0.70 0.000743378 0.000688872 0.044819 0.0416111 44 3191 49 6.99608e+06 264882 787024. 2723.27 2.86 0.21916 0.190455 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0316742 0.0276781 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 17.58 vpr 63.05 MiB -1 -1 0.17 17652 1 0.03 -1 -1 30372 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 24.5 MiB 1.82 879 13768 5339 6393 2036 63.1 MiB 0.13 0.00 3.89582 -126.245 -3.89582 3.89582 0.66 0.000889752 0.000819347 0.0607543 0.0564047 48 2742 24 6.99608e+06 235451 865456. 2994.66 12.57 0.371755 0.321202 28354 207349 -1 2238 24 1769 2292 241247 52052 3.50102 3.50102 -127.38 -3.50102 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0322002 0.0280768 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.64 vpr 62.83 MiB -1 -1 0.17 17636 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 24.4 MiB 0.89 818 11864 4957 6528 379 62.8 MiB 0.10 0.00 3.99218 -112.33 -3.99218 3.99218 0.65 0.00061615 0.000572757 0.0463461 0.0431229 40 2655 45 6.99608e+06 206020 706193. 2443.58 3.00 0.191452 0.166815 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0265654 0.0231381 72 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 6.50 vpr 63.28 MiB -1 -1 0.17 18060 1 0.03 -1 -1 30368 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 25.0 MiB 1.22 1337 8083 1871 5905 307 63.3 MiB 0.11 0.00 5.02 -170.696 -5.02 5.02 0.65 0.000867354 0.000806082 0.0409791 0.0381295 50 3572 29 6.99608e+06 309029 902133. 3121.57 2.27 0.220069 0.191265 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.27 0.11 0.18 -1 -1 0.27 0.0334943 0.0294083 129 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 7.25 vpr 62.50 MiB -1 -1 0.17 17640 1 0.03 -1 -1 30104 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 24.0 MiB 2.75 589 8599 2844 4344 1411 62.5 MiB 0.07 0.00 3.01 -97.4254 -3.01 3.01 0.65 0.000565415 0.000525496 0.0334081 0.0311007 40 1560 21 6.99608e+06 161872 706193. 2443.58 1.78 0.145154 0.126143 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0242087 0.0210279 65 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.20 vpr 62.97 MiB -1 -1 0.21 17620 1 0.03 -1 -1 30160 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 792 13524 5096 6588 1840 63.0 MiB 0.12 0.00 4.60267 -142.66 -4.60267 4.60267 0.67 0.000709298 0.000656601 0.0586344 0.0544908 52 2817 39 6.99608e+06 220735 926341. 3205.33 2.49 0.212219 0.185639 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.28 0.08 0.19 -1 -1 0.28 0.0304021 0.0265221 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 6.63 vpr 62.99 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30364 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 1.21 1020 12416 4555 6119 1742 63.0 MiB 0.12 0.00 3.83208 -127.177 -3.83208 3.83208 0.66 0.000700482 0.000651015 0.0538553 0.0500216 42 3450 36 6.99608e+06 220735 744469. 2576.02 2.53 0.205946 0.179989 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.23 0.09 0.14 -1 -1 0.23 0.0269522 0.0236179 91 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.59 vpr 62.82 MiB -1 -1 0.17 17120 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.2 MiB 0.75 673 10228 2970 5232 2026 62.8 MiB 0.09 0.00 4.31309 -118.378 -4.31309 4.31309 0.66 0.000629725 0.000585216 0.0413503 0.0384792 40 2459 37 6.99608e+06 235451 706193. 2443.58 3.02 0.179494 0.156409 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0281411 0.0245433 68 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 14.02 vpr 62.92 MiB -1 -1 0.16 17576 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 24.3 MiB 1.26 915 11571 4863 6343 365 62.9 MiB 0.11 0.00 4.31005 -133.816 -4.31005 4.31005 0.66 0.000699585 0.000650196 0.0511905 0.0475875 40 2850 30 6.99608e+06 220735 706193. 2443.58 9.74 0.339468 0.292667 26914 176310 -1 2174 25 1722 2282 317601 125270 3.58916 3.58916 -127.554 -3.58916 0 0 926341. 3205.33 0.23 0.13 0.19 -1 -1 0.23 0.0335984 0.0293302 90 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.01 vpr 63.00 MiB -1 -1 0.20 17612 1 0.03 -1 -1 30296 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1099 13430 4920 6010 2500 63.0 MiB 0.13 0.00 3.65969 -129.38 -3.65969 3.65969 0.64 0.00071918 0.000668346 0.0595415 0.0553569 40 2995 22 6.99608e+06 220735 706193. 2443.58 2.53 0.201385 0.176702 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.23 0.23 0.15 -1 -1 0.23 0.0526645 0.0455027 92 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.09 vpr 63.14 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 24.6 MiB 2.19 1101 15216 5672 7066 2478 63.1 MiB 0.16 0.00 3.74401 -128.073 -3.74401 3.74401 0.67 0.000741785 0.000689112 0.0756486 0.0701656 38 3558 41 6.99608e+06 235451 678818. 2348.85 3.98 0.24546 0.215182 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0277996 0.0244629 101 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 6.58 vpr 62.68 MiB -1 -1 0.15 17420 1 0.03 -1 -1 30340 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 24.2 MiB 0.92 743 11034 4121 5253 1660 62.7 MiB 0.10 0.00 4.35583 -118.93 -4.35583 4.35583 0.66 0.000647386 0.000601633 0.0446885 0.0415612 40 2999 39 6.99608e+06 206020 706193. 2443.58 2.86 0.188125 0.163717 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0286541 0.0249902 74 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 6.76 vpr 62.86 MiB -1 -1 0.14 17692 1 0.04 -1 -1 30548 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 24.3 MiB 1.92 793 9042 2962 4450 1630 62.9 MiB 0.08 0.00 4.21168 -126.242 -4.21168 4.21168 0.65 0.000664396 0.000618019 0.0389467 0.0362381 42 3421 45 6.99608e+06 191304 744469. 2576.02 2.11 0.191406 0.166327 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.23 0.08 0.16 -1 -1 0.23 0.0274427 0.0239946 81 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.03 vpr 62.99 MiB -1 -1 0.16 17516 1 0.03 -1 -1 30432 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.7 MiB 1.13 950 10726 4120 5384 1222 63.0 MiB 0.11 0.00 4.31211 -136.261 -4.31211 4.31211 0.68 0.000721862 0.000670106 0.0485786 0.0451099 48 3520 36 6.99608e+06 235451 865456. 2994.66 3.87 0.212224 0.185312 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.26 0.18 0.18 -1 -1 0.26 0.0470767 0.0407036 99 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 7.44 vpr 63.28 MiB -1 -1 0.20 17904 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 24.7 MiB 1.23 977 12980 5460 6998 522 63.3 MiB 0.11 0.00 3.94476 -129.858 -3.94476 3.94476 0.76 0.000578821 0.00053036 0.0458723 0.0420673 54 3499 42 6.99608e+06 235451 949917. 3286.91 3.09 0.218195 0.189577 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.28 0.10 0.19 -1 -1 0.28 0.0322722 0.0282144 104 77 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 5.62 vpr 62.59 MiB -1 -1 0.14 17484 1 0.03 -1 -1 30092 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 24.1 MiB 0.56 645 10769 4489 5977 303 62.6 MiB 0.09 0.00 3.21628 -99.3334 -3.21628 3.21628 0.69 0.000561109 0.000522329 0.0406853 0.0378772 38 1991 25 6.99608e+06 147157 678818. 2348.85 2.38 0.152694 0.13314 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.22 0.06 0.12 -1 -1 0.22 0.0231136 0.02015 60 23 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.29 vpr 63.00 MiB -1 -1 0.11 17624 1 0.03 -1 -1 30440 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 24.4 MiB 0.84 827 10726 4440 5997 289 63.0 MiB 0.09 0.00 4.06528 -146.791 -4.06528 4.06528 0.65 0.000546015 0.000500797 0.040435 0.0373449 46 2656 31 6.99608e+06 220735 828058. 2865.25 2.40 0.184348 0.160138 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.25 0.09 0.20 -1 -1 0.25 0.0272795 0.0238617 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.37 vpr 63.00 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 24.3 MiB 0.92 950 12808 5316 6896 596 63.0 MiB 0.12 0.00 4.80548 -149.393 -4.80548 4.80548 0.87 0.00077026 0.000715053 0.0587294 0.054464 50 3454 27 6.99608e+06 235451 902133. 3121.57 3.18 0.218544 0.191526 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.27 0.14 0.18 -1 -1 0.27 0.0409383 0.0355878 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.03 vpr 62.94 MiB -1 -1 0.12 17568 1 0.03 -1 -1 30416 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 24.4 MiB 0.58 849 13599 4722 6429 2448 62.9 MiB 0.13 0.00 4.35389 -139.539 -4.35389 4.35389 0.76 0.000690674 0.000641614 0.0583264 0.0542541 38 2795 34 6.99608e+06 220735 678818. 2348.85 3.38 0.206331 0.180893 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0299123 0.0261727 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 7.01 vpr 62.63 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30340 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 23.9 MiB 1.18 640 11474 4735 6197 542 62.6 MiB 0.09 0.00 3.65345 -112.727 -3.65345 3.65345 0.69 0.00059455 0.000551853 0.0404086 0.0375798 48 1940 24 6.99608e+06 294314 865456. 2994.66 2.98 0.163032 0.142375 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0227545 0.0198725 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 9.68 vpr 63.56 MiB -1 -1 0.13 17916 1 0.03 -1 -1 30364 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 24.8 MiB 1.49 1528 15924 5227 8931 1766 63.6 MiB 0.16 0.00 6.09323 -187.636 -6.09323 6.09323 0.65 0.000829382 0.00077073 0.0778385 0.072384 40 4257 42 6.99608e+06 264882 706193. 2443.58 5.27 0.272487 0.239116 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0371468 0.0324564 116 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.53 vpr 63.02 MiB -1 -1 0.17 17532 1 0.03 -1 -1 30328 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 24.5 MiB 0.58 768 13524 5053 6623 1848 63.0 MiB 0.12 0.00 4.76624 -142.397 -4.76624 4.76624 0.65 0.000685789 0.000636029 0.058438 0.0542837 46 2785 27 6.99608e+06 206020 828058. 2865.25 3.10 0.203429 0.178504 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0274727 0.0240803 83 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.19 vpr 62.34 MiB -1 -1 0.16 17276 1 0.03 -1 -1 30448 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 23.7 MiB 0.24 516 10672 4080 5320 1272 62.3 MiB 0.08 0.00 2.96036 -91.6204 -2.96036 2.96036 0.67 0.000544158 0.000503769 0.0372841 0.034722 40 1546 38 6.99608e+06 191304 706193. 2443.58 2.19 0.156999 0.136448 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.23 0.05 0.16 -1 -1 0.23 0.0198135 0.017302 51 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 7.79 vpr 62.93 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30284 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 24.4 MiB 1.19 903 15560 6646 7056 1858 62.9 MiB 0.13 0.00 4.75332 -131.249 -4.75332 4.75332 0.65 0.000717682 0.000666165 0.0674404 0.0626237 48 2982 46 6.99608e+06 235451 865456. 2994.66 3.66 0.225944 0.198543 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.26 0.09 0.18 -1 -1 0.26 0.0314793 0.0275181 85 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.65 vpr 62.47 MiB -1 -1 0.19 17044 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.0 MiB 0.80 493 9540 2740 5276 1524 62.5 MiB 0.08 0.00 2.966 -97.1273 -2.966 2.966 0.65 0.000560359 0.00052166 0.0349643 0.032559 38 1851 39 6.99608e+06 206020 678818. 2348.85 2.24 0.158163 0.137311 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.22 0.06 0.11 -1 -1 0.22 0.0247727 0.0215445 57 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.40 vpr 62.58 MiB -1 -1 0.18 17244 1 0.02 -1 -1 30408 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 24.0 MiB 0.55 768 9081 3737 5047 297 62.6 MiB 0.08 0.00 3.80347 -118.428 -3.80347 3.80347 0.66 0.000592428 0.000550704 0.0360511 0.0335471 38 2446 44 6.99608e+06 191304 678818. 2348.85 3.01 0.17141 0.14857 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.31 0.07 0.17 -1 -1 0.31 0.0216845 0.019161 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.78 vpr 62.96 MiB -1 -1 0.14 17624 1 0.03 -1 -1 30304 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 1.57 956 12416 5112 6468 836 63.0 MiB 0.12 0.00 4.12666 -129.088 -4.12666 4.12666 0.66 0.000692613 0.000643637 0.0535127 0.0497225 38 3346 46 6.99608e+06 264882 678818. 2348.85 4.37 0.221922 0.193697 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0299975 0.0261567 97 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.50 vpr 62.97 MiB -1 -1 0.20 17900 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 24.4 MiB 1.31 974 13599 5339 6861 1399 63.0 MiB 0.13 0.00 4.25698 -140.266 -4.25698 4.25698 0.65 0.000709473 0.000658853 0.0596651 0.0554408 38 3070 41 6.99608e+06 220735 678818. 2348.85 3.31 0.221161 0.193626 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0320562 0.0280404 93 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 8.59 vpr 63.12 MiB -1 -1 0.15 17856 1 0.03 -1 -1 30268 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1087 13768 5458 5698 2612 63.1 MiB 0.13 0.00 4.58577 -147.33 -4.58577 4.58577 0.65 0.000702658 0.000652663 0.0599024 0.0556844 38 3125 30 6.99608e+06 220735 678818. 2348.85 3.84 0.210445 0.184512 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.22 0.09 0.17 -1 -1 0.22 0.0278125 0.0244508 90 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.57 vpr 62.51 MiB -1 -1 0.14 17548 1 0.03 -1 -1 30292 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 23.9 MiB 1.79 854 11609 4663 6043 903 62.5 MiB 0.10 0.00 3.95082 -130.122 -3.95082 3.95082 0.65 0.000591156 0.000550138 0.0459206 0.0427933 38 2338 24 6.99608e+06 161872 678818. 2348.85 2.06 0.165587 0.144644 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0263044 0.0229032 67 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 6.08 vpr 63.09 MiB -1 -1 0.19 17692 1 0.03 -1 -1 30456 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 24.5 MiB 0.86 785 11813 4965 6422 426 63.1 MiB 0.06 0.00 3.70143 -122.026 -3.70143 3.70143 0.64 0.000289401 0.000265986 0.0230175 0.0212171 46 2466 44 6.99608e+06 206020 828058. 2865.25 2.44 0.164862 0.142171 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0293753 0.0255684 86 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.42 vpr 62.93 MiB -1 -1 0.10 17664 1 0.03 -1 -1 30292 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 24.3 MiB 1.17 809 10756 2943 5618 2195 62.9 MiB 0.10 0.00 3.4598 -111.751 -3.4598 3.4598 0.71 0.000663789 0.00061684 0.0431356 0.0401287 46 2326 24 6.99608e+06 279598 828058. 2865.25 2.45 0.178412 0.155705 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0275002 0.0239915 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.67 vpr 62.71 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30540 -1 -1 17 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.0 MiB 0.41 678 13280 5850 6635 795 62.7 MiB 0.10 0.00 3.68935 -104.602 -3.68935 3.68935 0.65 0.000589552 0.000548237 0.0504742 0.0469753 42 2430 50 6.99608e+06 250167 744469. 2576.02 2.41 0.191404 0.166867 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.24 0.08 0.16 -1 -1 0.24 0.024622 0.0214837 71 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.06 vpr 62.93 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30436 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 24.4 MiB 1.78 779 10020 4070 5537 413 62.9 MiB 0.09 0.00 4.56081 -142.799 -4.56081 4.56081 0.66 0.000637531 0.000591586 0.0414039 0.0384751 44 2750 43 6.99608e+06 220735 787024. 2723.27 2.43 0.186711 0.162136 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0293046 0.0255495 87 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.32 vpr 62.83 MiB -1 -1 0.10 17816 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 24.3 MiB 0.82 988 11366 4377 5078 1911 62.8 MiB 0.11 0.00 3.4477 -126.272 -3.4477 3.4477 0.67 0.000671154 0.00062365 0.0490727 0.0456342 40 3223 42 6.99608e+06 206020 706193. 2443.58 3.67 0.205865 0.179496 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.25 0.10 0.15 -1 -1 0.25 0.0275186 0.0240232 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.23 vpr 62.65 MiB -1 -1 0.16 17160 1 0.03 -1 -1 30372 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.2 MiB 0.36 735 13335 5144 6746 1445 62.7 MiB 0.10 0.00 4.50448 -121.497 -4.50448 4.50448 0.69 0.000634984 0.000590302 0.0463856 0.0431034 46 2320 24 6.99608e+06 353176 828058. 2865.25 2.97 0.173968 0.15204 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0240112 0.0210261 74 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.02 vpr 62.98 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 24.4 MiB 1.81 849 9872 4071 5471 330 63.0 MiB 0.10 0.00 4.41391 -145.413 -4.41391 4.41391 0.68 0.00071632 0.000666525 0.0446559 0.0415213 44 3096 30 6.99608e+06 206020 787024. 2723.27 2.28 0.191446 0.16701 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.24 0.09 0.20 -1 -1 0.24 0.0315453 0.0275922 86 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 8.89 vpr 63.16 MiB -1 -1 0.13 17900 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 24.7 MiB 0.72 1031 9706 3955 5323 428 63.2 MiB 0.12 0.00 5.10216 -163.017 -5.10216 5.10216 0.66 0.000748305 0.000695048 0.0540048 0.0501096 48 3809 38 6.99608e+06 250167 865456. 2994.66 5.23 0.224254 0.196219 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.26 0.16 0.18 -1 -1 0.26 0.0388176 0.033795 102 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 6.39 vpr 63.29 MiB -1 -1 0.18 17620 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 24.8 MiB 0.78 1043 9881 4045 5563 273 63.3 MiB 0.10 0.00 4.39921 -147.12 -4.39921 4.39921 0.65 0.000761078 0.000707069 0.0451104 0.0419196 46 3556 37 6.99608e+06 250167 828058. 2865.25 2.65 0.207131 0.180254 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.25 0.10 0.19 -1 -1 0.25 0.032777 0.0286597 104 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.46 vpr 62.95 MiB -1 -1 0.11 17380 1 0.03 -1 -1 30124 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 24.3 MiB 0.83 639 8765 3407 4448 910 62.9 MiB 0.08 0.00 4.31695 -124.149 -4.31695 4.31695 0.65 0.000582253 0.000541545 0.0343352 0.0319435 42 2236 38 6.99608e+06 191304 744469. 2576.02 1.98 0.1631 0.141388 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.23 0.08 0.16 -1 -1 0.23 0.025839 0.0226659 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 6.28 vpr 63.16 MiB -1 -1 0.18 17556 1 0.03 -1 -1 30408 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 24.8 MiB 0.93 919 12808 4622 5804 2382 63.2 MiB 0.11 0.00 5.00926 -154.589 -5.00926 5.00926 0.65 0.000736725 0.000681778 0.0573959 0.0533348 48 2897 47 6.99608e+06 264882 865456. 2994.66 2.38 0.227945 0.199108 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.26 0.11 0.17 -1 -1 0.26 0.0327655 0.0286383 104 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.03 vpr 62.82 MiB -1 -1 0.10 17516 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 24.3 MiB 1.03 773 12860 5275 6775 810 62.8 MiB 0.12 0.00 4.8046 -140.908 -4.8046 4.8046 0.65 0.000692563 0.000643458 0.0553573 0.0514097 48 2906 29 6.99608e+06 206020 865456. 2994.66 3.08 0.199428 0.174578 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0287989 0.025203 82 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 18.19 vpr 63.17 MiB -1 -1 0.19 17808 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 24.6 MiB 1.16 794 10228 3166 5486 1576 63.2 MiB 0.10 0.00 5.19565 -143.212 -5.19565 5.19565 0.65 0.000684069 0.000636139 0.0432192 0.0402109 38 3224 38 6.99608e+06 250167 678818. 2348.85 14.14 0.337744 0.291274 26626 170182 -1 2195 21 1511 2171 195678 43019 4.59296 4.59296 -149.718 -4.59296 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0287242 0.0251584 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 9.32 vpr 63.41 MiB -1 -1 0.19 17584 1 0.03 -1 -1 30348 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 24.9 MiB 1.93 966 13788 4937 6208 2643 63.4 MiB 0.12 0.00 4.24398 -133.079 -4.24398 4.24398 0.66 0.00072295 0.000671863 0.058792 0.0546187 46 3311 48 6.99608e+06 294314 828058. 2865.25 4.42 0.234065 0.204525 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.26 0.14 0.16 -1 -1 0.26 0.0365895 0.0317944 108 83 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 7.62 vpr 63.11 MiB -1 -1 0.19 17772 1 0.03 -1 -1 30216 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 24.5 MiB 1.51 1164 15481 5166 8845 1470 63.1 MiB 0.14 0.00 4.66597 -153.274 -4.66597 4.66597 0.65 0.000727627 0.000676486 0.066696 0.0618882 40 3016 25 6.99608e+06 250167 706193. 2443.58 3.14 0.212622 0.187156 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0307928 0.0269057 95 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 20.05 vpr 63.16 MiB -1 -1 0.21 17656 1 0.03 -1 -1 30380 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 24.7 MiB 2.24 970 14431 6168 7633 630 63.2 MiB 0.13 0.00 3.80498 -123.528 -3.80498 3.80498 0.65 0.000718963 0.000667622 0.0632767 0.0587034 46 3095 47 6.99608e+06 294314 828058. 2865.25 14.76 0.376855 0.325647 28066 200906 -1 2327 21 1984 2580 225360 47479 3.58866 3.58866 -125.19 -3.58866 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0306293 0.0268444 109 85 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.63 vpr 62.44 MiB -1 -1 0.16 17188 1 0.02 -1 -1 30312 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 23.8 MiB 1.06 673 8289 1936 5635 718 62.4 MiB 0.07 0.00 3.54309 -104.459 -3.54309 3.54309 0.67 0.0005535 0.000515542 0.0315083 0.0293754 36 2073 30 6.99608e+06 147157 648988. 2245.63 1.82 0.147728 0.128257 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0243935 0.0212382 54 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 7.60 vpr 63.27 MiB -1 -1 0.20 17852 1 0.03 -1 -1 30380 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 24.6 MiB 0.63 998 13731 5201 6084 2446 63.3 MiB 0.13 0.00 5.23946 -166.614 -5.23946 5.23946 0.66 0.000730774 0.000678447 0.05997 0.0556821 46 3007 25 6.99608e+06 250167 828058. 2865.25 3.92 0.213896 0.187485 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.25 0.13 0.17 -1 -1 0.25 0.0327452 0.0287837 100 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 8.23 vpr 63.02 MiB -1 -1 0.19 17588 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 24.5 MiB 0.90 1023 11631 4065 5883 1683 63.0 MiB 0.12 0.00 4.8947 -165.145 -4.8947 4.8947 0.65 0.000765973 0.000710989 0.0536444 0.0498572 40 3825 35 6.99608e+06 250167 706193. 2443.58 4.39 0.219319 0.191464 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0319974 0.0280209 109 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 5.89 vpr 62.53 MiB -1 -1 0.17 17420 1 0.02 -1 -1 30184 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 23.9 MiB 0.91 649 12083 5091 6584 408 62.5 MiB 0.10 0.00 3.80367 -112.996 -3.80367 3.80367 0.65 0.000580979 0.000540557 0.0464168 0.0431791 42 2423 39 6.99608e+06 161872 744469. 2576.02 2.26 0.175892 0.153248 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.27 0.08 0.14 -1 -1 0.27 0.0258517 0.0224824 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.07 vpr 62.37 MiB -1 -1 0.17 17408 1 0.02 -1 -1 30352 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 23.9 MiB 0.45 500 9836 4038 5376 422 62.4 MiB 0.08 0.00 3.32523 -100.829 -3.32523 3.32523 0.65 0.000559886 0.000520829 0.0368674 0.0343381 44 1930 39 6.99608e+06 191304 787024. 2723.27 1.91 0.160423 0.139435 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.25 0.07 0.12 -1 -1 0.25 0.0263046 0.0228483 56 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 5.76 vpr 63.05 MiB -1 -1 0.16 17852 1 0.06 -1 -1 30460 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.4 MiB 0.76 868 11909 4701 5758 1450 63.1 MiB 0.11 0.00 4.58703 -149.04 -4.58703 4.58703 0.65 0.000698327 0.000648675 0.0518935 0.0482489 46 2684 28 6.99608e+06 220735 828058. 2865.25 1.96 0.194394 0.169904 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0467776 0.0414591 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.42 vpr 63.10 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 1.59 896 11571 3933 6047 1591 63.1 MiB 0.11 0.00 4.54977 -137.477 -4.54977 4.54977 0.65 0.000706966 0.0006571 0.0510134 0.0474163 46 2917 48 6.99608e+06 220735 828058. 2865.25 2.96 0.222071 0.193837 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0315714 0.0276024 95 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 16.93 vpr 62.98 MiB -1 -1 0.13 17344 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.5 MiB 0.38 847 13556 4796 7036 1724 63.0 MiB 0.13 0.00 4.71017 -139.049 -4.71017 4.71017 0.67 0.000864048 0.000803232 0.0599087 0.0557304 44 3122 48 6.99608e+06 250167 787024. 2723.27 13.63 0.365547 0.316877 27778 195446 -1 2155 23 1937 3243 335429 101756 4.32031 4.32031 -143.248 -4.32031 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0318997 0.0278578 83 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 6.02 vpr 62.84 MiB -1 -1 0.17 17832 1 0.04 -1 -1 30216 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 24.3 MiB 1.05 742 9042 3157 4137 1748 62.8 MiB 0.08 0.00 3.64737 -104.512 -3.64737 3.64737 0.67 0.000639431 0.000593899 0.0376378 0.0350457 48 2323 27 6.99608e+06 235451 865456. 2994.66 2.09 0.17116 0.148798 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0265794 0.0231833 86 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 6.52 vpr 62.57 MiB -1 -1 0.19 17508 1 0.02 -1 -1 30604 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 24.0 MiB 0.84 490 9374 3097 4710 1567 62.6 MiB 0.07 0.00 3.44679 -100.328 -3.44679 3.44679 0.68 0.000537039 0.00049877 0.0353775 0.0329614 38 1628 40 6.99608e+06 220735 678818. 2348.85 2.93 0.162662 0.141151 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.023488 0.020372 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 9.21 vpr 63.32 MiB -1 -1 0.11 17808 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 24.8 MiB 0.74 1154 16102 6967 8731 404 63.3 MiB 0.16 0.00 4.18254 -144.202 -4.18254 4.18254 0.67 0.000806097 0.000748724 0.0764043 0.0708309 46 4050 36 6.99608e+06 264882 828058. 2865.25 5.68 0.256807 0.225143 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.24 0.06 0.11 -1 -1 0.24 0.0182358 0.0162626 111 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 8.61 vpr 63.32 MiB -1 -1 0.13 17644 1 0.03 -1 -1 30376 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 24.5 MiB 1.64 1126 13496 4705 6380 2411 63.3 MiB 0.13 0.00 5.49463 -159.408 -5.49463 5.49463 0.66 0.000719749 0.000669065 0.0587228 0.0545707 38 3177 46 6.99608e+06 250167 678818. 2348.85 4.10 0.227872 0.19924 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.23 0.13 0.14 -1 -1 0.23 0.0338388 0.0295318 100 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 5.53 vpr 62.82 MiB -1 -1 0.15 17776 1 0.03 -1 -1 30356 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 24.3 MiB 0.86 926 14354 6182 7861 311 62.8 MiB 0.12 0.00 4.28347 -151.804 -4.28347 4.28347 0.65 0.000654957 0.000607485 0.0590367 0.0548058 48 2248 21 6.99608e+06 206020 865456. 2994.66 1.82 0.186872 0.16381 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0259765 0.0227984 91 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 5.65 vpr 62.88 MiB -1 -1 0.18 17888 1 0.03 -1 -1 30480 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 24.4 MiB 0.64 1057 13599 5180 6238 2181 62.9 MiB 0.12 0.00 4.11318 -134.456 -4.11318 4.11318 0.66 0.00067425 0.000627042 0.0569133 0.0529213 38 2724 25 6.99608e+06 220735 678818. 2348.85 2.21 0.19093 0.167798 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0279591 0.0244681 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 6.57 vpr 62.94 MiB -1 -1 0.14 17668 1 0.03 -1 -1 30172 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 24.3 MiB 1.33 870 12120 4959 6494 667 62.9 MiB 0.11 0.00 4.09557 -123.875 -4.09557 4.09557 0.66 0.000737891 0.000684914 0.0547459 0.0508733 42 3474 41 6.99608e+06 250167 744469. 2576.02 2.40 0.219824 0.192279 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.24 0.09 0.16 -1 -1 0.24 0.0316806 0.027742 97 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 6.59 vpr 63.04 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30356 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 24.5 MiB 1.33 825 9205 3109 4150 1946 63.0 MiB 0.09 0.00 3.47679 -109.391 -3.47679 3.47679 0.66 0.000660169 0.000612546 0.0396477 0.0368606 46 2602 31 6.99608e+06 250167 828058. 2865.25 2.41 0.184165 0.160412 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0314945 0.0273849 88 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.15 vpr 62.98 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30464 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 0.77 918 10536 3621 5008 1907 63.0 MiB 0.11 0.00 4.39601 -144.18 -4.39601 4.39601 0.66 0.000704054 0.000654508 0.0471635 0.0437528 46 3353 30 6.99608e+06 206020 828058. 2865.25 3.42 0.199608 0.174559 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0306618 0.0268286 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 21.24 vpr 63.11 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 24.7 MiB 2.17 942 12292 4666 5756 1870 63.1 MiB 0.12 0.00 3.70017 -126.602 -3.70017 3.70017 0.68 0.000761869 0.000708274 0.0570406 0.0530425 48 3168 40 6.99608e+06 235451 865456. 2994.66 15.99 0.382548 0.330747 28354 207349 -1 2445 29 2504 3455 343966 87145 3.56046 3.56046 -132.854 -3.56046 0 0 1.05005e+06 3633.38 0.26 0.13 0.19 -1 -1 0.26 0.040649 0.0354074 103 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.69 vpr 62.69 MiB -1 -1 0.18 17548 1 0.03 -1 -1 30240 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 24.1 MiB 1.18 638 10503 3616 4659 2228 62.7 MiB 0.09 0.00 4.33189 -121.838 -4.33189 4.33189 0.65 0.000575905 0.000535691 0.0404157 0.0376168 38 1692 24 6.99608e+06 206020 678818. 2348.85 1.72 0.155547 0.135678 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0231687 0.0202194 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.38 vpr 62.74 MiB -1 -1 0.18 17680 1 0.03 -1 -1 30440 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 24.3 MiB 1.94 733 10370 4308 5800 262 62.7 MiB 0.09 0.00 4.00228 -133.8 -4.00228 4.00228 0.66 0.000635374 0.000590174 0.0421286 0.0391478 44 2610 40 6.99608e+06 206020 787024. 2723.27 2.42 0.187646 0.163477 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0242727 0.0214624 79 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 6.61 vpr 62.82 MiB -1 -1 0.18 17908 1 0.02 -1 -1 30448 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 24.3 MiB 0.71 764 12362 5067 6494 801 62.8 MiB 0.11 0.00 4.07608 -123.99 -4.07608 4.07608 0.65 0.000667751 0.000620434 0.0521797 0.0484842 46 2867 29 6.99608e+06 220735 828058. 2865.25 3.07 0.190327 0.166434 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0309852 0.0270389 80 33 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 5.83 vpr 62.52 MiB -1 -1 0.10 17312 1 0.03 -1 -1 30524 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.0 MiB 0.88 586 8909 3659 4796 454 62.5 MiB 0.07 0.00 3.79267 -108.98 -3.79267 3.79267 0.65 0.000566038 0.000526625 0.0344108 0.0320221 44 2352 39 6.99608e+06 191304 787024. 2723.27 2.26 0.158684 0.137481 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.26 0.11 0.17 -1 -1 0.26 0.0320436 0.0276748 68 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.13 vpr 62.95 MiB -1 -1 0.18 17240 1 0.03 -1 -1 30068 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.3 MiB 0.73 860 12076 5115 6633 328 62.9 MiB 0.10 0.00 4.30315 -133.848 -4.30315 4.30315 0.65 0.000597701 0.000556001 0.0473594 0.0441048 38 2379 33 6.99608e+06 176588 678818. 2348.85 2.57 0.17367 0.151548 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0244098 0.0215808 73 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 6.12 vpr 63.13 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 24.6 MiB 0.84 1156 13840 5407 6744 1689 63.1 MiB 0.13 0.00 4.42187 -150.582 -4.42187 4.42187 0.65 0.000721087 0.000668948 0.0613659 0.0570262 46 2902 21 6.99608e+06 250167 828058. 2865.25 2.26 0.208269 0.183014 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.35 0.09 0.17 -1 -1 0.35 0.0298852 0.0265672 101 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.57 vpr 62.62 MiB -1 -1 0.17 17432 1 0.03 -1 -1 30492 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.0 MiB 0.70 820 12876 4559 5981 2336 62.6 MiB 0.11 0.00 3.74867 -118.743 -3.74867 3.74867 0.67 0.000575118 0.000535276 0.0483476 0.045019 36 2421 43 6.99608e+06 191304 648988. 2245.63 3.08 0.179208 0.156066 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0232652 0.0203011 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 5.85 vpr 63.00 MiB -1 -1 0.20 17508 1 0.03 -1 -1 30032 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 24.4 MiB 0.97 889 10726 4477 5918 331 63.0 MiB 0.10 0.00 3.49879 -116.053 -3.49879 3.49879 0.65 0.00069501 0.000644931 0.0465834 0.0432775 48 2372 28 6.99608e+06 220735 865456. 2994.66 1.97 0.19004 0.165944 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.26 0.06 0.18 -1 -1 0.26 0.0255461 0.0226224 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 27.23 vpr 63.34 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30432 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 24.6 MiB 2.34 1223 9263 3795 5242 226 63.3 MiB 0.10 0.00 4.74537 -163.238 -4.74537 4.74537 0.66 0.000755872 0.000701784 0.0417619 0.0388187 48 3333 47 6.99608e+06 294314 865456. 2994.66 21.75 0.390164 0.33724 28354 207349 -1 2908 35 3164 4392 767405 233701 4.54929 4.54929 -166.714 -4.54929 0 0 1.05005e+06 3633.38 0.26 0.22 0.17 -1 -1 0.26 0.0465995 0.0404152 113 91 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 7.80 vpr 62.88 MiB -1 -1 0.11 17528 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 24.4 MiB 1.66 727 10316 3968 5326 1022 62.9 MiB 0.09 0.00 3.38944 -114.889 -3.38944 3.38944 0.66 0.000625748 0.000581255 0.0415061 0.0385042 46 2548 48 6.99608e+06 176588 828058. 2865.25 3.33 0.188752 0.16374 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0262661 0.0229458 80 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 7.09 vpr 62.65 MiB -1 -1 0.19 17356 1 0.03 -1 -1 30248 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 23.9 MiB 0.65 695 11609 4409 5699 1501 62.6 MiB 0.10 0.00 3.88892 -124.254 -3.88892 3.88892 0.66 0.000611437 0.000568271 0.0472141 0.0438773 40 2563 29 6.99608e+06 161872 706193. 2443.58 3.57 0.179081 0.156351 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0238569 0.0208693 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 6.96 vpr 62.79 MiB -1 -1 0.19 17628 1 0.03 -1 -1 30468 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.3 MiB 1.30 729 11034 3646 5163 2225 62.8 MiB 0.11 0.00 4.07043 -123.448 -4.07043 4.07043 0.68 0.000656517 0.000610244 0.0550328 0.0511814 46 2576 50 6.99608e+06 206020 828058. 2865.25 2.77 0.216446 0.189195 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0373394 0.0324004 79 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 7.89 vpr 62.94 MiB -1 -1 0.20 17872 1 0.03 -1 -1 30056 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 24.4 MiB 1.39 807 9881 4044 5289 548 62.9 MiB 0.09 0.00 3.78147 -112.033 -3.78147 3.78147 0.65 0.00119538 0.00111163 0.0413282 0.0384495 40 2561 37 6.99608e+06 264882 706193. 2443.58 3.65 0.188205 0.163784 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0271533 0.0237313 88 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.31 vpr 63.12 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30404 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 24.7 MiB 1.33 1189 13031 5003 6393 1635 63.1 MiB 0.13 0.00 5.55394 -180.701 -5.55394 5.55394 0.65 0.000760319 0.000705729 0.0595657 0.0553644 40 3527 35 6.99608e+06 250167 706193. 2443.58 5.11 0.227687 0.1994 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.24 0.14 0.10 -1 -1 0.24 0.0341803 0.0299247 105 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 4.89 vpr 62.58 MiB -1 -1 0.17 17396 1 0.02 -1 -1 30360 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 23.9 MiB 0.78 678 10796 4152 4483 2161 62.6 MiB 0.08 0.00 3.34663 -92.0539 -3.34663 3.34663 0.66 0.000526843 0.000489963 0.0372329 0.0346276 34 1899 26 6.99608e+06 191304 618332. 2139.56 1.46 0.14479 0.126028 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0203337 0.0177334 54 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.62 vpr 63.52 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 24.8 MiB 2.44 1002 14907 4915 7817 2175 63.5 MiB 0.14 0.00 4.76623 -160.299 -4.76623 4.76623 0.69 0.000774844 0.000719035 0.0659522 0.061215 48 2884 23 6.99608e+06 294314 865456. 2994.66 2.14 0.221397 0.194498 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0395598 0.0346876 116 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 7.36 vpr 63.41 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.8 MiB 0.71 1317 10744 3615 5258 1871 63.4 MiB 0.10 0.00 4.50112 -167.331 -4.50112 4.50112 0.66 0.000712018 0.000660995 0.0473671 0.0439801 40 3495 26 6.99608e+06 235451 706193. 2443.58 3.79 0.201605 0.17628 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0332053 0.0289414 110 96 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 7.26 vpr 63.12 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30468 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 24.4 MiB 1.30 944 9712 3948 5370 394 63.1 MiB 0.10 0.00 3.79657 -123.64 -3.79657 3.79657 0.66 0.000710163 0.000659281 0.0437958 0.0407098 44 3075 49 6.99608e+06 220735 787024. 2723.27 3.13 0.223364 0.194713 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0294203 0.0257039 94 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 7.73 vpr 63.22 MiB -1 -1 0.16 17600 1 0.03 -1 -1 30516 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 24.8 MiB 0.90 1078 15796 7109 8306 381 63.2 MiB 0.16 0.00 5.81442 -170.312 -5.81442 5.81442 0.66 0.000778449 0.000722309 0.0760601 0.0706765 46 3303 43 6.99608e+06 220735 828058. 2865.25 3.94 0.257372 0.225958 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.25 0.09 0.16 -1 -1 0.25 0.0300825 0.0264579 98 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 4.64 vpr 62.50 MiB -1 -1 0.17 17524 1 0.03 -1 -1 30060 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 23.9 MiB 0.65 501 9684 3375 4762 1547 62.5 MiB 0.08 0.00 2.78575 -96.9119 -2.78575 2.78575 0.66 0.000506007 0.000471321 0.0351718 0.0327541 38 1487 22 6.99608e+06 176588 678818. 2348.85 1.44 0.133058 0.115701 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.21 0.03 0.10 -1 -1 0.21 0.0109561 0.00971046 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.49 vpr 62.48 MiB -1 -1 0.11 17312 1 0.03 -1 -1 30088 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 23.9 MiB 3.01 598 11756 4032 5894 1830 62.5 MiB 0.09 0.00 3.77712 -117.524 -3.77712 3.77712 0.66 0.000600384 0.000558301 0.0464988 0.0432674 38 1780 24 6.99608e+06 206020 678818. 2348.85 1.63 0.167636 0.146174 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0251084 0.0218919 68 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.06 vpr 62.69 MiB -1 -1 0.19 17312 1 0.03 -1 -1 29976 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 24.2 MiB 0.56 791 12331 4777 6250 1304 62.7 MiB 0.10 0.00 3.68644 -122.952 -3.68644 3.68644 0.65 0.000616793 0.000572872 0.0456741 0.0424252 44 2873 41 6.99608e+06 250167 787024. 2723.27 2.65 0.188015 0.163624 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0248139 0.0217282 78 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.83 vpr 62.36 MiB -1 -1 0.19 17240 1 0.02 -1 -1 30184 -1 -1 16 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63856 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 23.9 MiB 0.93 448 7369 2953 3764 652 62.4 MiB 0.05 0.00 3.31959 -76.8944 -3.31959 3.31959 0.65 0.000477051 0.000443653 0.024769 0.023052 38 1742 32 6.99608e+06 235451 678818. 2348.85 2.24 0.125319 0.108193 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0180819 0.0157832 59 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 7.86 vpr 63.27 MiB -1 -1 0.13 17808 1 0.03 -1 -1 30460 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 24.6 MiB 2.56 1245 8306 2489 4423 1394 63.3 MiB 0.09 0.00 4.0386 -139.855 -4.0386 4.0386 0.65 0.000727631 0.000675877 0.0373501 0.0347433 48 3245 50 6.99608e+06 250167 865456. 2994.66 2.48 0.213389 0.185297 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0301175 0.0263167 103 72 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 7.73 vpr 63.42 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30264 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 24.7 MiB 2.09 1163 15568 6109 7919 1540 63.4 MiB 0.15 0.00 4.35051 -150.242 -4.35051 4.35051 0.65 0.000768863 0.000713681 0.0702178 0.0652095 40 3509 30 6.99608e+06 279598 706193. 2443.58 2.72 0.230021 0.201431 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0303367 0.0267518 117 90 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 9.83 vpr 62.68 MiB -1 -1 0.27 17896 14 0.23 -1 -1 32796 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1276 8543 2090 5594 859 62.7 MiB 0.10 0.00 8.38905 -176.577 -8.38905 8.38905 0.65 0.000897975 0.000832394 0.0471161 0.0437702 36 3665 49 6.79088e+06 255968 648988. 2245.63 5.23 0.27692 0.240921 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0358883 0.0315722 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 8.46 vpr 62.62 MiB -1 -1 0.27 17776 14 0.28 -1 -1 32752 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 24.1 MiB 2.09 1147 12331 4133 6053 2145 62.6 MiB 0.13 0.00 7.6097 -157.374 -7.6097 7.6097 0.65 0.000901032 0.000834759 0.0669473 0.0618761 34 3327 27 6.79088e+06 255968 618332. 2139.56 3.20 0.253016 0.220485 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0355135 0.031198 125 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 10.01 vpr 62.72 MiB -1 -1 0.24 17472 11 0.28 -1 -1 33036 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 2.94 1231 6383 1494 4487 402 62.7 MiB 0.07 0.00 6.81003 -148.008 -6.81003 6.81003 0.65 0.000898227 0.00083173 0.0355846 0.0329879 36 3209 32 6.79088e+06 255968 648988. 2245.63 3.95 0.232064 0.20096 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0359061 0.0315688 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 7.72 vpr 62.62 MiB -1 -1 0.24 17644 12 0.31 -1 -1 32744 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 24.0 MiB 1.04 1099 5293 1100 3885 308 62.6 MiB 0.06 0.00 7.28153 -143.815 -7.28153 7.28153 0.67 0.0009034 0.000837238 0.0294841 0.0273848 36 3357 33 6.79088e+06 323328 648988. 2245.63 3.50 0.224903 0.194213 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0372409 0.0326762 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 17.84 vpr 62.78 MiB -1 -1 0.27 17796 13 0.27 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 24.3 MiB 1.59 1401 5756 1163 4305 288 62.8 MiB 0.07 0.00 8.2885 -175.09 -8.2885 8.2885 0.65 0.00097973 0.000907819 0.0339626 0.0315142 40 3602 29 6.79088e+06 296384 706193. 2443.58 12.96 0.43922 0.378361 26254 175826 -1 3419 16 1490 3850 301755 77078 7.51181 7.51181 -175.313 -7.51181 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0354634 0.031438 152 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 7.86 vpr 62.78 MiB -1 -1 0.22 17760 13 0.24 -1 -1 32752 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 24.2 MiB 1.45 1243 11063 3086 5977 2000 62.8 MiB 0.14 0.00 7.40767 -155.099 -7.40767 7.40767 0.65 0.00128671 0.00119234 0.0750938 0.0695936 38 3505 23 6.79088e+06 255968 678818. 2348.85 3.27 0.269689 0.235968 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0362024 0.0318759 137 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 6.63 vpr 62.25 MiB -1 -1 0.21 17344 12 0.19 -1 -1 32668 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 1.25 831 9024 2147 6104 773 62.2 MiB 0.08 0.00 7.03512 -124.15 -7.03512 7.03512 0.65 0.000739735 0.000680339 0.0414626 0.0384214 36 2328 49 6.79088e+06 282912 648988. 2245.63 2.39 0.218771 0.18967 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0351924 0.0308117 106 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 7.55 vpr 62.38 MiB -1 -1 0.23 17496 12 0.21 -1 -1 32752 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 23.7 MiB 2.62 997 12636 5258 7154 224 62.4 MiB 0.11 0.00 6.42294 -136.16 -6.42294 6.42294 0.64 0.000735809 0.000681011 0.0570527 0.0528523 44 2627 22 6.79088e+06 229024 787024. 2723.27 1.87 0.206056 0.18036 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0260591 0.0230099 106 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 8.24 vpr 62.27 MiB -1 -1 0.24 17832 12 0.18 -1 -1 32656 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 23.9 MiB 2.75 1116 6203 1235 4627 341 62.3 MiB 0.07 0.00 7.04997 -146.463 -7.04997 7.04997 0.67 0.000822906 0.000743498 0.0298591 0.0277288 38 2827 29 6.79088e+06 269440 678818. 2348.85 2.48 0.188461 0.163245 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0255926 0.022649 113 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 8.17 vpr 62.32 MiB -1 -1 0.22 17552 13 0.19 -1 -1 32600 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 23.9 MiB 1.93 1109 7177 1737 4800 640 62.3 MiB 0.08 0.00 7.59858 -166.488 -7.59858 7.59858 0.65 0.000814949 0.000755613 0.037789 0.0350548 36 3033 30 6.79088e+06 202080 648988. 2245.63 3.31 0.211555 0.183525 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0262448 0.0232557 106 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 5.35 vpr 62.15 MiB -1 -1 0.24 17632 12 0.18 -1 -1 32592 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63644 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 23.6 MiB 1.55 935 11402 3533 6247 1622 62.2 MiB 0.07 0.00 7.11778 -148.236 -7.11778 7.11778 0.56 0.000707053 0.000655114 0.0275324 0.0253595 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.03 0.137923 0.119868 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0258291 0.0227208 96 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 17.66 vpr 62.18 MiB -1 -1 0.23 17672 12 0.14 -1 -1 32792 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 23.5 MiB 2.07 937 12856 4731 5927 2198 62.2 MiB 0.11 0.00 5.84661 -143.137 -5.84661 5.84661 0.66 0.000737566 0.000682535 0.0570817 0.0528557 38 2936 43 6.79088e+06 229024 678818. 2348.85 12.57 0.366599 0.31653 25966 169698 -1 2301 16 1075 2850 166834 38480 5.18431 5.18431 -138.28 -5.18431 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0263185 0.0232173 101 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 16.03 vpr 62.73 MiB -1 -1 0.22 17660 13 0.25 -1 -1 32580 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.71 1258 8319 2303 5000 1016 62.7 MiB 0.10 0.00 7.91028 -166.355 -7.91028 7.91028 0.65 0.000927267 0.000849131 0.0462374 0.0427371 40 3060 21 6.79088e+06 269440 706193. 2443.58 11.08 0.401345 0.345512 26254 175826 -1 2982 19 1354 3465 231601 50194 7.01056 7.01056 -160.338 -7.01056 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0366557 0.032283 134 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 8.35 vpr 62.99 MiB -1 -1 0.28 17588 14 0.31 -1 -1 32812 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1345 7268 1767 5038 463 63.0 MiB 0.11 0.00 8.74626 -182.518 -8.74626 8.74626 0.65 0.00113115 0.00104387 0.0503458 0.0464863 36 3522 26 6.79088e+06 296384 648988. 2245.63 3.31 0.251522 0.217801 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0377165 0.0332384 151 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 8.42 vpr 62.29 MiB -1 -1 0.22 17384 11 0.18 -1 -1 32504 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 23.9 MiB 2.19 987 12186 3908 6119 2159 62.3 MiB 0.11 0.00 6.7187 -136.52 -6.7187 6.7187 0.65 0.00072387 0.000669953 0.052814 0.0489072 34 3118 45 6.79088e+06 282912 618332. 2139.56 3.01 0.233822 0.204139 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.20 0.26 0.13 -1 -1 0.20 0.0678064 0.0584255 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 21.25 vpr 62.86 MiB -1 -1 0.25 17604 12 0.31 -1 -1 32944 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 24.5 MiB 1.31 1224 13348 3764 6998 2586 62.9 MiB 0.14 0.00 7.24781 -156.42 -7.24781 7.24781 0.66 0.000993471 0.000920556 0.0717531 0.0664181 40 3377 35 6.79088e+06 323328 706193. 2443.58 16.56 0.508325 0.439032 26254 175826 -1 3153 21 1625 5435 403477 86340 6.75642 6.75642 -155.136 -6.75642 0 0 926341. 3205.33 0.27 0.13 0.15 -1 -1 0.27 0.042962 0.0378338 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 21.52 vpr 62.66 MiB -1 -1 0.26 17600 14 0.25 -1 -1 32744 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 24.1 MiB 2.10 1311 6743 1544 4772 427 62.7 MiB 0.08 0.00 8.47078 -173.752 -8.47078 8.47078 0.64 0.000899757 0.000833526 0.037466 0.0347496 38 3697 39 6.79088e+06 255968 678818. 2348.85 16.30 0.430887 0.370412 25966 169698 -1 2925 18 1377 3834 209038 46091 7.22545 7.22545 -162.343 -7.22545 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0344668 0.0303679 126 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 7.73 vpr 62.32 MiB -1 -1 0.24 17364 12 0.16 -1 -1 32620 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 23.6 MiB 1.55 1008 11740 3543 6499 1698 62.3 MiB 0.11 0.00 7.24148 -161.628 -7.24148 7.24148 0.65 0.000744496 0.000689281 0.0548791 0.0508458 36 2795 45 6.79088e+06 202080 648988. 2245.63 3.20 0.22415 0.195724 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0252704 0.0223871 105 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 6.14 vpr 62.02 MiB -1 -1 0.20 17084 10 0.10 -1 -1 32240 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 23.4 MiB 1.81 679 4973 1078 3739 156 62.0 MiB 0.05 0.00 4.83286 -114.815 -4.83286 4.83286 0.65 0.000565584 0.000525615 0.019878 0.0184711 38 1772 21 6.79088e+06 175136 678818. 2348.85 1.51 0.130063 0.112292 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.24 0.05 0.15 -1 -1 0.24 0.0187551 0.0166412 66 87 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 7.29 vpr 62.37 MiB -1 -1 0.16 17324 13 0.18 -1 -1 32720 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 23.7 MiB 1.92 997 12331 4111 5801 2419 62.4 MiB 0.11 0.00 7.54752 -160.268 -7.54752 7.54752 0.65 0.000746666 0.000690361 0.0555056 0.0513665 36 2929 29 6.79088e+06 242496 648988. 2245.63 2.37 0.215175 0.187758 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.21 0.07 0.15 -1 -1 0.21 0.0288024 0.0253858 107 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 11.66 vpr 63.02 MiB -1 -1 0.25 17936 13 0.27 -1 -1 32992 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 24.4 MiB 1.71 1287 9943 2672 5830 1441 63.0 MiB 0.11 0.00 7.66212 -166.709 -7.66212 7.66212 0.65 0.000965987 0.000894894 0.0555842 0.0515246 36 4367 40 6.79088e+06 282912 648988. 2245.63 6.66 0.279159 0.242911 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.23 0.22 0.14 -1 -1 0.23 0.0629587 0.0553451 143 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 9.70 vpr 62.76 MiB -1 -1 0.20 17696 13 0.32 -1 -1 32452 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 24.1 MiB 2.08 1366 11989 3183 6998 1808 62.8 MiB 0.12 0.00 7.56666 -167.812 -7.56666 7.56666 0.65 0.000737829 0.00067568 0.0556237 0.0511944 38 3931 41 6.79088e+06 282912 678818. 2348.85 4.40 0.270277 0.234429 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.24 0.11 0.14 -1 -1 0.24 0.0476003 0.042874 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 5.22 vpr 61.89 MiB -1 -1 0.12 17064 9 0.09 -1 -1 32200 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63376 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 23.2 MiB 1.22 700 7596 2556 3853 1187 61.9 MiB 0.06 0.00 4.83723 -93.7879 -4.83723 4.83723 0.65 0.000515395 0.00047946 0.0267015 0.0248689 34 1715 26 6.79088e+06 242496 618332. 2139.56 1.34 0.130939 0.113193 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0193617 0.0169173 67 76 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 7.77 vpr 62.68 MiB -1 -1 0.24 17552 13 0.30 -1 -1 32708 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 24.1 MiB 1.83 1263 10263 2709 7113 441 62.7 MiB 0.11 0.00 8.1433 -166.845 -8.1433 8.1433 0.65 0.000918499 0.000850101 0.0529514 0.0490628 40 3385 50 6.79088e+06 309856 706193. 2443.58 2.74 0.27548 0.238531 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.23 0.11 0.16 -1 -1 0.23 0.0397841 0.0349002 136 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 6.00 vpr 61.84 MiB -1 -1 0.17 16868 8 0.10 -1 -1 32792 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 23.3 MiB 1.85 633 5921 1256 4594 71 61.8 MiB 0.05 0.00 4.18492 -95.1021 -4.18492 4.18492 0.65 0.000504808 0.000468971 0.0207371 0.0192672 36 1824 30 6.79088e+06 148192 648988. 2245.63 1.50 0.126756 0.109157 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.21 0.05 0.15 -1 -1 0.21 0.0191904 0.0167984 60 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 11.70 vpr 62.68 MiB -1 -1 0.20 17396 15 0.24 -1 -1 32700 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 24.2 MiB 2.10 1197 14144 5293 7084 1767 62.7 MiB 0.14 0.00 8.89118 -178.017 -8.89118 8.89118 0.65 0.00083899 0.000777309 0.0701837 0.0650693 36 3911 43 6.79088e+06 242496 648988. 2245.63 6.52 0.271233 0.236607 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.21 0.16 0.14 -1 -1 0.21 0.0485183 0.0421606 121 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 10.42 vpr 62.44 MiB -1 -1 0.23 17496 13 0.23 -1 -1 32856 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 1.71 1207 12898 3890 6827 2181 62.4 MiB 0.13 0.00 6.79894 -149.553 -6.79894 6.79894 0.65 0.000847932 0.000785126 0.0650668 0.0603094 36 3359 23 6.79088e+06 242496 648988. 2245.63 5.63 0.240816 0.210714 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0337513 0.029655 117 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 8.68 vpr 62.77 MiB -1 -1 0.17 17816 13 0.26 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 24.2 MiB 1.45 1179 7024 1686 4552 786 62.8 MiB 0.08 0.00 7.81323 -165.772 -7.81323 7.81323 0.65 0.000909842 0.00084286 0.0399561 0.0370604 40 3618 36 6.79088e+06 242496 706193. 2443.58 4.06 0.246074 0.213219 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0457775 0.0399467 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 13.42 vpr 62.24 MiB -1 -1 0.21 17552 12 0.16 -1 -1 32656 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 23.6 MiB 1.96 1077 9024 2472 4753 1799 62.2 MiB 0.09 0.00 6.90294 -154.176 -6.90294 6.90294 0.66 0.000750227 0.00069412 0.0423845 0.0392834 38 2685 27 6.79088e+06 215552 678818. 2348.85 8.51 0.307229 0.265375 25966 169698 -1 2236 14 1015 2429 130604 29713 5.99004 5.99004 -143.607 -5.99004 0 0 902133. 3121.57 0.22 0.06 0.10 -1 -1 0.22 0.0246244 0.0218701 103 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 7.77 vpr 62.18 MiB -1 -1 0.20 17532 11 0.15 -1 -1 32568 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 23.6 MiB 1.69 910 12120 3870 6285 1965 62.2 MiB 0.10 0.00 6.3635 -135.496 -6.3635 6.3635 0.65 0.000680122 0.000629663 0.0506928 0.0469403 36 2758 44 6.79088e+06 242496 648988. 2245.63 3.18 0.213081 0.185874 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.22 0.06 0.13 -1 -1 0.22 0.023231 0.0205497 95 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 6.26 vpr 62.20 MiB -1 -1 0.20 17344 11 0.17 -1 -1 32644 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63692 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 23.6 MiB 1.43 934 11106 3231 6003 1872 62.2 MiB 0.10 0.00 7.04953 -133.904 -7.04953 7.04953 0.65 0.000727868 0.000673378 0.0496002 0.0459622 36 2495 17 6.79088e+06 282912 648988. 2245.63 1.93 0.19065 0.166666 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.21 0.06 0.13 -1 -1 0.21 0.0248905 0.0220344 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 8.45 vpr 62.66 MiB -1 -1 0.22 17324 12 0.19 -1 -1 32700 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 23.9 MiB 2.31 1143 7431 2070 3957 1404 62.7 MiB 0.09 0.00 7.03679 -162.788 -7.03679 7.03679 0.65 0.000862645 0.000799367 0.042381 0.0393597 38 3489 28 6.79088e+06 229024 678818. 2348.85 3.12 0.213819 0.185553 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0329896 0.0290446 119 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 8.78 vpr 62.25 MiB -1 -1 0.18 17396 12 0.16 -1 -1 32672 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 23.6 MiB 2.04 1005 7304 1599 5397 308 62.2 MiB 0.08 0.00 6.85818 -143.144 -6.85818 6.85818 0.66 0.000748963 0.000693417 0.0359548 0.0333349 36 3104 26 6.79088e+06 229024 648988. 2245.63 3.78 0.198494 0.172497 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.25 0.08 0.13 -1 -1 0.25 0.0306532 0.026898 101 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 6.54 vpr 62.23 MiB -1 -1 0.23 17540 10 0.18 -1 -1 32752 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 23.6 MiB 1.39 942 8378 2178 5592 608 62.2 MiB 0.08 0.00 6.16888 -135.594 -6.16888 6.16888 0.65 0.000725346 0.000671806 0.0391604 0.0362609 34 2825 33 6.79088e+06 229024 618332. 2139.56 2.26 0.194707 0.169166 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0245103 0.0216827 103 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 7.54 vpr 63.43 MiB -1 -1 0.29 18040 13 0.29 -1 -1 32804 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 24.7 MiB 1.73 1312 13663 4088 7126 2449 63.4 MiB 0.15 0.00 8.09614 -166.803 -8.09614 8.09614 0.68 0.00100269 0.000926376 0.078344 0.0725217 44 3318 23 6.79088e+06 282912 787024. 2723.27 2.42 0.282006 0.246727 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.25 0.09 0.19 -1 -1 0.25 0.0378555 0.0334902 149 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 8.42 vpr 62.82 MiB -1 -1 0.27 18020 14 0.31 -1 -1 33400 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 24.2 MiB 2.00 1261 10584 2627 7173 784 62.8 MiB 0.12 0.00 7.68903 -168.897 -7.68903 7.68903 0.65 0.000935991 0.000867991 0.0596857 0.0552211 44 3649 50 6.79088e+06 242496 787024. 2723.27 3.14 0.29134 0.254004 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0344341 0.0304302 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 17.77 vpr 62.21 MiB -1 -1 0.16 17568 12 0.15 -1 -1 32592 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 23.6 MiB 1.96 1099 9036 2242 5503 1291 62.2 MiB 0.09 0.00 7.11595 -155.813 -7.11595 7.11595 0.65 0.000751572 0.00069614 0.043168 0.0400106 30 2953 39 6.79088e+06 215552 556674. 1926.21 12.73 0.335374 0.289718 24526 138013 -1 2356 56 1353 4062 755449 394520 6.33018 6.33018 -154.996 -6.33018 0 0 706193. 2443.58 0.19 0.27 0.12 -1 -1 0.19 0.0707312 0.0608455 101 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 26.43 vpr 62.88 MiB -1 -1 0.27 17804 12 0.27 -1 -1 32756 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 24.4 MiB 2.18 1467 6039 1319 4287 433 62.9 MiB 0.07 0.00 7.47278 -158.083 -7.47278 7.47278 0.65 0.000981998 0.0009092 0.0349007 0.0324077 44 3629 28 6.79088e+06 323328 787024. 2723.27 20.97 0.418965 0.360081 27118 194962 -1 3054 17 1429 4213 263921 56409 6.54502 6.54502 -148.774 -6.54502 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0363808 0.0321769 146 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 7.27 vpr 62.79 MiB -1 -1 0.28 17896 14 0.32 -1 -1 33188 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 24.2 MiB 1.25 1271 10129 2796 6287 1046 62.8 MiB 0.11 0.00 8.30959 -169.599 -8.30959 8.30959 0.66 0.000971626 0.000901467 0.0560829 0.0520037 36 3450 22 6.79088e+06 296384 648988. 2245.63 2.82 0.25068 0.21871 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0337034 0.0297367 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 7.37 vpr 62.68 MiB -1 -1 0.27 18080 13 0.25 -1 -1 32892 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1280 4811 900 3622 289 62.7 MiB 0.06 0.00 8.58767 -169.841 -8.58767 8.58767 0.65 0.000898867 0.000833209 0.0265646 0.0246675 38 3430 34 6.79088e+06 309856 678818. 2348.85 2.37 0.221783 0.191345 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0338746 0.0299665 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 7.66 vpr 62.78 MiB -1 -1 0.27 17720 13 0.24 -1 -1 32540 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 24.2 MiB 1.75 1180 11979 3854 6305 1820 62.8 MiB 0.12 0.00 7.68398 -158.005 -7.68398 7.68398 0.65 0.000890923 0.000820103 0.0618626 0.0572174 46 3049 18 6.79088e+06 282912 828058. 2865.25 2.69 0.23283 0.20326 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0310726 0.027411 125 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 8.06 vpr 62.53 MiB -1 -1 0.24 17560 12 0.18 -1 -1 32740 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 24.0 MiB 1.82 851 11432 3292 6222 1918 62.5 MiB 0.12 0.00 6.74005 -141.479 -6.74005 6.74005 0.66 0.00083468 0.000773591 0.0607612 0.0563613 38 2732 20 6.79088e+06 215552 678818. 2348.85 3.22 0.198714 0.174829 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0309709 0.0273874 111 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 7.91 vpr 63.16 MiB -1 -1 0.31 18392 14 0.37 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 24.4 MiB 1.08 1525 8269 1990 5730 549 63.2 MiB 0.10 0.00 8.76146 -179.232 -8.76146 8.76146 0.65 0.00105571 0.000967634 0.0511827 0.0472515 40 3962 28 6.79088e+06 282912 706193. 2443.58 3.41 0.273214 0.237655 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0374176 0.0331444 159 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 16.99 vpr 62.24 MiB -1 -1 0.24 17344 11 0.19 -1 -1 32460 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 23.6 MiB 2.04 1083 5656 1222 4312 122 62.2 MiB 0.07 0.00 6.44427 -138.672 -6.44427 6.44427 0.71 0.000807905 0.000748702 0.0305571 0.0283522 40 2970 31 6.79088e+06 215552 706193. 2443.58 11.84 0.367614 0.315891 26254 175826 -1 2695 18 1295 3569 245355 53324 5.60634 5.60634 -134.282 -5.60634 0 0 926341. 3205.33 0.25 0.09 0.15 -1 -1 0.25 0.0312161 0.0274826 112 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 8.77 vpr 62.76 MiB -1 -1 0.22 17796 13 0.26 -1 -1 33308 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 1.62 1224 12683 3651 6628 2404 62.8 MiB 0.13 0.00 8.19665 -170.984 -8.19665 8.19665 0.66 0.000904322 0.000836404 0.0684237 0.0633431 36 3521 25 6.79088e+06 269440 648988. 2245.63 3.95 0.25722 0.224494 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0341932 0.0301461 137 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 7.91 vpr 62.68 MiB -1 -1 0.15 17832 12 0.25 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 24.0 MiB 1.90 1183 14221 4949 6932 2340 62.7 MiB 0.17 0.00 7.19197 -155.782 -7.19197 7.19197 0.67 0.00113801 0.00104777 0.0872274 0.0804344 48 3258 28 6.79088e+06 282912 865456. 2994.66 2.64 0.30633 0.268045 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.29 0.15 0.17 -1 -1 0.29 0.0456086 0.0399066 146 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 6.34 vpr 62.70 MiB -1 -1 0.24 17364 13 0.31 -1 -1 32852 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 24.2 MiB 1.18 1273 10103 2600 6194 1309 62.7 MiB 0.10 0.00 8.00961 -170.987 -8.00961 8.00961 0.65 0.000894459 0.000829018 0.0514462 0.0476751 38 3255 22 6.79088e+06 296384 678818. 2348.85 2.21 0.229748 0.200048 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.22 0.08 0.12 -1 -1 0.22 0.0329069 0.0289832 131 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 10.86 vpr 62.67 MiB -1 -1 0.26 17760 13 0.20 -1 -1 32708 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 24.0 MiB 2.47 1094 12364 4318 5742 2304 62.7 MiB 0.13 0.00 7.6093 -157.428 -7.6093 7.6093 0.65 0.000874507 0.0008099 0.0648312 0.0600595 38 3487 43 6.79088e+06 242496 678818. 2348.85 5.33 0.270788 0.235835 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0318737 0.0280831 124 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 20.13 vpr 62.83 MiB -1 -1 0.17 17816 12 0.32 -1 -1 32568 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 24.2 MiB 2.00 1339 6489 1417 4538 534 62.8 MiB 0.08 0.00 7.45027 -163.951 -7.45027 7.45027 0.65 0.000931345 0.000862008 0.0368859 0.0341733 36 4037 43 6.79088e+06 269440 648988. 2245.63 15.03 0.37597 0.323218 25390 158009 -1 3242 19 1321 4175 282612 58801 6.45897 6.45897 -154.692 -6.45897 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0374741 0.0329602 140 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 11.55 vpr 62.80 MiB -1 -1 0.29 18040 13 0.29 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1312 5757 1265 4157 335 62.8 MiB 0.08 0.00 7.77691 -170.238 -7.77691 7.77691 0.65 0.000989177 0.000915537 0.0357906 0.0331752 36 4117 46 6.79088e+06 269440 648988. 2245.63 6.42 0.274332 0.236987 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.21 0.20 0.13 -1 -1 0.21 0.0617758 0.0537491 145 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 7.23 vpr 62.62 MiB -1 -1 0.24 17500 14 0.27 -1 -1 33064 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 1.37 1196 9783 2600 6598 585 62.6 MiB 0.09 0.00 8.29092 -170.108 -8.29092 8.29092 0.81 0.00066336 0.000606154 0.0394696 0.0361392 38 3116 34 6.79088e+06 269440 678818. 2348.85 2.54 0.228808 0.198049 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.034339 0.0301719 125 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 11.27 vpr 62.96 MiB -1 -1 0.22 17816 13 0.26 -1 -1 32764 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 24.4 MiB 2.06 1239 12547 3128 7964 1455 63.0 MiB 0.13 0.00 8.02156 -162.008 -8.02156 8.02156 0.73 0.000935645 0.000866676 0.0665217 0.0616094 36 3706 32 6.79088e+06 282912 648988. 2245.63 6.02 0.273381 0.238749 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0429383 0.0376029 136 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 8.51 vpr 62.74 MiB -1 -1 0.29 17796 13 0.27 -1 -1 32656 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64244 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1309 8319 2069 5720 530 62.7 MiB 0.10 0.00 7.83086 -168.91 -7.83086 7.83086 0.65 0.000969389 0.000898505 0.0491192 0.0454835 38 3459 40 6.79088e+06 282912 678818. 2348.85 3.57 0.272347 0.236807 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0369032 0.0325347 144 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 8.76 vpr 63.09 MiB -1 -1 0.15 17776 12 0.29 -1 -1 32764 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 24.7 MiB 1.47 1321 14779 4130 8902 1747 63.1 MiB 0.15 0.00 7.66848 -162.706 -7.66848 7.66848 0.66 0.000961287 0.000888997 0.0808162 0.0748123 38 3631 50 6.79088e+06 282912 678818. 2348.85 4.09 0.323287 0.282823 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.22 0.10 0.12 -1 -1 0.22 0.037258 0.0328099 147 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 6.50 vpr 62.06 MiB -1 -1 0.22 17232 11 0.16 -1 -1 32572 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 23.5 MiB 1.20 752 5224 962 4133 129 62.1 MiB 0.05 0.00 6.41251 -131.25 -6.41251 6.41251 0.65 0.000536119 0.000489615 0.0197575 0.0180864 36 2354 24 6.79088e+06 188608 648988. 2245.63 2.44 0.160035 0.137586 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.23 0.07 0.10 -1 -1 0.23 0.0254722 0.0224535 91 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 8.48 vpr 62.46 MiB -1 -1 0.20 17936 13 0.21 -1 -1 32684 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 23.9 MiB 1.74 1180 7221 1648 4796 777 62.5 MiB 0.08 0.00 7.59268 -164.24 -7.59268 7.59268 0.65 0.000833994 0.000773619 0.0363326 0.0337222 36 3135 25 6.79088e+06 269440 648988. 2245.63 3.79 0.212774 0.184625 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0306082 0.0269174 118 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 27.17 vpr 63.08 MiB -1 -1 0.28 18364 14 0.45 -1 -1 32896 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 24.5 MiB 1.25 1584 7108 1588 4936 584 63.1 MiB 0.09 0.00 9.32595 -187.261 -9.32595 9.32595 0.76 0.00108035 0.00101136 0.0456684 0.0422757 46 3936 32 6.79088e+06 323328 828058. 2865.25 22.13 0.438423 0.378258 27406 200422 -1 3289 21 1725 5115 340361 89609 8.0201 8.0201 -172.736 -8.0201 0 0 1.01997e+06 3529.29 0.34 0.13 0.20 -1 -1 0.34 0.047276 0.0416728 171 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.30 vpr 62.67 MiB -1 -1 0.27 17608 13 0.28 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 24.0 MiB 1.46 1314 12733 3340 7297 2096 62.7 MiB 0.13 0.00 7.97246 -177.126 -7.97246 7.97246 0.66 0.00090106 0.000834812 0.0653199 0.0605593 38 3411 27 6.79088e+06 282912 678818. 2348.85 3.69 0.249148 0.217482 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.22 0.09 0.10 -1 -1 0.22 0.0332671 0.0293479 134 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 6.43 vpr 62.26 MiB -1 -1 0.24 17552 11 0.17 -1 -1 32748 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63756 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 23.6 MiB 0.67 915 4304 849 3239 216 62.3 MiB 0.05 0.00 6.78614 -143.669 -6.78614 6.78614 0.66 0.000743836 0.000684204 0.0219369 0.0204017 36 2700 29 6.79088e+06 229024 648988. 2245.63 2.90 0.176334 0.152204 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.22 0.07 0.09 -1 -1 0.22 0.0263581 0.0234799 101 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 13.82 vpr 63.27 MiB -1 -1 0.31 18392 15 0.48 -1 -1 32536 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 24.6 MiB 1.07 1525 5039 926 3796 317 63.3 MiB 0.07 0.00 9.59451 -195.342 -9.59451 9.59451 0.65 0.00113162 0.0010467 0.0334737 0.0309927 36 4861 41 6.79088e+06 336800 648988. 2245.63 9.32 0.307505 0.266673 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0505632 0.0444924 179 257 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 6.64 vpr 62.78 MiB -1 -1 0.24 17808 13 0.40 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 24.4 MiB 1.06 1281 8502 2158 5508 836 62.8 MiB 0.10 0.00 8.03603 -175.042 -8.03603 8.03603 0.65 0.000959768 0.000888383 0.0483244 0.0447435 38 3308 18 6.79088e+06 269440 678818. 2348.85 2.31 0.231242 0.201636 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0325747 0.0288739 139 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 5.32 vpr 62.22 MiB -1 -1 0.18 17192 11 0.17 -1 -1 32440 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 23.7 MiB 1.33 1102 10183 2765 6008 1410 62.2 MiB 0.10 0.00 6.80233 -145.463 -6.80233 6.80233 0.66 0.00072524 0.000671389 0.048901 0.0453126 30 2820 19 6.79088e+06 175136 556674. 1926.21 1.21 0.136328 0.120444 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0255831 0.0226176 94 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 7.39 vpr 62.83 MiB -1 -1 0.27 17608 12 0.28 -1 -1 32864 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1332 7953 2031 5347 575 62.8 MiB 0.09 0.00 7.73069 -165.16 -7.73069 7.73069 0.65 0.000964 0.000890569 0.0456717 0.0421955 38 3533 25 6.79088e+06 269440 678818. 2348.85 3.10 0.2487 0.21573 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0346728 0.030597 146 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 17.34 vpr 62.52 MiB -1 -1 0.22 17532 12 0.22 -1 -1 32636 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 24.1 MiB 1.16 1053 12008 3553 6389 2066 62.5 MiB 0.11 0.00 7.28149 -150.89 -7.28149 7.28149 0.65 0.000789131 0.000731414 0.0561785 0.052091 44 2625 43 6.79088e+06 242496 787024. 2723.27 13.11 0.416319 0.359089 27118 194962 -1 2033 17 1102 2951 150094 35597 6.20493 6.20493 -138.957 -6.20493 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0289711 0.0255532 113 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 11.84 vpr 62.28 MiB -1 -1 0.17 17532 12 0.18 -1 -1 32664 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 23.7 MiB 1.03 903 6163 1336 4643 184 62.3 MiB 0.07 0.00 7.56546 -146.033 -7.56546 7.56546 0.66 0.000727775 0.000672303 0.0300188 0.0277792 30 2736 29 6.79088e+06 229024 556674. 1926.21 7.93 0.241243 0.208577 24526 138013 -1 2112 20 907 2572 134816 30941 6.67032 6.67032 -143.964 -6.67032 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0307648 0.0270191 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 7.43 vpr 62.76 MiB -1 -1 0.27 17588 12 0.27 -1 -1 32760 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 24.1 MiB 2.03 1197 6039 1341 4100 598 62.8 MiB 0.07 0.00 7.39356 -141.853 -7.39356 7.39356 0.66 0.000910431 0.000843034 0.0322218 0.0298629 40 2765 18 6.79088e+06 350272 706193. 2443.58 2.24 0.208922 0.180663 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.24 0.11 0.15 -1 -1 0.24 0.0402835 0.0355281 140 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 12.11 vpr 63.02 MiB -1 -1 0.27 17712 13 0.33 -1 -1 32716 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 24.5 MiB 0.98 1362 9111 2298 6252 561 63.0 MiB 0.11 0.00 7.91407 -168.647 -7.91407 7.91407 0.66 0.00103286 0.000955684 0.0534875 0.0494396 36 4498 41 6.79088e+06 309856 648988. 2245.63 7.58 0.300084 0.261512 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.21 0.16 0.13 -1 -1 0.21 0.0506363 0.0442805 160 236 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 8.05 vpr 62.77 MiB -1 -1 0.26 17760 12 0.21 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 24.1 MiB 1.19 1278 7770 1751 5660 359 62.8 MiB 0.09 0.00 7.73336 -164.138 -7.73336 7.73336 0.66 0.000950024 0.000880739 0.0438339 0.0405982 38 3570 28 6.79088e+06 269440 678818. 2348.85 3.72 0.247019 0.215267 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0375635 0.033073 140 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 7.66 vpr 62.12 MiB -1 -1 0.16 17516 12 0.13 -1 -1 32500 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 23.6 MiB 1.77 988 4473 916 3372 185 62.1 MiB 0.05 0.00 7.24997 -147.671 -7.24997 7.24997 0.65 0.000707291 0.00065618 0.022194 0.0205907 36 2682 24 6.79088e+06 202080 648988. 2245.63 3.09 0.163083 0.140565 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0271049 0.0238525 93 120 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 8.12 vpr 62.38 MiB -1 -1 0.26 17720 12 0.24 -1 -1 32464 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 23.7 MiB 1.32 1084 12898 3877 6797 2224 62.4 MiB 0.12 0.00 7.21455 -151.198 -7.21455 7.21455 0.65 0.000785101 0.000727172 0.0602524 0.0557564 36 2934 32 6.79088e+06 255968 648988. 2245.63 3.73 0.228521 0.199143 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0290961 0.0256175 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 7.23 vpr 62.61 MiB -1 -1 0.19 17712 11 0.18 -1 -1 32748 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 24.0 MiB 1.38 1115 8626 2299 5376 951 62.6 MiB 0.09 0.00 6.84847 -137.093 -6.84847 6.84847 0.64 0.00087515 0.000810387 0.0460887 0.0426746 36 3085 31 6.79088e+06 269440 648988. 2245.63 2.91 0.23545 0.204587 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0311055 0.0274402 125 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 7.94 vpr 62.77 MiB -1 -1 0.24 17448 11 0.20 -1 -1 32728 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 24.3 MiB 1.17 1077 4642 990 3215 437 62.8 MiB 0.05 0.00 6.39394 -126.807 -6.39394 6.39394 0.65 0.000818836 0.000759181 0.0254812 0.0236803 36 2869 37 6.79088e+06 255968 648988. 2245.63 3.73 0.210239 0.181067 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.23 0.09 0.15 -1 -1 0.23 0.0336194 0.0294236 116 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 6.54 vpr 62.34 MiB -1 -1 0.25 17672 13 0.21 -1 -1 32832 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63832 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 23.9 MiB 1.64 1115 9196 2684 4764 1748 62.3 MiB 0.09 0.00 7.27805 -147.461 -7.27805 7.27805 0.65 0.000768155 0.00071176 0.0442552 0.0410236 30 3203 46 6.79088e+06 242496 556674. 1926.21 1.93 0.166825 0.145915 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0293136 0.0258055 108 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 7.06 vpr 62.60 MiB -1 -1 0.21 17796 12 0.19 -1 -1 32648 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 24.0 MiB 1.91 1193 6490 1485 4564 441 62.6 MiB 0.08 0.00 7.26273 -167.563 -7.26273 7.26273 0.70 0.000865632 0.000802658 0.0357254 0.0331438 40 2753 23 6.79088e+06 242496 706193. 2443.58 2.09 0.205279 0.177919 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0288037 0.0255448 120 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 10.18 vpr 62.44 MiB -1 -1 0.21 17456 13 0.28 -1 -1 32884 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.58 1194 6123 1343 4442 338 62.4 MiB 0.07 0.00 8.79477 -171.911 -8.79477 8.79477 0.65 0.000909552 0.00084276 0.0339932 0.0315285 34 3211 26 6.79088e+06 282912 618332. 2139.56 5.44 0.321229 0.276006 25102 150614 -1 2646 15 1148 3180 179176 40712 7.64065 7.64065 -158.33 -7.64065 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0286905 0.0257446 137 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 8.43 vpr 62.83 MiB -1 -1 0.27 17720 14 0.25 -1 -1 32844 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1287 8685 2330 5621 734 62.8 MiB 0.10 0.00 8.66267 -183.033 -8.66267 8.66267 0.67 0.000928874 0.000860025 0.0478698 0.0443494 38 3763 48 6.79088e+06 269440 678818. 2348.85 4.10 0.278372 0.241265 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0331172 0.0292745 132 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 8.43 vpr 62.61 MiB -1 -1 0.27 17892 14 0.27 -1 -1 32828 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 1.95 1083 11456 4044 5385 2027 62.6 MiB 0.12 0.00 7.96611 -159.164 -7.96611 7.96611 0.65 0.000881636 0.000816576 0.0622222 0.0574787 38 3010 34 6.79088e+06 229024 678818. 2348.85 3.38 0.258565 0.225222 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0376211 0.0330015 122 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 7.45 vpr 62.79 MiB -1 -1 0.27 17928 13 0.32 -1 -1 32968 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 24.3 MiB 1.65 1338 8024 1861 5707 456 62.8 MiB 0.09 0.00 8.29812 -170.177 -8.29812 8.29812 0.65 0.000965207 0.00089395 0.0441122 0.0407986 46 3286 28 6.79088e+06 296384 828058. 2865.25 2.50 0.245244 0.212847 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.27 0.09 0.17 -1 -1 0.27 0.0397766 0.0354187 144 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 7.42 vpr 62.18 MiB -1 -1 0.23 17568 13 0.18 -1 -1 32308 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 23.6 MiB 1.87 919 12292 3407 6536 2349 62.2 MiB 0.12 0.00 7.20737 -146.133 -7.20737 7.20737 0.68 0.000743444 0.000666756 0.061928 0.0572142 36 2720 18 6.79088e+06 242496 648988. 2245.63 2.40 0.215805 0.188786 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0324101 0.0284635 104 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 9.19 vpr 62.99 MiB -1 -1 0.21 17928 13 0.42 -1 -1 32736 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 24.6 MiB 1.62 1350 9234 2593 5787 854 63.0 MiB 0.11 0.00 8.31996 -168.69 -8.31996 8.31996 0.65 0.000974617 0.000903546 0.053231 0.0493392 38 3825 50 6.79088e+06 296384 678818. 2348.85 4.28 0.292479 0.254009 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.22 0.11 0.14 -1 -1 0.22 0.0402904 0.0353792 145 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 7.05 vpr 62.64 MiB -1 -1 0.27 17776 14 0.30 -1 -1 32800 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1251 6312 1329 4019 964 62.6 MiB 0.07 0.00 8.37235 -176.058 -8.37235 8.37235 0.64 0.00090551 0.000834693 0.0358375 0.0328502 40 3069 17 6.79088e+06 242496 706193. 2443.58 2.33 0.212659 0.18395 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0426835 0.0378243 128 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 7.53 vpr 62.49 MiB -1 -1 0.27 17796 13 0.23 -1 -1 32784 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 24.0 MiB 1.71 1125 7914 1884 5216 814 62.5 MiB 0.09 0.00 7.39828 -160.2 -7.39828 7.39828 0.65 0.000876069 0.000811907 0.0427174 0.0395962 38 3005 21 6.79088e+06 255968 678818. 2348.85 2.74 0.213607 0.185434 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.22 0.05 0.17 -1 -1 0.22 0.0230078 0.0205603 124 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 7.38 vpr 62.81 MiB -1 -1 0.25 17932 13 0.23 -1 -1 32868 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 24.3 MiB 1.63 1096 8306 2939 4353 1014 62.8 MiB 0.09 0.00 7.45237 -146.107 -7.45237 7.45237 0.65 0.000857025 0.000793693 0.0443665 0.0411091 38 3152 24 6.79088e+06 255968 678818. 2348.85 2.76 0.216677 0.188092 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.23 0.08 0.11 -1 -1 0.23 0.0341025 0.030437 121 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 7.91 vpr 62.83 MiB -1 -1 0.27 17692 14 0.35 -1 -1 32944 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.55 1434 9943 2708 5582 1653 62.8 MiB 0.11 0.00 8.52022 -179.043 -8.52022 8.52022 0.64 0.00100723 0.000932803 0.0579384 0.0537278 46 3715 29 6.79088e+06 282912 828058. 2865.25 3.04 0.267619 0.233205 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.26 0.12 0.14 -1 -1 0.26 0.0448511 0.0395654 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 9.67 vpr 62.53 MiB -1 -1 0.17 17940 11 0.27 -1 -1 32740 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 24.0 MiB 1.90 1077 10149 2679 5779 1691 62.5 MiB 0.10 0.00 7.52622 -140.559 -7.52622 7.52622 0.65 0.000873623 0.000809523 0.0521758 0.0483369 36 3431 24 6.79088e+06 309856 648988. 2245.63 4.73 0.237179 0.20644 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0366056 0.032081 136 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 7.56 vpr 62.23 MiB -1 -1 0.21 17252 13 0.16 -1 -1 32704 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 23.6 MiB 2.80 972 6054 1229 4689 136 62.2 MiB 0.07 0.00 6.97458 -160.094 -6.97458 6.97458 0.66 0.000731567 0.000670611 0.0301581 0.027919 44 2580 35 6.79088e+06 188608 787024. 2723.27 1.85 0.191086 0.165454 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.25 0.06 0.16 -1 -1 0.25 0.0244777 0.0216755 98 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 9.08 vpr 62.61 MiB -1 -1 0.27 17804 14 0.23 -1 -1 32576 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 24.1 MiB 1.57 963 3581 624 2890 67 62.6 MiB 0.05 0.00 8.38402 -165.799 -8.38402 8.38402 0.65 0.000872635 0.000809054 0.0214483 0.0199319 36 3137 33 6.79088e+06 229024 648988. 2245.63 4.36 0.206494 0.178374 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.23 0.10 0.14 -1 -1 0.23 0.0408096 0.0357007 122 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 20.72 vpr 63.18 MiB -1 -1 0.28 18008 15 0.42 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 24.6 MiB 1.43 1424 5271 949 4056 266 63.2 MiB 0.08 0.00 9.1358 -193.594 -9.1358 9.1358 0.66 0.00108542 0.00100548 0.0353689 0.0328252 40 3948 49 6.79088e+06 309856 706193. 2443.58 15.69 0.529677 0.455669 26254 175826 -1 3616 22 2383 6323 430097 92001 7.89475 7.89475 -181.053 -7.89475 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0484684 0.0424736 163 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 5.64 vpr 62.25 MiB -1 -1 0.22 17532 11 0.17 -1 -1 32620 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 23.7 MiB 1.53 958 10726 3368 5272 2086 62.2 MiB 0.10 0.00 6.79222 -142.45 -6.79222 6.79222 0.65 0.000707321 0.000655175 0.0477879 0.0442632 30 2689 41 6.79088e+06 202080 556674. 1926.21 1.22 0.157214 0.138108 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0271602 0.0239095 97 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 16.28 vpr 62.40 MiB -1 -1 0.23 17540 12 0.18 -1 -1 32796 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63896 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 24.0 MiB 1.47 1114 10400 2653 5866 1881 62.4 MiB 0.10 0.00 6.63358 -148.815 -6.63358 6.63358 0.65 0.000783151 0.000724845 0.0506235 0.0469023 38 3230 30 6.79088e+06 229024 678818. 2348.85 11.72 0.337755 0.291231 25966 169698 -1 2582 19 1265 3460 189795 41991 5.82549 5.82549 -148.72 -5.82549 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0310915 0.0273246 112 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 15.10 vpr 63.05 MiB -1 -1 0.20 17796 12 0.29 -1 -1 32864 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 24.7 MiB 1.13 1409 5123 1016 3643 464 63.1 MiB 0.07 0.00 7.37446 -165.375 -7.37446 7.37446 0.65 0.000979177 0.000906734 0.0318864 0.029534 38 3552 27 6.79088e+06 255968 678818. 2348.85 10.95 0.384941 0.330118 25966 169698 -1 3027 19 1404 4076 214650 48148 6.46241 6.46241 -154.792 -6.46241 0 0 902133. 3121.57 0.21 0.05 0.09 -1 -1 0.21 0.0227835 0.0205403 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 23.27 vpr 62.73 MiB -1 -1 0.24 17664 12 0.23 -1 -1 32768 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1290 8804 2224 5446 1134 62.7 MiB 0.10 0.00 7.66631 -156.992 -7.66631 7.66631 0.66 0.000898425 0.000832859 0.0465402 0.0430774 38 3773 50 6.79088e+06 242496 678818. 2348.85 18.25 0.410315 0.353158 25966 169698 -1 2908 20 1397 4117 236922 51526 6.45897 6.45897 -151.356 -6.45897 0 0 902133. 3121.57 0.26 0.10 0.14 -1 -1 0.26 0.0368022 0.0323183 130 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 7.67 vpr 63.00 MiB -1 -1 0.24 17948 14 0.44 -1 -1 32764 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 24.5 MiB 1.70 1339 6323 1159 4879 285 63.0 MiB 0.10 0.00 9.2305 -183.989 -9.2305 9.2305 0.65 0.00140765 0.00132703 0.0490847 0.0454788 38 3705 30 6.79088e+06 296384 678818. 2348.85 2.74 0.273579 0.237473 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0419256 0.0370252 167 233 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 10.18 vpr 62.55 MiB -1 -1 0.22 17644 12 0.23 -1 -1 32680 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1023 10231 4165 5804 262 62.6 MiB 0.11 0.00 7.21752 -140.072 -7.21752 7.21752 0.65 0.000835646 0.000774212 0.0529946 0.0491438 36 3532 36 6.79088e+06 255968 648988. 2245.63 5.62 0.240193 0.208887 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.21 0.08 0.15 -1 -1 0.21 0.0297913 0.0262521 121 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 5.65 vpr 62.30 MiB -1 -1 0.21 17532 11 0.18 -1 -1 32712 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.7 MiB 1.95 852 9208 3256 4555 1397 62.3 MiB 0.09 0.00 7.04622 -127.422 -7.04622 7.04622 0.65 0.000845715 0.000776443 0.0457971 0.0422499 30 2286 23 6.79088e+06 255968 556674. 1926.21 0.93 0.133927 0.117743 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.19 0.03 0.08 -1 -1 0.19 0.0150397 0.0136307 104 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 9.05 vpr 63.68 MiB -1 -1 0.21 18336 13 0.45 -1 -1 32772 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 25.1 MiB 1.56 1698 8532 2074 5800 658 63.7 MiB 0.11 0.00 7.91451 -163.387 -7.91451 7.91451 0.65 0.00118298 0.00109418 0.0556205 0.0514842 46 4524 47 6.79088e+06 350272 828058. 2865.25 4.10 0.342616 0.297791 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.25 0.12 0.20 -1 -1 0.25 0.0455711 0.0402934 188 286 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 6.55 vpr 62.71 MiB -1 -1 0.27 17660 14 0.25 -1 -1 33104 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 24.2 MiB 1.65 1264 9385 2554 5852 979 62.7 MiB 0.11 0.00 8.41881 -168.357 -8.41881 8.41881 0.66 0.000898228 0.000832554 0.0523551 0.0485148 30 3443 28 6.79088e+06 296384 556674. 1926.21 1.83 0.169242 0.148826 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.032728 0.0288308 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 6.81 vpr 62.23 MiB -1 -1 0.20 17896 12 0.16 -1 -1 32372 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 23.6 MiB 1.52 1075 7736 1882 5428 426 62.2 MiB 0.08 0.00 7.20863 -155.968 -7.20863 7.20863 0.65 0.00075905 0.000702481 0.0361966 0.0335103 38 2746 23 6.79088e+06 242496 678818. 2348.85 2.38 0.191376 0.166702 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.029007 0.0255949 109 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 8.59 vpr 62.51 MiB -1 -1 0.25 17608 13 0.27 -1 -1 32784 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 24.0 MiB 1.32 1233 12542 3940 6787 1815 62.5 MiB 0.12 0.00 8.09146 -166.475 -8.09146 8.09146 0.71 0.000681578 0.000622674 0.0550873 0.0505615 36 3202 30 6.79088e+06 242496 648988. 2245.63 4.13 0.246259 0.213837 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0334718 0.0294138 128 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 7.65 vpr 62.91 MiB -1 -1 0.28 17928 13 0.31 -1 -1 32752 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1392 4695 845 3563 287 62.9 MiB 0.06 0.00 7.47587 -155.329 -7.47587 7.47587 0.65 0.0010339 0.00095697 0.0295175 0.0274024 40 3664 28 6.79088e+06 323328 706193. 2443.58 2.85 0.245988 0.212609 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.22 0.11 0.10 -1 -1 0.22 0.0395743 0.0348946 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 8.26 vpr 62.71 MiB -1 -1 0.14 17608 11 0.28 -1 -1 32740 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1218 4659 929 3342 388 62.7 MiB 0.06 0.00 7.06923 -144.171 -7.06923 7.06923 0.65 0.000916995 0.000849041 0.0274923 0.0255304 36 3280 38 6.79088e+06 296384 648988. 2245.63 3.72 0.233118 0.201034 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0311014 0.0275112 141 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 7.41 vpr 62.82 MiB -1 -1 0.27 17804 15 0.36 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 24.4 MiB 1.42 1290 8402 2178 5761 463 62.8 MiB 0.10 0.00 8.74612 -186.954 -8.74612 8.74612 0.66 0.000964758 0.000892134 0.0474366 0.0438387 46 3189 27 6.79088e+06 296384 828058. 2865.25 2.52 0.248594 0.215819 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.25 0.19 0.17 -1 -1 0.25 0.056822 0.0500496 147 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 14.89 vpr 62.82 MiB -1 -1 0.23 18124 13 0.33 -1 -1 32884 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1316 8641 2148 5636 857 62.8 MiB 0.11 0.00 8.07216 -175.63 -8.07216 8.07216 0.68 0.000946833 0.000874917 0.0541162 0.0498246 40 2999 17 6.79088e+06 282912 706193. 2443.58 9.83 0.424357 0.365352 26254 175826 -1 2987 16 1343 3851 238119 53175 7.04981 7.04981 -167.947 -7.04981 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0334408 0.0295524 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 7.66 vpr 62.29 MiB -1 -1 0.16 17344 12 0.22 -1 -1 32768 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 23.7 MiB 1.58 864 9543 2234 6923 386 62.3 MiB 0.09 0.00 7.58072 -150.751 -7.58072 7.58072 0.65 0.000773525 0.000716648 0.0468196 0.0434067 38 2787 32 6.79088e+06 242496 678818. 2348.85 3.17 0.216181 0.188585 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0272769 0.0241865 111 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 7.52 vpr 62.26 MiB -1 -1 0.18 17384 11 0.15 -1 -1 32716 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 23.7 MiB 1.47 1018 5722 1217 4259 246 62.3 MiB 0.06 0.00 6.71746 -144.764 -6.71746 6.71746 0.65 0.000732968 0.000678426 0.0280205 0.0259502 36 2822 26 6.79088e+06 188608 648988. 2245.63 3.27 0.183893 0.159153 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268965 0.0236881 98 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 6.71 vpr 63.02 MiB -1 -1 0.23 17804 13 0.32 -1 -1 32860 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.06 1236 5940 1259 4215 466 63.0 MiB 0.07 0.00 8.31912 -162.691 -8.31912 8.31912 0.63 0.000940237 0.00087034 0.0346031 0.0320733 38 3344 20 6.79088e+06 282912 678818. 2348.85 2.52 0.223054 0.19318 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0343245 0.0303667 143 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 5.83 vpr 62.20 MiB -1 -1 0.23 17456 10 0.17 -1 -1 32612 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63692 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.6 MiB 1.72 951 4560 1025 3135 400 62.2 MiB 0.05 0.00 6.21922 -128.027 -6.21922 6.21922 0.65 0.000716763 0.000657006 0.0223085 0.0206811 30 2695 24 6.79088e+06 229024 556674. 1926.21 1.30 0.109873 0.0956216 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0271188 0.0238687 101 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 9.35 vpr 62.27 MiB -1 -1 0.22 17324 14 0.24 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 23.9 MiB 2.58 984 4532 878 3142 512 62.3 MiB 0.05 0.00 7.85466 -160.915 -7.85466 7.85466 0.64 0.000766674 0.000709896 0.0227193 0.0210875 34 3083 47 6.79088e+06 242496 618332. 2139.56 3.83 0.204591 0.176135 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0293702 0.0258739 110 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 8.13 vpr 62.80 MiB -1 -1 0.14 17868 13 0.28 -1 -1 32948 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 24.1 MiB 2.48 1210 8183 2048 5045 1090 62.8 MiB 0.09 0.00 7.80505 -164.773 -7.80505 7.80505 0.65 0.000878916 0.0008158 0.0433158 0.0401964 38 3002 19 6.79088e+06 269440 678818. 2348.85 2.57 0.218098 0.189906 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0307016 0.0271404 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 8.07 vpr 62.19 MiB -1 -1 0.26 17532 12 0.15 -1 -1 32752 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 23.6 MiB 3.13 940 12120 3498 6380 2242 62.2 MiB 0.11 0.00 6.85518 -144.407 -6.85518 6.85518 0.69 0.000712568 0.000660271 0.0533869 0.0494021 46 2350 15 6.79088e+06 229024 828058. 2865.25 1.86 0.186996 0.16356 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0263719 0.023268 99 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 6.78 vpr 62.71 MiB -1 -1 0.14 17628 12 0.19 -1 -1 32828 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 24.1 MiB 1.88 1190 9694 2639 6567 488 62.7 MiB 0.10 0.00 7.04874 -155.773 -7.04874 7.04874 0.65 0.00089854 0.000830153 0.0526673 0.0486103 46 2758 18 6.79088e+06 242496 828058. 2865.25 1.87 0.228255 0.198512 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0312418 0.0276397 130 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 14.76 vpr 62.75 MiB -1 -1 0.15 18080 13 0.28 -1 -1 32860 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 24.3 MiB 1.10 1303 8543 2004 5667 872 62.8 MiB 0.08 0.00 7.83951 -165.716 -7.83951 7.83951 0.65 0.00050416 0.000464237 0.0360554 0.033174 38 3278 20 6.79088e+06 269440 678818. 2348.85 10.59 0.370296 0.318104 25966 169698 -1 2822 21 1439 4066 220511 48947 6.93332 6.93332 -157.758 -6.93332 0 0 902133. 3121.57 0.22 0.10 0.12 -1 -1 0.22 0.0404928 0.035564 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 7.13 vpr 62.29 MiB -1 -1 0.18 17632 11 0.19 -1 -1 32672 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 23.6 MiB 1.79 1116 6616 1429 3881 1306 62.3 MiB 0.07 0.00 6.2158 -147.345 -6.2158 6.2158 0.70 0.000747522 0.000691696 0.0322993 0.0299386 36 3218 33 6.79088e+06 215552 648988. 2245.63 2.42 0.141248 0.123013 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0266569 0.0235764 106 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 8.90 vpr 62.53 MiB -1 -1 0.14 17632 13 0.21 -1 -1 32620 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 2.37 994 9543 2876 4545 2122 62.5 MiB 0.10 0.00 7.66009 -161.63 -7.66009 7.66009 0.65 0.000830116 0.00076882 0.050397 0.0466143 38 3161 25 6.79088e+06 202080 678818. 2348.85 3.65 0.224886 0.195856 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.22 0.08 0.10 -1 -1 0.22 0.03599 0.0318113 113 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 13.89 vpr 62.71 MiB -1 -1 0.25 17612 13 0.25 -1 -1 32812 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 24.1 MiB 1.13 1317 8183 2040 5445 698 62.7 MiB 0.11 0.00 7.48608 -168.657 -7.48608 7.48608 0.65 0.000914516 0.000847478 0.0551502 0.0511117 38 3334 18 6.79088e+06 255968 678818. 2348.85 9.73 0.354683 0.306528 25966 169698 -1 2836 17 1443 3829 193627 45163 6.69849 6.69849 -160.313 -6.69849 0 0 902133. 3121.57 0.21 0.05 0.09 -1 -1 0.21 0.0200468 0.0181363 136 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 10.55 vpr 62.36 MiB -1 -1 0.15 17612 11 0.20 -1 -1 32716 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 23.9 MiB 1.90 932 11088 4572 6163 353 62.4 MiB 0.11 0.00 6.40374 -127.638 -6.40374 6.40374 0.65 0.000801018 0.00074125 0.0547768 0.0507128 38 3204 35 6.79088e+06 255968 678818. 2348.85 5.69 0.236168 0.205034 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0286278 0.0252208 116 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 14.82 vpr 62.88 MiB -1 -1 0.29 18188 14 0.28 -1 -1 33236 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1275 12567 3064 6849 2654 62.9 MiB 0.14 0.00 8.90517 -187.129 -8.90517 8.90517 0.65 0.0010339 0.000956874 0.0715932 0.0662943 38 3597 20 6.79088e+06 309856 678818. 2348.85 10.19 0.439662 0.381301 25966 169698 -1 2719 15 1368 3478 182247 41956 8.06351 8.06351 -178.421 -8.06351 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0360619 0.0320409 159 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 7.91 vpr 62.21 MiB -1 -1 0.22 17232 12 0.15 -1 -1 32596 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 23.6 MiB 2.21 1076 14144 4263 7957 1924 62.2 MiB 0.12 0.00 6.67019 -155.032 -6.67019 6.67019 0.69 0.000713237 0.000660783 0.0604007 0.0558645 38 2834 33 6.79088e+06 255968 678818. 2348.85 2.67 0.21709 0.189595 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0266677 0.0235326 106 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 17.51 vpr 62.73 MiB -1 -1 0.28 18092 13 0.29 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 24.1 MiB 1.40 1249 10698 2850 6495 1353 62.7 MiB 0.13 0.00 8.17702 -169.59 -8.17702 8.17702 0.66 0.001072 0.000985281 0.0626055 0.0578089 38 3574 20 6.79088e+06 269440 678818. 2348.85 12.84 0.409832 0.354528 25966 169698 -1 2827 19 1307 3681 195634 44638 7.25013 7.25013 -165.64 -7.25013 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0369141 0.0325406 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 13.56 vpr 62.31 MiB -1 -1 0.25 17664 13 0.18 -1 -1 32596 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 23.7 MiB 1.07 988 12528 4457 5893 2178 62.3 MiB 0.11 0.00 7.60722 -166.135 -7.60722 7.60722 0.67 0.000623747 0.000572637 0.0551689 0.0510352 38 2718 29 6.79088e+06 269440 678818. 2348.85 9.38 0.340964 0.294778 25966 169698 -1 2116 22 1062 2686 131823 31124 6.36938 6.36938 -151.235 -6.36938 0 0 902133. 3121.57 0.24 0.08 0.17 -1 -1 0.24 0.0334932 0.0293257 107 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 14.02 vpr 62.55 MiB -1 -1 0.27 17720 12 0.22 -1 -1 32792 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 24.0 MiB 1.42 1129 6563 1390 4948 225 62.5 MiB 0.07 0.00 7.37103 -160.155 -7.37103 7.37103 0.64 0.000889299 0.000823022 0.0358567 0.0332178 30 3342 45 6.79088e+06 255968 556674. 1926.21 9.55 0.292427 0.252169 24526 138013 -1 2538 16 1126 3371 177495 40121 6.37287 6.37287 -151.837 -6.37287 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0327592 0.0289556 128 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 7.72 vpr 63.19 MiB -1 -1 0.29 18320 15 0.47 -1 -1 33276 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 24.6 MiB 1.10 1461 7019 1723 4462 834 63.2 MiB 0.10 0.00 9.4802 -194.196 -9.4802 9.4802 0.65 0.00113845 0.00105155 0.0464561 0.0429446 40 3857 20 6.79088e+06 336800 706193. 2443.58 3.05 0.276363 0.240302 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0478573 0.0421308 183 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 5.51 vpr 61.83 MiB -1 -1 0.18 17408 10 0.10 -1 -1 32084 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63316 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 23.2 MiB 1.47 790 7049 2015 4252 782 61.8 MiB 0.07 0.00 4.74332 -119.113 -4.74332 4.74332 0.66 0.000623954 0.000575914 0.032296 0.0299963 30 2094 24 6.79088e+06 161664 556674. 1926.21 1.30 0.103114 0.0905478 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0186289 0.0163997 66 84 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 7.55 vpr 62.33 MiB -1 -1 0.23 17380 13 0.26 -1 -1 32648 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 23.9 MiB 1.52 974 10050 2926 5436 1688 62.3 MiB 0.10 0.00 7.74787 -157.983 -7.74787 7.74787 0.66 0.00074975 0.000694987 0.0480186 0.0445213 36 2911 43 6.79088e+06 229024 648988. 2245.63 2.96 0.220104 0.191561 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0256494 0.0227623 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 7.55 vpr 62.39 MiB -1 -1 0.24 17368 12 0.20 -1 -1 32576 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 23.9 MiB 1.86 1289 8448 2191 5318 939 62.4 MiB 0.08 0.00 7.18863 -160.485 -7.18863 7.18863 0.65 0.000666816 0.000609929 0.040015 0.0369608 38 3079 21 6.79088e+06 242496 678818. 2348.85 2.62 0.209597 0.181868 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.25 0.09 0.15 -1 -1 0.25 0.032691 0.0291593 117 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 4.73 vpr 61.87 MiB -1 -1 0.21 17276 9 0.16 -1 -1 32436 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63356 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 23.4 MiB 0.84 752 9555 2712 5903 940 61.9 MiB 0.08 0.00 5.16629 -99.605 -5.16629 5.16629 0.65 0.0006068 0.000563059 0.0391518 0.0363286 30 2043 29 6.79088e+06 242496 556674. 1926.21 1.03 0.119647 0.104938 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0222117 0.0195227 86 110 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 9.02 vpr 62.81 MiB -1 -1 0.28 17804 12 0.28 -1 -1 32764 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 24.2 MiB 1.48 1312 13291 3621 7142 2528 62.8 MiB 0.14 0.00 7.35568 -164.212 -7.35568 7.35568 0.65 0.000958128 0.000883732 0.0721738 0.0667278 38 3697 28 6.79088e+06 282912 678818. 2348.85 4.27 0.279409 0.2443 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0353262 0.0311867 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 11.45 vpr 62.98 MiB -1 -1 0.24 18156 13 0.34 -1 -1 32640 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 24.3 MiB 1.84 1311 13291 3763 7122 2406 63.0 MiB 0.14 0.00 8.3208 -173.057 -8.3208 8.3208 0.65 0.000959909 0.000888605 0.0729051 0.0675704 34 4579 49 6.79088e+06 296384 618332. 2139.56 6.42 0.306009 0.266335 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.20 0.11 0.10 -1 -1 0.20 0.0395762 0.0346816 147 199 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.19 vpr 63.10 MiB -1 -1 0.21 17644 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 24.5 MiB 2.76 1137 15768 5063 8031 2674 63.1 MiB 0.15 0.00 5.46262 -163.811 -5.46262 5.46262 0.65 0.00070409 0.000653812 0.0576114 0.0535097 34 2793 23 6.87369e+06 363320 618332. 2139.56 1.63 0.195823 0.171564 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0251416 0.0219712 142 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.63 vpr 62.78 MiB -1 -1 0.16 17812 1 0.03 -1 -1 30328 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 24.3 MiB 2.40 995 9347 2406 6094 847 62.8 MiB 0.10 0.00 4.40625 -134.148 -4.40625 4.40625 0.69 0.000705981 0.000656157 0.0372348 0.0346051 34 2568 29 6.87369e+06 335372 618332. 2139.56 1.46 0.182543 0.158598 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.23 0.08 0.14 -1 -1 0.23 0.0285205 0.0248281 138 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.26 vpr 62.75 MiB -1 -1 0.14 17252 1 0.03 -1 -1 30216 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.3 MiB 2.23 954 15337 4637 8345 2355 62.8 MiB 0.13 0.00 4.42735 -120.659 -4.42735 4.42735 0.65 0.000624243 0.000580482 0.0536864 0.0498778 34 2485 25 6.87369e+06 293451 618332. 2139.56 1.31 0.178056 0.155745 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0245786 0.0214086 124 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.47 vpr 62.72 MiB -1 -1 0.19 17240 1 0.03 -1 -1 30200 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.3 MiB 1.14 990 16170 4805 9691 1674 62.7 MiB 0.15 0.00 4.56722 -126.881 -4.56722 4.56722 0.67 0.000637932 0.000592899 0.0538523 0.0500278 34 2380 21 6.87369e+06 405241 618332. 2139.56 1.48 0.178616 0.156249 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0278217 0.0240918 124 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 5.13 vpr 62.79 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30420 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.3 MiB 1.17 1020 12127 3332 7989 806 62.8 MiB 0.12 0.00 4.58138 -135.491 -4.58138 4.58138 0.66 0.000694499 0.000643039 0.0429769 0.039757 28 2864 24 6.87369e+06 377294 531479. 1839.03 1.17 0.128001 0.112649 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.17 0.10 0.12 -1 -1 0.17 0.0290406 0.0251452 131 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.01 vpr 62.90 MiB -1 -1 0.19 17668 1 0.03 -1 -1 30244 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.4 MiB 1.28 1076 15643 4151 9274 2218 62.9 MiB 0.15 0.00 3.36233 -119.977 -3.36233 3.36233 0.71 0.000714931 0.000663986 0.0565832 0.0525297 28 2604 23 6.87369e+06 419215 531479. 1839.03 0.85 0.14168 0.125343 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0287567 0.0249748 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.85 vpr 62.35 MiB -1 -1 0.09 17636 1 0.02 -1 -1 30572 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 23.9 MiB 1.97 768 11200 3422 6221 1557 62.3 MiB 0.09 0.00 3.88482 -108.503 -3.88482 3.88482 0.68 0.000560721 0.000522478 0.0396043 0.0368208 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.26 0.144501 0.125822 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.021465 0.0185863 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.88 vpr 62.58 MiB -1 -1 0.14 17192 1 0.04 -1 -1 30196 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.9 MiB 0.80 962 13487 3595 7903 1989 62.6 MiB 0.11 0.00 3.53179 -106.578 -3.53179 3.53179 0.68 0.000601365 0.000559226 0.0396837 0.0368249 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.32 0.153848 0.134091 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.21 0.06 0.15 -1 -1 0.21 0.0228786 0.0198494 119 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.64 vpr 62.80 MiB -1 -1 0.17 17796 1 0.04 -1 -1 30072 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 24.1 MiB 2.41 925 12636 4369 6197 2070 62.8 MiB 0.12 0.00 3.30197 -112.873 -3.30197 3.30197 0.68 0.000637278 0.000592469 0.0494775 0.0459495 36 2160 23 6.87369e+06 237555 648988. 2245.63 1.43 0.173401 0.151376 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0247673 0.0213637 113 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.27 vpr 62.48 MiB -1 -1 0.15 17532 1 0.03 -1 -1 30140 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 23.9 MiB 3.30 866 10916 3152 5921 1843 62.5 MiB 0.11 0.00 4.09393 -136.454 -4.09393 4.09393 0.65 0.000621617 0.000577916 0.0415333 0.0386277 34 2156 24 6.87369e+06 223581 618332. 2139.56 1.32 0.16394 0.142702 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0251029 0.0217948 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.64 vpr 62.42 MiB -1 -1 0.18 17312 1 0.03 -1 -1 30484 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 23.9 MiB 2.68 765 11532 2973 7641 918 62.4 MiB 0.11 0.00 4.09699 -119.415 -4.09699 4.09699 0.66 0.000619465 0.000575406 0.0447386 0.0416167 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.27 0.163821 0.142952 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0241675 0.0209708 98 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.26 vpr 62.48 MiB -1 -1 0.14 17428 1 0.03 -1 -1 30128 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 2.00 706 8306 1954 5512 840 62.5 MiB 0.07 0.00 3.6525 -111.833 -3.6525 3.6525 0.67 0.00059589 0.000554692 0.0299349 0.0278549 36 1988 27 6.87369e+06 237555 648988. 2245.63 1.49 0.15031 0.129941 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.21 0.06 0.19 -1 -1 0.21 0.0221819 0.0193374 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 7.74 vpr 62.82 MiB -1 -1 0.13 17900 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 3.26 1028 16599 6315 8361 1923 62.8 MiB 0.16 0.00 4.13563 -133.6 -4.13563 4.13563 0.65 0.000691537 0.000641612 0.0619952 0.0575244 34 3057 25 6.87369e+06 321398 618332. 2139.56 1.68 0.193784 0.170202 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0291575 0.0253637 142 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.80 vpr 62.83 MiB -1 -1 0.15 17644 1 0.03 -1 -1 30292 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.2 MiB 2.10 989 10031 2534 6882 615 62.8 MiB 0.12 0.00 4.81484 -142.23 -4.81484 4.81484 0.66 0.000726066 0.000675577 0.0381498 0.0353387 32 2593 24 6.87369e+06 433189 586450. 2029.24 0.95 0.125225 0.110047 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0292256 0.0253652 133 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 4.86 vpr 62.29 MiB -1 -1 0.18 17428 1 0.03 -1 -1 30076 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 23.8 MiB 1.46 614 5068 1019 3719 330 62.3 MiB 0.05 0.00 3.26207 -95.0897 -3.26207 3.26207 0.65 0.000545828 0.000508092 0.0176927 0.0164818 26 1919 28 6.87369e+06 265503 503264. 1741.40 0.85 0.0872141 0.0756189 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.17 0.07 0.11 -1 -1 0.17 0.0244057 0.0210255 94 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.19 vpr 62.81 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30352 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.2 MiB 1.91 1007 16078 5563 8042 2473 62.8 MiB 0.16 0.00 3.7063 -122.467 -3.7063 3.7063 0.65 0.000723366 0.000671639 0.0619367 0.0575177 34 2625 21 6.87369e+06 335372 618332. 2139.56 1.41 0.201058 0.176215 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.22 0.09 0.14 -1 -1 0.22 0.0304828 0.026565 135 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.80 vpr 62.75 MiB -1 -1 0.13 17820 1 0.03 -1 -1 30072 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.2 MiB 3.42 1032 15523 6549 8204 770 62.7 MiB 0.14 0.00 4.15353 -134.149 -4.15353 4.15353 0.65 0.000687651 0.000638921 0.0596259 0.0554172 34 2905 38 6.87369e+06 293451 618332. 2139.56 1.62 0.209006 0.182674 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.20 0.09 0.15 -1 -1 0.20 0.0292335 0.0255179 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.38 vpr 62.60 MiB -1 -1 0.18 17360 1 0.03 -1 -1 30284 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 23.9 MiB 2.16 847 14168 4025 7985 2158 62.6 MiB 0.12 0.00 3.09156 -110.795 -3.09156 3.09156 0.67 0.000649837 0.000603839 0.0464567 0.0431586 34 2031 19 6.87369e+06 391268 618332. 2139.56 1.31 0.169614 0.147798 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0276624 0.0239298 109 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.02 vpr 62.28 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30052 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 23.7 MiB 0.71 656 11276 3436 6760 1080 62.3 MiB 0.09 0.00 2.61023 -88.8242 -2.61023 2.61023 0.69 0.000506441 0.000471484 0.0369844 0.0344466 32 1559 23 6.87369e+06 195634 586450. 2029.24 0.79 0.0964402 0.0850471 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.18 0.03 0.08 -1 -1 0.18 0.0113342 0.00987645 71 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 6.60 vpr 62.54 MiB -1 -1 0.09 17508 1 0.03 -1 -1 30356 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 23.8 MiB 2.60 778 9338 2420 6492 426 62.5 MiB 0.10 0.00 4.95513 -145.252 -4.95513 4.95513 0.68 0.000618133 0.000575504 0.0346283 0.0321961 34 2105 23 6.87369e+06 265503 618332. 2139.56 1.30 0.154588 0.134267 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.22 0.06 0.15 -1 -1 0.22 0.0231485 0.0202505 116 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 4.82 vpr 62.89 MiB -1 -1 0.16 17900 1 0.03 -1 -1 30448 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.4 MiB 0.78 985 11499 2787 8050 662 62.9 MiB 0.13 0.00 4.26399 -136.517 -4.26399 4.26399 0.78 0.000689019 0.000640337 0.0453487 0.0420586 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.03 0.151615 0.132994 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.19 0.14 0.13 -1 -1 0.19 0.0451021 0.0394727 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 6.57 vpr 62.82 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30300 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.3 MiB 1.92 995 6701 1305 5169 227 62.8 MiB 0.08 0.00 4.31715 -129.69 -4.31715 4.31715 0.65 0.000727676 0.000676219 0.0281766 0.0261951 34 3077 27 6.87369e+06 307425 618332. 2139.56 1.87 0.174568 0.151026 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0301358 0.0262142 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 4.87 vpr 62.06 MiB -1 -1 0.10 17284 1 0.02 -1 -1 30584 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63548 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.5 MiB 1.49 371 10977 3839 5013 2125 62.1 MiB 0.07 0.00 2.58413 -70.3474 -2.58413 2.58413 0.65 0.000325942 0.000298068 0.0314335 0.0291581 28 1325 27 6.87369e+06 237555 531479. 1839.03 0.86 0.0860589 0.075611 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.18 0.05 0.12 -1 -1 0.18 0.0185013 0.0160006 67 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 4.54 vpr 62.68 MiB -1 -1 0.15 17192 1 0.03 -1 -1 30400 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 24.0 MiB 0.91 952 5847 1159 4467 221 62.7 MiB 0.06 0.00 4.63338 -129.909 -4.63338 4.63338 0.67 0.000619174 0.000576226 0.0211512 0.0196722 30 2387 25 6.87369e+06 321398 556674. 1926.21 0.92 0.0985804 0.085937 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0256282 0.0222463 119 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.80 vpr 61.97 MiB -1 -1 0.16 16984 1 0.02 -1 -1 30156 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.5 MiB 0.39 704 9676 3283 5033 1360 62.0 MiB 0.07 0.00 2.58823 -84.5042 -2.58823 2.58823 0.69 0.00042357 0.000393275 0.0273144 0.025366 28 1429 20 6.87369e+06 167686 531479. 1839.03 0.81 0.0813491 0.071348 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.17 0.04 0.11 -1 -1 0.17 0.0141506 0.0123328 65 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.46 vpr 62.60 MiB -1 -1 0.19 17240 1 0.03 -1 -1 30380 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.2 MiB 0.79 922 10744 2499 7805 440 62.6 MiB 0.10 0.00 4.70738 -131.097 -4.70738 4.70738 0.67 0.00063851 0.000594165 0.0339866 0.0315453 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.00 0.1086 0.0954713 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.16 0.09 0.07 -1 -1 0.16 0.0300158 0.0259627 120 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.48 vpr 62.59 MiB -1 -1 0.19 17368 1 0.03 -1 -1 30448 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.1 MiB 0.79 1018 15215 4457 9037 1721 62.6 MiB 0.13 0.00 3.58631 -115.037 -3.58631 3.58631 0.67 0.000631169 0.000586248 0.0465984 0.0432115 28 2435 25 6.87369e+06 433189 531479. 1839.03 0.98 0.110364 0.0979545 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0218344 0.0190913 130 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.14 vpr 62.99 MiB -1 -1 0.12 17900 1 0.03 -1 -1 30264 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.5 MiB 1.57 1070 17066 5177 9769 2120 63.0 MiB 0.16 0.00 4.79173 -136.462 -4.79173 4.79173 0.65 0.000678027 0.000630202 0.0581988 0.0540551 30 2520 24 6.87369e+06 391268 556674. 1926.21 0.87 0.140138 0.124143 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0231413 0.0202202 131 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.74 vpr 62.51 MiB -1 -1 0.18 17616 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 0.80 703 9368 2220 5797 1351 62.5 MiB 0.09 0.00 3.24007 -107.338 -3.24007 3.24007 0.65 0.000608546 0.000566218 0.0349471 0.0325124 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.27 0.151607 0.131714 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0240911 0.0208863 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.00 vpr 62.28 MiB -1 -1 0.18 17240 1 0.03 -1 -1 30132 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 23.8 MiB 1.05 624 12763 3540 6427 2796 62.3 MiB 0.10 0.00 3.24697 -98.9537 -3.24697 3.24697 0.68 0.000572613 0.00053121 0.0391871 0.0364387 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.27 0.152528 0.132583 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0211692 0.0183815 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.40 vpr 62.27 MiB -1 -1 0.17 17400 1 0.04 -1 -1 30100 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 23.8 MiB 0.84 763 12694 4114 7113 1467 62.3 MiB 0.10 0.00 3.5993 -104.629 -3.5993 3.5993 0.65 0.000557433 0.000518311 0.0443188 0.0412563 32 2109 21 6.87369e+06 251529 586450. 2029.24 0.87 0.109766 0.0970198 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0208351 0.0180741 95 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.17 vpr 62.32 MiB -1 -1 0.19 17160 1 0.03 -1 -1 30312 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.68 834 13031 3636 7853 1542 62.3 MiB 0.11 0.00 3.99153 -123.226 -3.99153 3.99153 0.65 0.0005732 0.000533487 0.0443129 0.0412225 30 1992 21 6.87369e+06 237555 556674. 1926.21 0.82 0.111888 0.0990081 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0222537 0.0193643 101 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.91 vpr 62.36 MiB -1 -1 0.19 17428 1 0.03 -1 -1 30112 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 23.8 MiB 0.79 614 5831 1071 4187 573 62.4 MiB 0.06 0.00 3.5993 -104.92 -3.5993 3.5993 0.72 0.000586006 0.000545291 0.0190441 0.0177146 34 1764 25 6.87369e+06 363320 618332. 2139.56 1.37 0.13632 0.117218 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0206285 0.0179388 102 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.62 vpr 62.47 MiB -1 -1 0.20 17380 1 0.03 -1 -1 30332 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 23.9 MiB 2.61 863 14072 4376 7539 2157 62.5 MiB 0.11 0.00 3.04756 -100.489 -3.04756 3.04756 0.67 0.000599012 0.000556539 0.0462815 0.0430242 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.26 0.162495 0.141679 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0220282 0.019097 106 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.49 vpr 63.04 MiB -1 -1 0.20 17696 1 0.03 -1 -1 30352 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.3 MiB 3.03 1118 10108 2278 7040 790 63.0 MiB 0.10 0.00 4.17389 -123.088 -4.17389 4.17389 0.65 0.000734839 0.000681851 0.0328956 0.0304984 26 3090 38 6.87369e+06 558954 503264. 1741.40 1.62 0.139306 0.121707 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.16 0.24 0.11 -1 -1 0.16 0.0865174 0.0741366 156 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.44 vpr 62.87 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30240 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 2.85 1050 18428 5889 9545 2994 62.9 MiB 0.16 0.00 3.99748 -134.85 -3.99748 3.99748 0.56 0.000753967 0.000699351 0.0611117 0.0566059 30 2304 26 6.87369e+06 531006 556674. 1926.21 0.94 0.154539 0.136646 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0265657 0.0231553 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 6.41 vpr 62.30 MiB -1 -1 0.15 17252 1 0.03 -1 -1 30064 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.8 MiB 1.97 729 12681 4828 6102 1751 62.3 MiB 0.11 0.00 4.09163 -121.55 -4.09163 4.09163 0.66 0.000590386 0.000548741 0.0451865 0.0420081 36 2115 36 6.87369e+06 251529 648988. 2245.63 1.72 0.174951 0.152348 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.022115 0.0192143 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.53 vpr 62.83 MiB -1 -1 0.15 17692 1 0.03 -1 -1 30328 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.3 MiB 2.33 953 14543 4925 6755 2863 62.8 MiB 0.14 0.00 3.78134 -121.658 -3.78134 3.78134 0.65 0.000721258 0.000669307 0.0559049 0.051944 34 2770 24 6.87369e+06 363320 618332. 2139.56 1.43 0.184914 0.161963 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0290174 0.0252287 136 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 8.72 vpr 63.04 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30304 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 24.7 MiB 3.71 1511 10033 2621 6359 1053 63.0 MiB 0.12 0.00 5.60672 -170.903 -5.60672 5.60672 0.65 0.000733099 0.000681287 0.0399741 0.0371296 36 3561 24 6.87369e+06 349346 648988. 2245.63 2.13 0.187741 0.163127 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0285667 0.024886 159 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 7.60 vpr 63.05 MiB -1 -1 0.20 17748 1 0.03 -1 -1 30440 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 24.4 MiB 3.12 1142 14964 4330 8425 2209 63.1 MiB 0.15 0.00 5.2871 -162.814 -5.2871 5.2871 0.65 0.000742732 0.000689319 0.0578876 0.0537692 34 2876 29 6.87369e+06 377294 618332. 2139.56 1.52 0.209607 0.183079 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0299554 0.0260814 152 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.99 vpr 62.80 MiB -1 -1 0.18 17692 1 0.04 -1 -1 30352 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 24.3 MiB 2.56 964 8863 1996 5999 868 62.8 MiB 0.10 0.00 4.10673 -127.256 -4.10673 4.10673 0.65 0.000706397 0.000657312 0.0343618 0.0319724 34 2616 23 6.87369e+06 349346 618332. 2139.56 1.80 0.187184 0.163491 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.20 0.09 0.09 -1 -1 0.20 0.0281846 0.0245284 131 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.51 vpr 62.64 MiB -1 -1 0.14 17380 1 0.03 -1 -1 30328 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.1 MiB 2.21 831 14175 5092 5953 3130 62.6 MiB 0.12 0.00 4.31305 -113.651 -4.31305 4.31305 0.65 0.000624613 0.000580753 0.0498991 0.0463922 34 2736 36 6.87369e+06 279477 618332. 2139.56 1.63 0.182827 0.159443 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.026012 0.0225353 119 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 7.18 vpr 63.34 MiB -1 -1 0.20 17884 1 0.03 -1 -1 30432 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 24.8 MiB 3.02 1125 12954 3388 8890 676 63.3 MiB 0.15 0.00 4.84068 -153.465 -4.84068 4.84068 0.66 0.000878788 0.000817812 0.0522543 0.0486823 30 2992 40 6.87369e+06 531006 556674. 1926.21 1.20 0.177432 0.155653 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0327647 0.0285015 173 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.13 vpr 62.38 MiB -1 -1 0.18 17528 1 0.03 -1 -1 30096 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 23.9 MiB 1.57 779 13291 4134 7087 2070 62.4 MiB 0.11 0.00 3.55895 -107.74 -3.55895 3.55895 0.66 0.000571165 0.000529942 0.042168 0.0391811 32 2017 21 6.87369e+06 307425 586450. 2029.24 0.87 0.108552 0.0958242 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.19 0.07 0.14 -1 -1 0.19 0.0212651 0.0184484 96 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 5.81 vpr 62.83 MiB -1 -1 0.15 17868 1 0.03 -1 -1 30128 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1055 8969 2107 6380 482 62.8 MiB 0.10 0.00 4.79158 -142.334 -4.79158 4.79158 0.71 0.000690049 0.000641849 0.0352396 0.0327989 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.05 0.118536 0.104138 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.19 0.07 0.14 -1 -1 0.19 0.0286525 0.0249291 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.48 vpr 62.71 MiB -1 -1 0.18 17748 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.2 MiB 1.71 980 9951 2142 7372 437 62.7 MiB 0.11 0.00 3.6843 -115.486 -3.6843 3.6843 0.65 0.000696065 0.000647076 0.0342082 0.0318122 32 2890 26 6.87369e+06 447163 586450. 2029.24 0.99 0.12049 0.1054 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.19 0.08 0.14 -1 -1 0.19 0.0276949 0.0240523 132 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 4.71 vpr 62.70 MiB -1 -1 0.18 17248 1 0.03 -1 -1 30044 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.3 MiB 0.62 972 9537 2296 6533 708 62.7 MiB 0.09 0.00 4.25479 -129.925 -4.25479 4.25479 0.65 0.000626212 0.000582042 0.0316676 0.0294115 34 2449 22 6.87369e+06 363320 618332. 2139.56 1.35 0.153933 0.133668 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0253387 0.0219759 123 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 6.92 vpr 62.91 MiB -1 -1 0.13 17748 1 0.03 -1 -1 30292 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 2.66 1122 14450 4547 7634 2269 62.9 MiB 0.14 0.00 5.14049 -153.237 -5.14049 5.14049 0.70 0.000711928 0.000661877 0.055525 0.0515447 34 2716 24 6.87369e+06 307425 618332. 2139.56 1.37 0.194097 0.169645 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.028509 0.0248561 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 6.84 vpr 62.78 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30268 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 24.3 MiB 2.72 990 17178 5882 8168 3128 62.8 MiB 0.16 0.00 3.6884 -118.378 -3.6884 3.6884 0.65 0.000713339 0.000661914 0.0667022 0.0619384 30 2877 24 6.87369e+06 447163 556674. 1926.21 1.36 0.153334 0.136019 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0295058 0.0256536 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.97 vpr 62.95 MiB -1 -1 0.15 17504 1 0.03 -1 -1 30336 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.3 MiB 2.65 922 18795 6474 8507 3814 63.0 MiB 0.16 0.00 4.11773 -131.117 -4.11773 4.11773 0.65 0.000742695 0.00068941 0.0633929 0.0587644 34 3101 29 6.87369e+06 489084 618332. 2139.56 2.51 0.218812 0.191463 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.20 0.10 0.15 -1 -1 0.20 0.0308337 0.0268143 144 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.37 vpr 62.70 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30220 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.2 MiB 0.78 881 12751 3354 7696 1701 62.7 MiB 0.11 0.00 4.26989 -123.123 -4.26989 4.26989 0.65 0.000639931 0.00059457 0.0388275 0.0360592 30 2195 22 6.87369e+06 461137 556674. 1926.21 0.83 0.114587 0.100898 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.23 0.08 0.12 -1 -1 0.23 0.0322882 0.0284158 124 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.10 vpr 62.66 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30352 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.1 MiB 1.90 1140 14450 4739 7431 2280 62.7 MiB 0.14 0.00 4.86398 -140.272 -4.86398 4.86398 0.65 0.000657004 0.000610106 0.0522599 0.0485618 34 2688 26 6.87369e+06 307425 618332. 2139.56 1.43 0.184201 0.161078 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0244839 0.0212738 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 9.12 vpr 62.88 MiB -1 -1 0.21 17644 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 24.3 MiB 1.87 912 13105 4297 5300 3508 62.9 MiB 0.12 0.00 4.74348 -140.694 -4.74348 4.74348 0.65 0.000723662 0.000671863 0.0534528 0.0496154 36 3390 47 6.87369e+06 307425 648988. 2245.63 4.40 0.226564 0.197396 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.28 0.08 0.14 -1 -1 0.28 0.0235948 0.0209362 141 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 6.84 vpr 62.87 MiB -1 -1 0.19 17692 1 0.03 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.3 MiB 2.40 1089 15709 4726 9045 1938 62.9 MiB 0.16 0.00 4.3693 -136.102 -4.3693 4.3693 0.65 0.000754363 0.000700984 0.0654821 0.0608174 34 2963 29 6.87369e+06 293451 618332. 2139.56 1.58 0.219065 0.191844 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0289939 0.0255225 135 77 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.10 vpr 62.20 MiB -1 -1 0.17 17400 1 0.03 -1 -1 29976 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 23.8 MiB 0.66 730 9914 2670 6709 535 62.2 MiB 0.08 0.00 3.5583 -105.077 -3.5583 3.5583 0.65 0.000559133 0.000520919 0.0311062 0.0289444 28 1795 23 6.87369e+06 307425 531479. 1839.03 0.80 0.0982206 0.0862934 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0222827 0.0192926 93 23 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.10 vpr 63.04 MiB -1 -1 0.20 17788 1 0.03 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 24.6 MiB 1.61 968 15568 5616 7798 2154 63.0 MiB 0.15 0.00 3.7434 -130.891 -3.7434 3.7434 0.65 0.000677475 0.000629638 0.0613385 0.0569945 34 2779 24 6.87369e+06 251529 618332. 2139.56 1.65 0.19595 0.17178 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0321007 0.0277587 124 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.14 vpr 62.98 MiB -1 -1 0.21 17852 1 0.03 -1 -1 30356 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 24.5 MiB 2.59 1427 16858 5256 9636 1966 63.0 MiB 0.19 0.00 5.58608 -163.667 -5.58608 5.58608 0.65 0.000769249 0.000706854 0.0687906 0.0636081 34 3599 26 6.87369e+06 335372 618332. 2139.56 1.66 0.224131 0.19651 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0319155 0.0278211 166 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.27 vpr 62.70 MiB -1 -1 0.09 17576 1 0.03 -1 -1 30376 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.2 MiB 2.58 968 18998 5516 10575 2907 62.7 MiB 0.16 0.00 4.31005 -135.578 -4.31005 4.31005 0.65 0.000697535 0.000648261 0.060664 0.0562877 28 2295 25 6.87369e+06 475111 531479. 1839.03 0.97 0.146363 0.129728 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.21 0.10 0.11 -1 -1 0.21 0.0323489 0.0284576 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.48 vpr 62.41 MiB -1 -1 0.10 17312 1 0.03 -1 -1 30336 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 23.9 MiB 0.68 634 6615 1367 5002 246 62.4 MiB 0.07 0.00 3.6392 -108.305 -3.6392 3.6392 0.67 0.000589045 0.000547996 0.0220934 0.0205496 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.26 0.103873 0.09021 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.17 0.07 0.12 -1 -1 0.17 0.0244931 0.0211715 104 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.01 vpr 63.20 MiB -1 -1 0.12 17768 1 0.03 -1 -1 30288 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 24.7 MiB 4.39 1457 14543 4326 8631 1586 63.2 MiB 0.16 0.00 5.90291 -175.463 -5.90291 5.90291 0.65 0.000828504 0.00077032 0.0641284 0.0596201 34 3438 35 6.87369e+06 349346 618332. 2139.56 1.81 0.240303 0.209689 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0318492 0.0277296 171 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.49 vpr 62.69 MiB -1 -1 0.15 17900 1 0.03 -1 -1 30424 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.2 MiB 2.75 1003 17199 4580 10530 2089 62.7 MiB 0.14 0.00 4.63938 -140.336 -4.63938 4.63938 0.65 0.00068529 0.00063755 0.0543289 0.0504491 32 2464 25 6.87369e+06 489084 586450. 2029.24 0.94 0.139343 0.123215 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0292782 0.0254109 135 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 3.95 vpr 62.21 MiB -1 -1 0.17 17108 1 0.03 -1 -1 30404 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.8 MiB 0.57 878 10618 2802 6933 883 62.2 MiB 0.09 0.00 3.66956 -107.639 -3.66956 3.66956 0.65 0.000537146 0.000500016 0.0308593 0.0287074 30 1958 22 6.87369e+06 335372 556674. 1926.21 0.82 0.0941294 0.0826841 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0188953 0.0164029 94 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.04 vpr 62.70 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30112 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.1 MiB 2.03 1091 19371 5911 10963 2497 62.7 MiB 0.17 0.00 5.19487 -138.438 -5.19487 5.19487 0.66 0.000712033 0.000660616 0.0617398 0.0571886 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.26 0.148909 0.131983 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0291308 0.0252967 145 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.72 vpr 62.28 MiB -1 -1 0.17 17116 1 0.03 -1 -1 30064 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 0.72 765 8363 1967 5928 468 62.3 MiB 0.08 0.00 3.6502 -113.574 -3.6502 3.6502 0.65 0.000558477 0.000520091 0.0275926 0.0256746 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.28 0.136248 0.118132 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0208659 0.0181493 98 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.05 vpr 62.53 MiB -1 -1 0.15 17316 1 0.03 -1 -1 30464 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 23.9 MiB 2.19 687 8418 1716 5962 740 62.5 MiB 0.08 0.00 3.88482 -111.398 -3.88482 3.88482 0.65 0.000598362 0.000555136 0.0255897 0.0237088 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.21 0.0961066 0.0838395 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.17 0.07 0.11 -1 -1 0.17 0.021673 0.0187799 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.68 vpr 62.90 MiB -1 -1 0.20 17580 1 0.03 -1 -1 30272 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.2 MiB 3.44 1118 13105 3443 8133 1529 62.9 MiB 0.14 0.00 4.10563 -124.474 -4.10563 4.10563 0.65 0.000696699 0.000647101 0.0511739 0.0474959 34 2878 24 6.87369e+06 335372 618332. 2139.56 1.49 0.187329 0.163391 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.20 0.09 0.10 -1 -1 0.20 0.0299033 0.0259501 138 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.26 vpr 63.11 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.6 MiB 2.14 806 8532 1884 6173 475 63.1 MiB 0.09 0.00 4.39805 -136.981 -4.39805 4.39805 0.65 0.000706991 0.000656608 0.0322255 0.0299359 34 2439 23 6.87369e+06 363320 618332. 2139.56 1.41 0.170274 0.147582 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292757 0.0254244 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.72 vpr 63.07 MiB -1 -1 0.22 17576 1 0.03 -1 -1 30020 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1121 14983 4753 8344 1886 63.1 MiB 0.15 0.00 4.71348 -141.457 -4.71348 4.71348 0.70 0.000704223 0.000652739 0.0541371 0.0501568 32 3230 48 6.87369e+06 377294 586450. 2029.24 4.86 0.301485 0.260829 25474 144626 -1 2572 20 1540 2596 302466 61481 4.17136 4.17136 -144.462 -4.17136 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0270208 0.023501 133 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.12 vpr 62.47 MiB -1 -1 0.17 17372 1 0.03 -1 -1 30252 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.9 MiB 2.97 883 12923 4460 6401 2062 62.5 MiB 0.12 0.00 4.76482 -134.311 -4.76482 4.76482 0.66 0.000590972 0.000549678 0.047119 0.0438204 34 2173 23 6.87369e+06 209608 618332. 2139.56 1.36 0.163065 0.14248 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026555 0.0229821 103 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 6.56 vpr 62.64 MiB -1 -1 0.20 17692 1 0.03 -1 -1 30544 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 24.0 MiB 2.36 973 14184 4741 7494 1949 62.6 MiB 0.13 0.00 3.76746 -124.928 -3.76746 3.76746 0.66 0.000639927 0.00059451 0.0548516 0.0509893 34 2486 19 6.87369e+06 237555 618332. 2139.56 1.40 0.176495 0.154506 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0269517 0.0236439 114 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 5.93 vpr 62.86 MiB -1 -1 0.16 17816 1 0.03 -1 -1 30332 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.3 MiB 2.34 925 17835 5186 10054 2595 62.9 MiB 0.15 0.00 3.47005 -102.148 -3.47005 3.47005 0.65 0.000665914 0.000609058 0.0563675 0.0521647 32 2458 31 6.87369e+06 475111 586450. 2029.24 0.86 0.142315 0.125498 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0272439 0.0236096 124 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.59 vpr 62.39 MiB -1 -1 0.17 17608 1 0.03 -1 -1 30332 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 23.8 MiB 1.73 875 14783 4032 9129 1622 62.4 MiB 0.12 0.00 4.05975 -105.458 -4.05975 4.05975 0.66 0.000587476 0.000546384 0.0387418 0.0356953 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.14 0.111583 0.0977726 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.17 0.09 0.11 -1 -1 0.17 0.0269178 0.0233519 117 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.20 vpr 62.61 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30352 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 24.2 MiB 2.48 802 13599 4534 7471 1594 62.6 MiB 0.13 0.00 4.04073 -123.042 -4.04073 4.04073 0.65 0.000635002 0.000590506 0.0536514 0.0499018 28 2087 22 6.87369e+06 237555 531479. 1839.03 1.06 0.129459 0.114603 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0256556 0.0222382 105 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 6.90 vpr 62.75 MiB -1 -1 0.18 17800 1 0.03 -1 -1 30120 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 24.2 MiB 2.64 1020 11806 3110 7534 1162 62.8 MiB 0.12 0.00 3.6756 -125.066 -3.6756 3.6756 0.67 0.000669003 0.000622006 0.047356 0.0440009 34 2679 22 6.87369e+06 237555 618332. 2139.56 1.54 0.176806 0.154137 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0236502 0.0206149 122 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.32 vpr 62.70 MiB -1 -1 0.12 17232 1 0.03 -1 -1 30484 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.3 MiB 0.69 1014 15430 4861 8054 2515 62.7 MiB 0.14 0.00 4.6284 -133.663 -4.6284 4.6284 0.67 0.000636272 0.000590274 0.0480604 0.0445169 32 2693 29 6.87369e+06 433189 586450. 2029.24 0.96 0.130385 0.11501 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0234523 0.0204448 129 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 7.52 vpr 62.82 MiB -1 -1 0.17 17584 1 0.03 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.3 MiB 3.15 1172 16215 5632 8430 2153 62.8 MiB 0.17 0.00 4.82738 -155.303 -4.82738 4.82738 0.65 0.000708669 0.000658054 0.0618764 0.0574814 34 3239 22 6.87369e+06 321398 618332. 2139.56 1.56 0.200343 0.175775 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0273558 0.0238562 147 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.04 vpr 63.01 MiB -1 -1 0.18 17516 1 0.03 -1 -1 30204 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 24.4 MiB 3.38 951 10308 2331 7565 412 63.0 MiB 0.11 0.00 5.39654 -155.229 -5.39654 5.39654 0.66 0.00074861 0.000695102 0.0359345 0.0332742 34 2817 24 6.87369e+06 503058 618332. 2139.56 1.89 0.184151 0.159942 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.26 0.05 0.15 -1 -1 0.26 0.0169455 0.0148928 147 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 7.11 vpr 63.11 MiB -1 -1 0.18 17772 1 0.03 -1 -1 30420 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.5 MiB 2.84 1114 12702 3372 8526 804 63.1 MiB 0.12 0.00 4.59844 -147.406 -4.59844 4.59844 0.65 0.000747112 0.000693857 0.0419058 0.0387428 28 3068 25 6.87369e+06 572927 531479. 1839.03 1.45 0.1359 0.119487 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.19 0.12 0.11 -1 -1 0.19 0.034117 0.0295721 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.05 vpr 62.39 MiB -1 -1 0.18 17520 1 0.03 -1 -1 30200 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 2.22 643 13768 5811 6950 1007 62.4 MiB 0.13 0.00 4.04073 -117.599 -4.04073 4.04073 0.69 0.000586167 0.000545156 0.0569606 0.0528816 36 1975 29 6.87369e+06 237555 648988. 2245.63 2.03 0.181709 0.159143 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0228096 0.0198198 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.33 vpr 63.03 MiB -1 -1 0.13 17620 1 0.03 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 24.3 MiB 3.19 958 7038 1640 4840 558 63.0 MiB 0.09 0.00 4.57902 -143.19 -4.57902 4.57902 0.65 0.00072371 0.000672736 0.0303758 0.0282351 34 2472 21 6.87369e+06 307425 618332. 2139.56 1.44 0.169024 0.146403 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0285177 0.0248579 136 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.41 vpr 62.87 MiB -1 -1 0.17 17928 1 0.03 -1 -1 30260 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.2 MiB 2.31 1035 6615 1396 4961 258 62.9 MiB 0.08 0.00 5.21006 -150.271 -5.21006 5.21006 0.65 0.00068858 0.000640309 0.0259389 0.0241347 34 2845 24 6.87369e+06 321398 618332. 2139.56 1.56 0.162415 0.140645 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.20 0.09 0.09 -1 -1 0.20 0.0289116 0.0251662 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.64 vpr 62.90 MiB -1 -1 0.20 17668 1 0.03 -1 -1 30088 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.3 MiB 2.13 1178 17839 5313 10611 1915 62.9 MiB 0.18 0.00 5.241 -151.339 -5.241 5.241 0.66 0.000684256 0.000635952 0.0681972 0.0630977 36 2587 21 6.87369e+06 391268 648988. 2245.63 1.53 0.201065 0.176378 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.29 0.08 0.19 -1 -1 0.29 0.0266269 0.0232198 141 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.07 vpr 62.75 MiB -1 -1 0.19 17624 1 0.03 -1 -1 30172 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 24.2 MiB 2.37 1032 10531 2482 6524 1525 62.7 MiB 0.10 0.00 4.69758 -143.214 -4.69758 4.69758 0.65 0.000720253 0.000669098 0.0380024 0.0352859 32 2579 23 6.87369e+06 447163 586450. 2029.24 0.89 0.124867 0.109762 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.28 0.10 0.14 -1 -1 0.28 0.0342817 0.029825 135 83 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.43 vpr 63.00 MiB -1 -1 0.19 17504 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 24.6 MiB 2.09 1030 11245 3242 7121 882 63.0 MiB 0.12 0.00 4.79284 -145.044 -4.79284 4.79284 0.65 0.000723695 0.000672246 0.0458553 0.0425917 34 2708 22 6.87369e+06 293451 618332. 2139.56 1.53 0.185836 0.162122 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0349403 0.0303102 132 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.75 vpr 62.84 MiB -1 -1 0.19 17580 1 0.03 -1 -1 30216 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.3 MiB 2.43 973 10944 3003 6644 1297 62.8 MiB 0.11 0.00 4.08063 -124.263 -4.08063 4.08063 0.65 0.000717785 0.000666406 0.041659 0.0387066 34 2457 23 6.87369e+06 405241 618332. 2139.56 1.43 0.181278 0.15765 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.21 0.09 0.15 -1 -1 0.21 0.0309046 0.0268249 132 85 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.70 vpr 62.21 MiB -1 -1 0.15 17104 1 0.02 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.8 MiB 0.58 780 13906 5362 7318 1226 62.2 MiB 0.12 0.00 4.08063 -122.384 -4.08063 4.08063 0.69 0.000557704 0.000519254 0.04631 0.0430978 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.33 0.174124 0.151812 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0216669 0.01882 96 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 7.56 vpr 62.95 MiB -1 -1 0.15 17652 1 0.03 -1 -1 30276 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.4 MiB 3.94 1081 9548 2182 6489 877 63.0 MiB 0.10 0.00 4.62608 -140.581 -4.62608 4.62608 0.65 0.000727549 0.000675884 0.0331655 0.0307847 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.00 0.127481 0.11145 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.027788 0.0241862 137 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.18 vpr 62.82 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30440 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.2 MiB 3.53 1050 13477 3452 8462 1563 62.8 MiB 0.15 0.00 4.60818 -154.696 -4.60818 4.60818 0.65 0.000766788 0.000712418 0.0583738 0.0542574 34 2764 25 6.87369e+06 293451 618332. 2139.56 1.85 0.212794 0.186189 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.20 0.09 0.12 -1 -1 0.20 0.0283629 0.0247537 142 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.80 vpr 62.32 MiB -1 -1 0.16 17312 1 0.03 -1 -1 30052 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 23.8 MiB 2.75 803 10744 3029 6489 1226 62.3 MiB 0.10 0.00 4.47622 -122.656 -4.47622 4.47622 0.65 0.000585264 0.000545172 0.0383274 0.0356914 34 2330 21 6.87369e+06 223581 618332. 2139.56 1.42 0.15003 0.130592 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0216969 0.0188603 106 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.10 vpr 62.23 MiB -1 -1 0.16 17104 1 0.02 -1 -1 30336 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 0.68 704 7103 1505 5021 577 62.2 MiB 0.07 0.00 4.06963 -117.109 -4.06963 4.06963 0.65 0.000556228 0.000517634 0.0238975 0.0222509 30 1825 19 6.87369e+06 279477 556674. 1926.21 0.81 0.0881519 0.0770568 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0181033 0.0157684 99 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.30 vpr 62.94 MiB -1 -1 0.16 17560 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.4 MiB 2.90 1122 16407 5100 9312 1995 62.9 MiB 0.17 0.00 4.76368 -149.576 -4.76368 4.76368 0.66 0.000700696 0.000651225 0.0623149 0.0579309 34 3132 23 6.87369e+06 321398 618332. 2139.56 1.59 0.200762 0.176002 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0272106 0.0237055 145 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 6.70 vpr 62.86 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30336 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 24.3 MiB 2.24 1027 10087 2665 7077 345 62.9 MiB 0.10 0.00 5.28228 -152.543 -5.28228 5.28228 0.65 0.000711893 0.000661745 0.0372453 0.0346104 36 2623 39 6.87369e+06 377294 648988. 2245.63 1.70 0.191447 0.166258 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.21 0.07 0.11 -1 -1 0.21 0.0263698 0.023041 142 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 4.83 vpr 63.06 MiB -1 -1 0.12 17552 1 0.03 -1 -1 30208 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.4 MiB 0.86 1027 19820 5642 10737 3441 63.1 MiB 0.18 0.00 5.45503 -148.146 -5.45503 5.45503 0.68 0.000722651 0.000671771 0.0642306 0.0594738 30 3056 37 6.87369e+06 503058 556674. 1926.21 1.07 0.166072 0.146744 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0289723 0.0252563 157 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 5.79 vpr 62.68 MiB -1 -1 0.18 17596 1 0.03 -1 -1 30024 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.1 MiB 2.18 803 13893 3888 7187 2818 62.7 MiB 0.12 0.00 3.64131 -107.005 -3.64131 3.64131 0.65 0.000638023 0.000592753 0.0426681 0.0396489 32 2150 23 6.87369e+06 475111 586450. 2029.24 0.92 0.118766 0.104628 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0264871 0.022937 119 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.60 vpr 62.35 MiB -1 -1 0.17 17256 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 23.9 MiB 0.99 507 7132 1637 4881 614 62.4 MiB 0.08 0.00 3.6605 -96.1635 -3.6605 3.6605 0.66 0.000672608 0.000619985 0.0301637 0.0278275 30 1496 20 6.87369e+06 293451 556674. 1926.21 0.85 0.0961492 0.084314 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.018826 0.0163594 96 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 9.08 vpr 63.33 MiB -1 -1 0.20 17792 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 24.7 MiB 3.43 1378 10228 2746 6595 887 63.3 MiB 0.13 0.00 4.35815 -140.01 -4.35815 4.35815 0.67 0.000814108 0.000755882 0.0470194 0.0437442 34 3944 37 6.87369e+06 335372 618332. 2139.56 2.74 0.222734 0.193685 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.26 0.09 0.16 -1 -1 0.26 0.0283344 0.0247401 165 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.66 vpr 63.02 MiB -1 -1 0.12 17696 1 0.03 -1 -1 30260 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 24.4 MiB 4.15 1036 15709 5736 7909 2064 63.0 MiB 0.15 0.00 5.60997 -168.26 -5.60997 5.60997 0.65 0.000720522 0.00066962 0.0627163 0.0582784 34 2870 35 6.87369e+06 307425 618332. 2139.56 1.75 0.217391 0.190323 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.030889 0.0268619 139 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.33 vpr 62.82 MiB -1 -1 0.18 17620 1 0.03 -1 -1 30464 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 24.4 MiB 3.97 954 12542 3477 7836 1229 62.8 MiB 0.12 0.00 4.34735 -144.276 -4.34735 4.34735 0.66 0.000671983 0.000624415 0.049037 0.0455403 34 2396 24 6.87369e+06 251529 618332. 2139.56 1.59 0.179621 0.156731 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0253833 0.022073 118 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 4.84 vpr 62.84 MiB -1 -1 0.15 17744 1 0.03 -1 -1 30436 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.3 MiB 1.05 986 18523 6141 9875 2507 62.8 MiB 0.16 0.00 5.03998 -136.555 -5.03998 5.03998 0.67 0.000676903 0.000622139 0.0585535 0.0542939 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.13 0.141741 0.125534 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.18 0.08 0.08 -1 -1 0.18 0.0287558 0.0249488 129 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.52 vpr 62.89 MiB -1 -1 0.16 17504 1 0.03 -1 -1 30268 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1064 18301 5445 10263 2593 62.9 MiB 0.17 0.00 4.47348 -130.92 -4.47348 4.47348 0.66 0.000855909 0.000791226 0.0632522 0.0587168 32 2670 22 6.87369e+06 475111 586450. 2029.24 0.93 0.15013 0.133077 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.25 0.08 0.13 -1 -1 0.25 0.0306417 0.0267742 149 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.08 vpr 62.63 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30076 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.2 MiB 1.85 1005 13953 3900 8706 1347 62.6 MiB 0.12 0.00 3.71604 -108.811 -3.71604 3.71604 0.66 0.000657832 0.000611762 0.046026 0.0427765 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.32 0.173179 0.151055 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0202431 0.0179476 124 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.19 vpr 63.01 MiB -1 -1 0.19 17576 1 0.03 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 24.4 MiB 2.95 1158 14261 4788 7245 2228 63.0 MiB 0.15 0.00 4.84864 -152.871 -4.84864 4.84864 0.68 0.000707256 0.000657773 0.0558178 0.0518629 34 3462 28 6.87369e+06 307425 618332. 2139.56 2.48 0.204277 0.179065 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.20 0.10 0.09 -1 -1 0.20 0.0305905 0.0266098 148 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.69 vpr 63.06 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30116 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 2.93 1138 19124 5521 11431 2172 63.1 MiB 0.17 0.00 4.13563 -138.632 -4.13563 4.13563 0.65 0.000749113 0.000694288 0.064103 0.0594699 28 2715 22 6.87369e+06 503058 531479. 1839.03 0.95 0.154799 0.137216 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.24 0.07 0.12 -1 -1 0.24 0.0255562 0.0224955 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.29 vpr 62.36 MiB -1 -1 0.17 17484 1 0.03 -1 -1 30272 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 23.9 MiB 1.69 666 12120 4433 5222 2465 62.4 MiB 0.10 0.00 3.97634 -118.279 -3.97634 3.97634 0.66 0.000573316 0.000533155 0.0422264 0.0392842 32 1713 25 6.87369e+06 265503 586450. 2029.24 0.86 0.113556 0.0998988 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.26 0.05 0.13 -1 -1 0.26 0.0189234 0.016904 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 5.05 vpr 62.67 MiB -1 -1 0.17 17696 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 24.0 MiB 1.51 954 14256 4666 7594 1996 62.7 MiB 0.13 0.00 4.32352 -124.508 -4.32352 4.32352 0.66 0.000635929 0.000591636 0.0541921 0.0504292 30 2387 23 6.87369e+06 237555 556674. 1926.21 0.86 0.129734 0.114839 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.19 0.05 0.14 -1 -1 0.19 0.0211735 0.0187259 112 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 5.73 vpr 62.87 MiB -1 -1 0.20 17692 1 0.04 -1 -1 30480 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.3 MiB 1.99 1008 17238 4626 10206 2406 62.9 MiB 0.14 0.00 4.58512 -131.297 -4.58512 4.58512 0.66 0.000663255 0.000616792 0.0507663 0.047156 28 2463 22 6.87369e+06 544980 531479. 1839.03 1.00 0.129492 0.114517 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0257746 0.0224383 135 33 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 6.92 vpr 62.49 MiB -1 -1 0.19 17432 1 0.03 -1 -1 30280 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 2.88 766 12464 3650 7053 1761 62.5 MiB 0.11 0.00 4.72278 -121.674 -4.72278 4.72278 0.65 0.000565768 0.000526574 0.042781 0.0398247 36 2048 24 6.87369e+06 265503 648988. 2245.63 1.48 0.154577 0.134607 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.20 0.03 0.09 -1 -1 0.20 0.0117988 0.0104182 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.01 vpr 62.45 MiB -1 -1 0.18 17484 1 0.03 -1 -1 30184 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63944 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 23.9 MiB 2.94 839 11909 3234 7671 1004 62.4 MiB 0.10 0.00 4.09853 -129.483 -4.09853 4.09853 0.71 0.00059469 0.00055343 0.0440787 0.0410043 34 2157 23 6.87369e+06 209608 618332. 2139.56 1.33 0.16141 0.140935 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0239307 0.0207781 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.16 vpr 62.87 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30112 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 24.3 MiB 2.59 942 11236 2692 7798 746 62.9 MiB 0.12 0.00 3.93572 -125.697 -3.93572 3.93572 0.61 0.000728428 0.00067663 0.0376952 0.0349438 30 2084 23 6.87369e+06 517032 556674. 1926.21 0.86 0.124614 0.109325 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0300666 0.0261177 141 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.09 vpr 62.39 MiB -1 -1 0.19 17316 1 0.02 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 23.9 MiB 2.74 854 11604 2702 8073 829 62.4 MiB 0.10 0.00 3.71466 -115.66 -3.71466 3.71466 0.80 0.00057401 0.000534556 0.0404184 0.0376175 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.37 0.156724 0.13683 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0256835 0.0222042 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.45 vpr 62.66 MiB -1 -1 0.16 17792 1 0.03 -1 -1 30024 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 2.70 1000 15215 3699 9919 1597 62.7 MiB 0.14 0.00 3.6733 -115.913 -3.6733 3.6733 0.66 0.000763355 0.000712905 0.0513462 0.0476766 28 2463 22 6.87369e+06 433189 531479. 1839.03 1.07 0.13232 0.11696 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.18 0.06 0.12 -1 -1 0.18 0.0239284 0.0209016 129 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 7.08 vpr 62.89 MiB -1 -1 0.21 17692 1 0.04 -1 -1 30308 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 24.3 MiB 3.02 1013 12839 3510 8051 1278 62.9 MiB 0.13 0.00 3.7214 -127.022 -3.7214 3.7214 0.65 0.000747748 0.0006941 0.0470486 0.0436639 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.24 0.151058 0.133097 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.20 0.09 0.12 -1 -1 0.20 0.0312678 0.0271512 137 91 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.05 vpr 62.63 MiB -1 -1 0.14 17392 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 24.1 MiB 2.13 868 13324 3871 8104 1349 62.6 MiB 0.12 0.00 3.6034 -114.008 -3.6034 3.6034 0.65 0.000628902 0.000584272 0.0499794 0.0464497 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.29 0.171183 0.149656 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0245835 0.021442 99 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 5.42 vpr 62.69 MiB -1 -1 0.10 17508 1 0.03 -1 -1 30252 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.0 MiB 1.42 974 10050 2495 6517 1038 62.7 MiB 0.10 0.00 4.16989 -130.796 -4.16989 4.16989 0.65 0.000622397 0.000579422 0.0374502 0.0347325 34 2564 21 6.87369e+06 251529 618332. 2139.56 1.40 0.15722 0.136785 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0254957 0.0221121 114 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.60 vpr 62.77 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30204 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 24.3 MiB 2.46 1073 14072 3847 8138 2087 62.8 MiB 0.13 0.00 4.82103 -137.111 -4.82103 4.82103 0.65 0.000658005 0.00061149 0.0512259 0.047637 34 2766 23 6.87369e+06 307425 618332. 2139.56 1.37 0.179344 0.156843 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0273073 0.0236984 132 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.62 vpr 62.66 MiB -1 -1 0.18 17588 1 0.03 -1 -1 30060 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.1 MiB 2.66 938 11346 3139 7252 955 62.7 MiB 0.10 0.00 4.10263 -113.928 -4.10263 4.10263 0.65 0.000650645 0.000605428 0.0388816 0.0361732 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.27 0.16345 0.142292 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.22 0.06 0.13 -1 -1 0.22 0.0248048 0.0218926 123 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 7.30 vpr 63.01 MiB -1 -1 0.16 17796 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 24.4 MiB 2.68 1137 15773 5092 8347 2334 63.0 MiB 0.17 0.00 5.16181 -165.054 -5.16181 5.16181 0.61 0.000761672 0.000699453 0.0657963 0.0608792 34 3224 24 6.87369e+06 307425 618332. 2139.56 1.80 0.215479 0.188772 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0325076 0.028233 151 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.54 vpr 62.39 MiB -1 -1 0.16 17172 1 0.02 -1 -1 30332 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 24.0 MiB 0.59 812 10400 2700 6281 1419 62.4 MiB 0.08 0.00 3.6213 -110.383 -3.6213 3.6213 0.65 0.000529707 0.000493883 0.033643 0.0313459 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.25 0.135057 0.117531 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.20 0.05 0.15 -1 -1 0.20 0.0200937 0.0174878 92 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.47 vpr 63.07 MiB -1 -1 0.17 17732 1 0.03 -1 -1 30188 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 1.75 1097 18567 5571 11084 1912 63.1 MiB 0.17 0.00 4.4584 -148.753 -4.4584 4.4584 0.65 0.00077921 0.000723582 0.0661158 0.0613613 30 2603 24 6.87369e+06 489084 556674. 1926.21 0.95 0.159798 0.141617 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0319638 0.0277597 145 90 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.61 vpr 62.97 MiB -1 -1 0.18 17812 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.4 MiB 4.40 823 13152 5512 7421 219 63.0 MiB 0.13 0.00 3.7595 -132.319 -3.7595 3.7595 0.67 0.000712529 0.000661501 0.0567964 0.0527397 34 2123 27 6.87369e+06 223581 618332. 2139.56 1.41 0.199899 0.174585 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0262459 0.0228411 114 96 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.70 vpr 62.85 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 24.4 MiB 2.58 1010 10827 2581 6963 1283 62.9 MiB 0.11 0.00 4.11773 -126.026 -4.11773 4.11773 0.65 0.000709222 0.000658831 0.0373689 0.0346883 34 2332 20 6.87369e+06 447163 618332. 2139.56 1.35 0.172386 0.149863 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0271235 0.0235801 134 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.32 vpr 63.34 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30304 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 24.8 MiB 3.78 1280 16127 4711 8958 2458 63.3 MiB 0.18 0.00 5.89191 -180.703 -5.89191 5.89191 0.66 0.000774978 0.000719554 0.0660058 0.0613053 34 3352 23 6.87369e+06 349346 618332. 2139.56 1.63 0.219199 0.192399 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0337762 0.0294658 171 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 4.55 vpr 62.34 MiB -1 -1 0.18 17484 1 0.03 -1 -1 30060 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.7 MiB 1.14 668 8716 2078 6018 620 62.3 MiB 0.07 0.00 3.01966 -95.583 -3.01966 3.01966 0.65 0.000506229 0.000471808 0.0290085 0.0270453 30 1784 17 6.87369e+06 209608 556674. 1926.21 0.79 0.0851605 0.0749381 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.21 0.05 0.13 -1 -1 0.21 0.0181625 0.0157963 81 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.86 vpr 62.41 MiB -1 -1 0.15 17420 1 0.03 -1 -1 30060 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 23.9 MiB 1.01 599 7081 1635 4909 537 62.4 MiB 0.07 0.00 4.05453 -121.132 -4.05453 4.05453 0.66 0.000600844 0.000558471 0.026556 0.0247438 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.26 0.144147 0.124516 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.22 0.06 0.13 -1 -1 0.22 0.0252935 0.021922 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 4.74 vpr 62.50 MiB -1 -1 0.19 17588 1 0.03 -1 -1 29984 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 23.9 MiB 0.92 913 15639 4952 8936 1751 62.5 MiB 0.14 0.00 3.6323 -121.89 -3.6323 3.6323 0.69 0.000623994 0.000578387 0.053115 0.0493686 32 2483 25 6.87369e+06 321398 586450. 2029.24 0.91 0.131484 0.116515 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.27 0.09 0.14 -1 -1 0.27 0.0267582 0.0231624 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.14 vpr 62.39 MiB -1 -1 0.14 17428 1 0.03 -1 -1 30184 -1 -1 29 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.0 MiB 0.82 516 9536 2821 4714 2001 62.4 MiB 0.07 0.00 3.5473 -82.6349 -3.5473 3.5473 0.65 0.000481156 0.000447952 0.0256574 0.0238323 28 1443 23 6.87369e+06 405241 531479. 1839.03 0.79 0.0831579 0.0727516 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.20 0.05 0.11 -1 -1 0.20 0.0155973 0.0135639 87 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.19 vpr 63.12 MiB -1 -1 0.17 17620 1 0.03 -1 -1 30256 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 2.68 974 10332 2610 6542 1180 63.1 MiB 0.11 0.00 4.3434 -128.294 -4.3434 4.3434 0.65 0.00072797 0.000676112 0.0435381 0.0404502 34 2904 44 6.87369e+06 279477 618332. 2139.56 1.62 0.214547 0.186137 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0259972 0.0228281 133 72 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.50 vpr 63.21 MiB -1 -1 0.21 17792 1 0.03 -1 -1 30340 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 24.6 MiB 2.70 978 9679 2433 6610 636 63.2 MiB 0.11 0.00 4.12463 -132.597 -4.12463 4.12463 0.67 0.000765817 0.000710716 0.0373798 0.0346968 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.04 0.129616 0.11361 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0346247 0.0300292 143 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.14 vpr 62.67 MiB -1 -1 0.15 17808 1 0.03 -1 -1 29944 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.1 MiB 2.65 1101 11203 3178 6921 1104 62.7 MiB 0.12 0.00 5.42457 -156.316 -5.42457 5.42457 0.65 0.000703516 0.000653738 0.0428756 0.0398131 34 2918 37 6.89349e+06 338252 618332. 2139.56 1.73 0.185176 0.161265 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0285596 0.024889 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.15 vpr 62.77 MiB -1 -1 0.20 17664 1 0.03 -1 -1 30496 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 24.3 MiB 1.58 1174 12178 3196 7626 1356 62.8 MiB 0.13 0.00 4.90208 -149.95 -4.90208 4.90208 0.65 0.000699267 0.000648346 0.0468993 0.0436141 34 3129 45 6.89349e+06 366440 618332. 2139.56 1.66 0.210067 0.182312 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.30 0.08 0.17 -1 -1 0.30 0.0238987 0.0210372 156 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.03 vpr 62.36 MiB -1 -1 0.22 17312 1 0.03 -1 -1 30320 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 23.7 MiB 1.84 1048 13663 4160 7949 1554 62.4 MiB 0.13 0.00 4.2044 -120.612 -4.2044 4.2044 0.65 0.00062757 0.00058389 0.0483279 0.0449332 34 2461 28 6.89349e+06 295971 618332. 2139.56 1.44 0.175981 0.153507 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0216731 0.0189196 125 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 5.84 vpr 62.51 MiB -1 -1 0.18 17328 1 0.03 -1 -1 30308 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 23.8 MiB 1.66 1070 14593 4351 8219 2023 62.5 MiB 0.13 0.00 4.83618 -131.951 -4.83618 4.83618 0.66 0.000638621 0.000593767 0.0519697 0.0483128 34 2512 27 6.89349e+06 338252 618332. 2139.56 1.42 0.180465 0.157608 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.21 0.08 0.10 -1 -1 0.21 0.0280844 0.024488 134 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.75 vpr 62.61 MiB -1 -1 0.16 17768 1 0.03 -1 -1 30180 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.2 MiB 1.27 1121 10839 3086 5720 2033 62.6 MiB 0.12 0.00 5.28221 -151.791 -5.28221 5.28221 0.82 0.000685174 0.000636978 0.0407297 0.0378644 36 3048 26 6.89349e+06 324158 648988. 2245.63 2.39 0.180805 0.157385 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0264039 0.0229941 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.51 vpr 62.74 MiB -1 -1 0.18 17620 1 0.03 -1 -1 30224 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.2 MiB 1.85 1263 20077 7001 10670 2406 62.7 MiB 0.19 0.00 3.92406 -127.128 -3.92406 3.92406 0.67 0.000716678 0.000664729 0.0676892 0.0627367 34 3484 24 6.89349e+06 465097 618332. 2139.56 1.72 0.208746 0.182888 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0297758 0.0258493 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.23 vpr 62.23 MiB -1 -1 0.18 17484 1 0.02 -1 -1 30736 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 1.15 795 13496 4096 7659 1741 62.2 MiB 0.11 0.00 4.14623 -113.724 -4.14623 4.14623 0.65 0.00055787 0.000519397 0.0453107 0.0421523 34 1922 21 6.89349e+06 295971 618332. 2139.56 1.33 0.15167 0.132266 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0238286 0.0208541 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.33 vpr 62.25 MiB -1 -1 0.16 17248 1 0.03 -1 -1 30208 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.64 908 11759 3095 6971 1693 62.2 MiB 0.10 0.00 3.40307 -102.549 -3.40307 3.40307 0.65 0.000600999 0.00055741 0.0348945 0.0323508 26 2334 21 6.89349e+06 451003 503264. 1741.40 0.97 0.105496 0.0927631 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.25 0.07 0.12 -1 -1 0.25 0.0201574 0.0176525 119 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.83 vpr 62.43 MiB -1 -1 0.20 17664 1 0.03 -1 -1 30172 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 24.0 MiB 1.49 1042 10703 3845 4978 1880 62.4 MiB 0.10 0.00 3.68945 -124.167 -3.68945 3.68945 0.65 0.000502568 0.000458694 0.0333063 0.0305959 34 2732 28 6.89349e+06 281877 618332. 2139.56 1.63 0.163533 0.141127 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0247934 0.0215416 130 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.11 vpr 62.50 MiB -1 -1 0.19 17532 1 0.03 -1 -1 30116 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 23.9 MiB 1.87 928 7914 1841 5211 862 62.5 MiB 0.09 0.00 4.05148 -133.476 -4.05148 4.05148 0.65 0.000626429 0.0005831 0.0296547 0.0276039 34 2363 46 6.89349e+06 253689 618332. 2139.56 1.52 0.172479 0.149085 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.29 0.06 0.11 -1 -1 0.29 0.0196141 0.0173377 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.29 vpr 62.74 MiB -1 -1 0.17 17548 1 0.03 -1 -1 30312 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 24.1 MiB 1.94 867 6563 1487 4637 439 62.7 MiB 0.07 0.00 4.47797 -127.666 -4.47797 4.47797 0.68 0.000622726 0.000579761 0.0245316 0.0228086 34 2468 30 6.89349e+06 295971 618332. 2139.56 1.63 0.144376 0.124726 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.20 0.06 0.16 -1 -1 0.20 0.0221159 0.0192502 124 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.71 vpr 62.41 MiB -1 -1 0.12 17372 1 0.03 -1 -1 30068 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 1.61 849 7781 1935 5506 340 62.4 MiB 0.08 0.00 3.6807 -111.961 -3.6807 3.6807 0.65 0.000596341 0.000555752 0.028677 0.0267239 34 2156 24 6.89349e+06 239595 618332. 2139.56 1.57 0.145552 0.12615 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0211135 0.0183746 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 6.34 vpr 62.66 MiB -1 -1 0.18 17636 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1060 16407 4994 8930 2483 62.7 MiB 0.16 0.00 4.09068 -131.143 -4.09068 4.09068 0.65 0.00069443 0.000645071 0.0617162 0.0573334 34 2942 46 6.89349e+06 324158 618332. 2139.56 1.76 0.222039 0.193916 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.22 0.08 0.10 -1 -1 0.22 0.0256604 0.022359 143 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.65 vpr 62.73 MiB -1 -1 0.19 17560 1 0.03 -1 -1 30344 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 24.2 MiB 1.67 1222 15298 4935 8519 1844 62.7 MiB 0.16 0.00 5.57191 -161.898 -5.57191 5.57191 0.65 0.000719359 0.000667733 0.0590353 0.0548412 38 2640 21 6.89349e+06 338252 678818. 2348.85 4.08 0.303048 0.262786 26626 170182 -1 2332 20 1682 2320 155536 33971 4.52865 4.52865 -151.53 -4.52865 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0240201 0.0212002 153 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.60 vpr 62.13 MiB -1 -1 0.11 17608 1 0.03 -1 -1 30152 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 23.7 MiB 1.67 847 11909 3522 6229 2158 62.1 MiB 0.10 0.00 3.19582 -98.7926 -3.19582 3.19582 0.67 0.000551117 0.000502878 0.0410674 0.0382024 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.32 0.147704 0.128619 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.020937 0.0181264 102 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.77 vpr 62.73 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30332 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.2 MiB 2.13 1270 15103 4761 8086 2256 62.7 MiB 0.15 0.00 4.1162 -136.486 -4.1162 4.1162 0.67 0.000725896 0.000673632 0.0587582 0.054546 38 3035 24 6.89349e+06 338252 678818. 2348.85 1.73 0.20373 0.178389 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0260214 0.022688 159 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.29 vpr 62.47 MiB -1 -1 0.19 17628 1 0.03 -1 -1 30104 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 24.1 MiB 1.81 1061 15017 4935 7452 2630 62.5 MiB 0.14 0.00 4.12104 -133.123 -4.12104 4.12104 0.66 0.000685494 0.000637406 0.0566324 0.0526675 36 2514 26 6.89349e+06 310065 648988. 2245.63 1.74 0.195778 0.171547 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0244904 0.0213866 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.28 vpr 62.68 MiB -1 -1 0.10 17764 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.2 MiB 1.56 1121 14407 4796 7561 2050 62.7 MiB 0.13 0.00 3.60799 -127.319 -3.60799 3.60799 0.67 0.000659466 0.000608013 0.0479024 0.044464 36 2593 20 6.89349e+06 295971 648988. 2245.63 1.99 0.173147 0.15117 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.02419 0.0210643 131 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.17 vpr 61.99 MiB -1 -1 0.14 17528 1 0.02 -1 -1 30080 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 23.4 MiB 0.92 565 9205 3754 4929 522 62.0 MiB 0.06 0.00 2.67033 -85.3827 -2.67033 2.67033 0.69 0.000498476 0.000463788 0.0215045 0.0199447 38 1394 30 6.89349e+06 211408 678818. 2348.85 1.58 0.124729 0.10757 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.22 0.04 0.14 -1 -1 0.22 0.0124809 0.0110467 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.20 vpr 62.43 MiB -1 -1 0.18 17380 1 0.03 -1 -1 30132 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 23.8 MiB 1.93 986 14322 4290 8044 1988 62.4 MiB 0.13 0.00 4.76552 -144.771 -4.76552 4.76552 0.65 0.00061027 0.000567226 0.0510812 0.047517 34 2322 29 6.89349e+06 267783 618332. 2139.56 1.55 0.175352 0.153091 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.19 0.04 0.14 -1 -1 0.19 0.0131689 0.011615 117 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.35 vpr 62.62 MiB -1 -1 0.13 17620 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.1 MiB 1.01 1121 13823 3432 8585 1806 62.6 MiB 0.13 0.00 4.71322 -150.624 -4.71322 4.71322 0.65 0.000703992 0.000654566 0.0454751 0.0422874 34 2727 22 6.89349e+06 479191 618332. 2139.56 1.61 0.180478 0.157459 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286407 0.0250182 151 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.18 vpr 62.67 MiB -1 -1 0.15 17576 1 0.03 -1 -1 30212 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.1 MiB 1.60 1277 12375 3467 7863 1045 62.7 MiB 0.13 0.00 4.43295 -138.206 -4.43295 4.43295 0.66 0.000733411 0.000681355 0.0499327 0.0464196 36 3078 26 6.89349e+06 324158 648988. 2245.63 1.95 0.196784 0.171674 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.21 0.09 0.11 -1 -1 0.21 0.029181 0.0254066 155 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 6.37 vpr 61.93 MiB -1 -1 0.13 17488 1 0.02 -1 -1 30684 -1 -1 19 26 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 23.3 MiB 1.10 448 11324 4682 5071 1571 61.9 MiB 0.09 0.00 2.70371 -73.039 -2.70371 2.70371 0.65 0.000432862 0.000402272 0.0387856 0.0359205 36 1409 29 6.89349e+06 267783 648988. 2245.63 2.66 0.169057 0.146162 26050 158493 -1 1053 24 894 1077 88226 21748 2.34066 2.34066 -71.8008 -2.34066 0 0 828058. 2865.25 0.25 0.06 0.14 -1 -1 0.25 0.0191117 0.0166002 76 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.28 vpr 62.18 MiB -1 -1 0.19 17268 1 0.03 -1 -1 30232 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.6 MiB 1.08 989 9879 2312 6247 1320 62.2 MiB 0.10 0.00 4.42392 -127.052 -4.42392 4.42392 0.65 0.000624299 0.000580855 0.0342211 0.0318558 34 2328 22 6.89349e+06 324158 618332. 2139.56 1.46 0.153869 0.133603 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.20 0.07 0.09 -1 -1 0.20 0.0249176 0.0217245 119 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.08 vpr 62.08 MiB -1 -1 0.15 16984 1 0.03 -1 -1 29988 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.6 MiB 0.45 477 9356 3828 5185 343 62.1 MiB 0.06 0.00 2.35052 -74.7133 -2.35052 2.35052 0.70 0.000427702 0.000397013 0.0259915 0.0241266 30 1271 33 6.89349e+06 169126 556674. 1926.21 0.81 0.0842027 0.073836 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.0121125 0.0106332 65 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.67 vpr 62.43 MiB -1 -1 0.18 17316 1 0.03 -1 -1 29964 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1046 9966 2582 6701 683 62.4 MiB 0.10 0.00 4.91481 -138.303 -4.91481 4.91481 0.68 0.000646567 0.000601727 0.0372364 0.0346094 34 2316 22 6.89349e+06 281877 618332. 2139.56 1.43 0.161056 0.140242 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.19 0.06 0.09 -1 -1 0.19 0.0235092 0.0204842 125 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.73 vpr 62.37 MiB -1 -1 0.15 17276 1 0.03 -1 -1 30356 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.8 MiB 0.85 1030 18239 5331 10544 2364 62.4 MiB 0.15 0.00 3.48935 -111.917 -3.48935 3.48935 0.70 0.000636812 0.000592023 0.0558729 0.0518759 30 2299 29 6.89349e+06 436909 556674. 1926.21 0.91 0.138974 0.123132 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0225352 0.0196506 130 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.56 vpr 62.82 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30188 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 24.4 MiB 1.94 1031 15255 4057 8092 3106 62.8 MiB 0.14 0.00 4.82008 -133.501 -4.82008 4.82008 0.65 0.000676593 0.000628754 0.0560403 0.0520692 34 2929 28 6.89349e+06 324158 618332. 2139.56 1.83 0.19384 0.169328 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.22 0.08 0.15 -1 -1 0.22 0.026278 0.0228992 142 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 5.90 vpr 62.37 MiB -1 -1 0.18 17372 1 0.03 -1 -1 30168 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 23.9 MiB 1.56 1042 13556 4378 7182 1996 62.4 MiB 0.12 0.00 3.7536 -126.104 -3.7536 3.7536 0.90 0.000603354 0.000561434 0.0485359 0.0450397 34 2426 26 6.89349e+06 239595 618332. 2139.56 1.39 0.169904 0.148147 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.024252 0.0210288 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.92 vpr 62.17 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30556 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 23.7 MiB 1.71 868 13092 4092 7012 1988 62.2 MiB 0.12 0.00 4.03552 -117.607 -4.03552 4.03552 0.67 0.000566446 0.000527084 0.0470642 0.0437448 34 2273 22 6.89349e+06 239595 618332. 2139.56 1.53 0.157721 0.137712 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.021868 0.0189562 104 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.32 vpr 62.28 MiB -1 -1 0.19 17508 1 0.03 -1 -1 30056 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 23.8 MiB 1.52 757 6960 1669 4834 457 62.3 MiB 0.07 0.00 4.17394 -114.526 -4.17394 4.17394 0.66 0.000555749 0.000517388 0.0242901 0.0226192 30 2142 28 6.89349e+06 281877 556674. 1926.21 0.96 0.0959583 0.0836313 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0196366 0.0172792 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 4.14 vpr 62.21 MiB -1 -1 0.17 17100 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.54 835 13031 3792 7568 1671 62.2 MiB 0.11 0.00 3.90738 -121.629 -3.90738 3.90738 0.66 0.000568636 0.000528414 0.0441255 0.0410241 32 2291 36 6.89349e+06 239595 586450. 2029.24 0.95 0.124017 0.109152 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0217116 0.0188556 101 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.88 vpr 62.38 MiB -1 -1 0.14 17376 1 0.03 -1 -1 30088 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.38 912 9006 2499 5943 564 62.4 MiB 0.09 0.00 3.63671 -112.55 -3.63671 3.63671 0.65 0.000584486 0.000544139 0.0317455 0.0295383 30 2196 23 6.89349e+06 253689 556674. 1926.21 0.83 0.102193 0.0896716 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.20 0.05 0.13 -1 -1 0.20 0.0193762 0.0169342 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.09 vpr 62.35 MiB -1 -1 0.19 17484 1 0.05 -1 -1 30516 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 23.7 MiB 1.63 982 10163 2807 6505 851 62.3 MiB 0.09 0.00 3.48715 -105.954 -3.48715 3.48715 0.66 0.000622534 0.000565929 0.0356587 0.0331459 36 2114 24 6.89349e+06 310065 648988. 2245.63 1.74 0.154484 0.133878 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0219433 0.0190678 120 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 5.85 vpr 62.85 MiB -1 -1 0.19 17636 1 0.02 -1 -1 30316 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1339 15137 4138 9246 1753 62.8 MiB 0.16 0.00 4.47915 -132.321 -4.47915 4.47915 0.66 0.000881138 0.000826533 0.0589272 0.0546705 34 2963 23 6.89349e+06 352346 618332. 2139.56 1.52 0.207562 0.181805 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298263 0.0260043 159 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.47 vpr 63.25 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.6 MiB 1.89 1289 13933 4065 8243 1625 63.3 MiB 0.15 0.00 4.58977 -156.464 -4.58977 4.58977 0.65 0.000755839 0.000701841 0.0569344 0.0529229 36 2961 23 6.89349e+06 338252 648988. 2245.63 1.78 0.204283 0.178489 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0282293 0.0246699 168 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.49 vpr 62.32 MiB -1 -1 0.18 17252 1 0.03 -1 -1 30068 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.9 MiB 1.12 765 12506 3068 7484 1954 62.3 MiB 0.11 0.00 3.98848 -116.551 -3.98848 3.98848 0.66 0.000597707 0.00055611 0.0443381 0.0412668 36 1999 20 6.89349e+06 253689 648988. 2245.63 1.67 0.163945 0.143383 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0244161 0.0213613 109 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.51 vpr 62.78 MiB -1 -1 0.20 17772 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1249 10813 2744 7185 884 62.8 MiB 0.12 0.00 4.24063 -135.696 -4.24063 4.24063 0.65 0.000730478 0.000679095 0.0429327 0.0399204 34 3153 26 6.89349e+06 352346 618332. 2139.56 1.67 0.175526 0.153161 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.24 0.09 0.13 -1 -1 0.24 0.0268211 0.0237983 160 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.88 vpr 62.83 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.50 1247 16273 5220 8383 2670 62.8 MiB 0.17 0.00 5.45989 -162.138 -5.45989 5.45989 0.65 0.000735533 0.000683498 0.0638096 0.0592792 36 3304 23 6.89349e+06 352346 648988. 2245.63 2.36 0.213201 0.187346 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.21 0.10 0.15 -1 -1 0.21 0.0310153 0.0270578 163 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.91 vpr 62.85 MiB -1 -1 0.20 17748 1 0.02 -1 -1 30448 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.3 MiB 1.98 1201 15298 5197 6778 3323 62.8 MiB 0.15 0.00 5.99918 -171.098 -5.99918 5.99918 0.67 0.000752288 0.000698688 0.0607215 0.0564133 36 3723 40 6.89349e+06 352346 648988. 2245.63 3.02 0.225175 0.196806 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.23 0.06 0.15 -1 -1 0.23 0.0203723 0.0179977 166 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.73 vpr 62.62 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30464 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.2 MiB 1.79 1173 16983 5747 8489 2747 62.6 MiB 0.19 0.00 4.05378 -126.496 -4.05378 4.05378 0.71 0.000705899 0.000655663 0.0657423 0.0610323 36 2746 23 6.89349e+06 338252 648988. 2245.63 1.86 0.205379 0.180162 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0270709 0.0235754 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.04 vpr 62.52 MiB -1 -1 0.20 17320 1 0.03 -1 -1 30240 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 23.9 MiB 1.66 909 14358 5137 7007 2214 62.5 MiB 0.13 0.00 4.5826 -118.27 -4.5826 4.5826 0.67 0.000622198 0.000579246 0.0507444 0.0472351 34 2771 28 6.89349e+06 281877 618332. 2139.56 1.60 0.176236 0.153983 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0229842 0.0199981 120 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 7.46 vpr 63.20 MiB -1 -1 0.21 18164 1 0.03 -1 -1 30340 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 24.6 MiB 1.99 1620 14567 4267 9425 875 63.2 MiB 0.17 0.00 5.31355 -171.75 -5.31355 5.31355 0.65 0.000861389 0.000800099 0.0610395 0.0566792 36 4099 33 6.89349e+06 436909 648988. 2245.63 2.60 0.244277 0.212765 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.21 0.12 0.09 -1 -1 0.21 0.0389126 0.0337872 203 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.61 vpr 62.21 MiB -1 -1 0.09 17312 1 0.03 -1 -1 30144 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 23.7 MiB 1.50 935 8481 2198 5465 818 62.2 MiB 0.08 0.00 3.78206 -112.802 -3.78206 3.78206 0.70 0.000565692 0.00052637 0.0295975 0.0275439 36 2118 26 6.89349e+06 253689 648988. 2245.63 1.39 0.143912 0.124657 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.21 0.05 0.15 -1 -1 0.21 0.0193403 0.016848 106 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.43 vpr 62.46 MiB -1 -1 0.19 17664 1 0.03 -1 -1 30108 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.1 MiB 1.41 1159 12749 3392 7336 2021 62.5 MiB 0.13 0.00 4.75882 -144.088 -4.75882 4.75882 0.65 0.0006841 0.000636181 0.0484093 0.0449988 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.12 0.150571 0.132507 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.28 0.08 0.14 -1 -1 0.28 0.0267803 0.0233793 140 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.13 vpr 62.64 MiB -1 -1 0.20 17776 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1195 16023 5389 8481 2153 62.6 MiB 0.16 0.00 4.23925 -128.06 -4.23925 4.23925 0.65 0.000699252 0.00064952 0.0603092 0.0560185 36 2964 25 6.89349e+06 324158 648988. 2245.63 2.29 0.193814 0.170338 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0285062 0.0247967 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 4.15 vpr 62.38 MiB -1 -1 0.14 17132 1 0.03 -1 -1 30056 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 23.8 MiB 0.52 1056 13758 4414 7436 1908 62.4 MiB 0.13 0.00 4.26729 -130.845 -4.26729 4.26729 0.65 0.000759942 0.000706296 0.0451244 0.041893 30 2527 28 6.89349e+06 366440 556674. 1926.21 0.98 0.125037 0.110259 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0259274 0.0225102 123 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.12 vpr 62.56 MiB -1 -1 0.21 17928 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 24.1 MiB 1.56 1207 10455 2579 6753 1123 62.6 MiB 0.12 0.00 4.44301 -131.225 -4.44301 4.44301 0.66 0.000696678 0.000646931 0.0401266 0.037245 36 2616 21 6.89349e+06 324158 648988. 2245.63 1.66 0.175393 0.152648 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0225728 0.019852 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 6.53 vpr 62.77 MiB -1 -1 0.21 17792 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1187 14518 4859 6825 2834 62.8 MiB 0.14 0.00 4.27293 -132.833 -4.27293 4.27293 0.65 0.000714279 0.000663839 0.0555296 0.0515894 34 3445 26 6.89349e+06 338252 618332. 2139.56 1.87 0.198791 0.173767 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.030611 0.0267565 154 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.26 vpr 62.82 MiB -1 -1 0.13 17852 1 0.03 -1 -1 30216 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 24.2 MiB 1.64 1246 9336 2230 6513 593 62.8 MiB 0.11 0.00 4.12904 -136.238 -4.12904 4.12904 0.66 0.000742829 0.00069026 0.0367337 0.0340914 34 3265 27 6.89349e+06 366440 618332. 2139.56 1.84 0.184304 0.160142 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.20 0.09 0.15 -1 -1 0.20 0.032895 0.0285655 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.62 vpr 62.70 MiB -1 -1 0.15 17340 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 24.1 MiB 1.44 1001 8641 2091 5830 720 62.7 MiB 0.09 0.00 4.50695 -131.282 -4.50695 4.50695 0.65 0.000639167 0.000594192 0.0316932 0.0294843 34 2625 20 6.89349e+06 295971 618332. 2139.56 1.49 0.154661 0.134418 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0256119 0.0222671 128 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.79 vpr 62.75 MiB -1 -1 0.16 17868 1 0.03 -1 -1 30392 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1119 14450 4565 7826 2059 62.7 MiB 0.14 0.00 4.84598 -139.753 -4.84598 4.84598 0.65 0.00065817 0.00061159 0.0518757 0.0481704 34 2751 32 6.89349e+06 310065 618332. 2139.56 1.57 0.190171 0.165955 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246131 0.021197 135 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.75 vpr 62.77 MiB -1 -1 0.17 17868 1 0.03 -1 -1 30332 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 24.3 MiB 1.21 1292 15447 4870 8199 2378 62.8 MiB 0.16 0.00 4.72898 -145.597 -4.72898 4.72898 0.65 0.000730035 0.000678482 0.0615063 0.0571967 34 3305 38 6.89349e+06 338252 618332. 2139.56 1.71 0.222068 0.194336 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.029955 0.0259981 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.37 vpr 62.71 MiB -1 -1 0.21 17796 1 0.03 -1 -1 30400 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 24.1 MiB 2.23 1374 13553 4031 8630 892 62.7 MiB 0.14 0.00 4.3848 -136.299 -4.3848 4.3848 0.66 0.000744065 0.000691095 0.0530732 0.0492688 36 3546 21 6.89349e+06 352346 648988. 2245.63 2.21 0.179905 0.157565 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.21 0.13 0.16 -1 -1 0.21 0.0450667 0.0389105 166 77 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.71 vpr 62.11 MiB -1 -1 0.18 17464 1 0.03 -1 -1 30092 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 23.7 MiB 1.54 841 8022 2262 5194 566 62.1 MiB 0.08 0.00 3.56029 -109.346 -3.56029 3.56029 0.65 0.000630671 0.000591095 0.029097 0.0270966 36 1876 16 6.89349e+06 211408 648988. 2245.63 1.47 0.133287 0.115722 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0217362 0.0188758 96 23 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.14 vpr 62.58 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 24.1 MiB 1.24 1155 11979 3435 7133 1411 62.6 MiB 0.12 0.00 4.30741 -149.256 -4.30741 4.30741 0.69 0.000679725 0.000631405 0.0480247 0.044678 34 2804 26 6.89349e+06 281877 618332. 2139.56 1.97 0.189656 0.165323 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.21 0.09 0.15 -1 -1 0.21 0.0276525 0.0240545 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.43 vpr 63.05 MiB -1 -1 0.13 17692 1 0.03 -1 -1 30380 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.5 MiB 1.61 1337 12167 3186 7820 1161 63.1 MiB 0.14 0.00 5.53202 -162.159 -5.53202 5.53202 0.66 0.000761592 0.000707264 0.0492657 0.0457687 34 3534 45 6.89349e+06 352346 618332. 2139.56 2.01 0.224641 0.19543 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0451283 0.0389756 168 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.89 vpr 62.62 MiB -1 -1 0.19 17636 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 24.1 MiB 1.65 981 15773 5650 7566 2557 62.6 MiB 0.15 0.00 4.48922 -138.529 -4.48922 4.48922 0.65 0.000694952 0.000645961 0.0599876 0.0557683 36 2706 29 6.89349e+06 310065 648988. 2245.63 2.42 0.203539 0.178095 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0324122 0.0284618 144 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.76 vpr 62.32 MiB -1 -1 0.17 17512 1 0.03 -1 -1 30284 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 23.8 MiB 1.40 892 10781 3144 6961 676 62.3 MiB 0.10 0.00 4.18863 -126.692 -4.18863 4.18863 0.66 0.000588288 0.000547643 0.0343424 0.0319841 36 2083 22 6.89349e+06 380534 648988. 2245.63 1.62 0.148935 0.128989 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0244192 0.0211273 118 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 8.76 vpr 63.25 MiB -1 -1 0.21 18164 1 0.03 -1 -1 30316 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 24.5 MiB 2.89 1573 16207 5526 8946 1735 63.2 MiB 0.19 0.00 6.36902 -185.345 -6.36902 6.36902 0.65 0.0008441 0.000784982 0.0697633 0.0648762 34 4174 50 6.89349e+06 380534 618332. 2139.56 2.95 0.270188 0.235895 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0329794 0.028781 188 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.45 vpr 62.57 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 23.9 MiB 1.29 1035 15151 5099 7891 2161 62.6 MiB 0.16 0.00 4.71732 -144.131 -4.71732 4.71732 0.65 0.000816668 0.000759257 0.0631218 0.0586663 34 2637 24 6.89349e+06 295971 618332. 2139.56 1.44 0.199536 0.174992 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.20 0.08 0.09 -1 -1 0.20 0.0275282 0.0239754 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.30 vpr 62.04 MiB -1 -1 0.18 17228 1 0.02 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63532 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.4 MiB 0.52 851 9838 2581 6658 599 62.0 MiB 0.08 0.00 3.70876 -106.292 -3.70876 3.70876 0.66 0.000538886 0.000501967 0.0286447 0.0266303 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.19 0.100742 0.0880443 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0182019 0.0158209 94 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.91 vpr 62.65 MiB -1 -1 0.16 17848 1 0.03 -1 -1 30040 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 1.79 1097 14679 5479 6928 2272 62.6 MiB 0.14 0.00 5.34057 -137.648 -5.34057 5.34057 0.72 0.000722769 0.000664692 0.0571673 0.0531489 34 3407 33 6.89349e+06 324158 618332. 2139.56 2.29 0.182125 0.160275 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.22 0.08 0.13 -1 -1 0.22 0.0281074 0.0244491 149 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.56 vpr 62.09 MiB -1 -1 0.18 17276 1 0.03 -1 -1 30140 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.4 MiB 0.59 790 8543 2077 5745 721 62.1 MiB 0.08 0.00 3.60525 -112.744 -3.60525 3.60525 0.66 0.000560077 0.000521605 0.028229 0.0262562 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.30 0.137602 0.119126 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0213992 0.0185663 98 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.42 vpr 62.27 MiB -1 -1 0.19 17484 1 0.03 -1 -1 30292 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 23.8 MiB 1.23 900 11118 2938 7199 981 62.3 MiB 0.12 0.00 4.05078 -116.815 -4.05078 4.05078 0.65 0.000596531 0.000554933 0.0396329 0.0368797 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.46 0.160484 0.139523 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0228544 0.0198338 113 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.34 vpr 62.71 MiB -1 -1 0.17 17504 1 0.03 -1 -1 30416 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 24.2 MiB 2.92 1189 14871 4290 8850 1731 62.7 MiB 0.15 0.00 4.52181 -133.377 -4.52181 4.52181 0.68 0.000699047 0.000649428 0.0563902 0.0523754 34 2841 25 6.89349e+06 366440 618332. 2139.56 1.60 0.195914 0.170907 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0258226 0.0224962 154 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.66 vpr 62.83 MiB -1 -1 0.18 17624 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.3 MiB 1.86 1209 16340 4806 9520 2014 62.8 MiB 0.14 0.00 5.15268 -160.098 -5.15268 5.15268 0.74 0.000316906 0.000291424 0.046447 0.0426231 36 2942 21 6.89349e+06 310065 648988. 2245.63 1.91 0.181879 0.158315 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0275497 0.0240165 151 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.58 vpr 62.53 MiB -1 -1 0.19 17692 1 0.03 -1 -1 30220 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.1 MiB 1.44 1151 8919 1954 6160 805 62.5 MiB 0.11 0.00 5.44797 -153.538 -5.44797 5.44797 0.64 0.000706865 0.000656903 0.0355928 0.0331049 36 2961 43 6.89349e+06 324158 648988. 2245.63 2.19 0.194433 0.168581 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0272069 0.0237179 150 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.71 vpr 62.28 MiB -1 -1 0.17 17380 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.8 MiB 1.48 948 12416 4023 6894 1499 62.3 MiB 0.12 0.00 4.44301 -126.97 -4.44301 4.44301 0.65 0.000592833 0.000551194 0.0459684 0.0428103 34 2281 31 6.89349e+06 211408 618332. 2139.56 1.55 0.168743 0.147249 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.21 0.06 0.12 -1 -1 0.21 0.0211544 0.0184006 105 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.83 vpr 62.44 MiB -1 -1 0.20 17504 1 0.03 -1 -1 30460 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 23.8 MiB 1.54 1059 14483 4851 7224 2408 62.4 MiB 0.16 0.00 3.67535 -124.181 -3.67535 3.67535 0.65 0.00064351 0.00059763 0.0640229 0.0593976 34 2699 22 6.89349e+06 281877 618332. 2139.56 1.47 0.190751 0.167396 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0241561 0.0210635 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.36 vpr 62.52 MiB -1 -1 0.18 17584 1 0.03 -1 -1 30280 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64016 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 24.1 MiB 1.94 1024 15493 4307 9520 1666 62.5 MiB 0.14 0.00 3.806 -108.658 -3.806 3.806 0.66 0.000662408 0.000616106 0.0547425 0.0508669 36 2360 20 6.89349e+06 366440 648988. 2245.63 1.63 0.184177 0.161494 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.24 0.07 0.17 -1 -1 0.24 0.0231801 0.0202595 142 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.40 vpr 62.35 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30348 -1 -1 23 28 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63844 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 1.19 918 12323 3941 6490 1892 62.3 MiB 0.10 0.00 4.39675 -112.391 -4.39675 4.39675 0.66 0.000597369 0.00055618 0.042866 0.0398749 34 2147 21 6.89349e+06 324158 618332. 2139.56 1.52 0.137971 0.120692 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0225925 0.0195809 119 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.57 vpr 62.46 MiB -1 -1 0.14 17768 1 0.03 -1 -1 30344 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 23.8 MiB 2.22 924 9083 2508 6037 538 62.5 MiB 0.10 0.00 4.56532 -133.276 -4.56532 4.56532 0.69 0.00064068 0.000596334 0.0342978 0.0318772 34 2736 29 6.89349e+06 295971 618332. 2139.56 1.66 0.163004 0.141544 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0249009 0.0216674 130 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.74 vpr 62.56 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.0 MiB 1.84 1216 6123 1500 4259 364 62.6 MiB 0.08 0.00 3.91264 -134.898 -3.91264 3.91264 0.65 0.00067358 0.000625923 0.0244521 0.0227149 36 2645 23 6.89349e+06 281877 648988. 2245.63 2.07 0.158298 0.136807 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.0349284 0.0302608 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.13 vpr 62.34 MiB -1 -1 0.18 17184 1 0.03 -1 -1 30448 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63840 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 23.8 MiB 0.74 941 8614 1787 6108 719 62.3 MiB 0.09 0.00 4.73282 -132.206 -4.73282 4.73282 0.66 0.000630116 0.000586411 0.0279106 0.02595 30 2255 21 6.89349e+06 436909 556674. 1926.21 0.85 0.101246 0.0886022 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.18 0.04 0.08 -1 -1 0.18 0.0134318 0.0117911 129 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.16 vpr 62.61 MiB -1 -1 0.18 17692 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 1.92 946 14295 4865 6147 3283 62.6 MiB 0.14 0.00 4.80372 -148.142 -4.80372 4.80372 0.65 0.000708783 0.000658799 0.0556515 0.0517193 38 2827 33 6.89349e+06 324158 678818. 2348.85 2.41 0.210382 0.18408 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0274763 0.0239347 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.79 vpr 62.80 MiB -1 -1 0.16 17692 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 24.2 MiB 1.68 1348 15391 4691 8221 2479 62.8 MiB 0.16 0.00 5.48061 -170.804 -5.48061 5.48061 0.71 0.000749543 0.000696398 0.0589722 0.0548181 36 2971 28 6.89349e+06 380534 648988. 2245.63 2.15 0.210996 0.184659 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0260885 0.0229648 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.67 vpr 62.85 MiB -1 -1 0.12 17620 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.2 MiB 1.74 1348 16572 5279 8759 2534 62.8 MiB 0.22 0.00 4.59633 -149.535 -4.59633 4.59633 0.66 0.000916862 0.000845744 0.0780686 0.0719142 36 3220 22 6.89349e+06 366440 648988. 2245.63 2.09 0.225971 0.198324 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0312671 0.0272314 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.02 vpr 62.21 MiB -1 -1 0.18 17404 1 0.02 -1 -1 30124 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 23.7 MiB 1.92 929 11603 3304 7249 1050 62.2 MiB 0.11 0.00 4.22559 -126.079 -4.22559 4.22559 0.66 0.000585849 0.000545888 0.0398869 0.0371774 34 2274 21 6.89349e+06 295971 618332. 2139.56 1.30 0.122878 0.10762 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0233229 0.0202069 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.86 vpr 62.84 MiB -1 -1 0.20 17636 1 0.03 -1 -1 30444 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 24.3 MiB 2.49 1157 9838 2412 6479 947 62.8 MiB 0.11 0.00 5.48387 -163.439 -5.48387 5.48387 0.66 0.000735397 0.000678005 0.0395178 0.0366915 34 2914 31 6.89349e+06 366440 618332. 2139.56 1.57 0.176344 0.153409 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0274322 0.0239755 162 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.91 vpr 62.76 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1128 9303 2368 6110 825 62.8 MiB 0.10 0.00 5.14805 -150.89 -5.14805 5.14805 0.66 0.000692055 0.000643579 0.0355165 0.0330154 34 2876 34 6.89349e+06 324158 618332. 2139.56 1.97 0.186287 0.161968 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.20 0.08 0.16 -1 -1 0.20 0.0258706 0.0225585 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.29 vpr 62.84 MiB -1 -1 0.20 17784 1 0.03 -1 -1 30324 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1160 14828 4291 8520 2017 62.8 MiB 0.19 0.00 5.04939 -147.832 -5.04939 5.04939 0.70 0.000834352 0.000768862 0.0684884 0.0631004 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.62 0.210256 0.183843 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0277758 0.0242085 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.64 vpr 62.75 MiB -1 -1 0.20 17676 1 0.03 -1 -1 30312 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1280 15731 5729 7457 2545 62.7 MiB 0.16 0.00 4.67272 -140.819 -4.67272 4.67272 0.65 0.000725549 0.000672818 0.0617032 0.0573345 36 2891 31 6.89349e+06 380534 648988. 2245.63 1.97 0.211813 0.185208 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.02704 0.0235467 162 83 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.09 vpr 62.73 MiB -1 -1 0.19 17628 1 0.03 -1 -1 30208 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 24.2 MiB 2.54 1143 12183 3367 8279 537 62.7 MiB 0.13 0.00 5.41467 -156.077 -5.41467 5.41467 0.65 0.000719777 0.000668741 0.0477936 0.0443454 34 3317 24 6.89349e+06 324158 618332. 2139.56 1.81 0.189458 0.165162 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0289318 0.0252142 155 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 5.92 vpr 63.05 MiB -1 -1 0.19 17748 1 0.03 -1 -1 30456 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 24.4 MiB 1.48 1279 8047 1945 5583 519 63.1 MiB 0.10 0.00 4.65125 -137.416 -4.65125 4.65125 0.65 0.000720336 0.000669571 0.0311933 0.0290162 36 2926 21 6.89349e+06 422815 648988. 2245.63 1.71 0.169613 0.146999 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0255609 0.0223062 166 85 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.22 vpr 62.14 MiB -1 -1 0.14 17072 1 0.03 -1 -1 30484 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.5 MiB 0.63 782 13906 5117 6523 2266 62.1 MiB 0.12 0.00 4.15903 -122.769 -4.15903 4.15903 0.66 0.00055799 0.000519714 0.046019 0.0428434 30 2007 46 6.89349e+06 239595 556674. 1926.21 0.88 0.131097 0.115422 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.26 0.05 0.14 -1 -1 0.26 0.0183389 0.0160973 96 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.60 vpr 62.64 MiB -1 -1 0.20 17796 1 0.03 -1 -1 30284 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1307 13157 3552 8195 1410 62.6 MiB 0.14 0.00 5.64852 -169.418 -5.64852 5.64852 0.66 0.000737973 0.000685788 0.0514783 0.047845 36 3147 47 6.89349e+06 352346 648988. 2245.63 2.32 0.223922 0.195164 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.21 0.09 0.09 -1 -1 0.21 0.0303763 0.0264629 156 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.96 vpr 63.02 MiB -1 -1 0.17 17632 1 0.03 -1 -1 30376 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 2.82 1377 7415 1651 5387 377 63.0 MiB 0.10 0.00 5.30157 -175.126 -5.30157 5.30157 0.66 0.000762812 0.000708385 0.0310706 0.0288471 36 3393 25 6.89349e+06 352346 648988. 2245.63 2.32 0.18732 0.162605 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.24 0.10 0.14 -1 -1 0.24 0.0324357 0.0283574 171 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 8.01 vpr 62.27 MiB -1 -1 0.14 17588 1 0.03 -1 -1 29992 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.8 MiB 2.29 743 12720 4130 6895 1695 62.3 MiB 0.11 0.00 4.14342 -113.505 -4.14342 4.14342 0.66 0.000578844 0.000538411 0.0436349 0.0405651 30 2176 39 6.89349e+06 253689 556674. 1926.21 3.11 0.213698 0.185111 25186 138497 -1 1608 19 847 1143 74159 17662 2.99811 2.99811 -101.39 -2.99811 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0218151 0.018969 108 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 3.99 vpr 62.25 MiB -1 -1 0.19 17268 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.6 MiB 0.64 706 7823 1736 5421 666 62.3 MiB 0.08 0.00 4.10083 -117.838 -4.10083 4.10083 0.65 0.00056343 0.000525249 0.0258881 0.0241218 30 1853 22 6.89349e+06 281877 556674. 1926.21 0.83 0.0915477 0.0801698 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.19 0.06 0.08 -1 -1 0.19 0.021264 0.0184601 99 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.35 vpr 62.73 MiB -1 -1 0.18 17576 1 0.03 -1 -1 30580 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.2 MiB 1.97 1103 13719 4794 6980 1945 62.7 MiB 0.14 0.00 4.58942 -145.059 -4.58942 4.58942 0.65 0.000698357 0.000648022 0.0523472 0.0485864 34 2800 20 6.89349e+06 324158 618332. 2139.56 1.50 0.186193 0.162551 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0224945 0.0198123 145 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.86 vpr 62.75 MiB -1 -1 0.16 17768 1 0.04 -1 -1 30200 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 24.3 MiB 1.59 1083 8919 2056 5474 1389 62.8 MiB 0.10 0.00 4.89424 -142.728 -4.89424 4.89424 0.66 0.000704062 0.00065372 0.0353338 0.0328274 34 3008 43 6.89349e+06 324158 618332. 2139.56 1.62 0.194712 0.168175 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.22 0.08 0.09 -1 -1 0.22 0.0263333 0.0230025 149 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 4.64 vpr 62.57 MiB -1 -1 0.11 17532 1 0.03 -1 -1 30108 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.61 1033 19356 5199 10890 3267 62.6 MiB 0.18 0.00 5.32917 -146.087 -5.32917 5.32917 0.66 0.00072103 0.000670657 0.0629017 0.0584509 30 3041 40 6.89349e+06 507378 556674. 1926.21 1.23 0.16703 0.147539 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0304159 0.0265707 157 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.87 vpr 62.40 MiB -1 -1 0.12 17640 1 0.03 -1 -1 30172 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 24.0 MiB 1.65 1151 13143 3782 7948 1413 62.4 MiB 0.13 0.00 3.95739 -118.903 -3.95739 3.95739 0.65 0.000642469 0.000596869 0.0459421 0.0426871 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.48 0.168848 0.147085 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0228483 0.019905 136 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 5.38 vpr 62.24 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30724 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63732 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 23.8 MiB 1.21 755 13768 6057 6665 1046 62.2 MiB 0.10 0.00 4.43859 -116.143 -4.43859 4.43859 0.66 0.000546562 0.000508244 0.0461433 0.0429354 34 2141 23 6.89349e+06 281877 618332. 2139.56 1.53 0.154401 0.134718 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.20 0.07 0.16 -1 -1 0.20 0.0228473 0.0199236 106 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.85 vpr 63.25 MiB -1 -1 0.17 17644 1 0.03 -1 -1 30236 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 24.5 MiB 2.64 1514 18043 5658 10071 2314 63.2 MiB 0.20 0.00 4.58581 -147.507 -4.58581 4.58581 0.65 0.000813701 0.000756305 0.074541 0.0692702 34 4194 50 6.89349e+06 380534 618332. 2139.56 2.37 0.267283 0.233963 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0322133 0.0280381 185 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.32 vpr 62.76 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30328 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 24.3 MiB 1.74 1122 15639 4714 8375 2550 62.8 MiB 0.16 0.00 5.51467 -162.715 -5.51467 5.51467 0.65 0.000719675 0.000668985 0.0608543 0.0565049 34 2973 28 6.89349e+06 338252 618332. 2139.56 1.78 0.20508 0.179395 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0284881 0.0248649 155 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.59 vpr 62.73 MiB -1 -1 0.18 17796 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 24.0 MiB 2.24 1207 14779 4497 8341 1941 62.7 MiB 0.14 0.00 4.36565 -143.578 -4.36565 4.36565 0.67 0.000666656 0.000619751 0.0548296 0.0509502 34 2807 25 6.89349e+06 295971 618332. 2139.56 1.58 0.186361 0.16283 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280246 0.0243792 137 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.52 vpr 62.30 MiB -1 -1 0.12 17748 1 0.03 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 23.7 MiB 1.77 1106 13291 3686 7595 2010 62.3 MiB 0.13 0.00 5.17406 -143.598 -5.17406 5.17406 0.69 0.000668726 0.000622013 0.0500575 0.0465569 30 2835 35 6.89349e+06 295971 556674. 1926.21 3.09 0.24128 0.209618 25186 138497 -1 2176 19 1108 1682 108723 25154 3.8055 3.8055 -132.53 -3.8055 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0245096 0.0213706 135 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.92 vpr 62.80 MiB -1 -1 0.17 17796 1 0.03 -1 -1 30112 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.3 MiB 1.67 1277 13949 4663 6540 2746 62.8 MiB 0.14 0.00 4.6119 -129.607 -4.6119 4.6119 0.66 0.000731311 0.000678846 0.0539226 0.0501017 34 2960 24 6.89349e+06 366440 618332. 2139.56 1.51 0.199346 0.174124 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0283138 0.0246683 163 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.43 vpr 62.57 MiB -1 -1 0.17 17504 1 0.03 -1 -1 30120 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.1 MiB 1.91 1057 10103 2410 7187 506 62.6 MiB 0.11 0.00 4.37294 -118.646 -4.37294 4.37294 0.69 0.000711843 0.000644027 0.0386334 0.0358814 34 2982 24 6.89349e+06 338252 618332. 2139.56 1.65 0.168228 0.146048 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286445 0.0248747 140 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.91 vpr 62.64 MiB -1 -1 0.18 17816 1 0.03 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.2 MiB 2.42 1146 16340 5897 7961 2482 62.6 MiB 0.17 0.00 4.90628 -154.007 -4.90628 4.90628 0.61 0.00070681 0.00065681 0.0636631 0.0591662 34 3223 50 6.89349e+06 310065 618332. 2139.56 2.45 0.233543 0.20411 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.23 0.10 0.13 -1 -1 0.23 0.0289355 0.0255683 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.92 vpr 62.84 MiB -1 -1 0.19 17516 1 0.03 -1 -1 30224 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 24.2 MiB 2.62 1236 16371 6869 8593 909 62.8 MiB 0.17 0.00 4.19324 -136.834 -4.19324 4.19324 0.71 0.000752071 0.000697138 0.0645878 0.0599046 36 2890 25 6.89349e+06 366440 648988. 2245.63 2.20 0.216811 0.190163 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.21 0.08 0.11 -1 -1 0.21 0.0273522 0.024033 167 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.18 vpr 62.29 MiB -1 -1 0.18 17372 1 0.03 -1 -1 30368 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 23.8 MiB 1.23 881 7081 1573 4782 726 62.3 MiB 0.07 0.00 4.21387 -125.832 -4.21387 4.21387 0.66 0.000578389 0.000539214 0.0250955 0.0233861 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.29 0.135014 0.11672 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.19 0.06 0.14 -1 -1 0.19 0.0222758 0.0193091 110 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.70 vpr 62.49 MiB -1 -1 0.15 17636 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 23.8 MiB 1.08 868 7770 1747 5581 442 62.5 MiB 0.08 0.00 4.24583 -126.348 -4.24583 4.24583 0.65 0.000632891 0.000588552 0.0287815 0.0267178 36 2425 28 6.89349e+06 281877 648988. 2245.63 1.94 0.157575 0.136448 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.28 0.06 0.14 -1 -1 0.28 0.0202232 0.0177091 125 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.00 vpr 62.51 MiB -1 -1 0.16 17520 1 0.03 -1 -1 30336 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.0 MiB 1.34 954 15337 5910 7043 2384 62.5 MiB 0.16 0.00 4.83108 -133.604 -4.83108 4.83108 0.65 0.000671991 0.000624748 0.0660926 0.0615048 34 3035 40 6.89349e+06 310065 618332. 2139.56 1.79 0.214321 0.187836 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.028814 0.025292 137 33 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 6.77 vpr 62.23 MiB -1 -1 0.15 17548 1 0.03 -1 -1 30452 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63728 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 2.53 859 12636 4650 6385 1601 62.2 MiB 0.11 0.00 4.13932 -113.849 -4.13932 4.13932 0.65 0.000561863 0.000522782 0.0431107 0.0400938 34 2181 32 6.89349e+06 267783 618332. 2139.56 1.49 0.166639 0.14493 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.28 0.06 0.15 -1 -1 0.28 0.0220506 0.0192185 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.12 vpr 62.31 MiB -1 -1 0.17 17372 1 0.03 -1 -1 30012 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 23.8 MiB 1.73 931 12898 3547 7775 1576 62.3 MiB 0.11 0.00 4.14413 -130.005 -4.14413 4.14413 0.65 0.00059437 0.000553109 0.0450256 0.0418926 36 2328 29 6.89349e+06 253689 648988. 2245.63 1.62 0.166636 0.145233 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.24 0.07 0.15 -1 -1 0.24 0.0239459 0.0207595 114 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 5.84 vpr 62.66 MiB -1 -1 0.11 17780 1 0.03 -1 -1 30060 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1223 9197 2351 6452 394 62.7 MiB 0.11 0.00 4.60737 -145.998 -4.60737 4.60737 0.65 0.000739288 0.000678811 0.0371839 0.0344993 34 2913 27 6.89349e+06 366440 618332. 2139.56 1.65 0.184851 0.160464 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0314898 0.0273824 160 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.12 vpr 62.24 MiB -1 -1 0.15 17428 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 23.7 MiB 1.71 913 11088 2855 7004 1229 62.2 MiB 0.10 0.00 3.57635 -113.738 -3.57635 3.57635 0.65 0.000576064 0.000536136 0.0392186 0.0365026 30 2273 20 6.89349e+06 239595 556674. 1926.21 0.84 0.105098 0.0926374 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0222767 0.019297 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 5.96 vpr 62.54 MiB -1 -1 0.19 17516 1 0.03 -1 -1 29948 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1210 14261 3846 8261 2154 62.5 MiB 0.14 0.00 4.18989 -126.928 -4.18989 4.18989 0.65 0.000701338 0.000652043 0.0553115 0.0514279 34 3022 24 6.89349e+06 310065 618332. 2139.56 1.48 0.198907 0.172879 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291936 0.0254766 146 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.47 vpr 62.84 MiB -1 -1 0.12 17692 1 0.03 -1 -1 30208 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.2 MiB 1.78 1307 17117 5534 9059 2524 62.8 MiB 0.18 0.00 4.84686 -157.681 -4.84686 4.84686 0.65 0.000742312 0.00068762 0.0679324 0.0630422 34 3332 30 6.89349e+06 366440 618332. 2139.56 1.75 0.224971 0.197149 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.02831 0.0248628 170 91 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.41 vpr 62.33 MiB -1 -1 0.18 17604 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 23.9 MiB 2.24 1086 13432 3424 8813 1195 62.3 MiB 0.12 0.00 3.821 -117.953 -3.821 3.821 0.65 0.000618013 0.000574636 0.0487002 0.0452538 34 2606 27 6.89349e+06 253689 618332. 2139.56 1.41 0.173417 0.151197 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0240016 0.0208244 124 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.62 vpr 62.29 MiB -1 -1 0.14 17588 1 0.03 -1 -1 30252 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.8 MiB 1.09 871 12898 3868 7278 1752 62.3 MiB 0.12 0.00 4.12213 -126.038 -4.12213 4.12213 0.69 0.000624428 0.000581574 0.0464549 0.0432396 36 2177 21 6.89349e+06 253689 648988. 2245.63 1.66 0.165637 0.14477 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.24 0.07 0.14 -1 -1 0.24 0.0244852 0.0212344 115 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.63 vpr 62.41 MiB -1 -1 0.19 17556 1 0.03 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 23.8 MiB 1.51 1006 10292 2539 6455 1298 62.4 MiB 0.10 0.00 4.93133 -134.302 -4.93133 4.93133 0.67 0.000670861 0.000624578 0.0383126 0.0356386 34 2482 22 6.89349e+06 310065 618332. 2139.56 1.34 0.16678 0.145302 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0234532 0.0204907 133 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.06 vpr 62.55 MiB -1 -1 0.20 17516 1 0.03 -1 -1 30072 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1105 14450 4218 8203 2029 62.6 MiB 0.14 0.00 4.04968 -110.899 -4.04968 4.04968 0.66 0.000653082 0.000607604 0.0522005 0.0485539 34 2657 23 6.89349e+06 352346 618332. 2139.56 1.43 0.179684 0.156937 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0261476 0.022726 138 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 7.53 vpr 62.80 MiB -1 -1 0.24 17980 1 0.03 -1 -1 30392 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 24.2 MiB 1.77 1170 10033 2409 6880 744 62.8 MiB 0.12 0.00 5.6505 -176.695 -5.6505 5.6505 0.66 0.000754653 0.000700963 0.0413904 0.0384429 34 3979 39 6.89349e+06 338252 618332. 2139.56 2.72 0.207834 0.180418 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0324657 0.0282208 166 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.76 vpr 62.03 MiB -1 -1 0.18 16944 1 0.03 -1 -1 30348 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63520 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.5 MiB 0.50 815 9368 2443 5733 1192 62.0 MiB 0.08 0.00 3.49795 -108.682 -3.49795 3.49795 0.80 0.000536602 0.000500364 0.0311701 0.0290652 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.29 0.139156 0.121106 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0198876 0.0172977 92 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.72 vpr 62.91 MiB -1 -1 0.24 17776 1 0.03 -1 -1 30276 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 1.75 1425 17431 5130 10160 2141 62.9 MiB 0.20 0.00 5.66786 -177.951 -5.66786 5.66786 0.66 0.000946855 0.000872264 0.071737 0.066438 34 3494 40 6.89349e+06 380534 618332. 2139.56 1.88 0.249712 0.218847 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0331543 0.0288119 175 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 6.78 vpr 62.93 MiB -1 -1 0.21 17536 1 0.03 -1 -1 30116 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.2 MiB 2.04 1387 11223 3117 6896 1210 62.9 MiB 0.12 0.00 4.854 -168.258 -4.854 4.854 0.65 0.000715718 0.000664772 0.0443389 0.0411705 38 2917 25 6.89349e+06 324158 678818. 2348.85 1.75 0.185314 0.161641 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0321694 0.0279459 160 96 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.34 vpr 62.55 MiB -1 -1 0.25 17556 1 0.03 -1 -1 30092 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 24.1 MiB 1.57 1228 16529 5130 9253 2146 62.5 MiB 0.17 0.00 4.18062 -130.52 -4.18062 4.18062 0.65 0.000711173 0.000660733 0.0646981 0.060132 36 2679 46 6.89349e+06 310065 648988. 2245.63 1.74 0.229621 0.200721 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0264253 0.0230376 152 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 7.53 vpr 62.87 MiB -1 -1 0.23 17868 1 0.03 -1 -1 30392 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 24.2 MiB 2.17 1277 13758 3654 8100 2004 62.9 MiB 0.17 0.00 5.8432 -174.13 -5.8432 5.8432 0.65 0.000784644 0.000729619 0.0557226 0.0518073 36 3134 30 6.89349e+06 366440 648988. 2245.63 2.25 0.216432 0.18945 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.21 0.11 0.16 -1 -1 0.21 0.0320376 0.0279284 172 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.90 vpr 62.33 MiB -1 -1 0.22 17444 1 0.02 -1 -1 30084 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 23.8 MiB 0.75 693 11650 3455 7011 1184 62.3 MiB 0.09 0.00 3.03066 -95.0101 -3.03066 3.03066 0.66 0.00050258 0.000467961 0.0374217 0.0348548 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.30 0.147175 0.127892 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0171981 0.0149743 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.32 vpr 62.37 MiB -1 -1 0.22 17352 1 0.03 -1 -1 30312 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 23.8 MiB 1.01 726 8270 1936 5996 338 62.4 MiB 0.08 0.00 4.60327 -135.822 -4.60327 4.60327 0.65 0.000603574 0.000561706 0.0296813 0.0276011 34 1980 21 6.89349e+06 281877 618332. 2139.56 1.36 0.1453 0.125722 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0339886 0.0292534 119 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.39 vpr 62.56 MiB -1 -1 0.18 17352 1 0.03 -1 -1 29984 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 24.0 MiB 1.64 1036 12008 3645 6699 1664 62.6 MiB 0.12 0.00 4.33865 -139.218 -4.33865 4.33865 0.65 0.000626412 0.000583201 0.0438169 0.0407591 34 2978 44 6.89349e+06 253689 618332. 2139.56 1.83 0.185403 0.160902 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.025059 0.0217767 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.18 vpr 62.34 MiB -1 -1 0.21 17348 1 0.02 -1 -1 30108 -1 -1 21 25 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 23.7 MiB 0.98 532 11034 4110 4271 2653 62.3 MiB 0.08 0.00 3.6784 -85.8398 -3.6784 3.6784 0.65 0.000475205 0.000441858 0.0341515 0.031762 34 1620 27 6.89349e+06 295971 618332. 2139.56 1.36 0.130976 0.11374 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0185067 0.0160314 92 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.06 vpr 62.73 MiB -1 -1 0.21 17452 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 24.2 MiB 2.26 1378 14871 4869 7700 2302 62.7 MiB 0.15 0.00 4.565 -139.747 -4.565 4.565 0.66 0.000726476 0.000674383 0.0586568 0.0544763 38 3057 23 6.89349e+06 324158 678818. 2348.85 1.74 0.202252 0.177193 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0328969 0.0288165 161 72 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.54 vpr 62.98 MiB -1 -1 0.24 17624 1 0.03 -1 -1 30308 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T01:29:20 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.3 MiB 1.93 1414 15617 4439 9113 2065 63.0 MiB 0.17 0.00 4.8901 -157.733 -4.8901 4.8901 0.66 0.000766175 0.000711178 0.0604802 0.0560988 34 3269 24 6.89349e+06 408721 618332. 2139.56 1.58 0.215294 0.188307 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0300622 0.0262604 179 90 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.27 17612 14 0.25 -1 -1 32756 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 16.8 MiB 0.39 1279 6823 1440 4905 478 55.3 MiB 0.11 0.00 7.95704 -163.811 -7.95704 7.95704 1.04 0.00156205 0.00143212 0.0582136 0.0533669 36 3193 16 6.55708e+06 325485 612192. 2118.31 3.26 0.373765 0.335667 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.0987036 0.0888622 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.31 17856 14 0.28 -1 -1 32900 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1272 10173 2471 6545 1157 55.4 MiB 0.15 0.00 8.16064 -158.468 -8.16064 8.16064 1.05 0.00158191 0.00145074 0.081165 0.0744808 36 3251 22 6.55708e+06 373705 612192. 2118.31 2.93 0.417574 0.375881 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0844937 0.0762804 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33128 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1375 11748 3042 6701 2005 55.5 MiB 0.18 0.00 6.90223 -139.699 -6.90223 6.90223 1.04 0.00156303 0.0014319 0.0959199 0.087957 28 4030 31 6.55708e+06 313430 500653. 1732.36 4.00 0.324425 0.292376 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0642427 0.0580702 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.27 17612 12 0.31 -1 -1 32788 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 16.8 MiB 0.54 1263 4783 870 3608 305 55.4 MiB 0.09 0.00 7.83974 -145.087 -7.83974 7.83974 0.96 0.00159214 0.00146152 0.0440768 0.0405599 36 3198 28 6.55708e+06 361650 612192. 2118.31 3.57 0.401577 0.36102 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0598802 0.0542859 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.27 17660 13 0.27 -1 -1 32820 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1445 11111 2879 6967 1265 55.5 MiB 0.18 0.00 7.83935 -165.421 -7.83935 7.83935 1.05 0.00175058 0.00159614 0.0956985 0.0876814 28 4394 44 6.55708e+06 373705 500653. 1732.36 3.54 0.386974 0.348994 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0710109 0.0643219 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.28 17816 13 0.24 -1 -1 32700 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1337 11046 2900 6780 1366 55.4 MiB 0.17 0.00 7.78297 -154.862 -7.78297 7.78297 1.05 0.00164922 0.00151087 0.0881177 0.0807175 36 3405 22 6.55708e+06 385760 612192. 2118.31 3.22 0.439886 0.396006 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.29 0.11 0.21 -1 -1 0.29 0.0504717 0.0458158 198 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.23 17324 12 0.19 -1 -1 32656 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1022 8969 2278 5945 746 55.1 MiB 0.12 0.00 7.21391 -130.754 -7.21391 7.21391 1.04 0.00126973 0.00116404 0.0639532 0.0586 30 2436 17 6.55708e+06 325485 526063. 1820.29 1.21 0.218527 0.197251 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.25 0.09 0.15 -1 -1 0.25 0.0447167 0.0406149 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17560 12 0.18 -1 -1 32696 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1233 12733 3609 7498 1626 55.0 MiB 0.17 0.00 6.32286 -134.975 -6.32286 6.32286 1.04 0.00125797 0.00115145 0.0901641 0.0824342 36 3149 24 6.55708e+06 265210 612192. 2118.31 4.41 0.338937 0.304361 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.054098 0.0490355 140 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17824 12 0.16 -1 -1 32692 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1203 13157 3412 7574 2171 55.2 MiB 0.14 0.00 6.35469 -136.224 -6.35469 6.35469 1.08 0.00128678 0.00117852 0.0665307 0.0607395 36 2772 21 6.55708e+06 313430 612192. 2118.31 2.77 0.341855 0.306911 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0401003 0.0364289 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.23 17676 13 0.19 -1 -1 32616 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1164 8207 1986 5229 992 55.2 MiB 0.12 0.00 7.79043 -163.222 -7.79043 7.79043 1.05 0.00138743 0.00126957 0.0617538 0.0565914 28 3341 23 6.55708e+06 301375 500653. 1732.36 2.53 0.246075 0.221483 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0480964 0.0435954 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17364 12 0.20 -1 -1 32508 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 16.2 MiB 0.27 1043 7646 1812 5284 550 54.8 MiB 0.10 0.00 6.98257 -137.016 -6.98257 6.98257 1.05 0.00121778 0.00111597 0.0528178 0.0484043 28 2870 17 6.55708e+06 289320 500653. 1732.36 2.17 0.201067 0.181191 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0681526 0.0614543 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.23 17512 12 0.15 -1 -1 32716 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1210 6701 1475 4829 397 55.0 MiB 0.10 0.00 6.74278 -155.388 -6.74278 6.74278 1.05 0.00125451 0.00114656 0.0481396 0.0440074 28 3180 36 6.55708e+06 265210 500653. 1732.36 2.92 0.240804 0.216169 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0575716 0.0518881 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.25 17608 13 0.24 -1 -1 32492 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1329 9892 2541 6359 992 55.3 MiB 0.10 0.00 8.09466 -168.958 -8.09466 8.09466 0.72 0.0015994 0.00146681 0.0384593 0.0349616 28 3841 47 6.55708e+06 361650 500653. 1732.36 2.56 0.316512 0.284277 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0496445 0.0451274 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17744 14 0.30 -1 -1 32688 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1640 11170 2650 7415 1105 55.4 MiB 0.18 0.00 9.0039 -186.596 -9.0039 9.0039 1.07 0.00173039 0.00158625 0.0959284 0.0878765 30 4087 23 6.55708e+06 361650 526063. 1820.29 2.16 0.325871 0.294434 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0292814 0.0264378 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17556 11 0.17 -1 -1 32624 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 16.3 MiB 0.25 878 5158 949 3601 608 55.0 MiB 0.08 0.00 6.71354 -123.992 -6.71354 6.71354 1.07 0.00124803 0.00114347 0.0368863 0.0337965 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.87 0.224448 0.201549 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046889 0.0424185 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.27 17640 12 0.27 -1 -1 32844 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1420 10309 2435 6528 1346 55.5 MiB 0.16 0.00 7.45763 -153.823 -7.45763 7.45763 1.04 0.00172199 0.00157891 0.0848605 0.0777804 34 4188 46 6.55708e+06 397815 585099. 2024.56 5.03 0.535691 0.482016 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.26 0.26 0.22 -1 -1 0.26 0.0995667 0.0899108 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.27 17656 14 0.24 -1 -1 32844 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 16.7 MiB 0.29 1436 5553 1081 4073 399 55.3 MiB 0.10 0.00 7.42808 -156.41 -7.42808 7.42808 1.04 0.00156663 0.0014363 0.0459739 0.042145 38 3267 17 6.55708e+06 349595 638502. 2209.35 3.38 0.367724 0.329917 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0543451 0.0491432 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.24 17768 12 0.16 -1 -1 32404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1097 11991 2937 7207 1847 54.8 MiB 0.16 0.00 7.19884 -160.926 -7.19884 7.19884 1.07 0.00127332 0.00116566 0.083544 0.0764828 28 3171 46 6.55708e+06 277265 500653. 1732.36 2.50 0.305033 0.274767 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0460978 0.0417009 140 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55524 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 15.5 MiB 0.16 733 7548 1614 5464 470 54.2 MiB 0.09 0.00 5.36346 -120.328 -5.36346 5.36346 1.05 0.000904749 0.000828354 0.0438593 0.0401821 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.97 0.115495 0.103222 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0306502 0.027528 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.23 17344 13 0.18 -1 -1 32616 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1075 12951 3421 7713 1817 54.9 MiB 0.17 0.00 6.90774 -144.707 -6.90774 6.90774 1.05 0.00129375 0.00118393 0.090844 0.0831735 28 3088 32 6.55708e+06 289320 500653. 1732.36 2.17 0.279634 0.251957 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0549876 0.0496722 144 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17588 13 0.27 -1 -1 32808 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1429 6575 1166 5105 304 55.6 MiB 0.11 0.00 8.01121 -157.98 -8.01121 8.01121 1.05 0.00168632 0.00154619 0.0562108 0.0515386 34 3477 22 6.55708e+06 373705 585099. 2024.56 2.70 0.416572 0.374446 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0675554 0.0611581 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.29 17944 13 0.28 -1 -1 32552 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1433 6823 1289 5315 219 55.2 MiB 0.12 0.00 7.886 -165.604 -7.886 7.886 1.05 0.00163314 0.00149742 0.0594015 0.0544549 36 4367 47 6.55708e+06 325485 612192. 2118.31 8.96 0.483144 0.434068 22750 144809 -1 3332 17 1366 4336 289824 66269 7.0397 7.0397 -158.876 -7.0397 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0627756 0.0570737 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17348 9 0.09 -1 -1 32288 -1 -1 24 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55576 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 15.6 MiB 0.19 744 10762 3120 6243 1399 54.3 MiB 0.10 0.00 5.06374 -98.4324 -5.06374 5.06374 1.04 0.000819811 0.000747303 0.0517457 0.0473728 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.54 0.154143 0.138061 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.22 0.06 0.17 -1 -1 0.22 0.0262003 0.0235087 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.22 17536 13 0.27 -1 -1 32712 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1381 10781 2930 5957 1894 55.4 MiB 0.17 0.00 7.83519 -151.249 -7.83519 7.83519 0.77 0.00160165 0.00146844 0.0933947 0.085662 30 4083 42 6.55708e+06 301375 526063. 1820.29 3.57 0.316096 0.284591 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630877 0.0571082 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.18 17312 8 0.09 -1 -1 33008 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 15.6 MiB 0.13 553 7648 2806 3716 1126 54.2 MiB 0.05 0.00 4.12642 -89.8462 -4.12642 4.12642 1.14 0.000299994 0.000269655 0.019699 0.0177063 30 1616 22 6.55708e+06 192880 526063. 1820.29 1.08 0.104158 0.0919778 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.24 0.05 0.20 -1 -1 0.24 0.0238679 0.0213639 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.23 17544 15 0.22 -1 -1 32760 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1321 6923 1475 4903 545 55.4 MiB 0.11 0.00 8.32249 -162.146 -8.32249 8.32249 1.09 0.00144775 0.00132805 0.0531067 0.0487031 36 3269 25 6.55708e+06 337540 612192. 2118.31 3.03 0.375341 0.336881 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0497231 0.0450642 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17688 13 0.22 -1 -1 32724 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1319 5919 1133 4327 459 55.2 MiB 0.10 0.00 7.07675 -156.6 -7.07675 7.07675 1.05 0.00146808 0.00134593 0.0476202 0.0436721 28 3679 22 6.55708e+06 313430 500653. 1732.36 2.56 0.240778 0.216868 21310 115450 -1 3055 23 1552 4783 319503 75123 6.44892 6.44892 -155.475 -6.44892 0 0 612192. 2118.31 0.22 0.17 0.18 -1 -1 0.22 0.0671703 0.0606296 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17768 13 0.28 -1 -1 32744 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1276 11223 2538 6825 1860 55.2 MiB 0.17 0.00 7.85647 -160.581 -7.85647 7.85647 1.05 0.00157048 0.0014403 0.0886624 0.0812629 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.84 0.304434 0.27478 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.27 0.11 0.13 -1 -1 0.27 0.052012 0.0472205 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.22 17456 12 0.16 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1153 7191 1558 5291 342 54.9 MiB 0.11 0.00 6.57592 -147.41 -6.57592 6.57592 1.04 0.00128764 0.00117926 0.0520102 0.0476354 36 3148 35 6.55708e+06 277265 612192. 2118.31 4.10 0.362778 0.325243 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0440652 0.0398731 147 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17572 11 0.15 -1 -1 32588 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.19 963 12919 3847 7319 1753 54.7 MiB 0.16 0.00 6.46503 -135.82 -6.46503 6.46503 1.04 0.00115326 0.00104915 0.083551 0.076472 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.55 0.229834 0.20748 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.037551 0.0339607 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.24 17456 11 0.17 -1 -1 32608 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 16.6 MiB 0.35 1010 6913 1544 4325 1044 55.1 MiB 0.05 0.00 6.38158 -126.573 -6.38158 6.38158 0.72 0.000457078 0.000412842 0.018824 0.0170267 26 3323 50 6.55708e+06 337540 477104. 1650.88 1.95 0.101858 0.0893736 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0493514 0.0445865 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.22 17448 12 0.22 -1 -1 32636 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1304 6321 1255 4617 449 55.1 MiB 0.10 0.00 7.16635 -157.812 -7.16635 7.16635 1.05 0.00149924 0.00137619 0.0514235 0.0471874 26 3817 49 6.55708e+06 313430 477104. 1650.88 3.66 0.312345 0.280521 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586273 0.0529867 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.22 17516 12 0.16 -1 -1 32744 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 16.5 MiB 0.57 980 5567 1150 4291 126 55.1 MiB 0.09 0.00 7.18658 -144.693 -7.18658 7.18658 1.06 0.00128207 0.00117193 0.0418527 0.0383368 28 3147 34 6.55708e+06 277265 500653. 1732.36 2.55 0.234927 0.211064 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0714621 0.0643746 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.24 17460 10 0.15 -1 -1 32600 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.18 1013 6563 1489 4557 517 54.9 MiB 0.10 0.00 5.76546 -121.445 -5.76546 5.76546 1.04 0.00123501 0.00113571 0.0489248 0.0448471 30 2358 16 6.55708e+06 265210 526063. 1820.29 1.28 0.196794 0.177268 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0424779 0.0384899 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18124 13 0.29 -1 -1 32788 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1488 10247 2366 6979 902 55.8 MiB 0.17 0.00 7.78037 -164.973 -7.78037 7.78037 1.04 0.00180581 0.00165542 0.0910545 0.0834306 32 4128 46 6.55708e+06 373705 554710. 1919.41 2.37 0.396597 0.35737 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0626686 0.0569091 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.28 18196 14 0.31 -1 -1 33424 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 16.9 MiB 0.50 1341 7544 1708 5122 714 55.4 MiB 0.13 0.00 7.48711 -165.315 -7.48711 7.48711 1.07 0.00162643 0.00149267 0.0640908 0.0588322 30 3756 44 6.55708e+06 337540 526063. 1820.29 2.34 0.335318 0.302156 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0625798 0.0567881 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17640 12 0.15 -1 -1 32592 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1061 14582 3956 8171 2455 54.9 MiB 0.19 0.00 7.55424 -147.694 -7.55424 7.55424 0.99 0.00129803 0.00118868 0.0947327 0.0865592 36 2670 17 6.55708e+06 349595 612192. 2118.31 2.82 0.359124 0.322857 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0417348 0.0377704 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.29 17944 12 0.28 -1 -1 32868 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1440 9951 2153 6171 1627 55.5 MiB 0.16 0.00 7.66392 -155.521 -7.66392 7.66392 1.07 0.00176201 0.00161857 0.0853174 0.0783459 30 3843 35 6.55708e+06 397815 526063. 1820.29 2.21 0.351813 0.317985 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.24 0.16 0.22 -1 -1 0.24 0.0749786 0.0680013 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17856 14 0.33 -1 -1 33356 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1368 10442 2445 6848 1149 55.7 MiB 0.17 0.00 8.27333 -162.102 -8.27333 8.27333 1.05 0.00167894 0.00154032 0.0894244 0.0820305 30 3476 48 6.55708e+06 349595 526063. 1820.29 2.25 0.378552 0.341264 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0267756 0.0242162 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.29 18208 13 0.25 -1 -1 32896 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1406 11311 2955 7221 1135 55.2 MiB 0.18 0.00 7.94497 -159.991 -7.94497 7.94497 1.05 0.00157341 0.00144113 0.0916055 0.0839089 36 3512 22 6.55708e+06 337540 612192. 2118.31 2.96 0.428868 0.386138 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0592924 0.0537269 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.16 17592 13 0.25 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1345 7613 1868 4862 883 55.4 MiB 0.12 0.00 7.08841 -141.492 -7.08841 7.08841 1.04 0.00153019 0.00140258 0.0633828 0.058075 34 3664 49 6.55708e+06 313430 585099. 2024.56 3.97 0.463602 0.416166 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.28 0.13 0.22 -1 -1 0.28 0.0554394 0.0502481 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.20 17388 12 0.18 -1 -1 32696 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 16.7 MiB 0.22 1315 5548 1167 3981 400 55.4 MiB 0.09 0.00 7.00741 -145.329 -7.00741 7.00741 1.04 0.00142816 0.00130966 0.0462758 0.0424451 28 3273 27 6.55708e+06 289320 500653. 1732.36 2.08 0.242933 0.218273 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0535003 0.0483115 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.31 18516 14 0.38 -1 -1 32836 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 17.1 MiB 0.40 1670 9383 2100 6642 641 55.7 MiB 0.17 0.00 8.23218 -176.173 -8.23218 8.23218 1.04 0.00187062 0.00171422 0.0867643 0.0795036 34 4632 43 6.55708e+06 373705 585099. 2024.56 3.86 0.266422 0.237584 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0649971 0.0591474 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17384 11 0.21 -1 -1 32460 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.34 1051 8603 2089 5379 1135 55.0 MiB 0.13 0.00 6.74223 -137.589 -6.74223 6.74223 1.05 0.00138527 0.0012696 0.0639838 0.058588 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.85 0.279398 0.251465 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0498976 0.0451412 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17648 13 0.30 -1 -1 33400 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1315 7435 1572 5156 707 55.3 MiB 0.12 0.00 8.06447 -154.642 -8.06447 8.06447 1.06 0.001589 0.00145439 0.0630293 0.0577129 28 3730 45 6.55708e+06 337540 500653. 1732.36 2.76 0.324734 0.291996 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.22 0.16 0.12 -1 -1 0.22 0.0608241 0.0551223 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.26 17788 12 0.25 -1 -1 32880 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.44 1532 15213 4154 8657 2402 55.5 MiB 0.24 0.00 7.13712 -150.826 -7.13712 7.13712 1.05 0.00170639 0.00156331 0.128984 0.118116 36 3865 38 6.55708e+06 349595 612192. 2118.31 4.75 0.544514 0.490671 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0796048 0.0721058 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.24 17552 13 0.24 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1350 5133 911 3808 414 55.3 MiB 0.09 0.00 7.54057 -158.305 -7.54057 7.54057 1.07 0.00155985 0.00143116 0.0430153 0.0394787 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.58 0.24938 0.224729 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0586099 0.05302 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.27 17636 13 0.21 -1 -1 32780 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1371 12351 2891 7373 2087 55.3 MiB 0.18 0.00 7.1188 -155.865 -7.1188 7.1188 1.07 0.00151145 0.00138508 0.0974992 0.0893998 36 3355 27 6.55708e+06 313430 612192. 2118.31 4.33 0.438632 0.394043 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0499009 0.0452623 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32796 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 16.7 MiB 0.44 1446 11170 2757 7067 1346 55.3 MiB 0.17 0.00 7.31654 -157.818 -7.31654 7.31654 1.04 0.00164332 0.00150557 0.0912286 0.0835579 38 3284 17 6.55708e+06 361650 638502. 2209.35 2.97 0.431647 0.388599 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.30 0.10 0.25 -1 -1 0.30 0.0404278 0.0365111 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.16 17992 13 0.29 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1513 7223 1461 5178 584 55.5 MiB 0.13 0.00 7.58438 -161.714 -7.58438 7.58438 1.05 0.0017617 0.00161564 0.0640522 0.0587283 36 3945 19 6.55708e+06 373705 612192. 2118.31 3.57 0.417992 0.37615 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0666319 0.060399 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17804 14 0.27 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1215 10813 2361 6891 1561 55.2 MiB 0.16 0.00 8.31609 -163.248 -8.31609 8.31609 1.04 0.00149297 0.00136946 0.0870622 0.0798397 30 3273 27 6.55708e+06 289320 526063. 1820.29 2.46 0.299322 0.269888 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0551152 0.049908 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17824 13 0.26 -1 -1 32672 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1503 5206 957 3956 293 55.4 MiB 0.09 0.00 8.07478 -162.365 -8.07478 8.07478 1.05 0.00163736 0.00150285 0.0447537 0.0410977 28 4195 32 6.55708e+06 361650 500653. 1732.36 3.83 0.291691 0.262571 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0644936 0.0584505 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 17892 13 0.27 -1 -1 32808 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1405 8401 1949 5780 672 55.7 MiB 0.14 0.00 7.80415 -160.841 -7.80415 7.80415 1.05 0.00170154 0.00155547 0.0720467 0.0660169 34 3777 50 6.55708e+06 373705 585099. 2024.56 3.80 0.516687 0.46456 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.0558744 0.0508025 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.29 18048 12 0.29 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1438 11641 3058 7283 1300 55.5 MiB 0.19 0.00 7.70272 -159.771 -7.70272 7.70272 0.79 0.00169619 0.00155526 0.0945156 0.0864947 30 3780 27 6.55708e+06 397815 526063. 1820.29 1.83 0.331905 0.299475 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0647839 0.0588163 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.23 17324 11 0.13 -1 -1 32620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 16.2 MiB 0.24 1054 3998 719 2985 294 54.8 MiB 0.06 0.00 6.14869 -128.86 -6.14869 6.14869 1.05 0.00116246 0.00106444 0.0293354 0.0268715 26 2734 30 6.55708e+06 216990 477104. 1650.88 2.06 0.192845 0.17267 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0506837 0.0463528 125 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.26 17840 13 0.22 -1 -1 32648 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.34 1266 7888 1808 5375 705 55.1 MiB 0.12 0.00 7.4424 -157.565 -7.4424 7.4424 1.05 0.00142902 0.00131068 0.0618502 0.0566824 28 3615 32 6.55708e+06 289320 500653. 1732.36 2.45 0.271248 0.24408 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0562075 0.05079 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18268 14 0.42 -1 -1 32852 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 17.3 MiB 0.26 1601 9199 2042 6426 731 55.9 MiB 0.18 0.00 8.66873 -176.87 -8.66873 8.66873 1.09 0.00196735 0.00179896 0.0969304 0.0888012 30 4285 34 6.55708e+06 397815 526063. 1820.29 2.65 0.393488 0.355507 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.22 0.16 0.17 -1 -1 0.22 0.0705812 0.0642085 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.27 17808 13 0.28 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1376 4579 799 3553 227 55.1 MiB 0.08 0.00 8.02278 -172.696 -8.02278 8.02278 1.06 0.00157226 0.00142938 0.0392975 0.0359971 36 3334 17 6.55708e+06 325485 612192. 2118.31 3.28 0.365503 0.327843 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0541466 0.0492155 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.23 17376 11 0.17 -1 -1 32660 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 16.3 MiB 0.17 1035 10687 2518 6679 1490 54.8 MiB 0.14 0.00 6.59735 -138.464 -6.59735 6.59735 1.04 0.00125328 0.001147 0.0756975 0.0692433 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.71 0.305534 0.274134 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.26 0.10 0.22 -1 -1 0.26 0.0454222 0.0411535 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.30 18252 15 0.46 -1 -1 32736 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1771 9773 2274 6549 950 55.7 MiB 0.18 0.00 9.55013 -184.943 -9.55013 9.55013 1.04 0.0020423 0.00187112 0.0948225 0.0869135 36 4458 20 6.55708e+06 409870 612192. 2118.31 4.83 0.540619 0.488551 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.27 0.21 0.12 -1 -1 0.27 0.0850269 0.0771835 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.26 17588 13 0.31 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1402 7958 1933 5289 736 55.6 MiB 0.13 0.00 7.87358 -164.462 -7.87358 7.87358 1.04 0.00169476 0.00155497 0.0717264 0.0657554 30 3523 41 6.55708e+06 337540 526063. 1820.29 1.98 0.346373 0.312466 21886 126133 -1 2862 16 1203 3677 173554 41260 6.73256 6.73256 -152.703 -6.73256 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0582527 0.0529153 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.22 17412 11 0.13 -1 -1 32040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1082 11804 3066 7108 1630 55.0 MiB 0.15 0.00 6.28346 -137.062 -6.28346 6.28346 1.06 0.00124315 0.00113818 0.0813482 0.0744848 30 2616 26 6.55708e+06 265210 526063. 1820.29 1.65 0.24908 0.224487 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0359682 0.0326458 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.26 17720 12 0.29 -1 -1 32812 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 17.1 MiB 0.41 1459 6058 1136 4425 497 55.8 MiB 0.11 0.00 7.4882 -153.189 -7.4882 7.4882 1.05 0.00171735 0.00157094 0.0539221 0.0494075 28 4439 38 6.55708e+06 361650 500653. 1732.36 4.26 0.328825 0.295979 21310 115450 -1 3721 57 4013 13613 1649164 568355 6.87004 6.87004 -155.733 -6.87004 0 0 612192. 2118.31 0.22 0.74 0.09 -1 -1 0.22 0.179911 0.161773 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.22 17540 12 0.20 -1 -1 32640 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1183 11346 2851 6780 1715 55.2 MiB 0.15 0.00 7.37351 -152.427 -7.37351 7.37351 1.04 0.0013547 0.0012408 0.0801469 0.0734715 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.98 0.275808 0.248654 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.26 0.12 0.09 -1 -1 0.26 0.0490432 0.0444434 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17612 12 0.18 -1 -1 32720 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 948 9803 2338 5714 1751 55.0 MiB 0.14 0.00 7.00946 -139.977 -7.00946 7.00946 1.05 0.00129864 0.00119052 0.0748006 0.0685211 26 3038 22 6.55708e+06 253155 477104. 1650.88 2.88 0.244368 0.220363 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.21 0.12 0.18 -1 -1 0.21 0.0485096 0.0438921 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 17804 12 0.28 -1 -1 32732 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1279 5474 1033 4128 313 55.6 MiB 0.10 0.00 6.7577 -128.343 -6.7577 6.7577 1.09 0.00161401 0.00148092 0.0476836 0.0438253 30 3505 36 6.55708e+06 373705 526063. 1820.29 2.22 0.256511 0.230624 21886 126133 -1 2899 27 1332 4449 354174 132887 5.94258 5.94258 -126.347 -5.94258 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0844115 0.0762196 191 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.27 17812 13 0.33 -1 -1 32776 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 17.1 MiB 0.58 1641 6757 1409 4886 462 55.7 MiB 0.12 0.00 8.4108 -177.204 -8.4108 8.4108 1.06 0.00183677 0.00168568 0.0614884 0.056427 30 4203 45 6.55708e+06 397815 526063. 1820.29 2.90 0.375833 0.339078 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0703228 0.0639233 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17588 12 0.22 -1 -1 32708 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1388 15645 4295 9025 2325 55.4 MiB 0.24 0.00 7.61066 -152.509 -7.61066 7.61066 1.11 0.00164487 0.0015051 0.125282 0.114664 30 3749 42 6.55708e+06 385760 526063. 1820.29 3.16 0.397353 0.358596 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0699665 0.0632889 200 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.23 17460 12 0.15 -1 -1 32428 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 16.4 MiB 0.50 1058 4842 1062 3260 520 54.8 MiB 0.07 0.00 6.82123 -141.643 -6.82123 6.82123 1.05 0.0011818 0.00108098 0.0346541 0.0317326 30 2539 19 6.55708e+06 241100 526063. 1820.29 1.30 0.151024 0.135443 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0578673 0.0521069 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.24 17952 12 0.21 -1 -1 32412 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1176 10455 2348 6392 1715 54.9 MiB 0.15 0.00 7.13387 -142.33 -7.13387 7.13387 1.04 0.00136933 0.00124415 0.0762727 0.0698203 28 3265 32 6.55708e+06 289320 500653. 1732.36 2.58 0.274963 0.24755 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0534659 0.0482634 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.25 17652 11 0.18 -1 -1 32848 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1196 13547 4241 6931 2375 55.3 MiB 0.19 0.00 6.85121 -131.802 -6.85121 6.85121 1.04 0.00152106 0.00139304 0.104209 0.0954392 36 3385 32 6.55708e+06 361650 612192. 2118.31 5.22 0.459444 0.413233 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.31 0.12 0.23 -1 -1 0.31 0.0484521 0.0441465 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.23 17520 11 0.20 -1 -1 32684 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1080 10647 2769 6876 1002 55.3 MiB 0.15 0.00 6.62889 -122.091 -6.62889 6.62889 1.04 0.0014221 0.00130524 0.0831324 0.0762128 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.99 0.392609 0.352736 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0604533 0.0545037 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.26 17772 13 0.19 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1040 5271 1036 3997 238 55.0 MiB 0.08 0.00 7.2482 -136.339 -7.2482 7.2482 1.08 0.00130276 0.00119254 0.0395862 0.0362533 36 2751 18 6.55708e+06 301375 612192. 2118.31 2.82 0.311549 0.279455 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0559882 0.0506249 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.26 17800 12 0.19 -1 -1 32844 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1203 11270 2888 6672 1710 55.1 MiB 0.16 0.00 7.39203 -156.297 -7.39203 7.39203 1.05 0.00149951 0.00137648 0.0855065 0.0784826 30 3360 45 6.55708e+06 337540 526063. 1820.29 2.79 0.3369 0.303453 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0510762 0.0462816 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.26 17832 13 0.28 -1 -1 32800 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1314 8130 1959 5459 712 55.4 MiB 0.13 0.00 8.02027 -155.447 -8.02027 8.02027 1.04 0.00158242 0.0014517 0.0686292 0.0629553 30 3005 23 6.55708e+06 325485 526063. 1820.29 1.63 0.277205 0.250102 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.24 0.10 0.19 -1 -1 0.24 0.0493479 0.0448401 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17912 14 0.23 -1 -1 32780 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 16.7 MiB 0.24 1224 14168 3595 8187 2386 55.2 MiB 0.21 0.00 8.42547 -164.88 -8.42547 8.42547 1.05 0.00162987 0.00149213 0.115867 0.106019 26 3972 40 6.55708e+06 337540 477104. 1650.88 3.42 0.376271 0.339372 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.23 0.15 0.17 -1 -1 0.23 0.0693063 0.0626865 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18204 14 0.24 -1 -1 32852 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1263 9791 2392 5641 1758 55.2 MiB 0.15 0.00 7.61341 -152.493 -7.61341 7.61341 1.05 0.00151076 0.00138432 0.0796354 0.0730156 30 3316 50 6.55708e+06 301375 526063. 1820.29 2.44 0.352533 0.317473 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.062573 0.0566831 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.28 18132 13 0.32 -1 -1 32676 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1335 6813 1455 4737 621 55.6 MiB 0.12 0.00 7.97606 -158.638 -7.97606 7.97606 1.08 0.0016916 0.00155007 0.0600808 0.0551064 28 4023 34 6.55708e+06 349595 500653. 1732.36 3.10 0.315257 0.283922 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.24 0.27 0.18 -1 -1 0.24 0.10041 0.0905767 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.26 17568 13 0.19 -1 -1 32464 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 16.2 MiB 0.41 1181 4811 970 3437 404 54.8 MiB 0.08 0.00 7.32681 -149.503 -7.32681 7.32681 1.03 0.00131811 0.00120553 0.037203 0.0340947 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.64 0.209407 0.188047 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.046453 0.0420571 147 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.28 18084 13 0.41 -1 -1 32980 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1409 6058 1135 4495 428 55.5 MiB 0.11 0.00 8.2444 -163.721 -8.2444 8.2444 1.05 0.00171161 0.00156975 0.055486 0.0509245 36 3519 23 6.55708e+06 385760 612192. 2118.31 3.99 0.427717 0.384993 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.059451 0.0540316 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17616 14 0.30 -1 -1 32832 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.45 1264 7231 1520 5560 151 55.2 MiB 0.12 0.00 8.00109 -166.402 -8.00109 8.00109 1.04 0.00157964 0.00144368 0.0619536 0.0567093 30 3743 50 6.55708e+06 325485 526063. 1820.29 2.57 0.340274 0.306038 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0490203 0.0445185 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17800 13 0.22 -1 -1 32884 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 16.7 MiB 0.28 1305 14323 3915 8229 2179 55.4 MiB 0.21 0.00 7.86768 -158.537 -7.86768 7.86768 1.05 0.00150935 0.00138373 0.114705 0.105084 38 3237 35 6.55708e+06 301375 638502. 2209.35 3.80 0.47164 0.424514 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.28 0.13 0.25 -1 -1 0.28 0.0572084 0.0517283 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17992 13 0.21 -1 -1 32960 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1164 9989 2471 5804 1714 55.3 MiB 0.16 0.00 7.4808 -136.781 -7.4808 7.4808 1.05 0.00150917 0.00138497 0.0824713 0.0756509 28 4049 33 6.55708e+06 325485 500653. 1732.36 5.12 0.28024 0.252134 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0552659 0.0499744 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.27 17824 14 0.34 -1 -1 32784 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1476 8091 1866 5495 730 55.7 MiB 0.13 0.00 7.88885 -165.953 -7.88885 7.88885 1.04 0.00177218 0.00162493 0.0661721 0.0607088 30 3544 39 6.55708e+06 446035 526063. 1820.29 1.86 0.346583 0.312639 21886 126133 -1 2956 19 1495 4336 195157 47267 7.0377 7.0377 -158.211 -7.0377 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0700885 0.0636001 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17608 11 0.27 -1 -1 32836 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.45 1160 8130 1856 5819 455 55.5 MiB 0.13 0.00 6.86478 -134.007 -6.86478 6.86478 1.05 0.00154024 0.00141181 0.0675125 0.0618403 28 3852 30 6.55708e+06 349595 500653. 1732.36 3.20 0.299502 0.270331 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0631889 0.0571801 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17076 13 0.16 -1 -1 32572 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1142 8083 2034 5178 871 55.1 MiB 0.11 0.00 7.01052 -158.499 -7.01052 7.01052 1.08 0.00122361 0.00111469 0.0544127 0.0498469 28 3461 48 6.55708e+06 289320 500653. 1732.36 3.66 0.266688 0.239557 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0477246 0.043103 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 17780 14 0.23 -1 -1 32904 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 16.7 MiB 0.39 1316 5267 941 3849 477 55.2 MiB 0.09 0.00 8.08175 -166.146 -8.08175 8.08175 0.95 0.00151236 0.00138663 0.0433265 0.039752 36 3344 49 6.55708e+06 337540 612192. 2118.31 5.74 0.435362 0.390351 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0591399 0.0535104 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.28 18260 15 0.40 -1 -1 32708 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57244 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1738 9421 2028 6135 1258 55.9 MiB 0.17 0.00 9.11118 -191.695 -9.11118 9.11118 1.10 0.00193088 0.00177195 0.0861417 0.0791186 30 4813 25 6.55708e+06 397815 526063. 1820.29 3.17 0.353604 0.319777 21886 126133 -1 3846 17 1881 5477 280413 64438 7.85982 7.85982 -180.296 -7.85982 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0694731 0.0631788 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17548 11 0.16 -1 -1 32588 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 16.1 MiB 0.38 1015 8213 1831 5887 495 54.7 MiB 0.10 0.00 6.43354 -132.345 -6.43354 6.43354 1.06 0.00120489 0.00110267 0.0433118 0.0391958 26 2795 26 6.55708e+06 265210 477104. 1650.88 2.68 0.209357 0.187563 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0441358 0.0397413 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.23 17332 12 0.18 -1 -1 32848 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1181 9395 2257 5715 1423 55.2 MiB 0.13 0.00 7.12111 -149.72 -7.12111 7.12111 1.04 0.00134892 0.00123072 0.0676851 0.0620024 34 3103 20 6.55708e+06 313430 585099. 2024.56 2.42 0.312183 0.280375 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0439134 0.0397502 156 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.28 17904 12 0.27 -1 -1 32712 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1374 9732 2347 6008 1377 55.4 MiB 0.16 0.00 7.22518 -156.32 -7.22518 7.22518 1.05 0.00172638 0.00157779 0.0823147 0.0754074 30 3769 28 6.55708e+06 385760 526063. 1820.29 2.67 0.332095 0.299744 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0664914 0.0604075 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.27 17840 12 0.23 -1 -1 32788 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 16.6 MiB 0.34 1295 7929 1664 5456 809 55.1 MiB 0.13 0.00 7.52995 -159.234 -7.52995 7.52995 1.04 0.001534 0.001407 0.0651034 0.0597002 36 3430 23 6.55708e+06 313430 612192. 2118.31 3.11 0.380701 0.342388 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0477721 0.0433968 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.16 18172 14 0.42 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 17.2 MiB 0.50 1613 7655 1578 5578 499 55.8 MiB 0.14 0.00 9.00229 -179.771 -9.00229 9.00229 1.04 0.00190819 0.00175195 0.073292 0.0672104 36 4565 44 6.55708e+06 373705 612192. 2118.31 6.66 0.561114 0.505824 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.26 0.17 0.12 -1 -1 0.26 0.0730662 0.0664722 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.25 17676 12 0.21 -1 -1 32840 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 16.4 MiB 0.43 1246 9687 2384 6348 955 55.2 MiB 0.15 0.00 7.02918 -135.408 -7.02918 7.02918 1.04 0.00143295 0.001315 0.0778769 0.0714283 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.85 0.29105 0.262201 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.22 0.12 0.20 -1 -1 0.22 0.0493222 0.044473 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.22 17456 11 0.21 -1 -1 32804 -1 -1 26 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 16.4 MiB 0.33 833 9013 2082 5123 1808 54.8 MiB 0.12 0.00 7.08055 -122.398 -7.08055 7.08055 1.04 0.00122075 0.00111799 0.0628165 0.0575179 28 2481 16 6.55708e+06 313430 500653. 1732.36 1.38 0.209336 0.188727 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0422386 0.0382439 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.29 18200 13 0.42 -1 -1 32892 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 17.7 MiB 0.46 1984 9864 2435 6697 732 56.0 MiB 0.18 0.00 7.66038 -164.562 -7.66038 7.66038 1.04 0.00212074 0.00194337 0.0921628 0.0844266 36 4924 33 6.55708e+06 482200 612192. 2118.31 6.90 0.545118 0.491239 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.27 0.21 0.23 -1 -1 0.27 0.0843849 0.0766875 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 18076 14 0.24 -1 -1 33088 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.21 1315 7027 1431 4957 639 55.3 MiB 0.11 0.00 8.27869 -161.961 -8.27869 8.27869 1.04 0.00156251 0.00143306 0.0581757 0.0533658 28 3660 24 6.55708e+06 337540 500653. 1732.36 2.37 0.26828 0.241767 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0637751 0.0576984 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17768 12 0.16 -1 -1 32640 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1196 5395 963 4230 202 55.0 MiB 0.08 0.00 7.24055 -154.388 -7.24055 7.24055 1.04 0.00132207 0.00121292 0.0380952 0.0349644 30 2856 20 6.55708e+06 325485 526063. 1820.29 1.46 0.201291 0.181133 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0426716 0.0387173 145 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.26 17628 13 0.27 -1 -1 32836 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1201 6321 1371 4614 336 55.3 MiB 0.11 0.00 7.64034 -157.02 -7.64034 7.64034 1.04 0.00152202 0.00139495 0.053864 0.0493518 30 3256 40 6.55708e+06 313430 526063. 1820.29 1.86 0.294909 0.26538 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0468604 0.0425014 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.27 17932 13 0.31 -1 -1 32812 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1537 8423 1899 6115 409 55.8 MiB 0.15 0.00 7.71709 -159.898 -7.71709 7.71709 1.05 0.00188193 0.00173176 0.0748891 0.0687345 36 3879 25 6.55708e+06 421925 612192. 2118.31 3.71 0.466765 0.42033 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.32 0.09 0.23 -1 -1 0.32 0.0354705 0.0322565 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.26 17640 11 0.24 -1 -1 32852 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1421 8703 2291 5674 738 55.5 MiB 0.14 0.00 6.43018 -129.379 -6.43018 6.43018 1.05 0.00163679 0.00150184 0.0722123 0.0662549 38 3311 27 6.55708e+06 373705 638502. 2209.35 3.30 0.432757 0.389108 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0580261 0.0526955 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 17780 15 0.33 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 16.8 MiB 0.48 1495 8283 1832 5858 593 55.6 MiB 0.14 0.00 9.21891 -185.491 -9.21891 9.21891 1.04 0.00170503 0.00156319 0.0721097 0.0660744 38 3387 17 6.55708e+06 349595 638502. 2209.35 3.42 0.425645 0.383136 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.28 0.12 0.25 -1 -1 0.28 0.0532213 0.048407 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.29 18148 13 0.31 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1391 6271 1140 4757 374 55.4 MiB 0.11 0.00 8.07023 -173.04 -8.07023 8.07023 1.05 0.00165512 0.00151757 0.0534103 0.048985 30 3593 20 6.55708e+06 361650 526063. 1820.29 2.14 0.265214 0.238901 21886 126133 -1 2903 17 1284 3905 184760 43217 7.10844 7.10844 -159.923 -7.10844 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0694765 0.0631634 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.14 17496 12 0.19 -1 -1 32692 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 16.7 MiB 0.43 1116 9738 2558 6406 774 55.3 MiB 0.13 0.00 7.61081 -154.169 -7.61081 7.61081 1.05 0.00133967 0.00122898 0.068667 0.0629449 30 3005 25 6.55708e+06 349595 526063. 1820.29 1.72 0.247277 0.222964 21886 126133 -1 2423 19 1255 3517 162640 39524 6.47024 6.47024 -141.633 -6.47024 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524299 0.0474358 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.24 17636 11 0.15 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 1023 14221 4533 7413 2275 55.0 MiB 0.18 0.00 6.85492 -138.928 -6.85492 6.85492 1.05 0.00124918 0.0011431 0.0992181 0.0907217 30 2928 46 6.55708e+06 253155 526063. 1820.29 2.21 0.311489 0.280318 21886 126133 -1 2286 18 1070 2867 167614 45871 6.07244 6.07244 -136.814 -6.07244 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0472799 0.0426707 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17604 13 0.32 -1 -1 32860 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1413 7544 1727 4833 984 55.5 MiB 0.13 0.00 7.87899 -160.785 -7.87899 7.87899 1.04 0.00167024 0.00153138 0.0656729 0.0602013 36 4021 32 6.55708e+06 349595 612192. 2118.31 4.73 0.454425 0.408428 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.27 0.18 0.23 -1 -1 0.27 0.07392 0.0672022 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.24 17540 10 0.16 -1 -1 32612 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 868 12919 4781 6181 1957 54.8 MiB 0.17 0.00 5.78714 -114.742 -5.78714 5.78714 1.09 0.00122749 0.00112418 0.088476 0.0810058 36 2361 20 6.55708e+06 289320 612192. 2118.31 2.94 0.357012 0.321594 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0376194 0.0341053 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17464 14 0.19 -1 -1 32536 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 16.6 MiB 0.48 1127 8083 1934 5578 571 55.1 MiB 0.12 0.00 7.89252 -162.804 -7.89252 7.89252 1.05 0.0013253 0.00121414 0.0586879 0.0537833 30 2792 49 6.55708e+06 289320 526063. 1820.29 2.33 0.294772 0.265269 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0541165 0.0489064 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.27 18032 13 0.26 -1 -1 32712 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1259 5343 1011 3807 525 55.4 MiB 0.05 0.00 7.51815 -158.387 -7.51815 7.51815 0.73 0.000555378 0.000497503 0.016943 0.0153981 30 3403 50 6.55708e+06 361650 526063. 1820.29 2.39 0.28552 0.255996 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0592643 0.0536671 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.22 17348 12 0.15 -1 -1 32648 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 16.2 MiB 0.32 1126 6425 1245 4721 459 54.7 MiB 0.09 0.00 6.61153 -138.873 -6.61153 6.61153 1.04 0.00135675 0.00123333 0.043998 0.0402344 26 3323 44 6.55708e+06 313430 477104. 1650.88 4.18 0.250248 0.224694 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0459733 0.0415341 138 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.27 17772 12 0.19 -1 -1 32844 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1378 9336 2424 5781 1131 55.2 MiB 0.15 0.00 6.98257 -148.375 -6.98257 6.98257 1.08 0.00159093 0.00145749 0.080651 0.0738476 28 3883 35 6.55708e+06 313430 500653. 1732.36 4.59 0.325773 0.29336 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.23 0.26 0.19 -1 -1 0.23 0.0792537 0.0716163 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.29 17912 13 0.28 -1 -1 32672 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 16.8 MiB 0.49 1315 8372 1899 5332 1141 55.3 MiB 0.14 0.00 7.89081 -157.415 -7.89081 7.89081 1.06 0.00163616 0.00149935 0.0712874 0.0654115 30 3625 30 6.55708e+06 349595 526063. 1820.29 1.98 0.306686 0.27667 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0604182 0.054909 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.23 17348 11 0.17 -1 -1 32628 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1172 8405 1842 5723 840 55.0 MiB 0.11 0.00 6.25963 -142.54 -6.25963 6.25963 1.07 0.00128668 0.001167 0.0576879 0.0527868 28 3065 24 6.55708e+06 301375 500653. 1732.36 1.86 0.23006 0.207027 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0422883 0.0383321 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.24 17636 13 0.21 -1 -1 32764 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 16.3 MiB 0.29 1201 7888 1972 5242 674 55.0 MiB 0.12 0.00 7.53481 -156.077 -7.53481 7.53481 0.96 0.00143535 0.00131667 0.062262 0.0571249 36 3071 27 6.55708e+06 289320 612192. 2118.31 3.89 0.385114 0.345976 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0468585 0.04248 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.25 17844 13 0.25 -1 -1 32820 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 17.0 MiB 0.65 1318 8165 2007 5452 706 55.5 MiB 0.13 0.00 7.90343 -168.183 -7.90343 7.90343 1.04 0.00159297 0.0014602 0.067703 0.0620305 30 3226 19 6.55708e+06 337540 526063. 1820.29 1.64 0.266518 0.240373 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0654755 0.0593052 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.27 17804 11 0.21 -1 -1 32796 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1119 12568 3466 6955 2147 55.1 MiB 0.17 0.00 6.27069 -123.259 -6.27069 6.27069 1.05 0.00138578 0.00127108 0.0933256 0.085563 30 2940 50 6.55708e+06 325485 526063. 1820.29 2.16 0.337729 0.304143 21886 126133 -1 2517 15 1008 3060 157394 36211 5.50298 5.50298 -118.863 -5.50298 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0455581 0.0413035 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.29 18352 14 0.31 -1 -1 33240 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 17.4 MiB 0.36 1606 6711 1323 5111 277 55.9 MiB 0.12 0.00 8.36721 -183.374 -8.36721 8.36721 1.05 0.00182011 0.00166709 0.0590877 0.0541795 30 4329 37 6.55708e+06 421925 526063. 1820.29 2.78 0.341643 0.308068 21886 126133 -1 3550 24 1906 6091 351716 94716 7.38604 7.38604 -174.226 -7.38604 0 0 666494. 2306.21 0.24 0.20 0.20 -1 -1 0.24 0.0871901 0.0789421 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17136 12 0.17 -1 -1 32560 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1117 4987 873 3940 174 55.1 MiB 0.07 0.00 6.95154 -148.876 -6.95154 6.95154 1.03 0.00121248 0.00110995 0.0331756 0.0304147 36 2672 44 6.55708e+06 337540 612192. 2118.31 2.91 0.337617 0.302276 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0356993 0.0323959 138 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18120 13 0.29 -1 -1 32836 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 16.9 MiB 0.40 1370 8603 2025 5470 1108 55.3 MiB 0.14 0.00 7.91043 -160.998 -7.91043 7.91043 1.06 0.00160104 0.00146973 0.0744827 0.0682709 28 4265 49 6.55708e+06 301375 500653. 1732.36 4.71 0.357702 0.322105 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0580623 0.0525632 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17592 13 0.18 -1 -1 32644 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.5 MiB 0.33 1056 8130 1788 5768 574 55.0 MiB 0.12 0.00 7.50778 -157.173 -7.50778 7.50778 1.05 0.001301 0.00118841 0.0562795 0.0514286 30 2704 18 6.55708e+06 313430 526063. 1820.29 1.40 0.214892 0.193497 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.044385 0.0402158 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.29 17900 12 0.21 -1 -1 32872 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1163 6723 1513 4783 427 55.5 MiB 0.11 0.00 6.89912 -149.425 -6.89912 6.89912 1.04 0.00156204 0.0014264 0.0566857 0.0519115 28 3528 41 6.55708e+06 313430 500653. 1732.36 3.35 0.310618 0.279318 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0552988 0.0501387 176 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18460 15 0.47 -1 -1 33276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 17.5 MiB 0.27 1744 7060 1356 4899 805 56.0 MiB 0.14 0.00 8.47263 -171.112 -8.47263 8.47263 1.05 0.00209021 0.00191438 0.0693625 0.0635189 30 5706 47 6.55708e+06 433980 526063. 1820.29 5.07 0.436232 0.39402 21886 126133 -1 4008 29 2412 8168 612663 183661 7.6799 7.6799 -172.318 -7.6799 0 0 666494. 2306.21 0.23 0.31 0.10 -1 -1 0.23 0.117057 0.105998 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.21 17140 10 0.10 -1 -1 32152 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 15.8 MiB 0.12 585 9368 2413 5125 1830 54.3 MiB 0.10 0.00 5.46394 -116.249 -5.46394 5.46394 1.03 0.000905375 0.000829237 0.0519597 0.0475727 34 2054 46 6.55708e+06 216990 585099. 2024.56 2.26 0.279447 0.249275 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.27 0.07 0.22 -1 -1 0.27 0.0281215 0.0253442 90 84 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17672 13 0.19 -1 -1 32768 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 16.2 MiB 0.17 1072 8919 2278 5395 1246 54.8 MiB 0.13 0.00 7.24406 -148.604 -7.24406 7.24406 1.05 0.00129206 0.00118484 0.063849 0.0585826 36 2670 24 6.55708e+06 301375 612192. 2118.31 2.47 0.342695 0.308104 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0437925 0.0396976 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17636 12 0.21 -1 -1 32660 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1142 5938 1144 4647 147 55.2 MiB 0.10 0.00 7.66077 -153.727 -7.66077 7.66077 1.06 0.00146379 0.00134295 0.0492799 0.0452389 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.99 0.258516 0.232434 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.26 0.14 0.18 -1 -1 0.26 0.0578562 0.0523324 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.15 17104 9 0.13 -1 -1 32508 -1 -1 22 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 16.1 MiB 0.16 820 8191 2009 5395 787 54.7 MiB 0.10 0.00 5.29417 -99.0147 -5.29417 5.29417 1.05 0.00102226 0.000936603 0.0522873 0.0479199 28 2275 34 6.55708e+06 265210 500653. 1732.36 1.73 0.204657 0.183558 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.03816 0.0343715 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17816 12 0.25 -1 -1 32800 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1501 7867 1766 5013 1088 55.7 MiB 0.13 0.00 7.24465 -156.602 -7.24465 7.24465 1.05 0.00167613 0.00153718 0.0640638 0.0587686 36 4232 25 6.55708e+06 397815 612192. 2118.31 5.05 0.432603 0.388923 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0632831 0.0574058 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.30 18296 13 0.28 -1 -1 32664 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1408 5343 959 3971 413 55.6 MiB 0.10 0.00 8.27458 -166.489 -8.27458 8.27458 1.07 0.00169267 0.00155209 0.0480411 0.0440973 30 3772 34 6.55708e+06 361650 526063. 1820.29 2.25 0.301747 0.272148 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0613251 0.0556482 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 17.1 MiB 0.30 1124 13017 3784 8461 772 55.6 MiB 0.20 0.00 5.44269 -161.211 -5.44269 5.44269 0.75 0.00117703 0.00108076 0.0730608 0.0669919 32 2442 21 6.64007e+06 401856 554710. 1919.41 1.29 0.214948 0.193355 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0513334 0.0462344 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30448 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1017 14639 5117 7505 2017 55.6 MiB 0.24 0.00 4.98742 -150.865 -4.98742 4.98742 1.07 0.00118553 0.00108731 0.0951133 0.0872797 32 2368 24 6.64007e+06 301392 554710. 1919.41 1.19 0.222633 0.200896 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.049744 0.0448519 139 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.6 MiB 0.24 982 7575 1808 5319 448 55.3 MiB 0.13 0.00 4.35696 -123.732 -4.35696 4.35696 1.05 0.00102224 0.000936776 0.0432596 0.0396842 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.76 0.187689 0.168222 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0432382 0.0388571 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.7 MiB 0.07 985 10228 2796 6251 1181 55.2 MiB 0.08 0.00 4.65835 -126.219 -4.65835 4.65835 1.02 0.000391843 0.000354148 0.0223609 0.0202768 32 2212 23 6.64007e+06 339066 554710. 1919.41 1.27 0.158282 0.141491 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0439229 0.0394829 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30264 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.7 MiB 0.05 1007 9687 2297 6508 882 55.4 MiB 0.08 0.00 4.57112 -133.029 -4.57112 4.57112 0.72 0.000416208 0.000376301 0.0229293 0.020785 30 2231 22 6.64007e+06 288834 526063. 1820.29 0.77 0.0789614 0.069749 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417112 0.0376178 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30336 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1031 10673 2804 7227 642 55.5 MiB 0.17 0.00 3.47522 -121.603 -3.47522 3.47522 1.05 0.00120106 0.00110093 0.0601096 0.055116 26 2825 19 6.64007e+06 426972 477104. 1650.88 2.00 0.207724 0.186973 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.048249 0.0434642 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17552 1 0.02 -1 -1 30588 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 16.3 MiB 0.11 589 11532 3345 7374 813 54.9 MiB 0.15 0.00 4.00878 -100.807 -4.00878 4.00878 1.06 0.000895541 0.00082145 0.0652213 0.059859 32 1498 22 6.64007e+06 238602 554710. 1919.41 1.15 0.178538 0.160305 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0341167 0.0305149 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30064 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 892 10318 2381 7361 576 55.2 MiB 0.14 0.00 3.4251 -99.9264 -3.4251 3.4251 1.05 0.000972932 0.000893855 0.0496412 0.0455334 28 2086 21 6.64007e+06 389298 500653. 1732.36 1.19 0.171468 0.154009 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0373206 0.0335257 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30128 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 16.8 MiB 0.22 960 9623 2754 6116 753 55.3 MiB 0.14 0.00 3.62801 -120.96 -3.62801 3.62801 1.05 0.00103427 0.000947423 0.05762 0.0528059 28 2163 20 6.64007e+06 251160 500653. 1732.36 1.17 0.185916 0.166916 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.03781 0.0339434 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30100 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.22 841 12506 4273 6237 1996 55.2 MiB 0.18 0.00 3.87558 -126.558 -3.87558 3.87558 1.05 0.0010121 0.00092763 0.0755392 0.0693134 28 1979 19 6.64007e+06 213486 500653. 1732.36 1.24 0.199752 0.17991 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0371203 0.0333462 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.17 17884 1 0.03 -1 -1 30428 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.5 MiB 0.16 796 12078 3517 6936 1625 55.2 MiB 0.16 0.00 4.09995 -113.228 -4.09995 4.09995 1.04 0.000997782 0.000914666 0.0737028 0.067524 32 1650 18 6.64007e+06 213486 554710. 1919.41 1.10 0.192173 0.172789 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.036299 0.0325286 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 0.27 811 8448 2011 5971 466 55.0 MiB 0.12 0.00 3.76138 -119.223 -3.76138 3.76138 1.04 0.00095372 0.000874807 0.0479023 0.0439275 32 2052 21 6.64007e+06 226044 554710. 1919.41 1.16 0.166736 0.14947 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0331215 0.0297089 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1094 10228 2675 6918 635 55.3 MiB 0.18 0.00 4.45106 -144.281 -4.45106 4.45106 1.07 0.00116142 0.0010655 0.0643304 0.0590828 28 2647 19 6.64007e+06 301392 500653. 1732.36 1.34 0.207313 0.186877 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0485103 0.0437036 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30444 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.18 940 8735 2013 6355 367 55.4 MiB 0.15 0.00 5.05578 -142.31 -5.05578 5.05578 1.03 0.00118372 0.00108474 0.0514219 0.0471838 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.72 0.207368 0.18589 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0549453 0.0493388 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30108 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 637 6668 1590 4651 427 55.1 MiB 0.05 0.00 3.28519 -90.5035 -3.28519 3.28519 1.09 0.000324725 0.000292902 0.0138014 0.0125169 28 1662 22 6.64007e+06 263718 500653. 1732.36 1.12 0.125278 0.111439 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.23 0.07 0.17 -1 -1 0.23 0.0319014 0.0285146 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.22 17876 1 0.02 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 16.9 MiB 0.18 961 6890 1523 4904 463 55.6 MiB 0.13 0.00 4.06512 -124.686 -4.06512 4.06512 1.04 0.00120626 0.00110642 0.0473462 0.0434856 32 2268 21 6.64007e+06 276276 554710. 1919.41 1.29 0.193573 0.173893 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.29 0.11 0.21 -1 -1 0.29 0.0471173 0.0425449 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17640 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1114 15447 4373 9239 1835 55.5 MiB 0.24 0.00 4.49004 -144.522 -4.49004 4.49004 1.04 0.00114565 0.00105206 0.0952199 0.0874283 30 2367 22 6.64007e+06 288834 526063. 1820.29 1.36 0.237495 0.214169 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0496195 0.0446811 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17904 1 0.04 -1 -1 30468 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.8 MiB 0.15 723 8493 1892 6266 335 55.3 MiB 0.13 0.00 2.85064 -99.9956 -2.85064 2.85064 1.05 0.00106033 0.000969424 0.0452802 0.0414219 26 1971 23 6.64007e+06 364182 477104. 1650.88 1.35 0.182395 0.163409 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.25 0.11 0.18 -1 -1 0.25 0.049022 0.0438561 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 16.3 MiB 0.07 681 12139 4399 6260 1480 54.9 MiB 0.13 0.00 2.38033 -81.64 -2.38033 2.38033 1.05 0.00076902 0.000703302 0.0592896 0.0542479 32 1405 20 6.64007e+06 188370 554710. 1919.41 1.09 0.15367 0.137575 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.25 0.06 0.24 -1 -1 0.25 0.028923 0.0257308 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 16.8 MiB 0.26 706 14123 4873 6572 2678 55.3 MiB 0.18 0.00 4.95769 -142.332 -4.95769 4.95769 1.05 0.000998696 0.00091638 0.0812904 0.0746044 36 1838 20 6.64007e+06 251160 612192. 2118.31 2.41 0.288537 0.258618 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.28 0.08 0.23 -1 -1 0.28 0.0347326 0.0312352 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.07 905 8735 1899 5951 885 55.5 MiB 0.13 0.00 4.18572 -129.145 -4.18572 4.18572 1.05 0.00116138 0.00106634 0.0501502 0.0460589 30 2116 22 6.64007e+06 389298 526063. 1820.29 1.18 0.197639 0.177877 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0478534 0.0430564 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30364 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1203 12167 3358 7515 1294 55.9 MiB 0.20 0.00 4.64616 -143.706 -4.64616 4.64616 1.04 0.00120978 0.00111002 0.07787 0.071442 26 3212 23 6.64007e+06 313950 477104. 1650.88 2.57 0.228902 0.206013 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0527155 0.0474376 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.14 17360 1 0.03 -1 -1 30596 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.2 MiB 0.16 410 10636 4183 5187 1266 54.8 MiB 0.10 0.00 2.43955 -66.7065 -2.43955 2.43955 1.04 0.000655809 0.000598597 0.0452125 0.0412744 26 1192 25 6.64007e+06 226044 477104. 1650.88 1.11 0.13169 0.117369 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0251434 0.0223626 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17176 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.07 995 7897 1725 4978 1194 55.2 MiB 0.12 0.00 5.05066 -128.356 -5.05066 5.05066 0.82 0.00101296 0.000930873 0.0458057 0.0421128 28 2296 20 6.64007e+06 263718 500653. 1732.36 1.16 0.171885 0.154532 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0391281 0.0352006 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.13 17148 1 0.03 -1 -1 30064 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 16.0 MiB 0.06 661 11200 3826 5626 1748 54.6 MiB 0.10 0.00 2.56853 -79.0193 -2.56853 2.56853 1.05 0.000634681 0.000579327 0.0448158 0.040922 28 1267 14 6.64007e+06 175812 500653. 1732.36 1.03 0.117704 0.105271 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.23 0.04 0.18 -1 -1 0.23 0.019053 0.0170393 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30216 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 831 10318 2723 6880 715 55.2 MiB 0.15 0.00 4.58015 -125.342 -4.58015 4.58015 1.05 0.00103161 0.000946258 0.0529382 0.0485651 28 2131 21 6.64007e+06 376740 500653. 1732.36 1.21 0.183285 0.164681 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0399073 0.0358635 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.19 17280 1 0.03 -1 -1 30532 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.06 850 7439 1494 5462 483 55.3 MiB 0.12 0.00 3.82887 -106.637 -3.82887 3.82887 1.05 0.00104908 0.000962907 0.0390408 0.0358528 28 2324 24 6.64007e+06 389298 500653. 1732.36 1.22 0.176629 0.158626 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407083 0.0366744 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30288 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 16.9 MiB 0.15 906 17635 6157 8662 2816 55.5 MiB 0.25 0.00 4.78135 -133.838 -4.78135 4.78135 1.09 0.00112837 0.00103374 0.100278 0.0919459 28 2693 30 6.64007e+06 339066 500653. 1732.36 2.05 0.261753 0.236129 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.22 0.10 0.15 -1 -1 0.22 0.0413043 0.0372393 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30252 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.3 MiB 0.09 735 5928 1206 4471 251 55.0 MiB 0.09 0.00 3.02179 -99.7239 -3.02179 3.02179 1.05 0.000973409 0.000892928 0.0361775 0.0332376 26 2048 22 6.64007e+06 200928 477104. 1650.88 1.21 0.14906 0.133291 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0386171 0.034587 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17216 1 0.03 -1 -1 30420 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.5 MiB 0.09 661 11617 2521 8405 691 55.1 MiB 0.14 0.00 3.24119 -97.0143 -3.24119 3.24119 1.00 0.000903561 0.000828002 0.0590769 0.0541636 28 1701 20 6.64007e+06 288834 500653. 1732.36 1.29 0.15837 0.141773 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0321236 0.0288204 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30268 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.3 MiB 0.06 583 14123 3845 8834 1444 54.9 MiB 0.16 0.00 3.43604 -94.4648 -3.43604 3.43604 1.05 0.000899355 0.000825177 0.0731981 0.0671448 28 1800 26 6.64007e+06 288834 500653. 1732.36 1.34 0.192708 0.173074 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0352396 0.0314469 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17272 1 0.02 -1 -1 30248 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.5 MiB 0.06 702 4763 881 3747 135 55.1 MiB 0.08 0.00 3.98575 -113.461 -3.98575 3.98575 1.04 0.000913777 0.00083824 0.0266264 0.0244822 26 2390 34 6.64007e+06 238602 477104. 1650.88 1.63 0.160612 0.143435 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0393196 0.0351873 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30164 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.3 MiB 0.07 705 6924 1381 5320 223 54.9 MiB 0.10 0.00 3.56847 -102.973 -3.56847 3.56847 1.06 0.000935807 0.00085775 0.0348059 0.0319278 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.44 0.184936 0.165131 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0355158 0.0317843 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30436 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 16.8 MiB 0.16 800 11799 3784 6073 1942 55.2 MiB 0.16 0.00 3.4791 -109.298 -3.4791 3.4791 1.05 0.000965336 0.000883915 0.0620341 0.0568286 28 1940 18 6.64007e+06 326508 500653. 1732.36 1.13 0.178358 0.160144 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0371419 0.0332605 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1109 16524 4269 9768 2487 55.6 MiB 0.23 0.00 4.35696 -124.032 -4.35696 4.35696 1.05 0.00124292 0.00114164 0.0899737 0.0826072 32 2645 21 6.64007e+06 477204 554710. 1919.41 1.26 0.246701 0.222969 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436058 0.0394034 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17920 1 0.03 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1062 10676 2654 7216 806 55.8 MiB 0.17 0.00 3.87558 -130.413 -3.87558 3.87558 0.74 0.00127261 0.00116529 0.0613801 0.0562326 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.38 0.227987 0.205228 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048583 0.043819 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30212 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 16.8 MiB 0.26 894 10228 3268 4917 2043 55.3 MiB 0.14 0.00 4.39381 -127.308 -4.39381 4.39381 1.05 0.000955034 0.000870674 0.0578902 0.0528668 32 2018 21 6.64007e+06 238602 554710. 1919.41 1.17 0.177255 0.158889 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0367985 0.0329761 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17880 1 0.03 -1 -1 30384 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 16.7 MiB 0.16 1026 15298 5172 7552 2574 55.4 MiB 0.23 0.00 4.30797 -133.38 -4.30797 4.30797 1.05 0.00120433 0.0011038 0.0979271 0.0897419 32 2288 22 6.64007e+06 313950 554710. 1919.41 1.25 0.252659 0.228095 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0523724 0.0471214 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.16 17524 1 0.03 -1 -1 30352 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 17.3 MiB 0.41 1296 14996 4340 8343 2313 55.5 MiB 0.25 0.00 5.87616 -177.472 -5.87616 5.87616 1.08 0.00122795 0.00112596 0.0929296 0.085305 32 3094 21 6.64007e+06 364182 554710. 1919.41 1.33 0.249 0.225001 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0204503 0.0183089 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1150 16974 4810 10660 1504 55.7 MiB 0.27 0.00 5.08852 -153.875 -5.08852 5.08852 1.05 0.00124836 0.00114392 0.108628 0.0994805 28 3077 19 6.64007e+06 339066 500653. 1732.36 1.32 0.26653 0.240966 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.23 0.11 0.20 -1 -1 0.23 0.0371802 0.033182 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 16.7 MiB 0.17 1075 13513 3858 8482 1173 55.3 MiB 0.21 0.00 4.68524 -137.744 -4.68524 4.68524 1.04 0.00115878 0.00106253 0.0765182 0.0701455 30 2366 21 6.64007e+06 389298 526063. 1820.29 1.17 0.221092 0.199324 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370244 0.0334353 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17412 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 16.9 MiB 0.23 975 7767 1720 5470 577 55.4 MiB 0.12 0.00 4.38513 -117.551 -4.38513 4.38513 1.10 0.00100368 0.000921378 0.0435467 0.0399998 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.67 0.176501 0.158238 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.21 0.10 0.19 -1 -1 0.21 0.0386443 0.0346939 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.22 18044 1 0.03 -1 -1 30372 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 17.5 MiB 0.23 1225 15720 4488 9844 1388 55.9 MiB 0.26 0.00 5.18355 -167.471 -5.18355 5.18355 1.05 0.00147235 0.00135246 0.0990371 0.0909559 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.60 0.278457 0.251589 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516683 0.0466444 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30184 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.6 MiB 0.10 755 11064 4559 5783 722 55.2 MiB 0.12 0.00 3.8227 -103.618 -3.8227 3.8227 1.07 0.000901496 0.00082647 0.0570526 0.0523004 30 1736 20 6.64007e+06 263718 526063. 1820.29 1.25 0.168698 0.1513 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.25 0.08 0.19 -1 -1 0.25 0.0372224 0.0332381 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 17.1 MiB 0.25 1189 14518 4594 8025 1899 55.8 MiB 0.24 0.00 5.24081 -156.256 -5.24081 5.24081 1.04 0.00113572 0.00104234 0.0860448 0.0789837 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.54 0.238896 0.215651 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.25 0.10 0.20 -1 -1 0.25 0.0452007 0.0406943 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.6 MiB 0.16 1030 10531 2414 7661 456 55.4 MiB 0.18 0.00 4.0171 -121.213 -4.0171 4.0171 1.05 0.00115561 0.00105911 0.0579078 0.0530917 26 3025 43 6.64007e+06 414414 477104. 1650.88 3.08 0.240794 0.215938 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.22 0.09 0.12 -1 -1 0.22 0.0347709 0.031396 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17364 1 0.03 -1 -1 30240 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.8 MiB 0.06 891 13153 4464 6066 2623 55.3 MiB 0.18 0.00 4.20356 -126.138 -4.20356 4.20356 1.04 0.00102734 0.00094274 0.0721838 0.0662695 32 2178 21 6.64007e+06 301392 554710. 1919.41 1.05 0.146248 0.131615 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.042617 0.0382781 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1089 13933 3596 8128 2209 55.7 MiB 0.21 0.00 4.81394 -142.313 -4.81394 4.81394 1.05 0.00116952 0.00107289 0.0865867 0.0794415 26 2775 32 6.64007e+06 301392 477104. 1650.88 2.24 0.253869 0.228593 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0426926 0.0384746 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.18 935 7980 1596 5688 696 55.6 MiB 0.13 0.00 3.76946 -120.7 -3.76946 3.76946 1.05 0.00118954 0.00109206 0.0465944 0.0427473 30 2198 19 6.64007e+06 401856 526063. 1820.29 0.95 0.127914 0.11465 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0418313 0.0377305 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 17.2 MiB 0.19 901 8796 1803 6364 629 55.9 MiB 0.16 0.00 4.787 -140.677 -4.787 4.787 1.05 0.0012429 0.00113902 0.050257 0.0461202 32 2513 22 6.64007e+06 464646 554710. 1919.41 1.23 0.210834 0.1898 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0456843 0.0412127 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30460 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.6 MiB 0.07 902 12903 3419 8175 1309 55.2 MiB 0.18 0.00 4.24273 -122.494 -4.24273 4.24273 1.04 0.00105288 0.000965822 0.067558 0.0619693 32 1909 19 6.64007e+06 364182 554710. 1919.41 1.17 0.196817 0.177225 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403306 0.0362401 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 16.8 MiB 0.24 983 6913 1568 4936 409 55.7 MiB 0.12 0.00 5.07997 -139.694 -5.07997 5.07997 1.04 0.00108448 0.000994744 0.0414727 0.0380695 32 2406 21 6.64007e+06 301392 554710. 1919.41 1.19 0.177844 0.159809 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436864 0.0392816 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1148 9058 2364 5808 886 55.8 MiB 0.16 0.00 5.0113 -149.211 -5.0113 5.0113 1.05 0.00121522 0.00111427 0.0610394 0.0560127 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.91 0.201986 0.181141 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0564978 0.0508096 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.17 17524 1 0.04 -1 -1 30268 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 17.2 MiB 0.16 977 15962 5144 8098 2720 55.8 MiB 0.26 0.00 4.21776 -130.397 -4.21776 4.21776 1.05 0.00123144 0.00112713 0.107805 0.0987817 32 2870 23 6.64007e+06 276276 554710. 1919.41 1.31 0.26862 0.242554 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.25 0.10 0.25 -1 -1 0.25 0.039605 0.0357706 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30168 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.4 MiB 0.10 763 11398 3223 7297 878 55.0 MiB 0.14 0.00 3.46744 -102.907 -3.46744 3.46744 1.06 0.000878489 0.00080473 0.0543458 0.0498389 26 1977 28 6.64007e+06 301392 477104. 1650.88 1.29 0.177503 0.159016 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.0348223 0.0310409 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 16.5 MiB 0.33 982 8969 2347 6212 410 55.2 MiB 0.15 0.00 4.05536 -139.886 -4.05536 4.05536 1.05 0.00111613 0.00102302 0.0557053 0.0510805 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.99 0.138584 0.124307 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417773 0.0375161 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 17.5 MiB 0.26 1389 7443 1662 5262 519 55.7 MiB 0.16 0.01 5.61123 -170.011 -5.61123 5.61123 1.09 0.0012958 0.00119076 0.0500797 0.0460641 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.93 0.223815 0.201799 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547788 0.0494843 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30476 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 16.8 MiB 0.15 962 14988 4939 7718 2331 55.5 MiB 0.22 0.00 4.60549 -136.553 -4.60549 4.60549 1.05 0.00115616 0.00106111 0.0820854 0.0753455 30 2140 21 6.64007e+06 401856 526063. 1820.29 1.21 0.226974 0.204814 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0405283 0.0365873 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30348 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.3 MiB 0.07 702 10423 3012 6489 922 55.0 MiB 0.14 0.00 3.51327 -104.848 -3.51327 3.51327 1.04 0.00094947 0.000870551 0.0534973 0.0490604 28 1807 22 6.64007e+06 326508 500653. 1732.36 1.12 0.174445 0.156562 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0410978 0.0367809 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.19 18088 1 0.03 -1 -1 30364 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1216 15187 4686 7965 2536 55.7 MiB 0.27 0.00 6.49087 -185.665 -6.49087 6.49087 1.04 0.0014064 0.00129181 0.108893 0.10003 30 3247 27 6.64007e+06 339066 526063. 1820.29 1.45 0.301103 0.272146 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.28 0.18 0.20 -1 -1 0.28 0.0564265 0.0506964 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30364 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 16.8 MiB 0.17 903 6979 1333 5401 245 55.4 MiB 0.12 0.00 4.64606 -138.337 -4.64606 4.64606 1.05 0.00115002 0.0010561 0.0391211 0.0359789 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.63 0.221746 0.198946 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0432764 0.0389149 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17104 1 0.02 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.08 832 12375 4208 6622 1545 54.9 MiB 0.15 0.00 3.58247 -103.673 -3.58247 3.58247 1.05 0.000845495 0.00077499 0.0565872 0.0518773 28 2023 24 6.64007e+06 288834 500653. 1732.36 1.12 0.165658 0.14851 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0321121 0.0287018 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30152 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 17.0 MiB 0.09 993 9098 1971 6187 940 55.3 MiB 0.07 0.00 5.56744 -134.001 -5.56744 5.56744 0.72 0.000437426 0.00039506 0.0196758 0.0178217 28 2715 23 6.64007e+06 426972 500653. 1732.36 1.65 0.173972 0.155911 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.20 0.06 0.09 -1 -1 0.20 0.0212998 0.0189669 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17308 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 822 7770 1860 5212 698 54.8 MiB 0.06 0.00 3.4291 -106.218 -3.4291 3.4291 0.79 0.000330532 0.000298701 0.0156023 0.0141347 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.70 0.0589566 0.0517859 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0353707 0.031635 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30424 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.13 857 12839 3557 7998 1284 55.0 MiB 0.16 0.00 4.12483 -113.809 -4.12483 4.12483 1.04 0.000954268 0.000875112 0.0591206 0.0542278 26 1933 22 6.64007e+06 414414 477104. 1650.88 1.34 0.179813 0.161369 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.21 0.08 0.13 -1 -1 0.21 0.0333334 0.0299326 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30376 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1104 17175 4885 10433 1857 55.4 MiB 0.29 0.00 4.60024 -135.427 -4.60024 4.60024 1.05 0.00116928 0.00107334 0.109244 0.100283 28 2667 21 6.64007e+06 326508 500653. 1732.36 1.21 0.25543 0.230941 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0551094 0.0494939 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30388 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.14 772 4768 876 3724 168 55.4 MiB 0.09 0.00 4.51224 -132.005 -4.51224 4.51224 1.06 0.00117871 0.00108038 0.0320398 0.0294233 32 2190 25 6.64007e+06 301392 554710. 1919.41 1.26 0.188053 0.168801 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0509489 0.0457461 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30332 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1030 11891 3350 7362 1179 55.3 MiB 0.19 0.00 4.72138 -141.993 -4.72138 4.72138 1.05 0.0011653 0.00106827 0.0701683 0.0643666 32 2311 18 6.64007e+06 351624 554710. 1919.41 1.23 0.211698 0.190856 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0429657 0.0387517 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 16.9 MiB 0.28 799 9356 2375 6010 971 55.4 MiB 0.14 0.00 4.79432 -131.982 -4.79432 4.79432 0.98 0.00095272 0.000873548 0.0533081 0.0488928 26 2160 21 6.64007e+06 213486 477104. 1650.88 1.35 0.172396 0.154661 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.0382037 0.034205 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.10 17572 1 0.03 -1 -1 30416 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.9 MiB 0.25 899 12898 4205 6789 1904 55.5 MiB 0.10 0.00 3.96736 -127.03 -3.96736 3.96736 0.84 0.000386973 0.00034866 0.030242 0.0273644 32 2035 18 6.64007e+06 238602 554710. 1919.41 1.10 0.156362 0.139548 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401023 0.0358845 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.14 857 8087 1703 5875 509 55.2 MiB 0.12 0.00 3.59243 -98.9543 -3.59243 3.59243 1.09 0.00108225 0.000991694 0.0435491 0.0399544 26 2500 27 6.64007e+06 414414 477104. 1650.88 2.12 0.191803 0.171926 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0417813 0.0375504 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30344 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.07 873 14567 3705 9538 1324 55.1 MiB 0.17 0.00 4.33724 -105.319 -4.33724 4.33724 1.07 0.000955702 0.000876787 0.0673089 0.0617594 26 2165 27 6.64007e+06 439530 477104. 1650.88 1.19 0.197346 0.17732 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.19 0.04 0.09 -1 -1 0.19 0.0157809 0.0140192 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 857 12980 4441 6366 2173 55.2 MiB 0.19 0.00 4.19523 -120.389 -4.19523 4.19523 1.05 0.001038 0.000951445 0.0808442 0.074125 32 1926 20 6.64007e+06 226044 554710. 1919.41 1.24 0.212292 0.190899 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0401682 0.0360585 108 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30116 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1011 9385 2419 5667 1299 55.3 MiB 0.15 0.00 4.0237 -135.679 -4.0237 4.0237 1.05 0.00108912 0.000998446 0.0579318 0.0531365 32 2261 23 6.64007e+06 263718 554710. 1919.41 1.21 0.198098 0.178011 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.29 0.09 0.22 -1 -1 0.29 0.0395632 0.0355406 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30480 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.06 926 9383 1965 6366 1052 55.2 MiB 0.13 0.00 4.61041 -129.144 -4.61041 4.61041 1.05 0.00103669 0.000952087 0.0479449 0.0440601 28 2322 28 6.64007e+06 401856 500653. 1732.36 1.60 0.191001 0.171683 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0415337 0.0373787 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.12 17528 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 17.2 MiB 0.29 1230 14128 4435 7821 1872 55.9 MiB 0.24 0.00 5.3267 -167.408 -5.3267 5.3267 1.05 0.00117544 0.00107947 0.0887349 0.0814712 32 3153 21 6.64007e+06 301392 554710. 1919.41 1.31 0.237619 0.2147 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0475307 0.0429213 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.13 17904 1 0.03 -1 -1 30320 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 16.8 MiB 0.22 846 12473 3077 8180 1216 55.4 MiB 0.20 0.00 5.24026 -142.21 -5.24026 5.24026 1.05 0.00125746 0.00115294 0.072889 0.0668314 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.42 0.237167 0.213595 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.049932 0.0449808 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30308 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1088 19136 5971 10565 2600 55.5 MiB 0.27 0.00 4.47484 -142.459 -4.47484 4.47484 1.05 0.00127582 0.00117061 0.107076 0.0982479 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.57 0.268752 0.242974 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0483433 0.0435911 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.12 17592 1 0.03 -1 -1 30156 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.5 MiB 0.13 810 10756 3573 5296 1887 55.2 MiB 0.14 0.00 3.86158 -115.559 -3.86158 3.86158 1.04 0.000931666 0.000854666 0.0599426 0.0549514 28 2024 20 6.64007e+06 238602 500653. 1732.36 1.13 0.175486 0.157557 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0435008 0.0388709 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30388 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 16.8 MiB 0.18 996 11989 3165 6999 1825 55.6 MiB 0.20 0.00 4.82523 -141.177 -4.82523 4.82523 1.05 0.00122175 0.00112078 0.0822197 0.0754791 32 2408 19 6.64007e+06 288834 554710. 1919.41 1.25 0.232063 0.209559 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0510182 0.0459664 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30448 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 17.2 MiB 0.26 1103 10743 2816 7025 902 55.7 MiB 0.17 0.00 5.45357 -158.764 -5.45357 5.45357 1.05 0.00113671 0.00104169 0.064304 0.0590158 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.79 0.233844 0.210493 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.22 0.13 0.17 -1 -1 0.22 0.0496429 0.0446802 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30372 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1102 15423 4945 8075 2403 55.5 MiB 0.23 0.00 5.30601 -154.372 -5.30601 5.30601 1.04 0.00113364 0.0010399 0.0866264 0.0795314 28 3024 19 6.64007e+06 376740 500653. 1732.36 1.40 0.22675 0.20468 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0454066 0.040865 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30384 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 17.0 MiB 0.21 960 11975 3127 7423 1425 55.7 MiB 0.20 0.00 4.52304 -132.575 -4.52304 4.52304 1.04 0.00122737 0.00112622 0.0718119 0.0658242 32 2201 21 6.64007e+06 414414 554710. 1919.41 1.22 0.223352 0.201182 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0446007 0.0402274 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.15 891 9571 2183 6911 477 55.6 MiB 0.17 0.00 5.02278 -140.291 -5.02278 5.02278 1.05 0.00119856 0.0010999 0.0647751 0.0594299 30 2581 25 6.64007e+06 263718 526063. 1820.29 1.31 0.219136 0.197119 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.25 0.11 0.20 -1 -1 0.25 0.052279 0.0470913 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30280 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 16.8 MiB 0.19 875 11270 2503 8088 679 55.4 MiB 0.18 0.00 4.91881 -136.338 -4.91881 4.91881 1.05 0.00119877 0.00109839 0.0685738 0.06285 32 2070 20 6.64007e+06 389298 554710. 1919.41 1.21 0.21804 0.196306 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0521931 0.0470801 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17136 1 0.02 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.2 MiB 0.05 680 10219 2541 6421 1257 54.8 MiB 0.17 0.00 3.88758 -112.502 -3.88758 3.88758 1.14 0.000886746 0.000814899 0.0706565 0.0650268 28 1667 19 6.64007e+06 188370 500653. 1732.36 1.10 0.178626 0.160967 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.22 0.08 0.19 -1 -1 0.22 0.0339031 0.0304258 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1003 15426 4168 9105 2153 55.6 MiB 0.22 0.00 4.65236 -140.168 -4.65236 4.65236 1.11 0.00109816 0.0010064 0.089129 0.0817804 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.38 0.200814 0.181079 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0487125 0.0438625 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17892 1 0.03 -1 -1 30224 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 17.2 MiB 0.20 1074 11237 2615 7354 1268 55.7 MiB 0.19 0.00 4.84723 -152.835 -4.84723 4.84723 1.05 0.00129279 0.00118562 0.0800821 0.0734802 32 2517 24 6.64007e+06 276276 554710. 1919.41 1.36 0.248816 0.224468 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.30 0.14 0.25 -1 -1 0.30 0.0606216 0.0546766 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17452 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 16.6 MiB 0.26 745 8136 1743 5584 809 55.0 MiB 0.11 0.00 4.31784 -119.848 -4.31784 4.31784 1.05 0.000929059 0.000851704 0.0437759 0.0401477 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.50 0.181166 0.16224 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0384916 0.0343889 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17108 1 0.03 -1 -1 30444 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 720 11430 2918 7192 1320 54.9 MiB 0.15 0.00 3.81035 -108.914 -3.81035 3.81035 1.05 0.000897075 0.000814982 0.0573778 0.0526139 26 2000 23 6.64007e+06 263718 477104. 1650.88 1.14 0.170785 0.153304 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0337909 0.0302508 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30584 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1132 12753 3748 7734 1271 55.6 MiB 0.20 0.00 5.06147 -160.912 -5.06147 5.06147 1.06 0.00117229 0.0010754 0.0779093 0.0715086 26 3087 40 6.64007e+06 326508 477104. 1650.88 2.14 0.263108 0.236967 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0468768 0.0422113 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1035 16893 5570 8364 2959 55.6 MiB 0.24 0.00 5.02458 -149.361 -5.02458 5.02458 1.05 0.00117891 0.00108219 0.0983199 0.0902268 32 2745 25 6.64007e+06 364182 554710. 1919.41 1.28 0.253804 0.229139 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0468735 0.0421913 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30180 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.09 1057 12164 2729 8794 641 55.8 MiB 0.19 0.00 5.48474 -146.154 -5.48474 5.48474 1.05 0.00121859 0.00111831 0.0685212 0.0627986 28 3239 24 6.64007e+06 452088 500653. 1732.36 2.05 0.229566 0.207068 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0491963 0.0444012 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.16 17580 1 0.03 -1 -1 30116 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.16 890 11170 2805 7440 925 55.3 MiB 0.15 0.00 3.51924 -105.227 -3.51924 3.51924 1.05 0.00105435 0.00096678 0.0583438 0.0534941 26 2070 19 6.64007e+06 401856 477104. 1650.88 1.14 0.188793 0.169679 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0400408 0.03594 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.15 17476 1 0.02 -1 -1 30584 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.4 MiB 0.07 645 11948 3714 6556 1678 55.0 MiB 0.14 0.00 3.4543 -94.7001 -3.4543 3.4543 1.05 0.000873846 0.000801392 0.0631956 0.0579577 26 1652 20 6.64007e+06 263718 477104. 1650.88 1.12 0.172107 0.154565 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.21 0.08 0.09 -1 -1 0.21 0.0349014 0.0311959 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17904 1 0.03 -1 -1 30460 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1270 10743 2480 7803 460 55.6 MiB 0.19 0.00 4.37195 -138.919 -4.37195 4.37195 1.04 0.00136891 0.00125677 0.0769922 0.0707028 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.36 0.25362 0.228719 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0621346 0.0560055 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30232 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 17.0 MiB 0.36 989 14828 4611 8220 1997 55.6 MiB 0.23 0.00 5.41669 -159.225 -5.41669 5.41669 1.04 0.00118583 0.00108748 0.0959005 0.0879399 28 2481 23 6.64007e+06 288834 500653. 1732.36 1.23 0.248854 0.224533 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.22 0.11 0.19 -1 -1 0.22 0.0475099 0.0427606 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30456 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 16.8 MiB 0.35 825 13583 3778 7563 2242 55.4 MiB 0.21 0.00 4.65475 -131.833 -4.65475 4.65475 1.06 0.00107409 0.000984646 0.0851179 0.077971 30 1948 20 6.64007e+06 238602 526063. 1820.29 1.20 0.22031 0.198558 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0396748 0.0356945 128 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30480 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 911 16708 5166 8976 2566 55.2 MiB 0.25 0.00 5.41998 -135.015 -5.41998 5.41998 1.05 0.00110121 0.0010106 0.0959207 0.0879092 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.86 0.249315 0.224832 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.23 0.10 0.16 -1 -1 0.23 0.0446546 0.0401854 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17860 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1048 7423 1517 5297 609 55.8 MiB 0.14 0.00 5.01701 -136.816 -5.01701 5.01701 1.05 0.00123189 0.00113015 0.0446089 0.0409811 26 2859 33 6.64007e+06 426972 477104. 1650.88 2.05 0.199535 0.178657 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.25 0.12 0.15 -1 -1 0.25 0.0488661 0.0441685 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30476 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.5 MiB 0.15 829 7233 1598 5117 518 55.1 MiB 0.11 0.00 3.67989 -107.648 -3.67989 3.67989 1.05 0.00107774 0.000986989 0.0401636 0.0368089 30 2144 22 6.64007e+06 389298 526063. 1820.29 1.37 0.178179 0.159831 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.29 0.07 0.20 -1 -1 0.29 0.036708 0.0329126 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17676 1 0.03 -1 -1 30276 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1174 10979 2913 7012 1054 56.0 MiB 0.19 0.00 5.12747 -161.736 -5.12747 5.12747 1.07 0.00117757 0.00108073 0.0687722 0.0631808 26 3490 36 6.64007e+06 313950 477104. 1650.88 2.88 0.245589 0.221022 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.24 0.13 0.15 -1 -1 0.24 0.0475829 0.042935 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30076 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1093 17036 4934 9564 2538 55.6 MiB 0.25 0.01 4.75546 -148.188 -4.75546 4.75546 1.05 0.00125656 0.00115249 0.0958324 0.0879402 28 2591 20 6.64007e+06 452088 500653. 1732.36 1.31 0.249889 0.22552 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0442019 0.0399109 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17368 1 0.02 -1 -1 30312 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.4 MiB 0.09 731 10536 4018 5581 937 55.0 MiB 0.13 0.00 3.74538 -111.28 -3.74538 3.74538 1.04 0.0009198 0.000843616 0.0608704 0.0558368 30 1443 17 6.64007e+06 213486 526063. 1820.29 1.08 0.171336 0.153994 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0322275 0.0289293 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 16.7 MiB 0.20 882 13849 5109 6856 1884 55.3 MiB 0.19 0.00 4.03956 -127.808 -4.03956 4.03956 1.04 0.00102772 0.000942109 0.0793406 0.0727738 28 2218 24 6.64007e+06 263718 500653. 1732.36 1.29 0.212186 0.190755 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.20 0.05 0.09 -1 -1 0.20 0.0193623 0.0171119 117 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30364 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.10 954 14020 3601 8035 2384 55.5 MiB 0.19 0.00 4.80044 -128.284 -4.80044 4.80044 1.04 0.00111376 0.00102168 0.0698486 0.0639841 32 2139 23 6.64007e+06 464646 554710. 1919.41 1.24 0.213505 0.192377 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.045956 0.0413213 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.17 17376 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 16.5 MiB 0.26 763 7103 1547 5010 546 55.0 MiB 0.11 0.00 4.32884 -114.709 -4.32884 4.32884 1.06 0.00090649 0.000830749 0.0385667 0.0353798 26 2139 24 6.64007e+06 276276 477104. 1650.88 1.40 0.156499 0.13996 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0362284 0.0324534 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30040 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 16.4 MiB 0.17 634 12856 3328 7254 2274 55.1 MiB 0.17 0.00 3.90075 -115.478 -3.90075 3.90075 1.05 0.000952339 0.000873082 0.0726845 0.0666458 28 2041 24 6.64007e+06 213486 500653. 1732.36 1.19 0.196701 0.176705 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.24 0.10 0.18 -1 -1 0.24 0.0408763 0.0365681 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30032 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1014 15147 3968 9710 1469 55.6 MiB 0.21 0.00 4.15695 -125.813 -4.15695 4.15695 1.05 0.00121585 0.00111564 0.0840294 0.0770262 32 1987 18 6.64007e+06 452088 554710. 1919.41 1.24 0.242041 0.218361 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.28 0.09 0.21 -1 -1 0.28 0.0428878 0.0387312 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.15 17500 1 0.03 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 16.6 MiB 0.23 920 10163 2724 6503 936 55.1 MiB 0.13 0.00 4.05252 -124.711 -4.05252 4.05252 1.05 0.000910008 0.00083408 0.0539187 0.0494413 30 1979 19 6.64007e+06 251160 526063. 1820.29 1.11 0.165568 0.148523 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.25 0.07 0.20 -1 -1 0.25 0.0360711 0.0321664 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17528 1 0.03 -1 -1 30104 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 16.7 MiB 0.16 987 10827 2770 6959 1098 55.3 MiB 0.18 0.00 3.75038 -118.864 -3.75038 3.75038 1.06 0.00114769 0.0010521 0.0681763 0.0624638 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.51 0.21479 0.193322 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0476525 0.042798 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.19 17800 1 0.02 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 17.1 MiB 0.33 927 10247 2394 7169 684 55.6 MiB 0.17 0.00 4.34696 -134.379 -4.34696 4.34696 1.05 0.00126123 0.00115636 0.0630484 0.0577632 32 2248 20 6.64007e+06 401856 554710. 1919.41 1.23 0.218915 0.197047 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0504203 0.0454741 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.5 MiB 0.18 835 12681 3362 7951 1368 55.2 MiB 0.17 0.00 3.3851 -106.107 -3.3851 3.3851 1.08 0.000998263 0.00091344 0.0758061 0.0694486 26 2103 18 6.64007e+06 213486 477104. 1650.88 1.27 0.194319 0.174686 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0420342 0.0376524 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17536 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 16.6 MiB 0.16 876 14407 4775 7452 2180 55.2 MiB 0.10 0.00 4.41384 -136.056 -4.41384 4.41384 0.72 0.000368089 0.000332551 0.0303883 0.0274846 30 2137 20 6.64007e+06 263718 526063. 1820.29 1.10 0.15217 0.135906 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.25 0.09 0.20 -1 -1 0.25 0.0380283 0.0340862 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1070 9111 2300 6161 650 55.5 MiB 0.15 0.00 4.68344 -140.114 -4.68344 4.68344 1.05 0.00108238 0.0009931 0.0543386 0.0498424 32 2486 17 6.64007e+06 288834 554710. 1919.41 1.20 0.178968 0.160557 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436904 0.0390897 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30188 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 16.9 MiB 0.19 969 13959 4223 8147 1589 55.4 MiB 0.19 0.00 4.71146 -123.714 -4.71146 4.71146 1.05 0.00108155 0.000991675 0.0775052 0.0711048 32 1988 20 6.64007e+06 364182 554710. 1919.41 1.17 0.19125 0.171852 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.29 0.05 0.21 -1 -1 0.29 0.0229343 0.0206877 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1164 12568 3311 8092 1165 56.0 MiB 0.23 0.00 5.44678 -170.492 -5.44678 5.44678 1.06 0.0012746 0.00116982 0.0856577 0.0785895 28 3017 24 6.64007e+06 301392 500653. 1732.36 1.47 0.255177 0.230406 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0488238 0.04405 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17188 1 0.02 -1 -1 30336 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.4 MiB 0.05 802 9356 2223 6300 833 54.9 MiB 0.11 0.00 3.65167 -102.287 -3.65167 3.65167 1.05 0.000836206 0.000766553 0.0468656 0.0429987 32 1738 16 6.64007e+06 226044 554710. 1919.41 1.11 0.145463 0.13051 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0216148 0.0191551 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.23 17876 1 0.03 -1 -1 30440 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 17.1 MiB 0.11 1014 15173 4325 8191 2657 55.6 MiB 0.12 0.00 4.24115 -141.749 -4.24115 4.24115 0.72 0.000476026 0.000429743 0.0344875 0.0311745 32 2563 27 6.64007e+06 426972 554710. 1919.41 1.05 0.172258 0.153856 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.049758 0.0448425 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17680 1 0.03 -1 -1 30140 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 17.0 MiB 0.33 854 11456 4252 5499 1705 55.5 MiB 0.17 0.00 3.5233 -125.693 -3.5233 3.5233 1.03 0.00117769 0.00107745 0.077238 0.0706231 32 1976 23 6.64007e+06 213486 554710. 1919.41 1.24 0.229025 0.205879 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0450699 0.0404243 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 16.7 MiB 0.17 993 15864 4238 9461 2165 55.5 MiB 0.22 0.00 4.43584 -134.986 -4.43584 4.43584 1.06 0.00117559 0.00107758 0.088855 0.0814876 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.48 0.240644 0.216863 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0375533 0.0339568 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17956 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 17.2 MiB 0.35 1309 17635 5897 9510 2228 55.4 MiB 0.32 0.01 6.39084 -191.431 -6.39084 6.39084 1.04 0.00133216 0.00122357 0.118822 0.109144 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.60 0.283429 0.256997 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0534478 0.0483583 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17380 1 0.02 -1 -1 30096 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 16.2 MiB 0.17 697 8680 1945 6222 513 54.7 MiB 0.10 0.00 3.31307 -102.387 -3.31307 3.31307 1.05 0.000762596 0.000698746 0.041191 0.037761 28 1666 19 6.64007e+06 226044 500653. 1732.36 1.13 0.13589 0.121297 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0231689 0.0207419 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17548 1 0.03 -1 -1 30516 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.10 791 11864 3247 7177 1440 55.0 MiB 0.16 0.00 4.38638 -124.628 -4.38638 4.38638 1.05 0.000974417 0.000893404 0.0723377 0.0663255 32 1680 15 6.64007e+06 200928 554710. 1919.41 1.14 0.18522 0.166682 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0420243 0.0376047 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.7 MiB 0.10 807 14407 3847 9113 1447 55.2 MiB 0.19 0.00 3.46104 -112.673 -3.46104 3.46104 1.05 0.00101254 0.000927894 0.081211 0.0744633 28 2067 23 6.64007e+06 263718 500653. 1732.36 1.15 0.211261 0.190226 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0417619 0.0374303 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 469 9234 3273 3848 2113 54.7 MiB 0.09 0.00 3.37029 -77.6943 -3.37029 3.37029 1.07 0.000754004 0.000689826 0.0405027 0.0370221 30 1496 25 6.64007e+06 339066 526063. 1820.29 1.18 0.139915 0.124922 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0261163 0.0233687 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.19 937 9571 2534 6630 407 55.5 MiB 0.17 0.00 4.28889 -129.632 -4.28889 4.28889 1.10 0.00118048 0.00108759 0.0662127 0.0607536 30 2291 20 6.64007e+06 263718 526063. 1820.29 1.26 0.219033 0.197414 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.046232 0.04159 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 17.3 MiB 0.21 1018 17423 5293 9473 2657 55.9 MiB 0.25 0.00 4.47881 -144.552 -4.47881 4.47881 1.06 0.000876554 0.000788549 0.101387 0.0928053 32 2355 20 6.64007e+06 439530 554710. 1919.41 1.27 0.262588 0.236967 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0538096 0.0484508 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30004 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 16.8 MiB 0.36 962 17134 5020 8898 3216 55.3 MiB 0.14 0.00 5.27972 -153.369 -5.27972 5.27972 0.72 0.00043121 0.000388601 0.0372434 0.0336727 32 2793 32 6.65987e+06 380340 554710. 1919.41 1.08 0.152805 0.136159 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.27 0.11 0.19 -1 -1 0.27 0.0471274 0.0424022 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30320 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1040 12361 3404 6762 2195 55.3 MiB 0.20 0.00 4.63676 -143.523 -4.63676 4.63676 1.06 0.00118679 0.00108804 0.0822977 0.0755731 32 2391 26 6.65987e+06 291594 554710. 1919.41 1.30 0.241025 0.21733 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0392372 0.0350683 138 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1057 9111 2109 6460 542 55.0 MiB 0.14 0.00 4.05544 -117.725 -4.05544 4.05544 1.07 0.00102811 0.000942724 0.0516184 0.0473615 26 2909 26 6.65987e+06 291594 477104. 1650.88 2.04 0.189973 0.170456 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.23 0.05 0.17 -1 -1 0.23 0.0186462 0.0165904 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.5 MiB 0.10 995 11593 2944 7290 1359 55.1 MiB 0.18 0.00 4.34155 -118.133 -4.34155 4.34155 1.05 0.0010651 0.00096873 0.0663376 0.0607829 32 2314 24 6.65987e+06 342306 554710. 1919.41 1.25 0.204468 0.183958 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0427877 0.0384765 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17660 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1007 8919 2464 5628 827 55.0 MiB 0.15 0.00 4.36781 -127.596 -4.36781 4.36781 1.04 0.00114053 0.00104664 0.0559911 0.0514018 34 2558 26 6.65987e+06 291594 585099. 2024.56 2.15 0.30271 0.271494 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.28 0.12 0.22 -1 -1 0.28 0.0481545 0.0434192 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30300 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1045 18079 5207 10774 2098 55.3 MiB 0.27 0.01 3.41904 -120.465 -3.41904 3.41904 1.05 0.00120134 0.00110075 0.100843 0.0924714 30 2159 22 6.65987e+06 418374 526063. 1820.29 1.18 0.254666 0.230006 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.23 0.09 0.10 -1 -1 0.23 0.0463271 0.0417779 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.16 17516 1 0.03 -1 -1 30576 -1 -1 18 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 16.1 MiB 0.17 496 10509 2613 7281 615 54.7 MiB 0.13 0.00 3.88752 -95.8054 -3.88752 3.88752 1.04 0.00088921 0.000815367 0.0598095 0.0548567 30 1262 24 6.65987e+06 228204 526063. 1820.29 1.11 0.176075 0.157984 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370517 0.0331633 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17236 1 0.03 -1 -1 30176 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.06 903 9466 2130 6738 598 55.1 MiB 0.14 0.00 3.22661 -96.4595 -3.22661 3.22661 1.05 0.000970937 0.000889727 0.0458132 0.0419786 30 1887 19 6.65987e+06 393018 526063. 1820.29 1.12 0.164555 0.147679 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.033962 0.0305797 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30128 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.16 765 13788 3701 7917 2170 55.3 MiB 0.19 0.00 3.4209 -112.776 -3.4209 3.4209 1.05 0.00104101 0.000954688 0.0833805 0.0765022 32 2114 22 6.65987e+06 240882 554710. 1919.41 1.20 0.21493 0.193487 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0366499 0.0329099 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.13 17432 1 0.04 -1 -1 30056 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.5 MiB 0.26 876 13906 4295 8097 1514 55.0 MiB 0.20 0.00 3.72312 -122.883 -3.72312 3.72312 1.06 0.00101627 0.000931371 0.0835265 0.0766293 32 2018 21 6.65987e+06 215526 554710. 1919.41 1.21 0.213915 0.19279 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0406676 0.0365153 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30392 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.3 MiB 0.26 696 7008 1825 4747 436 55.0 MiB 0.11 0.00 4.00989 -109.174 -4.00989 4.00989 1.04 0.000991196 0.000908495 0.0438716 0.0402439 30 1525 18 6.65987e+06 215526 526063. 1820.29 1.10 0.163503 0.146588 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0347705 0.0312281 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 721 6381 1297 4466 618 55.2 MiB 0.09 0.00 3.89466 -119.961 -3.89466 3.89466 1.05 0.000941888 0.000863182 0.0373864 0.0343087 32 2079 21 6.65987e+06 215526 554710. 1919.41 1.21 0.156113 0.13976 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0410062 0.0367125 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1056 16468 6105 8420 1943 55.4 MiB 0.26 0.00 4.37712 -140.294 -4.37712 4.37712 1.05 0.00115699 0.00106127 0.101195 0.0928862 32 2620 22 6.65987e+06 304272 554710. 1919.41 1.26 0.250035 0.22601 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0485774 0.0437407 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30276 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 951 14365 3991 8802 1572 55.4 MiB 0.25 0.00 4.63803 -131.953 -4.63803 4.63803 1.06 0.00118483 0.00108591 0.0759029 0.0692841 28 2495 26 6.65987e+06 380340 500653. 1732.36 1.26 0.235671 0.211992 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.053508 0.0480565 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30136 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.2 MiB 0.15 640 7914 1978 5337 599 54.8 MiB 0.10 0.00 3.16393 -88.5429 -3.16393 3.16393 1.05 0.000862189 0.0007906 0.0407161 0.0373266 28 1656 19 6.65987e+06 266238 500653. 1732.36 1.15 0.14588 0.130643 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0318904 0.0285628 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1044 14035 4479 7571 1985 55.4 MiB 0.22 0.00 3.91387 -124.268 -3.91387 3.91387 1.05 0.00120497 0.00110408 0.0944461 0.0866325 32 2474 22 6.65987e+06 266238 554710. 1919.41 1.30 0.243509 0.219536 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.26 0.11 0.20 -1 -1 0.26 0.0488134 0.0439531 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1069 12919 3925 6776 2218 55.3 MiB 0.20 0.00 4.31458 -139.268 -4.31458 4.31458 1.05 0.00113907 0.00104483 0.0824114 0.0756435 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.59 0.225082 0.2028 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0513269 0.046235 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30292 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.6 MiB 0.21 695 9543 2025 7276 242 55.1 MiB 0.14 0.00 2.85064 -99.0938 -2.85064 2.85064 1.05 0.00105958 0.000970469 0.0508438 0.0465706 30 1712 20 6.65987e+06 367662 526063. 1820.29 1.14 0.181601 0.162916 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.24 0.07 0.11 -1 -1 0.24 0.0335841 0.0302454 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17532 1 0.02 -1 -1 30108 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.8 MiB 0.12 717 11976 4624 5984 1368 54.5 MiB 0.13 0.00 2.25907 -80.296 -2.25907 2.25907 1.05 0.000770798 0.000705392 0.0584388 0.0534948 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.98 0.153914 0.137797 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0267875 0.0238725 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17736 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 16.3 MiB 0.34 848 12008 3931 5654 2423 54.9 MiB 0.18 0.00 4.81535 -141.646 -4.81535 4.81535 1.05 0.000990634 0.000908817 0.070191 0.0644563 32 2106 20 6.65987e+06 240882 554710. 1919.41 1.21 0.193161 0.173789 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0401684 0.0360754 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30408 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.07 910 8087 1796 5473 818 55.3 MiB 0.13 0.00 4.13176 -127.852 -4.13176 4.13176 1.04 0.00115141 0.00105637 0.0464507 0.0426449 28 2425 21 6.65987e+06 393018 500653. 1732.36 1.29 0.192886 0.173617 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046441 0.0418607 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1181 9303 2469 6067 767 55.5 MiB 0.16 0.00 4.32644 -135.633 -4.32644 4.32644 1.04 0.00120811 0.00110701 0.0618071 0.0566453 30 2631 22 6.65987e+06 291594 526063. 1820.29 1.23 0.209407 0.188389 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0547705 0.0493019 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17536 1 0.02 -1 -1 30560 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.1 MiB 0.24 356 10636 3977 4816 1843 54.5 MiB 0.09 0.00 2.4343 -65.7683 -2.4343 2.4343 1.05 0.000659627 0.000603075 0.045697 0.0417928 30 997 16 6.65987e+06 228204 526063. 1820.29 1.11 0.123009 0.110062 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.24 0.04 0.20 -1 -1 0.24 0.0219918 0.019658 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.08 978 9571 2391 5607 1573 55.2 MiB 0.15 0.00 4.9364 -125.004 -4.9364 4.9364 1.01 0.00100756 0.000924587 0.0549074 0.0504357 32 2187 34 6.65987e+06 266238 554710. 1919.41 1.30 0.20409 0.183437 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0394382 0.0355134 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.15 17152 1 0.02 -1 -1 29980 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55592 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.7 MiB 0.04 681 11200 3514 6177 1509 54.3 MiB 0.10 0.00 2.44727 -77.3331 -2.44727 2.44727 1.05 0.000637001 0.000581524 0.044785 0.0408807 26 1411 15 6.65987e+06 177492 477104. 1650.88 1.03 0.117989 0.1054 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.21 0.05 0.17 -1 -1 0.21 0.020259 0.0180743 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.14 17492 1 0.03 -1 -1 30096 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.6 MiB 0.10 819 10531 2694 7192 645 55.2 MiB 0.15 0.00 4.34174 -119.601 -4.34174 4.34174 1.04 0.00105335 0.000967417 0.0546949 0.0502464 32 2048 22 6.65987e+06 380340 554710. 1919.41 1.21 0.186858 0.168081 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.038778 0.0349282 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.2 MiB 0.09 841 8087 1664 5850 573 54.9 MiB 0.12 0.00 3.58635 -102.903 -3.58635 3.58635 0.94 0.00105797 0.000972465 0.0428028 0.0393195 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.61 0.177599 0.159696 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0407645 0.0366773 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1047 15165 4413 8666 2086 55.3 MiB 0.22 0.00 4.3944 -130.237 -4.3944 4.3944 1.05 0.00112512 0.00103174 0.0885157 0.081239 32 2492 25 6.65987e+06 329628 554710. 1919.41 1.27 0.238224 0.214552 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0432912 0.0389898 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17488 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.06 780 6100 1392 4485 223 55.0 MiB 0.11 0.00 2.90053 -100.349 -2.90053 2.90053 1.05 0.000970259 0.000888911 0.0399844 0.0367285 32 1965 19 6.65987e+06 202848 554710. 1919.41 1.24 0.162371 0.145642 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0405912 0.0363458 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17360 1 0.03 -1 -1 30076 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.2 MiB 0.10 630 9199 2049 6385 765 54.9 MiB 0.11 0.00 2.99867 -92.259 -2.99867 2.99867 1.06 0.000904839 0.000829382 0.0467021 0.0427788 32 1813 20 6.65987e+06 291594 554710. 1919.41 1.21 0.165644 0.148293 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.25 0.08 0.23 -1 -1 0.25 0.0378755 0.0338746 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30264 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.1 MiB 0.06 575 14123 3775 8918 1430 54.7 MiB 0.16 0.00 3.31478 -91.535 -3.31478 3.31478 1.04 0.000892181 0.000818151 0.0726486 0.0665248 32 1755 23 6.65987e+06 291594 554710. 1919.41 1.18 0.188189 0.169058 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.26 0.08 0.21 -1 -1 0.26 0.0344892 0.0307605 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17076 1 0.03 -1 -1 30336 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.1 MiB 0.10 714 4763 885 3714 164 54.8 MiB 0.07 0.00 3.74323 -109.194 -3.74323 3.74323 1.06 0.00090841 0.000834292 0.0266524 0.0244984 30 1851 22 6.65987e+06 240882 526063. 1820.29 1.29 0.142923 0.127793 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.26 0.08 0.20 -1 -1 0.26 0.0370527 0.0332384 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17240 1 0.03 -1 -1 30144 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.7 MiB 0.10 740 8130 1715 6151 264 55.1 MiB 0.11 0.00 3.32595 -98.9982 -3.32595 3.32595 1.05 0.000573318 0.000517179 0.0386412 0.0353925 32 1842 22 6.65987e+06 342306 554710. 1919.41 1.15 0.157615 0.141089 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0374436 0.0335606 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30456 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 874 10103 2597 6479 1027 54.9 MiB 0.14 0.00 3.27578 -104.365 -3.27578 3.27578 1.05 0.000978649 0.000898397 0.0548114 0.0503215 32 1837 16 6.65987e+06 316950 554710. 1919.41 1.14 0.168447 0.151228 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0370601 0.0331954 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30492 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1205 9971 2413 6766 792 55.8 MiB 0.15 0.00 4.35696 -124.779 -4.35696 4.35696 1.04 0.00123705 0.00113596 0.0560971 0.0515253 30 2470 20 6.65987e+06 469086 526063. 1820.29 1.16 0.210907 0.190245 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0521918 0.0471226 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17692 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.21 1009 12860 3291 8398 1171 55.6 MiB 0.11 0.00 3.75432 -126.947 -3.75432 3.75432 0.72 0.000467038 0.000422358 0.0282319 0.0255404 26 2525 36 6.65987e+06 456408 477104. 1650.88 0.91 0.101089 0.0892612 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0490153 0.0442434 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30084 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 731 8852 2206 5531 1115 55.0 MiB 0.13 0.00 4.21752 -119.384 -4.21752 4.21752 1.04 0.000951554 0.000872849 0.051731 0.0474632 28 2061 26 6.65987e+06 215526 500653. 1732.36 1.24 0.179026 0.160516 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.22 0.09 0.20 -1 -1 0.22 0.0387586 0.0347942 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30484 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 17.1 MiB 0.25 838 9687 2447 6341 899 55.6 MiB 0.17 0.00 4.30117 -127.913 -4.30117 4.30117 1.05 0.00121095 0.0011111 0.0643278 0.0590778 28 2472 25 6.65987e+06 304272 500653. 1732.36 1.38 0.225046 0.20271 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0506365 0.0455736 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17912 1 0.03 -1 -1 30424 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1313 13758 3781 7541 2436 55.5 MiB 0.23 0.00 5.77198 -171.36 -5.77198 5.77198 1.05 0.00122294 0.0011213 0.0873303 0.0801309 32 3132 21 6.65987e+06 342306 554710. 1919.41 1.32 0.242874 0.219311 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0537815 0.0484855 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30428 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 16.8 MiB 1.07 956 15103 4666 7688 2749 55.5 MiB 0.25 0.00 4.78629 -143.571 -4.78629 4.78629 1.05 0.0012439 0.00114116 0.100167 0.0918994 32 2967 29 6.65987e+06 316950 554710. 1919.41 1.47 0.275185 0.248255 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0217444 0.019502 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30324 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 16.9 MiB 0.24 864 6095 1129 4612 354 55.3 MiB 0.12 0.00 4.47092 -130.094 -4.47092 4.47092 1.04 0.00116431 0.00106867 0.0374672 0.0344141 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.70 0.206484 0.185506 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0488816 0.0440155 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 16.3 MiB 0.18 918 12371 3407 6390 2574 54.9 MiB 0.17 0.00 4.0455 -110.07 -4.0455 4.0455 1.05 0.000996161 0.000913406 0.068273 0.0626155 28 2605 20 6.65987e+06 278916 500653. 1732.36 1.50 0.193062 0.173637 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0388471 0.0349187 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17968 1 0.03 -1 -1 30384 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 17.3 MiB 0.29 1184 10336 2301 7496 539 55.6 MiB 0.15 0.01 5.18869 -164.242 -5.18869 5.18869 1.10 0.00146702 0.00134676 0.0435172 0.0397538 26 3457 39 6.65987e+06 481764 477104. 1650.88 2.51 0.270265 0.242508 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.21 0.18 0.17 -1 -1 0.21 0.0717011 0.06457 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.1 MiB 0.13 660 11064 4480 5786 798 54.8 MiB 0.12 0.00 3.61218 -99.209 -3.61218 3.61218 1.05 0.000903332 0.000827127 0.057231 0.0524219 32 1891 29 6.65987e+06 266238 554710. 1919.41 1.22 0.182295 0.163073 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.31 0.09 0.23 -1 -1 0.31 0.0313613 0.0278828 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 17.0 MiB 0.22 1031 5756 1118 4418 220 55.7 MiB 0.12 0.00 5.03726 -146.602 -5.03726 5.03726 1.05 0.00113328 0.00103921 0.0377695 0.0346788 28 2854 46 6.65987e+06 291594 500653. 1732.36 2.05 0.229183 0.20555 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.23 0.11 0.16 -1 -1 0.23 0.0510264 0.0459358 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 975 10087 2133 7508 446 55.2 MiB 0.16 0.00 3.91407 -118.639 -3.91407 3.91407 1.04 0.00114931 0.00105382 0.0554388 0.0508559 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.80 0.241776 0.217125 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0405769 0.0365804 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30088 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.6 MiB 0.08 889 13153 5130 6680 1343 55.2 MiB 0.18 0.00 4.00941 -121.212 -4.00941 4.00941 1.04 0.00103608 0.000949413 0.0723783 0.0664157 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.52 0.230493 0.207326 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.25 0.19 0.21 -1 -1 0.25 0.0562109 0.0504007 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1135 8213 1899 5522 792 55.4 MiB 0.14 0.00 4.53182 -135.539 -4.53182 4.53182 1.05 0.00115944 0.00106338 0.053802 0.0493474 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.47 0.206162 0.185413 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0549964 0.0494905 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17660 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 16.8 MiB 0.36 1054 11759 3077 7738 944 55.4 MiB 0.18 0.00 3.70469 -122.012 -3.70469 3.70469 1.04 0.00118829 0.00109057 0.0678753 0.0622894 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.61 0.219865 0.197993 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516653 0.0464901 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17568 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1080 10772 2746 7404 622 55.7 MiB 0.18 0.00 4.49669 -137.938 -4.49669 4.49669 1.05 0.00125011 0.00114689 0.0614935 0.0563488 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.51 0.222933 0.200707 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0548603 0.0494717 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30240 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.7 MiB 0.11 888 10593 2829 7083 681 55.2 MiB 0.15 0.00 3.98836 -118.206 -3.98836 3.98836 1.04 0.00106263 0.000975631 0.0564894 0.05188 32 2021 22 6.65987e+06 367662 554710. 1919.41 1.19 0.190799 0.171329 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0440014 0.0394966 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17792 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1026 6999 1560 5055 384 55.1 MiB 0.12 0.00 4.76946 -136.875 -4.76946 4.76946 1.05 0.00108214 0.000992581 0.0425636 0.0390945 32 2525 24 6.65987e+06 291594 554710. 1919.41 1.23 0.184859 0.166126 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0457549 0.0411554 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.21 17628 1 0.03 -1 -1 30284 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1149 15584 5177 7856 2551 55.5 MiB 0.27 0.00 4.99307 -147.134 -4.99307 4.99307 1.04 0.0012179 0.00111786 0.102398 0.0939657 32 3017 27 6.65987e+06 291594 554710. 1919.41 1.36 0.265544 0.239741 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0475638 0.0429403 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 16.6 MiB 0.18 1089 11245 3394 6770 1081 55.2 MiB 0.19 0.00 3.85398 -125.73 -3.85398 3.85398 1.05 0.00124409 0.00114086 0.0784879 0.0719882 32 2804 22 6.65987e+06 266238 554710. 1919.41 1.31 0.236836 0.213486 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.26 0.14 0.22 -1 -1 0.26 0.0583254 0.0524161 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17380 1 0.03 -1 -1 30084 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.2 MiB 0.09 769 15493 4232 9363 1898 54.8 MiB 0.18 0.00 3.34618 -101.012 -3.34618 3.34618 1.05 0.000897129 0.000823228 0.0728507 0.0667943 30 1787 28 6.65987e+06 304272 526063. 1820.29 1.23 0.194464 0.174437 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0294486 0.0264667 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 16.9 MiB 0.15 904 12345 3635 7531 1179 55.3 MiB 0.19 0.00 3.9733 -136.305 -3.9733 3.9733 1.02 0.00110599 0.0010131 0.0716559 0.0655266 28 2501 21 6.65987e+06 253560 500653. 1732.36 1.27 0.185978 0.167069 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0462901 0.0415841 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30344 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1234 10649 2580 7238 831 55.4 MiB 0.21 0.01 5.507 -161.149 -5.507 5.507 1.16 0.0013002 0.00119464 0.07023 0.0644922 32 3101 24 6.65987e+06 354984 554710. 1919.41 1.44 0.244368 0.220891 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530635 0.0480399 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.25 868 6791 1309 5265 217 55.2 MiB 0.11 0.00 4.3812 -128.187 -4.3812 4.3812 1.02 0.00115484 0.00105835 0.0383795 0.0351597 30 2033 20 6.65987e+06 393018 526063. 1820.29 1.23 0.170585 0.15301 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.24 0.09 0.21 -1 -1 0.24 0.0468154 0.0422519 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30308 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.7 MiB 0.06 691 10228 2870 6479 879 55.1 MiB 0.14 0.00 3.33678 -100.638 -3.33678 3.33678 1.04 0.000953867 0.00087475 0.0524259 0.0480899 26 1949 23 6.65987e+06 329628 477104. 1650.88 1.50 0.175353 0.157173 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0409469 0.0365758 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 17772 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1262 6623 1301 4680 642 55.7 MiB 0.14 0.00 6.41663 -184.149 -6.41663 6.41663 1.05 0.00140492 0.00129007 0.0515042 0.0473957 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.81 0.241698 0.217731 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0597142 0.0539435 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 16.5 MiB 0.27 921 16959 4303 11211 1445 55.2 MiB 0.24 0.00 4.44175 -133.512 -4.44175 4.44175 1.05 0.00113798 0.00104441 0.0916499 0.0841271 26 2186 24 6.65987e+06 405696 477104. 1650.88 1.28 0.24196 0.218503 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0494487 0.0444939 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.05 793 12375 3802 6579 1994 54.9 MiB 0.15 0.00 3.21869 -96.935 -3.21869 3.21869 1.05 0.000845311 0.000776013 0.0569784 0.0522935 30 1766 15 6.65987e+06 291594 526063. 1820.29 1.14 0.154163 0.138482 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.27 0.06 0.20 -1 -1 0.27 0.0282984 0.0253886 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30164 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.8 MiB 0.15 997 10448 2232 7093 1123 55.3 MiB 0.15 0.00 5.44618 -130.736 -5.44618 5.44618 1.05 0.00118386 0.00108452 0.0579268 0.0530598 30 2483 23 6.65987e+06 431052 526063. 1820.29 1.42 0.211468 0.190436 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0512321 0.0461792 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17152 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.1 MiB 0.10 805 9600 2394 6142 1064 54.7 MiB 0.07 0.00 3.39504 -104.25 -3.39504 3.39504 0.82 0.000332965 0.0003001 0.0190563 0.0172111 30 1773 21 6.65987e+06 253560 526063. 1820.29 1.20 0.135583 0.121027 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0343049 0.0307786 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17340 1 0.03 -1 -1 30404 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.16 870 16295 4607 9720 1968 54.9 MiB 0.19 0.00 3.88231 -108.178 -3.88231 3.88231 1.05 0.000951392 0.000872625 0.0745596 0.0683549 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.36 0.201843 0.181361 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.21 0.07 0.17 -1 -1 0.21 0.0318945 0.0286843 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30248 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1186 15151 5050 8219 1882 55.6 MiB 0.25 0.00 4.37661 -129.138 -4.37661 4.37661 1.05 0.00115926 0.00106359 0.0981138 0.09008 28 2757 20 6.65987e+06 304272 500653. 1732.36 1.61 0.243867 0.220289 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0469598 0.0423039 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.18 884 5548 1103 3958 487 55.5 MiB 0.10 0.00 4.37207 -129.772 -4.37207 4.37207 1.05 0.0011804 0.00108252 0.0369406 0.0339471 32 2141 21 6.65987e+06 304272 554710. 1919.41 1.22 0.185528 0.166634 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0455786 0.040947 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30104 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1040 15391 4199 8930 2262 55.4 MiB 0.23 0.00 4.54089 -136.701 -4.54089 4.54089 1.06 0.00117201 0.00107536 0.091795 0.084256 32 2316 24 6.65987e+06 342306 554710. 1919.41 1.23 0.245215 0.221267 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.04304 0.0388039 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17540 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 821 7476 1923 4958 595 55.0 MiB 0.12 0.00 4.66411 -131.468 -4.66411 4.66411 1.06 0.000945592 0.000867166 0.0438122 0.0402048 30 1841 19 6.65987e+06 202848 526063. 1820.29 1.14 0.164375 0.147285 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0347542 0.0312154 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30404 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.21 768 7736 1918 4969 849 55.3 MiB 0.13 0.00 3.69598 -115.422 -3.69598 3.69598 1.02 0.00104377 0.000956313 0.0484749 0.0444343 30 1988 17 6.65987e+06 240882 526063. 1820.29 1.17 0.180713 0.162364 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0418029 0.0375185 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30460 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.4 MiB 0.21 822 9815 2052 6788 975 55.0 MiB 0.13 0.00 3.34001 -95.394 -3.34001 3.34001 1.09 0.00109368 0.00100178 0.0537453 0.049283 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.80 0.195987 0.175997 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.21 0.08 0.13 -1 -1 0.21 0.0346768 0.0312681 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30464 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.13 864 12623 3003 8699 921 55.1 MiB 0.16 0.00 4.17801 -101.983 -4.17801 4.17801 1.06 0.000960682 0.000881919 0.0526949 0.0479732 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.89 0.171062 0.153134 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.22 0.10 0.19 -1 -1 0.22 0.0387653 0.0347819 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.10 17780 1 0.03 -1 -1 30472 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 16.4 MiB 0.23 739 8360 2842 3913 1605 55.0 MiB 0.13 0.00 4.07397 -113.958 -4.07397 4.07397 1.05 0.00103394 0.000946861 0.0543216 0.0498423 32 2126 22 6.65987e+06 215526 554710. 1919.41 1.25 0.179157 0.160685 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0406077 0.036341 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17656 1 0.03 -1 -1 30104 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 16.6 MiB 0.20 854 4110 634 3368 108 55.2 MiB 0.09 0.00 3.78604 -125.597 -3.78604 3.78604 1.04 0.00109114 0.00100042 0.0282541 0.0259585 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.79 0.173749 0.155383 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0438533 0.0393788 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17076 1 0.03 -1 -1 30452 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.09 847 5711 1070 3973 668 55.1 MiB 0.09 0.00 4.49904 -123.598 -4.49904 4.49904 1.05 0.00103732 0.000952683 0.0304035 0.0279278 30 2337 22 6.65987e+06 405696 526063. 1820.29 1.32 0.165172 0.148346 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0487308 0.0437921 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30472 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1096 14639 4278 7910 2451 55.6 MiB 0.24 0.00 5.13815 -159.632 -5.13815 5.13815 1.05 0.00118258 0.00108682 0.0949602 0.0872498 32 3087 25 6.65987e+06 278916 554710. 1919.41 1.31 0.251465 0.227148 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.25 0.12 0.20 -1 -1 0.25 0.0490229 0.0441788 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30308 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1097 14331 4044 8499 1788 55.5 MiB 0.22 0.00 4.9662 -142.984 -4.9662 4.9662 1.05 0.0012534 0.00115048 0.085394 0.0783258 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.43 0.246405 0.222256 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0436377 0.0393728 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30300 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 17.1 MiB 0.27 1087 19136 6054 10420 2662 55.6 MiB 0.27 0.00 4.23232 -136.463 -4.23232 4.23232 1.05 0.00125627 0.00115151 0.106016 0.0972062 28 2899 28 6.65987e+06 469086 500653. 1732.36 1.70 0.279174 0.252069 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.20 0.07 0.09 -1 -1 0.20 0.0252595 0.0224961 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30100 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.4 MiB 0.22 753 14081 4985 6810 2286 54.9 MiB 0.18 0.00 3.61906 -107.365 -3.61906 3.61906 1.05 0.000934557 0.000856216 0.0780115 0.0714776 32 1967 21 6.65987e+06 240882 554710. 1919.41 1.20 0.195066 0.175494 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0407228 0.0364541 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 17.0 MiB 0.27 993 13583 3880 7603 2100 55.7 MiB 0.22 0.00 4.75724 -141.541 -4.75724 4.75724 1.06 0.00122106 0.00111962 0.095446 0.0876077 32 2250 20 6.65987e+06 266238 554710. 1919.41 1.26 0.247693 0.223878 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494085 0.0445877 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 16.9 MiB 0.28 984 6328 1212 4906 210 55.4 MiB 0.12 0.00 5.08874 -146.537 -5.08874 5.08874 1.06 0.00115249 0.0010586 0.0408509 0.0375567 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.54 0.232437 0.208507 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.24 0.10 0.22 -1 -1 0.24 0.0463018 0.0417743 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30504 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 16.7 MiB 0.35 1115 15391 3929 9868 1594 55.2 MiB 0.23 0.00 5.2191 -153.261 -5.2191 5.2191 1.05 0.00113352 0.00103875 0.0887915 0.0813375 32 2703 22 6.65987e+06 354984 554710. 1919.41 1.24 0.23367 0.210712 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.047657 0.0429259 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30428 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 17.0 MiB 0.94 822 9963 2514 6047 1402 55.4 MiB 0.17 0.00 4.35758 -125.649 -4.35758 4.35758 1.05 0.00120737 0.00110765 0.0610073 0.0559865 30 1914 20 6.65987e+06 393018 526063. 1820.29 1.19 0.211126 0.190038 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0451283 0.0407886 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30324 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 16.8 MiB 0.21 1042 15822 5317 8613 1892 55.3 MiB 0.29 0.00 4.76549 -137.992 -4.76549 4.76549 1.05 0.000830583 0.000747778 0.10438 0.0955517 30 2491 20 6.65987e+06 253560 526063. 1820.29 1.35 0.254425 0.229602 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463954 0.0418322 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.11 17588 1 0.03 -1 -1 30288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 16.7 MiB 0.36 913 8934 2134 6274 526 55.4 MiB 0.15 0.00 4.51892 -126.294 -4.51892 4.51892 1.05 0.00120559 0.00110533 0.0568582 0.0521587 26 2602 20 6.65987e+06 367662 477104. 1650.88 2.03 0.203034 0.182282 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0482837 0.043409 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.10 17084 1 0.04 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.1 MiB 0.09 724 12416 3530 7132 1754 54.7 MiB 0.16 0.00 3.74649 -112.139 -3.74649 3.74649 1.05 0.000881584 0.000805851 0.0671039 0.0616003 32 1726 22 6.65987e+06 190170 554710. 1919.41 1.17 0.170413 0.153165 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0325378 0.0292011 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30280 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 17.1 MiB 0.28 989 15430 4612 8155 2663 55.5 MiB 0.23 0.00 4.41154 -133.367 -4.41154 4.41154 1.06 0.00121486 0.00111236 0.0916949 0.0841148 32 2429 22 6.65987e+06 380340 554710. 1919.41 1.34 0.245027 0.220925 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.049774 0.0447692 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30368 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 0.28 902 8685 2007 6399 279 55.4 MiB 0.17 0.00 4.76517 -143.598 -4.76517 4.76517 1.05 0.00128901 0.00118139 0.0647516 0.0594054 32 2497 24 6.65987e+06 253560 554710. 1919.41 1.32 0.234063 0.211 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0479514 0.0431554 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30052 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 16.6 MiB 0.21 946 12143 3182 7420 1541 55.1 MiB 0.16 0.00 4.15372 -120.605 -4.15372 4.15372 1.05 0.000924123 0.000846782 0.0652232 0.0597621 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.98 0.21512 0.19277 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.25 0.14 0.18 -1 -1 0.25 0.0491973 0.04391 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17372 1 0.02 -1 -1 30432 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.10 732 8685 2467 5468 750 54.9 MiB 0.12 0.00 3.75938 -108.757 -3.75938 3.75938 1.04 0.000883897 0.000811329 0.0444559 0.040799 30 1655 19 6.65987e+06 266238 526063. 1820.29 1.12 0.153513 0.137818 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0370561 0.0331827 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17820 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 17.0 MiB 0.16 1015 15533 4784 8284 2465 55.7 MiB 0.24 0.00 4.92983 -152.714 -4.92983 4.92983 1.05 0.00117015 0.00107388 0.0952219 0.0874443 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.65 0.26078 0.235342 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.22 0.12 0.09 -1 -1 0.22 0.0511154 0.046024 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 16.9 MiB 0.43 1191 12305 3278 8039 988 55.6 MiB 0.18 0.00 4.93544 -150.743 -4.93544 4.93544 1.05 0.0011791 0.00108196 0.0735022 0.0675021 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.72 0.228829 0.206152 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0575384 0.0517235 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30148 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1117 11004 2566 7834 604 55.7 MiB 0.18 0.00 5.28255 -141.369 -5.28255 5.28255 1.05 0.00121759 0.00111736 0.0612883 0.0561822 26 3370 49 6.65987e+06 456408 477104. 1650.88 3.37 0.273523 0.246158 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0493737 0.0446243 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17492 1 0.03 -1 -1 30120 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 16.4 MiB 0.22 750 7863 1674 5072 1117 55.0 MiB 0.12 0.00 3.28175 -94.6726 -3.28175 3.28175 1.08 0.00104975 0.000962002 0.0425993 0.0390961 30 1756 22 6.65987e+06 393018 526063. 1820.29 1.16 0.176835 0.158604 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0406239 0.036543 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.2 MiB 0.06 638 11948 3525 6694 1729 54.8 MiB 0.14 0.00 3.4543 -94.1654 -3.4543 3.4543 1.07 0.000879723 0.00080703 0.0633986 0.0581403 28 1599 22 6.65987e+06 266238 500653. 1732.36 1.10 0.175073 0.157156 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0351193 0.0314073 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.14 18080 1 0.03 -1 -1 30380 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.2 MiB 0.18 1319 10542 2869 6884 789 55.6 MiB 0.20 0.00 4.22384 -138.261 -4.22384 4.22384 1.05 0.00136838 0.0012562 0.0761428 0.0699311 28 3615 24 6.65987e+06 329628 500653. 1732.36 2.00 0.258701 0.233678 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.060153 0.054332 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30320 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 16.7 MiB 0.85 967 9417 2580 6478 359 55.3 MiB 0.16 0.00 5.3126 -152.671 -5.3126 5.3126 1.05 0.001192 0.00109353 0.0646045 0.0592536 30 2413 22 6.65987e+06 266238 526063. 1820.29 1.27 0.216238 0.194725 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.26 0.09 0.20 -1 -1 0.26 0.049875 0.0449325 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30400 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 0.83 910 12186 3808 6300 2078 55.4 MiB 0.18 0.00 4.17204 -128.915 -4.17204 4.17204 1.10 0.00107649 0.000985979 0.0767294 0.0703338 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.23 0.215177 0.193834 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0398318 0.0358315 126 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30544 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.7 MiB 0.11 997 13726 4134 8495 1097 55.4 MiB 0.20 0.00 4.87399 -127.071 -4.87399 4.87399 1.04 0.00111283 0.00102149 0.0749362 0.0686981 30 2100 21 6.65987e+06 380340 526063. 1820.29 1.17 0.215701 0.194548 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.26 0.08 0.10 -1 -1 0.26 0.0390705 0.035259 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.23 17640 1 0.03 -1 -1 30152 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1094 9732 2284 6801 647 55.8 MiB 0.17 0.00 4.71929 -136.272 -4.71929 4.71929 1.05 0.00122956 0.001127 0.0581981 0.0534419 26 2676 39 6.65987e+06 418374 477104. 1650.88 2.04 0.25194 0.226688 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048082 0.0434591 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.11 17860 1 0.03 -1 -1 30348 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.6 MiB 0.16 968 12693 2914 8596 1183 55.3 MiB 0.20 0.00 3.66981 -110.801 -3.66981 3.66981 1.05 0.00108038 0.000990023 0.0680576 0.0623855 32 2261 19 6.65987e+06 393018 554710. 1919.41 1.21 0.20158 0.181593 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0435896 0.0391978 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30256 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 16.9 MiB 0.18 1162 15493 5220 7522 2751 55.7 MiB 0.25 0.00 4.81692 -150.127 -4.81692 4.81692 1.05 0.00117812 0.00108104 0.0968441 0.0889042 32 3110 26 6.65987e+06 304272 554710. 1919.41 1.37 0.255317 0.23068 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0568005 0.0512159 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30056 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1013 10448 2457 7443 548 55.3 MiB 0.18 0.00 4.61703 -140.056 -4.61703 4.61703 1.05 0.00126054 0.00115405 0.0621261 0.0569425 26 2952 23 6.65987e+06 431052 477104. 1650.88 2.01 0.225826 0.203453 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0549543 0.0495571 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30228 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.3 MiB 0.13 669 12030 4965 6160 905 54.9 MiB 0.15 0.00 3.76255 -110.557 -3.76255 3.76255 1.06 0.000926174 0.000849081 0.0697826 0.0640153 32 1475 20 6.65987e+06 215526 554710. 1919.41 1.15 0.1865 0.167721 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0355508 0.0318645 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.10 17816 1 0.04 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 16.4 MiB 0.24 897 13992 5018 7267 1707 54.9 MiB 0.19 0.00 3.93547 -124.701 -3.93547 3.93547 1.05 0.00102038 0.000934816 0.0808403 0.0740751 28 2149 19 6.65987e+06 253560 500653. 1732.36 1.14 0.205455 0.184886 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0458012 0.0411053 116 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30524 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.11 945 14020 3581 8011 2428 55.5 MiB 0.19 0.00 4.66818 -124.475 -4.66818 4.66818 1.05 0.00110882 0.00101828 0.0704963 0.0647412 32 2224 21 6.65987e+06 469086 554710. 1919.41 1.24 0.210641 0.190009 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0498502 0.0448108 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17644 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 16.4 MiB 0.21 809 8448 1963 6049 436 55.0 MiB 0.12 0.00 4.16472 -111.492 -4.16472 4.16472 1.05 0.000900686 0.000826499 0.045333 0.0416021 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.90 0.177996 0.15923 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0378425 0.0338748 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.11 17372 1 0.03 -1 -1 30188 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 16.1 MiB 0.21 618 8852 1890 6315 647 54.8 MiB 0.12 0.00 3.69503 -110.464 -3.69503 3.69503 1.07 0.000964489 0.000885082 0.0523396 0.0480543 32 2025 24 6.65987e+06 202848 554710. 1919.41 1.30 0.178635 0.160205 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.22 0.05 0.11 -1 -1 0.22 0.0171851 0.0152335 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30104 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 17.1 MiB 0.27 938 16973 4485 9905 2583 55.6 MiB 0.24 0.00 4.16177 -122.328 -4.16177 4.16177 1.00 0.00121176 0.00111184 0.0953566 0.0874202 32 2086 22 6.65987e+06 443730 554710. 1919.41 1.27 0.251205 0.226762 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0444795 0.0400806 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30356 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 16.4 MiB 0.18 818 9872 2327 5876 1669 55.0 MiB 0.13 0.00 3.9535 -119.787 -3.9535 3.9535 1.09 0.000913279 0.000837063 0.0535125 0.0490594 28 2135 19 6.65987e+06 240882 500653. 1732.36 1.21 0.165281 0.148271 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.033752 0.030249 108 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30056 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 854 7007 1324 4687 996 55.5 MiB 0.10 0.00 3.67932 -112.828 -3.67932 3.67932 0.87 0.00100802 0.000926265 0.0369279 0.0340435 26 2878 47 6.65987e+06 393018 477104. 1650.88 3.28 0.23182 0.207775 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0385043 0.0347296 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.8 MiB 0.78 956 13055 3385 8531 1139 55.4 MiB 0.20 0.00 4.2257 -136.613 -4.2257 4.2257 1.09 0.00125111 0.00114559 0.0793802 0.0726597 32 2142 21 6.65987e+06 405696 554710. 1919.41 1.25 0.240177 0.21652 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0500155 0.0451139 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30396 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 770 8481 2112 5900 469 55.1 MiB 0.13 0.00 3.26384 -102.093 -3.26384 3.26384 1.05 0.00102258 0.000937293 0.0511852 0.0469032 30 1814 29 6.65987e+06 215526 526063. 1820.29 1.18 0.189378 0.169691 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0352204 0.031629 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17244 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 16.4 MiB 0.16 877 7823 1725 5526 572 55.0 MiB 0.12 0.00 4.21052 -129.412 -4.21052 4.21052 1.05 0.000986983 0.000905837 0.0459717 0.0422042 28 2168 19 6.65987e+06 240882 500653. 1732.36 1.19 0.168389 0.151176 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.041271 0.0370076 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1033 8591 2028 5962 601 55.3 MiB 0.14 0.00 4.5425 -136.752 -4.5425 4.5425 1.05 0.00109827 0.00100953 0.0530246 0.0487525 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.68 0.200414 0.18051 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0400929 0.0361518 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 16.5 MiB 0.38 878 11177 3323 6945 909 55.1 MiB 0.17 0.00 4.7062 -118.142 -4.7062 4.7062 1.05 0.00107008 0.000981195 0.0632494 0.0579691 30 1916 16 6.65987e+06 354984 526063. 1820.29 1.10 0.18935 0.170446 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0342973 0.030983 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1007 9495 2407 6691 397 55.5 MiB 0.17 0.00 5.16517 -161.462 -5.16517 5.16517 1.05 0.00127316 0.00116772 0.0666982 0.0612133 32 2658 22 6.65987e+06 291594 554710. 1919.41 1.30 0.230697 0.20807 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0555751 0.0501038 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17048 1 0.02 -1 -1 30364 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.1 MiB 0.10 794 9181 2203 6150 828 54.7 MiB 0.11 0.00 3.53041 -99.5418 -3.53041 3.53041 1.05 0.000832469 0.000763321 0.0459819 0.0422253 32 1764 19 6.65987e+06 228204 554710. 1919.41 1.11 0.148318 0.132824 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0295478 0.0264512 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17688 1 0.03 -1 -1 30216 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 16.7 MiB 0.41 947 7201 1402 5250 549 55.4 MiB 0.13 0.00 4.0805 -134.669 -4.0805 4.0805 1.06 0.00130409 0.00119541 0.0457593 0.0419384 32 2497 24 6.65987e+06 418374 554710. 1919.41 1.28 0.216763 0.194792 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0567484 0.0511259 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30232 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 692 9368 2494 5834 1040 55.1 MiB 0.16 0.00 3.5233 -119.857 -3.5233 3.5233 1.05 0.00117706 0.00107817 0.0684397 0.0627281 32 1730 23 6.65987e+06 202848 554710. 1919.41 1.23 0.221303 0.19912 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0529305 0.0474973 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30436 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.33 963 9383 2362 6118 903 55.4 MiB 0.15 0.00 4.19332 -127.565 -4.19332 4.19332 1.05 0.00117975 0.00108152 0.0545297 0.0499605 32 2293 25 6.65987e+06 393018 554710. 1919.41 1.23 0.210843 0.189536 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0489701 0.044041 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30412 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1323 16127 4193 10390 1544 55.5 MiB 0.32 0.01 6.49946 -194.782 -6.49946 6.49946 1.05 0.00132737 0.00121862 0.111986 0.10287 28 3840 36 6.65987e+06 316950 500653. 1732.36 2.86 0.308673 0.279019 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0558125 0.0504727 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17520 1 0.02 -1 -1 30192 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 16.1 MiB 0.18 701 10895 2966 6376 1553 54.6 MiB 0.12 0.00 3.19181 -99.2246 -3.19181 3.19181 1.07 0.000772018 0.000707091 0.0520017 0.0476305 32 1552 19 6.65987e+06 215526 554710. 1919.41 1.10 0.146382 0.131038 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.032002 0.0285075 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30440 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.11 559 11200 4645 5368 1187 55.1 MiB 0.07 0.00 4.03052 -111.683 -4.03052 4.03052 1.07 0.00035939 0.000323712 0.0260404 0.0235335 32 1719 26 6.65987e+06 202848 554710. 1919.41 1.29 0.156251 0.139271 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.27 0.14 0.24 -1 -1 0.27 0.0596752 0.0532672 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 29940 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.3 MiB 0.07 882 13663 3967 7775 1921 54.9 MiB 0.21 0.00 3.38183 -111.047 -3.38183 3.38183 1.05 0.00101278 0.000928693 0.0779101 0.0714084 32 2232 25 6.65987e+06 266238 554710. 1919.41 1.26 0.211524 0.190288 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0419986 0.0376481 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17640 1 0.02 -1 -1 30220 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.1 MiB 0.09 461 9234 2985 4025 2224 54.7 MiB 0.09 0.00 3.09981 -73.1644 -3.09981 3.09981 1.04 0.00075448 0.000690581 0.04016 0.0367823 38 1143 33 6.65987e+06 342306 638502. 2209.35 2.02 0.206987 0.183921 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.29 0.05 0.25 -1 -1 0.29 0.0264034 0.0236581 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.11 17764 1 0.03 -1 -1 30464 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 16.9 MiB 0.20 1082 15273 5386 7964 1923 55.3 MiB 0.26 0.00 3.97418 -128.905 -3.97418 3.97418 1.04 0.00121687 0.00111516 0.104793 0.0960702 32 2803 23 6.65987e+06 253560 554710. 1919.41 1.32 0.262042 0.236549 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547871 0.0492815 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17780 1 0.04 -1 -1 30232 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 16.9 MiB 0.36 841 9951 2183 7152 616 55.6 MiB 0.17 0.00 4.37472 -138.365 -4.37472 4.37472 1.05 0.00127207 0.00116333 0.062549 0.0573545 32 2335 20 6.65987e+06 418374 554710. 1919.41 1.26 0.223623 0.201422 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.046313 0.0418643 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17864 1 0.03 -1 -1 30104 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 2.26 849 12139 5116 6732 291 56.1 MiB 0.18 0.00 5.4594 -159.287 -5.4594 5.4594 1.09 0.00116932 0.00107148 0.0910881 0.0835873 44 2778 24 6.95648e+06 188184 787024. 2723.27 3.86 0.343268 0.308429 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0516291 0.0465294 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30372 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 17.5 MiB 2.09 750 10998 3991 5243 1764 56.1 MiB 0.16 0.00 4.63092 -138.355 -4.63092 4.63092 1.09 0.0011814 0.00108373 0.0836536 0.0768302 40 2398 38 6.95648e+06 217135 706193. 2443.58 3.20 0.365452 0.327996 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.0536433 0.0483048 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 17.6 MiB 1.10 1011 6839 1853 4585 401 56.1 MiB 0.10 0.00 3.76508 -124.296 -3.76508 3.76508 1.08 0.00103494 0.000950475 0.044537 0.0408957 38 2570 30 6.95648e+06 217135 678818. 2348.85 4.01 0.274675 0.245268 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0414272 0.0372466 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.22 17504 1 0.03 -1 -1 30448 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 17.4 MiB 0.29 653 13152 5791 6666 695 55.9 MiB 0.16 0.00 4.18338 -115.281 -4.18338 4.18338 1.05 0.00104478 0.000958639 0.0831858 0.0763004 46 2265 28 6.95648e+06 275038 828058. 2865.25 3.61 0.317931 0.285513 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0405877 0.0365429 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30244 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 17.4 MiB 0.76 735 12120 5042 6627 451 55.9 MiB 0.16 0.00 4.33299 -127.984 -4.33299 4.33299 1.06 0.00113571 0.00104187 0.0835615 0.0767002 46 2384 49 6.95648e+06 231611 828058. 2865.25 5.20 0.377312 0.338374 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.34 0.10 0.32 -1 -1 0.34 0.044247 0.039899 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 17.6 MiB 1.09 762 14779 6278 7942 559 56.2 MiB 0.18 0.00 3.0584 -114.242 -3.0584 3.0584 1.09 0.00120302 0.00110016 0.0990458 0.0907117 46 2130 23 6.95648e+06 303989 828058. 2865.25 3.77 0.356975 0.320647 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0502151 0.0452231 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17312 1 0.03 -1 -1 30756 -1 -1 13 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 16.8 MiB 4.02 400 8118 3296 4253 569 55.3 MiB 0.09 0.00 3.56899 -93.1575 -3.56899 3.56899 1.08 0.000892481 0.00081411 0.0507409 0.0465485 40 1513 27 6.95648e+06 188184 706193. 2443.58 2.48 0.245375 0.218863 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0357302 0.032004 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17036 1 0.03 -1 -1 30012 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 17.1 MiB 0.37 691 11983 4028 5840 2115 55.8 MiB 0.14 0.00 3.0166 -94.5957 -3.0166 3.0166 1.08 0.000971565 0.000891355 0.0623128 0.0571974 38 2198 34 6.95648e+06 361892 678818. 2348.85 3.58 0.288074 0.257627 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.26 0.05 0.14 -1 -1 0.26 0.0175381 0.0156019 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 17.4 MiB 1.89 579 9684 3905 5251 528 56.1 MiB 0.12 0.00 3.39469 -115.112 -3.39469 3.39469 1.09 0.0010306 0.000943595 0.0674986 0.0618481 48 1811 26 6.95648e+06 159232 865456. 2994.66 2.82 0.291103 0.260273 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.38 0.10 0.34 -1 -1 0.38 0.0438043 0.0392135 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 17.2 MiB 1.34 566 8134 3343 4546 245 55.9 MiB 0.10 0.00 3.30928 -114.291 -3.30928 3.30928 1.08 0.00101303 0.000927961 0.0457614 0.0418921 42 1921 24 6.95648e+06 144757 744469. 2576.02 2.31 0.263335 0.234768 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0391705 0.0352196 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30336 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 17.0 MiB 1.78 471 10304 4280 5549 475 55.8 MiB 0.06 0.00 3.43453 -102.366 -3.43453 3.43453 0.74 0.000368937 0.000332362 0.0265587 0.0240257 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.45 0.118392 0.103246 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0380115 0.0340867 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30088 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 1.47 590 10614 3394 4881 2339 55.8 MiB 0.13 0.00 3.37833 -114.652 -3.37833 3.37833 1.08 0.000943388 0.000864378 0.0672547 0.0616811 48 2065 26 6.95648e+06 144757 865456. 2994.66 4.24 0.275949 0.246684 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0410297 0.0367433 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 17.4 MiB 1.96 833 13261 5618 7295 348 56.0 MiB 0.18 0.00 3.96008 -134.144 -3.96008 3.96008 1.08 0.00116825 0.00106875 0.0943122 0.0865228 46 2758 33 6.95648e+06 217135 828058. 2865.25 4.44 0.361402 0.324845 28066 200906 -1 2047 22 1722 2490 195693 41961 3.39476 3.39476 -130.85 -3.39476 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0509226 0.0458872 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30452 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 17.5 MiB 0.95 789 9158 3216 4675 1267 56.1 MiB 0.12 0.00 4.48063 -134.265 -4.48063 4.48063 1.12 0.00118221 0.00108311 0.0610072 0.0559749 46 2203 26 6.95648e+06 318465 828058. 2865.25 2.95 0.319889 0.286841 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0542423 0.0487392 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30356 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 16.9 MiB 1.25 470 8444 3456 4562 426 55.4 MiB 0.10 0.00 3.10275 -88.0296 -3.10275 3.10275 1.09 0.00086344 0.000791236 0.0488958 0.0448433 40 2005 31 6.95648e+06 188184 706193. 2443.58 2.98 0.244079 0.217414 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0390871 0.0349384 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 17.3 MiB 1.15 736 13381 4767 6091 2523 55.9 MiB 0.20 0.00 3.0625 -113.087 -3.0625 3.0625 1.10 0.00120312 0.00110319 0.106985 0.0980831 46 2125 28 6.95648e+06 246087 828058. 2865.25 3.09 0.373467 0.335732 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528002 0.0475052 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30092 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 2.07 821 11698 3981 5913 1804 56.0 MiB 0.17 0.00 4.42651 -139.682 -4.42651 4.42651 1.10 0.00114181 0.00104701 0.0835269 0.0766976 38 2675 39 6.95648e+06 202660 678818. 2348.85 4.14 0.357818 0.321085 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0481899 0.0434561 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30292 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 17.0 MiB 0.99 568 11625 5013 6229 383 55.7 MiB 0.15 0.00 2.28966 -90.0891 -2.28966 2.28966 1.08 0.00105339 0.000963685 0.0833848 0.076291 46 1756 36 6.95648e+06 130281 828058. 2865.25 4.13 0.329961 0.295101 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0405761 0.0364506 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 9 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 16.6 MiB 0.34 438 9707 4039 5351 317 55.2 MiB 0.10 0.00 2.22846 -79.3536 -2.22846 2.22846 1.09 0.00076745 0.000701861 0.0531963 0.0486875 38 1481 49 6.95648e+06 130281 678818. 2348.85 2.27 0.247219 0.219389 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0306093 0.0273126 43 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30400 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 17.5 MiB 2.10 900 8449 3439 4770 240 56.0 MiB 0.11 0.00 4.11557 -135.517 -4.11557 4.11557 1.09 0.000991298 0.000908224 0.0558545 0.0512724 40 2181 21 6.95648e+06 173708 706193. 2443.58 2.85 0.263428 0.235592 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0433029 0.0388449 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30392 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 17.3 MiB 0.57 691 13626 5075 6512 2039 56.0 MiB 0.17 0.00 3.69419 -120.83 -3.69419 3.69419 1.08 0.00115253 0.00105742 0.0891479 0.0817599 44 2266 33 6.95648e+06 289514 787024. 2723.27 4.10 0.352644 0.316606 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.059839 0.0538149 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 17.5 MiB 1.55 803 10868 4396 5912 560 56.2 MiB 0.16 0.00 4.7576 -138.082 -4.7576 4.7576 1.12 0.00121413 0.00111307 0.0824378 0.075606 48 2894 42 6.95648e+06 202660 865456. 2994.66 4.56 0.375842 0.336988 28354 207349 -1 2151 23 1823 2679 262855 61699 4.41832 4.41832 -141.927 -4.41832 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.0548738 0.0493939 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17404 1 0.02 -1 -1 30708 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 16.5 MiB 0.88 416 8539 3544 4471 524 55.1 MiB 0.08 0.00 2.23646 -66.7931 -2.23646 2.23646 1.10 0.0006573 0.000600728 0.0403815 0.0369205 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.86 0.204267 0.180941 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.26 0.05 0.24 -1 -1 0.26 0.0232369 0.0207166 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17268 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 0.70 670 9543 3600 4533 1410 55.6 MiB 0.12 0.00 4.68425 -117.235 -4.68425 4.68425 1.08 0.00101399 0.000930278 0.0601344 0.0552468 44 2456 40 6.95648e+06 217135 787024. 2723.27 4.27 0.308805 0.276588 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0393349 0.035427 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 16852 1 0.02 -1 -1 30056 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.8 MiB 0.28 360 10055 3887 4514 1654 55.3 MiB 0.09 0.00 2.15326 -68.8392 -2.15326 2.15326 1.08 0.000633839 0.000577821 0.0446908 0.0408002 38 1061 21 6.95648e+06 115805 678818. 2348.85 2.28 0.18189 0.161362 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0237036 0.0211199 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30252 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 17.5 MiB 0.91 746 14106 6043 7637 426 55.9 MiB 0.17 0.00 4.49111 -123.956 -4.49111 4.49111 1.08 0.00103405 0.000941945 0.0893404 0.0819668 38 2858 40 6.95648e+06 217135 678818. 2348.85 9.12 0.349035 0.312976 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.29 0.11 0.24 -1 -1 0.29 0.0421322 0.0379813 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.3 MiB 0.50 675 10873 4420 6034 419 55.9 MiB 0.13 0.00 2.9573 -100.116 -2.9573 2.9573 1.09 0.00105781 0.000970977 0.0648998 0.059598 46 2093 50 6.95648e+06 303989 828058. 2865.25 3.25 0.335932 0.301032 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.049347 0.0443789 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.11 17584 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 17.2 MiB 0.83 795 15383 6700 8206 477 55.9 MiB 0.20 0.00 4.43549 -130.994 -4.43549 4.43549 1.08 0.00111658 0.00102316 0.0987414 0.0905275 48 2092 29 6.95648e+06 275038 865456. 2994.66 3.48 0.347935 0.312381 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.34 0.11 0.34 -1 -1 0.34 0.0486523 0.0437182 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17240 1 0.02 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 0.86 836 12164 3915 6903 1346 55.8 MiB 0.15 0.00 3.08875 -104.395 -3.08875 3.08875 1.08 0.000967189 0.000886982 0.0787462 0.0722095 38 2054 21 6.95648e+06 144757 678818. 2348.85 2.34 0.28096 0.251642 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0362819 0.0326065 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30520 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 17.0 MiB 0.27 486 10916 4488 5855 573 55.6 MiB 0.12 0.00 3.37953 -96.5612 -3.37953 3.37953 1.04 0.00137839 0.00125994 0.0612963 0.0560993 42 1738 31 6.95648e+06 260562 744469. 2576.02 2.37 0.263418 0.234832 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.31 0.08 0.30 -1 -1 0.31 0.0331286 0.0296657 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17532 1 0.03 -1 -1 30068 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 17.1 MiB 0.47 447 10796 4457 5651 688 55.6 MiB 0.12 0.00 2.9532 -88.5671 -2.9532 2.9532 1.08 0.000892543 0.00081869 0.0633416 0.0581026 44 1895 36 6.95648e+06 231611 787024. 2723.27 3.32 0.273533 0.243919 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0358295 0.0320273 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17084 1 0.03 -1 -1 30340 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.42 490 8754 2672 4372 1710 55.7 MiB 0.10 0.00 3.37459 -106.603 -3.37459 3.37459 1.18 0.000909063 0.000833744 0.0545043 0.0500757 46 1609 38 6.95648e+06 144757 828058. 2865.25 4.17 0.277045 0.246879 28066 200906 -1 1166 19 1064 1493 99508 25826 3.01962 3.01962 -108.184 -3.01962 0 0 1.01997e+06 3529.29 0.33 0.08 0.33 -1 -1 0.33 0.0361631 0.0324893 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17548 1 0.03 -1 -1 30184 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 16.8 MiB 0.39 514 10050 3328 4861 1861 55.6 MiB 0.11 0.00 3.16614 -99.0057 -3.16614 3.16614 1.10 0.000945871 0.000866324 0.0519128 0.0472929 44 1932 39 6.95648e+06 275038 787024. 2723.27 3.91 0.276134 0.245959 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0434725 0.0388738 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30416 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 17.2 MiB 1.29 761 12537 5784 6209 544 55.9 MiB 0.15 0.00 2.98425 -104.866 -2.98425 2.98425 1.10 0.000963475 0.000883062 0.0825643 0.075655 40 1951 35 6.95648e+06 173708 706193. 2443.58 4.39 0.313684 0.280554 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.037253 0.0333799 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.17 17624 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 17.4 MiB 0.93 827 14593 4666 7411 2516 56.1 MiB 0.18 0.00 4.22723 -122.469 -4.22723 4.22723 1.11 0.000827248 0.000745406 0.0676918 0.0611651 40 2898 29 6.95648e+06 303989 706193. 2443.58 4.41 0.346046 0.309904 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0561488 0.0506201 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30292 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 17.4 MiB 1.26 745 13738 4997 6870 1871 56.1 MiB 0.19 0.00 3.2962 -117.206 -3.2962 3.2962 1.08 0.00127022 0.00116298 0.0932746 0.0853882 40 2441 27 6.95648e+06 347416 706193. 2443.58 3.58 0.373388 0.335423 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0555294 0.0500717 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.13 17804 1 0.03 -1 -1 30192 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 17.2 MiB 1.84 860 8754 2885 4850 1019 55.9 MiB 0.11 0.00 4.04047 -132.719 -4.04047 4.04047 1.08 0.000958555 0.000879188 0.0568855 0.0522283 40 2120 31 6.95648e+06 159232 706193. 2443.58 2.86 0.272045 0.242826 26914 176310 -1 2014 22 1310 1843 197131 38779 3.56322 3.56322 -132.421 -3.56322 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0415946 0.0372517 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30336 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 17.4 MiB 0.92 747 9036 3143 4486 1407 56.0 MiB 0.13 0.00 3.76434 -122.812 -3.76434 3.76434 1.09 0.00120549 0.00110604 0.0678385 0.0623149 38 2983 41 6.95648e+06 231611 678818. 2348.85 4.82 0.363318 0.325771 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0507194 0.0456912 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.20 17612 1 0.04 -1 -1 30316 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 17.7 MiB 2.18 943 12585 5266 6878 441 56.5 MiB 0.19 0.00 5.54066 -172.627 -5.54066 5.54066 1.11 0.00122755 0.00112555 0.094965 0.0871196 56 2573 26 6.95648e+06 231611 973134. 3367.25 3.28 0.363375 0.326558 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.38 0.16 0.41 -1 -1 0.38 0.055945 0.050434 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30496 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 17.3 MiB 2.87 938 15120 6700 8021 399 56.0 MiB 0.21 0.00 4.47954 -148.558 -4.47954 4.47954 1.09 0.00124224 0.00113911 0.114689 0.105192 40 2977 25 6.95648e+06 231611 706193. 2443.58 2.78 0.387038 0.348246 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0506783 0.0457227 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 17.4 MiB 1.49 806 12733 4192 6306 2235 56.0 MiB 0.17 0.00 4.14583 -131.471 -4.14583 4.14583 1.09 0.00110207 0.00100238 0.082566 0.0757593 44 2580 41 6.95648e+06 318465 787024. 2723.27 3.49 0.379121 0.340043 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466037 0.0419765 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 30332 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 17.2 MiB 1.29 717 8212 2161 5077 974 55.7 MiB 0.12 0.00 4.19005 -113.386 -4.19005 4.19005 1.15 0.00100602 0.000922052 0.0525022 0.0481896 46 1942 38 6.95648e+06 202660 828058. 2865.25 3.93 0.297277 0.265647 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.33 0.09 0.32 -1 -1 0.33 0.0373457 0.0336328 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18080 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58096 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 17.9 MiB 1.90 969 15017 6294 8197 526 56.7 MiB 0.23 0.00 4.79262 -158.033 -4.79262 4.79262 1.08 0.00147546 0.00135552 0.121182 0.111296 44 3004 31 6.95648e+06 318465 787024. 2723.27 4.11 0.455026 0.409479 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0641283 0.057692 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30268 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 17.2 MiB 0.78 451 10702 3732 4796 2174 55.7 MiB 0.11 0.00 3.25706 -97.1743 -3.25706 3.25706 1.08 0.000900359 0.000825125 0.0606174 0.0555534 42 1868 35 6.95648e+06 217135 744469. 2576.02 2.37 0.271682 0.242412 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.31 0.12 0.29 -1 -1 0.31 0.0563231 0.0501294 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30236 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 1.32 1043 13358 5192 6540 1626 56.0 MiB 0.19 0.00 4.83562 -153.036 -4.83562 4.83562 1.08 0.0011437 0.0010497 0.0950767 0.0873513 40 2908 41 6.95648e+06 217135 706193. 2443.58 4.50 0.373495 0.335583 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0443269 0.0400028 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30220 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 17.5 MiB 1.03 832 15481 6850 8276 355 56.1 MiB 0.20 0.00 3.22585 -113.908 -3.22585 3.22585 1.09 0.00114903 0.00105319 0.105186 0.0964149 40 2681 28 6.95648e+06 246087 706193. 2443.58 3.95 0.361547 0.324808 26914 176310 -1 2155 23 1599 2614 231061 49102 3.24022 3.24022 -125.665 -3.24022 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0519951 0.0467392 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17288 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.4 MiB 0.89 692 9712 3251 4487 1974 56.0 MiB 0.12 0.00 4.55274 -121.613 -4.55274 4.55274 1.11 0.00103154 0.000946725 0.0612899 0.0562951 44 2409 26 6.95648e+06 231611 787024. 2723.27 3.55 0.289153 0.259386 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0487288 0.0438197 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 17.4 MiB 2.83 796 11532 3820 5366 2346 56.0 MiB 0.16 0.00 4.43423 -134.57 -4.43423 4.43423 1.11 0.00117036 0.00107391 0.0846868 0.0777873 40 2553 40 6.95648e+06 202660 706193. 2443.58 3.47 0.365517 0.327965 26914 176310 -1 2106 22 1511 2049 167648 37819 3.63736 3.63736 -132.097 -3.63736 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.050734 0.0456611 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 17.6 MiB 1.84 763 10406 4042 5595 769 56.2 MiB 0.15 0.00 3.235 -115.411 -3.235 3.235 1.10 0.00118377 0.00108507 0.0740253 0.0679148 38 2855 46 6.95648e+06 246087 678818. 2348.85 6.36 0.381098 0.341681 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0478725 0.0431174 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 17.6 MiB 1.10 832 13758 4740 6643 2375 56.3 MiB 0.19 0.00 4.17869 -135.166 -4.17869 4.17869 1.09 0.000457344 0.000412858 0.0747404 0.0679011 46 2399 24 6.95648e+06 376368 828058. 2865.25 3.44 0.347153 0.311192 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0582536 0.0524604 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30228 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 17.3 MiB 0.97 704 11804 4117 5540 2147 55.8 MiB 0.13 0.00 4.32723 -118.436 -4.32723 4.32723 1.09 0.00105304 0.000965034 0.0686656 0.0630036 42 2228 31 6.95648e+06 318465 744469. 2576.02 2.89 0.313691 0.281181 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0408157 0.0367317 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 17.5 MiB 2.28 822 10020 3444 5308 1268 56.1 MiB 0.14 0.00 4.15778 -128.101 -4.15778 4.15778 1.09 0.00109783 0.00100682 0.0703296 0.0645567 40 2642 40 6.95648e+06 188184 706193. 2443.58 3.87 0.34213 0.306552 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0516114 0.0464457 79 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.20 17856 1 0.04 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 1.51 847 12030 5014 6584 432 56.2 MiB 0.18 0.00 4.57287 -144.308 -4.57287 4.57287 1.08 0.00121522 0.00111432 0.0919047 0.0841014 46 3239 34 6.95648e+06 217135 828058. 2865.25 6.09 0.37479 0.336328 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0513365 0.0463201 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 17.8 MiB 2.36 757 13443 5119 6395 1929 56.5 MiB 0.19 0.00 4.08826 -130.07 -4.08826 4.08826 1.09 0.00125439 0.00114667 0.106488 0.0976398 50 2778 50 6.95648e+06 188184 902133. 3121.57 4.52 0.431311 0.386826 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0706036 0.0634084 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17408 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 17.0 MiB 0.29 503 12542 4062 6070 2410 55.6 MiB 0.13 0.00 3.14908 -92.6386 -3.14908 3.14908 1.10 0.00088637 0.000812117 0.064573 0.0591332 40 1776 44 6.95648e+06 260562 706193. 2443.58 12.76 0.461719 0.409001 26914 176310 -1 1443 22 1111 1649 176104 46230 2.86757 2.86757 -100.891 -2.86757 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0378286 0.0337741 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 1.40 674 9676 3990 5312 374 55.9 MiB 0.15 0.00 3.76865 -134.987 -3.76865 3.76865 1.09 0.00110687 0.00101222 0.0642074 0.0586079 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 3.05 0.295053 0.263922 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.41 0.11 0.45 -1 -1 0.41 0.0496703 0.044532 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17844 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 17.9 MiB 1.81 1197 6788 1593 4785 410 56.4 MiB 0.13 0.00 4.81732 -154.887 -4.81732 4.81732 1.10 0.00130081 0.00119476 0.0560464 0.0516652 56 2745 25 6.95648e+06 231611 973134. 3367.25 3.39 0.344605 0.310418 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.38 0.14 0.39 -1 -1 0.38 0.0535575 0.0484982 97 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 17.6 MiB 1.10 755 11806 4947 6514 345 56.1 MiB 0.16 0.00 4.55181 -144.133 -4.55181 4.55181 1.09 0.00114925 0.00105496 0.0808799 0.0742624 46 2302 50 6.95648e+06 246087 828058. 2865.25 3.43 0.377529 0.338772 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.34 0.12 0.34 -1 -1 0.34 0.0502422 0.0452561 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17256 1 0.03 -1 -1 30324 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 17.2 MiB 0.50 536 11296 4661 6055 580 55.9 MiB 0.13 0.00 2.9714 -97.779 -2.9714 2.9714 1.09 0.000952849 0.000872534 0.0630015 0.057697 46 1687 48 6.95648e+06 289514 828058. 2865.25 3.72 0.308167 0.275126 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.34 0.09 0.32 -1 -1 0.34 0.0411006 0.0367651 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 2.03 1154 14782 4940 8104 1738 56.5 MiB 0.25 0.00 6.12641 -181.225 -6.12641 6.12641 1.11 0.00141502 0.00129921 0.128282 0.117906 46 2972 48 6.95648e+06 217135 828058. 2865.25 6.30 0.490515 0.441577 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0368575 0.0329855 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.17 17800 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 17.7 MiB 1.47 717 11799 3733 5850 2216 56.3 MiB 0.15 0.00 4.62806 -129.887 -4.62806 4.62806 1.09 0.00114264 0.0010465 0.073278 0.0671131 40 2137 23 6.95648e+06 332941 706193. 2443.58 2.87 0.315154 0.282642 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.049413 0.0444819 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.9 MiB 0.32 514 10509 3980 5034 1495 55.5 MiB 0.11 0.00 2.96656 -92.2738 -2.96656 2.96656 1.09 0.000839728 0.000770092 0.0569363 0.0522768 44 1513 24 6.95648e+06 188184 787024. 2723.27 2.53 0.243606 0.217028 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.33 0.06 0.32 -1 -1 0.33 0.0280207 0.0251461 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30180 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 17.3 MiB 0.59 1076 14908 4738 8798 1372 56.0 MiB 0.20 0.00 4.96917 -138.118 -4.96917 4.96917 1.08 0.00118859 0.00108967 0.0941008 0.0863564 38 3145 48 6.95648e+06 347416 678818. 2348.85 9.35 0.3966 0.35614 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0500354 0.0448764 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.16 17084 1 0.03 -1 -1 30068 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 17.2 MiB 0.91 492 11034 4564 6063 407 55.8 MiB 0.12 0.00 2.9972 -99.2597 -2.9972 2.9972 1.08 0.000889359 0.000815228 0.0615557 0.0564612 40 1961 39 6.95648e+06 202660 706193. 2443.58 2.55 0.267168 0.238428 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.32 0.11 0.29 -1 -1 0.32 0.0390808 0.0350407 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30300 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 16.9 MiB 0.98 565 8867 3613 4967 287 55.6 MiB 0.11 0.00 3.45473 -106.167 -3.45473 3.45473 1.08 0.000952037 0.000872943 0.0523177 0.0479965 38 1930 30 6.95648e+06 246087 678818. 2348.85 4.20 0.264702 0.236131 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0367562 0.0329526 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30384 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 17.6 MiB 1.59 851 11487 4862 6149 476 56.2 MiB 0.17 0.00 3.95502 -124.066 -3.95502 3.95502 1.08 0.00115529 0.00105895 0.0850264 0.0780198 44 2861 40 6.95648e+06 231611 787024. 2723.27 3.89 0.365854 0.328152 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0507129 0.04563 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 17.4 MiB 1.30 719 14528 6712 7344 472 56.0 MiB 0.19 0.00 4.55468 -132.882 -4.55468 4.55468 1.09 0.00118145 0.00108321 0.103204 0.094637 44 2547 35 6.95648e+06 231611 787024. 2723.27 2.98 0.377995 0.339662 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.35 0.12 0.29 -1 -1 0.35 0.0536639 0.0482979 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30040 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 17.5 MiB 1.85 751 11200 4198 5153 1849 56.1 MiB 0.16 0.00 4.43749 -136.856 -4.43749 4.43749 1.09 0.00116637 0.00107008 0.0819913 0.0752454 46 2439 25 6.95648e+06 202660 828058. 2865.25 3.41 0.340414 0.305498 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0494745 0.044589 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17552 1 0.03 -1 -1 30344 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 17.3 MiB 2.90 640 8909 3664 5023 222 55.8 MiB 0.12 0.00 4.07418 -127.444 -4.07418 4.07418 1.10 0.000948218 0.000868919 0.0574649 0.0527132 40 2228 26 6.95648e+06 144757 706193. 2443.58 3.25 0.264433 0.236213 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.038515 0.0345382 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30540 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 17.1 MiB 2.11 607 11925 5002 6435 488 55.8 MiB 0.15 0.00 3.79972 -120.636 -3.79972 3.79972 1.09 0.00104737 0.000959875 0.0819924 0.0751431 48 1984 29 6.95648e+06 173708 865456. 2994.66 2.86 0.312881 0.28 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.35 0.11 0.36 -1 -1 0.35 0.0462916 0.0415618 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30460 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 17.5 MiB 0.90 673 11064 3726 5225 2113 56.0 MiB 0.14 0.00 3.0162 -94.6102 -3.0162 3.0162 1.09 0.00108601 0.000994778 0.0686572 0.0629635 38 2318 31 6.95648e+06 318465 678818. 2348.85 4.24 0.31451 0.281569 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.31 0.11 0.27 -1 -1 0.31 0.0474996 0.0425826 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17496 1 0.03 -1 -1 30524 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 0.66 661 10813 4387 5735 691 55.9 MiB 0.12 0.00 3.6526 -99.519 -3.6526 3.6526 1.10 0.000958058 0.000877646 0.0562243 0.0515781 42 1918 35 6.95648e+06 405319 744469. 2576.02 3.17 0.284857 0.253828 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0372544 0.0333826 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30520 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.90 539 10769 4210 5259 1300 56.0 MiB 0.13 0.00 3.44073 -108.225 -3.44073 3.44073 1.10 0.00103694 0.000949481 0.075061 0.0688106 48 1688 34 6.95648e+06 173708 865456. 2994.66 3.14 0.316659 0.283163 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0419016 0.0375633 60 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 17.3 MiB 1.73 645 12715 5333 6940 442 55.9 MiB 0.16 0.00 3.42769 -121.093 -3.42769 3.42769 1.10 0.00108629 0.000994324 0.0905067 0.082957 50 2241 50 6.95648e+06 159232 902133. 3121.57 4.05 0.36932 0.3307 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.35 0.10 0.35 -1 -1 0.35 0.0411326 0.0370325 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.13 17120 1 0.03 -1 -1 30388 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.3 MiB 0.43 742 11799 3162 6813 1824 55.8 MiB 0.15 0.00 4.51778 -120.862 -4.51778 4.51778 1.09 0.00103797 0.000951041 0.0670716 0.0616054 38 2757 47 6.95648e+06 347416 678818. 2348.85 6.22 0.329611 0.295313 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.045233 0.0406608 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30476 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 17.3 MiB 1.90 848 13606 5964 7217 425 56.0 MiB 0.19 0.00 4.62557 -150.036 -4.62557 4.62557 1.08 0.00117698 0.00107934 0.101642 0.0932917 48 2886 26 6.95648e+06 188184 865456. 2994.66 4.47 0.358922 0.322925 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0498587 0.0449603 82 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 17.3 MiB 1.67 797 15688 5451 7649 2588 56.0 MiB 0.21 0.00 4.33979 -134.933 -4.33979 4.33979 1.09 0.00124795 0.00114332 0.104228 0.0955471 46 2516 45 6.95648e+06 347416 828058. 2865.25 6.33 0.424445 0.381151 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.36 0.13 0.32 -1 -1 0.36 0.0537986 0.0485615 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30300 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 17.5 MiB 1.15 866 12951 5370 7312 269 56.1 MiB 0.19 0.00 4.06852 -135.722 -4.06852 4.06852 1.02 0.00125666 0.00115161 0.0889324 0.0815933 46 2675 25 6.95648e+06 332941 828058. 2865.25 4.01 0.361646 0.325031 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590119 0.0531668 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 17.0 MiB 0.99 535 10769 4485 5866 418 55.6 MiB 0.13 0.00 3.76076 -107.124 -3.76076 3.76076 1.19 0.00094939 0.000871748 0.0683672 0.0627931 40 1903 31 6.95648e+06 173708 706193. 2443.58 2.64 0.284374 0.254344 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.035741 0.0320169 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30420 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 17.4 MiB 0.98 646 9676 4013 5115 548 56.1 MiB 0.14 0.00 4.36203 -132.758 -4.36203 4.36203 1.11 0.00115283 0.00107924 0.0766215 0.0702875 48 2052 23 6.95648e+06 202660 865456. 2994.66 3.24 0.346777 0.311679 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.053888 0.0485189 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17516 1 0.03 -1 -1 30300 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 17.4 MiB 1.70 811 10204 3614 5065 1525 56.0 MiB 0.15 0.00 4.885 -145.205 -4.885 4.885 1.09 0.0011462 0.00105137 0.074227 0.068194 48 2507 26 6.95648e+06 202660 865456. 2994.66 4.15 0.327154 0.293712 28354 207349 -1 2034 21 1699 2745 250883 55251 4.29192 4.29192 -147.488 -4.29192 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0482482 0.0435022 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30384 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 2.03 840 10509 4398 5789 322 56.0 MiB 0.15 0.00 5.54805 -153.523 -5.54805 5.54805 1.12 0.00113343 0.00103975 0.0765039 0.0702187 40 2695 24 6.95648e+06 202660 706193. 2443.58 4.99 0.32664 0.293133 26914 176310 -1 2048 21 1310 1986 181257 39768 4.92101 4.92101 -156.505 -4.92101 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0475739 0.042824 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17508 1 0.03 -1 -1 30376 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 17.5 MiB 1.76 981 8543 2209 4916 1418 56.1 MiB 0.12 0.00 4.87546 -153.661 -4.87546 4.87546 1.10 0.00120241 0.00110282 0.0603805 0.0554264 38 2411 22 6.95648e+06 303989 678818. 2348.85 3.83 0.317556 0.284443 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0442546 0.039874 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 17.4 MiB 1.21 757 8390 3202 4298 890 56.0 MiB 0.13 0.00 4.41913 -136.437 -4.41913 4.41913 1.09 0.00119882 0.00109885 0.0650814 0.0597548 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.95 0.331842 0.297739 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.052834 0.0476342 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17636 1 0.04 -1 -1 30392 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 17.3 MiB 1.32 676 7412 2307 3688 1417 56.0 MiB 0.11 0.00 4.03938 -124.354 -4.03938 4.03938 1.08 0.00119631 0.00109615 0.0578445 0.0530584 40 1915 29 6.95648e+06 231611 706193. 2443.58 3.54 0.326431 0.292341 26914 176310 -1 1850 28 1578 2394 351685 123617 3.69672 3.69672 -129.056 -3.69672 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0639463 0.0573829 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17412 1 0.03 -1 -1 30376 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 17.1 MiB 0.80 565 8134 3323 4613 198 55.6 MiB 0.10 0.00 3.56099 -106.975 -3.56099 3.56099 1.09 0.000883987 0.000811205 0.0489428 0.0449373 38 2071 30 6.95648e+06 144757 678818. 2348.85 3.63 0.249504 0.222903 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0355494 0.0318485 53 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17852 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 17.6 MiB 3.39 780 14679 6171 7995 513 56.2 MiB 0.19 0.00 4.81946 -134.729 -4.81946 4.81946 1.10 0.00121332 0.00111195 0.0965315 0.0884873 52 2232 23 6.95648e+06 332941 926341. 3205.33 3.01 0.35837 0.321984 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.39 0.11 0.38 -1 -1 0.39 0.0550173 0.0495372 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17872 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 17.7 MiB 0.86 707 10672 3433 5510 1729 56.3 MiB 0.16 0.00 4.24958 -138.057 -4.24958 4.24958 1.09 0.00129493 0.00118778 0.087663 0.0804307 46 2101 39 6.95648e+06 188184 828058. 2865.25 3.80 0.402387 0.360858 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0523334 0.0472269 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17436 1 0.03 -1 -1 30168 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 17.0 MiB 1.50 678 11925 5137 6457 331 55.6 MiB 0.14 0.00 4.05037 -122.042 -4.05037 4.05037 1.09 0.000938878 0.000860386 0.072129 0.0661232 44 1982 25 6.95648e+06 159232 787024. 2723.27 2.43 0.25153 0.224728 27778 195446 -1 1574 22 1167 1476 132878 28622 3.52322 3.52322 -118.138 -3.52322 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0405339 0.0363221 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30400 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.8 MiB 1.00 478 11916 5026 6437 453 55.4 MiB 0.13 0.00 3.32523 -101.355 -3.32523 3.32523 1.09 0.000883415 0.000810612 0.0683721 0.0627105 44 1783 23 6.95648e+06 188184 787024. 2723.27 2.61 0.256569 0.229578 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0414969 0.0371061 57 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 17.5 MiB 1.60 850 12416 5241 6727 448 56.2 MiB 0.17 0.00 4.62707 -149.564 -4.62707 4.62707 1.11 0.00117809 0.00108082 0.0903788 0.0829801 46 2722 26 6.95648e+06 217135 828058. 2865.25 4.61 0.356704 0.320713 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.38 0.12 0.30 -1 -1 0.38 0.0502186 0.0452942 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 17.5 MiB 1.18 1128 10536 3281 5855 1400 56.1 MiB 0.15 0.00 4.81844 -154.124 -4.81844 4.81844 1.08 0.00116853 0.00107128 0.0774018 0.0709833 38 3024 27 6.95648e+06 202660 678818. 2348.85 5.51 0.342665 0.307099 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.29 0.18 0.27 -1 -1 0.29 0.0626994 0.0563686 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.15 17392 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.5 MiB 0.43 843 11456 4360 5763 1333 56.2 MiB 0.17 0.00 4.93982 -142.75 -4.93982 4.93982 1.09 0.00121246 0.00111341 0.0832551 0.0765576 46 2871 42 6.95648e+06 246087 828058. 2865.25 4.66 0.297255 0.266845 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0555244 0.0501586 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30040 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 17.6 MiB 0.95 630 11063 3050 5652 2361 56.1 MiB 0.14 0.00 3.41127 -97.5363 -3.41127 3.41127 1.11 0.00104576 0.000958059 0.068019 0.0624326 40 1835 26 6.95648e+06 303989 706193. 2443.58 2.62 0.296718 0.265495 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045772 0.0410814 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30636 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 17.1 MiB 0.46 487 8585 3718 4335 532 55.6 MiB 0.10 0.00 2.94405 -89.6154 -2.94405 2.94405 1.11 0.000876429 0.000803212 0.0519683 0.0476986 38 1494 30 6.95648e+06 202660 678818. 2348.85 2.58 0.246152 0.219112 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0379831 0.0339595 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17916 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 17.8 MiB 1.30 1018 15904 6884 8410 610 56.3 MiB 0.26 0.00 3.84665 -134.608 -3.84665 3.84665 1.14 0.00137228 0.00125846 0.131017 0.120335 50 3513 31 6.95648e+06 231611 902133. 3121.57 3.52 0.444971 0.401173 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.35 0.16 0.35 -1 -1 0.35 0.0623723 0.0562811 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30380 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 4.90 805 13026 5515 7018 493 55.9 MiB 0.19 0.00 5.43776 -152.039 -5.43776 5.43776 1.10 0.00118843 0.0010893 0.0967088 0.0887055 46 2740 36 6.95648e+06 217135 828058. 2865.25 5.49 0.377782 0.339252 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0545526 0.0491191 82 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30420 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 17.3 MiB 3.68 636 10029 4132 5585 312 55.8 MiB 0.13 0.00 3.67834 -124.027 -3.67834 3.67834 1.09 0.00107495 0.000984172 0.0713454 0.0653909 48 2185 28 6.95648e+06 159232 865456. 2994.66 3.72 0.289851 0.259043 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0417897 0.0375887 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17576 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 17.4 MiB 0.37 731 15206 6549 8090 567 55.9 MiB 0.19 0.00 4.25273 -121.678 -4.25273 4.25273 1.09 0.00110853 0.00101627 0.0921259 0.084481 48 2298 32 6.95648e+06 318465 865456. 2994.66 3.26 0.346878 0.311504 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0481356 0.0433031 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17700 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 0.99 751 14323 4212 7223 2888 56.1 MiB 0.18 0.00 4.42633 -128.985 -4.42633 4.42633 1.09 0.0012272 0.00112503 0.0938174 0.0860768 40 2622 38 6.95648e+06 361892 706193. 2443.58 3.93 0.38717 0.34791 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0518558 0.0467437 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30376 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 17.3 MiB 1.05 713 11034 4424 5642 968 55.8 MiB 0.14 0.00 3.35027 -102.373 -3.35027 3.35027 1.08 0.00107221 0.000982327 0.0745116 0.0683051 38 2733 50 6.95648e+06 231611 678818. 2348.85 6.13 0.367384 0.328765 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0487982 0.0437944 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17840 1 0.03 -1 -1 30472 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 17.6 MiB 1.56 907 11200 3286 6600 1314 56.2 MiB 0.17 0.00 4.64467 -151.435 -4.64467 4.64467 1.14 0.00118194 0.00108473 0.0832924 0.0765315 48 2706 42 6.95648e+06 202660 865456. 2994.66 4.93 0.372139 0.334416 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0544481 0.0491308 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 17.4 MiB 1.11 748 12542 5225 6709 608 56.1 MiB 0.17 0.00 4.47033 -145.191 -4.47033 4.47033 1.08 0.00125507 0.00115038 0.0920551 0.0844718 48 2531 41 6.95648e+06 260562 865456. 2994.66 3.80 0.393564 0.353799 28354 207349 -1 1938 24 1584 2112 216788 50249 4.07261 4.07261 -144.703 -4.07261 0 0 1.05005e+06 3633.38 0.36 0.14 0.35 -1 -1 0.36 0.0594679 0.0536043 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30284 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 17.1 MiB 3.98 466 10105 4186 5463 456 55.6 MiB 0.12 0.00 3.92822 -103.3 -3.92822 3.92822 0.95 0.000919452 0.000842416 0.0640136 0.0587391 36 1523 22 6.95648e+06 173708 648988. 2245.63 2.69 0.264377 0.23607 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.28 0.07 0.25 -1 -1 0.28 0.0298825 0.02687 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30364 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 17.1 MiB 1.19 606 9397 3361 4720 1316 55.8 MiB 0.12 0.00 3.68935 -126.523 -3.68935 3.68935 1.09 0.00101991 0.000933583 0.0636679 0.0583474 42 2317 35 6.95648e+06 159232 744469. 2576.02 2.99 0.301012 0.268162 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.32 0.10 0.30 -1 -1 0.32 0.0431345 0.038727 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17796 1 0.03 -1 -1 30368 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 17.3 MiB 0.91 743 11993 4026 5805 2162 55.8 MiB 0.16 0.00 4.14331 -121.523 -4.14331 4.14331 1.11 0.00111068 0.00101794 0.0742917 0.0682447 44 2597 32 6.95648e+06 332941 787024. 2723.27 3.96 0.328772 0.294755 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.34 0.10 0.31 -1 -1 0.34 0.0467542 0.0420978 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17264 1 0.03 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 17.0 MiB 1.49 616 10459 4329 5659 471 55.7 MiB 0.13 0.00 4.04737 -116.055 -4.04737 4.04737 1.09 0.000905324 0.000830727 0.0637632 0.0585107 42 2143 50 6.95648e+06 188184 744469. 2576.02 2.48 0.295414 0.263425 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0394326 0.0352998 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29984 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 16.9 MiB 1.46 561 11321 4813 6209 299 55.5 MiB 0.11 0.00 3.85356 -111.135 -3.85356 3.85356 1.05 0.000955912 0.000876077 0.0505085 0.0461373 40 1771 25 6.95648e+06 130281 706193. 2443.58 2.36 0.262839 0.234375 26914 176310 -1 1463 37 1552 2418 363039 142367 3.13687 3.13687 -111.746 -3.13687 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0644517 0.0574254 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30108 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 17.5 MiB 1.21 696 13719 4819 6392 2508 56.1 MiB 0.18 0.00 3.46983 -115.227 -3.46983 3.46983 1.10 0.00137426 0.00127119 0.0905152 0.0830154 44 2085 27 6.95648e+06 347416 787024. 2723.27 2.45 0.362565 0.325758 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0557661 0.050212 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30368 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 17.1 MiB 2.46 587 9081 3433 3891 1757 55.7 MiB 0.11 0.00 3.99537 -118.981 -3.99537 3.99537 1.08 0.000909838 0.000833664 0.0549144 0.0503463 44 2307 34 6.95648e+06 173708 787024. 2723.27 2.99 0.264166 0.235603 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.038077 0.0340616 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17592 1 0.03 -1 -1 30008 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 17.6 MiB 1.66 827 13505 5541 6681 1283 56.2 MiB 0.17 0.00 3.208 -113.036 -3.208 3.208 1.11 0.00114929 0.00105192 0.0854299 0.0783253 40 2180 23 6.95648e+06 318465 706193. 2443.58 3.14 0.329238 0.295539 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0503471 0.0452339 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30436 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 17.6 MiB 2.27 717 9706 3985 5340 381 56.2 MiB 0.14 0.00 3.995 -134.818 -3.995 3.995 1.09 0.00125359 0.00114777 0.076794 0.0703888 40 2180 49 6.95648e+06 217135 706193. 2443.58 3.39 0.403073 0.360898 26914 176310 -1 1785 21 1473 1992 159433 36664 3.82681 3.82681 -135.82 -3.82681 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0517146 0.0465312 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 1.29 546 10149 3579 4930 1640 55.8 MiB 0.13 0.00 2.9023 -96.8242 -2.9023 2.9023 1.10 0.00100016 0.00091422 0.0686568 0.0628641 46 1638 37 6.95648e+06 144757 828058. 2865.25 3.26 0.302543 0.270103 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.38 0.11 0.32 -1 -1 0.38 0.0394728 0.0347581 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17408 1 0.03 -1 -1 30424 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 17.2 MiB 1.42 688 11293 4712 6328 253 55.7 MiB 0.15 0.00 4.09973 -130.941 -4.09973 4.09973 1.08 0.000999036 0.000914508 0.0750596 0.0688391 46 2135 28 6.95648e+06 159232 828058. 2865.25 3.13 0.296164 0.265055 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0449834 0.0403061 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.17 17864 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 17.4 MiB 2.08 759 11034 4566 6063 405 56.0 MiB 0.15 0.00 4.18668 -129.57 -4.18668 4.18668 1.09 0.000964582 0.000873964 0.0748996 0.0687178 40 2605 27 6.95648e+06 202660 706193. 2443.58 4.44 0.318767 0.285771 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.33 0.18 0.26 -1 -1 0.33 0.0586306 0.0526466 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30208 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 17.5 MiB 1.27 716 10228 3612 4706 1910 56.0 MiB 0.13 0.00 4.16289 -113.847 -4.16289 4.16289 1.07 0.00107047 0.000980464 0.0646694 0.0593065 40 2239 28 6.95648e+06 303989 706193. 2443.58 3.01 0.304277 0.272348 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.30 0.11 0.26 -1 -1 0.30 0.0461976 0.0415766 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.21 17608 1 0.03 -1 -1 30388 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 17.7 MiB 1.49 846 13524 5903 7163 458 56.3 MiB 0.19 0.00 4.885 -157.826 -4.885 4.885 1.08 0.00127097 0.0011646 0.107309 0.0984621 56 2698 26 6.95648e+06 202660 973134. 3367.25 3.58 0.389281 0.350307 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.39 0.17 0.41 -1 -1 0.39 0.060377 0.0544023 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17104 1 0.02 -1 -1 30372 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 17.0 MiB 1.31 501 12076 4244 5318 2514 55.5 MiB 0.13 0.00 3.74884 -94.0057 -3.74884 3.74884 1.10 0.000833253 0.000764491 0.0658305 0.0604026 40 1910 34 6.95648e+06 188184 706193. 2443.58 2.89 0.261615 0.233375 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0351343 0.0313908 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 17.4 MiB 1.27 1008 14543 5389 7197 1957 56.1 MiB 0.20 0.00 3.70954 -138.278 -3.70954 3.70954 1.10 0.00130489 0.00119261 0.100288 0.091719 40 2412 20 6.95648e+06 361892 706193. 2443.58 3.48 0.367796 0.330629 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0499773 0.0451086 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 2.99 599 11389 4446 5401 1542 56.0 MiB 0.16 0.00 2.96105 -112.244 -2.96105 2.96105 1.10 0.00119149 0.00109045 0.0908164 0.0831828 38 1957 49 6.95648e+06 144757 678818. 2348.85 4.38 0.400802 0.358812 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0495094 0.044469 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 17.4 MiB 1.40 728 11993 4280 5583 2130 56.0 MiB 0.16 0.00 4.11943 -125.672 -4.11943 4.11943 1.11 0.00118551 0.00108614 0.0784337 0.0719637 44 2660 42 6.95648e+06 318465 787024. 2723.27 3.26 0.379425 0.340311 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0530541 0.0477175 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17632 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 1.89 1133 13599 5570 7048 981 56.2 MiB 0.22 0.00 6.01533 -177.28 -6.01533 6.01533 1.09 0.00133345 0.00122485 0.111045 0.102039 46 3137 40 6.95648e+06 217135 828058. 2865.25 6.65 0.427603 0.385023 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0584248 0.052825 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17644 1 0.02 -1 -1 30308 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 16.8 MiB 2.31 506 10409 4642 5419 348 55.5 MiB 0.11 0.00 2.68965 -94.6691 -2.68965 2.68965 1.08 0.000772212 0.000706239 0.0551067 0.0504455 38 1556 24 6.95648e+06 159232 678818. 2348.85 2.63 0.222396 0.197806 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.34 0.07 0.27 -1 -1 0.34 0.0300919 0.0268673 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30288 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 17.1 MiB 1.31 453 9649 4016 5181 452 55.7 MiB 0.12 0.00 3.70034 -111.62 -3.70034 3.70034 1.09 0.000974133 0.000892603 0.064559 0.0592084 46 1640 50 6.95648e+06 159232 828058. 2865.25 3.47 0.320463 0.286279 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0393906 0.0352997 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17380 1 0.03 -1 -1 30228 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 16.9 MiB 0.45 657 10304 4396 5657 251 55.7 MiB 0.13 0.00 3.0756 -108.291 -3.0756 3.0756 1.08 0.00100661 0.000922687 0.0696589 0.0638873 48 2011 23 6.95648e+06 144757 865456. 2994.66 3.54 0.285065 0.255035 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.35 0.12 0.34 -1 -1 0.35 0.0462545 0.0414312 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17428 1 0.03 -1 -1 30176 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 17.0 MiB 0.45 433 7975 3255 4078 642 55.5 MiB 0.08 0.00 3.29759 -76.2304 -3.29759 3.29759 1.13 0.000753625 0.000689958 0.0395875 0.0362594 38 1530 37 6.95648e+06 260562 678818. 2348.85 3.04 0.217404 0.192931 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0336915 0.0300313 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30436 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 17.5 MiB 1.82 736 10796 3697 5176 1923 56.0 MiB 0.16 0.00 3.75962 -125.032 -3.75962 3.75962 1.01 0.0012117 0.00110948 0.0854433 0.0783007 46 3469 47 6.95648e+06 173708 828058. 2865.25 8.41 0.398627 0.357097 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0617987 0.0555502 73 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30268 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 17.6 MiB 1.28 761 10744 4472 5806 466 56.2 MiB 0.16 0.00 4.07648 -139.886 -4.07648 4.07648 1.14 0.00129514 0.00118517 0.0843506 0.0773215 40 2524 30 6.95648e+06 246087 706193. 2443.58 4.26 0.380393 0.341417 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.06087 0.0548349 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 820 12416 4576 5562 2278 55.8 MiB 0.17 0.00 5.01635 -146.768 -5.01635 5.01635 1.09 0.00116874 0.00107166 0.0893847 0.0819985 46 2906 37 6.99608e+06 220735 828058. 2865.25 5.17 0.375269 0.336895 28066 200906 -1 1988 21 1560 2181 170932 41761 4.40451 4.40451 -147.033 -4.40451 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0495774 0.0446773 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30312 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 1.32 962 11233 3707 5934 1592 55.8 MiB 0.18 0.00 5.03284 -151.156 -5.03284 5.03284 1.08 0.00119035 0.00109136 0.0840458 0.0771552 48 2930 36 6.99608e+06 250167 865456. 2994.66 4.23 0.371377 0.33346 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0500101 0.045115 99 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.10 17908 1 0.03 -1 -1 30280 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 17.4 MiB 0.72 839 12196 5162 6681 353 55.8 MiB 0.15 0.00 3.55379 -113.123 -3.55379 3.55379 1.09 0.00102541 0.000940676 0.0783886 0.0718986 42 2585 35 6.99608e+06 206020 744469. 2576.02 3.52 0.321558 0.287606 27202 183097 -1 1882 23 1419 1986 154978 35763 3.65286 3.65286 -116.181 -3.65286 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0461369 0.0413714 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30280 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 17.2 MiB 1.19 700 12302 4830 6041 1431 55.6 MiB 0.16 0.00 4.05128 -116.185 -4.05128 4.05128 1.11 0.00105042 0.000963429 0.0823621 0.075584 44 2703 50 6.99608e+06 235451 787024. 2723.27 3.28 0.358573 0.320864 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.29 0.05 0.17 -1 -1 0.29 0.0191014 0.017026 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 903 10204 4241 5732 231 55.8 MiB 0.15 0.00 4.44731 -141.413 -4.44731 4.44731 1.11 0.00114741 0.0010527 0.0740626 0.0680264 40 3203 32 6.99608e+06 206020 706193. 2443.58 5.31 0.333689 0.299309 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0569935 0.0512208 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17936 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 17.4 MiB 2.68 903 12506 4545 6575 1386 56.2 MiB 0.18 0.00 3.38924 -119.322 -3.38924 3.38924 1.10 0.00121274 0.00111211 0.0901919 0.0827309 50 2568 40 6.99608e+06 250167 902133. 3121.57 4.03 0.384621 0.34519 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0472071 0.0426398 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30588 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 1.38 527 10769 4406 5481 882 55.4 MiB 0.13 0.00 3.89582 -110.808 -3.89582 3.89582 1.12 0.000891094 0.000817424 0.0640821 0.0587866 36 2292 38 6.99608e+06 220735 648988. 2245.63 4.63 0.281518 0.250891 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0370772 0.0331809 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30240 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.9 MiB 0.33 664 11203 3028 6067 2108 55.5 MiB 0.13 0.00 2.75465 -88.1636 -2.75465 2.75465 1.11 0.000966959 0.000886878 0.0586947 0.0538701 40 2155 26 6.99608e+06 367892 706193. 2443.58 3.38 0.265321 0.237213 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0388002 0.0347929 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30200 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 17.0 MiB 0.95 886 12302 5141 6872 289 55.6 MiB 0.16 0.00 3.35914 -124.887 -3.35914 3.35914 0.98 0.00103421 0.000947269 0.0810853 0.0742738 38 2606 25 6.99608e+06 206020 678818. 2348.85 5.03 0.311476 0.278693 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0500686 0.0448288 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30080 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 17.3 MiB 0.84 886 11650 3739 6142 1769 55.7 MiB 0.15 0.00 3.93292 -137.573 -3.93292 3.93292 1.09 0.00101657 0.000932692 0.0753531 0.0691511 40 2221 25 6.99608e+06 191304 706193. 2443.58 2.88 0.299312 0.268276 26914 176310 -1 1877 19 1373 1734 139655 29281 3.35756 3.35756 -128.359 -3.35756 0 0 926341. 3205.33 0.32 0.11 0.28 -1 -1 0.32 0.0445834 0.0403521 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17872 1 0.04 -1 -1 30364 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 17.5 MiB 0.62 675 11436 3956 5372 2108 56.0 MiB 0.14 0.00 3.86033 -123.728 -3.86033 3.86033 1.05 0.000992876 0.000909068 0.0739712 0.0677952 44 2557 34 6.99608e+06 206020 787024. 2723.27 3.19 0.286218 0.255536 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0450886 0.040335 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30076 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 17.0 MiB 0.67 784 8133 1910 6031 192 55.6 MiB 0.11 0.00 3.27288 -116.653 -3.27288 3.27288 1.09 0.000944101 0.000865525 0.0513454 0.0471193 38 2394 39 6.99608e+06 161872 678818. 2348.85 4.16 0.283576 0.252822 26626 170182 -1 1832 20 1203 1524 136412 27823 2.83937 2.83937 -113.586 -2.83937 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0381472 0.0341717 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 822 13937 5978 7482 477 55.8 MiB 0.20 0.00 3.95082 -133.749 -3.95082 3.95082 1.08 0.00115936 0.00106343 0.0989244 0.0908145 44 2826 40 6.99608e+06 220735 787024. 2723.27 3.30 0.384786 0.345725 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0511402 0.0461001 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 17.4 MiB 1.39 975 9706 2651 5494 1561 56.2 MiB 0.16 0.00 4.79397 -141.28 -4.79397 4.79397 1.09 0.00119637 0.00109755 0.0700813 0.0643681 40 3303 38 6.99608e+06 250167 706193. 2443.58 6.45 0.363303 0.325871 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0543763 0.0489406 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17400 1 0.02 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 16.8 MiB 2.53 630 8909 3655 4893 361 55.3 MiB 0.11 0.00 3.0564 -89.3526 -3.0564 3.0564 1.11 0.000862903 0.000790835 0.0534227 0.0489963 38 2055 28 6.99608e+06 191304 678818. 2348.85 3.40 0.246751 0.219611 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0346589 0.0310076 64 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 17.5 MiB 1.31 999 13840 5885 7630 325 56.1 MiB 0.20 0.00 3.63599 -124.523 -3.63599 3.63599 1.01 0.00121015 0.00110823 0.100624 0.0922221 42 3382 43 6.99608e+06 235451 744469. 2576.02 3.42 0.402264 0.361057 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.31 0.13 0.29 -1 -1 0.31 0.0523362 0.047154 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30232 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 17.3 MiB 0.75 791 13092 5076 6583 1433 55.9 MiB 0.18 0.00 4.34151 -134.806 -4.34151 4.34151 1.13 0.0011392 0.00104466 0.0916082 0.0841119 46 2501 32 6.99608e+06 220735 828058. 2865.25 3.88 0.35918 0.322505 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0423246 0.0381811 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 17.3 MiB 0.78 778 13261 3730 7601 1930 55.9 MiB 0.18 0.00 3.17504 -117.557 -3.17504 3.17504 1.18 0.00105468 0.00096568 0.0860526 0.0789544 50 2131 33 6.99608e+06 220735 902133. 3121.57 4.01 0.332075 0.29728 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.41 0.11 0.37 -1 -1 0.41 0.0453674 0.0407795 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.19 17408 1 0.02 -1 -1 30264 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 16.6 MiB 1.55 513 10949 4743 5895 311 55.2 MiB 0.11 0.00 2.33546 -88.3817 -2.33546 2.33546 1.09 0.000767063 0.000701638 0.0585085 0.0535523 40 1324 27 6.99608e+06 147157 706193. 2443.58 2.11 0.225516 0.200701 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.0346807 0.0308741 52 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17720 1 0.03 -1 -1 30356 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 17.1 MiB 1.97 843 8236 2227 5366 643 55.8 MiB 0.11 0.00 3.78247 -126.288 -3.78247 3.78247 1.08 0.000995929 0.000912087 0.0537636 0.0493085 38 2536 29 6.99608e+06 191304 678818. 2348.85 3.48 0.280087 0.250324 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0193745 0.0172233 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 17.3 MiB 1.29 802 15273 5455 7440 2378 55.8 MiB 0.20 0.00 3.98218 -132.203 -3.98218 3.98218 1.09 0.00115653 0.00105794 0.101521 0.0930889 44 2430 42 6.99608e+06 294314 787024. 2723.27 2.88 0.385563 0.346159 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0508699 0.04574 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30240 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 17.2 MiB 2.11 1225 15044 5236 8229 1579 55.9 MiB 0.22 0.00 4.6726 -146.803 -4.6726 4.6726 1.09 0.00121437 0.00111336 0.109981 0.100943 40 3256 42 6.99608e+06 235451 706193. 2443.58 6.70 0.407575 0.366227 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0533984 0.0481184 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.16 17608 1 0.02 -1 -1 30688 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 16.7 MiB 1.81 422 8539 3493 4523 523 55.3 MiB 0.09 0.00 2.7298 -77.3475 -2.7298 2.7298 1.09 0.000656141 0.000599667 0.0408472 0.0373821 38 1230 26 6.99608e+06 191304 678818. 2348.85 2.13 0.184104 0.16329 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0235006 0.02101 53 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30260 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 16.9 MiB 0.85 692 10050 3569 4878 1603 55.6 MiB 0.14 0.00 4.56174 -113.848 -4.56174 4.56174 1.18 0.00100624 0.000922884 0.0639242 0.058781 40 2097 25 6.99608e+06 220735 706193. 2443.58 3.02 0.286842 0.25746 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0456952 0.0410127 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.09 16932 1 0.03 -1 -1 30160 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.4 MiB 0.20 399 10055 4241 5582 232 54.9 MiB 0.09 0.00 2.06111 -67.7592 -2.06111 2.06111 1.08 0.000634934 0.000579192 0.0446507 0.0407579 36 1381 35 6.99608e+06 117725 648988. 2245.63 2.47 0.195011 0.172512 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.28 0.05 0.22 -1 -1 0.28 0.0236036 0.0210377 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17564 1 0.03 -1 -1 30172 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 17.0 MiB 1.10 805 13358 5696 7249 413 55.6 MiB 0.17 0.00 4.47086 -121.677 -4.47086 4.47086 1.08 0.00103395 0.000948559 0.0861858 0.0790514 38 2634 33 6.99608e+06 206020 678818. 2348.85 4.38 0.325438 0.29176 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.29 0.09 0.22 -1 -1 0.29 0.0385598 0.0347121 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.08 17060 1 0.04 -1 -1 30580 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.1 MiB 0.46 715 11617 3653 5870 2094 55.8 MiB 0.15 0.00 2.89821 -97.4108 -2.89821 2.89821 1.08 0.00104907 0.000963546 0.0686035 0.0630324 40 2334 43 6.99608e+06 309029 706193. 2443.58 3.24 0.327181 0.29323 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045317 0.0407505 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30240 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 17.4 MiB 1.45 800 6839 1729 4140 970 56.0 MiB 0.11 0.00 4.20669 -125.419 -4.20669 4.20669 1.09 0.00112839 0.00103503 0.0489158 0.0449162 46 2866 37 6.99608e+06 220735 828058. 2865.25 6.37 0.315661 0.282182 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590646 0.053085 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30240 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 17.1 MiB 2.15 688 11116 4644 6232 240 55.7 MiB 0.13 0.00 3.13575 -107.33 -3.13575 3.13575 1.09 0.000968622 0.00088708 0.0700065 0.0641887 40 2069 25 6.99608e+06 176588 706193. 2443.58 2.38 0.279098 0.249439 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.038049 0.0340981 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30148 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 16.7 MiB 1.29 579 8876 3271 4297 1308 55.4 MiB 0.10 0.00 3.70857 -107.816 -3.70857 3.70857 1.08 0.000900638 0.000825327 0.0524497 0.0480736 46 2274 40 6.99608e+06 206020 828058. 2865.25 4.83 0.278434 0.247977 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0333422 0.0298833 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 17.1 MiB 0.77 581 9540 3893 5214 433 55.7 MiB 0.12 0.00 3.25804 -101.918 -3.25804 3.25804 0.97 0.000898651 0.000822994 0.0545981 0.050083 40 1989 36 6.99608e+06 264882 706193. 2443.58 3.20 0.271878 0.242283 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0375429 0.0335645 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.12 17196 1 0.03 -1 -1 30416 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.1 MiB 0.35 677 11234 4696 6284 254 55.5 MiB 0.13 0.00 3.31833 -109.934 -3.31833 3.31833 1.09 0.00090616 0.000830501 0.0675607 0.0619478 38 2069 49 6.99608e+06 147157 678818. 2348.85 3.46 0.298149 0.266498 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0396016 0.0354334 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.17 17640 1 0.02 -1 -1 30160 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 17.0 MiB 0.84 656 7596 1857 5260 479 55.6 MiB 0.10 0.00 3.30918 -105.476 -3.30918 3.30918 1.11 0.00093345 0.000855632 0.0471981 0.0433134 36 2831 44 6.99608e+06 191304 648988. 2245.63 6.73 0.286798 0.255476 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0402396 0.0360169 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17500 1 0.03 -1 -1 30368 -1 -1 15 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 17.1 MiB 2.30 919 9036 2362 6094 580 55.5 MiB 0.12 0.00 2.93125 -106.214 -2.93125 2.93125 1.12 0.000971264 0.00089046 0.0573227 0.052576 38 2275 29 6.99608e+06 220735 678818. 2348.85 3.32 0.276748 0.246972 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0391056 0.0350672 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30436 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 1.12 980 13324 5630 7408 286 55.9 MiB 0.20 0.00 4.30703 -125.875 -4.30703 4.30703 1.11 0.00126727 0.00116613 0.102051 0.0938897 48 2769 27 6.99608e+06 235451 865456. 2994.66 3.52 0.38569 0.347942 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.35 0.13 0.35 -1 -1 0.35 0.0529057 0.0477849 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30224 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 17.7 MiB 1.43 1014 12683 4657 5804 2222 56.2 MiB 0.20 0.00 4.21676 -146.737 -4.21676 4.21676 1.08 0.00126951 0.00116301 0.0929641 0.0852688 40 3377 27 6.99608e+06 279598 706193. 2443.58 4.94 0.38451 0.34573 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.064636 0.0582408 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30088 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 16.7 MiB 1.17 880 9374 3265 4936 1173 55.4 MiB 0.12 0.00 3.62727 -120.557 -3.62727 3.62727 1.09 0.000952014 0.000872331 0.0602836 0.0553176 38 2274 42 6.99608e+06 161872 678818. 2348.85 3.26 0.293467 0.262042 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0400129 0.0358442 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30556 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 17.3 MiB 1.48 969 14528 6235 7667 626 56.0 MiB 0.21 0.00 3.54759 -121.928 -3.54759 3.54759 1.10 0.00120949 0.00111002 0.105977 0.0971821 44 3091 40 6.99608e+06 250167 787024. 2723.27 4.01 0.398127 0.357628 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0562695 0.0507761 99 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30392 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 17.6 MiB 1.49 989 9196 3129 4406 1661 56.2 MiB 0.15 0.00 5.24281 -163.942 -5.24281 5.24281 1.10 0.00123061 0.00112598 0.0699073 0.0641599 46 3107 34 6.99608e+06 250167 828058. 2865.25 5.20 0.361576 0.324569 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0581667 0.0523891 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 17.8 MiB 2.95 930 9881 4037 5524 320 56.2 MiB 0.16 0.00 5.08213 -159.731 -5.08213 5.08213 1.11 0.00124533 0.00114165 0.0743497 0.0682635 44 3191 49 6.99608e+06 264882 787024. 2723.27 4.39 0.400266 0.359057 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.054301 0.0489417 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30400 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 17.5 MiB 1.87 879 13768 5339 6393 2036 56.1 MiB 0.19 0.00 3.89582 -126.245 -3.89582 3.89582 1.09 0.00116363 0.00106779 0.097574 0.0895015 48 2742 24 6.99608e+06 235451 865456. 2994.66 3.61 0.360141 0.323779 28354 207349 -1 2238 24 1769 2292 241247 52052 3.50102 3.50102 -127.38 -3.50102 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0549586 0.0494918 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17288 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 16.9 MiB 0.96 818 11864 4957 6528 379 55.6 MiB 0.15 0.00 3.99218 -112.33 -3.99218 3.99218 1.09 0.00100284 0.000919504 0.0744651 0.0683375 40 2655 45 6.99608e+06 206020 706193. 2443.58 4.61 0.334533 0.299129 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.33 0.12 0.28 -1 -1 0.33 0.0442328 0.0397214 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18176 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 18.1 MiB 1.28 1337 8083 1871 5905 307 56.4 MiB 0.17 0.00 5.02 -170.696 -5.02 5.02 1.10 0.00147197 0.00134948 0.0684711 0.0629272 50 3572 29 6.99608e+06 309029 902133. 3121.57 3.49 0.402616 0.361669 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.37 0.16 0.36 -1 -1 0.37 0.0589189 0.0533183 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30188 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 16.9 MiB 2.79 589 8599 2844 4344 1411 55.4 MiB 0.10 0.00 3.01 -97.4254 -3.01 3.01 1.10 0.000898885 0.000823275 0.0525554 0.0481861 40 1560 21 6.99608e+06 161872 706193. 2443.58 2.67 0.243312 0.216867 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0394468 0.0352892 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30104 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 17.4 MiB 0.68 792 13524 5096 6588 1840 55.9 MiB 0.18 0.00 4.60267 -142.66 -4.60267 4.60267 1.08 0.00113429 0.00104082 0.0957584 0.0878898 52 2817 39 6.99608e+06 220735 926341. 3205.33 3.68 0.368232 0.330874 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0474881 0.0426995 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30212 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.28 1020 12416 4555 6119 1742 55.8 MiB 0.19 0.00 3.83208 -127.177 -3.83208 3.83208 1.08 0.00115347 0.00105825 0.0882807 0.080984 42 3450 36 6.99608e+06 220735 744469. 2576.02 3.76 0.361526 0.324612 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0445603 0.0401272 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.1 MiB 0.79 673 10228 2970 5232 2026 55.8 MiB 0.13 0.00 4.31309 -118.378 -4.31309 4.31309 1.11 0.00103263 0.000945688 0.0646994 0.0593547 40 2459 37 6.99608e+06 235451 706193. 2443.58 4.59 0.316072 0.283014 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0465719 0.0418284 68 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 17.4 MiB 1.25 915 11571 4863 6343 365 56.0 MiB 0.17 0.00 4.31005 -133.816 -4.31005 4.31005 1.12 0.00117065 0.00107413 0.0833371 0.076458 40 2850 30 6.99608e+06 220735 706193. 2443.58 3.73 0.348914 0.313136 26914 176310 -1 2174 25 1722 2282 317601 125270 3.58916 3.58916 -127.554 -3.58916 0 0 926341. 3205.33 0.27 0.10 0.15 -1 -1 0.27 0.0242714 0.0216238 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30356 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1099 13430 4920 6010 2500 55.8 MiB 0.19 0.00 3.65969 -129.38 -3.65969 3.65969 1.08 0.00119077 0.00109183 0.0980635 0.0899782 40 2995 22 6.99608e+06 220735 706193. 2443.58 3.90 0.361533 0.325046 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.30 0.34 0.28 -1 -1 0.30 0.0925555 0.0829523 92 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 17.6 MiB 2.17 1101 15216 5672 7066 2478 56.2 MiB 0.22 0.00 3.74401 -128.073 -3.74401 3.74401 1.08 0.00124125 0.00113795 0.114521 0.10502 38 3558 41 6.99608e+06 235451 678818. 2348.85 6.14 0.43815 0.393693 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0461544 0.041674 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17568 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 17.1 MiB 0.78 743 11034 4121 5253 1660 55.5 MiB 0.07 0.00 4.35583 -118.93 -4.35583 4.35583 0.74 0.000391567 0.000353726 0.0279571 0.025339 40 2999 39 6.99608e+06 206020 706193. 2443.58 3.79 0.220861 0.195956 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0478928 0.043031 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 17.1 MiB 1.75 793 9042 2962 4450 1630 55.7 MiB 0.12 0.00 4.21168 -126.242 -4.21168 4.21168 1.09 0.00108983 0.00100023 0.0632309 0.0580535 42 3421 45 6.99608e+06 191304 744469. 2576.02 3.21 0.338366 0.303031 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.27 0.06 0.15 -1 -1 0.27 0.0195276 0.0174397 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30356 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 17.4 MiB 0.90 950 10726 4120 5384 1222 56.1 MiB 0.16 0.00 4.31211 -136.261 -4.31211 4.31211 1.09 0.00121362 0.00111291 0.0804401 0.0737893 48 3520 36 6.99608e+06 235451 865456. 2994.66 5.83 0.375288 0.33705 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0828325 0.0742838 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 17.7 MiB 1.01 977 12980 5460 6998 522 56.2 MiB 0.21 0.00 3.94476 -129.858 -3.94476 3.94476 1.09 0.00124987 0.00114117 0.106732 0.097806 54 3499 42 6.99608e+06 235451 949917. 3286.91 4.59 0.411103 0.36916 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.38 0.15 0.39 -1 -1 0.38 0.0546679 0.0493078 104 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30012 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 0.61 645 10769 4489 5977 303 55.2 MiB 0.11 0.00 3.21628 -99.3334 -3.21628 3.21628 1.07 0.000538873 0.000484347 0.0570639 0.0521292 38 1991 25 6.99608e+06 147157 678818. 2348.85 3.46 0.256381 0.228311 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0366281 0.0327473 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17696 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 17.2 MiB 0.83 827 10726 4440 5997 289 55.8 MiB 0.15 0.00 4.06528 -146.791 -4.06528 4.06528 1.08 0.00111555 0.00102283 0.0739167 0.0678225 46 2656 31 6.99608e+06 220735 828058. 2865.25 3.65 0.327663 0.293158 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0446152 0.0400859 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 17.5 MiB 0.99 950 12808 5316 6896 596 56.2 MiB 0.19 0.00 4.80548 -149.393 -4.80548 4.80548 1.08 0.00129994 0.0011944 0.100511 0.0923199 50 3454 27 6.99608e+06 235451 902133. 3121.57 4.94 0.399299 0.359396 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.35 0.21 0.36 -1 -1 0.35 0.0736703 0.0664168 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 17.5 MiB 0.62 849 13599 4722 6429 2448 56.1 MiB 0.19 0.00 4.35389 -139.539 -4.35389 4.35389 1.10 0.0011492 0.00105445 0.0942326 0.0864396 38 2795 34 6.99608e+06 220735 678818. 2348.85 4.94 0.35892 0.322293 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0506264 0.0455936 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30268 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 16.8 MiB 1.23 640 11474 4735 6197 542 55.5 MiB 0.13 0.00 3.65345 -112.727 -3.65345 3.65345 1.10 0.000955561 0.000875764 0.0639956 0.0586762 48 1940 24 6.99608e+06 294314 865456. 2994.66 4.21 0.247241 0.220878 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0366172 0.0327963 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.14 17784 1 0.03 -1 -1 30344 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 17.6 MiB 1.59 1528 15924 5227 8931 1766 56.4 MiB 0.25 0.00 6.09323 -187.636 -6.09323 6.09323 1.09 0.00138279 0.00126636 0.129836 0.119254 40 4257 42 6.99608e+06 264882 706193. 2443.58 7.75 0.481012 0.432823 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.30 0.20 0.28 -1 -1 0.30 0.0641215 0.0578373 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 0.63 768 13524 5053 6623 1848 56.0 MiB 0.18 0.00 4.76624 -142.397 -4.76624 4.76624 1.09 0.00114551 0.00104876 0.0970901 0.0890131 46 2785 27 6.99608e+06 206020 828058. 2865.25 4.45 0.347422 0.312002 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0470707 0.042489 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.14 17140 1 0.03 -1 -1 30344 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.6 MiB 0.25 516 10672 4080 5320 1272 55.3 MiB 0.12 0.00 2.96036 -91.6204 -2.96036 2.96036 1.11 0.000839607 0.000769499 0.0577388 0.0530075 40 1546 38 6.99608e+06 191304 706193. 2443.58 3.13 0.256129 0.228307 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.30 0.07 0.28 -1 -1 0.30 0.0301785 0.0269545 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.18 17828 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 17.4 MiB 1.22 903 15560 6646 7056 1858 55.9 MiB 0.20 0.00 4.75332 -131.249 -4.75332 4.75332 1.09 0.00118571 0.0010876 0.11038 0.101283 48 2982 46 6.99608e+06 235451 865456. 2994.66 5.22 0.41691 0.375047 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0530848 0.0478312 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30220 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.8 MiB 0.81 493 9540 2740 5276 1524 55.3 MiB 0.11 0.00 2.966 -97.1273 -2.966 2.966 1.08 0.000889742 0.000815883 0.0535904 0.049189 38 1851 39 6.99608e+06 206020 678818. 2348.85 3.35 0.26619 0.237492 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0393354 0.0350643 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17384 1 0.03 -1 -1 30344 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 16.8 MiB 0.60 768 9081 3737 5047 297 55.5 MiB 0.12 0.00 3.80347 -118.428 -3.80347 3.80347 1.08 0.000953003 0.000873799 0.0575279 0.0528044 38 2446 44 6.99608e+06 191304 678818. 2348.85 4.64 0.297439 0.265436 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.34 0.11 0.26 -1 -1 0.34 0.041202 0.0369383 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30492 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 17.4 MiB 1.66 956 12416 5112 6468 836 56.1 MiB 0.18 0.00 4.12666 -129.088 -4.12666 4.12666 1.08 0.00116004 0.00106413 0.0884212 0.0811378 38 3346 46 6.99608e+06 264882 678818. 2348.85 6.42 0.384561 0.344954 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0508516 0.0457415 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 974 13599 5339 6861 1399 56.0 MiB 0.20 0.00 4.25698 -140.266 -4.25698 4.25698 1.10 0.00118401 0.00108566 0.098286 0.0901365 38 3070 41 6.99608e+06 220735 678818. 2348.85 4.97 0.389968 0.349655 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0533935 0.0480747 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30124 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.99 1087 13768 5458 5698 2612 55.9 MiB 0.20 0.00 4.58577 -147.33 -4.58577 4.58577 1.10 0.00116326 0.00106679 0.0985759 0.0904356 38 3125 30 6.99608e+06 220735 678818. 2348.85 5.79 0.370553 0.33291 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.32 0.12 0.27 -1 -1 0.32 0.0462991 0.041794 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17436 1 0.03 -1 -1 30328 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 17.0 MiB 1.91 854 11609 4663 6043 903 55.7 MiB 0.15 0.00 3.95082 -130.122 -3.95082 3.95082 1.09 0.000955318 0.000875918 0.0727408 0.0667669 38 2338 24 6.99608e+06 161872 678818. 2348.85 3.12 0.280097 0.25018 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0427938 0.0383202 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17704 1 0.03 -1 -1 30392 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 0.92 785 11813 4965 6422 426 55.7 MiB 0.16 0.00 3.70143 -122.026 -3.70143 3.70143 1.12 0.00104281 0.000955211 0.0785815 0.0719896 46 2466 44 6.99608e+06 206020 828058. 2865.25 3.75 0.336515 0.301065 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0488484 0.0437919 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.12 17856 1 0.03 -1 -1 30416 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 17.2 MiB 1.19 809 10756 2943 5618 2195 55.8 MiB 0.17 0.00 3.4598 -111.751 -3.4598 3.4598 1.08 0.00108395 0.00099328 0.0796534 0.0731504 46 2326 24 6.99608e+06 279598 828058. 2865.25 3.66 0.318008 0.285187 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0455529 0.0409493 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.21 17240 1 0.03 -1 -1 30396 -1 -1 17 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 17.0 MiB 0.49 678 13280 5850 6635 795 55.7 MiB 0.15 0.00 3.68935 -104.602 -3.68935 3.68935 0.98 0.000961613 0.000881162 0.0804875 0.0737777 42 2430 50 6.99608e+06 250167 744469. 2576.02 3.68 0.331449 0.29666 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0400287 0.0358731 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30520 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 1.81 779 10020 4070 5537 413 55.8 MiB 0.13 0.00 4.56081 -142.799 -4.56081 4.56081 1.10 0.00103869 0.000951352 0.059057 0.0540045 44 2750 43 6.99608e+06 220735 787024. 2723.27 3.64 0.296024 0.264172 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0468184 0.0419785 87 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30124 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 17.4 MiB 0.91 988 11366 4377 5078 1911 56.0 MiB 0.16 0.00 3.4477 -126.272 -3.4477 3.4477 1.10 0.00109307 0.00100131 0.0777245 0.0712269 40 3223 42 6.99608e+06 206020 706193. 2443.58 5.29 0.345476 0.309076 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0456434 0.0409934 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30324 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.1 MiB 0.37 735 13335 5144 6746 1445 55.8 MiB 0.15 0.00 4.50448 -121.497 -4.50448 4.50448 1.08 0.00103849 0.000953856 0.0748994 0.068778 46 2320 24 6.99608e+06 353176 828058. 2865.25 4.35 0.297804 0.26726 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.33 0.10 0.34 -1 -1 0.33 0.0408576 0.0367638 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.21 17560 1 0.03 -1 -1 30376 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 17.5 MiB 1.82 849 9872 4071 5471 330 56.1 MiB 0.15 0.00 4.41391 -145.413 -4.41391 4.41391 1.09 0.00117874 0.00108122 0.0734314 0.0674222 44 3096 30 6.99608e+06 206020 787024. 2723.27 3.50 0.343449 0.308459 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0535794 0.0482711 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17760 1 0.02 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 17.5 MiB 0.80 1031 9706 3955 5323 428 56.0 MiB 0.15 0.00 5.10216 -163.017 -5.10216 5.10216 1.09 0.00125893 0.00115464 0.0733005 0.067189 48 3809 38 6.99608e+06 250167 865456. 2994.66 7.87 0.380737 0.341457 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.34 0.23 0.34 -1 -1 0.34 0.0671675 0.0603663 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1043 9881 4045 5563 273 56.1 MiB 0.16 0.00 4.39921 -147.12 -4.39921 4.39921 1.09 0.0012589 0.00115223 0.0746023 0.0683871 46 3556 37 6.99608e+06 250167 828058. 2865.25 4.15 0.378029 0.339153 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0548478 0.0494338 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.20 17552 1 0.03 -1 -1 30232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 16.8 MiB 0.74 639 8765 3407 4448 910 55.5 MiB 0.11 0.00 4.31695 -124.149 -4.31695 4.31695 1.10 0.000933175 0.000855983 0.0545339 0.0500269 42 2236 38 6.99608e+06 191304 744469. 2576.02 2.97 0.278657 0.248269 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0364435 0.0326764 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30396 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 919 12808 4622 5804 2382 56.0 MiB 0.17 0.00 5.00926 -154.589 -5.00926 5.00926 1.08 0.00122507 0.00112342 0.0947277 0.0869549 48 2897 47 6.99608e+06 264882 865456. 2994.66 3.64 0.407068 0.36543 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.35 0.16 0.33 -1 -1 0.35 0.0554031 0.0498851 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30356 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 17.3 MiB 1.09 773 12860 5275 6775 810 55.9 MiB 0.17 0.00 4.8046 -140.908 -4.8046 4.8046 1.09 0.0011492 0.00105436 0.0918723 0.0843511 48 2906 29 6.99608e+06 206020 865456. 2994.66 4.69 0.351843 0.31625 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.35 0.15 0.38 -1 -1 0.35 0.0499367 0.0450314 82 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.12 17820 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 17.4 MiB 1.18 794 10228 3166 5486 1576 55.9 MiB 0.15 0.00 5.19565 -143.212 -5.19565 5.19565 1.08 0.00107269 0.00100129 0.0703128 0.0644917 38 3224 38 6.99608e+06 250167 678818. 2348.85 7.81 0.3257 0.291578 26626 170182 -1 2195 21 1511 2171 195678 43019 4.59296 4.59296 -149.718 -4.59296 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0475509 0.0428174 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 17.7 MiB 1.93 966 13788 4937 6208 2643 56.2 MiB 0.19 0.00 4.24398 -133.079 -4.24398 4.24398 1.08 0.00120488 0.00110476 0.0968639 0.0888002 46 3311 48 6.99608e+06 294314 828058. 2865.25 6.66 0.414336 0.371955 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.34 0.13 0.34 -1 -1 0.34 0.0335121 0.0299482 108 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 17.3 MiB 1.57 1164 15481 5166 8845 1470 56.0 MiB 0.23 0.00 4.66597 -153.274 -4.66597 4.66597 1.08 0.00119684 0.00109838 0.10996 0.100807 40 3016 25 6.99608e+06 250167 706193. 2443.58 4.40 0.37075 0.33328 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0530467 0.0477654 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17816 1 0.03 -1 -1 30304 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 17.6 MiB 2.28 970 14431 6168 7633 630 56.3 MiB 0.22 0.00 3.80498 -123.528 -3.80498 3.80498 1.11 0.0012036 0.00110337 0.112571 0.103143 46 3095 47 6.99608e+06 294314 828058. 2865.25 3.96 0.415606 0.372966 28066 200906 -1 2327 21 1984 2580 225360 47479 3.58866 3.58866 -125.19 -3.58866 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0507945 0.0457176 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17104 1 0.02 -1 -1 30368 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 16.7 MiB 1.06 673 8289 1936 5635 718 55.4 MiB 0.10 0.00 3.54309 -104.459 -3.54309 3.54309 1.10 0.000892566 0.000819583 0.049922 0.045894 36 2073 30 6.99608e+06 147157 648988. 2245.63 2.78 0.242304 0.215929 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0392691 0.0350805 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30276 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 17.6 MiB 0.70 998 13731 5201 6084 2446 56.2 MiB 0.20 0.00 5.23946 -166.614 -5.23946 5.23946 1.09 0.00121697 0.0011155 0.0990516 0.0908448 46 3007 25 6.99608e+06 250167 828058. 2865.25 5.69 0.365056 0.328045 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.33 0.19 0.32 -1 -1 0.33 0.0531495 0.0479942 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 17.5 MiB 1.00 1023 11631 4065 5883 1683 56.1 MiB 0.18 0.00 4.8947 -165.145 -4.8947 4.8947 1.09 0.00128592 0.00117884 0.0892813 0.0818749 40 3825 35 6.99608e+06 250167 706193. 2443.58 6.65 0.401024 0.360313 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.054914 0.0495398 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30092 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 17.0 MiB 1.00 649 12083 5091 6584 408 55.6 MiB 0.14 0.00 3.80367 -112.996 -3.80367 3.80367 1.09 0.000930657 0.00085282 0.0738313 0.0677115 42 2423 39 6.99608e+06 161872 744469. 2576.02 3.42 0.303153 0.270915 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.31 0.11 0.27 -1 -1 0.31 0.0419107 0.037484 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17292 1 0.03 -1 -1 30384 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.9 MiB 0.45 500 9836 4038 5376 422 55.4 MiB 0.11 0.00 3.32523 -100.829 -3.32523 3.32523 1.08 0.000885941 0.000812117 0.0566718 0.0519228 44 1930 39 6.99608e+06 191304 787024. 2723.27 2.89 0.267666 0.238829 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0430079 0.0384468 56 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 868 11909 4701 5758 1450 55.8 MiB 0.16 0.00 4.58703 -149.04 -4.58703 4.58703 1.08 0.00116532 0.00106995 0.0856055 0.0786148 46 2684 28 6.99608e+06 220735 828058. 2865.25 3.00 0.34841 0.312978 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0670356 0.0601634 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30456 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 17.5 MiB 1.68 896 11571 3933 6047 1591 56.1 MiB 0.17 0.00 4.54977 -137.477 -4.54977 4.54977 1.10 0.00116652 0.00106935 0.0834157 0.076491 46 2917 48 6.99608e+06 220735 828058. 2865.25 4.41 0.371624 0.333019 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528339 0.0475556 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17396 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.4 MiB 0.41 847 13556 4796 7036 1724 55.9 MiB 0.21 0.00 4.71017 -139.049 -4.71017 4.71017 1.11 0.00121518 0.00111622 0.0977834 0.0898604 44 3122 48 6.99608e+06 250167 787024. 2723.27 3.96 0.418612 0.377132 27778 195446 -1 2155 23 1937 3243 335429 101756 4.32031 4.32031 -143.248 -4.32031 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0558999 0.0504369 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30100 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 17.1 MiB 1.12 742 9042 3157 4137 1748 55.7 MiB 0.11 0.00 3.64737 -104.512 -3.64737 3.64737 1.10 0.00104808 0.000961014 0.0604104 0.0554495 48 2323 27 6.99608e+06 235451 865456. 2994.66 3.14 0.29125 0.260335 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.35 0.12 0.35 -1 -1 0.35 0.0449195 0.0403499 86 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30600 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 16.7 MiB 0.95 490 9374 3097 4710 1567 55.2 MiB 0.11 0.00 3.44679 -100.328 -3.44679 3.44679 1.09 0.000875151 0.000802828 0.0559208 0.0513468 38 1628 40 6.99608e+06 220735 678818. 2348.85 4.09 0.25919 0.230799 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0378589 0.0338021 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 17848 1 0.03 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1154 16102 6967 8731 404 56.5 MiB 0.25 0.00 4.18254 -144.202 -4.18254 4.18254 1.10 0.00137198 0.00125841 0.128485 0.117915 46 4050 36 6.99608e+06 264882 828058. 2865.25 8.65 0.459332 0.413416 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0556495 0.0502866 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17660 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 17.4 MiB 1.73 1126 13496 4705 6380 2411 56.1 MiB 0.21 0.00 5.49463 -159.408 -5.49463 5.49463 1.09 0.00118907 0.00109019 0.0998072 0.0915973 38 3177 46 6.99608e+06 250167 678818. 2348.85 5.76 0.382061 0.34251 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.31 0.21 0.27 -1 -1 0.31 0.0598834 0.0539366 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 17.2 MiB 0.94 926 14354 6182 7861 311 55.8 MiB 0.19 0.00 4.28347 -151.804 -4.28347 4.28347 1.11 0.00107768 0.000986533 0.0966611 0.0885936 48 2248 21 6.99608e+06 206020 865456. 2994.66 2.81 0.321914 0.288895 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0416219 0.0374266 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.10 17700 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 17.2 MiB 0.72 1057 13599 5180 6238 2181 55.8 MiB 0.19 0.00 4.11318 -134.456 -4.11318 4.11318 1.08 0.00110373 0.00101267 0.0924332 0.0848494 38 2724 25 6.99608e+06 220735 678818. 2348.85 3.18 0.332038 0.29835 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0466711 0.042031 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 17.5 MiB 1.30 870 12120 4959 6494 667 56.4 MiB 0.18 0.00 4.09557 -123.875 -4.09557 4.09557 1.09 0.00123159 0.00112866 0.0909194 0.0834611 42 3474 41 6.99608e+06 250167 744469. 2576.02 3.55 0.393028 0.353328 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.31 0.13 0.30 -1 -1 0.31 0.0523314 0.0471581 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17920 1 0.03 -1 -1 30108 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 17.4 MiB 1.43 825 9205 3109 4150 1946 55.9 MiB 0.13 0.00 3.47679 -109.391 -3.47679 3.47679 1.09 0.00107633 0.000987094 0.0621826 0.0570589 46 2602 31 6.99608e+06 250167 828058. 2865.25 3.49 0.304786 0.272801 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0526117 0.0471799 88 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 17.2 MiB 0.85 918 10536 3621 5008 1907 55.9 MiB 0.16 0.00 4.39601 -144.18 -4.39601 4.39601 1.13 0.00118452 0.00108497 0.0781172 0.0715612 46 3353 30 6.99608e+06 206020 828058. 2865.25 4.76 0.352179 0.316075 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.054118 0.0487511 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 17.7 MiB 2.39 942 12292 4666 5756 1870 56.2 MiB 0.18 0.00 3.70017 -126.602 -3.70017 3.70017 1.10 0.00125919 0.00115361 0.0934224 0.0856285 48 3168 40 6.99608e+06 235451 865456. 2994.66 5.98 0.404778 0.363544 28354 207349 -1 2445 29 2504 3455 343966 87145 3.56046 3.56046 -132.854 -3.56046 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0710283 0.0639023 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30320 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 16.9 MiB 1.21 638 10503 3616 4659 2228 55.5 MiB 0.13 0.00 4.33189 -121.838 -4.33189 4.33189 1.09 0.000927905 0.000851584 0.0648271 0.0595629 38 1692 24 6.99608e+06 206020 678818. 2348.85 2.49 0.26199 0.234106 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0380205 0.0341076 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17796 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 17.4 MiB 2.02 733 10370 4308 5800 262 55.9 MiB 0.13 0.00 4.00228 -133.8 -4.00228 4.00228 1.09 0.00101858 0.000932807 0.0666996 0.0610919 44 2610 40 6.99608e+06 206020 787024. 2723.27 3.53 0.317338 0.283444 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.33 0.11 0.29 -1 -1 0.33 0.0443815 0.0398007 79 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 17.0 MiB 0.77 764 12362 5067 6494 801 55.6 MiB 0.17 0.00 4.07608 -123.99 -4.07608 4.07608 1.09 0.00110946 0.00101876 0.0861858 0.0791629 46 2867 29 6.99608e+06 220735 828058. 2865.25 4.68 0.334818 0.30076 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0524789 0.04718 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30548 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 16.9 MiB 0.93 586 8909 3659 4796 454 55.6 MiB 0.06 0.00 3.79267 -108.98 -3.79267 3.79267 0.77 0.000399758 0.000359848 0.0229846 0.0207815 44 2352 39 6.99608e+06 191304 787024. 2723.27 3.41 0.234547 0.207621 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0505404 0.0449289 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.14 17592 1 0.03 -1 -1 30052 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 16.8 MiB 0.80 860 12076 5115 6633 328 55.5 MiB 0.15 0.00 4.30315 -133.848 -4.30315 4.30315 1.09 0.000951116 0.000871914 0.0743711 0.0681943 38 2379 33 6.99608e+06 176588 678818. 2348.85 3.98 0.297084 0.265389 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0370042 0.033192 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 17.4 MiB 0.90 1156 13840 5407 6744 1689 56.0 MiB 0.20 0.00 4.42187 -150.582 -4.42187 4.42187 1.17 0.00122216 0.00112127 0.102214 0.093829 46 2902 21 6.99608e+06 250167 828058. 2865.25 3.31 0.361016 0.324858 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.39 0.16 0.33 -1 -1 0.39 0.0619373 0.0560201 101 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17376 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 16.9 MiB 0.78 820 12876 4559 5981 2336 55.5 MiB 0.16 0.00 3.74867 -118.743 -3.74867 3.74867 1.17 0.000910962 0.000835144 0.0756146 0.0693066 36 2421 43 6.99608e+06 191304 648988. 2245.63 4.79 0.303993 0.269994 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0371261 0.0332296 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30012 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 17.5 MiB 0.87 889 10726 4477 5918 331 56.1 MiB 0.16 0.00 3.49879 -116.053 -3.49879 3.49879 1.13 0.00115037 0.00105412 0.0796434 0.0731126 48 2372 28 6.99608e+06 220735 865456. 2994.66 3.07 0.338034 0.30323 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.36 0.09 0.35 -1 -1 0.36 0.0392533 0.0354419 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30296 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 17.8 MiB 2.48 1223 9263 3795 5242 226 56.4 MiB 0.15 0.00 4.74537 -163.238 -4.74537 4.74537 1.11 0.00125417 0.00115005 0.0681835 0.0625366 48 3333 47 6.99608e+06 294314 865456. 2994.66 5.58 0.396464 0.355619 28354 207349 -1 2908 35 3164 4392 767405 233701 4.54929 4.54929 -166.714 -4.54929 0 0 1.05005e+06 3633.38 0.35 0.32 0.34 -1 -1 0.35 0.0824277 0.0740056 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30276 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 17.4 MiB 1.76 727 10316 3968 5326 1022 56.0 MiB 0.13 0.00 3.38944 -114.889 -3.38944 3.38944 1.09 0.000997464 0.000913266 0.0676786 0.0620248 46 2548 48 6.99608e+06 176588 828058. 2865.25 5.13 0.331732 0.296218 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0417862 0.0374252 80 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17928 1 0.03 -1 -1 30264 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 16.9 MiB 0.61 695 11609 4409 5699 1501 55.5 MiB 0.15 0.00 3.88892 -124.254 -3.88892 3.88892 1.10 0.000987081 0.000902693 0.0769316 0.0704317 40 2563 29 6.99608e+06 161872 706193. 2443.58 5.21 0.297211 0.265854 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0384946 0.0345423 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17912 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 17.0 MiB 1.34 729 11034 3646 5163 2225 55.5 MiB 0.14 0.00 4.07043 -123.448 -4.07043 4.07043 1.09 0.00108049 0.000990694 0.0742129 0.0680555 46 2576 50 6.99608e+06 206020 828058. 2865.25 4.10 0.353364 0.316495 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.33 0.13 0.18 -1 -1 0.33 0.0615958 0.0552665 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17864 1 0.03 -1 -1 30284 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 807 9881 4044 5289 548 56.0 MiB 0.13 0.00 3.78147 -112.033 -3.78147 3.78147 1.09 0.00108217 0.000992776 0.0661805 0.0607682 40 2561 37 6.99608e+06 264882 706193. 2443.58 5.41 0.3207 0.286952 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0457208 0.0411192 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.13 17760 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 1189 13031 5003 6393 1635 56.3 MiB 0.20 0.00 5.55394 -180.701 -5.55394 5.55394 1.12 0.00127212 0.00116674 0.0984341 0.0903012 40 3527 35 6.99608e+06 250167 706193. 2443.58 7.46 0.403281 0.362397 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.32 0.20 0.31 -1 -1 0.32 0.0585156 0.0527671 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17312 1 0.02 -1 -1 30288 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.8 MiB 0.76 678 10796 4152 4483 2161 55.5 MiB 0.12 0.00 3.34663 -92.0539 -3.34663 3.34663 1.09 0.000841221 0.000771986 0.0589865 0.0541565 34 1899 26 6.99608e+06 191304 618332. 2139.56 2.24 0.241029 0.214659 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.23 0.06 0.13 -1 -1 0.23 0.0234027 0.020869 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 17.8 MiB 2.56 1002 14907 4915 7817 2175 56.4 MiB 0.23 0.00 4.76623 -160.299 -4.76623 4.76623 1.09 0.00131669 0.0012072 0.111141 0.101975 48 2884 23 6.99608e+06 294314 865456. 2994.66 3.20 0.363002 0.326434 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.35 0.14 0.35 -1 -1 0.35 0.0531467 0.048079 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1317 10744 3615 5258 1871 56.2 MiB 0.17 0.00 4.50112 -167.331 -4.50112 4.50112 1.15 0.00118175 0.00108182 0.0797715 0.0730389 40 3495 26 6.99608e+06 235451 706193. 2443.58 5.66 0.350325 0.313952 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0562211 0.0504752 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.18 17688 1 0.03 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 17.3 MiB 1.39 944 9712 3948 5370 394 55.9 MiB 0.14 0.00 3.79657 -123.64 -3.79657 3.79657 1.09 0.00117916 0.00108055 0.0713395 0.0654456 44 3075 49 6.99608e+06 220735 787024. 2723.27 4.43 0.373651 0.334874 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.0498724 0.044915 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 18164 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 17.8 MiB 0.99 1078 15796 7109 8306 381 56.2 MiB 0.25 0.00 5.81442 -170.312 -5.81442 5.81442 1.14 0.0013349 0.00122551 0.128856 0.118452 46 3303 43 6.99608e+06 220735 828058. 2865.25 6.11 0.46695 0.421288 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0518826 0.0470061 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17560 1 0.03 -1 -1 30144 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 16.5 MiB 0.63 501 9684 3375 4762 1547 55.2 MiB 0.10 0.00 2.78575 -96.9119 -2.78575 2.78575 1.10 0.000777844 0.000710183 0.0507912 0.0465029 38 1487 22 6.99608e+06 176588 678818. 2348.85 2.18 0.213982 0.19013 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0295263 0.0263302 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17536 1 0.03 -1 -1 30376 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 17.0 MiB 3.03 598 11756 4032 5894 1830 55.7 MiB 0.14 0.00 3.77712 -117.524 -3.77712 3.77712 1.10 0.000973616 0.000891919 0.0743298 0.0681435 38 1780 24 6.99608e+06 206020 678818. 2348.85 2.40 0.283102 0.253187 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.32 0.10 0.28 -1 -1 0.32 0.0415002 0.0372447 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 0.64 791 12331 4777 6250 1304 55.6 MiB 0.16 0.00 3.68644 -122.952 -3.68644 3.68644 1.10 0.00102425 0.000939221 0.0738034 0.0676842 44 2873 41 6.99608e+06 250167 787024. 2723.27 4.01 0.321045 0.287083 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0390802 0.0351075 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17528 1 0.03 -1 -1 30244 -1 -1 16 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 16.7 MiB 0.99 448 7369 2953 3764 652 55.2 MiB 0.08 0.00 3.31959 -76.8944 -3.31959 3.31959 1.09 0.000751374 0.000688187 0.0386094 0.0353884 38 1742 32 6.99608e+06 235451 678818. 2348.85 3.44 0.216971 0.192665 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0276883 0.0247549 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 17.8 MiB 2.71 1245 8306 2489 4423 1394 56.2 MiB 0.13 0.00 4.0386 -139.855 -4.0386 4.0386 1.09 0.00121825 0.00111214 0.0612642 0.0562223 48 3245 50 6.99608e+06 250167 865456. 2994.66 3.73 0.379117 0.339815 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0517423 0.0465789 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17780 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 17.8 MiB 2.24 1163 15568 6109 7919 1540 56.5 MiB 0.23 0.00 4.35051 -150.242 -4.35051 4.35051 1.09 0.00129454 0.00118664 0.116953 0.107238 40 3509 30 6.99608e+06 279598 706193. 2443.58 4.20 0.415186 0.373354 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.32 0.16 0.29 -1 -1 0.32 0.0574242 0.0518319 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.27 17628 14 0.25 -1 -1 32976 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 1276 8543 2090 5594 859 55.6 MiB 0.15 0.00 8.38905 -176.577 -8.38905 8.38905 1.10 0.00155867 0.00142984 0.0791495 0.0727134 36 3665 49 6.79088e+06 255968 648988. 2245.63 7.49 0.486414 0.43708 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0695637 0.0628718 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.29 17704 14 0.28 -1 -1 32900 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 17.1 MiB 2.13 1147 12331 4133 6053 2145 55.7 MiB 0.20 0.00 7.6097 -157.374 -7.6097 7.6097 1.09 0.00156214 0.00143244 0.115651 0.10595 34 3327 27 6.79088e+06 255968 618332. 2139.56 4.82 0.467533 0.420904 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0622332 0.0563932 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 3.04 1231 6383 1494 4487 402 55.7 MiB 0.11 0.00 6.81003 -148.008 -6.81003 6.81003 1.09 0.0015737 0.00144281 0.0604016 0.055419 36 3209 32 6.79088e+06 255968 648988. 2245.63 6.04 0.432831 0.388973 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0634192 0.0574451 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.25 17780 12 0.31 -1 -1 32780 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 16.8 MiB 1.03 1099 5293 1100 3885 308 55.4 MiB 0.10 0.00 7.28153 -143.815 -7.28153 7.28153 1.13 0.00148932 0.00135537 0.0498105 0.0457441 36 3357 33 6.79088e+06 323328 648988. 2245.63 5.20 0.427263 0.38429 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0654588 0.0592809 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.28 17916 13 0.25 -1 -1 32788 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1401 5756 1163 4305 288 55.8 MiB 0.11 0.00 8.2885 -175.09 -8.2885 8.2885 1.12 0.00172797 0.00158411 0.0577817 0.0530401 40 3602 29 6.79088e+06 296384 706193. 2443.58 3.45 0.455276 0.40923 26254 175826 -1 3419 16 1490 3850 301755 77078 7.51181 7.51181 -175.313 -7.51181 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0601393 0.054702 152 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.29 17704 13 0.27 -1 -1 32764 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 1243 11063 3086 5977 2000 55.6 MiB 0.19 0.00 7.40767 -155.099 -7.40767 7.40767 1.10 0.00165126 0.00151303 0.106851 0.0979258 38 3505 23 6.79088e+06 255968 678818. 2348.85 5.00 0.484157 0.436373 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640915 0.0581552 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.24 17316 12 0.19 -1 -1 32548 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 16.4 MiB 1.28 831 9024 2147 6104 773 55.1 MiB 0.13 0.00 7.03512 -124.15 -7.03512 7.03512 1.08 0.00127187 0.00116586 0.0697703 0.0640761 36 2328 49 6.79088e+06 282912 648988. 2245.63 3.58 0.396087 0.355753 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0611743 0.0552524 106 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17656 12 0.20 -1 -1 32640 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 16.7 MiB 2.52 997 12636 5258 7154 224 55.4 MiB 0.18 0.00 6.42294 -136.16 -6.42294 6.42294 1.09 0.00125975 0.00115363 0.096507 0.088426 44 2627 22 6.79088e+06 229024 787024. 2723.27 2.94 0.375068 0.33761 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0443719 0.0402357 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17760 12 0.17 -1 -1 32600 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 16.6 MiB 2.75 1116 6203 1235 4627 341 55.2 MiB 0.10 0.00 7.04997 -146.463 -7.04997 7.04997 1.09 0.00128457 0.00117408 0.0484196 0.0443338 38 2827 29 6.79088e+06 269440 678818. 2348.85 3.70 0.338934 0.303964 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.31 0.10 0.27 -1 -1 0.31 0.0430107 0.0390826 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.25 17612 13 0.19 -1 -1 32624 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 16.7 MiB 1.95 1109 7177 1737 4800 640 55.3 MiB 0.12 0.00 7.59858 -166.488 -7.59858 7.59858 1.10 0.00140355 0.00128559 0.0611081 0.0559336 36 3033 30 6.79088e+06 202080 648988. 2245.63 5.15 0.386951 0.347188 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.043998 0.039989 106 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.23 17532 12 0.18 -1 -1 32396 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 16.7 MiB 1.61 935 11402 3533 6247 1622 55.2 MiB 0.15 0.00 7.11778 -148.236 -7.11778 7.11778 1.12 0.00120471 0.0011022 0.0846607 0.0775578 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.52 0.287076 0.25855 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0438125 0.0396521 96 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17364 12 0.15 -1 -1 32668 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 16.6 MiB 2.13 937 12856 4731 5927 2198 55.2 MiB 0.17 0.00 5.84661 -143.137 -5.84661 5.84661 0.79 0.00125106 0.00114462 0.0874764 0.0799449 38 2936 43 6.79088e+06 229024 678818. 2348.85 5.82 0.411997 0.369757 25966 169698 -1 2301 16 1075 2850 166834 38480 5.18431 5.18431 -138.28 -5.18431 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0442037 0.040114 101 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.29 17796 13 0.24 -1 -1 32424 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 16.8 MiB 1.75 1258 8319 2303 5000 1016 55.5 MiB 0.15 0.00 7.91028 -166.355 -7.91028 7.91028 1.09 0.00161414 0.00146971 0.0796278 0.0730054 40 3060 21 6.79088e+06 269440 706193. 2443.58 2.77 0.420557 0.378504 26254 175826 -1 2982 19 1354 3465 231601 50194 7.01056 7.01056 -160.338 -7.01056 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0660728 0.0598831 134 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.28 17720 14 0.30 -1 -1 32812 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 17.2 MiB 1.76 1345 7268 1767 5038 463 55.7 MiB 0.13 0.00 8.74626 -182.518 -8.74626 8.74626 1.08 0.00170019 0.00155577 0.0716713 0.0656901 36 3522 26 6.79088e+06 296384 648988. 2245.63 5.02 0.461067 0.414995 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0669132 0.0608893 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17544 11 0.17 -1 -1 32572 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 16.6 MiB 2.20 987 12186 3908 6119 2159 55.4 MiB 0.16 0.00 6.7187 -136.52 -6.7187 6.7187 1.08 0.00125295 0.00114798 0.0895151 0.0820395 34 3118 45 6.79088e+06 282912 618332. 2139.56 4.30 0.406874 0.365566 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.26 0.39 0.26 -1 -1 0.26 0.11896 0.106644 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.28 17704 12 0.27 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1224 13348 3764 6998 2586 55.7 MiB 0.22 0.00 7.24781 -156.42 -7.24781 7.24781 1.08 0.00172557 0.00158421 0.124132 0.113918 40 3377 35 6.79088e+06 323328 706193. 2443.58 4.46 0.532698 0.480586 26254 175826 -1 3153 21 1625 5435 403477 86340 6.75642 6.75642 -155.136 -6.75642 0 0 926341. 3205.33 0.30 0.19 0.30 -1 -1 0.30 0.0749283 0.067922 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.26 17788 14 0.26 -1 -1 32772 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 2.14 1311 6743 1544 4772 427 55.6 MiB 0.12 0.00 8.47078 -173.752 -8.47078 8.47078 1.10 0.00155995 0.00142965 0.0633255 0.0581058 38 3697 39 6.79088e+06 255968 678818. 2348.85 6.55 0.451081 0.405333 25966 169698 -1 2925 18 1377 3834 209038 46091 7.22545 7.22545 -162.343 -7.22545 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0604965 0.0548575 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.25 17640 12 0.16 -1 -1 32388 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 16.6 MiB 1.56 1008 11740 3543 6499 1698 55.2 MiB 0.16 0.00 7.24148 -161.628 -7.24148 7.24148 1.09 0.00126643 0.0011584 0.09208 0.0842545 36 2795 45 6.79088e+06 202080 648988. 2245.63 4.89 0.431783 0.387882 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0424921 0.0385862 105 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 16.1 MiB 1.83 679 4973 1078 3739 156 54.8 MiB 0.07 0.00 4.83286 -114.815 -4.83286 4.83286 1.09 0.000905144 0.000828525 0.0312004 0.0285602 38 1772 21 6.79088e+06 175136 678818. 2348.85 2.32 0.223993 0.199319 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0284368 0.0256244 66 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.26 17328 13 0.20 -1 -1 32576 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 16.4 MiB 1.96 997 12331 4111 5801 2419 55.0 MiB 0.17 0.00 7.54752 -160.268 -7.54752 7.54752 1.10 0.00128719 0.00117869 0.0947577 0.0868446 36 2929 29 6.79088e+06 242496 648988. 2245.63 3.56 0.387784 0.348779 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0489743 0.0443738 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17696 13 0.27 -1 -1 32996 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 17.0 MiB 1.74 1287 9943 2672 5830 1441 55.7 MiB 0.17 0.00 7.66212 -166.709 -7.66212 7.66212 1.11 0.00168777 0.00154804 0.0949829 0.0870744 36 4367 40 6.79088e+06 282912 648988. 2245.63 10.20 0.519947 0.468238 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.27 0.29 0.25 -1 -1 0.27 0.0994 0.0897403 143 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.28 17816 13 0.29 -1 -1 32620 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1366 11989 3183 6998 1808 55.8 MiB 0.20 0.00 7.56666 -167.812 -7.56666 7.56666 1.08 0.00163159 0.00149481 0.110257 0.101124 38 3931 41 6.79088e+06 282912 678818. 2348.85 6.54 0.517871 0.466604 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0596683 0.054218 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17244 9 0.09 -1 -1 32284 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 16.1 MiB 1.05 700 7596 2556 3853 1187 54.8 MiB 0.08 0.00 4.83723 -93.7879 -4.83723 4.83723 1.09 0.000821918 0.000753118 0.0413765 0.0379289 34 1715 26 6.79088e+06 242496 618332. 2139.56 2.03 0.220502 0.196201 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0306556 0.0274575 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17428 13 0.28 -1 -1 32772 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1263 10263 2709 7113 441 55.6 MiB 0.17 0.00 8.1433 -166.845 -8.1433 8.1433 1.09 0.00121623 0.00110022 0.0797825 0.0726352 40 3385 50 6.79088e+06 309856 706193. 2443.58 4.19 0.4981 0.446973 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.31 0.16 0.29 -1 -1 0.31 0.0702408 0.0636137 136 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17076 8 0.09 -1 -1 32664 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 16.0 MiB 1.81 633 5921 1256 4594 71 54.6 MiB 0.07 0.00 4.18492 -95.1021 -4.18492 4.18492 1.09 0.000788706 0.000721557 0.0270113 0.0245461 36 1824 30 6.79088e+06 148192 648988. 2245.63 2.26 0.202317 0.178896 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.029487 0.0263632 60 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.25 17488 15 0.25 -1 -1 32856 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1197 14144 5293 7084 1767 55.5 MiB 0.21 0.00 8.89118 -178.017 -8.89118 8.89118 1.10 0.00146121 0.00134046 0.119847 0.10993 36 3911 43 6.79088e+06 242496 648988. 2245.63 9.94 0.497505 0.447697 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.28 0.25 0.25 -1 -1 0.28 0.0874954 0.0788705 121 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17316 13 0.22 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1207 12898 3890 6827 2181 55.6 MiB 0.20 0.00 6.79894 -149.553 -6.79894 6.79894 1.11 0.00146697 0.00134581 0.11155 0.102321 36 3359 23 6.79088e+06 242496 648988. 2245.63 8.43 0.429845 0.386578 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.27 0.13 0.27 -1 -1 0.27 0.0587348 0.0532059 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.27 17780 13 0.28 -1 -1 32880 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1179 7024 1686 4552 786 55.5 MiB 0.06 0.00 7.81323 -165.772 -7.81323 7.81323 1.08 0.000575707 0.000519854 0.0263879 0.0239397 40 3618 36 6.79088e+06 242496 706193. 2443.58 6.10 0.396163 0.354838 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.32 0.26 0.30 -1 -1 0.32 0.0815291 0.0736815 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.13 17316 12 0.16 -1 -1 32608 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 16.5 MiB 1.83 1077 9024 2472 4753 1799 55.3 MiB 0.13 0.00 6.90294 -154.176 -6.90294 6.90294 1.08 0.00129032 0.00118078 0.0719087 0.0659265 38 2685 27 6.79088e+06 215552 678818. 2348.85 3.61 0.356865 0.32063 25966 169698 -1 2236 14 1015 2429 130604 29713 5.99004 5.99004 -143.607 -5.99004 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0406936 0.036995 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17344 11 0.16 -1 -1 32724 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 16.4 MiB 1.75 910 12120 3870 6285 1965 55.0 MiB 0.16 0.00 6.3635 -135.496 -6.3635 6.3635 1.11 0.00116635 0.00106758 0.0854939 0.0782692 36 2758 44 6.79088e+06 242496 648988. 2245.63 4.63 0.38332 0.343807 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0384663 0.0348461 95 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.11 17432 11 0.17 -1 -1 32620 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 16.5 MiB 1.49 934 11106 3231 6003 1872 55.1 MiB 0.15 0.00 7.04953 -133.904 -7.04953 7.04953 1.09 0.00125696 0.00115176 0.0834827 0.0765127 36 2495 17 6.79088e+06 282912 648988. 2245.63 2.84 0.348082 0.313258 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.24 0.05 0.13 -1 -1 0.24 0.0187607 0.0170466 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.23 17612 12 0.20 -1 -1 32616 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 16.9 MiB 2.32 1143 7431 2070 3957 1404 55.4 MiB 0.12 0.00 7.03679 -162.788 -7.03679 7.03679 1.09 0.00148673 0.00136121 0.067694 0.0620701 38 3489 28 6.79088e+06 229024 678818. 2348.85 4.84 0.403344 0.362004 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0573383 0.051971 119 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.23 17548 12 0.16 -1 -1 32688 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 16.4 MiB 2.10 1005 7304 1599 5397 308 55.0 MiB 0.12 0.00 6.85818 -143.144 -6.85818 6.85818 1.13 0.0012768 0.00116879 0.0599463 0.0549714 36 3104 26 6.79088e+06 229024 648988. 2245.63 5.37 0.344934 0.309478 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0527951 0.0477451 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.23 17552 10 0.15 -1 -1 32768 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 16.5 MiB 1.39 942 8378 2178 5592 608 55.2 MiB 0.12 0.00 6.16888 -135.594 -6.16888 6.16888 1.07 0.00123682 0.00113275 0.0660431 0.0604695 34 2825 33 6.79088e+06 229024 618332. 2139.56 3.19 0.318677 0.285813 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0409455 0.0371643 103 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18156 13 0.31 -1 -1 32744 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 17.1 MiB 1.71 1312 13663 4088 7126 2449 55.7 MiB 0.24 0.00 8.09614 -166.803 -8.09614 8.09614 1.11 0.00178874 0.00163755 0.138996 0.127386 44 3318 23 6.79088e+06 282912 787024. 2723.27 3.69 0.530745 0.478621 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0668998 0.0608224 149 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.27 18308 14 0.33 -1 -1 33288 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 17.0 MiB 2.05 1261 10584 2627 7173 784 55.7 MiB 0.19 0.00 7.68903 -168.897 -7.68903 7.68903 1.08 0.00162185 0.00148683 0.101591 0.093056 44 3649 50 6.79088e+06 242496 787024. 2723.27 4.66 0.526375 0.473774 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.35 0.14 0.32 -1 -1 0.35 0.0597816 0.0543349 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17484 12 0.15 -1 -1 32656 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 16.5 MiB 1.99 1099 9036 2242 5503 1291 55.2 MiB 0.13 0.00 7.11595 -155.813 -7.11595 7.11595 1.09 0.0012829 0.00117428 0.0722901 0.0662087 30 2953 39 6.79088e+06 215552 556674. 1926.21 3.70 0.28566 0.257124 24526 138013 -1 2356 56 1353 4062 755449 394520 6.33018 6.33018 -154.996 -6.33018 0 0 706193. 2443.58 0.28 0.41 0.21 -1 -1 0.28 0.12939 0.116052 101 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.23 18028 12 0.27 -1 -1 32756 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 17.2 MiB 2.20 1467 6039 1319 4287 433 55.8 MiB 0.12 0.00 7.47278 -158.083 -7.47278 7.47278 1.09 0.00171607 0.00157202 0.0615698 0.0565242 44 3629 28 6.79088e+06 323328 787024. 2723.27 4.00 0.458717 0.4126 27118 194962 -1 3054 17 1429 4213 263921 56409 6.54502 6.54502 -148.774 -6.54502 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0629577 0.0572327 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 18016 14 0.33 -1 -1 33176 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 17.2 MiB 1.27 1271 10129 2796 6287 1046 55.8 MiB 0.17 0.00 8.30959 -169.599 -8.30959 8.30959 1.06 0.00166874 0.00153034 0.0960603 0.0880855 36 3450 22 6.79088e+06 296384 648988. 2245.63 4.35 0.464265 0.417273 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0590073 0.0536986 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.28 17848 13 0.25 -1 -1 32792 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1280 4811 900 3622 289 55.7 MiB 0.09 0.00 8.58767 -169.841 -8.58767 8.58767 1.29 0.00155772 0.0014279 0.0446221 0.0409648 38 3430 34 6.79088e+06 309856 678818. 2348.85 3.75 0.426433 0.383393 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.058921 0.0535508 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.28 17880 13 0.25 -1 -1 32776 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 16.9 MiB 1.77 1180 11979 3854 6305 1820 55.5 MiB 0.19 0.00 7.68398 -158.005 -7.68398 7.68398 1.09 0.00153799 0.00140546 0.105313 0.096469 46 3049 18 6.79088e+06 282912 828058. 2865.25 4.04 0.430065 0.387814 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0538497 0.048902 125 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.24 17516 12 0.19 -1 -1 32844 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 17.0 MiB 1.86 851 11432 3292 6222 1918 55.6 MiB 0.17 0.00 6.74005 -141.479 -6.74005 6.74005 1.13 0.00142466 0.00130503 0.0995049 0.0912937 38 2732 20 6.79088e+06 215552 678818. 2348.85 5.17 0.399768 0.359156 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.39 0.09 0.23 -1 -1 0.39 0.0398015 0.0358915 111 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.32 18492 14 0.38 -1 -1 32772 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 17.4 MiB 1.13 1525 8269 1990 5730 549 55.9 MiB 0.17 0.00 8.76146 -179.232 -8.76146 8.76146 1.11 0.00189445 0.00172858 0.0900173 0.0825446 40 3962 28 6.79088e+06 282912 706193. 2443.58 5.17 0.515109 0.464401 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.31 0.17 0.25 -1 -1 0.31 0.066406 0.0606195 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17300 11 0.19 -1 -1 32380 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 16.7 MiB 2.13 1083 5656 1222 4312 122 55.2 MiB 0.10 0.00 6.44427 -138.672 -6.44427 6.44427 1.10 0.0013859 0.00126909 0.0509739 0.0467584 40 2970 31 6.79088e+06 215552 706193. 2443.58 3.49 0.376309 0.336577 26254 175826 -1 2695 18 1295 3569 245355 53324 5.60634 5.60634 -134.282 -5.60634 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0540157 0.0489514 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17788 13 0.26 -1 -1 33268 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1224 12683 3651 6628 2404 55.7 MiB 0.21 0.00 8.19665 -170.984 -8.19665 8.19665 1.11 0.00160046 0.00146589 0.118485 0.108587 36 3521 25 6.79088e+06 269440 648988. 2245.63 5.91 0.476879 0.42959 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0609382 0.0554556 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.31 17792 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1183 14221 4949 6932 2340 55.6 MiB 0.25 0.00 7.19197 -155.782 -7.19197 7.19197 1.09 0.001711 0.00156834 0.133533 0.122249 48 3258 28 6.79088e+06 282912 865456. 2994.66 3.88 0.524885 0.473301 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.36 0.24 0.34 -1 -1 0.36 0.0825989 0.0748122 146 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.25 17632 13 0.24 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 16.7 MiB 1.28 1273 10103 2600 6194 1309 55.5 MiB 0.16 0.00 8.00961 -170.987 -8.00961 8.00961 1.08 0.00156602 0.00143579 0.0882421 0.080965 38 3255 22 6.79088e+06 296384 678818. 2348.85 3.39 0.431469 0.388334 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.30 0.12 0.24 -1 -1 0.30 0.0577498 0.0524341 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.29 17768 13 0.21 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 16.7 MiB 2.48 1094 12364 4318 5742 2304 55.3 MiB 0.19 0.00 7.6093 -157.428 -7.6093 7.6093 1.08 0.00151551 0.00138913 0.109923 0.100771 38 3487 43 6.79088e+06 242496 678818. 2348.85 8.02 0.489595 0.440145 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0549715 0.0498456 124 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17904 12 0.24 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.86 1339 6489 1417 4538 534 55.8 MiB 0.12 0.00 7.45027 -163.951 -7.45027 7.45027 1.09 0.00165009 0.00151314 0.0633481 0.0581754 36 4037 43 6.79088e+06 269440 648988. 2245.63 10.95 0.485655 0.436583 25390 158009 -1 3242 19 1321 4175 282612 58801 6.45897 6.45897 -154.692 -6.45897 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0668468 0.0606339 140 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.27 18068 13 0.29 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 17.3 MiB 1.56 1312 5757 1265 4157 335 55.9 MiB 0.12 0.00 7.77691 -170.238 -7.77691 7.77691 1.10 0.00176712 0.00162073 0.0609812 0.0559732 36 4117 46 6.79088e+06 269440 648988. 2245.63 9.83 0.522201 0.469465 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.28 0.31 0.25 -1 -1 0.28 0.115059 0.103934 145 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17656 14 0.27 -1 -1 32956 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 1.40 1196 9783 2600 6598 585 55.7 MiB 0.16 0.00 8.29092 -170.108 -8.29092 8.29092 1.09 0.00148895 0.00136431 0.0844592 0.0773804 38 3116 34 6.79088e+06 269440 678818. 2348.85 3.99 0.456817 0.411622 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.31 0.15 0.27 -1 -1 0.31 0.0697627 0.0631465 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.25 17664 13 0.25 -1 -1 32740 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 17.2 MiB 2.08 1239 12547 3128 7964 1455 55.8 MiB 0.20 0.00 8.02156 -162.008 -8.02156 8.02156 1.09 0.00162863 0.00149189 0.114357 0.104786 36 3706 32 6.79088e+06 282912 648988. 2245.63 8.95 0.490474 0.441531 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.28 0.19 0.25 -1 -1 0.28 0.075055 0.0678523 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 18208 13 0.27 -1 -1 32696 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1309 8319 2069 5720 530 55.9 MiB 0.16 0.00 7.83086 -168.91 -7.83086 7.83086 1.02 0.00169836 0.00155667 0.0846177 0.0775721 38 3459 40 6.79088e+06 282912 678818. 2348.85 5.42 0.510362 0.459281 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.065611 0.0595916 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.27 17856 12 0.29 -1 -1 32792 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 17.3 MiB 1.48 1321 14779 4130 8902 1747 55.7 MiB 0.26 0.00 7.66848 -162.706 -7.66848 7.66848 1.09 0.00169448 0.00155268 0.152532 0.13979 38 3631 50 6.79088e+06 282912 678818. 2348.85 6.05 0.597035 0.538262 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.065869 0.0598032 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.20 17536 11 0.13 -1 -1 32704 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.09 752 5224 962 4133 129 55.1 MiB 0.08 0.00 6.41251 -131.25 -6.41251 6.41251 1.08 0.00115422 0.00105681 0.0397874 0.0364162 36 2354 24 6.79088e+06 188608 648988. 2245.63 3.54 0.290867 0.260248 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0418479 0.0377584 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17812 13 0.20 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.73 1180 7221 1648 4796 777 55.2 MiB 0.06 0.00 7.59268 -164.24 -7.59268 7.59268 0.75 0.000522799 0.000473144 0.0240784 0.0218847 36 3135 25 6.79088e+06 269440 648988. 2245.63 5.11 0.286616 0.25597 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0519724 0.0470402 118 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18324 14 0.42 -1 -1 33012 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57476 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 17.6 MiB 1.25 1584 7108 1588 4936 584 56.1 MiB 0.15 0.00 9.32595 -187.261 -9.32595 9.32595 1.16 0.00195527 0.00179212 0.0799751 0.0732379 46 3936 32 6.79088e+06 323328 828058. 2865.25 5.45 0.50431 0.454682 27406 200422 -1 3289 21 1725 5115 340361 89609 8.0201 8.0201 -172.736 -8.0201 0 0 1.01997e+06 3529.29 0.33 0.20 0.32 -1 -1 0.33 0.0844054 0.0767247 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.14 17836 13 0.30 -1 -1 32788 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 16.9 MiB 1.49 1314 12733 3340 7297 2096 55.5 MiB 0.24 0.00 7.97246 -177.126 -7.97246 7.97246 1.09 0.00160225 0.00146967 0.129324 0.118122 38 3411 27 6.79088e+06 282912 678818. 2348.85 5.74 0.489579 0.441153 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0574774 0.0521157 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.24 17516 11 0.17 -1 -1 32636 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 16.4 MiB 0.70 915 4304 849 3239 216 55.1 MiB 0.08 0.00 6.78614 -143.669 -6.78614 6.78614 1.13 0.00125655 0.00115088 0.036158 0.0332226 36 2700 29 6.79088e+06 229024 648988. 2245.63 3.91 0.23979 0.214025 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0417264 0.0378472 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.31 18516 15 0.52 -1 -1 32880 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 17.5 MiB 1.09 1525 5039 926 3796 317 56.1 MiB 0.11 0.00 9.59451 -195.342 -9.59451 9.59451 1.09 0.00204404 0.00187329 0.0583238 0.0535474 36 4861 41 6.79088e+06 336800 648988. 2245.63 13.86 0.583422 0.526252 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.29 0.20 0.25 -1 -1 0.29 0.0915143 0.0831423 179 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.25 17704 13 0.31 -1 -1 32884 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 17.1 MiB 1.12 1281 8502 2158 5508 836 55.8 MiB 0.15 0.00 8.03603 -175.042 -8.03603 8.03603 1.12 0.00170192 0.00156163 0.0848448 0.077923 38 3308 18 6.79088e+06 269440 678818. 2348.85 3.35 0.403218 0.363334 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.056001 0.0509517 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.20 17192 11 0.13 -1 -1 32420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 16.5 MiB 1.20 1102 10183 2765 6008 1410 55.1 MiB 0.14 0.00 6.80233 -145.463 -6.80233 6.80233 1.08 0.00122427 0.00111897 0.0799159 0.0731057 30 2820 19 6.79088e+06 175136 556674. 1926.21 1.81 0.241345 0.217552 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0425276 0.0385254 94 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.27 17604 12 0.29 -1 -1 32788 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 17.2 MiB 1.08 1332 7953 2031 5347 575 55.7 MiB 0.15 0.00 7.73069 -165.16 -7.73069 7.73069 1.09 0.00172475 0.00158003 0.0806271 0.0739033 38 3533 25 6.79088e+06 269440 678818. 2348.85 4.53 0.463399 0.416896 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0614707 0.0558705 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.25 17376 12 0.20 -1 -1 32732 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 17.0 MiB 1.20 1053 12008 3553 6389 2066 55.5 MiB 0.17 0.00 7.28149 -150.89 -7.28149 7.28149 1.08 0.00134793 0.00123499 0.0951366 0.0872463 44 2625 43 6.79088e+06 242496 787024. 2723.27 3.50 0.431562 0.387509 27118 194962 -1 2033 17 1102 2951 150094 35597 6.20493 6.20493 -138.957 -6.20493 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0497315 0.0451028 113 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17508 12 0.18 -1 -1 32676 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 16.5 MiB 0.97 903 6163 1336 4643 184 55.3 MiB 0.10 0.00 7.56546 -146.033 -7.56546 7.56546 1.12 0.00128195 0.00117357 0.0508396 0.0465473 30 2736 29 6.79088e+06 229024 556674. 1926.21 2.81 0.238859 0.215012 24526 138013 -1 2112 20 907 2572 134816 30941 6.67032 6.67032 -143.964 -6.67032 0 0 706193. 2443.58 0.22 0.07 0.11 -1 -1 0.22 0.0367738 0.0332523 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 18128 12 0.28 -1 -1 32816 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 17.0 MiB 1.95 1197 6039 1341 4100 598 55.6 MiB 0.10 0.00 7.39356 -141.853 -7.39356 7.39356 1.11 0.00161042 0.0014771 0.0554602 0.0509082 40 2765 18 6.79088e+06 350272 706193. 2443.58 3.38 0.398251 0.358048 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.30 0.14 0.30 -1 -1 0.30 0.0613308 0.0556626 140 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.26 17828 13 0.33 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 17.2 MiB 1.00 1362 9111 2298 6252 561 55.9 MiB 0.17 0.00 7.91407 -168.647 -7.91407 7.91407 1.10 0.00183632 0.00168472 0.0927307 0.0849622 36 4498 41 6.79088e+06 309856 648988. 2245.63 11.25 0.555485 0.500299 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.28 0.27 0.25 -1 -1 0.28 0.0980899 0.0889205 160 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17784 12 0.23 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.24 1278 7770 1751 5660 359 55.7 MiB 0.14 0.00 7.73336 -164.138 -7.73336 7.73336 1.12 0.00164116 0.00150534 0.0748496 0.0686568 38 3570 28 6.79088e+06 269440 678818. 2348.85 5.70 0.457478 0.41133 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0652339 0.0591592 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.24 17352 12 0.14 -1 -1 32344 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 16.5 MiB 1.80 988 4473 916 3372 185 55.0 MiB 0.07 0.00 7.24997 -147.671 -7.24997 7.24997 1.10 0.00119076 0.00109059 0.0360762 0.0330471 36 2682 24 6.79088e+06 202080 648988. 2245.63 4.68 0.293713 0.262886 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0447185 0.0403823 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.26 17652 12 0.21 -1 -1 32420 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 16.8 MiB 1.37 1084 12898 3877 6797 2224 55.2 MiB 0.19 0.00 7.21455 -151.198 -7.21455 7.21455 1.09 0.00135032 0.00123708 0.102342 0.0937367 36 2934 32 6.79088e+06 255968 648988. 2245.63 5.62 0.416642 0.374397 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0477592 0.0433004 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.27 17900 11 0.21 -1 -1 32920 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1115 8626 2299 5376 951 55.5 MiB 0.14 0.00 6.84847 -137.093 -6.84847 6.84847 1.09 0.00153039 0.00140343 0.0786859 0.0721547 36 3085 31 6.79088e+06 269440 648988. 2245.63 4.39 0.438996 0.394474 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0538793 0.0488874 125 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.24 17680 11 0.20 -1 -1 32632 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 16.9 MiB 1.21 1077 4642 990 3215 437 55.4 MiB 0.08 0.00 6.39394 -126.807 -6.39394 6.39394 1.08 0.00137222 0.00125407 0.0425855 0.0392017 36 2869 37 6.79088e+06 255968 648988. 2245.63 5.46 0.383244 0.343356 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0661844 0.0597698 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.25 17820 13 0.21 -1 -1 32692 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 1.68 1115 9196 2684 4764 1748 55.5 MiB 0.13 0.00 7.27805 -147.461 -7.27805 7.27805 1.10 0.00131664 0.00120604 0.0742087 0.0680229 30 3203 46 6.79088e+06 242496 556674. 1926.21 2.99 0.309048 0.278111 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.0503556 0.0456621 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.25 17604 12 0.19 -1 -1 32776 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.8 MiB 1.96 1193 6490 1485 4564 441 55.6 MiB 0.11 0.00 7.26273 -167.563 -7.26273 7.26273 1.15 0.00132926 0.00121039 0.0586146 0.0537333 40 2753 23 6.79088e+06 242496 706193. 2443.58 3.32 0.391166 0.351322 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.31 0.11 0.29 -1 -1 0.31 0.0497702 0.0452251 120 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17508 13 0.28 -1 -1 32796 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 16.8 MiB 1.59 1194 6123 1343 4442 338 55.5 MiB 0.11 0.00 8.79477 -171.911 -8.79477 8.79477 1.11 0.0015896 0.00145764 0.0582899 0.0535091 34 3211 26 6.79088e+06 282912 618332. 2139.56 3.45 0.419166 0.376412 25102 150614 -1 2646 15 1148 3180 179176 40712 7.64065 7.64065 -158.33 -7.64065 0 0 787024. 2723.27 0.26 0.11 0.14 -1 -1 0.26 0.0523766 0.0475658 137 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17932 14 0.28 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1287 8685 2330 5621 734 55.7 MiB 0.15 0.00 8.66267 -183.033 -8.66267 8.66267 1.11 0.00162759 0.00149185 0.0825374 0.0756856 38 3763 48 6.79088e+06 269440 678818. 2348.85 6.12 0.516445 0.464622 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.30 0.13 0.27 -1 -1 0.30 0.0578025 0.0525301 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.26 17900 14 0.24 -1 -1 32924 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 17.0 MiB 1.98 1083 11456 4044 5385 2027 55.6 MiB 0.20 0.00 7.96611 -159.164 -7.96611 7.96611 1.11 0.00152007 0.00139307 0.110611 0.100813 38 3010 34 6.79088e+06 229024 678818. 2348.85 5.14 0.480409 0.431907 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0684848 0.0620992 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.29 18100 13 0.32 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 17.1 MiB 1.68 1338 8024 1861 5707 456 55.6 MiB 0.15 0.00 8.29812 -170.177 -8.29812 8.29812 1.14 0.00169613 0.00155509 0.077868 0.0714676 46 3286 28 6.79088e+06 296384 828058. 2865.25 3.85 0.473727 0.426908 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0627477 0.0571236 144 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.24 17324 13 0.18 -1 -1 32360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 919 12292 3407 6536 2349 55.1 MiB 0.17 0.00 7.20737 -146.133 -7.20737 7.20737 1.11 0.0012935 0.00118455 0.0965605 0.0883512 36 2720 18 6.79088e+06 242496 648988. 2245.63 3.50 0.378248 0.339929 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0558411 0.0504664 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.30 17988 13 0.41 -1 -1 32892 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 17.4 MiB 1.64 1350 9234 2593 5787 854 55.9 MiB 0.17 0.00 8.31996 -168.69 -8.31996 8.31996 1.10 0.00171185 0.00157099 0.0921929 0.084664 38 3825 50 6.79088e+06 296384 678818. 2348.85 6.28 0.531173 0.478025 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.31 0.17 0.22 -1 -1 0.31 0.0717698 0.0650931 145 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17596 14 0.30 -1 -1 32728 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 16.9 MiB 1.56 1251 6312 1329 4019 964 55.6 MiB 0.12 0.00 8.37235 -176.058 -8.37235 8.37235 1.08 0.00148454 0.00134885 0.0607203 0.0556678 40 3069 17 6.79088e+06 242496 706193. 2443.58 3.49 0.391135 0.351722 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.30 0.16 0.29 -1 -1 0.30 0.0660097 0.0598009 128 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.29 17824 13 0.22 -1 -1 32868 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 16.9 MiB 1.75 1125 7914 1884 5216 814 55.5 MiB 0.14 0.00 7.39828 -160.2 -7.39828 7.39828 1.08 0.00150998 0.00138583 0.0720707 0.0661485 38 3005 21 6.79088e+06 255968 678818. 2348.85 4.19 0.39292 0.352989 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0694596 0.0627824 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17832 13 0.21 -1 -1 32728 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 17.0 MiB 1.60 1096 8306 2939 4353 1014 55.6 MiB 0.14 0.00 7.45237 -146.107 -7.45237 7.45237 1.09 0.00148541 0.00136115 0.0753578 0.0691005 38 3152 24 6.79088e+06 255968 678818. 2348.85 4.26 0.401484 0.359786 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.29 0.11 0.28 -1 -1 0.29 0.052931 0.0479947 121 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17904 14 0.36 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1434 9943 2708 5582 1653 55.8 MiB 0.13 0.00 8.52022 -179.043 -8.52022 8.52022 0.75 0.00177437 0.00162715 0.0609507 0.0555544 46 3715 29 6.79088e+06 282912 828058. 2865.25 4.83 0.473011 0.425609 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.34 0.15 0.24 -1 -1 0.34 0.0658054 0.0598805 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17828 11 0.27 -1 -1 32680 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 16.7 MiB 1.96 1077 10149 2679 5779 1691 55.4 MiB 0.16 0.00 7.52622 -140.559 -7.52622 7.52622 1.10 0.00152958 0.00140211 0.0896496 0.0822676 36 3431 24 6.79088e+06 309856 648988. 2245.63 7.13 0.437452 0.393774 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0631941 0.0571923 136 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17544 13 0.16 -1 -1 32720 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.81 972 6054 1229 4689 136 55.0 MiB 0.10 0.00 6.97458 -160.094 -6.97458 6.97458 1.09 0.00122375 0.00111052 0.0492924 0.0451384 44 2580 35 6.79088e+06 188608 787024. 2723.27 2.84 0.337194 0.301947 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.33 0.09 0.34 -1 -1 0.33 0.0404734 0.0367331 98 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 18096 14 0.24 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 17.0 MiB 1.59 963 3581 624 2890 67 55.5 MiB 0.08 0.00 8.38402 -165.799 -8.38402 8.38402 1.12 0.00151563 0.00139046 0.0359025 0.032999 36 3137 33 6.79088e+06 229024 648988. 2245.63 5.88 0.296309 0.264822 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0708874 0.0640701 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.17 18136 15 0.40 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 17.5 MiB 1.46 1424 5271 949 4056 266 56.1 MiB 0.12 0.00 9.1358 -193.594 -9.1358 9.1358 1.10 0.00191638 0.00175782 0.0604098 0.0554736 40 3948 49 6.79088e+06 309856 706193. 2443.58 4.66 0.525457 0.472243 26254 175826 -1 3616 22 2383 6323 430097 92001 7.89475 7.89475 -181.053 -7.89475 0 0 926341. 3205.33 0.30 0.22 0.29 -1 -1 0.30 0.0862745 0.078289 163 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17644 11 0.16 -1 -1 32556 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 16.6 MiB 1.53 958 10726 3368 5272 2086 55.2 MiB 0.14 0.00 6.79222 -142.45 -6.79222 6.79222 1.15 0.00120321 0.00110204 0.0728711 0.0665771 30 2689 41 6.79088e+06 202080 556674. 1926.21 1.84 0.271629 0.243924 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0450699 0.0408443 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17324 12 0.20 -1 -1 32932 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 1114 10400 2653 5866 1881 55.3 MiB 0.16 0.00 6.63358 -148.815 -6.63358 6.63358 1.08 0.00134166 0.00122925 0.0857501 0.0785564 38 3230 30 6.79088e+06 229024 678818. 2348.85 4.09 0.390863 0.351008 25966 169698 -1 2582 19 1265 3460 189795 41991 5.82549 5.82549 -148.72 -5.82549 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0538804 0.0487273 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.27 17592 12 0.27 -1 -1 32780 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1409 5123 1016 3643 464 55.8 MiB 0.10 0.00 7.37446 -165.375 -7.37446 7.37446 1.08 0.00173209 0.00158717 0.0547006 0.0501989 38 3552 27 6.79088e+06 255968 678818. 2348.85 3.62 0.44624 0.401417 25966 169698 -1 3027 19 1404 4076 214650 48148 6.46241 6.46241 -154.792 -6.46241 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0703111 0.0638381 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.28 17640 12 0.24 -1 -1 32936 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1290 8804 2224 5446 1134 55.5 MiB 0.15 0.00 7.66631 -156.992 -7.66631 7.66631 1.10 0.00145579 0.00132651 0.0803032 0.0736579 38 3773 50 6.79088e+06 242496 678818. 2348.85 7.28 0.4925 0.442502 25966 169698 -1 2908 20 1397 4117 236922 51526 6.45897 6.45897 -151.356 -6.45897 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0275586 0.024886 130 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.29 18044 14 0.43 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 17.5 MiB 1.79 1339 6323 1159 4879 285 56.0 MiB 0.13 0.00 9.2305 -183.989 -9.2305 9.2305 1.12 0.00191143 0.00175157 0.0700871 0.0643737 38 3705 30 6.79088e+06 296384 678818. 2348.85 4.18 0.517858 0.467192 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0733484 0.0668142 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17664 12 0.21 -1 -1 32704 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.52 1023 10231 4165 5804 262 55.4 MiB 0.16 0.00 7.21752 -140.072 -7.21752 7.21752 1.12 0.00144096 0.00132066 0.0889305 0.0815878 36 3532 36 6.79088e+06 255968 648988. 2245.63 8.44 0.435246 0.390884 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.049137 0.0445402 121 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.23 17384 11 0.18 -1 -1 32596 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.5 MiB 1.95 852 9208 3256 4555 1397 55.2 MiB 0.06 0.00 7.04622 -127.422 -7.04622 7.04622 1.11 0.000447685 0.000402769 0.0275598 0.0249121 30 2286 23 6.79088e+06 255968 556674. 1926.21 1.28 0.199496 0.178894 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0429394 0.038945 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.23 18356 13 0.43 -1 -1 32820 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 18.0 MiB 1.54 1698 8532 2074 5800 658 56.5 MiB 0.18 0.00 7.91451 -163.387 -7.91451 7.91451 1.08 0.00212415 0.00194723 0.0968134 0.0888205 46 4524 47 6.79088e+06 350272 828058. 2865.25 6.17 0.641328 0.578909 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0836163 0.0763234 188 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 17900 14 0.28 -1 -1 33248 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1264 9385 2554 5852 979 55.6 MiB 0.16 0.00 8.41881 -168.357 -8.41881 8.41881 1.11 0.00155799 0.00142834 0.0840395 0.0770408 30 3443 28 6.79088e+06 296384 556674. 1926.21 2.68 0.302763 0.273077 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0574591 0.0520993 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17936 12 0.16 -1 -1 32432 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 16.5 MiB 1.53 1075 7736 1882 5428 426 55.2 MiB 0.12 0.00 7.20863 -155.968 -7.20863 7.20863 1.10 0.00129196 0.00118232 0.0605415 0.0554382 38 2746 23 6.79088e+06 242496 678818. 2348.85 3.75 0.355069 0.319368 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0495451 0.0448983 109 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.25 17940 13 0.27 -1 -1 32908 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 17.1 MiB 1.37 1233 12542 3940 6787 1815 55.6 MiB 0.19 0.00 8.09146 -166.475 -8.09146 8.09146 1.10 0.00151712 0.00139019 0.111788 0.102523 36 3202 30 6.79088e+06 242496 648988. 2245.63 5.96 0.468673 0.42218 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0666535 0.0603667 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.30 18088 13 0.32 -1 -1 32924 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 17.4 MiB 1.61 1392 4695 845 3563 287 56.0 MiB 0.10 0.00 7.47587 -155.329 -7.47587 7.47587 1.13 0.0018211 0.00166868 0.0505948 0.0465154 40 3664 28 6.79088e+06 323328 706193. 2443.58 4.38 0.471906 0.425029 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0706126 0.0642379 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.24 17768 11 0.24 -1 -1 32696 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 17.1 MiB 1.58 1218 4659 929 3342 388 55.7 MiB 0.09 0.00 7.06923 -144.171 -7.06923 7.06923 1.12 0.00161455 0.00147964 0.0459976 0.0422468 36 3280 38 6.79088e+06 296384 648988. 2245.63 5.72 0.451043 0.405113 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.30 0.14 0.25 -1 -1 0.30 0.0629935 0.0572602 141 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 18224 15 0.36 -1 -1 32724 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 17.3 MiB 1.44 1290 8402 2178 5761 463 55.8 MiB 0.16 0.00 8.74612 -186.954 -8.74612 8.74612 1.11 0.00222516 0.00203988 0.0848816 0.0777432 46 3189 27 6.79088e+06 296384 828058. 2865.25 3.92 0.477728 0.430526 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.33 0.27 0.33 -1 -1 0.33 0.0948042 0.0857969 147 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.27 18188 13 0.31 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 17.1 MiB 1.91 1316 8641 2148 5636 857 55.8 MiB 0.15 0.00 8.07216 -175.63 -8.07216 8.07216 1.10 0.00166204 0.00152135 0.0828159 0.075941 40 2999 17 6.79088e+06 282912 706193. 2443.58 2.66 0.446771 0.402927 26254 175826 -1 2987 16 1343 3851 238119 53175 7.04981 7.04981 -167.947 -7.04981 0 0 926341. 3205.33 0.31 0.13 0.29 -1 -1 0.31 0.0582067 0.0528657 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.25 17556 12 0.19 -1 -1 32572 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 16.7 MiB 1.57 864 9543 2234 6923 386 55.1 MiB 0.14 0.00 7.58072 -150.751 -7.58072 7.58072 1.08 0.00134989 0.0012393 0.0801306 0.0735426 38 2787 32 6.79088e+06 242496 678818. 2348.85 4.81 0.399484 0.359485 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0471161 0.0428097 111 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.25 17824 11 0.15 -1 -1 32684 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 16.6 MiB 1.43 1018 5722 1217 4259 246 55.2 MiB 0.09 0.00 6.71746 -144.764 -6.71746 6.71746 1.08 0.00125485 0.00114851 0.0470147 0.0430831 36 2822 26 6.79088e+06 188608 648988. 2245.63 4.93 0.334063 0.299746 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.30 0.10 0.25 -1 -1 0.30 0.0458279 0.0414974 98 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.25 17780 13 0.31 -1 -1 32932 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1236 5940 1259 4215 466 55.7 MiB 0.12 0.00 8.31912 -162.691 -8.31912 8.31912 1.08 0.00166489 0.00152751 0.0597696 0.0548745 38 3344 20 6.79088e+06 282912 678818. 2348.85 3.64 0.41408 0.372299 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.05824 0.0529257 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.21 17344 10 0.15 -1 -1 32740 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.4 MiB 1.75 951 4560 1025 3135 400 55.1 MiB 0.07 0.00 6.21922 -128.027 -6.21922 6.21922 1.09 0.00122851 0.00111743 0.0375568 0.034471 30 2695 24 6.79088e+06 229024 556674. 1926.21 2.04 0.208946 0.188001 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0460033 0.0416265 101 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17552 14 0.19 -1 -1 32580 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 16.9 MiB 2.56 984 4532 878 3142 512 55.3 MiB 0.09 0.00 7.85466 -160.915 -7.85466 7.85466 1.13 0.00131867 0.0012064 0.0397098 0.0364887 34 3083 47 6.79088e+06 242496 618332. 2139.56 6.14 0.400214 0.358711 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0499815 0.0452653 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.25 17900 13 0.28 -1 -1 32720 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 17.2 MiB 2.31 1210 8183 2048 5045 1090 55.8 MiB 0.14 0.00 7.80505 -164.773 -7.80505 7.80505 1.08 0.00149214 0.00136747 0.0727666 0.066751 38 3002 19 6.79088e+06 269440 678818. 2348.85 3.84 0.398218 0.358231 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.29 0.12 0.20 -1 -1 0.29 0.0534021 0.0485201 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.24 17404 12 0.15 -1 -1 32664 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 3.10 940 12120 3498 6380 2242 55.3 MiB 0.16 0.00 6.85518 -144.407 -6.85518 6.85518 1.04 0.0012188 0.0011157 0.0895423 0.0819516 46 2350 15 6.79088e+06 229024 828058. 2865.25 2.76 0.336883 0.302995 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0441767 0.0400099 99 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.23 17812 12 0.20 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 17.0 MiB 1.91 1190 9694 2639 6567 488 55.6 MiB 0.16 0.00 7.04874 -155.773 -7.04874 7.04874 1.10 0.00159434 0.001459 0.091743 0.0840187 46 2758 18 6.79088e+06 242496 828058. 2865.25 2.95 0.429738 0.386783 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.37 0.11 0.33 -1 -1 0.37 0.0538111 0.0488858 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.28 18088 13 0.28 -1 -1 32860 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.08 1303 8543 2004 5667 872 55.7 MiB 0.15 0.00 7.83951 -165.716 -7.83951 7.83951 1.09 0.00162403 0.00148739 0.0821141 0.0751874 38 3278 20 6.79088e+06 269440 678818. 2348.85 4.52 0.438765 0.395208 25966 169698 -1 2822 21 1439 4066 220511 48947 6.93332 6.93332 -157.758 -6.93332 0 0 902133. 3121.57 0.31 0.15 0.25 -1 -1 0.31 0.0736603 0.0666597 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17640 11 0.17 -1 -1 32752 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 16.4 MiB 1.83 1116 6616 1429 3881 1306 55.0 MiB 0.10 0.00 6.2158 -147.345 -6.2158 6.2158 1.08 0.001282 0.001174 0.0530145 0.0485487 36 3218 33 6.79088e+06 215552 648988. 2245.63 4.52 0.358557 0.321304 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0497483 0.0452275 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17368 13 0.21 -1 -1 32632 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 2.47 994 9543 2876 4545 2122 55.3 MiB 0.15 0.00 7.66009 -161.63 -7.66009 7.66009 0.88 0.00143813 0.00131906 0.0852099 0.078042 38 3161 25 6.79088e+06 202080 678818. 2348.85 5.45 0.402065 0.361318 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.26 0.12 0.14 -1 -1 0.26 0.0602439 0.0545377 113 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.15 17812 13 0.25 -1 -1 32836 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 17.0 MiB 1.14 1317 8183 2040 5445 698 55.6 MiB 0.14 0.00 7.48608 -168.657 -7.48608 7.48608 1.12 0.00159587 0.00146318 0.077455 0.0710196 38 3334 18 6.79088e+06 255968 678818. 2348.85 3.64 0.41786 0.376314 25966 169698 -1 2836 17 1443 3829 193627 45163 6.69849 6.69849 -160.313 -6.69849 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640862 0.05816 136 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.26 17812 11 0.19 -1 -1 32620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 16.9 MiB 1.87 932 11088 4572 6163 353 55.4 MiB 0.16 0.00 6.40374 -127.638 -6.40374 6.40374 1.11 0.00138433 0.00126777 0.0936474 0.0858267 38 3204 35 6.79088e+06 255968 678818. 2348.85 8.79 0.436128 0.391873 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.31 0.11 0.28 -1 -1 0.31 0.048609 0.0440898 116 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.28 18296 14 0.31 -1 -1 33416 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 17.2 MiB 1.41 1275 12567 3064 6849 2654 55.7 MiB 0.22 0.00 8.90517 -187.129 -8.90517 8.90517 1.21 0.00184271 0.00168995 0.128182 0.117686 38 3597 20 6.79088e+06 309856 678818. 2348.85 3.50 0.422677 0.38148 25966 169698 -1 2719 15 1368 3478 182247 41956 8.06351 8.06351 -178.421 -8.06351 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0620139 0.0565333 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17248 12 0.15 -1 -1 32560 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 16.6 MiB 2.25 1076 14144 4263 7957 1924 55.2 MiB 0.18 0.00 6.67019 -155.032 -6.67019 6.67019 1.09 0.0012103 0.00110736 0.0988914 0.0905011 38 2834 33 6.79088e+06 255968 678818. 2348.85 3.94 0.382026 0.343349 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.30 0.10 0.27 -1 -1 0.30 0.0436854 0.0395255 106 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 17932 13 0.29 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 1.40 1249 10698 2850 6495 1353 55.6 MiB 0.18 0.00 8.17702 -169.59 -8.17702 8.17702 1.08 0.00160484 0.00147248 0.0989186 0.0907962 38 3574 20 6.79088e+06 269440 678818. 2348.85 4.38 0.438388 0.394867 25966 169698 -1 2827 19 1307 3681 195634 44638 7.25013 7.25013 -165.64 -7.25013 0 0 902133. 3121.57 0.31 0.18 0.27 -1 -1 0.31 0.0859186 0.0778216 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17940 13 0.18 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 16.5 MiB 1.09 988 12528 4457 5893 2178 55.2 MiB 0.17 0.00 7.60722 -166.135 -7.60722 7.60722 1.09 0.00129296 0.00118408 0.0926856 0.0848827 38 2718 29 6.79088e+06 269440 678818. 2348.85 3.11 0.383651 0.345026 25966 169698 -1 2116 22 1062 2686 131823 31124 6.36938 6.36938 -151.235 -6.36938 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0580037 0.0523704 107 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32860 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1129 6563 1390 4948 225 55.5 MiB 0.12 0.00 7.37103 -160.155 -7.37103 7.37103 1.08 0.00155782 0.00142697 0.0617814 0.056684 30 3342 45 6.79088e+06 255968 556674. 1926.21 2.91 0.326029 0.293444 24526 138013 -1 2538 16 1126 3371 177495 40121 6.37287 6.37287 -151.837 -6.37287 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0545174 0.0494777 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18520 15 0.47 -1 -1 33452 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 17.5 MiB 1.15 1461 7019 1723 4462 834 56.2 MiB 0.08 0.00 9.4802 -194.196 -9.4802 9.4802 1.10 0.000742782 0.000669311 0.0318727 0.028896 40 3857 20 6.79088e+06 336800 706193. 2443.58 4.56 0.481506 0.433224 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.30 0.21 0.28 -1 -1 0.30 0.0869634 0.0791462 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.22 17068 10 0.10 -1 -1 32152 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 16.0 MiB 1.44 790 7049 2015 4252 782 54.6 MiB 0.09 0.00 4.74332 -119.113 -4.74332 4.74332 1.15 0.000906631 0.00083008 0.044015 0.0403297 30 2094 24 6.79088e+06 161664 556674. 1926.21 1.95 0.163309 0.146204 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0297253 0.0267531 66 84 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17336 13 0.18 -1 -1 32616 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 16.5 MiB 1.47 974 10050 2926 5436 1688 55.3 MiB 0.14 0.00 7.74787 -157.983 -7.74787 7.74787 1.08 0.00127586 0.00116938 0.0798866 0.0732232 36 2911 43 6.79088e+06 229024 648988. 2245.63 4.65 0.417154 0.375892 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.29 0.13 0.27 -1 -1 0.29 0.0471027 0.0428886 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.25 17456 12 0.19 -1 -1 32648 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 17.0 MiB 1.86 1289 8448 2191 5318 939 55.5 MiB 0.14 0.00 7.18863 -160.485 -7.18863 7.18863 1.12 0.00146182 0.0013404 0.0733671 0.067316 38 3079 21 6.79088e+06 242496 678818. 2348.85 3.93 0.387811 0.348234 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0485068 0.044015 117 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17276 9 0.13 -1 -1 32488 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 16.2 MiB 0.82 752 9555 2712 5903 940 54.7 MiB 0.11 0.00 5.16629 -99.605 -5.16629 5.16629 1.10 0.00101083 0.000926136 0.0642708 0.0588988 30 2043 29 6.79088e+06 242496 556674. 1926.21 1.53 0.20802 0.186909 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0368551 0.0332237 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17652 12 0.25 -1 -1 32848 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.47 1312 13291 3621 7142 2528 55.7 MiB 0.22 0.00 7.35568 -164.212 -7.35568 7.35568 1.08 0.00167342 0.00152956 0.124389 0.113789 38 3697 28 6.79088e+06 282912 678818. 2348.85 6.45 0.517625 0.466691 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.29 0.14 0.28 -1 -1 0.29 0.062348 0.0567161 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.33 18436 13 0.58 -1 -1 32636 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 17.4 MiB 1.85 1311 13291 3763 7122 2406 55.8 MiB 0.22 0.00 8.3208 -173.057 -8.3208 8.3208 1.09 0.00169452 0.00155248 0.126755 0.116275 34 4579 49 6.79088e+06 296384 618332. 2139.56 9.72 0.576887 0.519299 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.065995 0.0596471 147 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.15 17528 1 0.03 -1 -1 30012 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 17.4 MiB 2.84 1137 15768 5063 8031 2674 56.0 MiB 0.25 0.00 5.46262 -163.811 -5.46262 5.46262 1.09 0.00116984 0.00107307 0.0975617 0.0894697 34 2793 23 6.87369e+06 363320 618332. 2139.56 2.50 0.352454 0.316595 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0427335 0.0384346 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30384 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 17.3 MiB 2.31 995 9347 2406 6094 847 55.9 MiB 0.16 0.00 4.40625 -134.148 -4.40625 4.40625 1.09 0.00118972 0.00109178 0.061674 0.056611 34 2568 29 6.87369e+06 335372 618332. 2139.56 2.19 0.329611 0.295604 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.049165 0.0442191 138 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 17.2 MiB 2.46 954 15337 4637 8345 2355 55.7 MiB 0.21 0.00 4.42735 -120.659 -4.42735 4.42735 1.09 0.00102822 0.00094253 0.0877293 0.0803448 34 2485 25 6.87369e+06 293451 618332. 2139.56 2.00 0.316347 0.283453 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405266 0.0363609 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.10 17468 1 0.03 -1 -1 30120 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 17.2 MiB 0.93 990 16170 4805 9691 1674 55.7 MiB 0.23 0.00 4.56722 -126.881 -4.56722 4.56722 1.12 0.00104656 0.000959559 0.0861792 0.0790357 34 2380 21 6.87369e+06 405241 618332. 2139.56 2.13 0.307887 0.276164 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0469857 0.0420779 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30112 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 17.1 MiB 1.14 1020 12127 3332 7989 806 55.7 MiB 0.19 0.00 4.58138 -135.491 -4.58138 4.58138 1.10 0.00114263 0.00104674 0.0708246 0.0648306 28 2864 24 6.87369e+06 377294 531479. 1839.03 1.75 0.192581 0.172176 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0508992 0.0456721 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.12 17548 1 0.03 -1 -1 30152 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 17.1 MiB 1.28 1076 15643 4151 9274 2218 55.8 MiB 0.22 0.00 3.36233 -119.977 -3.36233 3.36233 1.10 0.00119656 0.00109639 0.0909206 0.0833503 28 2604 23 6.87369e+06 419215 531479. 1839.03 1.24 0.245803 0.221516 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0493979 0.0444308 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30452 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 16.8 MiB 1.94 768 11200 3422 6221 1557 55.3 MiB 0.14 0.00 3.88482 -108.503 -3.88482 3.88482 1.10 0.000888851 0.000813251 0.0623708 0.0571038 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.85 0.245005 0.218902 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0346178 0.0309264 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 29940 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.83 962 13487 3595 7903 1989 55.5 MiB 0.16 0.00 3.53179 -106.578 -3.53179 3.53179 1.09 0.000976574 0.000896195 0.0633145 0.0580553 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.85 0.2634 0.235979 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03849 0.0344779 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29964 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 925 12636 4369 6197 2070 55.7 MiB 0.18 0.00 3.30197 -112.873 -3.30197 3.30197 1.09 0.00103193 0.000944823 0.0786399 0.0720205 36 2160 23 6.87369e+06 237555 648988. 2245.63 2.16 0.298473 0.267127 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0406624 0.0363944 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.20 17480 1 0.03 -1 -1 30020 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 16.8 MiB 3.35 866 10916 3152 5921 1843 55.4 MiB 0.16 0.00 4.09393 -136.454 -4.09393 4.09393 1.09 0.00101297 0.000928277 0.0669555 0.0614164 34 2156 24 6.87369e+06 223581 618332. 2139.56 2.04 0.288252 0.258015 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416932 0.0373387 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30148 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 17.0 MiB 2.73 765 11532 2973 7641 918 55.5 MiB 0.16 0.00 4.09699 -119.415 -4.09699 4.09699 1.11 0.00100162 0.000916988 0.0721129 0.0660676 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.87 0.277695 0.248346 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0397461 0.0355601 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 29912 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.7 MiB 2.07 706 8306 1954 5512 840 55.3 MiB 0.11 0.00 3.6525 -111.833 -3.6525 3.6525 1.10 0.00095027 0.000870694 0.0477752 0.0438127 36 1988 27 6.87369e+06 237555 648988. 2245.63 2.24 0.255915 0.227923 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.036027 0.0322133 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30120 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.3 MiB 3.24 1028 16599 6315 8361 1923 55.9 MiB 0.26 0.00 4.13563 -133.6 -4.13563 4.13563 1.12 0.00116085 0.00106309 0.103384 0.0947033 34 3057 25 6.87369e+06 321398 618332. 2139.56 2.48 0.346776 0.311304 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0500973 0.0450245 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30116 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 17.2 MiB 2.16 989 10031 2534 6882 615 55.9 MiB 0.17 0.00 4.81484 -142.23 -4.81484 4.81484 1.18 0.0012104 0.00111051 0.0592255 0.0543181 32 2593 24 6.87369e+06 433189 586450. 2029.24 1.40 0.218992 0.196897 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.050661 0.0455 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17284 1 0.03 -1 -1 30128 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 614 5068 1019 3719 330 55.1 MiB 0.07 0.00 3.26207 -95.0897 -3.26207 3.26207 1.10 0.00086205 0.000790637 0.0280054 0.0257328 26 1919 28 6.87369e+06 265503 503264. 1741.40 1.22 0.146405 0.130499 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0438057 0.0392496 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17840 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 17.3 MiB 1.78 1007 16078 5563 8042 2473 55.9 MiB 0.25 0.00 3.7063 -122.467 -3.7063 3.7063 1.10 0.00120518 0.0011045 0.103101 0.0945459 34 2625 21 6.87369e+06 335372 618332. 2139.56 2.17 0.35071 0.314953 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0520151 0.0467671 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 29916 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 17.2 MiB 3.49 1032 15523 6549 8204 770 55.8 MiB 0.22 0.00 4.15353 -134.149 -4.15353 4.15353 1.09 0.00113799 0.00104339 0.0983876 0.0900048 34 2905 38 6.87369e+06 293451 618332. 2139.56 2.55 0.382702 0.343308 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.022077 0.0196645 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17664 1 0.03 -1 -1 30088 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 16.9 MiB 2.22 847 14168 4025 7985 2158 55.6 MiB 0.18 0.00 3.09156 -110.795 -3.09156 3.09156 1.10 0.00105161 0.000962638 0.0747061 0.0683976 34 2031 19 6.87369e+06 391268 618332. 2139.56 2.00 0.29416 0.263193 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0466682 0.0416947 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 29884 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 16.5 MiB 0.52 656 11276 3436 6760 1080 55.1 MiB 0.12 0.00 2.61023 -88.8242 -2.61023 2.61023 1.11 0.000769556 0.000704437 0.0566723 0.0519054 32 1559 23 6.87369e+06 195634 586450. 2029.24 1.24 0.156387 0.139138 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.25 0.07 0.25 -1 -1 0.25 0.0338849 0.0300959 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30396 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 2.59 778 9338 2420 6492 426 55.6 MiB 0.15 0.00 4.95513 -145.252 -4.95513 4.95513 1.09 0.000988702 0.000906832 0.0545129 0.0499787 34 2105 23 6.87369e+06 265503 618332. 2139.56 1.96 0.26454 0.236279 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0378891 0.0339741 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.23 17544 1 0.03 -1 -1 30196 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 17.1 MiB 0.77 985 11499 2787 8050 662 55.7 MiB 0.17 0.00 4.26399 -136.517 -4.26399 4.26399 1.09 0.00115183 0.00105591 0.0614296 0.0563335 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.51 0.254125 0.22832 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0611862 0.0549181 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30200 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 1.90 995 6701 1305 5169 227 55.7 MiB 0.13 0.00 4.31715 -129.69 -4.31715 4.31715 1.10 0.00121195 0.00111218 0.0462457 0.0424281 34 3077 27 6.87369e+06 307425 618332. 2139.56 2.87 0.319943 0.286288 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.29 0.15 0.24 -1 -1 0.29 0.0550466 0.0496728 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17368 1 0.02 -1 -1 30396 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 16.4 MiB 1.53 371 10977 3839 5013 2125 55.0 MiB 0.11 0.00 2.58413 -70.3474 -2.58413 2.58413 1.16 0.000658575 0.000601153 0.0482886 0.0441518 28 1325 27 6.87369e+06 237555 531479. 1839.03 1.15 0.136795 0.122014 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0281548 0.0249888 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17040 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.7 MiB 0.91 952 5847 1159 4467 221 55.5 MiB 0.09 0.00 4.63338 -129.909 -4.63338 4.63338 1.08 0.00101034 0.000927375 0.0331739 0.030414 30 2387 25 6.87369e+06 321398 556674. 1926.21 1.37 0.17051 0.152598 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0503555 0.0453994 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 16972 1 0.02 -1 -1 29912 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.4 MiB 0.39 704 9676 3283 5033 1360 54.9 MiB 0.06 0.00 2.58823 -84.5042 -2.58823 2.58823 1.14 0.000636772 0.000581042 0.0187246 0.0169526 28 1429 20 6.87369e+06 167686 531479. 1839.03 1.16 0.0987679 0.0873839 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.23 0.05 0.20 -1 -1 0.23 0.0209922 0.0186754 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17208 1 0.03 -1 -1 29824 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 16.6 MiB 0.75 922 10744 2499 7805 440 55.4 MiB 0.15 0.00 4.70738 -131.097 -4.70738 4.70738 1.09 0.00103964 0.000954101 0.0552546 0.0506788 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.46 0.184955 0.166174 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.22 0.13 0.19 -1 -1 0.22 0.0514779 0.0461193 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.11 17124 1 0.03 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.9 MiB 0.78 1018 15215 4457 9037 1721 55.4 MiB 0.20 0.00 3.58631 -115.037 -3.58631 3.58631 1.10 0.00105965 0.000973512 0.0766369 0.070337 28 2435 25 6.87369e+06 433189 531479. 1839.03 1.34 0.217143 0.195634 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0349007 0.0314423 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30120 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1070 17066 5177 9769 2120 55.7 MiB 0.25 0.00 4.79173 -136.462 -4.79173 4.79173 1.09 0.00111852 0.00102531 0.0955342 0.0875644 30 2520 24 6.87369e+06 391268 556674. 1926.21 1.32 0.241781 0.217889 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0391791 0.0352783 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17544 1 0.03 -1 -1 29932 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 16.7 MiB 0.82 703 9368 2220 5797 1351 55.3 MiB 0.14 0.00 3.24007 -107.338 -3.24007 3.24007 1.09 0.000969356 0.000888815 0.0558179 0.0512335 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.89 0.25784 0.230376 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.039734 0.0355098 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17204 1 0.03 -1 -1 30260 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 16.9 MiB 1.05 624 12763 3540 6427 2796 55.4 MiB 0.14 0.00 3.24697 -98.9537 -3.24697 3.24697 1.10 0.000905242 0.000828437 0.0592897 0.0542704 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.88 0.255693 0.228092 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0341161 0.0305116 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30028 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 16.9 MiB 0.82 763 12694 4114 7113 1467 55.4 MiB 0.16 0.00 3.5993 -104.629 -3.5993 3.5993 1.09 0.000895647 0.000821123 0.0706879 0.0648407 32 2109 21 6.87369e+06 251529 586450. 2029.24 1.27 0.182496 0.163976 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.24 0.09 0.16 -1 -1 0.24 0.0341036 0.0304703 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.78 834 13031 3636 7853 1542 55.5 MiB 0.17 0.00 3.99153 -123.226 -3.99153 3.99153 1.10 0.000908594 0.00083343 0.0701986 0.0643919 30 1992 21 6.87369e+06 237555 556674. 1926.21 1.21 0.185159 0.166466 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0358872 0.0320927 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30080 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 17.0 MiB 0.92 614 5831 1071 4187 573 55.5 MiB 0.08 0.00 3.5993 -104.92 -3.5993 3.5993 1.11 0.000942266 0.000863803 0.030124 0.0275994 34 1764 25 6.87369e+06 363320 618332. 2139.56 2.01 0.226207 0.201135 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0341071 0.030541 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30232 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 16.7 MiB 2.67 863 14072 4376 7539 2157 55.3 MiB 0.17 0.00 3.04756 -100.489 -3.04756 3.04756 1.10 0.000963519 0.000882567 0.0742504 0.0680318 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.93 0.282524 0.252565 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0364303 0.0325656 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 30368 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 17.2 MiB 3.11 1118 10108 2278 7040 790 55.8 MiB 0.16 0.00 4.17389 -123.088 -4.17389 4.17389 1.13 0.00125377 0.00115196 0.0551752 0.0506494 26 3090 38 6.87369e+06 558954 503264. 1741.40 2.37 0.24751 0.22246 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.21 0.37 0.10 -1 -1 0.21 0.158687 0.142126 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 30056 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 17.4 MiB 2.85 1050 18428 5889 9545 2994 55.9 MiB 0.25 0.00 3.99748 -134.85 -3.99748 3.99748 1.10 0.00126275 0.00115732 0.101552 0.0929345 30 2304 26 6.87369e+06 531006 556674. 1926.21 1.35 0.270848 0.244201 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0457081 0.0411272 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17728 1 0.03 -1 -1 29884 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.9 MiB 1.85 729 12681 4828 6102 1751 55.5 MiB 0.17 0.00 4.09163 -121.55 -4.09163 4.09163 1.10 0.000998343 0.000909436 0.0727164 0.0665998 36 2115 36 6.87369e+06 251529 648988. 2245.63 2.52 0.297918 0.266009 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0363083 0.0325031 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30232 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 17.2 MiB 2.26 953 14543 4925 6755 2863 55.8 MiB 0.22 0.00 3.78134 -121.658 -3.78134 3.78134 1.10 0.00121753 0.00111707 0.092723 0.0851141 34 2770 24 6.87369e+06 363320 618332. 2139.56 2.26 0.354562 0.318161 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0495583 0.0445299 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17748 1 0.03 -1 -1 30272 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 17.2 MiB 3.56 1511 10033 2621 6359 1053 55.9 MiB 0.19 0.00 5.60672 -170.903 -5.60672 5.60672 1.10 0.00123988 0.0011376 0.0661355 0.0606186 36 3561 24 6.87369e+06 349346 648988. 2245.63 3.19 0.335264 0.300324 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.049363 0.0444416 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17440 1 0.03 -1 -1 30244 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 17.2 MiB 3.10 1142 14964 4330 8425 2209 55.8 MiB 0.24 0.00 5.2871 -162.814 -5.2871 5.2871 1.09 0.00124341 0.0011398 0.0961406 0.0882082 34 2876 29 6.87369e+06 377294 618332. 2139.56 2.24 0.373323 0.335345 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051341 0.046205 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.24 17680 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 17.0 MiB 2.56 964 8863 1996 5999 868 55.7 MiB 0.16 0.00 4.10673 -127.256 -4.10673 4.10673 1.09 0.00115809 0.00106169 0.0560972 0.0514876 34 2616 23 6.87369e+06 349346 618332. 2139.56 2.42 0.302219 0.270847 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0481247 0.0431939 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17344 1 0.03 -1 -1 30260 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 16.9 MiB 2.31 831 14175 5092 5953 3130 55.6 MiB 0.19 0.00 4.31305 -113.651 -4.31305 4.31305 1.11 0.0010069 0.000923402 0.0803594 0.0737034 34 2736 36 6.87369e+06 279477 618332. 2139.56 2.52 0.32399 0.289731 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0434897 0.0389097 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17812 1 0.03 -1 -1 30312 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57720 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 17.6 MiB 3.07 1125 12954 3388 8890 676 56.4 MiB 0.24 0.01 4.84068 -153.465 -4.84068 4.84068 1.08 0.00147061 0.0013497 0.0843156 0.0774585 30 2992 40 6.87369e+06 531006 556674. 1926.21 1.78 0.30639 0.275453 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.059998 0.0541759 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30168 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 16.7 MiB 1.54 779 13291 4134 7087 2070 55.2 MiB 0.17 0.00 3.55895 -107.74 -3.55895 3.55895 1.09 0.00090143 0.000826536 0.0672226 0.0616137 32 2017 21 6.87369e+06 307425 586450. 2029.24 1.30 0.182823 0.163825 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0343096 0.0306247 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30016 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.1 MiB 2.12 1055 8969 2107 6380 482 55.6 MiB 0.16 0.00 4.79158 -142.334 -4.79158 4.79158 1.08 0.00114727 0.0010531 0.0571597 0.052522 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.49 0.204889 0.184461 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0488297 0.0438813 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17472 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 17.2 MiB 1.72 980 9951 2142 7372 437 55.7 MiB 0.16 0.00 3.6843 -115.486 -3.6843 3.6843 1.10 0.00114017 0.00104345 0.054876 0.0502675 32 2890 26 6.87369e+06 447163 586450. 2029.24 1.52 0.214694 0.192887 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.28 0.13 0.22 -1 -1 0.28 0.0483915 0.0435044 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17272 1 0.03 -1 -1 29916 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 17.1 MiB 0.62 972 9537 2296 6533 708 55.6 MiB 0.15 0.00 4.25479 -129.925 -4.25479 4.25479 1.10 0.00103305 0.000948691 0.0517253 0.0474601 34 2449 22 6.87369e+06 363320 618332. 2139.56 2.04 0.272205 0.243703 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.042724 0.0383319 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30144 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 2.75 1122 14450 4547 7634 2269 55.9 MiB 0.22 0.00 5.14049 -153.237 -5.14049 5.14049 1.15 0.0011651 0.00106167 0.0920349 0.0844038 34 2716 24 6.87369e+06 307425 618332. 2139.56 2.03 0.341431 0.306754 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0483511 0.0435009 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17572 1 0.03 -1 -1 30108 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 17.1 MiB 2.76 990 17178 5882 8168 3128 55.6 MiB 0.22 0.00 3.6884 -118.378 -3.6884 3.6884 1.13 0.00119028 0.00109152 0.0969832 0.0890224 30 2877 24 6.87369e+06 447163 556674. 1926.21 2.06 0.24617 0.221899 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0506258 0.0454724 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17612 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 17.3 MiB 2.72 922 18795 6474 8507 3814 56.0 MiB 0.25 0.00 4.11773 -131.117 -4.11773 4.11773 1.09 0.001253 0.00114877 0.106613 0.0977332 34 3101 29 6.87369e+06 489084 618332. 2139.56 3.81 0.394023 0.354189 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0497199 0.0445939 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17500 1 0.03 -1 -1 30112 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 17.2 MiB 0.81 881 12751 3354 7696 1701 55.7 MiB 0.18 0.00 4.26989 -123.123 -4.26989 4.26989 1.14 0.00105861 0.000969819 0.0629599 0.0576046 30 2195 22 6.87369e+06 461137 556674. 1926.21 1.25 0.19795 0.177861 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0433435 0.038876 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 1.96 1140 14450 4739 7431 2280 55.7 MiB 0.22 0.00 4.86398 -140.272 -4.86398 4.86398 0.93 0.00108809 0.00099787 0.086344 0.0792406 34 2688 26 6.87369e+06 307425 618332. 2139.56 2.17 0.324166 0.291016 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.30 0.13 0.24 -1 -1 0.30 0.0510374 0.0458698 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.23 17548 1 0.03 -1 -1 30132 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 17.1 MiB 1.94 912 13105 4297 5300 3508 55.7 MiB 0.20 0.00 4.74348 -140.694 -4.74348 4.74348 1.10 0.00121584 0.00111409 0.0919869 0.0843179 36 3390 47 6.87369e+06 307425 648988. 2245.63 6.53 0.407763 0.365761 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0444339 0.0399813 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30156 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 17.0 MiB 2.52 1089 15709 4726 9045 1938 55.6 MiB 0.26 0.00 4.3693 -136.102 -4.3693 4.3693 1.10 0.00125378 0.00114917 0.11062 0.101378 34 2963 29 6.87369e+06 293451 618332. 2139.56 2.33 0.390143 0.350441 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0414054 0.0367764 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17516 1 0.03 -1 -1 29852 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 16.7 MiB 0.65 730 9914 2670 6709 535 55.2 MiB 0.13 0.00 3.5583 -105.077 -3.5583 3.5583 1.11 0.000888448 0.000814877 0.049088 0.045012 28 1795 23 6.87369e+06 307425 531479. 1839.03 1.19 0.163896 0.146544 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.25 0.09 0.20 -1 -1 0.25 0.0366539 0.0327269 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.15 17708 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 17.1 MiB 1.58 968 15568 5616 7798 2154 55.7 MiB 0.23 0.00 3.7434 -130.891 -3.7434 3.7434 1.10 0.00111355 0.00102049 0.100662 0.0921985 34 2779 24 6.87369e+06 251529 618332. 2139.56 2.48 0.345504 0.310017 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0513225 0.0459169 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30200 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 17.4 MiB 2.65 1427 16858 5256 9636 1966 55.9 MiB 0.31 0.01 5.58608 -163.667 -5.58608 5.58608 1.12 0.00130956 0.00119393 0.116751 0.106994 34 3599 26 6.87369e+06 335372 618332. 2139.56 2.40 0.400091 0.360503 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0565629 0.0509837 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30248 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 16.9 MiB 2.71 968 18998 5516 10575 2907 55.6 MiB 0.26 0.00 4.31005 -135.578 -4.31005 4.31005 1.15 0.00114826 0.00105287 0.10061 0.0921914 28 2295 25 6.87369e+06 475111 531479. 1839.03 1.43 0.254037 0.229213 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0497725 0.0447427 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30344 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 16.6 MiB 0.69 634 6615 1367 5002 246 55.2 MiB 0.10 0.00 3.6392 -108.305 -3.6392 3.6392 1.12 0.000949142 0.000870264 0.0351363 0.0322151 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.89 0.179869 0.160598 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0409999 0.0366091 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18040 1 0.03 -1 -1 30148 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 17.5 MiB 4.62 1457 14543 4326 8631 1586 56.0 MiB 0.25 0.00 5.90291 -175.463 -5.90291 5.90291 1.15 0.00140404 0.00128981 0.106924 0.098195 34 3438 35 6.87369e+06 349346 618332. 2139.56 2.82 0.450574 0.404975 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0567522 0.0510925 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 17.1 MiB 2.91 1003 17199 4580 10530 2089 55.8 MiB 0.22 0.00 4.63938 -140.336 -4.63938 4.63938 1.09 0.00113653 0.00104279 0.086217 0.0790462 32 2464 25 6.87369e+06 489084 586450. 2029.24 1.30 0.235118 0.211893 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.25 0.14 0.25 -1 -1 0.25 0.0583252 0.0523287 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.21 17004 1 0.03 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.6 MiB 0.60 878 10618 2802 6933 883 55.1 MiB 0.13 0.00 3.66956 -107.639 -3.66956 3.66956 1.09 0.000842428 0.000772955 0.0483077 0.0443019 30 1958 22 6.87369e+06 335372 556674. 1926.21 1.20 0.153992 0.137786 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0301438 0.0269005 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30088 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 17.2 MiB 1.91 1091 19371 5911 10963 2497 55.8 MiB 0.29 0.00 5.19487 -138.438 -5.19487 5.19487 1.09 0.00119073 0.00109154 0.107031 0.0981231 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.92 0.258793 0.233494 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0504607 0.0453269 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17020 1 0.03 -1 -1 29900 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.9 MiB 0.70 765 8363 1967 5928 468 55.4 MiB 0.12 0.00 3.6502 -113.574 -3.6502 3.6502 1.14 0.000890535 0.000816823 0.0436033 0.0399958 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.94 0.230874 0.206007 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0333727 0.0298343 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30260 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 16.8 MiB 2.14 687 8418 1716 5962 740 55.4 MiB 0.11 0.00 3.88482 -111.398 -3.88482 3.88482 1.10 0.000952754 0.000872315 0.0402322 0.0367669 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.77 0.160885 0.14387 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0341463 0.0305437 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.23 17824 1 0.03 -1 -1 30200 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 17.3 MiB 3.37 1118 13105 3443 8133 1529 55.9 MiB 0.22 0.00 4.10563 -124.474 -4.10563 4.10563 1.08 0.00117506 0.00107908 0.0855685 0.0785651 34 2878 24 6.87369e+06 335372 618332. 2139.56 2.29 0.344993 0.309998 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0515055 0.0461992 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30116 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 17.3 MiB 1.97 806 8532 1884 6173 475 55.9 MiB 0.13 0.00 4.39805 -136.981 -4.39805 4.39805 1.09 0.00117657 0.0010785 0.0530477 0.0486391 34 2439 23 6.87369e+06 363320 618332. 2139.56 2.09 0.299316 0.267767 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.26 0.11 0.20 -1 -1 0.26 0.0503472 0.0451689 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 29964 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 16.9 MiB 1.96 1121 14983 4753 8344 1886 55.6 MiB 0.23 0.00 4.71348 -141.457 -4.71348 4.71348 1.08 0.00117336 0.00107288 0.089057 0.0814205 32 3230 48 6.87369e+06 377294 586450. 2029.24 1.72 0.230021 0.20632 25474 144626 -1 2572 20 1540 2596 302466 61481 4.17136 4.17136 -144.462 -4.17136 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0466228 0.0418861 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30204 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.8 MiB 3.01 883 12923 4460 6401 2062 55.2 MiB 0.18 0.00 4.76482 -134.311 -4.76482 4.76482 1.11 0.000942363 0.000863762 0.0748571 0.0686393 34 2173 23 6.87369e+06 209608 618332. 2139.56 2.03 0.275504 0.246284 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0436354 0.0389494 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 16.8 MiB 2.36 973 14184 4741 7494 1949 55.5 MiB 0.20 0.00 3.76746 -124.928 -3.76746 3.76746 1.11 0.00104036 0.000952347 0.0890098 0.0815109 34 2486 19 6.87369e+06 237555 618332. 2139.56 2.15 0.311427 0.278515 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0397929 0.0356554 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30248 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 17.3 MiB 2.32 925 17835 5186 10054 2595 55.8 MiB 0.23 0.00 3.47005 -102.148 -3.47005 3.47005 1.12 0.00109299 0.000990592 0.0916177 0.0835937 32 2458 31 6.87369e+06 475111 586450. 2029.24 1.35 0.246458 0.221357 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464306 0.0415659 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.20 17204 1 0.03 -1 -1 30228 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 16.9 MiB 1.66 875 14783 4032 9129 1622 55.5 MiB 0.18 0.00 4.05975 -105.458 -4.05975 4.05975 1.12 0.000964005 0.00088451 0.0674525 0.0617504 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.63 0.198666 0.178204 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0397022 0.0354872 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30284 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 2.48 802 13599 4534 7471 1594 55.4 MiB 0.20 0.00 4.04073 -123.042 -4.04073 4.04073 1.10 0.00104353 0.000956607 0.0865742 0.0793737 28 2087 22 6.87369e+06 237555 531479. 1839.03 1.61 0.221733 0.199532 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.23 0.11 0.17 -1 -1 0.23 0.0433918 0.0388331 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17492 1 0.03 -1 -1 29956 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 17.1 MiB 2.50 1020 11806 3110 7534 1162 55.6 MiB 0.19 0.00 3.6756 -125.066 -3.6756 3.6756 1.11 0.00115759 0.00106548 0.0776347 0.0711589 34 2679 22 6.87369e+06 237555 618332. 2139.56 2.27 0.3156 0.282166 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0407596 0.0366541 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17216 1 0.03 -1 -1 30240 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 17.2 MiB 0.70 1014 15430 4861 8054 2515 55.7 MiB 0.21 0.00 4.6284 -133.663 -4.6284 4.6284 1.08 0.00103659 0.000950404 0.0778856 0.0713369 32 2693 29 6.87369e+06 433189 586450. 2029.24 1.45 0.2229 0.200597 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0394341 0.0354115 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.1 MiB 2.97 1172 16215 5632 8430 2153 55.8 MiB 0.28 0.01 4.82738 -155.303 -4.82738 4.82738 1.08 0.00118466 0.00108712 0.102786 0.0943375 34 3239 22 6.87369e+06 321398 618332. 2139.56 2.29 0.351728 0.316263 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0471756 0.0424646 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30156 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 17.5 MiB 3.44 951 10308 2331 7565 412 55.9 MiB 0.17 0.00 5.39654 -155.229 -5.39654 5.39654 1.08 0.00125147 0.00114661 0.0602278 0.0551991 34 2817 24 6.87369e+06 503058 618332. 2139.56 2.75 0.326765 0.292969 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.056744 0.0509518 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17612 1 0.03 -1 -1 30200 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 17.2 MiB 2.80 1114 12702 3372 8526 804 55.9 MiB 0.20 0.00 4.59844 -147.406 -4.59844 4.59844 1.10 0.00127091 0.00116653 0.0701108 0.0641225 28 3068 25 6.87369e+06 572927 531479. 1839.03 2.18 0.240863 0.216813 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.0596606 0.0535772 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17224 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 17.0 MiB 2.21 643 13768 5811 6950 1007 55.6 MiB 0.17 0.00 4.04073 -117.599 -4.04073 4.04073 1.12 0.000933645 0.000855475 0.0788415 0.0722911 36 1975 29 6.87369e+06 237555 648988. 2245.63 3.07 0.292429 0.261508 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.25 0.04 0.13 -1 -1 0.25 0.015893 0.0140921 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30204 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 17.2 MiB 3.14 958 7038 1640 4840 558 55.8 MiB 0.13 0.00 4.57902 -143.19 -4.57902 4.57902 1.15 0.00122002 0.00111677 0.050452 0.0462371 34 2472 21 6.87369e+06 307425 618332. 2139.56 2.20 0.308633 0.276604 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.26 0.12 0.26 -1 -1 0.26 0.0489913 0.0441345 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30100 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.1 MiB 2.30 1035 6615 1396 4961 258 55.7 MiB 0.13 0.00 5.21006 -150.271 -5.21006 5.21006 1.09 0.00116252 0.00106808 0.0434835 0.0399114 34 2845 24 6.87369e+06 321398 618332. 2139.56 2.44 0.292221 0.261153 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0490046 0.0440331 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30200 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1178 17839 5313 10611 1915 55.8 MiB 0.26 0.00 5.241 -151.339 -5.241 5.241 1.09 0.00112774 0.00103357 0.102139 0.0936497 36 2587 21 6.87369e+06 391268 648988. 2245.63 2.24 0.339207 0.304504 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.28 0.11 0.24 -1 -1 0.28 0.0454221 0.040835 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 17.2 MiB 2.34 1032 10531 2482 6524 1525 55.7 MiB 0.16 0.00 4.69758 -143.214 -4.69758 4.69758 1.10 0.0012019 0.00110052 0.0626885 0.0574338 32 2579 23 6.87369e+06 447163 586450. 2029.24 1.35 0.220934 0.198548 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0501669 0.045029 135 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17788 1 0.03 -1 -1 30120 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1030 11245 3242 7121 882 55.7 MiB 0.19 0.00 4.79284 -145.044 -4.79284 4.79284 1.09 0.00120243 0.00110169 0.0754728 0.0691563 34 2708 22 6.87369e+06 293451 618332. 2139.56 2.20 0.328567 0.294923 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0549061 0.0492868 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.18 17780 1 0.02 -1 -1 30104 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 17.0 MiB 2.35 973 10944 3003 6644 1297 55.6 MiB 0.17 0.00 4.08063 -124.263 -4.08063 4.08063 1.10 0.00119469 0.00109372 0.0683323 0.0626063 34 2457 23 6.87369e+06 405241 618332. 2139.56 2.19 0.326548 0.29268 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0535818 0.0480871 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.16 17040 1 0.03 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.7 MiB 0.60 780 13906 5362 7318 1226 55.1 MiB 0.18 0.00 4.08063 -122.384 -4.08063 4.08063 1.23 0.00088075 0.000808531 0.0728737 0.0668639 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.90 0.289997 0.259228 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0347832 0.0310972 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.16 17632 1 0.02 -1 -1 30136 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 17.4 MiB 4.09 1081 9548 2182 6489 877 55.9 MiB 0.15 0.00 4.62608 -140.581 -4.62608 4.62608 1.08 0.00121786 0.0011163 0.0547578 0.0501773 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.49 0.225313 0.202471 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.047923 0.04307 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30208 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 17.2 MiB 3.47 1050 13477 3452 8462 1563 55.9 MiB 0.24 0.00 4.60818 -154.696 -4.60818 4.60818 1.08 0.0012808 0.001174 0.0963612 0.0883918 34 2764 25 6.87369e+06 293451 618332. 2139.56 2.80 0.383849 0.344758 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488461 0.0440008 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17504 1 0.02 -1 -1 29888 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 16.8 MiB 2.79 803 10744 3029 6489 1226 55.3 MiB 0.16 0.00 4.47622 -122.656 -4.47622 4.47622 1.09 0.000939872 0.000862157 0.0608998 0.0558999 34 2330 21 6.87369e+06 223581 618332. 2139.56 2.08 0.227181 0.202151 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.28 0.04 0.25 -1 -1 0.28 0.0160197 0.0142619 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30232 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 17.0 MiB 0.64 704 7103 1505 5021 577 55.5 MiB 0.11 0.00 4.06963 -117.109 -4.06963 4.06963 1.09 0.00088824 0.000815197 0.0371049 0.0340427 30 1825 19 6.87369e+06 279477 556674. 1926.21 1.18 0.142927 0.127765 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.25 0.07 0.22 -1 -1 0.25 0.0292888 0.0262723 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17544 1 0.04 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 17.3 MiB 2.65 1122 16407 5100 9312 1995 55.9 MiB 0.27 0.00 4.76368 -149.576 -4.76368 4.76368 1.10 0.00116865 0.00107344 0.103522 0.0950554 34 3132 23 6.87369e+06 321398 618332. 2139.56 2.46 0.359398 0.323537 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0469041 0.0421885 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 17.3 MiB 2.30 1027 10087 2665 7077 345 55.9 MiB 0.16 0.00 5.28228 -152.543 -5.28228 5.28228 1.12 0.00138567 0.00128784 0.0614257 0.0563639 36 2623 39 6.87369e+06 377294 648988. 2245.63 2.62 0.344948 0.308984 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0445001 0.0400465 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 29956 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.93 1027 19820 5642 10737 3441 55.8 MiB 0.29 0.00 5.45503 -148.146 -5.45503 5.45503 1.08 0.00121612 0.00111807 0.107206 0.098231 30 3056 37 6.87369e+06 503058 556674. 1926.21 1.58 0.292952 0.26461 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.26 0.12 0.21 -1 -1 0.26 0.05014 0.0451766 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29952 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 17.2 MiB 2.23 803 13893 3888 7187 2818 55.6 MiB 0.18 0.00 3.64131 -107.005 -3.64131 3.64131 1.09 0.00105043 0.000962367 0.0692627 0.0634947 32 2150 23 6.87369e+06 475111 586450. 2029.24 1.33 0.204167 0.183648 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0445553 0.0398193 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17396 1 0.03 -1 -1 30448 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 16.7 MiB 0.89 507 7132 1637 4881 614 55.2 MiB 0.09 0.00 3.6605 -96.1635 -3.6605 3.6605 1.08 0.000876497 0.000803229 0.0385784 0.035388 30 1496 20 6.87369e+06 293451 556674. 1926.21 1.23 0.147884 0.132483 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.25 0.06 0.22 -1 -1 0.25 0.0302516 0.0270396 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.22 18076 1 0.03 -1 -1 30104 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 3.22 1378 10228 2746 6595 887 56.2 MiB 0.20 0.01 4.35815 -140.01 -4.35815 4.35815 1.08 0.000949139 0.000853683 0.0530295 0.047898 34 3944 37 6.87369e+06 335372 618332. 2139.56 4.04 0.378197 0.338351 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515533 0.0464878 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17728 1 0.04 -1 -1 30128 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 17.3 MiB 3.75 1036 15709 5736 7909 2064 55.9 MiB 0.24 0.00 5.60997 -168.26 -5.60997 5.60997 1.09 0.00118652 0.00108835 0.103341 0.0947328 34 2870 35 6.87369e+06 307425 618332. 2139.56 2.65 0.384237 0.345103 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0533136 0.0479038 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.18 17616 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 17.0 MiB 3.86 954 12542 3477 7836 1229 55.6 MiB 0.18 0.00 4.34735 -144.276 -4.34735 4.34735 1.06 0.00107359 0.000982983 0.0781178 0.0715394 34 2396 24 6.87369e+06 251529 618332. 2139.56 2.40 0.311446 0.278793 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.042494 0.0380972 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30228 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 17.3 MiB 1.02 986 18523 6141 9875 2507 55.9 MiB 0.24 0.00 5.03998 -136.555 -5.03998 5.03998 1.09 0.00111349 0.00101161 0.0951427 0.0870949 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.68 0.242867 0.21878 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.25 0.12 0.20 -1 -1 0.25 0.0481912 0.0431683 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17620 1 0.03 -1 -1 30028 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 17.3 MiB 1.74 1064 18301 5445 10263 2593 55.9 MiB 0.26 0.00 4.47348 -130.92 -4.47348 4.47348 1.08 0.00123397 0.0011278 0.104567 0.0959235 32 2670 22 6.87369e+06 475111 586450. 2029.24 1.32 0.263812 0.238508 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0509373 0.045852 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29960 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1005 13953 3900 8706 1347 55.7 MiB 0.19 0.00 3.71604 -108.811 -3.71604 3.71604 1.09 0.00109393 0.00100419 0.0751879 0.0689936 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.97 0.302462 0.270903 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0372075 0.0333996 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30196 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 17.3 MiB 2.95 1158 14261 4788 7245 2228 56.0 MiB 0.24 0.00 4.84864 -152.871 -4.84864 4.84864 1.12 0.0011773 0.00108035 0.0944781 0.0867188 34 3462 28 6.87369e+06 307425 618332. 2139.56 3.68 0.362373 0.325262 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0525623 0.0472511 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 29960 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 2.79 1138 19124 5521 11431 2172 56.0 MiB 0.27 0.00 4.13563 -138.632 -4.13563 4.13563 1.09 0.00125792 0.00115354 0.106942 0.0980626 28 2715 22 6.87369e+06 503058 531479. 1839.03 1.39 0.26827 0.24226 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.20 0.06 0.10 -1 -1 0.20 0.0200243 0.0178352 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30208 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 1.67 666 12120 4433 5222 2465 55.2 MiB 0.15 0.00 3.97634 -118.279 -3.97634 3.97634 1.10 0.000929794 0.000851847 0.0688721 0.0631396 32 1713 25 6.87369e+06 265503 586450. 2029.24 1.25 0.19052 0.171138 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0303425 0.0272215 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.14 17548 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 17.0 MiB 1.49 954 14256 4666 7594 1996 55.7 MiB 0.21 0.00 4.32352 -124.508 -4.32352 4.32352 1.11 0.00102158 0.000935586 0.0956169 0.0875227 30 2387 23 6.87369e+06 237555 556674. 1926.21 1.27 0.226536 0.203784 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0317896 0.0285409 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.16 17776 1 0.03 -1 -1 30352 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1008 17238 4626 10206 2406 55.5 MiB 0.22 0.00 4.58512 -131.297 -4.58512 4.58512 1.10 0.00110649 0.00101395 0.083692 0.0766199 28 2463 22 6.87369e+06 544980 531479. 1839.03 1.52 0.225352 0.203057 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0448876 0.0404245 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30248 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 766 12464 3650 7053 1761 55.5 MiB 0.18 0.00 4.72278 -121.674 -4.72278 4.72278 1.09 0.000899171 0.000824059 0.0680569 0.0624196 36 2048 24 6.87369e+06 265503 648988. 2245.63 2.22 0.259798 0.23211 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.0344255 0.0307369 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17292 1 0.03 -1 -1 29988 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 16.6 MiB 2.82 839 11909 3234 7671 1004 55.3 MiB 0.16 0.00 4.09853 -129.483 -4.09853 4.09853 1.09 0.000955564 0.000875816 0.0697271 0.0639335 34 2157 23 6.87369e+06 209608 618332. 2139.56 2.01 0.271515 0.242682 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0388064 0.0346758 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30048 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 17.1 MiB 2.53 942 11236 2692 7798 746 55.8 MiB 0.18 0.00 3.93572 -125.697 -3.93572 3.93572 1.10 0.00121872 0.00111753 0.0625795 0.0573494 30 2084 23 6.87369e+06 517032 556674. 1926.21 1.28 0.219862 0.197751 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.26 0.11 0.22 -1 -1 0.26 0.052524 0.0471849 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17608 1 0.02 -1 -1 30212 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 17.0 MiB 2.70 854 11604 2702 8073 829 55.4 MiB 0.15 0.00 3.71466 -115.66 -3.71466 3.71466 1.09 0.000909409 0.000834046 0.0640496 0.0587601 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.85 0.254782 0.227738 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0421916 0.0375718 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17656 1 0.03 -1 -1 29856 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 17.5 MiB 2.67 1000 15215 3699 9919 1597 55.8 MiB 0.21 0.00 3.6733 -115.913 -3.6733 3.6733 1.09 0.001153 0.00105707 0.0841343 0.0771503 28 2463 22 6.87369e+06 433189 531479. 1839.03 1.49 0.229766 0.206956 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0396763 0.0356484 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 17.3 MiB 2.98 1013 12839 3510 8051 1278 55.9 MiB 0.19 0.00 3.7214 -127.022 -3.7214 3.7214 1.08 0.00124903 0.00114422 0.0775456 0.0710626 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.73 0.258758 0.232835 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.25 0.13 0.21 -1 -1 0.25 0.0455104 0.0407095 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17352 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 868 13324 3871 8104 1349 55.4 MiB 0.18 0.00 3.6034 -114.008 -3.6034 3.6034 1.08 0.000996912 0.000912568 0.0799895 0.0732793 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.91 0.28921 0.258746 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0394106 0.035257 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30100 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.9 MiB 1.58 974 10050 2495 6517 1038 55.6 MiB 0.16 0.00 4.16989 -130.796 -4.16989 4.16989 1.11 0.00098787 0.000905254 0.0631511 0.0579007 34 2564 21 6.87369e+06 251529 618332. 2139.56 2.08 0.27106 0.242437 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.31 0.11 0.24 -1 -1 0.31 0.0424128 0.0379621 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30108 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 17.1 MiB 2.48 1073 14072 3847 8138 2087 55.7 MiB 0.20 0.00 4.82103 -137.111 -4.82103 4.82103 1.11 0.00109851 0.00100928 0.0844716 0.0775679 34 2766 23 6.87369e+06 307425 618332. 2139.56 2.08 0.315806 0.283463 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0193705 0.0171787 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 29992 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 17.3 MiB 2.49 938 11346 3139 7252 955 55.8 MiB 0.16 0.00 4.10263 -113.928 -4.10263 4.10263 1.11 0.00107475 0.000986281 0.0640514 0.0588362 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.93 0.289988 0.259928 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.26 0.08 0.25 -1 -1 0.26 0.0389622 0.0349934 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.22 17824 1 0.03 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.79 1137 15773 5092 8347 2334 56.0 MiB 0.28 0.00 5.16181 -165.054 -5.16181 5.16181 1.09 0.00130906 0.00119311 0.112351 0.102992 34 3224 24 6.87369e+06 307425 618332. 2139.56 2.61 0.388666 0.349664 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0569407 0.0512193 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17100 1 0.03 -1 -1 30280 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.7 MiB 0.60 812 10400 2700 6281 1419 55.1 MiB 0.12 0.00 3.6213 -110.383 -3.6213 3.6213 1.11 0.000842088 0.000771452 0.0527955 0.0484241 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.82 0.225149 0.200948 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0318271 0.0284424 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17728 1 0.03 -1 -1 30128 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 17.3 MiB 1.69 1097 18567 5571 11084 1912 55.9 MiB 0.27 0.00 4.4584 -148.753 -4.4584 4.4584 1.12 0.00130361 0.0011944 0.109622 0.100463 30 2603 24 6.87369e+06 489084 556674. 1926.21 1.43 0.280123 0.252783 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0410474 0.0364312 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 3.91 823 13152 5512 7421 219 55.7 MiB 0.20 0.00 3.7595 -132.319 -3.7595 3.7595 1.10 0.00118193 0.00108238 0.0939533 0.08612 34 2123 27 6.87369e+06 223581 618332. 2139.56 2.13 0.351096 0.314821 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0447468 0.0401457 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29960 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 17.1 MiB 2.57 1010 10827 2581 6963 1283 55.6 MiB 0.17 0.00 4.11773 -126.026 -4.11773 4.11773 1.08 0.00118874 0.00109018 0.0620615 0.0569473 34 2332 20 6.87369e+06 447163 618332. 2139.56 2.01 0.307847 0.276149 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0468096 0.0420486 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.23 18084 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 17.7 MiB 3.64 1280 16127 4711 8958 2458 56.1 MiB 0.28 0.00 5.89191 -180.703 -5.89191 5.89191 1.09 0.00132585 0.00121743 0.111749 0.102668 34 3352 23 6.87369e+06 349346 618332. 2139.56 2.41 0.395509 0.356546 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0604442 0.0546346 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.19 17480 1 0.02 -1 -1 29964 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 16.5 MiB 1.17 668 8716 2078 6018 620 55.1 MiB 0.11 0.00 3.01966 -95.583 -3.01966 3.01966 1.10 0.000781149 0.000715061 0.0441248 0.0404433 30 1784 17 6.87369e+06 209608 556674. 1926.21 1.18 0.135647 0.121124 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0279875 0.0249234 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30028 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 16.8 MiB 1.00 599 7081 1635 4909 537 55.3 MiB 0.11 0.00 4.05453 -121.132 -4.05453 4.05453 1.10 0.000976291 0.000894533 0.0419876 0.0385206 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.89 0.249608 0.222525 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419196 0.0374511 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 29852 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 16.9 MiB 0.90 913 15639 4952 8936 1751 55.5 MiB 0.21 0.00 3.6323 -121.89 -3.6323 3.6323 1.14 0.00100898 0.000923269 0.0854976 0.0783747 32 2483 25 6.87369e+06 321398 586450. 2029.24 1.37 0.220001 0.197839 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0444065 0.0396879 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17272 1 0.03 -1 -1 30108 -1 -1 29 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 16.6 MiB 0.67 516 9536 2821 4714 2001 55.2 MiB 0.10 0.00 3.5473 -82.6349 -3.5473 3.5473 1.08 0.000754772 0.000691971 0.0398559 0.0364914 28 1443 23 6.87369e+06 405241 531479. 1839.03 1.19 0.140077 0.125285 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.23 0.06 0.20 -1 -1 0.23 0.0246274 0.0219489 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30056 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 2.39 974 10332 2610 6542 1180 55.8 MiB 0.19 0.00 4.3434 -128.294 -4.3434 4.3434 1.14 0.00121372 0.00111187 0.0751841 0.0689215 34 2904 44 6.87369e+06 279477 618332. 2139.56 2.51 0.375446 0.336266 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0523892 0.0470825 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30072 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 17.3 MiB 2.74 978 9679 2433 6610 636 56.0 MiB 0.17 0.00 4.12463 -132.597 -4.12463 4.12463 1.12 0.00129922 0.00119127 0.0622183 0.0570443 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.50 0.231302 0.207896 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0554607 0.049848 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 29852 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 16.9 MiB 2.41 1101 11203 3178 6921 1104 55.7 MiB 0.20 0.00 5.42457 -156.316 -5.42457 5.42457 1.10 0.00116999 0.00107401 0.0707159 0.0648736 34 2918 37 6.89349e+06 338252 618332. 2139.56 2.53 0.34045 0.304834 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.048453 0.043536 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30368 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1174 12178 3196 7626 1356 55.6 MiB 0.18 0.00 4.90208 -149.95 -4.90208 4.90208 1.08 0.00118351 0.00108464 0.0616883 0.0564942 34 3129 45 6.89349e+06 366440 618332. 2139.56 2.46 0.357007 0.319714 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0467514 0.042037 156 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17812 1 0.03 -1 -1 30128 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1048 13663 4160 7949 1554 55.5 MiB 0.19 0.00 4.2044 -120.612 -4.2044 4.2044 1.11 0.00102325 0.000938471 0.0781961 0.0716981 34 2461 28 6.89349e+06 295971 618332. 2139.56 2.12 0.303587 0.271854 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0354234 0.0317938 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30288 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 16.6 MiB 1.52 1070 14593 4351 8219 2023 55.4 MiB 0.21 0.00 4.83618 -131.951 -4.83618 4.83618 1.09 0.00105111 0.000963304 0.0852205 0.0782145 34 2512 27 6.89349e+06 338252 618332. 2139.56 2.06 0.31508 0.282658 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429473 0.0385581 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30044 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 17.1 MiB 1.32 1121 10839 3086 5720 2033 55.5 MiB 0.19 0.00 5.28221 -151.791 -5.28221 5.28221 0.97 0.00113639 0.00103991 0.0670779 0.0614667 36 3048 26 6.89349e+06 324158 648988. 2245.63 3.55 0.31048 0.27811 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0432058 0.0385289 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17584 1 0.02 -1 -1 30204 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1263 20077 7001 10670 2406 55.7 MiB 0.30 0.00 3.92406 -127.128 -3.92406 3.92406 1.15 0.00120144 0.00110244 0.11208 0.102649 34 3484 24 6.89349e+06 465097 618332. 2139.56 2.61 0.371212 0.333474 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515025 0.0462788 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30380 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 16.9 MiB 1.19 795 13496 4096 7659 1741 55.3 MiB 0.16 0.00 4.14623 -113.724 -4.14623 4.14623 1.09 0.000888098 0.000815107 0.0721262 0.0661767 34 1922 21 6.89349e+06 295971 618332. 2139.56 2.00 0.258775 0.231576 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0335578 0.0299897 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 29928 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.67 908 11759 3095 6971 1693 55.3 MiB 0.15 0.00 3.40307 -102.549 -3.40307 3.40307 1.10 0.000971539 0.000889757 0.0555657 0.0508322 26 2334 21 6.89349e+06 451003 503264. 1741.40 1.43 0.176757 0.158589 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0377604 0.0337631 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30120 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 16.7 MiB 1.53 1042 10703 3845 4978 1880 55.4 MiB 0.20 0.00 3.68945 -124.167 -3.68945 3.68945 1.11 0.00103459 0.000947371 0.0793581 0.0726625 34 2732 28 6.89349e+06 281877 618332. 2139.56 2.36 0.305437 0.273044 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0408479 0.0365779 130 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.21 17500 1 0.03 -1 -1 29944 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 16.9 MiB 1.88 928 7914 1841 5211 862 55.6 MiB 0.13 0.00 4.05148 -133.476 -4.05148 4.05148 1.13 0.00101975 0.000935752 0.0477819 0.0438732 34 2363 46 6.89349e+06 253689 618332. 2139.56 2.37 0.290287 0.258505 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0365416 0.0327777 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17684 1 0.03 -1 -1 30200 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 16.8 MiB 1.96 867 6563 1487 4637 439 55.5 MiB 0.11 0.00 4.47797 -127.666 -4.47797 4.47797 1.12 0.000994547 0.000910901 0.0389475 0.0356947 34 2468 30 6.89349e+06 295971 618332. 2139.56 2.23 0.257033 0.22862 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0371875 0.0332689 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30016 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.9 MiB 1.45 849 7781 1935 5506 340 55.4 MiB 0.12 0.00 3.6807 -111.961 -3.6807 3.6807 1.09 0.000929661 0.000850217 0.0449377 0.0412336 34 2156 24 6.89349e+06 239595 618332. 2139.56 2.36 0.246374 0.219598 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0341546 0.0305702 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.0 MiB 1.90 1060 16407 4994 8930 2483 55.4 MiB 0.26 0.00 4.09068 -131.143 -4.09068 4.09068 1.09 0.00115792 0.00106196 0.101972 0.0935371 34 2942 46 6.89349e+06 324158 618332. 2139.56 2.63 0.393758 0.353569 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0449367 0.040455 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30132 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 17.2 MiB 1.62 1222 15298 4935 8519 1844 55.7 MiB 0.24 0.00 5.57191 -161.898 -5.57191 5.57191 1.17 0.00118854 0.00108913 0.0975506 0.0893348 38 2640 21 6.89349e+06 338252 678818. 2348.85 2.56 0.345164 0.310073 26626 170182 -1 2332 20 1682 2320 155536 33971 4.52865 4.52865 -151.53 -4.52865 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0536948 0.0483999 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.11 17604 1 0.03 -1 -1 30256 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 16.6 MiB 1.70 847 11909 3522 6229 2158 55.1 MiB 0.14 0.00 3.19582 -98.7926 -3.19582 3.19582 1.10 0.000872989 0.000788946 0.0631276 0.0578404 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.98 0.242886 0.216685 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.23 0.04 0.12 -1 -1 0.23 0.0143751 0.0126857 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30164 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 17.1 MiB 2.01 1270 15103 4761 8086 2256 55.6 MiB 0.24 0.00 4.1162 -136.486 -4.1162 4.1162 1.09 0.0012161 0.00111529 0.0979038 0.0897764 38 3035 24 6.89349e+06 338252 678818. 2348.85 2.57 0.356769 0.320539 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.28 0.12 0.23 -1 -1 0.28 0.0438613 0.0394882 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17768 1 0.03 -1 -1 29896 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1061 15017 4935 7452 2630 55.4 MiB 0.14 0.00 4.12104 -133.123 -4.12104 4.12104 0.96 0.000419707 0.000379457 0.0429257 0.0388442 36 2514 26 6.89349e+06 310065 648988. 2245.63 2.59 0.29294 0.261586 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0432386 0.0388841 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30172 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 17.2 MiB 1.61 1121 14407 4796 7561 2050 55.7 MiB 0.22 0.00 3.60799 -127.319 -3.60799 3.60799 1.16 0.00106225 0.000973792 0.0847125 0.0776114 36 2593 20 6.89349e+06 295971 648988. 2245.63 3.04 0.304621 0.272792 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.27 0.10 0.29 -1 -1 0.27 0.0402344 0.0360718 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17348 1 0.02 -1 -1 30120 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 16.3 MiB 0.92 565 9205 3754 4929 522 54.9 MiB 0.10 0.00 2.67033 -85.3827 -2.67033 2.67033 1.11 0.000766292 0.000701186 0.0453218 0.041492 38 1394 30 6.89349e+06 211408 678818. 2348.85 2.35 0.215072 0.191016 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.30 0.05 0.27 -1 -1 0.30 0.0214664 0.0192116 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30208 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 16.6 MiB 1.95 986 14322 4290 8044 1988 55.3 MiB 0.20 0.00 4.76552 -144.771 -4.76552 4.76552 1.08 0.000993936 0.00091169 0.0824551 0.0756243 34 2322 29 6.89349e+06 267783 618332. 2139.56 2.35 0.301307 0.269772 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0391706 0.0350955 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30324 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 16.9 MiB 1.05 1121 13823 3432 8585 1806 55.4 MiB 0.21 0.00 4.71322 -150.624 -4.71322 4.71322 1.11 0.00115309 0.00105758 0.0808698 0.0741945 34 2727 22 6.89349e+06 479191 618332. 2139.56 2.45 0.325451 0.292304 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.045417 0.0408348 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17532 1 0.04 -1 -1 30056 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 17.0 MiB 1.27 1277 12375 3467 7863 1045 55.6 MiB 0.21 0.00 4.43295 -138.206 -4.43295 4.43295 1.09 0.00120896 0.00110818 0.0814355 0.0747213 36 3078 26 6.89349e+06 324158 648988. 2245.63 2.91 0.344704 0.309478 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0498654 0.044811 155 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17364 1 0.02 -1 -1 30480 -1 -1 19 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 16.4 MiB 1.15 448 11324 4682 5071 1571 55.0 MiB 0.11 0.00 2.70371 -73.039 -2.70371 2.70371 1.10 0.000668651 0.000611422 0.048423 0.0443188 36 1409 29 6.89349e+06 267783 648988. 2245.63 2.16 0.194675 0.172987 26050 158493 -1 1053 24 894 1077 88226 21748 2.34066 2.34066 -71.8008 -2.34066 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0301797 0.0267521 76 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17024 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.6 MiB 0.77 989 9879 2312 6247 1320 55.1 MiB 0.15 0.00 4.42392 -127.052 -4.42392 4.42392 1.06 0.00100943 0.000925967 0.0545601 0.0500587 34 2328 22 6.89349e+06 324158 618332. 2139.56 2.17 0.268062 0.240014 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416674 0.0374105 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 17112 1 0.02 -1 -1 29876 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.2 MiB 0.32 477 9356 3828 5185 343 54.6 MiB 0.09 0.00 2.35052 -74.7133 -2.35052 2.35052 1.08 0.000639511 0.000582364 0.038773 0.03532 30 1271 33 6.89349e+06 169126 556674. 1926.21 1.14 0.129711 0.115253 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0140638 0.0124422 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 1.48 1046 9966 2582 6701 683 55.3 MiB 0.15 0.00 4.91481 -138.303 -4.91481 4.91481 1.09 0.00101862 0.000931057 0.0586525 0.0537516 34 2316 22 6.89349e+06 281877 618332. 2139.56 2.14 0.277801 0.248581 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0391267 0.0351274 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17012 1 0.03 -1 -1 30240 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.64 1030 18239 5331 10544 2364 55.3 MiB 0.24 0.00 3.48935 -111.917 -3.48935 3.48935 1.09 0.0010491 0.000962946 0.0915034 0.0839396 30 2299 29 6.89349e+06 436909 556674. 1926.21 1.34 0.23682 0.213464 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.26 0.08 0.21 -1 -1 0.26 0.0375984 0.0337884 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 17.2 MiB 2.02 1031 15255 4057 8092 3106 55.7 MiB 0.23 0.00 4.82008 -133.501 -4.82008 4.82008 1.12 0.00112104 0.0010277 0.0930646 0.0853435 34 2929 28 6.89349e+06 324158 618332. 2139.56 2.78 0.342166 0.307 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0443954 0.0399037 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.11 17224 1 0.03 -1 -1 29900 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1042 13556 4378 7182 1996 55.2 MiB 0.19 0.00 3.7536 -126.104 -3.7536 3.7536 1.10 0.00113128 0.00105035 0.0803766 0.0736858 34 2426 26 6.89349e+06 239595 618332. 2139.56 2.04 0.290635 0.25973 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.24 0.05 0.12 -1 -1 0.24 0.0166746 0.0147078 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 1.63 868 13092 4092 7012 1988 55.3 MiB 0.17 0.00 4.03552 -117.607 -4.03552 4.03552 1.09 0.000896087 0.00082059 0.071822 0.065778 34 2273 22 6.89349e+06 239595 618332. 2139.56 2.25 0.267221 0.238698 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.28 0.09 0.25 -1 -1 0.28 0.0357378 0.0319324 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17460 1 0.02 -1 -1 29920 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 757 6960 1669 4834 457 55.1 MiB 0.12 0.00 4.17394 -114.526 -4.17394 4.17394 1.09 0.000893271 0.000819668 0.0403095 0.037033 30 2142 28 6.89349e+06 281877 556674. 1926.21 1.39 0.168933 0.150963 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.24 0.08 0.22 -1 -1 0.24 0.0352533 0.0314846 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17028 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.55 835 13031 3792 7568 1671 55.1 MiB 0.17 0.00 3.90738 -121.629 -3.90738 3.90738 1.12 0.000908942 0.000833344 0.0704029 0.0646176 32 2291 36 6.89349e+06 239595 586450. 2029.24 1.41 0.206848 0.185739 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0359568 0.032174 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30048 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 16.7 MiB 1.41 912 9006 2499 5943 564 55.2 MiB 0.13 0.00 3.63671 -112.55 -3.63671 3.63671 1.13 0.000933996 0.000856839 0.0519347 0.0476752 30 2196 23 6.89349e+06 253689 556674. 1926.21 1.26 0.174399 0.156414 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0305519 0.0273845 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.12 17860 1 0.03 -1 -1 30236 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 16.6 MiB 1.65 982 10163 2807 6505 851 55.3 MiB 0.14 0.00 3.48715 -105.954 -3.48715 3.48715 0.99 0.00096495 0.000884049 0.0570174 0.0522218 36 2114 24 6.89349e+06 310065 648988. 2245.63 2.45 0.26291 0.234465 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0336119 0.0301273 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17724 1 0.03 -1 -1 30264 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1339 15137 4138 9246 1753 55.5 MiB 0.24 0.00 4.47915 -132.321 -4.47915 4.47915 1.15 0.000855396 0.000769602 0.0922264 0.0843865 34 2963 23 6.89349e+06 352346 618332. 2139.56 2.18 0.353305 0.317536 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.24 0.06 0.13 -1 -1 0.24 0.0212141 0.0188836 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30192 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 16.9 MiB 2.00 1289 13933 4065 8243 1625 55.9 MiB 0.13 0.00 4.58977 -156.464 -4.58977 4.58977 0.75 0.000474319 0.000428862 0.0356744 0.0323105 36 2961 23 6.89349e+06 338252 648988. 2245.63 1.70 0.136686 0.120035 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.24 0.06 0.13 -1 -1 0.24 0.0203993 0.0182145 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17768 1 0.04 -1 -1 29988 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 765 12506 3068 7484 1954 55.2 MiB 0.17 0.00 3.98848 -116.551 -3.98848 3.98848 1.12 0.000891858 0.000819741 0.0645346 0.0593975 36 1999 20 6.89349e+06 253689 648988. 2245.63 2.38 0.266121 0.238064 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0388434 0.034696 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 17.2 MiB 2.00 1249 10813 2744 7185 884 56.0 MiB 0.18 0.00 4.24063 -135.696 -4.24063 4.24063 1.08 0.00120535 0.00110488 0.0702303 0.0644228 34 3153 26 6.89349e+06 352346 618332. 2139.56 2.41 0.329828 0.295815 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0437508 0.0393666 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 17.0 MiB 2.38 1247 16273 5220 8383 2670 55.9 MiB 0.27 0.00 5.45989 -162.138 -5.45989 5.45989 1.08 0.0012211 0.00111937 0.105353 0.0966131 36 3304 23 6.89349e+06 352346 648988. 2245.63 3.32 0.353796 0.317752 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.052753 0.0474798 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30268 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1201 15298 5197 6778 3323 55.7 MiB 0.24 0.00 5.99918 -171.098 -5.99918 5.99918 1.16 0.00123778 0.00113383 0.100202 0.0918153 36 3723 40 6.89349e+06 352346 648988. 2245.63 4.55 0.404594 0.363088 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0515743 0.0464016 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17488 1 0.03 -1 -1 30164 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 17.1 MiB 1.77 1173 16983 5747 8489 2747 55.6 MiB 0.27 0.00 4.05378 -126.496 -4.05378 4.05378 1.08 0.00116965 0.00107433 0.106959 0.0982259 36 2746 23 6.89349e+06 338252 648988. 2245.63 2.73 0.353406 0.317592 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0462309 0.0414668 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17876 1 0.02 -1 -1 30208 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 16.6 MiB 1.60 909 14358 5137 7007 2214 55.2 MiB 0.19 0.00 4.5826 -118.27 -4.5826 4.5826 1.08 0.000998695 0.000915126 0.0811198 0.0743818 34 2771 28 6.89349e+06 281877 618332. 2139.56 2.41 0.294353 0.263015 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.038271 0.0343332 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17752 1 0.03 -1 -1 30152 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 17.3 MiB 2.05 1620 14567 4267 9425 875 56.2 MiB 0.27 0.01 5.31355 -171.75 -5.31355 5.31355 1.09 0.00147407 0.00135318 0.10254 0.0941982 36 4099 33 6.89349e+06 436909 648988. 2245.63 3.86 0.444167 0.399597 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0679045 0.0610306 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17392 1 0.03 -1 -1 30084 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 16.8 MiB 1.47 935 8481 2198 5465 818 55.2 MiB 0.12 0.00 3.78206 -112.802 -3.78206 3.78206 1.09 0.000901648 0.000826247 0.0460245 0.042173 36 2118 26 6.89349e+06 253689 648988. 2245.63 1.98 0.24184 0.215381 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.32 0.08 0.25 -1 -1 0.32 0.032574 0.0292587 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30084 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1159 12749 3392 7336 2021 55.5 MiB 0.20 0.00 4.75882 -144.088 -4.75882 4.75882 1.08 0.00114351 0.0010499 0.0797735 0.0732509 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.67 0.260217 0.234343 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0450009 0.0404774 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30152 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 16.9 MiB 2.01 1195 16023 5389 8481 2153 55.7 MiB 0.25 0.00 4.23925 -128.06 -4.23925 4.23925 1.08 0.00116091 0.00106515 0.0999448 0.0916985 36 2964 25 6.89349e+06 324158 648988. 2245.63 3.12 0.348356 0.31266 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0454442 0.0408217 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17196 1 0.03 -1 -1 29928 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.9 MiB 0.52 1056 13758 4414 7436 1908 55.5 MiB 0.22 0.00 4.26729 -130.845 -4.26729 4.26729 1.08 0.00103553 0.000950333 0.072062 0.065766 30 2527 28 6.89349e+06 366440 556674. 1926.21 1.49 0.21441 0.192667 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.050425 0.045185 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 17.3 MiB 1.59 1207 10455 2579 6753 1123 55.8 MiB 0.19 0.00 4.44301 -131.225 -4.44301 4.44301 1.15 0.00117647 0.00107753 0.0664174 0.060915 36 2616 21 6.89349e+06 324158 648988. 2245.63 2.57 0.298249 0.267177 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0439393 0.0394968 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 29848 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 17.2 MiB 1.81 1187 14518 4859 6825 2834 55.7 MiB 0.23 0.00 4.27293 -132.833 -4.27293 4.27293 1.23 0.000724823 0.000662557 0.0905631 0.0830478 34 3445 26 6.89349e+06 338252 618332. 2139.56 2.74 0.341746 0.306188 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0447007 0.0401598 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30124 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1246 9336 2230 6513 593 55.7 MiB 0.18 0.00 4.12904 -136.238 -4.12904 4.12904 1.09 0.00124278 0.00113943 0.0610888 0.0560132 34 3265 27 6.89349e+06 366440 618332. 2139.56 2.69 0.330859 0.296061 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.27 0.14 0.26 -1 -1 0.27 0.0581061 0.0522693 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30176 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 16.6 MiB 1.47 1001 8641 2091 5830 720 55.3 MiB 0.14 0.00 4.50695 -131.282 -4.50695 4.50695 0.78 0.00105837 0.000971311 0.0517961 0.0475275 34 2625 20 6.89349e+06 295971 618332. 2139.56 2.18 0.272077 0.243768 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0433547 0.0388887 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.17 17476 1 0.03 -1 -1 30220 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.9 MiB 1.41 1119 14450 4565 7826 2059 55.6 MiB 0.22 0.00 4.84598 -139.753 -4.84598 4.84598 1.19 0.00109075 0.00100168 0.0866617 0.0796073 34 2751 32 6.89349e+06 310065 618332. 2139.56 2.30 0.333766 0.299695 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.30 0.10 0.26 -1 -1 0.30 0.041807 0.0376525 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.24 17572 1 0.03 -1 -1 30160 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1292 15447 4870 8199 2378 55.8 MiB 0.26 0.00 4.72898 -145.597 -4.72898 4.72898 1.11 0.00123611 0.00113449 0.103256 0.094687 34 3305 38 6.89349e+06 338252 618332. 2139.56 2.54 0.390856 0.351186 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0524522 0.0472068 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.23 17664 1 0.03 -1 -1 30164 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 16.9 MiB 2.33 1374 13553 4031 8630 892 55.9 MiB 0.23 0.00 4.3848 -136.299 -4.3848 4.3848 1.09 0.00124247 0.00113959 0.0882048 0.0808459 36 3546 21 6.89349e+06 352346 648988. 2245.63 3.48 0.351194 0.315358 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.29 0.21 0.25 -1 -1 0.29 0.0808083 0.0725246 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29976 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 16.4 MiB 1.48 841 8022 2262 5194 566 55.0 MiB 0.13 0.00 3.56029 -109.346 -3.56029 3.56029 1.16 0.000883411 0.000809987 0.0549251 0.0504957 36 1876 16 6.89349e+06 211408 648988. 2245.63 2.26 0.23208 0.207068 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0345974 0.0308863 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.21 17776 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 17.1 MiB 1.17 1155 11979 3435 7133 1411 55.6 MiB 0.20 0.00 4.30741 -149.256 -4.30741 4.30741 1.10 0.000768415 0.00069094 0.0779058 0.0712932 34 2804 26 6.89349e+06 281877 618332. 2139.56 2.80 0.323667 0.289729 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0437806 0.0392591 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1337 12167 3186 7820 1161 55.9 MiB 0.23 0.00 5.53202 -162.159 -5.53202 5.53202 1.09 0.0013021 0.00119542 0.0840893 0.077258 34 3534 45 6.89349e+06 352346 618332. 2139.56 3.05 0.416164 0.374672 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.28 0.19 0.24 -1 -1 0.28 0.0840971 0.075715 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17468 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 17.2 MiB 1.65 981 15773 5650 7566 2557 55.7 MiB 0.24 0.00 4.48922 -138.529 -4.48922 4.48922 1.08 0.00115238 0.00105737 0.098635 0.09051 36 2706 29 6.89349e+06 310065 648988. 2245.63 3.37 0.304545 0.273462 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0473415 0.042564 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17400 1 0.03 -1 -1 30156 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 16.6 MiB 1.28 892 10781 3144 6961 676 55.2 MiB 0.15 0.00 4.18863 -126.692 -4.18863 4.18863 1.08 0.000955152 0.000876612 0.0546745 0.0501891 36 2083 22 6.89349e+06 380534 648988. 2245.63 2.38 0.253849 0.226662 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407685 0.0362451 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.10 17972 1 0.04 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 17.4 MiB 2.92 1573 16207 5526 8946 1735 56.1 MiB 0.31 0.01 6.36902 -185.345 -6.36902 6.36902 1.09 0.00140613 0.00129097 0.116052 0.10659 34 4174 50 6.89349e+06 380534 618332. 2139.56 4.29 0.479939 0.431456 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0558795 0.0503519 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 16.8 MiB 1.38 1035 15151 5099 7891 2161 55.5 MiB 0.22 0.00 4.71732 -144.131 -4.71732 4.71732 1.09 0.00114887 0.00105479 0.0956945 0.0878042 34 2637 24 6.89349e+06 295971 618332. 2139.56 2.12 0.339297 0.304871 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.29 0.11 0.24 -1 -1 0.29 0.0471434 0.0424314 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17336 1 0.02 -1 -1 30212 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.4 MiB 0.49 851 9838 2581 6658 599 55.1 MiB 0.13 0.00 3.70876 -106.292 -3.70876 3.70876 1.10 0.000848183 0.000778133 0.0470929 0.0431697 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.59 0.142728 0.12733 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.22 0.09 0.19 -1 -1 0.22 0.0288283 0.0257271 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17444 1 0.03 -1 -1 29940 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.67 1097 14679 5479 6928 2272 55.5 MiB 0.22 0.00 5.34057 -137.648 -5.34057 5.34057 1.09 0.00119873 0.00110036 0.0943147 0.0866212 34 3407 33 6.89349e+06 324158 618332. 2139.56 3.52 0.367357 0.330197 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0489609 0.044052 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17232 1 0.03 -1 -1 29996 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.5 MiB 0.59 790 8543 2077 5745 721 55.2 MiB 0.13 0.00 3.60525 -112.744 -3.60525 3.60525 1.11 0.000913453 0.000839247 0.0453249 0.0415761 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.93 0.240818 0.21456 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0350841 0.0313417 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.11 17500 1 0.03 -1 -1 30108 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 1.18 900 11118 2938 7199 981 55.3 MiB 0.17 0.00 4.05078 -116.815 -4.05078 4.05078 1.10 0.000952766 0.000873973 0.0618767 0.0567659 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.91 0.221406 0.19735 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0373236 0.0333897 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17664 1 0.05 -1 -1 30092 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 17.1 MiB 2.75 1189 14871 4290 8850 1731 55.7 MiB 0.23 0.00 4.52181 -133.377 -4.52181 4.52181 1.08 0.00115559 0.00105984 0.0928489 0.085095 34 2841 25 6.89349e+06 366440 618332. 2139.56 2.31 0.343479 0.308345 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0440198 0.0395896 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 30112 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1209 16340 4806 9520 2014 55.8 MiB 0.26 0.00 5.15268 -160.098 -5.15268 5.15268 1.08 0.00118291 0.00108443 0.105334 0.0966296 36 2942 21 6.89349e+06 310065 648988. 2245.63 2.86 0.351313 0.315832 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0465594 0.0418274 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 29968 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 17.2 MiB 1.43 1151 8919 1954 6160 805 55.7 MiB 0.16 0.00 5.44797 -153.538 -5.44797 5.44797 1.08 0.00117374 0.00107264 0.0573715 0.0526439 36 2961 43 6.89349e+06 324158 648988. 2245.63 3.34 0.336899 0.301325 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.046228 0.0415657 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17400 1 0.03 -1 -1 30188 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.7 MiB 1.52 948 12416 4023 6894 1499 55.2 MiB 0.17 0.00 4.44301 -126.97 -4.44301 4.44301 1.10 0.000948983 0.00086885 0.0723819 0.0663195 34 2281 31 6.89349e+06 211408 618332. 2139.56 2.32 0.286003 0.255589 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0348069 0.0311816 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.11 17768 1 0.03 -1 -1 30304 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.44 1059 14483 4851 7224 2408 55.6 MiB 0.20 0.00 3.67535 -124.181 -3.67535 3.67535 1.09 0.00104314 0.000955214 0.0866914 0.0794359 34 2699 22 6.89349e+06 281877 618332. 2139.56 2.15 0.307214 0.275288 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0395283 0.0354068 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17840 1 0.03 -1 -1 30376 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 16.9 MiB 1.91 1024 15493 4307 9520 1666 55.4 MiB 0.22 0.00 3.806 -108.658 -3.806 3.806 1.10 0.00108611 0.000996156 0.0896019 0.0821112 36 2360 20 6.89349e+06 366440 648988. 2245.63 2.34 0.316454 0.284059 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0414765 0.0372677 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17480 1 0.03 -1 -1 30248 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 16.7 MiB 1.17 918 12323 3941 6490 1892 55.3 MiB 0.16 0.00 4.39675 -112.391 -4.39675 4.39675 1.08 0.000961852 0.000882625 0.0682823 0.0626789 34 2147 21 6.89349e+06 324158 618332. 2139.56 2.02 0.266577 0.238596 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0366972 0.0327904 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30304 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 16.7 MiB 2.14 924 9083 2508 6037 538 55.4 MiB 0.15 0.00 4.56532 -133.276 -4.56532 4.56532 1.08 0.0010441 0.000958277 0.0556726 0.0510844 34 2736 29 6.89349e+06 295971 618332. 2139.56 2.42 0.287636 0.257305 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0413347 0.0370753 130 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1216 6123 1500 4259 364 55.8 MiB 0.12 0.00 3.91264 -134.898 -3.91264 3.91264 1.13 0.00109608 0.00100447 0.039762 0.0364779 36 2645 23 6.89349e+06 281877 648988. 2245.63 3.03 0.26999 0.241045 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.28 0.18 0.25 -1 -1 0.28 0.0593119 0.0529909 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17244 1 0.03 -1 -1 30212 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.6 MiB 0.59 941 8614 1787 6108 719 55.2 MiB 0.14 0.00 4.73282 -132.206 -4.73282 4.73282 1.10 0.00104357 0.00095941 0.0460406 0.0423262 30 2255 21 6.89349e+06 436909 556674. 1926.21 1.29 0.18407 0.165448 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.042592 0.0382072 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.11 17784 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.82 946 14295 4865 6147 3283 55.5 MiB 0.21 0.00 4.80372 -148.142 -4.80372 4.80372 1.11 0.0011768 0.0010799 0.0911294 0.0836614 38 2827 33 6.89349e+06 324158 678818. 2348.85 3.44 0.361363 0.324472 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0465798 0.041915 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30092 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1348 15391 4691 8221 2479 55.9 MiB 0.27 0.00 5.48061 -170.804 -5.48061 5.48061 1.09 0.00124834 0.00114546 0.0937368 0.0858667 36 2971 28 6.89349e+06 380534 648988. 2245.63 3.26 0.369819 0.332446 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517851 0.0465814 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17468 1 0.04 -1 -1 30136 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1348 16572 5279 8759 2534 55.6 MiB 0.28 0.00 4.59633 -149.535 -4.59633 4.59633 1.12 0.0012643 0.00115992 0.103201 0.094526 36 3220 22 6.89349e+06 366440 648988. 2245.63 3.14 0.372703 0.335138 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0543725 0.0489658 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.17 17336 1 0.03 -1 -1 30044 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.66 929 11603 3304 7249 1050 55.4 MiB 0.17 0.00 4.22559 -126.079 -4.22559 4.22559 1.08 0.000938198 0.000860531 0.0626658 0.0575044 34 2274 21 6.89349e+06 295971 618332. 2139.56 2.17 0.263443 0.235101 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0467676 0.0417308 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.21 17544 1 0.03 -1 -1 30328 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 17.3 MiB 2.37 1157 9838 2412 6479 947 56.0 MiB 0.18 0.00 5.48387 -163.439 -5.48387 5.48387 1.12 0.00123527 0.00113314 0.0664573 0.0609724 34 2914 31 6.89349e+06 366440 618332. 2139.56 2.23 0.339188 0.304036 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0465631 0.041938 162 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1128 9303 2368 6110 825 55.7 MiB 0.09 0.00 5.14805 -150.89 -5.14805 5.14805 0.74 0.000426038 0.000385701 0.0227853 0.0206836 34 2876 34 6.89349e+06 324158 618332. 2139.56 1.73 0.12133 0.106238 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0430147 0.0386471 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30220 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1160 14828 4291 8520 2017 55.4 MiB 0.12 0.00 5.04939 -147.832 -5.04939 5.04939 1.08 0.000417431 0.000376219 0.0349946 0.0316536 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.77 0.191222 0.169166 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0468229 0.0420262 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30304 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.85 1280 15731 5729 7457 2545 56.1 MiB 0.25 0.00 4.67272 -140.819 -4.67272 4.67272 1.09 0.00120405 0.00110401 0.100307 0.0919408 36 2891 31 6.89349e+06 380534 648988. 2245.63 2.89 0.372239 0.334125 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.28 0.12 0.27 -1 -1 0.28 0.0460554 0.0413954 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 17.2 MiB 2.69 1143 12183 3367 8279 537 55.8 MiB 0.21 0.00 5.41467 -156.077 -5.41467 5.41467 1.09 0.0012044 0.00110516 0.079676 0.0730619 34 3317 24 6.89349e+06 324158 618332. 2139.56 2.74 0.336842 0.302282 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488384 0.0438697 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.12 17816 1 0.03 -1 -1 30312 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 16.9 MiB 1.54 1279 8047 1945 5583 519 55.6 MiB 0.15 0.00 4.65125 -137.416 -4.65125 4.65125 1.11 0.00121351 0.00110824 0.0513959 0.0471627 36 2926 21 6.89349e+06 422815 648988. 2245.63 2.62 0.303817 0.272058 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0438801 0.0394947 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17376 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.5 MiB 0.49 782 13906 5117 6523 2266 55.2 MiB 0.18 0.00 4.15903 -122.769 -4.15903 4.15903 1.10 0.000877319 0.000804706 0.0641473 0.0584948 30 2007 46 6.89349e+06 239595 556674. 1926.21 1.31 0.210262 0.188098 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0345416 0.0308819 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17828 1 0.03 -1 -1 30232 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1307 13157 3552 8195 1410 55.8 MiB 0.22 0.00 5.64852 -169.418 -5.64852 5.64852 1.11 0.00121488 0.00111406 0.0839158 0.0769762 36 3147 47 6.89349e+06 352346 648988. 2245.63 3.39 0.384854 0.345013 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517209 0.0464841 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30184 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 17.1 MiB 2.83 1377 7415 1651 5387 377 55.8 MiB 0.08 0.00 5.30157 -175.126 -5.30157 5.30157 1.07 0.000477715 0.000431872 0.0201641 0.0182806 36 3393 25 6.89349e+06 352346 648988. 2245.63 3.21 0.299802 0.267912 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0554302 0.049939 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17208 1 0.03 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 16.6 MiB 2.32 743 12720 4130 6895 1695 55.2 MiB 0.17 0.00 4.14342 -113.505 -4.14342 4.14342 1.11 0.000926878 0.000848793 0.0690049 0.0632568 30 2176 39 6.89349e+06 253689 556674. 1926.21 1.48 0.214882 0.192427 25186 138497 -1 1608 19 847 1143 74159 17662 2.99811 2.99811 -101.39 -2.99811 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0348487 0.0311628 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17212 1 0.03 -1 -1 30284 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.4 MiB 0.53 706 7823 1736 5421 666 55.1 MiB 0.11 0.00 4.10083 -117.838 -4.10083 4.10083 1.08 0.000882209 0.000809218 0.0404985 0.0371904 30 1853 22 6.89349e+06 281877 556674. 1926.21 1.23 0.152973 0.136936 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.033349 0.0297928 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.7 MiB 2.00 1103 13719 4794 6980 1945 55.5 MiB 0.22 0.00 4.58942 -145.059 -4.58942 4.58942 1.08 0.00117705 0.00108049 0.0870629 0.0799649 34 2800 20 6.89349e+06 324158 618332. 2139.56 2.30 0.338571 0.304228 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.28 0.12 0.24 -1 -1 0.28 0.044499 0.0400557 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17556 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1083 8919 2056 5474 1389 55.7 MiB 0.14 0.00 4.89424 -142.728 -4.89424 4.89424 1.09 0.0011682 0.00106993 0.0572894 0.0525096 34 3008 43 6.89349e+06 324158 618332. 2139.56 2.44 0.342917 0.306635 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0444122 0.0399439 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17312 1 0.03 -1 -1 30004 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.66 1033 19356 5199 10890 3267 55.5 MiB 0.29 0.00 5.32917 -146.087 -5.32917 5.32917 1.08 0.00121833 0.00111805 0.105021 0.0963905 30 3041 40 6.89349e+06 507378 556674. 1926.21 1.89 0.298615 0.269499 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.0519902 0.0468244 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17764 1 0.04 -1 -1 29960 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 16.9 MiB 1.32 1151 13143 3782 7948 1413 55.3 MiB 0.20 0.00 3.95739 -118.903 -3.95739 3.95739 1.09 0.00104572 0.000959095 0.0744934 0.0682735 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.99 0.249457 0.222321 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0381575 0.0342386 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.19 17376 1 0.02 -1 -1 30448 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 16.6 MiB 1.23 755 13768 6057 6665 1046 55.1 MiB 0.15 0.00 4.43859 -116.143 -4.43859 4.43859 1.08 0.000875089 0.0008023 0.073587 0.0674984 34 2141 23 6.89349e+06 281877 618332. 2139.56 2.25 0.261479 0.233849 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0331051 0.0295649 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30136 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 17.2 MiB 2.57 1514 18043 5658 10071 2314 56.2 MiB 0.32 0.01 4.58581 -147.507 -4.58581 4.58581 1.09 0.00137617 0.00126337 0.124848 0.114545 34 4194 50 6.89349e+06 380534 618332. 2139.56 3.49 0.48125 0.43293 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0563725 0.0507173 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30128 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 17.1 MiB 1.76 1122 15639 4714 8375 2550 55.6 MiB 0.27 0.00 5.51467 -162.715 -5.51467 5.51467 1.11 0.00118606 0.00108775 0.107686 0.0987502 34 2973 28 6.89349e+06 338252 618332. 2139.56 2.71 0.371948 0.334208 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0470024 0.0422855 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17472 1 0.04 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 16.9 MiB 1.76 1207 14779 4497 8341 1941 55.4 MiB 0.22 0.00 4.36565 -143.578 -4.36565 4.36565 1.09 0.00108419 0.000994226 0.0888276 0.0814078 34 2807 25 6.89349e+06 295971 618332. 2139.56 2.36 0.323658 0.289998 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0463618 0.0415261 137 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 30244 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 16.6 MiB 1.78 1106 13291 3686 7595 2010 55.3 MiB 0.20 0.00 5.17406 -143.598 -5.17406 5.17406 1.09 0.00110295 0.00101178 0.0817427 0.0750086 30 2835 35 6.89349e+06 295971 556674. 1926.21 1.53 0.246432 0.221943 25186 138497 -1 2176 19 1108 1682 108723 25154 3.8055 3.8055 -132.53 -3.8055 0 0 706193. 2443.58 0.26 0.09 0.24 -1 -1 0.26 0.0421416 0.0379175 135 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17756 1 0.03 -1 -1 30012 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1277 13949 4663 6540 2746 55.8 MiB 0.22 0.00 4.6119 -129.607 -4.6119 4.6119 1.19 0.00123402 0.00113278 0.0913764 0.0838517 34 2960 24 6.89349e+06 366440 618332. 2139.56 2.24 0.357564 0.321417 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0489338 0.0440311 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30036 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 17.1 MiB 1.63 1057 10103 2410 7187 506 55.6 MiB 0.16 0.00 4.37294 -118.646 -4.37294 4.37294 1.08 0.00108246 0.000992013 0.0609446 0.0559031 34 2982 24 6.89349e+06 338252 618332. 2139.56 2.44 0.29327 0.262579 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0480546 0.0430392 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30140 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.18 1146 16340 5897 7961 2482 55.8 MiB 0.14 0.00 4.90628 -154.007 -4.90628 4.90628 0.74 0.000439789 0.000397445 0.0396115 0.0358868 34 3223 50 6.89349e+06 310065 618332. 2139.56 3.41 0.341116 0.304782 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.23 0.06 0.12 -1 -1 0.23 0.0193985 0.01724 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30024 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 17.0 MiB 2.27 1236 16371 6869 8593 909 55.8 MiB 0.26 0.00 4.19324 -136.834 -4.19324 4.19324 1.08 0.00126145 0.00115529 0.106768 0.0979564 36 2890 25 6.89349e+06 366440 648988. 2245.63 3.22 0.378062 0.340137 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.29 0.12 0.27 -1 -1 0.29 0.0527547 0.0475385 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17476 1 0.03 -1 -1 30088 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 16.8 MiB 1.18 881 7081 1573 4782 726 55.3 MiB 0.11 0.00 4.21387 -125.832 -4.21387 4.21387 1.12 0.000927657 0.000851548 0.042257 0.0388987 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.93 0.235977 0.210551 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.0369402 0.0330465 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30172 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.07 868 7770 1747 5581 442 55.5 MiB 0.13 0.00 4.24583 -126.348 -4.24583 4.24583 1.09 0.00101712 0.000931314 0.0461002 0.0421894 36 2425 28 6.89349e+06 281877 648988. 2245.63 2.79 0.270924 0.241424 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0419361 0.0375195 125 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.17 17820 1 0.03 -1 -1 30216 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 17.0 MiB 1.35 954 15337 5910 7043 2384 55.5 MiB 0.22 0.00 4.83108 -133.604 -4.83108 4.83108 1.10 0.00111441 0.00102255 0.094812 0.0869954 34 3035 40 6.89349e+06 310065 618332. 2139.56 2.67 0.360756 0.323688 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0492344 0.0441637 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.12 17576 1 0.03 -1 -1 30224 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.7 MiB 2.51 859 12636 4650 6385 1601 55.2 MiB 0.17 0.00 4.13932 -113.849 -4.13932 4.13932 1.10 0.000902765 0.000826873 0.0691321 0.0630881 34 2181 32 6.89349e+06 267783 618332. 2139.56 2.06 0.274757 0.24522 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0385886 0.0344814 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17276 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 16.5 MiB 1.74 931 12898 3547 7775 1576 55.1 MiB 0.18 0.00 4.14413 -130.005 -4.14413 4.14413 1.09 0.000953427 0.000874011 0.0721013 0.0661601 36 2328 29 6.89349e+06 253689 648988. 2245.63 2.53 0.274588 0.245138 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0388748 0.0347116 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 29920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 17.1 MiB 1.52 1223 9197 2351 6452 394 55.6 MiB 0.17 0.00 4.60737 -145.998 -4.60737 4.60737 1.09 0.00122981 0.00111744 0.0611364 0.0560149 34 2913 27 6.89349e+06 366440 618332. 2139.56 2.56 0.32771 0.293593 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0542474 0.0487761 160 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17212 1 0.03 -1 -1 30208 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.70 913 11088 2855 7004 1229 55.0 MiB 0.16 0.00 3.57635 -113.738 -3.57635 3.57635 1.08 0.000925147 0.000849174 0.0623222 0.0572577 30 2273 20 6.89349e+06 239595 556674. 1926.21 1.22 0.1749 0.156996 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0260025 0.0230214 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 29840 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1210 14261 3846 8261 2154 55.6 MiB 0.22 0.00 4.18989 -126.928 -4.18989 4.18989 1.09 0.00114421 0.00104683 0.0894508 0.0818736 34 3022 24 6.89349e+06 310065 618332. 2139.56 2.12 0.335277 0.300757 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0455679 0.0409383 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17616 1 0.03 -1 -1 30092 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1307 17117 5534 9059 2524 55.9 MiB 0.27 0.00 4.84686 -157.681 -4.84686 4.84686 0.74 0.00125898 0.00115312 0.0995143 0.0910091 34 3332 30 6.89349e+06 366440 618332. 2139.56 2.65 0.382723 0.343429 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0558373 0.0501819 170 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 16.9 MiB 2.24 1086 13432 3424 8813 1195 55.6 MiB 0.19 0.00 3.821 -117.953 -3.821 3.821 1.09 0.000998871 0.000915616 0.078255 0.0716897 34 2606 27 6.89349e+06 253689 618332. 2139.56 2.11 0.296116 0.264715 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.039341 0.0351813 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30296 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.5 MiB 1.00 871 12898 3868 7278 1752 55.1 MiB 0.18 0.00 4.12213 -126.038 -4.12213 4.12213 1.09 0.000770918 0.00069411 0.0738288 0.0676884 36 2177 21 6.89349e+06 253689 648988. 2245.63 2.53 0.281728 0.252013 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407813 0.0365321 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17868 1 0.17 -1 -1 29828 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 16.7 MiB 1.52 1006 10292 2539 6455 1298 55.3 MiB 0.15 0.00 4.93133 -134.302 -4.93133 4.93133 1.09 0.00109231 0.0010033 0.0618925 0.0568162 34 2482 22 6.89349e+06 310065 618332. 2139.56 2.02 0.291169 0.260972 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0395842 0.0356244 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.11 17824 1 0.27 -1 -1 30012 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 17.2 MiB 1.72 1105 14450 4218 8203 2029 55.6 MiB 0.22 0.00 4.04968 -110.899 -4.04968 4.04968 1.09 0.0010719 0.000983018 0.0852688 0.0782581 34 2657 23 6.89349e+06 352346 618332. 2139.56 2.14 0.310813 0.27853 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0509434 0.0456467 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17516 1 0.27 -1 -1 30008 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1170 10033 2409 6880 744 55.8 MiB 0.18 0.00 5.6505 -176.695 -5.6505 5.6505 1.08 0.00127428 0.00116832 0.0689066 0.0631954 34 3979 39 6.89349e+06 338252 618332. 2139.56 4.19 0.38311 0.34286 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0570891 0.0513345 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17156 1 0.27 -1 -1 30004 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.5 MiB 0.50 815 9368 2443 5733 1192 55.1 MiB 0.11 0.00 3.49795 -108.682 -3.49795 3.49795 1.09 0.000834867 0.000765601 0.0475319 0.0436072 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.91 0.226291 0.20168 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.28 0.07 0.23 -1 -1 0.28 0.0314812 0.0281193 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17472 1 0.04 -1 -1 30260 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1425 17431 5130 10160 2141 56.0 MiB 0.30 0.01 5.66786 -177.951 -5.66786 5.66786 1.09 0.00131256 0.00120346 0.115788 0.106181 34 3494 40 6.89349e+06 380534 618332. 2139.56 2.82 0.440468 0.396133 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.05917 0.0532553 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.18 17468 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 17.1 MiB 1.92 1387 11223 3117 6896 1210 56.0 MiB 0.18 0.00 4.854 -168.258 -4.854 4.854 1.09 0.00118103 0.0010814 0.0725653 0.0664608 38 2917 25 6.89349e+06 324158 678818. 2348.85 2.60 0.321593 0.287639 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.29 0.12 0.28 -1 -1 0.29 0.0546332 0.0489311 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17788 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 17.0 MiB 1.65 1228 16529 5130 9253 2146 55.5 MiB 0.26 0.00 4.18062 -130.52 -4.18062 4.18062 1.10 0.0011807 0.00108173 0.106084 0.0972041 36 2679 46 6.89349e+06 310065 648988. 2245.63 2.61 0.402196 0.360902 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0450346 0.04049 152 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30404 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 17.4 MiB 2.27 1277 13758 3654 8100 2004 56.1 MiB 0.28 0.01 5.8432 -174.13 -5.8432 5.8432 1.09 0.0013463 0.00123563 0.0954653 0.0875724 36 3134 30 6.89349e+06 366440 648988. 2245.63 3.32 0.397751 0.358195 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.055002 0.0496374 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.14 17352 1 0.02 -1 -1 30128 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 16.4 MiB 0.76 693 11650 3455 7011 1184 54.9 MiB 0.13 0.00 3.03066 -95.0101 -3.03066 3.03066 1.08 0.000775434 0.00070975 0.057383 0.0525581 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.92 0.238286 0.211855 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.31 0.06 0.23 -1 -1 0.31 0.0267014 0.0237879 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30388 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 16.8 MiB 1.07 726 8270 1936 5996 338 55.4 MiB 0.13 0.00 4.60327 -135.822 -4.60327 4.60327 1.08 0.00097829 0.000897998 0.0479814 0.0440291 34 1980 21 6.89349e+06 281877 618332. 2139.56 2.04 0.251619 0.224638 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.26 0.19 0.20 -1 -1 0.26 0.0581864 0.0519421 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30280 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1036 12008 3645 6699 1664 55.5 MiB 0.20 0.00 4.33865 -139.218 -4.33865 4.33865 1.08 0.00100995 0.000927069 0.0705449 0.0647264 34 2978 44 6.89349e+06 253689 618332. 2139.56 2.73 0.317903 0.284049 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.28 0.12 0.25 -1 -1 0.28 0.0417233 0.0373486 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17396 1 0.02 -1 -1 30372 -1 -1 21 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 16.5 MiB 1.01 532 11034 4110 4271 2653 55.2 MiB 0.11 0.00 3.6784 -85.8398 -3.6784 3.6784 1.09 0.000749817 0.000686466 0.0517791 0.0474192 34 1620 27 6.89349e+06 295971 618332. 2139.56 2.02 0.214637 0.191026 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0294776 0.0262638 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.17 17548 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1378 14871 4869 7700 2302 55.6 MiB 0.25 0.00 4.565 -139.747 -4.565 4.565 1.11 0.00121068 0.0011095 0.0975763 0.0894915 38 3057 23 6.89349e+06 324158 678818. 2348.85 2.59 0.365731 0.328429 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0460028 0.0413809 161 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17856 1 0.03 -1 -1 30432 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 17.4 MiB 2.03 1414 15617 4439 9113 2065 56.2 MiB 0.28 0.00 4.8901 -157.733 -4.8901 4.8901 1.09 0.0012968 0.00118873 0.107379 0.098359 34 3269 24 6.89349e+06 408721 618332. 2139.56 2.33 0.386272 0.34697 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0512767 0.0461771 179 90 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.27 17612 14 0.25 -1 -1 32756 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 16.8 MiB 0.39 1279 6823 1440 4905 478 55.3 MiB 0.11 0.00 7.95704 -163.811 -7.95704 7.95704 1.04 0.00156205 0.00143212 0.0582136 0.0533669 36 3193 16 6.55708e+06 325485 612192. 2118.31 3.26 0.373765 0.335667 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.0987036 0.0888622 183 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.31 17856 14 0.28 -1 -1 32900 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1272 10173 2471 6545 1157 55.4 MiB 0.15 0.00 8.16064 -158.468 -8.16064 8.16064 1.05 0.00158191 0.00145074 0.081165 0.0744808 36 3251 22 6.55708e+06 373705 612192. 2118.31 2.93 0.417574 0.375881 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0844937 0.0762804 184 184 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33128 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1375 11748 3042 6701 2005 55.5 MiB 0.18 0.00 6.90223 -139.699 -6.90223 6.90223 1.04 0.00156303 0.0014319 0.0959199 0.087957 28 4030 31 6.55708e+06 313430 500653. 1732.36 4.00 0.324425 0.292376 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0642427 0.0580702 186 186 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.27 17612 12 0.31 -1 -1 32788 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 16.8 MiB 0.54 1263 4783 870 3608 305 55.4 MiB 0.09 0.00 7.83974 -145.087 -7.83974 7.83974 0.96 0.00159214 0.00146152 0.0440768 0.0405599 36 3198 28 6.55708e+06 361650 612192. 2118.31 3.57 0.401577 0.36102 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0598802 0.0542859 190 190 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.27 17660 13 0.27 -1 -1 32820 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1445 11111 2879 6967 1265 55.5 MiB 0.18 0.00 7.83935 -165.421 -7.83935 7.83935 1.05 0.00175058 0.00159614 0.0956985 0.0876814 28 4394 44 6.55708e+06 373705 500653. 1732.36 3.54 0.386974 0.348994 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0710109 0.0643219 210 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.28 17816 13 0.24 -1 -1 32700 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1337 11046 2900 6780 1366 55.4 MiB 0.17 0.00 7.78297 -154.862 -7.78297 7.78297 1.05 0.00164922 0.00151087 0.0881177 0.0807175 36 3405 22 6.55708e+06 385760 612192. 2118.31 3.22 0.439886 0.396006 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.29 0.11 0.21 -1 -1 0.29 0.0504717 0.0458158 198 198 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.23 17324 12 0.19 -1 -1 32656 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1022 8969 2278 5945 746 55.1 MiB 0.12 0.00 7.21391 -130.754 -7.21391 7.21391 1.04 0.00126973 0.00116404 0.0639532 0.0586 30 2436 17 6.55708e+06 325485 526063. 1820.29 1.21 0.218527 0.197251 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.25 0.09 0.15 -1 -1 0.25 0.0447167 0.0406149 152 150 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17560 12 0.18 -1 -1 32696 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1233 12733 3609 7498 1626 55.0 MiB 0.17 0.00 6.32286 -134.975 -6.32286 6.32286 1.04 0.00125797 0.00115145 0.0901641 0.0824342 36 3149 24 6.55708e+06 265210 612192. 2118.31 4.41 0.338937 0.304361 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.054098 0.0490355 140 138 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17824 12 0.16 -1 -1 32692 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1203 13157 3412 7574 2171 55.2 MiB 0.14 0.00 6.35469 -136.224 -6.35469 6.35469 1.08 0.00128678 0.00117852 0.0665307 0.0607395 36 2772 21 6.55708e+06 313430 612192. 2118.31 2.77 0.341855 0.306911 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0401003 0.0364289 150 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.23 17676 13 0.19 -1 -1 32616 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1164 8207 1986 5229 992 55.2 MiB 0.12 0.00 7.79043 -163.222 -7.79043 7.79043 1.05 0.00138743 0.00126957 0.0617538 0.0565914 28 3341 23 6.55708e+06 301375 500653. 1732.36 2.53 0.246075 0.221483 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0480964 0.0435954 157 156 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17364 12 0.20 -1 -1 32508 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 16.2 MiB 0.27 1043 7646 1812 5284 550 54.8 MiB 0.10 0.00 6.98257 -137.016 -6.98257 6.98257 1.05 0.00121778 0.00111597 0.0528178 0.0484043 28 2870 17 6.55708e+06 289320 500653. 1732.36 2.17 0.201067 0.181191 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0681526 0.0614543 132 128 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.23 17512 12 0.15 -1 -1 32716 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1210 6701 1475 4829 397 55.0 MiB 0.10 0.00 6.74278 -155.388 -6.74278 6.74278 1.05 0.00125451 0.00114656 0.0481396 0.0440074 28 3180 36 6.55708e+06 265210 500653. 1732.36 2.92 0.240804 0.216169 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0575716 0.0518881 146 142 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.25 17608 13 0.24 -1 -1 32492 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1329 9892 2541 6359 992 55.3 MiB 0.10 0.00 8.09466 -168.958 -8.09466 8.09466 0.72 0.0015994 0.00146681 0.0384593 0.0349616 28 3841 47 6.55708e+06 361650 500653. 1732.36 2.56 0.316512 0.284277 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0496445 0.0451274 191 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17744 14 0.30 -1 -1 32688 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1640 11170 2650 7415 1105 55.4 MiB 0.18 0.00 9.0039 -186.596 -9.0039 9.0039 1.07 0.00173039 0.00158625 0.0959284 0.0878765 30 4087 23 6.55708e+06 361650 526063. 1820.29 2.16 0.325871 0.294434 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0292814 0.0264378 210 209 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17556 11 0.17 -1 -1 32624 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 16.3 MiB 0.25 878 5158 949 3601 608 55.0 MiB 0.08 0.00 6.71354 -123.992 -6.71354 6.71354 1.07 0.00124803 0.00114347 0.0368863 0.0337965 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.87 0.224448 0.201549 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046889 0.0424185 147 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.27 17640 12 0.27 -1 -1 32844 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1420 10309 2435 6528 1346 55.5 MiB 0.16 0.00 7.45763 -153.823 -7.45763 7.45763 1.04 0.00172199 0.00157891 0.0848605 0.0777804 34 4188 46 6.55708e+06 397815 585099. 2024.56 5.03 0.535691 0.482016 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.26 0.26 0.22 -1 -1 0.26 0.0995667 0.0899108 209 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.27 17656 14 0.24 -1 -1 32844 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 16.7 MiB 0.29 1436 5553 1081 4073 399 55.3 MiB 0.10 0.00 7.42808 -156.41 -7.42808 7.42808 1.04 0.00156663 0.0014363 0.0459739 0.042145 38 3267 17 6.55708e+06 349595 638502. 2209.35 3.38 0.367724 0.329917 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0543451 0.0491432 184 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.24 17768 12 0.16 -1 -1 32404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1097 11991 2937 7207 1847 54.8 MiB 0.16 0.00 7.19884 -160.926 -7.19884 7.19884 1.07 0.00127332 0.00116566 0.083544 0.0764828 28 3171 46 6.55708e+06 277265 500653. 1732.36 2.50 0.305033 0.274767 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0460978 0.0417009 140 133 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55524 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 15.5 MiB 0.16 733 7548 1614 5464 470 54.2 MiB 0.09 0.00 5.36346 -120.328 -5.36346 5.36346 1.05 0.000904749 0.000828354 0.0438593 0.0401821 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.97 0.115495 0.103222 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0306502 0.027528 91 87 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.23 17344 13 0.18 -1 -1 32616 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1075 12951 3421 7713 1817 54.9 MiB 0.17 0.00 6.90774 -144.707 -6.90774 6.90774 1.05 0.00129375 0.00118393 0.090844 0.0831735 28 3088 32 6.55708e+06 289320 500653. 1732.36 2.17 0.279634 0.251957 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0549876 0.0496722 144 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17588 13 0.27 -1 -1 32808 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1429 6575 1166 5105 304 55.6 MiB 0.11 0.00 8.01121 -157.98 -8.01121 8.01121 1.05 0.00168632 0.00154619 0.0562108 0.0515386 34 3477 22 6.55708e+06 373705 585099. 2024.56 2.70 0.416572 0.374446 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0675554 0.0611581 211 210 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.29 17944 13 0.28 -1 -1 32552 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1433 6823 1289 5315 219 55.2 MiB 0.12 0.00 7.886 -165.604 -7.886 7.886 1.05 0.00163314 0.00149742 0.0594015 0.0544549 36 4367 47 6.55708e+06 325485 612192. 2118.31 8.96 0.483144 0.434068 22750 144809 -1 3332 17 1366 4336 289824 66269 7.0397 7.0397 -158.876 -7.0397 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0627756 0.0570737 194 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17348 9 0.09 -1 -1 32288 -1 -1 24 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55576 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 15.6 MiB 0.19 744 10762 3120 6243 1399 54.3 MiB 0.10 0.00 5.06374 -98.4324 -5.06374 5.06374 1.04 0.000819811 0.000747303 0.0517457 0.0473728 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.54 0.154143 0.138061 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.22 0.06 0.17 -1 -1 0.22 0.0262003 0.0235087 87 76 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.22 17536 13 0.27 -1 -1 32712 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1381 10781 2930 5957 1894 55.4 MiB 0.17 0.00 7.83519 -151.249 -7.83519 7.83519 0.77 0.00160165 0.00146844 0.0933947 0.085662 30 4083 42 6.55708e+06 301375 526063. 1820.29 3.57 0.316096 0.284591 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630877 0.0571082 193 193 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.18 17312 8 0.09 -1 -1 33008 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 15.6 MiB 0.13 553 7648 2806 3716 1126 54.2 MiB 0.05 0.00 4.12642 -89.8462 -4.12642 4.12642 1.14 0.000299994 0.000269655 0.019699 0.0177063 30 1616 22 6.55708e+06 192880 526063. 1820.29 1.08 0.104158 0.0919778 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.24 0.05 0.20 -1 -1 0.24 0.0238679 0.0213639 77 60 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.23 17544 15 0.22 -1 -1 32760 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1321 6923 1475 4903 545 55.4 MiB 0.11 0.00 8.32249 -162.146 -8.32249 8.32249 1.09 0.00144775 0.00132805 0.0531067 0.0487031 36 3269 25 6.55708e+06 337540 612192. 2118.31 3.03 0.375341 0.336881 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0497231 0.0450642 165 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17688 13 0.22 -1 -1 32724 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1319 5919 1133 4327 459 55.2 MiB 0.10 0.00 7.07675 -156.6 -7.07675 7.07675 1.05 0.00146808 0.00134593 0.0476202 0.0436721 28 3679 22 6.55708e+06 313430 500653. 1732.36 2.56 0.240778 0.216868 21310 115450 -1 3055 23 1552 4783 319503 75123 6.44892 6.44892 -155.475 -6.44892 0 0 612192. 2118.31 0.22 0.17 0.18 -1 -1 0.22 0.0671703 0.0606296 168 166 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17768 13 0.28 -1 -1 32744 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1276 11223 2538 6825 1860 55.2 MiB 0.17 0.00 7.85647 -160.581 -7.85647 7.85647 1.05 0.00157048 0.0014403 0.0886624 0.0812629 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.84 0.304434 0.27478 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.27 0.11 0.13 -1 -1 0.27 0.052012 0.0472205 187 185 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.22 17456 12 0.16 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1153 7191 1558 5291 342 54.9 MiB 0.11 0.00 6.57592 -147.41 -6.57592 6.57592 1.04 0.00128764 0.00117926 0.0520102 0.0476354 36 3148 35 6.55708e+06 277265 612192. 2118.31 4.10 0.362778 0.325243 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0440652 0.0398731 147 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17572 11 0.15 -1 -1 32588 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.19 963 12919 3847 7319 1753 54.7 MiB 0.16 0.00 6.46503 -135.82 -6.46503 6.46503 1.04 0.00115326 0.00104915 0.083551 0.076472 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.55 0.229834 0.20748 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.037551 0.0339607 131 125 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.24 17456 11 0.17 -1 -1 32608 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 16.6 MiB 0.35 1010 6913 1544 4325 1044 55.1 MiB 0.05 0.00 6.38158 -126.573 -6.38158 6.38158 0.72 0.000457078 0.000412842 0.018824 0.0170267 26 3323 50 6.55708e+06 337540 477104. 1650.88 1.95 0.101858 0.0893736 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0493514 0.0445865 150 145 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.22 17448 12 0.22 -1 -1 32636 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1304 6321 1255 4617 449 55.1 MiB 0.10 0.00 7.16635 -157.812 -7.16635 7.16635 1.05 0.00149924 0.00137619 0.0514235 0.0471874 26 3817 49 6.55708e+06 313430 477104. 1650.88 3.66 0.312345 0.280521 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586273 0.0529867 181 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.22 17516 12 0.16 -1 -1 32744 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 16.5 MiB 0.57 980 5567 1150 4291 126 55.1 MiB 0.09 0.00 7.18658 -144.693 -7.18658 7.18658 1.06 0.00128207 0.00117193 0.0418527 0.0383368 28 3147 34 6.55708e+06 277265 500653. 1732.36 2.55 0.234927 0.211064 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0714621 0.0643746 149 146 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.24 17460 10 0.15 -1 -1 32600 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.18 1013 6563 1489 4557 517 54.9 MiB 0.10 0.00 5.76546 -121.445 -5.76546 5.76546 1.04 0.00123501 0.00113571 0.0489248 0.0448471 30 2358 16 6.55708e+06 265210 526063. 1820.29 1.28 0.196794 0.177268 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0424779 0.0384899 137 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18124 13 0.29 -1 -1 32788 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1488 10247 2366 6979 902 55.8 MiB 0.17 0.00 7.78037 -164.973 -7.78037 7.78037 1.04 0.00180581 0.00165542 0.0910545 0.0834306 32 4128 46 6.55708e+06 373705 554710. 1919.41 2.37 0.396597 0.35737 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0626686 0.0569091 221 221 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.28 18196 14 0.31 -1 -1 33424 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 16.9 MiB 0.50 1341 7544 1708 5122 714 55.4 MiB 0.13 0.00 7.48711 -165.315 -7.48711 7.48711 1.07 0.00162643 0.00149267 0.0640908 0.0588322 30 3756 44 6.55708e+06 337540 526063. 1820.29 2.34 0.335318 0.302156 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0625798 0.0567881 191 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17640 12 0.15 -1 -1 32592 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1061 14582 3956 8171 2455 54.9 MiB 0.19 0.00 7.55424 -147.694 -7.55424 7.55424 0.99 0.00129803 0.00118868 0.0947327 0.0865592 36 2670 17 6.55708e+06 349595 612192. 2118.31 2.82 0.359124 0.322857 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0417348 0.0377704 156 150 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.29 17944 12 0.28 -1 -1 32868 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1440 9951 2153 6171 1627 55.5 MiB 0.16 0.00 7.66392 -155.521 -7.66392 7.66392 1.07 0.00176201 0.00161857 0.0853174 0.0783459 30 3843 35 6.55708e+06 397815 526063. 1820.29 2.21 0.351813 0.317985 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.24 0.16 0.22 -1 -1 0.24 0.0749786 0.0680013 218 216 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17856 14 0.33 -1 -1 33356 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1368 10442 2445 6848 1149 55.7 MiB 0.17 0.00 8.27333 -162.102 -8.27333 8.27333 1.05 0.00167894 0.00154032 0.0894244 0.0820305 30 3476 48 6.55708e+06 349595 526063. 1820.29 2.25 0.378552 0.341264 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0267756 0.0242162 202 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.29 18208 13 0.25 -1 -1 32896 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1406 11311 2955 7221 1135 55.2 MiB 0.18 0.00 7.94497 -159.991 -7.94497 7.94497 1.05 0.00157341 0.00144113 0.0916055 0.0839089 36 3512 22 6.55708e+06 337540 612192. 2118.31 2.96 0.428868 0.386138 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0592924 0.0537269 185 185 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.16 17592 13 0.25 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1345 7613 1868 4862 883 55.4 MiB 0.12 0.00 7.08841 -141.492 -7.08841 7.08841 1.04 0.00153019 0.00140258 0.0633828 0.058075 34 3664 49 6.55708e+06 313430 585099. 2024.56 3.97 0.463602 0.416166 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.28 0.13 0.22 -1 -1 0.28 0.0554394 0.0502481 179 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.20 17388 12 0.18 -1 -1 32696 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 16.7 MiB 0.22 1315 5548 1167 3981 400 55.4 MiB 0.09 0.00 7.00741 -145.329 -7.00741 7.00741 1.04 0.00142816 0.00130966 0.0462758 0.0424451 28 3273 27 6.55708e+06 289320 500653. 1732.36 2.08 0.242933 0.218273 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0535003 0.0483115 171 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.31 18516 14 0.38 -1 -1 32836 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 17.1 MiB 0.40 1670 9383 2100 6642 641 55.7 MiB 0.17 0.00 8.23218 -176.173 -8.23218 8.23218 1.04 0.00187062 0.00171422 0.0867643 0.0795036 34 4632 43 6.55708e+06 373705 585099. 2024.56 3.86 0.266422 0.237584 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0649971 0.0591474 230 230 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17384 11 0.21 -1 -1 32460 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.34 1051 8603 2089 5379 1135 55.0 MiB 0.13 0.00 6.74223 -137.589 -6.74223 6.74223 1.05 0.00138527 0.0012696 0.0639838 0.058588 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.85 0.279398 0.251465 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0498976 0.0451412 163 158 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17648 13 0.30 -1 -1 33400 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1315 7435 1572 5156 707 55.3 MiB 0.12 0.00 8.06447 -154.642 -8.06447 8.06447 1.06 0.001589 0.00145439 0.0630293 0.0577129 28 3730 45 6.55708e+06 337540 500653. 1732.36 2.76 0.324734 0.291996 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.22 0.16 0.12 -1 -1 0.22 0.0608241 0.0551223 193 193 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.26 17788 12 0.25 -1 -1 32880 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.44 1532 15213 4154 8657 2402 55.5 MiB 0.24 0.00 7.13712 -150.826 -7.13712 7.13712 1.05 0.00170639 0.00156331 0.128984 0.118116 36 3865 38 6.55708e+06 349595 612192. 2118.31 4.75 0.544514 0.490671 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0796048 0.0721058 210 209 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.24 17552 13 0.24 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1350 5133 911 3808 414 55.3 MiB 0.09 0.00 7.54057 -158.305 -7.54057 7.54057 1.07 0.00155985 0.00143116 0.0430153 0.0394787 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.58 0.24938 0.224729 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0586099 0.05302 183 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.27 17636 13 0.21 -1 -1 32780 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1371 12351 2891 7373 2087 55.3 MiB 0.18 0.00 7.1188 -155.865 -7.1188 7.1188 1.07 0.00151145 0.00138508 0.0974992 0.0893998 36 3355 27 6.55708e+06 313430 612192. 2118.31 4.33 0.438632 0.394043 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0499009 0.0452623 178 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32796 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 16.7 MiB 0.44 1446 11170 2757 7067 1346 55.3 MiB 0.17 0.00 7.31654 -157.818 -7.31654 7.31654 1.04 0.00164332 0.00150557 0.0912286 0.0835579 38 3284 17 6.55708e+06 361650 638502. 2209.35 2.97 0.431647 0.388599 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.30 0.10 0.25 -1 -1 0.30 0.0404278 0.0365111 197 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.16 17992 13 0.29 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1513 7223 1461 5178 584 55.5 MiB 0.13 0.00 7.58438 -161.714 -7.58438 7.58438 1.05 0.0017617 0.00161564 0.0640522 0.0587283 36 3945 19 6.55708e+06 373705 612192. 2118.31 3.57 0.417992 0.37615 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0666319 0.060399 212 212 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17804 14 0.27 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1215 10813 2361 6891 1561 55.2 MiB 0.16 0.00 8.31609 -163.248 -8.31609 8.31609 1.04 0.00149297 0.00136946 0.0870622 0.0798397 30 3273 27 6.55708e+06 289320 526063. 1820.29 2.46 0.299322 0.269888 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0551152 0.049908 168 168 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17824 13 0.26 -1 -1 32672 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1503 5206 957 3956 293 55.4 MiB 0.09 0.00 8.07478 -162.365 -8.07478 8.07478 1.05 0.00163736 0.00150285 0.0447537 0.0410977 28 4195 32 6.55708e+06 361650 500653. 1732.36 3.83 0.291691 0.262571 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0644936 0.0584505 198 197 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 17892 13 0.27 -1 -1 32808 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1405 8401 1949 5780 672 55.7 MiB 0.14 0.00 7.80415 -160.841 -7.80415 7.80415 1.05 0.00170154 0.00155547 0.0720467 0.0660169 34 3777 50 6.55708e+06 373705 585099. 2024.56 3.80 0.516687 0.46456 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.0558744 0.0508025 213 211 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.29 18048 12 0.29 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1438 11641 3058 7283 1300 55.5 MiB 0.19 0.00 7.70272 -159.771 -7.70272 7.70272 0.79 0.00169619 0.00155526 0.0945156 0.0864947 30 3780 27 6.55708e+06 397815 526063. 1820.29 1.83 0.331905 0.299475 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0647839 0.0588163 216 214 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.23 17324 11 0.13 -1 -1 32620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 16.2 MiB 0.24 1054 3998 719 2985 294 54.8 MiB 0.06 0.00 6.14869 -128.86 -6.14869 6.14869 1.05 0.00116246 0.00106444 0.0293354 0.0268715 26 2734 30 6.55708e+06 216990 477104. 1650.88 2.06 0.192845 0.17267 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0506837 0.0463528 125 122 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.26 17840 13 0.22 -1 -1 32648 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.34 1266 7888 1808 5375 705 55.1 MiB 0.12 0.00 7.4424 -157.565 -7.4424 7.4424 1.05 0.00142902 0.00131068 0.0618502 0.0566824 28 3615 32 6.55708e+06 289320 500653. 1732.36 2.45 0.271248 0.24408 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0562075 0.05079 161 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18268 14 0.42 -1 -1 32852 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 17.3 MiB 0.26 1601 9199 2042 6426 731 55.9 MiB 0.18 0.00 8.66873 -176.87 -8.66873 8.66873 1.09 0.00196735 0.00179896 0.0969304 0.0888012 30 4285 34 6.55708e+06 397815 526063. 1820.29 2.65 0.393488 0.355507 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.22 0.16 0.17 -1 -1 0.22 0.0705812 0.0642085 245 244 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.27 17808 13 0.28 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1376 4579 799 3553 227 55.1 MiB 0.08 0.00 8.02278 -172.696 -8.02278 8.02278 1.06 0.00157226 0.00142938 0.0392975 0.0359971 36 3334 17 6.55708e+06 325485 612192. 2118.31 3.28 0.365503 0.327843 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0541466 0.0492155 178 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.23 17376 11 0.17 -1 -1 32660 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 16.3 MiB 0.17 1035 10687 2518 6679 1490 54.8 MiB 0.14 0.00 6.59735 -138.464 -6.59735 6.59735 1.04 0.00125328 0.001147 0.0756975 0.0692433 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.71 0.305534 0.274134 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.26 0.10 0.22 -1 -1 0.26 0.0454222 0.0411535 139 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.30 18252 15 0.46 -1 -1 32736 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1771 9773 2274 6549 950 55.7 MiB 0.18 0.00 9.55013 -184.943 -9.55013 9.55013 1.04 0.0020423 0.00187112 0.0948225 0.0869135 36 4458 20 6.55708e+06 409870 612192. 2118.31 4.83 0.540619 0.488551 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.27 0.21 0.12 -1 -1 0.27 0.0850269 0.0771835 257 257 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.26 17588 13 0.31 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1402 7958 1933 5289 736 55.6 MiB 0.13 0.00 7.87358 -164.462 -7.87358 7.87358 1.04 0.00169476 0.00155497 0.0717264 0.0657554 30 3523 41 6.55708e+06 337540 526063. 1820.29 1.98 0.346373 0.312466 21886 126133 -1 2862 16 1203 3677 173554 41260 6.73256 6.73256 -152.703 -6.73256 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0582527 0.0529153 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.22 17412 11 0.13 -1 -1 32040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1082 11804 3066 7108 1630 55.0 MiB 0.15 0.00 6.28346 -137.062 -6.28346 6.28346 1.06 0.00124315 0.00113818 0.0813482 0.0744848 30 2616 26 6.55708e+06 265210 526063. 1820.29 1.65 0.24908 0.224487 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0359682 0.0326458 141 137 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.26 17720 12 0.29 -1 -1 32812 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 17.1 MiB 0.41 1459 6058 1136 4425 497 55.8 MiB 0.11 0.00 7.4882 -153.189 -7.4882 7.4882 1.05 0.00171735 0.00157094 0.0539221 0.0494075 28 4439 38 6.55708e+06 361650 500653. 1732.36 4.26 0.328825 0.295979 21310 115450 -1 3721 57 4013 13613 1649164 568355 6.87004 6.87004 -155.733 -6.87004 0 0 612192. 2118.31 0.22 0.74 0.09 -1 -1 0.22 0.179911 0.161773 213 211 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.22 17540 12 0.20 -1 -1 32640 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1183 11346 2851 6780 1715 55.2 MiB 0.15 0.00 7.37351 -152.427 -7.37351 7.37351 1.04 0.0013547 0.0012408 0.0801469 0.0734715 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.98 0.275808 0.248654 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.26 0.12 0.09 -1 -1 0.26 0.0490432 0.0444434 153 149 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17612 12 0.18 -1 -1 32720 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 948 9803 2338 5714 1751 55.0 MiB 0.14 0.00 7.00946 -139.977 -7.00946 7.00946 1.05 0.00129864 0.00119052 0.0748006 0.0685211 26 3038 22 6.55708e+06 253155 477104. 1650.88 2.88 0.244368 0.220363 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.21 0.12 0.18 -1 -1 0.21 0.0485096 0.0438921 140 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 17804 12 0.28 -1 -1 32732 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1279 5474 1033 4128 313 55.6 MiB 0.10 0.00 6.7577 -128.343 -6.7577 6.7577 1.09 0.00161401 0.00148092 0.0476836 0.0438253 30 3505 36 6.55708e+06 373705 526063. 1820.29 2.22 0.256511 0.230624 21886 126133 -1 2899 27 1332 4449 354174 132887 5.94258 5.94258 -126.347 -5.94258 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0844115 0.0762196 191 190 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.27 17812 13 0.33 -1 -1 32776 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 17.1 MiB 0.58 1641 6757 1409 4886 462 55.7 MiB 0.12 0.00 8.4108 -177.204 -8.4108 8.4108 1.06 0.00183677 0.00168568 0.0614884 0.056427 30 4203 45 6.55708e+06 397815 526063. 1820.29 2.90 0.375833 0.339078 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0703228 0.0639233 238 236 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17588 12 0.22 -1 -1 32708 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1388 15645 4295 9025 2325 55.4 MiB 0.24 0.00 7.61066 -152.509 -7.61066 7.61066 1.11 0.00164487 0.0015051 0.125282 0.114664 30 3749 42 6.55708e+06 385760 526063. 1820.29 3.16 0.397353 0.358596 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0699665 0.0632889 200 196 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.23 17460 12 0.15 -1 -1 32428 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 16.4 MiB 0.50 1058 4842 1062 3260 520 54.8 MiB 0.07 0.00 6.82123 -141.643 -6.82123 6.82123 1.05 0.0011818 0.00108098 0.0346541 0.0317326 30 2539 19 6.55708e+06 241100 526063. 1820.29 1.30 0.151024 0.135443 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0578673 0.0521069 126 120 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.24 17952 12 0.21 -1 -1 32412 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1176 10455 2348 6392 1715 54.9 MiB 0.15 0.00 7.13387 -142.33 -7.13387 7.13387 1.04 0.00136933 0.00124415 0.0762727 0.0698203 28 3265 32 6.55708e+06 289320 500653. 1732.36 2.58 0.274963 0.24755 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0534659 0.0482634 154 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.25 17652 11 0.18 -1 -1 32848 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1196 13547 4241 6931 2375 55.3 MiB 0.19 0.00 6.85121 -131.802 -6.85121 6.85121 1.04 0.00152106 0.00139304 0.104209 0.0954392 36 3385 32 6.55708e+06 361650 612192. 2118.31 5.22 0.459444 0.413233 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.31 0.12 0.23 -1 -1 0.31 0.0484521 0.0441465 190 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.23 17520 11 0.20 -1 -1 32684 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1080 10647 2769 6876 1002 55.3 MiB 0.15 0.00 6.62889 -122.091 -6.62889 6.62889 1.04 0.0014221 0.00130524 0.0831324 0.0762128 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.99 0.392609 0.352736 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0604533 0.0545037 172 171 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.26 17772 13 0.19 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1040 5271 1036 3997 238 55.0 MiB 0.08 0.00 7.2482 -136.339 -7.2482 7.2482 1.08 0.00130276 0.00119254 0.0395862 0.0362533 36 2751 18 6.55708e+06 301375 612192. 2118.31 2.82 0.311549 0.279455 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0559882 0.0506249 148 147 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.26 17800 12 0.19 -1 -1 32844 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1203 11270 2888 6672 1710 55.1 MiB 0.16 0.00 7.39203 -156.297 -7.39203 7.39203 1.05 0.00149951 0.00137648 0.0855065 0.0784826 30 3360 45 6.55708e+06 337540 526063. 1820.29 2.79 0.3369 0.303453 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0510762 0.0462816 174 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.26 17832 13 0.28 -1 -1 32800 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1314 8130 1959 5459 712 55.4 MiB 0.13 0.00 8.02027 -155.447 -8.02027 8.02027 1.04 0.00158242 0.0014517 0.0686292 0.0629553 30 3005 23 6.55708e+06 325485 526063. 1820.29 1.63 0.277205 0.250102 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.24 0.10 0.19 -1 -1 0.24 0.0493479 0.0448401 187 187 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17912 14 0.23 -1 -1 32780 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 16.7 MiB 0.24 1224 14168 3595 8187 2386 55.2 MiB 0.21 0.00 8.42547 -164.88 -8.42547 8.42547 1.05 0.00162987 0.00149213 0.115867 0.106019 26 3972 40 6.55708e+06 337540 477104. 1650.88 3.42 0.376271 0.339372 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.23 0.15 0.17 -1 -1 0.23 0.0693063 0.0626865 196 196 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18204 14 0.24 -1 -1 32852 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1263 9791 2392 5641 1758 55.2 MiB 0.15 0.00 7.61341 -152.493 -7.61341 7.61341 1.05 0.00151076 0.00138432 0.0796354 0.0730156 30 3316 50 6.55708e+06 301375 526063. 1820.29 2.44 0.352533 0.317473 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.062573 0.0566831 175 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.28 18132 13 0.32 -1 -1 32676 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1335 6813 1455 4737 621 55.6 MiB 0.12 0.00 7.97606 -158.638 -7.97606 7.97606 1.08 0.0016916 0.00155007 0.0600808 0.0551064 28 4023 34 6.55708e+06 349595 500653. 1732.36 3.10 0.315257 0.283922 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.24 0.27 0.18 -1 -1 0.24 0.10041 0.0905767 205 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.26 17568 13 0.19 -1 -1 32464 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 16.2 MiB 0.41 1181 4811 970 3437 404 54.8 MiB 0.08 0.00 7.32681 -149.503 -7.32681 7.32681 1.03 0.00131811 0.00120553 0.037203 0.0340947 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.64 0.209407 0.188047 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.046453 0.0420571 147 146 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.28 18084 13 0.41 -1 -1 32980 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1409 6058 1135 4495 428 55.5 MiB 0.11 0.00 8.2444 -163.721 -8.2444 8.2444 1.05 0.00171161 0.00156975 0.055486 0.0509245 36 3519 23 6.55708e+06 385760 612192. 2118.31 3.99 0.427717 0.384993 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.059451 0.0540316 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17616 14 0.30 -1 -1 32832 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.45 1264 7231 1520 5560 151 55.2 MiB 0.12 0.00 8.00109 -166.402 -8.00109 8.00109 1.04 0.00157964 0.00144368 0.0619536 0.0567093 30 3743 50 6.55708e+06 325485 526063. 1820.29 2.57 0.340274 0.306038 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0490203 0.0445185 181 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17800 13 0.22 -1 -1 32884 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 16.7 MiB 0.28 1305 14323 3915 8229 2179 55.4 MiB 0.21 0.00 7.86768 -158.537 -7.86768 7.86768 1.05 0.00150935 0.00138373 0.114705 0.105084 38 3237 35 6.55708e+06 301375 638502. 2209.35 3.80 0.47164 0.424514 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.28 0.13 0.25 -1 -1 0.28 0.0572084 0.0517283 175 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17992 13 0.21 -1 -1 32960 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1164 9989 2471 5804 1714 55.3 MiB 0.16 0.00 7.4808 -136.781 -7.4808 7.4808 1.05 0.00150917 0.00138497 0.0824713 0.0756509 28 4049 33 6.55708e+06 325485 500653. 1732.36 5.12 0.28024 0.252134 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0552659 0.0499744 178 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.27 17824 14 0.34 -1 -1 32784 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1476 8091 1866 5495 730 55.7 MiB 0.13 0.00 7.88885 -165.953 -7.88885 7.88885 1.04 0.00177218 0.00162493 0.0661721 0.0607088 30 3544 39 6.55708e+06 446035 526063. 1820.29 1.86 0.346583 0.312639 21886 126133 -1 2956 19 1495 4336 195157 47267 7.0377 7.0377 -158.211 -7.0377 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0700885 0.0636001 218 216 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17608 11 0.27 -1 -1 32836 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.45 1160 8130 1856 5819 455 55.5 MiB 0.13 0.00 6.86478 -134.007 -6.86478 6.86478 1.05 0.00154024 0.00141181 0.0675125 0.0618403 28 3852 30 6.55708e+06 349595 500653. 1732.36 3.20 0.299502 0.270331 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0631889 0.0571801 177 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17076 13 0.16 -1 -1 32572 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1142 8083 2034 5178 871 55.1 MiB 0.11 0.00 7.01052 -158.499 -7.01052 7.01052 1.08 0.00122361 0.00111469 0.0544127 0.0498469 28 3461 48 6.55708e+06 289320 500653. 1732.36 3.66 0.266688 0.239557 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0477246 0.043103 138 128 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 17780 14 0.23 -1 -1 32904 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 16.7 MiB 0.39 1316 5267 941 3849 477 55.2 MiB 0.09 0.00 8.08175 -166.146 -8.08175 8.08175 0.95 0.00151236 0.00138663 0.0433265 0.039752 36 3344 49 6.55708e+06 337540 612192. 2118.31 5.74 0.435362 0.390351 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0591399 0.0535104 179 173 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.28 18260 15 0.40 -1 -1 32708 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57244 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1738 9421 2028 6135 1258 55.9 MiB 0.17 0.00 9.11118 -191.695 -9.11118 9.11118 1.10 0.00193088 0.00177195 0.0861417 0.0791186 30 4813 25 6.55708e+06 397815 526063. 1820.29 3.17 0.353604 0.319777 21886 126133 -1 3846 17 1881 5477 280413 64438 7.85982 7.85982 -180.296 -7.85982 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0694731 0.0631788 241 240 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17548 11 0.16 -1 -1 32588 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 16.1 MiB 0.38 1015 8213 1831 5887 495 54.7 MiB 0.10 0.00 6.43354 -132.345 -6.43354 6.43354 1.06 0.00120489 0.00110267 0.0433118 0.0391958 26 2795 26 6.55708e+06 265210 477104. 1650.88 2.68 0.209357 0.187563 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0441358 0.0397413 129 126 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.23 17332 12 0.18 -1 -1 32848 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1181 9395 2257 5715 1423 55.2 MiB 0.13 0.00 7.12111 -149.72 -7.12111 7.12111 1.04 0.00134892 0.00123072 0.0676851 0.0620024 34 3103 20 6.55708e+06 313430 585099. 2024.56 2.42 0.312183 0.280375 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0439134 0.0397502 156 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.28 17904 12 0.27 -1 -1 32712 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1374 9732 2347 6008 1377 55.4 MiB 0.16 0.00 7.22518 -156.32 -7.22518 7.22518 1.05 0.00172638 0.00157779 0.0823147 0.0754074 30 3769 28 6.55708e+06 385760 526063. 1820.29 2.67 0.332095 0.299744 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0664914 0.0604075 213 206 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.27 17840 12 0.23 -1 -1 32788 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 16.6 MiB 0.34 1295 7929 1664 5456 809 55.1 MiB 0.13 0.00 7.52995 -159.234 -7.52995 7.52995 1.04 0.001534 0.001407 0.0651034 0.0597002 36 3430 23 6.55708e+06 313430 612192. 2118.31 3.11 0.380701 0.342388 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0477721 0.0433968 181 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.16 18172 14 0.42 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 17.2 MiB 0.50 1613 7655 1578 5578 499 55.8 MiB 0.14 0.00 9.00229 -179.771 -9.00229 9.00229 1.04 0.00190819 0.00175195 0.073292 0.0672104 36 4565 44 6.55708e+06 373705 612192. 2118.31 6.66 0.561114 0.505824 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.26 0.17 0.12 -1 -1 0.26 0.0730662 0.0664722 234 233 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.25 17676 12 0.21 -1 -1 32840 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 16.4 MiB 0.43 1246 9687 2384 6348 955 55.2 MiB 0.15 0.00 7.02918 -135.408 -7.02918 7.02918 1.04 0.00143295 0.001315 0.0778769 0.0714283 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.85 0.29105 0.262201 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.22 0.12 0.20 -1 -1 0.22 0.0493222 0.044473 160 158 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.22 17456 11 0.21 -1 -1 32804 -1 -1 26 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 16.4 MiB 0.33 833 9013 2082 5123 1808 54.8 MiB 0.12 0.00 7.08055 -122.398 -7.08055 7.08055 1.04 0.00122075 0.00111799 0.0628165 0.0575179 28 2481 16 6.55708e+06 313430 500653. 1732.36 1.38 0.209336 0.188727 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0422386 0.0382439 140 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.29 18200 13 0.42 -1 -1 32892 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 17.7 MiB 0.46 1984 9864 2435 6697 732 56.0 MiB 0.18 0.00 7.66038 -164.562 -7.66038 7.66038 1.04 0.00212074 0.00194337 0.0921628 0.0844266 36 4924 33 6.55708e+06 482200 612192. 2118.31 6.90 0.545118 0.491239 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.27 0.21 0.23 -1 -1 0.27 0.0843849 0.0766875 286 286 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 18076 14 0.24 -1 -1 33088 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.21 1315 7027 1431 4957 639 55.3 MiB 0.11 0.00 8.27869 -161.961 -8.27869 8.27869 1.04 0.00156251 0.00143306 0.0581757 0.0533658 28 3660 24 6.55708e+06 337540 500653. 1732.36 2.37 0.26828 0.241767 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0637751 0.0576984 188 186 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17768 12 0.16 -1 -1 32640 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1196 5395 963 4230 202 55.0 MiB 0.08 0.00 7.24055 -154.388 -7.24055 7.24055 1.04 0.00132207 0.00121292 0.0380952 0.0349644 30 2856 20 6.55708e+06 325485 526063. 1820.29 1.46 0.201291 0.181133 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0426716 0.0387173 145 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.26 17628 13 0.27 -1 -1 32836 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1201 6321 1371 4614 336 55.3 MiB 0.11 0.00 7.64034 -157.02 -7.64034 7.64034 1.04 0.00152202 0.00139495 0.053864 0.0493518 30 3256 40 6.55708e+06 313430 526063. 1820.29 1.86 0.294909 0.26538 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0468604 0.0425014 169 169 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.27 17932 13 0.31 -1 -1 32812 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1537 8423 1899 6115 409 55.8 MiB 0.15 0.00 7.71709 -159.898 -7.71709 7.71709 1.05 0.00188193 0.00173176 0.0748891 0.0687345 36 3879 25 6.55708e+06 421925 612192. 2118.31 3.71 0.466765 0.42033 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.32 0.09 0.23 -1 -1 0.32 0.0354705 0.0322565 233 230 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.26 17640 11 0.24 -1 -1 32852 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1421 8703 2291 5674 738 55.5 MiB 0.14 0.00 6.43018 -129.379 -6.43018 6.43018 1.05 0.00163679 0.00150184 0.0722123 0.0662549 38 3311 27 6.55708e+06 373705 638502. 2209.35 3.30 0.432757 0.389108 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0580261 0.0526955 199 199 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 17780 15 0.33 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 16.8 MiB 0.48 1495 8283 1832 5858 593 55.6 MiB 0.14 0.00 9.21891 -185.491 -9.21891 9.21891 1.04 0.00170503 0.00156319 0.0721097 0.0660744 38 3387 17 6.55708e+06 349595 638502. 2209.35 3.42 0.425645 0.383136 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.28 0.12 0.25 -1 -1 0.28 0.0532213 0.048407 202 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.29 18148 13 0.31 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1391 6271 1140 4757 374 55.4 MiB 0.11 0.00 8.07023 -173.04 -8.07023 8.07023 1.05 0.00165512 0.00151757 0.0534103 0.048985 30 3593 20 6.55708e+06 361650 526063. 1820.29 2.14 0.265214 0.238901 21886 126133 -1 2903 17 1284 3905 184760 43217 7.10844 7.10844 -159.923 -7.10844 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0694765 0.0631634 194 191 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.14 17496 12 0.19 -1 -1 32692 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 16.7 MiB 0.43 1116 9738 2558 6406 774 55.3 MiB 0.13 0.00 7.61081 -154.169 -7.61081 7.61081 1.05 0.00133967 0.00122898 0.068667 0.0629449 30 3005 25 6.55708e+06 349595 526063. 1820.29 1.72 0.247277 0.222964 21886 126133 -1 2423 19 1255 3517 162640 39524 6.47024 6.47024 -141.633 -6.47024 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524299 0.0474358 157 154 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.24 17636 11 0.15 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 1023 14221 4533 7413 2275 55.0 MiB 0.18 0.00 6.85492 -138.928 -6.85492 6.85492 1.05 0.00124918 0.0011431 0.0992181 0.0907217 30 2928 46 6.55708e+06 253155 526063. 1820.29 2.21 0.311489 0.280318 21886 126133 -1 2286 18 1070 2867 167614 45871 6.07244 6.07244 -136.814 -6.07244 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0472799 0.0426707 145 141 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17604 13 0.32 -1 -1 32860 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1413 7544 1727 4833 984 55.5 MiB 0.13 0.00 7.87899 -160.785 -7.87899 7.87899 1.04 0.00167024 0.00153138 0.0656729 0.0602013 36 4021 32 6.55708e+06 349595 612192. 2118.31 4.73 0.454425 0.408428 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.27 0.18 0.23 -1 -1 0.27 0.07392 0.0672022 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.24 17540 10 0.16 -1 -1 32612 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 868 12919 4781 6181 1957 54.8 MiB 0.17 0.00 5.78714 -114.742 -5.78714 5.78714 1.09 0.00122749 0.00112418 0.088476 0.0810058 36 2361 20 6.55708e+06 289320 612192. 2118.31 2.94 0.357012 0.321594 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0376194 0.0341053 137 134 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17464 14 0.19 -1 -1 32536 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 16.6 MiB 0.48 1127 8083 1934 5578 571 55.1 MiB 0.12 0.00 7.89252 -162.804 -7.89252 7.89252 1.05 0.0013253 0.00121414 0.0586879 0.0537833 30 2792 49 6.55708e+06 289320 526063. 1820.29 2.33 0.294772 0.265269 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0541165 0.0489064 146 145 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.27 18032 13 0.26 -1 -1 32712 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1259 5343 1011 3807 525 55.4 MiB 0.05 0.00 7.51815 -158.387 -7.51815 7.51815 0.73 0.000555378 0.000497503 0.016943 0.0153981 30 3403 50 6.55708e+06 361650 526063. 1820.29 2.39 0.28552 0.255996 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0592643 0.0536671 180 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.22 17348 12 0.15 -1 -1 32648 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 16.2 MiB 0.32 1126 6425 1245 4721 459 54.7 MiB 0.09 0.00 6.61153 -138.873 -6.61153 6.61153 1.04 0.00135675 0.00123333 0.043998 0.0402344 26 3323 44 6.55708e+06 313430 477104. 1650.88 4.18 0.250248 0.224694 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0459733 0.0415341 138 134 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.27 17772 12 0.19 -1 -1 32844 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1378 9336 2424 5781 1131 55.2 MiB 0.15 0.00 6.98257 -148.375 -6.98257 6.98257 1.08 0.00159093 0.00145749 0.080651 0.0738476 28 3883 35 6.55708e+06 313430 500653. 1732.36 4.59 0.325773 0.29336 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.23 0.26 0.19 -1 -1 0.23 0.0792537 0.0716163 195 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.29 17912 13 0.28 -1 -1 32672 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 16.8 MiB 0.49 1315 8372 1899 5332 1141 55.3 MiB 0.14 0.00 7.89081 -157.415 -7.89081 7.89081 1.06 0.00163616 0.00149935 0.0712874 0.0654115 30 3625 30 6.55708e+06 349595 526063. 1820.29 1.98 0.306686 0.27667 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0604182 0.054909 193 191 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.23 17348 11 0.17 -1 -1 32628 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1172 8405 1842 5723 840 55.0 MiB 0.11 0.00 6.25963 -142.54 -6.25963 6.25963 1.07 0.00128668 0.001167 0.0576879 0.0527868 28 3065 24 6.55708e+06 301375 500653. 1732.36 1.86 0.23006 0.207027 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0422883 0.0383321 148 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.24 17636 13 0.21 -1 -1 32764 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 16.3 MiB 0.29 1201 7888 1972 5242 674 55.0 MiB 0.12 0.00 7.53481 -156.077 -7.53481 7.53481 0.96 0.00143535 0.00131667 0.062262 0.0571249 36 3071 27 6.55708e+06 289320 612192. 2118.31 3.89 0.385114 0.345976 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0468585 0.04248 164 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.25 17844 13 0.25 -1 -1 32820 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 17.0 MiB 0.65 1318 8165 2007 5452 706 55.5 MiB 0.13 0.00 7.90343 -168.183 -7.90343 7.90343 1.04 0.00159297 0.0014602 0.067703 0.0620305 30 3226 19 6.55708e+06 337540 526063. 1820.29 1.64 0.266518 0.240373 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0654755 0.0593052 193 191 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.27 17804 11 0.21 -1 -1 32796 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1119 12568 3466 6955 2147 55.1 MiB 0.17 0.00 6.27069 -123.259 -6.27069 6.27069 1.05 0.00138578 0.00127108 0.0933256 0.085563 30 2940 50 6.55708e+06 325485 526063. 1820.29 2.16 0.337729 0.304143 21886 126133 -1 2517 15 1008 3060 157394 36211 5.50298 5.50298 -118.863 -5.50298 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0455581 0.0413035 160 158 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.29 18352 14 0.31 -1 -1 33240 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 17.4 MiB 0.36 1606 6711 1323 5111 277 55.9 MiB 0.12 0.00 8.36721 -183.374 -8.36721 8.36721 1.05 0.00182011 0.00166709 0.0590877 0.0541795 30 4329 37 6.55708e+06 421925 526063. 1820.29 2.78 0.341643 0.308068 21886 126133 -1 3550 24 1906 6091 351716 94716 7.38604 7.38604 -174.226 -7.38604 0 0 666494. 2306.21 0.24 0.20 0.20 -1 -1 0.24 0.0871901 0.0789421 224 224 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17136 12 0.17 -1 -1 32560 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1117 4987 873 3940 174 55.1 MiB 0.07 0.00 6.95154 -148.876 -6.95154 6.95154 1.03 0.00121248 0.00110995 0.0331756 0.0304147 36 2672 44 6.55708e+06 337540 612192. 2118.31 2.91 0.337617 0.302276 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0356993 0.0323959 138 131 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18120 13 0.29 -1 -1 32836 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 16.9 MiB 0.40 1370 8603 2025 5470 1108 55.3 MiB 0.14 0.00 7.91043 -160.998 -7.91043 7.91043 1.06 0.00160104 0.00146973 0.0744827 0.0682709 28 4265 49 6.55708e+06 301375 500653. 1732.36 4.71 0.357702 0.322105 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0580623 0.0525632 189 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17592 13 0.18 -1 -1 32644 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.5 MiB 0.33 1056 8130 1788 5768 574 55.0 MiB 0.12 0.00 7.50778 -157.173 -7.50778 7.50778 1.05 0.001301 0.00118841 0.0562795 0.0514286 30 2704 18 6.55708e+06 313430 526063. 1820.29 1.40 0.214892 0.193497 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.044385 0.0402158 151 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.29 17900 12 0.21 -1 -1 32872 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1163 6723 1513 4783 427 55.5 MiB 0.11 0.00 6.89912 -149.425 -6.89912 6.89912 1.04 0.00156204 0.0014264 0.0566857 0.0519115 28 3528 41 6.55708e+06 313430 500653. 1732.36 3.35 0.310618 0.279318 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0552988 0.0501387 176 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18460 15 0.47 -1 -1 33276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 17.5 MiB 0.27 1744 7060 1356 4899 805 56.0 MiB 0.14 0.00 8.47263 -171.112 -8.47263 8.47263 1.05 0.00209021 0.00191438 0.0693625 0.0635189 30 5706 47 6.55708e+06 433980 526063. 1820.29 5.07 0.436232 0.39402 21886 126133 -1 4008 29 2412 8168 612663 183661 7.6799 7.6799 -172.318 -7.6799 0 0 666494. 2306.21 0.23 0.31 0.10 -1 -1 0.23 0.117057 0.105998 256 256 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.21 17140 10 0.10 -1 -1 32152 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 15.8 MiB 0.12 585 9368 2413 5125 1830 54.3 MiB 0.10 0.00 5.46394 -116.249 -5.46394 5.46394 1.03 0.000905375 0.000829237 0.0519597 0.0475727 34 2054 46 6.55708e+06 216990 585099. 2024.56 2.26 0.279447 0.249275 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.27 0.07 0.22 -1 -1 0.27 0.0281215 0.0253442 90 84 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17672 13 0.19 -1 -1 32768 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 16.2 MiB 0.17 1072 8919 2278 5395 1246 54.8 MiB 0.13 0.00 7.24406 -148.604 -7.24406 7.24406 1.05 0.00129206 0.00118484 0.063849 0.0585826 36 2670 24 6.55708e+06 301375 612192. 2118.31 2.47 0.342695 0.308104 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0437925 0.0396976 143 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17636 12 0.21 -1 -1 32660 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1142 5938 1144 4647 147 55.2 MiB 0.10 0.00 7.66077 -153.727 -7.66077 7.66077 1.06 0.00146379 0.00134295 0.0492799 0.0452389 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.99 0.258516 0.232434 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.26 0.14 0.18 -1 -1 0.26 0.0578562 0.0523324 171 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.15 17104 9 0.13 -1 -1 32508 -1 -1 22 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 16.1 MiB 0.16 820 8191 2009 5395 787 54.7 MiB 0.10 0.00 5.29417 -99.0147 -5.29417 5.29417 1.05 0.00102226 0.000936603 0.0522873 0.0479199 28 2275 34 6.55708e+06 265210 500653. 1732.36 1.73 0.204657 0.183558 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.03816 0.0343715 111 110 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17816 12 0.25 -1 -1 32800 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1501 7867 1766 5013 1088 55.7 MiB 0.13 0.00 7.24465 -156.602 -7.24465 7.24465 1.05 0.00167613 0.00153718 0.0640638 0.0587686 36 4232 25 6.55708e+06 397815 612192. 2118.31 5.05 0.432603 0.388923 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0632831 0.0574058 212 206 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.30 18296 13 0.28 -1 -1 32664 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1408 5343 959 3971 413 55.6 MiB 0.10 0.00 8.27458 -166.489 -8.27458 8.27458 1.07 0.00169267 0.00155209 0.0480411 0.0440973 30 3772 34 6.55708e+06 361650 526063. 1820.29 2.25 0.301747 0.272148 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0613251 0.0556482 200 199 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 17.1 MiB 0.30 1124 13017 3784 8461 772 55.6 MiB 0.20 0.00 5.44269 -161.211 -5.44269 5.44269 0.75 0.00117703 0.00108076 0.0730608 0.0669919 32 2442 21 6.64007e+06 401856 554710. 1919.41 1.29 0.214948 0.193355 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0513334 0.0462344 154 50 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30448 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1017 14639 5117 7505 2017 55.6 MiB 0.24 0.00 4.98742 -150.865 -4.98742 4.98742 1.07 0.00118553 0.00108731 0.0951133 0.0872797 32 2368 24 6.64007e+06 301392 554710. 1919.41 1.19 0.222633 0.200896 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.049744 0.0448519 139 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.6 MiB 0.24 982 7575 1808 5319 448 55.3 MiB 0.13 0.00 4.35696 -123.732 -4.35696 4.35696 1.05 0.00102224 0.000936776 0.0432596 0.0396842 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.76 0.187689 0.168222 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0432382 0.0388571 126 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.7 MiB 0.07 985 10228 2796 6251 1181 55.2 MiB 0.08 0.00 4.65835 -126.219 -4.65835 4.65835 1.02 0.000391843 0.000354148 0.0223609 0.0202768 32 2212 23 6.64007e+06 339066 554710. 1919.41 1.27 0.158282 0.141491 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0439229 0.0394829 126 31 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30264 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.7 MiB 0.05 1007 9687 2297 6508 882 55.4 MiB 0.08 0.00 4.57112 -133.029 -4.57112 4.57112 0.72 0.000416208 0.000376301 0.0229293 0.020785 30 2231 22 6.64007e+06 288834 526063. 1820.29 0.77 0.0789614 0.069749 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417112 0.0376178 130 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30336 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1031 10673 2804 7227 642 55.5 MiB 0.17 0.00 3.47522 -121.603 -3.47522 3.47522 1.05 0.00120106 0.00110093 0.0601096 0.055116 26 2825 19 6.64007e+06 426972 477104. 1650.88 2.00 0.207724 0.186973 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.048249 0.0434642 142 58 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17552 1 0.02 -1 -1 30588 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 16.3 MiB 0.11 589 11532 3345 7374 813 54.9 MiB 0.15 0.00 4.00878 -100.807 -4.00878 4.00878 1.06 0.000895541 0.00082145 0.0652213 0.059859 32 1498 22 6.64007e+06 238602 554710. 1919.41 1.15 0.178538 0.160305 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0341167 0.0305149 93 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30064 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 892 10318 2381 7361 576 55.2 MiB 0.14 0.00 3.4251 -99.9264 -3.4251 3.4251 1.05 0.000972932 0.000893855 0.0496412 0.0455334 28 2086 21 6.64007e+06 389298 500653. 1732.36 1.19 0.171468 0.154009 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0373206 0.0335257 115 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30128 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 16.8 MiB 0.22 960 9623 2754 6116 753 55.3 MiB 0.14 0.00 3.62801 -120.96 -3.62801 3.62801 1.05 0.00103427 0.000947423 0.05762 0.0528059 28 2163 20 6.64007e+06 251160 500653. 1732.36 1.17 0.185916 0.166916 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.03781 0.0339434 111 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30100 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.22 841 12506 4273 6237 1996 55.2 MiB 0.18 0.00 3.87558 -126.558 -3.87558 3.87558 1.05 0.0010121 0.00092763 0.0755392 0.0693134 28 1979 19 6.64007e+06 213486 500653. 1732.36 1.24 0.199752 0.17991 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0371203 0.0333462 112 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.17 17884 1 0.03 -1 -1 30428 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.5 MiB 0.16 796 12078 3517 6936 1625 55.2 MiB 0.16 0.00 4.09995 -113.228 -4.09995 4.09995 1.04 0.000997782 0.000914666 0.0737028 0.067524 32 1650 18 6.64007e+06 213486 554710. 1919.41 1.10 0.192173 0.172789 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.036299 0.0325286 98 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 0.27 811 8448 2011 5971 466 55.0 MiB 0.12 0.00 3.76138 -119.223 -3.76138 3.76138 1.04 0.00095372 0.000874807 0.0479023 0.0439275 32 2052 21 6.64007e+06 226044 554710. 1919.41 1.16 0.166736 0.14947 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0331215 0.0297089 109 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1094 10228 2675 6918 635 55.3 MiB 0.18 0.00 4.45106 -144.281 -4.45106 4.45106 1.07 0.00116142 0.0010655 0.0643304 0.0590828 28 2647 19 6.64007e+06 301392 500653. 1732.36 1.34 0.207313 0.186877 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0485103 0.0437036 139 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30444 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.18 940 8735 2013 6355 367 55.4 MiB 0.15 0.00 5.05578 -142.31 -5.05578 5.05578 1.03 0.00118372 0.00108474 0.0514219 0.0471838 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.72 0.207368 0.18589 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0549453 0.0493388 134 61 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30108 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 637 6668 1590 4651 427 55.1 MiB 0.05 0.00 3.28519 -90.5035 -3.28519 3.28519 1.09 0.000324725 0.000292902 0.0138014 0.0125169 28 1662 22 6.64007e+06 263718 500653. 1732.36 1.12 0.125278 0.111439 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.23 0.07 0.17 -1 -1 0.23 0.0319014 0.0285146 98 27 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.22 17876 1 0.02 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 16.9 MiB 0.18 961 6890 1523 4904 463 55.6 MiB 0.13 0.00 4.06512 -124.686 -4.06512 4.06512 1.04 0.00120626 0.00110642 0.0473462 0.0434856 32 2268 21 6.64007e+06 276276 554710. 1919.41 1.29 0.193573 0.173893 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.29 0.11 0.21 -1 -1 0.29 0.0471173 0.0425449 133 58 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17640 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1114 15447 4373 9239 1835 55.5 MiB 0.24 0.00 4.49004 -144.522 -4.49004 4.49004 1.04 0.00114565 0.00105206 0.0952199 0.0874283 30 2367 22 6.64007e+06 288834 526063. 1820.29 1.36 0.237495 0.214169 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0496195 0.0446811 138 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17904 1 0.04 -1 -1 30468 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.8 MiB 0.15 723 8493 1892 6266 335 55.3 MiB 0.13 0.00 2.85064 -99.9956 -2.85064 2.85064 1.05 0.00106033 0.000969424 0.0452802 0.0414219 26 1971 23 6.64007e+06 364182 477104. 1650.88 1.35 0.182395 0.163409 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.25 0.11 0.18 -1 -1 0.25 0.049022 0.0438561 110 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 16.3 MiB 0.07 681 12139 4399 6260 1480 54.9 MiB 0.13 0.00 2.38033 -81.64 -2.38033 2.38033 1.05 0.00076902 0.000703302 0.0592896 0.0542479 32 1405 20 6.64007e+06 188370 554710. 1919.41 1.09 0.15367 0.137575 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.25 0.06 0.24 -1 -1 0.25 0.028923 0.0257308 81 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 16.8 MiB 0.26 706 14123 4873 6572 2678 55.3 MiB 0.18 0.00 4.95769 -142.332 -4.95769 4.95769 1.05 0.000998696 0.00091638 0.0812904 0.0746044 36 1838 20 6.64007e+06 251160 612192. 2118.31 2.41 0.288537 0.258618 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.28 0.08 0.23 -1 -1 0.28 0.0347326 0.0312352 128 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.07 905 8735 1899 5951 885 55.5 MiB 0.13 0.00 4.18572 -129.145 -4.18572 4.18572 1.05 0.00116138 0.00106634 0.0501502 0.0460589 30 2116 22 6.64007e+06 389298 526063. 1820.29 1.18 0.197639 0.177877 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0478534 0.0430564 135 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30364 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1203 12167 3358 7515 1294 55.9 MiB 0.20 0.00 4.64616 -143.706 -4.64616 4.64616 1.04 0.00120978 0.00111002 0.07787 0.071442 26 3212 23 6.64007e+06 313950 477104. 1650.88 2.57 0.228902 0.206013 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0527155 0.0474376 144 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.14 17360 1 0.03 -1 -1 30596 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.2 MiB 0.16 410 10636 4183 5187 1266 54.8 MiB 0.10 0.00 2.43955 -66.7065 -2.43955 2.43955 1.04 0.000655809 0.000598597 0.0452125 0.0412744 26 1192 25 6.64007e+06 226044 477104. 1650.88 1.11 0.13169 0.117369 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0251434 0.0223626 77 30 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17176 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.07 995 7897 1725 4978 1194 55.2 MiB 0.12 0.00 5.05066 -128.356 -5.05066 5.05066 0.82 0.00101296 0.000930873 0.0458057 0.0421128 28 2296 20 6.64007e+06 263718 500653. 1732.36 1.16 0.171885 0.154532 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0391281 0.0352006 118 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.13 17148 1 0.03 -1 -1 30064 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 16.0 MiB 0.06 661 11200 3826 5626 1748 54.6 MiB 0.10 0.00 2.56853 -79.0193 -2.56853 2.56853 1.05 0.000634681 0.000579327 0.0448158 0.040922 28 1267 14 6.64007e+06 175812 500653. 1732.36 1.03 0.117704 0.105271 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.23 0.04 0.18 -1 -1 0.23 0.019053 0.0170393 79 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30216 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 831 10318 2723 6880 715 55.2 MiB 0.15 0.00 4.58015 -125.342 -4.58015 4.58015 1.05 0.00103161 0.000946258 0.0529382 0.0485651 28 2131 21 6.64007e+06 376740 500653. 1732.36 1.21 0.183285 0.164681 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0399073 0.0358635 123 24 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.19 17280 1 0.03 -1 -1 30532 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.06 850 7439 1494 5462 483 55.3 MiB 0.12 0.00 3.82887 -106.637 -3.82887 3.82887 1.05 0.00104908 0.000962907 0.0390408 0.0358528 28 2324 24 6.64007e+06 389298 500653. 1732.36 1.22 0.176629 0.158626 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407083 0.0366744 128 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30288 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 16.9 MiB 0.15 906 17635 6157 8662 2816 55.5 MiB 0.25 0.00 4.78135 -133.838 -4.78135 4.78135 1.09 0.00112837 0.00103374 0.100278 0.0919459 28 2693 30 6.64007e+06 339066 500653. 1732.36 2.05 0.261753 0.236129 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.22 0.10 0.15 -1 -1 0.22 0.0413043 0.0372393 126 50 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30252 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.3 MiB 0.09 735 5928 1206 4471 251 55.0 MiB 0.09 0.00 3.02179 -99.7239 -3.02179 3.02179 1.05 0.000973409 0.000892928 0.0361775 0.0332376 26 2048 22 6.64007e+06 200928 477104. 1650.88 1.21 0.14906 0.133291 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0386171 0.034587 101 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17216 1 0.03 -1 -1 30420 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.5 MiB 0.09 661 11617 2521 8405 691 55.1 MiB 0.14 0.00 3.24119 -97.0143 -3.24119 3.24119 1.00 0.000903561 0.000828002 0.0590769 0.0541636 28 1701 20 6.64007e+06 288834 500653. 1732.36 1.29 0.15837 0.141773 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0321236 0.0288204 97 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30268 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.3 MiB 0.06 583 14123 3845 8834 1444 54.9 MiB 0.16 0.00 3.43604 -94.4648 -3.43604 3.43604 1.05 0.000899355 0.000825177 0.0731981 0.0671448 28 1800 26 6.64007e+06 288834 500653. 1732.36 1.34 0.192708 0.173074 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0352396 0.0314469 98 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17272 1 0.02 -1 -1 30248 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.5 MiB 0.06 702 4763 881 3747 135 55.1 MiB 0.08 0.00 3.98575 -113.461 -3.98575 3.98575 1.04 0.000913777 0.00083824 0.0266264 0.0244822 26 2390 34 6.64007e+06 238602 477104. 1650.88 1.63 0.160612 0.143435 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0393196 0.0351873 110 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30164 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.3 MiB 0.07 705 6924 1381 5320 223 54.9 MiB 0.10 0.00 3.56847 -102.973 -3.56847 3.56847 1.06 0.000935807 0.00085775 0.0348059 0.0319278 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.44 0.184936 0.165131 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0355158 0.0317843 103 30 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30436 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 16.8 MiB 0.16 800 11799 3784 6073 1942 55.2 MiB 0.16 0.00 3.4791 -109.298 -3.4791 3.4791 1.05 0.000965336 0.000883915 0.0620341 0.0568286 28 1940 18 6.64007e+06 326508 500653. 1732.36 1.13 0.178358 0.160144 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0371419 0.0332605 105 54 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1109 16524 4269 9768 2487 55.6 MiB 0.23 0.00 4.35696 -124.032 -4.35696 4.35696 1.05 0.00124292 0.00114164 0.0899737 0.0826072 32 2645 21 6.64007e+06 477204 554710. 1919.41 1.26 0.246701 0.222969 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436058 0.0394034 151 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17920 1 0.03 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1062 10676 2654 7216 806 55.8 MiB 0.17 0.00 3.87558 -130.413 -3.87558 3.87558 0.74 0.00127261 0.00116529 0.0613801 0.0562326 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.38 0.227987 0.205228 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048583 0.043819 147 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30212 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 16.8 MiB 0.26 894 10228 3268 4917 2043 55.3 MiB 0.14 0.00 4.39381 -127.308 -4.39381 4.39381 1.05 0.000955034 0.000870674 0.0578902 0.0528668 32 2018 21 6.64007e+06 238602 554710. 1919.41 1.17 0.177255 0.158889 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0367985 0.0329761 112 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17880 1 0.03 -1 -1 30384 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 16.7 MiB 0.16 1026 15298 5172 7552 2574 55.4 MiB 0.23 0.00 4.30797 -133.38 -4.30797 4.30797 1.05 0.00120433 0.0011038 0.0979271 0.0897419 32 2288 22 6.64007e+06 313950 554710. 1919.41 1.25 0.252659 0.228095 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0523724 0.0471214 138 61 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.16 17524 1 0.03 -1 -1 30352 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 17.3 MiB 0.41 1296 14996 4340 8343 2313 55.5 MiB 0.25 0.00 5.87616 -177.472 -5.87616 5.87616 1.08 0.00122795 0.00112596 0.0929296 0.085305 32 3094 21 6.64007e+06 364182 554710. 1919.41 1.33 0.249 0.225001 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0204503 0.0183089 172 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1150 16974 4810 10660 1504 55.7 MiB 0.27 0.00 5.08852 -153.875 -5.08852 5.08852 1.05 0.00124836 0.00114392 0.108628 0.0994805 28 3077 19 6.64007e+06 339066 500653. 1732.36 1.32 0.26653 0.240966 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.23 0.11 0.20 -1 -1 0.23 0.0371802 0.033182 164 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 16.7 MiB 0.17 1075 13513 3858 8482 1173 55.3 MiB 0.21 0.00 4.68524 -137.744 -4.68524 4.68524 1.04 0.00115878 0.00106253 0.0765182 0.0701455 30 2366 21 6.64007e+06 389298 526063. 1820.29 1.17 0.221092 0.199324 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370244 0.0334353 135 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17412 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 16.9 MiB 0.23 975 7767 1720 5470 577 55.4 MiB 0.12 0.00 4.38513 -117.551 -4.38513 4.38513 1.10 0.00100368 0.000921378 0.0435467 0.0399998 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.67 0.176501 0.158238 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.21 0.10 0.19 -1 -1 0.21 0.0386443 0.0346939 119 27 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.22 18044 1 0.03 -1 -1 30372 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 17.5 MiB 0.23 1225 15720 4488 9844 1388 55.9 MiB 0.26 0.00 5.18355 -167.471 -5.18355 5.18355 1.05 0.00147235 0.00135246 0.0990371 0.0909559 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.60 0.278457 0.251589 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516683 0.0466444 174 87 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30184 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.6 MiB 0.10 755 11064 4559 5783 722 55.2 MiB 0.12 0.00 3.8227 -103.618 -3.8227 3.8227 1.07 0.000901496 0.00082647 0.0570526 0.0523004 30 1736 20 6.64007e+06 263718 526063. 1820.29 1.25 0.168698 0.1513 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.25 0.08 0.19 -1 -1 0.25 0.0372224 0.0332381 101 28 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 17.1 MiB 0.25 1189 14518 4594 8025 1899 55.8 MiB 0.24 0.00 5.24081 -156.256 -5.24081 5.24081 1.04 0.00113572 0.00104234 0.0860448 0.0789837 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.54 0.238896 0.215651 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.25 0.10 0.20 -1 -1 0.25 0.0452007 0.0406943 144 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.6 MiB 0.16 1030 10531 2414 7661 456 55.4 MiB 0.18 0.00 4.0171 -121.213 -4.0171 4.0171 1.05 0.00115561 0.00105911 0.0579078 0.0530917 26 3025 43 6.64007e+06 414414 477104. 1650.88 3.08 0.240794 0.215938 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.22 0.09 0.12 -1 -1 0.22 0.0347709 0.031396 131 53 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17364 1 0.03 -1 -1 30240 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.8 MiB 0.06 891 13153 4464 6066 2623 55.3 MiB 0.18 0.00 4.20356 -126.138 -4.20356 4.20356 1.04 0.00102734 0.00094274 0.0721838 0.0662695 32 2178 21 6.64007e+06 301392 554710. 1919.41 1.05 0.146248 0.131615 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.042617 0.0382781 123 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1089 13933 3596 8128 2209 55.7 MiB 0.21 0.00 4.81394 -142.313 -4.81394 4.81394 1.05 0.00116952 0.00107289 0.0865867 0.0794415 26 2775 32 6.64007e+06 301392 477104. 1650.88 2.24 0.253869 0.228593 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0426926 0.0384746 138 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.18 935 7980 1596 5688 696 55.6 MiB 0.13 0.00 3.76946 -120.7 -3.76946 3.76946 1.05 0.00118954 0.00109206 0.0465944 0.0427473 30 2198 19 6.64007e+06 401856 526063. 1820.29 0.95 0.127914 0.11465 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0418313 0.0377305 133 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 17.2 MiB 0.19 901 8796 1803 6364 629 55.9 MiB 0.16 0.00 4.787 -140.677 -4.787 4.787 1.05 0.0012429 0.00113902 0.050257 0.0461202 32 2513 22 6.64007e+06 464646 554710. 1919.41 1.23 0.210834 0.1898 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0456843 0.0412127 145 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30460 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.6 MiB 0.07 902 12903 3419 8175 1309 55.2 MiB 0.18 0.00 4.24273 -122.494 -4.24273 4.24273 1.04 0.00105288 0.000965822 0.067558 0.0619693 32 1909 19 6.64007e+06 364182 554710. 1919.41 1.17 0.196817 0.177225 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403306 0.0362401 122 24 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 16.8 MiB 0.24 983 6913 1568 4936 409 55.7 MiB 0.12 0.00 5.07997 -139.694 -5.07997 5.07997 1.04 0.00108448 0.000994744 0.0414727 0.0380695 32 2406 21 6.64007e+06 301392 554710. 1919.41 1.19 0.177844 0.159809 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436864 0.0392816 133 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1148 9058 2364 5808 886 55.8 MiB 0.16 0.00 5.0113 -149.211 -5.0113 5.0113 1.05 0.00121522 0.00111427 0.0610394 0.0560127 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.91 0.201986 0.181141 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0564978 0.0508096 148 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.17 17524 1 0.04 -1 -1 30268 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 17.2 MiB 0.16 977 15962 5144 8098 2720 55.8 MiB 0.26 0.00 4.21776 -130.397 -4.21776 4.21776 1.05 0.00123144 0.00112713 0.107805 0.0987817 32 2870 23 6.64007e+06 276276 554710. 1919.41 1.31 0.26862 0.242554 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.25 0.10 0.25 -1 -1 0.25 0.039605 0.0357706 136 77 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30168 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.4 MiB 0.10 763 11398 3223 7297 878 55.0 MiB 0.14 0.00 3.46744 -102.907 -3.46744 3.46744 1.06 0.000878489 0.00080473 0.0543458 0.0498389 26 1977 28 6.64007e+06 301392 477104. 1650.88 1.29 0.177503 0.159016 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.0348223 0.0310409 97 23 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 16.5 MiB 0.33 982 8969 2347 6212 410 55.2 MiB 0.15 0.00 4.05536 -139.886 -4.05536 4.05536 1.05 0.00111613 0.00102302 0.0557053 0.0510805 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.99 0.138584 0.124307 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417773 0.0375161 127 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 17.5 MiB 0.26 1389 7443 1662 5262 519 55.7 MiB 0.16 0.01 5.61123 -170.011 -5.61123 5.61123 1.09 0.0012958 0.00119076 0.0500797 0.0460641 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.93 0.223815 0.201799 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547788 0.0494843 169 31 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30476 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 16.8 MiB 0.15 962 14988 4939 7718 2331 55.5 MiB 0.22 0.00 4.60549 -136.553 -4.60549 4.60549 1.05 0.00115616 0.00106111 0.0820854 0.0753455 30 2140 21 6.64007e+06 401856 526063. 1820.29 1.21 0.226974 0.204814 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0405283 0.0365873 133 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30348 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.3 MiB 0.07 702 10423 3012 6489 922 55.0 MiB 0.14 0.00 3.51327 -104.848 -3.51327 3.51327 1.04 0.00094947 0.000870551 0.0534973 0.0490604 28 1807 22 6.64007e+06 326508 500653. 1732.36 1.12 0.174445 0.156562 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0410978 0.0367809 104 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.19 18088 1 0.03 -1 -1 30364 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1216 15187 4686 7965 2536 55.7 MiB 0.27 0.00 6.49087 -185.665 -6.49087 6.49087 1.04 0.0014064 0.00129181 0.108893 0.10003 30 3247 27 6.64007e+06 339066 526063. 1820.29 1.45 0.301103 0.272146 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.28 0.18 0.20 -1 -1 0.28 0.0564265 0.0506964 170 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30364 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 16.8 MiB 0.17 903 6979 1333 5401 245 55.4 MiB 0.12 0.00 4.64606 -138.337 -4.64606 4.64606 1.05 0.00115002 0.0010561 0.0391211 0.0359789 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.63 0.221746 0.198946 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0432764 0.0389149 130 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17104 1 0.02 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.08 832 12375 4208 6622 1545 54.9 MiB 0.15 0.00 3.58247 -103.673 -3.58247 3.58247 1.05 0.000845495 0.00077499 0.0565872 0.0518773 28 2023 24 6.64007e+06 288834 500653. 1732.36 1.12 0.165658 0.14851 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0321121 0.0287018 100 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30152 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 17.0 MiB 0.09 993 9098 1971 6187 940 55.3 MiB 0.07 0.00 5.56744 -134.001 -5.56744 5.56744 0.72 0.000437426 0.00039506 0.0196758 0.0178217 28 2715 23 6.64007e+06 426972 500653. 1732.36 1.65 0.173972 0.155911 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.20 0.06 0.09 -1 -1 0.20 0.0212998 0.0189669 139 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17308 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 822 7770 1860 5212 698 54.8 MiB 0.06 0.00 3.4291 -106.218 -3.4291 3.4291 0.79 0.000330532 0.000298701 0.0156023 0.0141347 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.70 0.0589566 0.0517859 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0353707 0.031635 104 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30424 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.13 857 12839 3557 7998 1284 55.0 MiB 0.16 0.00 4.12483 -113.809 -4.12483 4.12483 1.04 0.000954268 0.000875112 0.0591206 0.0542278 26 1933 22 6.64007e+06 414414 477104. 1650.88 1.34 0.179813 0.161369 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.21 0.08 0.13 -1 -1 0.21 0.0333334 0.0299326 105 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30376 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1104 17175 4885 10433 1857 55.4 MiB 0.29 0.00 4.60024 -135.427 -4.60024 4.60024 1.05 0.00116928 0.00107334 0.109244 0.100283 28 2667 21 6.64007e+06 326508 500653. 1732.36 1.21 0.25543 0.230941 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0551094 0.0494939 139 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30388 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.14 772 4768 876 3724 168 55.4 MiB 0.09 0.00 4.51224 -132.005 -4.51224 4.51224 1.06 0.00117871 0.00108038 0.0320398 0.0294233 32 2190 25 6.64007e+06 301392 554710. 1919.41 1.26 0.188053 0.168801 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0509489 0.0457461 130 54 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30332 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1030 11891 3350 7362 1179 55.3 MiB 0.19 0.00 4.72138 -141.993 -4.72138 4.72138 1.05 0.0011653 0.00106827 0.0701683 0.0643666 32 2311 18 6.64007e+06 351624 554710. 1919.41 1.23 0.211698 0.190856 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0429657 0.0387517 133 51 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 16.9 MiB 0.28 799 9356 2375 6010 971 55.4 MiB 0.14 0.00 4.79432 -131.982 -4.79432 4.79432 0.98 0.00095272 0.000873548 0.0533081 0.0488928 26 2160 21 6.64007e+06 213486 477104. 1650.88 1.35 0.172396 0.154661 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.0382037 0.034205 105 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.10 17572 1 0.03 -1 -1 30416 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.9 MiB 0.25 899 12898 4205 6789 1904 55.5 MiB 0.10 0.00 3.96736 -127.03 -3.96736 3.96736 0.84 0.000386973 0.00034866 0.030242 0.0273644 32 2035 18 6.64007e+06 238602 554710. 1919.41 1.10 0.156362 0.139548 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401023 0.0358845 113 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.14 857 8087 1703 5875 509 55.2 MiB 0.12 0.00 3.59243 -98.9543 -3.59243 3.59243 1.09 0.00108225 0.000991694 0.0435491 0.0399544 26 2500 27 6.64007e+06 414414 477104. 1650.88 2.12 0.191803 0.171926 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0417813 0.0375504 123 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30344 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.07 873 14567 3705 9538 1324 55.1 MiB 0.17 0.00 4.33724 -105.319 -4.33724 4.33724 1.07 0.000955702 0.000876787 0.0673089 0.0617594 26 2165 27 6.64007e+06 439530 477104. 1650.88 1.19 0.197346 0.17732 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.19 0.04 0.09 -1 -1 0.19 0.0157809 0.0140192 115 27 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 857 12980 4441 6366 2173 55.2 MiB 0.19 0.00 4.19523 -120.389 -4.19523 4.19523 1.05 0.001038 0.000951445 0.0808442 0.074125 32 1926 20 6.64007e+06 226044 554710. 1919.41 1.24 0.212292 0.190899 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0401682 0.0360585 108 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30116 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1011 9385 2419 5667 1299 55.3 MiB 0.15 0.00 4.0237 -135.679 -4.0237 4.0237 1.05 0.00108912 0.000998446 0.0579318 0.0531365 32 2261 23 6.64007e+06 263718 554710. 1919.41 1.21 0.198098 0.178011 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.29 0.09 0.22 -1 -1 0.29 0.0395632 0.0355406 121 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30480 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.06 926 9383 1965 6366 1052 55.2 MiB 0.13 0.00 4.61041 -129.144 -4.61041 4.61041 1.05 0.00103669 0.000952087 0.0479449 0.0440601 28 2322 28 6.64007e+06 401856 500653. 1732.36 1.60 0.191001 0.171683 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0415337 0.0373787 127 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.12 17528 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 17.2 MiB 0.29 1230 14128 4435 7821 1872 55.9 MiB 0.24 0.00 5.3267 -167.408 -5.3267 5.3267 1.05 0.00117544 0.00107947 0.0887349 0.0814712 32 3153 21 6.64007e+06 301392 554710. 1919.41 1.31 0.237619 0.2147 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0475307 0.0429213 146 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.13 17904 1 0.03 -1 -1 30320 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 16.8 MiB 0.22 846 12473 3077 8180 1216 55.4 MiB 0.20 0.00 5.24026 -142.21 -5.24026 5.24026 1.05 0.00125746 0.00115294 0.072889 0.0668314 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.42 0.237167 0.213595 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.049932 0.0449808 144 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30308 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1088 19136 5971 10565 2600 55.5 MiB 0.27 0.00 4.47484 -142.459 -4.47484 4.47484 1.05 0.00127582 0.00117061 0.107076 0.0982479 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.57 0.268752 0.242974 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0483433 0.0435911 140 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.12 17592 1 0.03 -1 -1 30156 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.5 MiB 0.13 810 10756 3573 5296 1887 55.2 MiB 0.14 0.00 3.86158 -115.559 -3.86158 3.86158 1.04 0.000931666 0.000854666 0.0599426 0.0549514 28 2024 20 6.64007e+06 238602 500653. 1732.36 1.13 0.175486 0.157557 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0435008 0.0388709 104 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30388 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 16.8 MiB 0.18 996 11989 3165 6999 1825 55.6 MiB 0.20 0.00 4.82523 -141.177 -4.82523 4.82523 1.05 0.00122175 0.00112078 0.0822197 0.0754791 32 2408 19 6.64007e+06 288834 554710. 1919.41 1.25 0.232063 0.209559 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0510182 0.0459664 138 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30448 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 17.2 MiB 0.26 1103 10743 2816 7025 902 55.7 MiB 0.17 0.00 5.45357 -158.764 -5.45357 5.45357 1.05 0.00113671 0.00104169 0.064304 0.0590158 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.79 0.233844 0.210493 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.22 0.13 0.17 -1 -1 0.22 0.0496429 0.0446802 140 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30372 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1102 15423 4945 8075 2403 55.5 MiB 0.23 0.00 5.30601 -154.372 -5.30601 5.30601 1.04 0.00113364 0.0010399 0.0866264 0.0795314 28 3024 19 6.64007e+06 376740 500653. 1732.36 1.40 0.22675 0.20468 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0454066 0.040865 148 47 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30384 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 17.0 MiB 0.21 960 11975 3127 7423 1425 55.7 MiB 0.20 0.00 4.52304 -132.575 -4.52304 4.52304 1.04 0.00122737 0.00112622 0.0718119 0.0658242 32 2201 21 6.64007e+06 414414 554710. 1919.41 1.22 0.223352 0.201182 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0446007 0.0402274 135 83 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.15 891 9571 2183 6911 477 55.6 MiB 0.17 0.00 5.02278 -140.291 -5.02278 5.02278 1.05 0.00119856 0.0010999 0.0647751 0.0594299 30 2581 25 6.64007e+06 263718 526063. 1820.29 1.31 0.219136 0.197119 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.25 0.11 0.20 -1 -1 0.25 0.052279 0.0470913 134 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30280 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 16.8 MiB 0.19 875 11270 2503 8088 679 55.4 MiB 0.18 0.00 4.91881 -136.338 -4.91881 4.91881 1.05 0.00119877 0.00109839 0.0685738 0.06285 32 2070 20 6.64007e+06 389298 554710. 1919.41 1.21 0.21804 0.196306 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0521931 0.0470801 132 85 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17136 1 0.02 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.2 MiB 0.05 680 10219 2541 6421 1257 54.8 MiB 0.17 0.00 3.88758 -112.502 -3.88758 3.88758 1.14 0.000886746 0.000814899 0.0706565 0.0650268 28 1667 19 6.64007e+06 188370 500653. 1732.36 1.10 0.178626 0.160967 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.22 0.08 0.19 -1 -1 0.22 0.0339031 0.0304258 96 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1003 15426 4168 9105 2153 55.6 MiB 0.22 0.00 4.65236 -140.168 -4.65236 4.65236 1.11 0.00109816 0.0010064 0.089129 0.0817804 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.38 0.200814 0.181079 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0487125 0.0438625 132 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17892 1 0.03 -1 -1 30224 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 17.2 MiB 0.20 1074 11237 2615 7354 1268 55.7 MiB 0.19 0.00 4.84723 -152.835 -4.84723 4.84723 1.05 0.00129279 0.00118562 0.0800821 0.0734802 32 2517 24 6.64007e+06 276276 554710. 1919.41 1.36 0.248816 0.224468 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.30 0.14 0.25 -1 -1 0.30 0.0606216 0.0546766 148 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17452 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 16.6 MiB 0.26 745 8136 1743 5584 809 55.0 MiB 0.11 0.00 4.31784 -119.848 -4.31784 4.31784 1.05 0.000929059 0.000851704 0.0437759 0.0401477 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.50 0.181166 0.16224 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0384916 0.0343889 109 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17108 1 0.03 -1 -1 30444 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 720 11430 2918 7192 1320 54.9 MiB 0.15 0.00 3.81035 -108.914 -3.81035 3.81035 1.05 0.000897075 0.000814982 0.0573778 0.0526139 26 2000 23 6.64007e+06 263718 477104. 1650.88 1.14 0.170785 0.153304 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0337909 0.0302508 106 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30584 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1132 12753 3748 7734 1271 55.6 MiB 0.20 0.00 5.06147 -160.912 -5.06147 5.06147 1.06 0.00117229 0.0010754 0.0779093 0.0715086 26 3087 40 6.64007e+06 326508 477104. 1650.88 2.14 0.263108 0.236967 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0468768 0.0422113 144 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1035 16893 5570 8364 2959 55.6 MiB 0.24 0.00 5.02458 -149.361 -5.02458 5.02458 1.05 0.00117891 0.00108219 0.0983199 0.0902268 32 2745 25 6.64007e+06 364182 554710. 1919.41 1.28 0.253804 0.229139 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0468735 0.0421913 155 56 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30180 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.09 1057 12164 2729 8794 641 55.8 MiB 0.19 0.00 5.48474 -146.154 -5.48474 5.48474 1.05 0.00121859 0.00111831 0.0685212 0.0627986 28 3239 24 6.64007e+06 452088 500653. 1732.36 2.05 0.229566 0.207068 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0491963 0.0444012 153 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.16 17580 1 0.03 -1 -1 30116 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.16 890 11170 2805 7440 925 55.3 MiB 0.15 0.00 3.51924 -105.227 -3.51924 3.51924 1.05 0.00105435 0.00096678 0.0583438 0.0534941 26 2070 19 6.64007e+06 401856 477104. 1650.88 1.14 0.188793 0.169679 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0400408 0.03594 121 52 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.15 17476 1 0.02 -1 -1 30584 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.4 MiB 0.07 645 11948 3714 6556 1678 55.0 MiB 0.14 0.00 3.4543 -94.7001 -3.4543 3.4543 1.05 0.000873846 0.000801392 0.0631956 0.0579577 26 1652 20 6.64007e+06 263718 477104. 1650.88 1.12 0.172107 0.154565 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.21 0.08 0.09 -1 -1 0.21 0.0349014 0.0311959 97 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17904 1 0.03 -1 -1 30460 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1270 10743 2480 7803 460 55.6 MiB 0.19 0.00 4.37195 -138.919 -4.37195 4.37195 1.04 0.00136891 0.00125677 0.0769922 0.0707028 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.36 0.25362 0.228719 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0621346 0.0560055 170 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30232 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 17.0 MiB 0.36 989 14828 4611 8220 1997 55.6 MiB 0.23 0.00 5.41669 -159.225 -5.41669 5.41669 1.04 0.00118583 0.00108748 0.0959005 0.0879399 28 2481 23 6.64007e+06 288834 500653. 1732.36 1.23 0.248854 0.224533 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.22 0.11 0.19 -1 -1 0.22 0.0475099 0.0427606 152 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30456 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 16.8 MiB 0.35 825 13583 3778 7563 2242 55.4 MiB 0.21 0.00 4.65475 -131.833 -4.65475 4.65475 1.06 0.00107409 0.000984646 0.0851179 0.077971 30 1948 20 6.64007e+06 238602 526063. 1820.29 1.20 0.22031 0.198558 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0396748 0.0356945 128 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30480 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 911 16708 5166 8976 2566 55.2 MiB 0.25 0.00 5.41998 -135.015 -5.41998 5.41998 1.05 0.00110121 0.0010106 0.0959207 0.0879092 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.86 0.249315 0.224832 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.23 0.10 0.16 -1 -1 0.23 0.0446546 0.0401854 126 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17860 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1048 7423 1517 5297 609 55.8 MiB 0.14 0.00 5.01701 -136.816 -5.01701 5.01701 1.05 0.00123189 0.00113015 0.0446089 0.0409811 26 2859 33 6.64007e+06 426972 477104. 1650.88 2.05 0.199535 0.178657 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.25 0.12 0.15 -1 -1 0.25 0.0488661 0.0441685 145 50 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30476 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.5 MiB 0.15 829 7233 1598 5117 518 55.1 MiB 0.11 0.00 3.67989 -107.648 -3.67989 3.67989 1.05 0.00107774 0.000986989 0.0401636 0.0368089 30 2144 22 6.64007e+06 389298 526063. 1820.29 1.37 0.178179 0.159831 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.29 0.07 0.20 -1 -1 0.29 0.036708 0.0329126 124 51 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17676 1 0.03 -1 -1 30276 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1174 10979 2913 7012 1054 56.0 MiB 0.19 0.00 5.12747 -161.736 -5.12747 5.12747 1.07 0.00117757 0.00108073 0.0687722 0.0631808 26 3490 36 6.64007e+06 313950 477104. 1650.88 2.88 0.245589 0.221022 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.24 0.13 0.15 -1 -1 0.24 0.0475829 0.042935 148 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30076 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1093 17036 4934 9564 2538 55.6 MiB 0.25 0.01 4.75546 -148.188 -4.75546 4.75546 1.05 0.00125656 0.00115249 0.0958324 0.0879402 28 2591 20 6.64007e+06 452088 500653. 1732.36 1.31 0.249889 0.22552 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0442019 0.0399109 144 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17368 1 0.02 -1 -1 30312 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.4 MiB 0.09 731 10536 4018 5581 937 55.0 MiB 0.13 0.00 3.74538 -111.28 -3.74538 3.74538 1.04 0.0009198 0.000843616 0.0608704 0.0558368 30 1443 17 6.64007e+06 213486 526063. 1820.29 1.08 0.171336 0.153994 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0322275 0.0289293 91 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 16.7 MiB 0.20 882 13849 5109 6856 1884 55.3 MiB 0.19 0.00 4.03956 -127.808 -4.03956 4.03956 1.04 0.00102772 0.000942109 0.0793406 0.0727738 28 2218 24 6.64007e+06 263718 500653. 1732.36 1.29 0.212186 0.190755 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.20 0.05 0.09 -1 -1 0.20 0.0193623 0.0171119 117 58 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30364 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.10 954 14020 3601 8035 2384 55.5 MiB 0.19 0.00 4.80044 -128.284 -4.80044 4.80044 1.04 0.00111376 0.00102168 0.0698486 0.0639841 32 2139 23 6.64007e+06 464646 554710. 1919.41 1.24 0.213505 0.192377 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.045956 0.0413213 129 33 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.17 17376 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 16.5 MiB 0.26 763 7103 1547 5010 546 55.0 MiB 0.11 0.00 4.32884 -114.709 -4.32884 4.32884 1.06 0.00090649 0.000830749 0.0385667 0.0353798 26 2139 24 6.64007e+06 276276 477104. 1650.88 1.40 0.156499 0.13996 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0362284 0.0324534 109 31 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30040 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 16.4 MiB 0.17 634 12856 3328 7254 2274 55.1 MiB 0.17 0.00 3.90075 -115.478 -3.90075 3.90075 1.05 0.000952339 0.000873082 0.0726845 0.0666458 28 2041 24 6.64007e+06 213486 500653. 1732.36 1.19 0.196701 0.176705 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.24 0.10 0.18 -1 -1 0.24 0.0408763 0.0365681 108 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30032 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1014 15147 3968 9710 1469 55.6 MiB 0.21 0.00 4.15695 -125.813 -4.15695 4.15695 1.05 0.00121585 0.00111564 0.0840294 0.0770262 32 1987 18 6.64007e+06 452088 554710. 1919.41 1.24 0.242041 0.218361 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.28 0.09 0.21 -1 -1 0.28 0.0428878 0.0387312 136 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.15 17500 1 0.03 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 16.6 MiB 0.23 920 10163 2724 6503 936 55.1 MiB 0.13 0.00 4.05252 -124.711 -4.05252 4.05252 1.05 0.000910008 0.00083408 0.0539187 0.0494413 30 1979 19 6.64007e+06 251160 526063. 1820.29 1.11 0.165568 0.148523 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.25 0.07 0.20 -1 -1 0.25 0.0360711 0.0321664 107 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17528 1 0.03 -1 -1 30104 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 16.7 MiB 0.16 987 10827 2770 6959 1098 55.3 MiB 0.18 0.00 3.75038 -118.864 -3.75038 3.75038 1.06 0.00114769 0.0010521 0.0681763 0.0624638 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.51 0.21479 0.193322 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0476525 0.042798 127 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.19 17800 1 0.02 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 17.1 MiB 0.33 927 10247 2394 7169 684 55.6 MiB 0.17 0.00 4.34696 -134.379 -4.34696 4.34696 1.05 0.00126123 0.00115636 0.0630484 0.0577632 32 2248 20 6.64007e+06 401856 554710. 1919.41 1.23 0.218915 0.197047 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0504203 0.0454741 138 91 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.5 MiB 0.18 835 12681 3362 7951 1368 55.2 MiB 0.17 0.00 3.3851 -106.107 -3.3851 3.3851 1.08 0.000998263 0.00091344 0.0758061 0.0694486 26 2103 18 6.64007e+06 213486 477104. 1650.88 1.27 0.194319 0.174686 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0420342 0.0376524 104 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17536 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 16.6 MiB 0.16 876 14407 4775 7452 2180 55.2 MiB 0.10 0.00 4.41384 -136.056 -4.41384 4.41384 0.72 0.000368089 0.000332551 0.0303883 0.0274846 30 2137 20 6.64007e+06 263718 526063. 1820.29 1.10 0.15217 0.135906 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.25 0.09 0.20 -1 -1 0.25 0.0380283 0.0340862 117 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1070 9111 2300 6161 650 55.5 MiB 0.15 0.00 4.68344 -140.114 -4.68344 4.68344 1.05 0.00108238 0.0009931 0.0543386 0.0498424 32 2486 17 6.64007e+06 288834 554710. 1919.41 1.20 0.178968 0.160557 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436904 0.0390897 130 30 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30188 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 16.9 MiB 0.19 969 13959 4223 8147 1589 55.4 MiB 0.19 0.00 4.71146 -123.714 -4.71146 4.71146 1.05 0.00108155 0.000991675 0.0775052 0.0711048 32 1988 20 6.64007e+06 364182 554710. 1919.41 1.17 0.19125 0.171852 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.29 0.05 0.21 -1 -1 0.29 0.0229343 0.0206877 122 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1164 12568 3311 8092 1165 56.0 MiB 0.23 0.00 5.44678 -170.492 -5.44678 5.44678 1.06 0.0012746 0.00116982 0.0856577 0.0785895 28 3017 24 6.64007e+06 301392 500653. 1732.36 1.47 0.255177 0.230406 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0488238 0.04405 154 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17188 1 0.02 -1 -1 30336 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.4 MiB 0.05 802 9356 2223 6300 833 54.9 MiB 0.11 0.00 3.65167 -102.287 -3.65167 3.65167 1.05 0.000836206 0.000766553 0.0468656 0.0429987 32 1738 16 6.64007e+06 226044 554710. 1919.41 1.11 0.145463 0.13051 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0216148 0.0191551 96 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.23 17876 1 0.03 -1 -1 30440 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 17.1 MiB 0.11 1014 15173 4325 8191 2657 55.6 MiB 0.12 0.00 4.24115 -141.749 -4.24115 4.24115 0.72 0.000476026 0.000429743 0.0344875 0.0311745 32 2563 27 6.64007e+06 426972 554710. 1919.41 1.05 0.172258 0.153856 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.049758 0.0448425 145 90 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17680 1 0.03 -1 -1 30140 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 17.0 MiB 0.33 854 11456 4252 5499 1705 55.5 MiB 0.17 0.00 3.5233 -125.693 -3.5233 3.5233 1.03 0.00117769 0.00107745 0.077238 0.0706231 32 1976 23 6.64007e+06 213486 554710. 1919.41 1.24 0.229025 0.205879 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0450699 0.0404243 114 96 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 16.7 MiB 0.17 993 15864 4238 9461 2165 55.5 MiB 0.22 0.00 4.43584 -134.986 -4.43584 4.43584 1.06 0.00117559 0.00107758 0.088855 0.0814876 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.48 0.240644 0.216863 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0375533 0.0339568 131 60 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17956 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 17.2 MiB 0.35 1309 17635 5897 9510 2228 55.4 MiB 0.32 0.01 6.39084 -191.431 -6.39084 6.39084 1.04 0.00133216 0.00122357 0.118822 0.109144 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.60 0.283429 0.256997 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0534478 0.0483583 170 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17380 1 0.02 -1 -1 30096 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 16.2 MiB 0.17 697 8680 1945 6222 513 54.7 MiB 0.10 0.00 3.31307 -102.387 -3.31307 3.31307 1.05 0.000762596 0.000698746 0.041191 0.037761 28 1666 19 6.64007e+06 226044 500653. 1732.36 1.13 0.13589 0.121297 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0231689 0.0207419 87 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17548 1 0.03 -1 -1 30516 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.10 791 11864 3247 7177 1440 55.0 MiB 0.16 0.00 4.38638 -124.628 -4.38638 4.38638 1.05 0.000974417 0.000893404 0.0723377 0.0663255 32 1680 15 6.64007e+06 200928 554710. 1919.41 1.14 0.18522 0.166682 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0420243 0.0376047 92 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.7 MiB 0.10 807 14407 3847 9113 1447 55.2 MiB 0.19 0.00 3.46104 -112.673 -3.46104 3.46104 1.05 0.00101254 0.000927894 0.081211 0.0744633 28 2067 23 6.64007e+06 263718 500653. 1732.36 1.15 0.211261 0.190226 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0417619 0.0374303 115 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 469 9234 3273 3848 2113 54.7 MiB 0.09 0.00 3.37029 -77.6943 -3.37029 3.37029 1.07 0.000754004 0.000689826 0.0405027 0.0370221 30 1496 25 6.64007e+06 339066 526063. 1820.29 1.18 0.139915 0.124922 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0261163 0.0233687 89 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.19 937 9571 2534 6630 407 55.5 MiB 0.17 0.00 4.28889 -129.632 -4.28889 4.28889 1.10 0.00118048 0.00108759 0.0662127 0.0607536 30 2291 20 6.64007e+06 263718 526063. 1820.29 1.26 0.219033 0.197414 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.046232 0.04159 136 72 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 17.3 MiB 0.21 1018 17423 5293 9473 2657 55.9 MiB 0.25 0.00 4.47881 -144.552 -4.47881 4.47881 1.06 0.000876554 0.000788549 0.101387 0.0928053 32 2355 20 6.64007e+06 439530 554710. 1919.41 1.27 0.262588 0.236967 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0538096 0.0484508 143 90 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30004 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 16.8 MiB 0.36 962 17134 5020 8898 3216 55.3 MiB 0.14 0.00 5.27972 -153.369 -5.27972 5.27972 0.72 0.00043121 0.000388601 0.0372434 0.0336727 32 2793 32 6.65987e+06 380340 554710. 1919.41 1.08 0.152805 0.136159 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.27 0.11 0.19 -1 -1 0.27 0.0471274 0.0424022 152 50 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30320 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1040 12361 3404 6762 2195 55.3 MiB 0.20 0.00 4.63676 -143.523 -4.63676 4.63676 1.06 0.00118679 0.00108804 0.0822977 0.0755731 32 2391 26 6.65987e+06 291594 554710. 1919.41 1.30 0.241025 0.21733 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0392372 0.0350683 138 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1057 9111 2109 6460 542 55.0 MiB 0.14 0.00 4.05544 -117.725 -4.05544 4.05544 1.07 0.00102811 0.000942724 0.0516184 0.0473615 26 2909 26 6.65987e+06 291594 477104. 1650.88 2.04 0.189973 0.170456 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.23 0.05 0.17 -1 -1 0.23 0.0186462 0.0165904 126 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.5 MiB 0.10 995 11593 2944 7290 1359 55.1 MiB 0.18 0.00 4.34155 -118.133 -4.34155 4.34155 1.05 0.0010651 0.00096873 0.0663376 0.0607829 32 2314 24 6.65987e+06 342306 554710. 1919.41 1.25 0.204468 0.183958 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0427877 0.0384765 126 31 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17660 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1007 8919 2464 5628 827 55.0 MiB 0.15 0.00 4.36781 -127.596 -4.36781 4.36781 1.04 0.00114053 0.00104664 0.0559911 0.0514018 34 2558 26 6.65987e+06 291594 585099. 2024.56 2.15 0.30271 0.271494 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.28 0.12 0.22 -1 -1 0.28 0.0481545 0.0434192 130 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30300 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1045 18079 5207 10774 2098 55.3 MiB 0.27 0.01 3.41904 -120.465 -3.41904 3.41904 1.05 0.00120134 0.00110075 0.100843 0.0924714 30 2159 22 6.65987e+06 418374 526063. 1820.29 1.18 0.254666 0.230006 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.23 0.09 0.10 -1 -1 0.23 0.0463271 0.0417779 141 58 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.16 17516 1 0.03 -1 -1 30576 -1 -1 18 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 16.1 MiB 0.17 496 10509 2613 7281 615 54.7 MiB 0.13 0.00 3.88752 -95.8054 -3.88752 3.88752 1.04 0.00088921 0.000815367 0.0598095 0.0548567 30 1262 24 6.65987e+06 228204 526063. 1820.29 1.11 0.176075 0.157984 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370517 0.0331633 94 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17236 1 0.03 -1 -1 30176 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.06 903 9466 2130 6738 598 55.1 MiB 0.14 0.00 3.22661 -96.4595 -3.22661 3.22661 1.05 0.000970937 0.000889727 0.0458132 0.0419786 30 1887 19 6.65987e+06 393018 526063. 1820.29 1.12 0.164555 0.147679 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.033962 0.0305797 115 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30128 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.16 765 13788 3701 7917 2170 55.3 MiB 0.19 0.00 3.4209 -112.776 -3.4209 3.4209 1.05 0.00104101 0.000954688 0.0833805 0.0765022 32 2114 22 6.65987e+06 240882 554710. 1919.41 1.20 0.21493 0.193487 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0366499 0.0329099 111 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.13 17432 1 0.04 -1 -1 30056 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.5 MiB 0.26 876 13906 4295 8097 1514 55.0 MiB 0.20 0.00 3.72312 -122.883 -3.72312 3.72312 1.06 0.00101627 0.000931371 0.0835265 0.0766293 32 2018 21 6.65987e+06 215526 554710. 1919.41 1.21 0.213915 0.19279 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0406676 0.0365153 113 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30392 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.3 MiB 0.26 696 7008 1825 4747 436 55.0 MiB 0.11 0.00 4.00989 -109.174 -4.00989 4.00989 1.04 0.000991196 0.000908495 0.0438716 0.0402439 30 1525 18 6.65987e+06 215526 526063. 1820.29 1.10 0.163503 0.146588 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0347705 0.0312281 98 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 721 6381 1297 4466 618 55.2 MiB 0.09 0.00 3.89466 -119.961 -3.89466 3.89466 1.05 0.000941888 0.000863182 0.0373864 0.0343087 32 2079 21 6.65987e+06 215526 554710. 1919.41 1.21 0.156113 0.13976 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0410062 0.0367125 106 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1056 16468 6105 8420 1943 55.4 MiB 0.26 0.00 4.37712 -140.294 -4.37712 4.37712 1.05 0.00115699 0.00106127 0.101195 0.0928862 32 2620 22 6.65987e+06 304272 554710. 1919.41 1.26 0.250035 0.22601 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0485774 0.0437407 139 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30276 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 951 14365 3991 8802 1572 55.4 MiB 0.25 0.00 4.63803 -131.953 -4.63803 4.63803 1.06 0.00118483 0.00108591 0.0759029 0.0692841 28 2495 26 6.65987e+06 380340 500653. 1732.36 1.26 0.235671 0.211992 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.053508 0.0480565 133 61 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30136 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.2 MiB 0.15 640 7914 1978 5337 599 54.8 MiB 0.10 0.00 3.16393 -88.5429 -3.16393 3.16393 1.05 0.000862189 0.0007906 0.0407161 0.0373266 28 1656 19 6.65987e+06 266238 500653. 1732.36 1.15 0.14588 0.130643 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0318904 0.0285628 98 27 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1044 14035 4479 7571 1985 55.4 MiB 0.22 0.00 3.91387 -124.268 -3.91387 3.91387 1.05 0.00120497 0.00110408 0.0944461 0.0866325 32 2474 22 6.65987e+06 266238 554710. 1919.41 1.30 0.243509 0.219536 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.26 0.11 0.20 -1 -1 0.26 0.0488134 0.0439531 132 58 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1069 12919 3925 6776 2218 55.3 MiB 0.20 0.00 4.31458 -139.268 -4.31458 4.31458 1.05 0.00113907 0.00104483 0.0824114 0.0756435 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.59 0.225082 0.2028 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0513269 0.046235 137 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30292 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.6 MiB 0.21 695 9543 2025 7276 242 55.1 MiB 0.14 0.00 2.85064 -99.0938 -2.85064 2.85064 1.05 0.00105958 0.000970469 0.0508438 0.0465706 30 1712 20 6.65987e+06 367662 526063. 1820.29 1.14 0.181601 0.162916 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.24 0.07 0.11 -1 -1 0.24 0.0335841 0.0302454 110 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17532 1 0.02 -1 -1 30108 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.8 MiB 0.12 717 11976 4624 5984 1368 54.5 MiB 0.13 0.00 2.25907 -80.296 -2.25907 2.25907 1.05 0.000770798 0.000705392 0.0584388 0.0534948 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.98 0.153914 0.137797 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0267875 0.0238725 81 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17736 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 16.3 MiB 0.34 848 12008 3931 5654 2423 54.9 MiB 0.18 0.00 4.81535 -141.646 -4.81535 4.81535 1.05 0.000990634 0.000908817 0.070191 0.0644563 32 2106 20 6.65987e+06 240882 554710. 1919.41 1.21 0.193161 0.173789 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0401684 0.0360754 127 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30408 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.07 910 8087 1796 5473 818 55.3 MiB 0.13 0.00 4.13176 -127.852 -4.13176 4.13176 1.04 0.00115141 0.00105637 0.0464507 0.0426449 28 2425 21 6.65987e+06 393018 500653. 1732.36 1.29 0.192886 0.173617 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046441 0.0418607 135 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1181 9303 2469 6067 767 55.5 MiB 0.16 0.00 4.32644 -135.633 -4.32644 4.32644 1.04 0.00120811 0.00110701 0.0618071 0.0566453 30 2631 22 6.65987e+06 291594 526063. 1820.29 1.23 0.209407 0.188389 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0547705 0.0493019 142 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17536 1 0.02 -1 -1 30560 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.1 MiB 0.24 356 10636 3977 4816 1843 54.5 MiB 0.09 0.00 2.4343 -65.7683 -2.4343 2.4343 1.05 0.000659627 0.000603075 0.045697 0.0417928 30 997 16 6.65987e+06 228204 526063. 1820.29 1.11 0.123009 0.110062 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.24 0.04 0.20 -1 -1 0.24 0.0219918 0.019658 77 30 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.08 978 9571 2391 5607 1573 55.2 MiB 0.15 0.00 4.9364 -125.004 -4.9364 4.9364 1.01 0.00100756 0.000924587 0.0549074 0.0504357 32 2187 34 6.65987e+06 266238 554710. 1919.41 1.30 0.20409 0.183437 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0394382 0.0355134 118 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.15 17152 1 0.02 -1 -1 29980 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55592 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.7 MiB 0.04 681 11200 3514 6177 1509 54.3 MiB 0.10 0.00 2.44727 -77.3331 -2.44727 2.44727 1.05 0.000637001 0.000581524 0.044785 0.0408807 26 1411 15 6.65987e+06 177492 477104. 1650.88 1.03 0.117989 0.1054 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.21 0.05 0.17 -1 -1 0.21 0.020259 0.0180743 79 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.14 17492 1 0.03 -1 -1 30096 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.6 MiB 0.10 819 10531 2694 7192 645 55.2 MiB 0.15 0.00 4.34174 -119.601 -4.34174 4.34174 1.04 0.00105335 0.000967417 0.0546949 0.0502464 32 2048 22 6.65987e+06 380340 554710. 1919.41 1.21 0.186858 0.168081 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.038778 0.0349282 123 24 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.2 MiB 0.09 841 8087 1664 5850 573 54.9 MiB 0.12 0.00 3.58635 -102.903 -3.58635 3.58635 0.94 0.00105797 0.000972465 0.0428028 0.0393195 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.61 0.177599 0.159696 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0407645 0.0366773 128 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1047 15165 4413 8666 2086 55.3 MiB 0.22 0.00 4.3944 -130.237 -4.3944 4.3944 1.05 0.00112512 0.00103174 0.0885157 0.081239 32 2492 25 6.65987e+06 329628 554710. 1919.41 1.27 0.238224 0.214552 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0432912 0.0389898 125 50 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17488 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.06 780 6100 1392 4485 223 55.0 MiB 0.11 0.00 2.90053 -100.349 -2.90053 2.90053 1.05 0.000970259 0.000888911 0.0399844 0.0367285 32 1965 19 6.65987e+06 202848 554710. 1919.41 1.24 0.162371 0.145642 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0405912 0.0363458 101 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17360 1 0.03 -1 -1 30076 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.2 MiB 0.10 630 9199 2049 6385 765 54.9 MiB 0.11 0.00 2.99867 -92.259 -2.99867 2.99867 1.06 0.000904839 0.000829382 0.0467021 0.0427788 32 1813 20 6.65987e+06 291594 554710. 1919.41 1.21 0.165644 0.148293 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.25 0.08 0.23 -1 -1 0.25 0.0378755 0.0338746 97 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30264 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.1 MiB 0.06 575 14123 3775 8918 1430 54.7 MiB 0.16 0.00 3.31478 -91.535 -3.31478 3.31478 1.04 0.000892181 0.000818151 0.0726486 0.0665248 32 1755 23 6.65987e+06 291594 554710. 1919.41 1.18 0.188189 0.169058 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.26 0.08 0.21 -1 -1 0.26 0.0344892 0.0307605 98 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17076 1 0.03 -1 -1 30336 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.1 MiB 0.10 714 4763 885 3714 164 54.8 MiB 0.07 0.00 3.74323 -109.194 -3.74323 3.74323 1.06 0.00090841 0.000834292 0.0266524 0.0244984 30 1851 22 6.65987e+06 240882 526063. 1820.29 1.29 0.142923 0.127793 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.26 0.08 0.20 -1 -1 0.26 0.0370527 0.0332384 110 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17240 1 0.03 -1 -1 30144 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.7 MiB 0.10 740 8130 1715 6151 264 55.1 MiB 0.11 0.00 3.32595 -98.9982 -3.32595 3.32595 1.05 0.000573318 0.000517179 0.0386412 0.0353925 32 1842 22 6.65987e+06 342306 554710. 1919.41 1.15 0.157615 0.141089 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0374436 0.0335606 103 30 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30456 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 874 10103 2597 6479 1027 54.9 MiB 0.14 0.00 3.27578 -104.365 -3.27578 3.27578 1.05 0.000978649 0.000898397 0.0548114 0.0503215 32 1837 16 6.65987e+06 316950 554710. 1919.41 1.14 0.168447 0.151228 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0370601 0.0331954 105 54 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30492 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1205 9971 2413 6766 792 55.8 MiB 0.15 0.00 4.35696 -124.779 -4.35696 4.35696 1.04 0.00123705 0.00113596 0.0560971 0.0515253 30 2470 20 6.65987e+06 469086 526063. 1820.29 1.16 0.210907 0.190245 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0521918 0.0471226 150 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17692 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.21 1009 12860 3291 8398 1171 55.6 MiB 0.11 0.00 3.75432 -126.947 -3.75432 3.75432 0.72 0.000467038 0.000422358 0.0282319 0.0255404 26 2525 36 6.65987e+06 456408 477104. 1650.88 0.91 0.101089 0.0892612 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0490153 0.0442434 146 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30084 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 731 8852 2206 5531 1115 55.0 MiB 0.13 0.00 4.21752 -119.384 -4.21752 4.21752 1.04 0.000951554 0.000872849 0.051731 0.0474632 28 2061 26 6.65987e+06 215526 500653. 1732.36 1.24 0.179026 0.160516 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.22 0.09 0.20 -1 -1 0.22 0.0387586 0.0347942 109 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30484 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 17.1 MiB 0.25 838 9687 2447 6341 899 55.6 MiB 0.17 0.00 4.30117 -127.913 -4.30117 4.30117 1.05 0.00121095 0.0011111 0.0643278 0.0590778 28 2472 25 6.65987e+06 304272 500653. 1732.36 1.38 0.225046 0.20271 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0506365 0.0455736 137 61 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17912 1 0.03 -1 -1 30424 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1313 13758 3781 7541 2436 55.5 MiB 0.23 0.00 5.77198 -171.36 -5.77198 5.77198 1.05 0.00122294 0.0011213 0.0873303 0.0801309 32 3132 21 6.65987e+06 342306 554710. 1919.41 1.32 0.242874 0.219311 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0537815 0.0484855 170 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30428 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 16.8 MiB 1.07 956 15103 4666 7688 2749 55.5 MiB 0.25 0.00 4.78629 -143.571 -4.78629 4.78629 1.05 0.0012439 0.00114116 0.100167 0.0918994 32 2967 29 6.65987e+06 316950 554710. 1919.41 1.47 0.275185 0.248255 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0217444 0.019502 162 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30324 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 16.9 MiB 0.24 864 6095 1129 4612 354 55.3 MiB 0.12 0.00 4.47092 -130.094 -4.47092 4.47092 1.04 0.00116431 0.00106867 0.0374672 0.0344141 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.70 0.206484 0.185506 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0488816 0.0440155 133 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 16.3 MiB 0.18 918 12371 3407 6390 2574 54.9 MiB 0.17 0.00 4.0455 -110.07 -4.0455 4.0455 1.05 0.000996161 0.000913406 0.068273 0.0626155 28 2605 20 6.65987e+06 278916 500653. 1732.36 1.50 0.193062 0.173637 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0388471 0.0349187 118 27 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17968 1 0.03 -1 -1 30384 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 17.3 MiB 0.29 1184 10336 2301 7496 539 55.6 MiB 0.15 0.01 5.18869 -164.242 -5.18869 5.18869 1.10 0.00146702 0.00134676 0.0435172 0.0397538 26 3457 39 6.65987e+06 481764 477104. 1650.88 2.51 0.270265 0.242508 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.21 0.18 0.17 -1 -1 0.21 0.0717011 0.06457 172 87 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.1 MiB 0.13 660 11064 4480 5786 798 54.8 MiB 0.12 0.00 3.61218 -99.209 -3.61218 3.61218 1.05 0.000903332 0.000827127 0.057231 0.0524219 32 1891 29 6.65987e+06 266238 554710. 1919.41 1.22 0.182295 0.163073 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.31 0.09 0.23 -1 -1 0.31 0.0313613 0.0278828 101 28 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 17.0 MiB 0.22 1031 5756 1118 4418 220 55.7 MiB 0.12 0.00 5.03726 -146.602 -5.03726 5.03726 1.05 0.00113328 0.00103921 0.0377695 0.0346788 28 2854 46 6.65987e+06 291594 500653. 1732.36 2.05 0.229183 0.20555 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.23 0.11 0.16 -1 -1 0.23 0.0510264 0.0459358 142 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 975 10087 2133 7508 446 55.2 MiB 0.16 0.00 3.91407 -118.639 -3.91407 3.91407 1.04 0.00114931 0.00105382 0.0554388 0.0508559 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.80 0.241776 0.217125 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0405769 0.0365804 131 53 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30088 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.6 MiB 0.08 889 13153 5130 6680 1343 55.2 MiB 0.18 0.00 4.00941 -121.212 -4.00941 4.00941 1.04 0.00103608 0.000949413 0.0723783 0.0664157 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.52 0.230493 0.207326 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.25 0.19 0.21 -1 -1 0.25 0.0562109 0.0504007 123 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1135 8213 1899 5522 792 55.4 MiB 0.14 0.00 4.53182 -135.539 -4.53182 4.53182 1.05 0.00115944 0.00106338 0.053802 0.0493474 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.47 0.206162 0.185413 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0549964 0.0494905 136 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17660 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 16.8 MiB 0.36 1054 11759 3077 7738 944 55.4 MiB 0.18 0.00 3.70469 -122.012 -3.70469 3.70469 1.04 0.00118829 0.00109057 0.0678753 0.0622894 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.61 0.219865 0.197993 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516653 0.0464901 132 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17568 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1080 10772 2746 7404 622 55.7 MiB 0.18 0.00 4.49669 -137.938 -4.49669 4.49669 1.05 0.00125011 0.00114689 0.0614935 0.0563488 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.51 0.222933 0.200707 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0548603 0.0494717 144 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30240 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.7 MiB 0.11 888 10593 2829 7083 681 55.2 MiB 0.15 0.00 3.98836 -118.206 -3.98836 3.98836 1.04 0.00106263 0.000975631 0.0564894 0.05188 32 2021 22 6.65987e+06 367662 554710. 1919.41 1.19 0.190799 0.171329 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0440014 0.0394966 122 24 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17792 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1026 6999 1560 5055 384 55.1 MiB 0.12 0.00 4.76946 -136.875 -4.76946 4.76946 1.05 0.00108214 0.000992581 0.0425636 0.0390945 32 2525 24 6.65987e+06 291594 554710. 1919.41 1.23 0.184859 0.166126 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0457549 0.0411554 133 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.21 17628 1 0.03 -1 -1 30284 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1149 15584 5177 7856 2551 55.5 MiB 0.27 0.00 4.99307 -147.134 -4.99307 4.99307 1.04 0.0012179 0.00111786 0.102398 0.0939657 32 3017 27 6.65987e+06 291594 554710. 1919.41 1.36 0.265544 0.239741 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0475638 0.0429403 146 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 16.6 MiB 0.18 1089 11245 3394 6770 1081 55.2 MiB 0.19 0.00 3.85398 -125.73 -3.85398 3.85398 1.05 0.00124409 0.00114086 0.0784879 0.0719882 32 2804 22 6.65987e+06 266238 554710. 1919.41 1.31 0.236836 0.213486 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.26 0.14 0.22 -1 -1 0.26 0.0583254 0.0524161 135 77 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17380 1 0.03 -1 -1 30084 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.2 MiB 0.09 769 15493 4232 9363 1898 54.8 MiB 0.18 0.00 3.34618 -101.012 -3.34618 3.34618 1.05 0.000897129 0.000823228 0.0728507 0.0667943 30 1787 28 6.65987e+06 304272 526063. 1820.29 1.23 0.194464 0.174437 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0294486 0.0264667 97 23 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 16.9 MiB 0.15 904 12345 3635 7531 1179 55.3 MiB 0.19 0.00 3.9733 -136.305 -3.9733 3.9733 1.02 0.00110599 0.0010131 0.0716559 0.0655266 28 2501 21 6.65987e+06 253560 500653. 1732.36 1.27 0.185978 0.167069 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0462901 0.0415841 125 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30344 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1234 10649 2580 7238 831 55.4 MiB 0.21 0.01 5.507 -161.149 -5.507 5.507 1.16 0.0013002 0.00119464 0.07023 0.0644922 32 3101 24 6.65987e+06 354984 554710. 1919.41 1.44 0.244368 0.220891 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530635 0.0480399 168 31 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.25 868 6791 1309 5265 217 55.2 MiB 0.11 0.00 4.3812 -128.187 -4.3812 4.3812 1.02 0.00115484 0.00105835 0.0383795 0.0351597 30 2033 20 6.65987e+06 393018 526063. 1820.29 1.23 0.170585 0.15301 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.24 0.09 0.21 -1 -1 0.24 0.0468154 0.0422519 133 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30308 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.7 MiB 0.06 691 10228 2870 6479 879 55.1 MiB 0.14 0.00 3.33678 -100.638 -3.33678 3.33678 1.04 0.000953867 0.00087475 0.0524259 0.0480899 26 1949 23 6.65987e+06 329628 477104. 1650.88 1.50 0.175353 0.157173 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0409469 0.0365758 104 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 17772 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1262 6623 1301 4680 642 55.7 MiB 0.14 0.00 6.41663 -184.149 -6.41663 6.41663 1.05 0.00140492 0.00129007 0.0515042 0.0473957 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.81 0.241698 0.217731 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0597142 0.0539435 168 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 16.5 MiB 0.27 921 16959 4303 11211 1445 55.2 MiB 0.24 0.00 4.44175 -133.512 -4.44175 4.44175 1.05 0.00113798 0.00104441 0.0916499 0.0841271 26 2186 24 6.65987e+06 405696 477104. 1650.88 1.28 0.24196 0.218503 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0494487 0.0444939 130 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.05 793 12375 3802 6579 1994 54.9 MiB 0.15 0.00 3.21869 -96.935 -3.21869 3.21869 1.05 0.000845311 0.000776013 0.0569784 0.0522935 30 1766 15 6.65987e+06 291594 526063. 1820.29 1.14 0.154163 0.138482 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.27 0.06 0.20 -1 -1 0.27 0.0282984 0.0253886 100 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30164 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.8 MiB 0.15 997 10448 2232 7093 1123 55.3 MiB 0.15 0.00 5.44618 -130.736 -5.44618 5.44618 1.05 0.00118386 0.00108452 0.0579268 0.0530598 30 2483 23 6.65987e+06 431052 526063. 1820.29 1.42 0.211468 0.190436 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0512321 0.0461792 139 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17152 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.1 MiB 0.10 805 9600 2394 6142 1064 54.7 MiB 0.07 0.00 3.39504 -104.25 -3.39504 3.39504 0.82 0.000332965 0.0003001 0.0190563 0.0172111 30 1773 21 6.65987e+06 253560 526063. 1820.29 1.20 0.135583 0.121027 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0343049 0.0307786 104 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17340 1 0.03 -1 -1 30404 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.16 870 16295 4607 9720 1968 54.9 MiB 0.19 0.00 3.88231 -108.178 -3.88231 3.88231 1.05 0.000951392 0.000872625 0.0745596 0.0683549 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.36 0.201843 0.181361 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.21 0.07 0.17 -1 -1 0.21 0.0318945 0.0286843 105 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30248 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1186 15151 5050 8219 1882 55.6 MiB 0.25 0.00 4.37661 -129.138 -4.37661 4.37661 1.05 0.00115926 0.00106359 0.0981138 0.09008 28 2757 20 6.65987e+06 304272 500653. 1732.36 1.61 0.243867 0.220289 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0469598 0.0423039 138 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.18 884 5548 1103 3958 487 55.5 MiB 0.10 0.00 4.37207 -129.772 -4.37207 4.37207 1.05 0.0011804 0.00108252 0.0369406 0.0339471 32 2141 21 6.65987e+06 304272 554710. 1919.41 1.22 0.185528 0.166634 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0455786 0.040947 130 54 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30104 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1040 15391 4199 8930 2262 55.4 MiB 0.23 0.00 4.54089 -136.701 -4.54089 4.54089 1.06 0.00117201 0.00107536 0.091795 0.084256 32 2316 24 6.65987e+06 342306 554710. 1919.41 1.23 0.245215 0.221267 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.04304 0.0388039 132 51 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17540 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 821 7476 1923 4958 595 55.0 MiB 0.12 0.00 4.66411 -131.468 -4.66411 4.66411 1.06 0.000945592 0.000867166 0.0438122 0.0402048 30 1841 19 6.65987e+06 202848 526063. 1820.29 1.14 0.164375 0.147285 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0347542 0.0312154 103 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30404 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.21 768 7736 1918 4969 849 55.3 MiB 0.13 0.00 3.69598 -115.422 -3.69598 3.69598 1.02 0.00104377 0.000956313 0.0484749 0.0444343 30 1988 17 6.65987e+06 240882 526063. 1820.29 1.17 0.180713 0.162364 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0418029 0.0375185 111 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30460 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.4 MiB 0.21 822 9815 2052 6788 975 55.0 MiB 0.13 0.00 3.34001 -95.394 -3.34001 3.34001 1.09 0.00109368 0.00100178 0.0537453 0.049283 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.80 0.195987 0.175997 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.21 0.08 0.13 -1 -1 0.21 0.0346768 0.0312681 123 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30464 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.13 864 12623 3003 8699 921 55.1 MiB 0.16 0.00 4.17801 -101.983 -4.17801 4.17801 1.06 0.000960682 0.000881919 0.0526949 0.0479732 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.89 0.171062 0.153134 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.22 0.10 0.19 -1 -1 0.22 0.0387653 0.0347819 115 27 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.10 17780 1 0.03 -1 -1 30472 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 16.4 MiB 0.23 739 8360 2842 3913 1605 55.0 MiB 0.13 0.00 4.07397 -113.958 -4.07397 4.07397 1.05 0.00103394 0.000946861 0.0543216 0.0498423 32 2126 22 6.65987e+06 215526 554710. 1919.41 1.25 0.179157 0.160685 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0406077 0.036341 108 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17656 1 0.03 -1 -1 30104 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 16.6 MiB 0.20 854 4110 634 3368 108 55.2 MiB 0.09 0.00 3.78604 -125.597 -3.78604 3.78604 1.04 0.00109114 0.00100042 0.0282541 0.0259585 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.79 0.173749 0.155383 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0438533 0.0393788 120 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17076 1 0.03 -1 -1 30452 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.09 847 5711 1070 3973 668 55.1 MiB 0.09 0.00 4.49904 -123.598 -4.49904 4.49904 1.05 0.00103732 0.000952683 0.0304035 0.0279278 30 2337 22 6.65987e+06 405696 526063. 1820.29 1.32 0.165172 0.148346 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0487308 0.0437921 127 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30472 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1096 14639 4278 7910 2451 55.6 MiB 0.24 0.00 5.13815 -159.632 -5.13815 5.13815 1.05 0.00118258 0.00108682 0.0949602 0.0872498 32 3087 25 6.65987e+06 278916 554710. 1919.41 1.31 0.251465 0.227148 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.25 0.12 0.20 -1 -1 0.25 0.0490229 0.0441788 144 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30308 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1097 14331 4044 8499 1788 55.5 MiB 0.22 0.00 4.9662 -142.984 -4.9662 4.9662 1.05 0.0012534 0.00115048 0.085394 0.0783258 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.43 0.246405 0.222256 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0436377 0.0393728 142 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30300 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 17.1 MiB 0.27 1087 19136 6054 10420 2662 55.6 MiB 0.27 0.00 4.23232 -136.463 -4.23232 4.23232 1.05 0.00125627 0.00115151 0.106016 0.0972062 28 2899 28 6.65987e+06 469086 500653. 1732.36 1.70 0.279174 0.252069 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.20 0.07 0.09 -1 -1 0.20 0.0252595 0.0224961 140 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30100 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.4 MiB 0.22 753 14081 4985 6810 2286 54.9 MiB 0.18 0.00 3.61906 -107.365 -3.61906 3.61906 1.05 0.000934557 0.000856216 0.0780115 0.0714776 32 1967 21 6.65987e+06 240882 554710. 1919.41 1.20 0.195066 0.175494 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0407228 0.0364541 105 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 17.0 MiB 0.27 993 13583 3880 7603 2100 55.7 MiB 0.22 0.00 4.75724 -141.541 -4.75724 4.75724 1.06 0.00122106 0.00111962 0.095446 0.0876077 32 2250 20 6.65987e+06 266238 554710. 1919.41 1.26 0.247693 0.223878 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494085 0.0445877 137 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 16.9 MiB 0.28 984 6328 1212 4906 210 55.4 MiB 0.12 0.00 5.08874 -146.537 -5.08874 5.08874 1.06 0.00115249 0.0010586 0.0408509 0.0375567 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.54 0.232437 0.208507 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.24 0.10 0.22 -1 -1 0.24 0.0463018 0.0417743 138 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30504 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 16.7 MiB 0.35 1115 15391 3929 9868 1594 55.2 MiB 0.23 0.00 5.2191 -153.261 -5.2191 5.2191 1.05 0.00113352 0.00103875 0.0887915 0.0813375 32 2703 22 6.65987e+06 354984 554710. 1919.41 1.24 0.23367 0.210712 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.047657 0.0429259 146 47 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30428 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 17.0 MiB 0.94 822 9963 2514 6047 1402 55.4 MiB 0.17 0.00 4.35758 -125.649 -4.35758 4.35758 1.05 0.00120737 0.00110765 0.0610073 0.0559865 30 1914 20 6.65987e+06 393018 526063. 1820.29 1.19 0.211126 0.190038 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0451283 0.0407886 133 83 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30324 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 16.8 MiB 0.21 1042 15822 5317 8613 1892 55.3 MiB 0.29 0.00 4.76549 -137.992 -4.76549 4.76549 1.05 0.000830583 0.000747778 0.10438 0.0955517 30 2491 20 6.65987e+06 253560 526063. 1820.29 1.35 0.254425 0.229602 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463954 0.0418322 133 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.11 17588 1 0.03 -1 -1 30288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 16.7 MiB 0.36 913 8934 2134 6274 526 55.4 MiB 0.15 0.00 4.51892 -126.294 -4.51892 4.51892 1.05 0.00120559 0.00110533 0.0568582 0.0521587 26 2602 20 6.65987e+06 367662 477104. 1650.88 2.03 0.203034 0.182282 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0482837 0.043409 131 85 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.10 17084 1 0.04 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.1 MiB 0.09 724 12416 3530 7132 1754 54.7 MiB 0.16 0.00 3.74649 -112.139 -3.74649 3.74649 1.05 0.000881584 0.000805851 0.0671039 0.0616003 32 1726 22 6.65987e+06 190170 554710. 1919.41 1.17 0.170413 0.153165 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0325378 0.0292011 96 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30280 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 17.1 MiB 0.28 989 15430 4612 8155 2663 55.5 MiB 0.23 0.00 4.41154 -133.367 -4.41154 4.41154 1.06 0.00121486 0.00111236 0.0916949 0.0841148 32 2429 22 6.65987e+06 380340 554710. 1919.41 1.34 0.245027 0.220925 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.049774 0.0447692 130 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30368 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 0.28 902 8685 2007 6399 279 55.4 MiB 0.17 0.00 4.76517 -143.598 -4.76517 4.76517 1.05 0.00128901 0.00118139 0.0647516 0.0594054 32 2497 24 6.65987e+06 253560 554710. 1919.41 1.32 0.234063 0.211 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0479514 0.0431554 147 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30052 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 16.6 MiB 0.21 946 12143 3182 7420 1541 55.1 MiB 0.16 0.00 4.15372 -120.605 -4.15372 4.15372 1.05 0.000924123 0.000846782 0.0652232 0.0597621 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.98 0.21512 0.19277 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.25 0.14 0.18 -1 -1 0.25 0.0491973 0.04391 111 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17372 1 0.02 -1 -1 30432 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.10 732 8685 2467 5468 750 54.9 MiB 0.12 0.00 3.75938 -108.757 -3.75938 3.75938 1.04 0.000883897 0.000811329 0.0444559 0.040799 30 1655 19 6.65987e+06 266238 526063. 1820.29 1.12 0.153513 0.137818 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0370561 0.0331827 106 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17820 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 17.0 MiB 0.16 1015 15533 4784 8284 2465 55.7 MiB 0.24 0.00 4.92983 -152.714 -4.92983 4.92983 1.05 0.00117015 0.00107388 0.0952219 0.0874443 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.65 0.26078 0.235342 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.22 0.12 0.09 -1 -1 0.22 0.0511154 0.046024 144 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 16.9 MiB 0.43 1191 12305 3278 8039 988 55.6 MiB 0.18 0.00 4.93544 -150.743 -4.93544 4.93544 1.05 0.0011791 0.00108196 0.0735022 0.0675021 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.72 0.228829 0.206152 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0575384 0.0517235 151 56 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30148 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1117 11004 2566 7834 604 55.7 MiB 0.18 0.00 5.28255 -141.369 -5.28255 5.28255 1.05 0.00121759 0.00111736 0.0612883 0.0561822 26 3370 49 6.65987e+06 456408 477104. 1650.88 3.37 0.273523 0.246158 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0493737 0.0446243 153 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17492 1 0.03 -1 -1 30120 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 16.4 MiB 0.22 750 7863 1674 5072 1117 55.0 MiB 0.12 0.00 3.28175 -94.6726 -3.28175 3.28175 1.08 0.00104975 0.000962002 0.0425993 0.0390961 30 1756 22 6.65987e+06 393018 526063. 1820.29 1.16 0.176835 0.158604 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0406239 0.036543 120 52 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.2 MiB 0.06 638 11948 3525 6694 1729 54.8 MiB 0.14 0.00 3.4543 -94.1654 -3.4543 3.4543 1.07 0.000879723 0.00080703 0.0633986 0.0581403 28 1599 22 6.65987e+06 266238 500653. 1732.36 1.10 0.175073 0.157156 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0351193 0.0314073 97 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.14 18080 1 0.03 -1 -1 30380 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.2 MiB 0.18 1319 10542 2869 6884 789 55.6 MiB 0.20 0.00 4.22384 -138.261 -4.22384 4.22384 1.05 0.00136838 0.0012562 0.0761428 0.0699311 28 3615 24 6.65987e+06 329628 500653. 1732.36 2.00 0.258701 0.233678 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.060153 0.054332 170 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30320 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 16.7 MiB 0.85 967 9417 2580 6478 359 55.3 MiB 0.16 0.00 5.3126 -152.671 -5.3126 5.3126 1.05 0.001192 0.00109353 0.0646045 0.0592536 30 2413 22 6.65987e+06 266238 526063. 1820.29 1.27 0.216238 0.194725 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.26 0.09 0.20 -1 -1 0.26 0.049875 0.0449325 150 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30400 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 0.83 910 12186 3808 6300 2078 55.4 MiB 0.18 0.00 4.17204 -128.915 -4.17204 4.17204 1.10 0.00107649 0.000985979 0.0767294 0.0703338 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.23 0.215177 0.193834 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0398318 0.0358315 126 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30544 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.7 MiB 0.11 997 13726 4134 8495 1097 55.4 MiB 0.20 0.00 4.87399 -127.071 -4.87399 4.87399 1.04 0.00111283 0.00102149 0.0749362 0.0686981 30 2100 21 6.65987e+06 380340 526063. 1820.29 1.17 0.215701 0.194548 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.26 0.08 0.10 -1 -1 0.26 0.0390705 0.035259 126 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.23 17640 1 0.03 -1 -1 30152 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1094 9732 2284 6801 647 55.8 MiB 0.17 0.00 4.71929 -136.272 -4.71929 4.71929 1.05 0.00122956 0.001127 0.0581981 0.0534419 26 2676 39 6.65987e+06 418374 477104. 1650.88 2.04 0.25194 0.226688 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048082 0.0434591 144 50 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.11 17860 1 0.03 -1 -1 30348 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.6 MiB 0.16 968 12693 2914 8596 1183 55.3 MiB 0.20 0.00 3.66981 -110.801 -3.66981 3.66981 1.05 0.00108038 0.000990023 0.0680576 0.0623855 32 2261 19 6.65987e+06 393018 554710. 1919.41 1.21 0.20158 0.181593 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0435896 0.0391978 124 51 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30256 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 16.9 MiB 0.18 1162 15493 5220 7522 2751 55.7 MiB 0.25 0.00 4.81692 -150.127 -4.81692 4.81692 1.05 0.00117812 0.00108104 0.0968441 0.0889042 32 3110 26 6.65987e+06 304272 554710. 1919.41 1.37 0.255317 0.23068 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0568005 0.0512159 147 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30056 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1013 10448 2457 7443 548 55.3 MiB 0.18 0.00 4.61703 -140.056 -4.61703 4.61703 1.05 0.00126054 0.00115405 0.0621261 0.0569425 26 2952 23 6.65987e+06 431052 477104. 1650.88 2.01 0.225826 0.203453 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0549543 0.0495571 143 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30228 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.3 MiB 0.13 669 12030 4965 6160 905 54.9 MiB 0.15 0.00 3.76255 -110.557 -3.76255 3.76255 1.06 0.000926174 0.000849081 0.0697826 0.0640153 32 1475 20 6.65987e+06 215526 554710. 1919.41 1.15 0.1865 0.167721 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0355508 0.0318645 92 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.10 17816 1 0.04 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 16.4 MiB 0.24 897 13992 5018 7267 1707 54.9 MiB 0.19 0.00 3.93547 -124.701 -3.93547 3.93547 1.05 0.00102038 0.000934816 0.0808403 0.0740751 28 2149 19 6.65987e+06 253560 500653. 1732.36 1.14 0.205455 0.184886 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0458012 0.0411053 116 58 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30524 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.11 945 14020 3581 8011 2428 55.5 MiB 0.19 0.00 4.66818 -124.475 -4.66818 4.66818 1.05 0.00110882 0.00101828 0.0704963 0.0647412 32 2224 21 6.65987e+06 469086 554710. 1919.41 1.24 0.210641 0.190009 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0498502 0.0448108 129 33 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17644 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 16.4 MiB 0.21 809 8448 1963 6049 436 55.0 MiB 0.12 0.00 4.16472 -111.492 -4.16472 4.16472 1.05 0.000900686 0.000826499 0.045333 0.0416021 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.90 0.177996 0.15923 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0378425 0.0338748 110 31 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.11 17372 1 0.03 -1 -1 30188 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 16.1 MiB 0.21 618 8852 1890 6315 647 54.8 MiB 0.12 0.00 3.69503 -110.464 -3.69503 3.69503 1.07 0.000964489 0.000885082 0.0523396 0.0480543 32 2025 24 6.65987e+06 202848 554710. 1919.41 1.30 0.178635 0.160205 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.22 0.05 0.11 -1 -1 0.22 0.0171851 0.0152335 109 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30104 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 17.1 MiB 0.27 938 16973 4485 9905 2583 55.6 MiB 0.24 0.00 4.16177 -122.328 -4.16177 4.16177 1.00 0.00121176 0.00111184 0.0953566 0.0874202 32 2086 22 6.65987e+06 443730 554710. 1919.41 1.27 0.251205 0.226762 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0444795 0.0400806 135 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30356 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 16.4 MiB 0.18 818 9872 2327 5876 1669 55.0 MiB 0.13 0.00 3.9535 -119.787 -3.9535 3.9535 1.09 0.000913279 0.000837063 0.0535125 0.0490594 28 2135 19 6.65987e+06 240882 500653. 1732.36 1.21 0.165281 0.148271 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.033752 0.030249 108 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30056 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 854 7007 1324 4687 996 55.5 MiB 0.10 0.00 3.67932 -112.828 -3.67932 3.67932 0.87 0.00100802 0.000926265 0.0369279 0.0340435 26 2878 47 6.65987e+06 393018 477104. 1650.88 3.28 0.23182 0.207775 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0385043 0.0347296 126 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.8 MiB 0.78 956 13055 3385 8531 1139 55.4 MiB 0.20 0.00 4.2257 -136.613 -4.2257 4.2257 1.09 0.00125111 0.00114559 0.0793802 0.0726597 32 2142 21 6.65987e+06 405696 554710. 1919.41 1.25 0.240177 0.21652 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0500155 0.0451139 138 91 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30396 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 770 8481 2112 5900 469 55.1 MiB 0.13 0.00 3.26384 -102.093 -3.26384 3.26384 1.05 0.00102258 0.000937293 0.0511852 0.0469032 30 1814 29 6.65987e+06 215526 526063. 1820.29 1.18 0.189378 0.169691 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0352204 0.031629 104 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17244 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 16.4 MiB 0.16 877 7823 1725 5526 572 55.0 MiB 0.12 0.00 4.21052 -129.412 -4.21052 4.21052 1.05 0.000986983 0.000905837 0.0459717 0.0422042 28 2168 19 6.65987e+06 240882 500653. 1732.36 1.19 0.168389 0.151176 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.041271 0.0370076 115 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1033 8591 2028 5962 601 55.3 MiB 0.14 0.00 4.5425 -136.752 -4.5425 4.5425 1.05 0.00109827 0.00100953 0.0530246 0.0487525 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.68 0.200414 0.18051 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0400929 0.0361518 130 30 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 16.5 MiB 0.38 878 11177 3323 6945 909 55.1 MiB 0.17 0.00 4.7062 -118.142 -4.7062 4.7062 1.05 0.00107008 0.000981195 0.0632494 0.0579691 30 1916 16 6.65987e+06 354984 526063. 1820.29 1.10 0.18935 0.170446 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0342973 0.030983 121 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1007 9495 2407 6691 397 55.5 MiB 0.17 0.00 5.16517 -161.462 -5.16517 5.16517 1.05 0.00127316 0.00116772 0.0666982 0.0612133 32 2658 22 6.65987e+06 291594 554710. 1919.41 1.30 0.230697 0.20807 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0555751 0.0501038 153 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17048 1 0.02 -1 -1 30364 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.1 MiB 0.10 794 9181 2203 6150 828 54.7 MiB 0.11 0.00 3.53041 -99.5418 -3.53041 3.53041 1.05 0.000832469 0.000763321 0.0459819 0.0422253 32 1764 19 6.65987e+06 228204 554710. 1919.41 1.11 0.148318 0.132824 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0295478 0.0264512 96 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17688 1 0.03 -1 -1 30216 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 16.7 MiB 0.41 947 7201 1402 5250 549 55.4 MiB 0.13 0.00 4.0805 -134.669 -4.0805 4.0805 1.06 0.00130409 0.00119541 0.0457593 0.0419384 32 2497 24 6.65987e+06 418374 554710. 1919.41 1.28 0.216763 0.194792 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0567484 0.0511259 144 90 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30232 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 692 9368 2494 5834 1040 55.1 MiB 0.16 0.00 3.5233 -119.857 -3.5233 3.5233 1.05 0.00117706 0.00107817 0.0684397 0.0627281 32 1730 23 6.65987e+06 202848 554710. 1919.41 1.23 0.221303 0.19912 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0529305 0.0474973 115 96 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30436 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.33 963 9383 2362 6118 903 55.4 MiB 0.15 0.00 4.19332 -127.565 -4.19332 4.19332 1.05 0.00117975 0.00108152 0.0545297 0.0499605 32 2293 25 6.65987e+06 393018 554710. 1919.41 1.23 0.210843 0.189536 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0489701 0.044041 130 60 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30412 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1323 16127 4193 10390 1544 55.5 MiB 0.32 0.01 6.49946 -194.782 -6.49946 6.49946 1.05 0.00132737 0.00121862 0.111986 0.10287 28 3840 36 6.65987e+06 316950 500653. 1732.36 2.86 0.308673 0.279019 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0558125 0.0504727 168 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17520 1 0.02 -1 -1 30192 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 16.1 MiB 0.18 701 10895 2966 6376 1553 54.6 MiB 0.12 0.00 3.19181 -99.2246 -3.19181 3.19181 1.07 0.000772018 0.000707091 0.0520017 0.0476305 32 1552 19 6.65987e+06 215526 554710. 1919.41 1.10 0.146382 0.131038 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.032002 0.0285075 86 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30440 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.11 559 11200 4645 5368 1187 55.1 MiB 0.07 0.00 4.03052 -111.683 -4.03052 4.03052 1.07 0.00035939 0.000323712 0.0260404 0.0235335 32 1719 26 6.65987e+06 202848 554710. 1919.41 1.29 0.156251 0.139271 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.27 0.14 0.24 -1 -1 0.27 0.0596752 0.0532672 92 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 29940 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.3 MiB 0.07 882 13663 3967 7775 1921 54.9 MiB 0.21 0.00 3.38183 -111.047 -3.38183 3.38183 1.05 0.00101278 0.000928693 0.0779101 0.0714084 32 2232 25 6.65987e+06 266238 554710. 1919.41 1.26 0.211524 0.190288 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0419986 0.0376481 115 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17640 1 0.02 -1 -1 30220 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.1 MiB 0.09 461 9234 2985 4025 2224 54.7 MiB 0.09 0.00 3.09981 -73.1644 -3.09981 3.09981 1.04 0.00075448 0.000690581 0.04016 0.0367823 38 1143 33 6.65987e+06 342306 638502. 2209.35 2.02 0.206987 0.183921 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.29 0.05 0.25 -1 -1 0.29 0.0264034 0.0236581 89 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.11 17764 1 0.03 -1 -1 30464 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 16.9 MiB 0.20 1082 15273 5386 7964 1923 55.3 MiB 0.26 0.00 3.97418 -128.905 -3.97418 3.97418 1.04 0.00121687 0.00111516 0.104793 0.0960702 32 2803 23 6.65987e+06 253560 554710. 1919.41 1.32 0.262042 0.236549 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547871 0.0492815 135 72 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17780 1 0.04 -1 -1 30232 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 16.9 MiB 0.36 841 9951 2183 7152 616 55.6 MiB 0.17 0.00 4.37472 -138.365 -4.37472 4.37472 1.05 0.00127207 0.00116333 0.062549 0.0573545 32 2335 20 6.65987e+06 418374 554710. 1919.41 1.26 0.223623 0.201422 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.046313 0.0418643 142 90 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17864 1 0.03 -1 -1 30104 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 2.26 849 12139 5116 6732 291 56.1 MiB 0.18 0.00 5.4594 -159.287 -5.4594 5.4594 1.09 0.00116932 0.00107148 0.0910881 0.0835873 44 2778 24 6.95648e+06 188184 787024. 2723.27 3.86 0.343268 0.308429 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0516291 0.0465294 81 50 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30372 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 17.5 MiB 2.09 750 10998 3991 5243 1764 56.1 MiB 0.16 0.00 4.63092 -138.355 -4.63092 4.63092 1.09 0.0011814 0.00108373 0.0836536 0.0768302 40 2398 38 6.95648e+06 217135 706193. 2443.58 3.20 0.365452 0.327996 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.0536433 0.0483048 80 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 17.6 MiB 1.10 1011 6839 1853 4585 401 56.1 MiB 0.10 0.00 3.76508 -124.296 -3.76508 3.76508 1.08 0.00103494 0.000950475 0.044537 0.0408957 38 2570 30 6.95648e+06 217135 678818. 2348.85 4.01 0.274675 0.245268 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0414272 0.0372466 76 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.22 17504 1 0.03 -1 -1 30448 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 17.4 MiB 0.29 653 13152 5791 6666 695 55.9 MiB 0.16 0.00 4.18338 -115.281 -4.18338 4.18338 1.05 0.00104478 0.000958639 0.0831858 0.0763004 46 2265 28 6.95648e+06 275038 828058. 2865.25 3.61 0.317931 0.285513 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0405877 0.0365429 71 31 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30244 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 17.4 MiB 0.76 735 12120 5042 6627 451 55.9 MiB 0.16 0.00 4.33299 -127.984 -4.33299 4.33299 1.06 0.00113571 0.00104187 0.0835615 0.0767002 46 2384 49 6.95648e+06 231611 828058. 2865.25 5.20 0.377312 0.338374 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.34 0.10 0.32 -1 -1 0.34 0.044247 0.039899 73 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 17.6 MiB 1.09 762 14779 6278 7942 559 56.2 MiB 0.18 0.00 3.0584 -114.242 -3.0584 3.0584 1.09 0.00120302 0.00110016 0.0990458 0.0907117 46 2130 23 6.95648e+06 303989 828058. 2865.25 3.77 0.356975 0.320647 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0502151 0.0452231 79 58 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17312 1 0.03 -1 -1 30756 -1 -1 13 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 16.8 MiB 4.02 400 8118 3296 4253 569 55.3 MiB 0.09 0.00 3.56899 -93.1575 -3.56899 3.56899 1.08 0.000892481 0.00081411 0.0507409 0.0465485 40 1513 27 6.95648e+06 188184 706193. 2443.58 2.48 0.245375 0.218863 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0357302 0.032004 52 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17036 1 0.03 -1 -1 30012 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 17.1 MiB 0.37 691 11983 4028 5840 2115 55.8 MiB 0.14 0.00 3.0166 -94.5957 -3.0166 3.0166 1.08 0.000971565 0.000891355 0.0623128 0.0571974 38 2198 34 6.95648e+06 361892 678818. 2348.85 3.58 0.288074 0.257627 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.26 0.05 0.14 -1 -1 0.26 0.0175381 0.0156019 69 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 17.4 MiB 1.89 579 9684 3905 5251 528 56.1 MiB 0.12 0.00 3.39469 -115.112 -3.39469 3.39469 1.09 0.0010306 0.000943595 0.0674986 0.0618481 48 1811 26 6.95648e+06 159232 865456. 2994.66 2.82 0.291103 0.260273 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.38 0.10 0.34 -1 -1 0.38 0.0438043 0.0392135 66 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 17.2 MiB 1.34 566 8134 3343 4546 245 55.9 MiB 0.10 0.00 3.30928 -114.291 -3.30928 3.30928 1.08 0.00101303 0.000927961 0.0457614 0.0418921 42 1921 24 6.95648e+06 144757 744469. 2576.02 2.31 0.263335 0.234768 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0391705 0.0352196 59 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30336 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 17.0 MiB 1.78 471 10304 4280 5549 475 55.8 MiB 0.06 0.00 3.43453 -102.366 -3.43453 3.43453 0.74 0.000368937 0.000332362 0.0265587 0.0240257 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.45 0.118392 0.103246 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0380115 0.0340867 55 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30088 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 1.47 590 10614 3394 4881 2339 55.8 MiB 0.13 0.00 3.37833 -114.652 -3.37833 3.37833 1.08 0.000943388 0.000864378 0.0672547 0.0616811 48 2065 26 6.95648e+06 144757 865456. 2994.66 4.24 0.275949 0.246684 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0410297 0.0367433 62 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 17.4 MiB 1.96 833 13261 5618 7295 348 56.0 MiB 0.18 0.00 3.96008 -134.144 -3.96008 3.96008 1.08 0.00116825 0.00106875 0.0943122 0.0865228 46 2758 33 6.95648e+06 217135 828058. 2865.25 4.44 0.361402 0.324845 28066 200906 -1 2047 22 1722 2490 195693 41961 3.39476 3.39476 -130.85 -3.39476 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0509226 0.0458872 83 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30452 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 17.5 MiB 0.95 789 9158 3216 4675 1267 56.1 MiB 0.12 0.00 4.48063 -134.265 -4.48063 4.48063 1.12 0.00118221 0.00108311 0.0610072 0.0559749 46 2203 26 6.95648e+06 318465 828058. 2865.25 2.95 0.319889 0.286841 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0542423 0.0487392 75 61 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30356 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 16.9 MiB 1.25 470 8444 3456 4562 426 55.4 MiB 0.10 0.00 3.10275 -88.0296 -3.10275 3.10275 1.09 0.00086344 0.000791236 0.0488958 0.0448433 40 2005 31 6.95648e+06 188184 706193. 2443.58 2.98 0.244079 0.217414 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0390871 0.0349384 55 27 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 17.3 MiB 1.15 736 13381 4767 6091 2523 55.9 MiB 0.20 0.00 3.0625 -113.087 -3.0625 3.0625 1.10 0.00120312 0.00110319 0.106985 0.0980831 46 2125 28 6.95648e+06 246087 828058. 2865.25 3.09 0.373467 0.335732 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528002 0.0475052 76 58 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30092 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 2.07 821 11698 3981 5913 1804 56.0 MiB 0.17 0.00 4.42651 -139.682 -4.42651 4.42651 1.10 0.00114181 0.00104701 0.0835269 0.0766976 38 2675 39 6.95648e+06 202660 678818. 2348.85 4.14 0.357818 0.321085 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0481899 0.0434561 79 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30292 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 17.0 MiB 0.99 568 11625 5013 6229 383 55.7 MiB 0.15 0.00 2.28966 -90.0891 -2.28966 2.28966 1.08 0.00105339 0.000963685 0.0833848 0.076291 46 1756 36 6.95648e+06 130281 828058. 2865.25 4.13 0.329961 0.295101 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0405761 0.0364506 57 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 9 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 16.6 MiB 0.34 438 9707 4039 5351 317 55.2 MiB 0.10 0.00 2.22846 -79.3536 -2.22846 2.22846 1.09 0.00076745 0.000701861 0.0531963 0.0486875 38 1481 49 6.95648e+06 130281 678818. 2348.85 2.27 0.247219 0.219389 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0306093 0.0273126 43 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30400 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 17.5 MiB 2.10 900 8449 3439 4770 240 56.0 MiB 0.11 0.00 4.11557 -135.517 -4.11557 4.11557 1.09 0.000991298 0.000908224 0.0558545 0.0512724 40 2181 21 6.95648e+06 173708 706193. 2443.58 2.85 0.263428 0.235592 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0433029 0.0388449 69 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30392 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 17.3 MiB 0.57 691 13626 5075 6512 2039 56.0 MiB 0.17 0.00 3.69419 -120.83 -3.69419 3.69419 1.08 0.00115253 0.00105742 0.0891479 0.0817599 44 2266 33 6.95648e+06 289514 787024. 2723.27 4.10 0.352644 0.316606 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.059839 0.0538149 75 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 17.5 MiB 1.55 803 10868 4396 5912 560 56.2 MiB 0.16 0.00 4.7576 -138.082 -4.7576 4.7576 1.12 0.00121413 0.00111307 0.0824378 0.075606 48 2894 42 6.95648e+06 202660 865456. 2994.66 4.56 0.375842 0.336988 28354 207349 -1 2151 23 1823 2679 262855 61699 4.41832 4.41832 -141.927 -4.41832 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.0548738 0.0493939 82 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17404 1 0.02 -1 -1 30708 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 16.5 MiB 0.88 416 8539 3544 4471 524 55.1 MiB 0.08 0.00 2.23646 -66.7931 -2.23646 2.23646 1.10 0.0006573 0.000600728 0.0403815 0.0369205 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.86 0.204267 0.180941 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.26 0.05 0.24 -1 -1 0.26 0.0232369 0.0207166 44 30 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17268 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 0.70 670 9543 3600 4533 1410 55.6 MiB 0.12 0.00 4.68425 -117.235 -4.68425 4.68425 1.08 0.00101399 0.000930278 0.0601344 0.0552468 44 2456 40 6.95648e+06 217135 787024. 2723.27 4.27 0.308805 0.276588 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0393349 0.035427 66 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 16852 1 0.02 -1 -1 30056 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.8 MiB 0.28 360 10055 3887 4514 1654 55.3 MiB 0.09 0.00 2.15326 -68.8392 -2.15326 2.15326 1.08 0.000633839 0.000577821 0.0446908 0.0408002 38 1061 21 6.95648e+06 115805 678818. 2348.85 2.28 0.18189 0.161362 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0237036 0.0211199 42 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30252 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 17.5 MiB 0.91 746 14106 6043 7637 426 55.9 MiB 0.17 0.00 4.49111 -123.956 -4.49111 4.49111 1.08 0.00103405 0.000941945 0.0893404 0.0819668 38 2858 40 6.95648e+06 217135 678818. 2348.85 9.12 0.349035 0.312976 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.29 0.11 0.24 -1 -1 0.29 0.0421322 0.0379813 68 24 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.3 MiB 0.50 675 10873 4420 6034 419 55.9 MiB 0.13 0.00 2.9573 -100.116 -2.9573 2.9573 1.09 0.00105781 0.000970977 0.0648998 0.059598 46 2093 50 6.95648e+06 303989 828058. 2865.25 3.25 0.335932 0.301032 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.049347 0.0443789 74 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.11 17584 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 17.2 MiB 0.83 795 15383 6700 8206 477 55.9 MiB 0.20 0.00 4.43549 -130.994 -4.43549 4.43549 1.08 0.00111658 0.00102316 0.0987414 0.0905275 48 2092 29 6.95648e+06 275038 865456. 2994.66 3.48 0.347935 0.312381 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.34 0.11 0.34 -1 -1 0.34 0.0486523 0.0437182 72 50 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17240 1 0.02 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 0.86 836 12164 3915 6903 1346 55.8 MiB 0.15 0.00 3.08875 -104.395 -3.08875 3.08875 1.08 0.000967189 0.000886982 0.0787462 0.0722095 38 2054 21 6.95648e+06 144757 678818. 2348.85 2.34 0.28096 0.251642 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0362819 0.0326065 55 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30520 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 17.0 MiB 0.27 486 10916 4488 5855 573 55.6 MiB 0.12 0.00 3.37953 -96.5612 -3.37953 3.37953 1.04 0.00137839 0.00125994 0.0612963 0.0560993 42 1738 31 6.95648e+06 260562 744469. 2576.02 2.37 0.263418 0.234832 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.31 0.08 0.30 -1 -1 0.31 0.0331286 0.0296657 57 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17532 1 0.03 -1 -1 30068 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 17.1 MiB 0.47 447 10796 4457 5651 688 55.6 MiB 0.12 0.00 2.9532 -88.5671 -2.9532 2.9532 1.08 0.000892543 0.00081869 0.0633416 0.0581026 44 1895 36 6.95648e+06 231611 787024. 2723.27 3.32 0.273533 0.243919 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0358295 0.0320273 57 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17084 1 0.03 -1 -1 30340 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.42 490 8754 2672 4372 1710 55.7 MiB 0.10 0.00 3.37459 -106.603 -3.37459 3.37459 1.18 0.000909063 0.000833744 0.0545043 0.0500757 46 1609 38 6.95648e+06 144757 828058. 2865.25 4.17 0.277045 0.246879 28066 200906 -1 1166 19 1064 1493 99508 25826 3.01962 3.01962 -108.184 -3.01962 0 0 1.01997e+06 3529.29 0.33 0.08 0.33 -1 -1 0.33 0.0361631 0.0324893 58 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17548 1 0.03 -1 -1 30184 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 16.8 MiB 0.39 514 10050 3328 4861 1861 55.6 MiB 0.11 0.00 3.16614 -99.0057 -3.16614 3.16614 1.10 0.000945871 0.000866324 0.0519128 0.0472929 44 1932 39 6.95648e+06 275038 787024. 2723.27 3.91 0.276134 0.245959 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0434725 0.0388738 61 30 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30416 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 17.2 MiB 1.29 761 12537 5784 6209 544 55.9 MiB 0.15 0.00 2.98425 -104.866 -2.98425 2.98425 1.10 0.000963475 0.000883062 0.0825643 0.075655 40 1951 35 6.95648e+06 173708 706193. 2443.58 4.39 0.313684 0.280554 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.037253 0.0333799 61 54 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.17 17624 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 17.4 MiB 0.93 827 14593 4666 7411 2516 56.1 MiB 0.18 0.00 4.22723 -122.469 -4.22723 4.22723 1.11 0.000827248 0.000745406 0.0676918 0.0611651 40 2898 29 6.95648e+06 303989 706193. 2443.58 4.41 0.346046 0.309904 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0561488 0.0506201 84 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30292 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 17.4 MiB 1.26 745 13738 4997 6870 1871 56.1 MiB 0.19 0.00 3.2962 -117.206 -3.2962 3.2962 1.08 0.00127022 0.00116298 0.0932746 0.0853882 40 2441 27 6.95648e+06 347416 706193. 2443.58 3.58 0.373388 0.335423 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0555294 0.0500717 82 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.13 17804 1 0.03 -1 -1 30192 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 17.2 MiB 1.84 860 8754 2885 4850 1019 55.9 MiB 0.11 0.00 4.04047 -132.719 -4.04047 4.04047 1.08 0.000958555 0.000879188 0.0568855 0.0522283 40 2120 31 6.95648e+06 159232 706193. 2443.58 2.86 0.272045 0.242826 26914 176310 -1 2014 22 1310 1843 197131 38779 3.56322 3.56322 -132.421 -3.56322 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0415946 0.0372517 63 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30336 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 17.4 MiB 0.92 747 9036 3143 4486 1407 56.0 MiB 0.13 0.00 3.76434 -122.812 -3.76434 3.76434 1.09 0.00120549 0.00110604 0.0678385 0.0623149 38 2983 41 6.95648e+06 231611 678818. 2348.85 4.82 0.363318 0.325771 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0507194 0.0456912 76 61 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.20 17612 1 0.04 -1 -1 30316 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 17.7 MiB 2.18 943 12585 5266 6878 441 56.5 MiB 0.19 0.00 5.54066 -172.627 -5.54066 5.54066 1.11 0.00122755 0.00112555 0.094965 0.0871196 56 2573 26 6.95648e+06 231611 973134. 3367.25 3.28 0.363375 0.326558 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.38 0.16 0.41 -1 -1 0.38 0.055945 0.050434 97 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30496 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 17.3 MiB 2.87 938 15120 6700 8021 399 56.0 MiB 0.21 0.00 4.47954 -148.558 -4.47954 4.47954 1.09 0.00124224 0.00113911 0.114689 0.105192 40 2977 25 6.95648e+06 231611 706193. 2443.58 2.78 0.387038 0.348246 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0506783 0.0457227 88 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 17.4 MiB 1.49 806 12733 4192 6306 2235 56.0 MiB 0.17 0.00 4.14583 -131.471 -4.14583 4.14583 1.09 0.00110207 0.00100238 0.082566 0.0757593 44 2580 41 6.95648e+06 318465 787024. 2723.27 3.49 0.379121 0.340043 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466037 0.0419765 78 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 30332 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 17.2 MiB 1.29 717 8212 2161 5077 974 55.7 MiB 0.12 0.00 4.19005 -113.386 -4.19005 4.19005 1.15 0.00100602 0.000922052 0.0525022 0.0481896 46 1942 38 6.95648e+06 202660 828058. 2865.25 3.93 0.297277 0.265647 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.33 0.09 0.32 -1 -1 0.33 0.0373457 0.0336328 71 27 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18080 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58096 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 17.9 MiB 1.90 969 15017 6294 8197 526 56.7 MiB 0.23 0.00 4.79262 -158.033 -4.79262 4.79262 1.08 0.00147546 0.00135552 0.121182 0.111296 44 3004 31 6.95648e+06 318465 787024. 2723.27 4.11 0.455026 0.409479 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0641283 0.057692 93 87 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30268 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 17.2 MiB 0.78 451 10702 3732 4796 2174 55.7 MiB 0.11 0.00 3.25706 -97.1743 -3.25706 3.25706 1.08 0.000900359 0.000825125 0.0606174 0.0555534 42 1868 35 6.95648e+06 217135 744469. 2576.02 2.37 0.271682 0.242412 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.31 0.12 0.29 -1 -1 0.31 0.0563231 0.0501294 56 28 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30236 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 1.32 1043 13358 5192 6540 1626 56.0 MiB 0.19 0.00 4.83562 -153.036 -4.83562 4.83562 1.08 0.0011437 0.0010497 0.0950767 0.0873513 40 2908 41 6.95648e+06 217135 706193. 2443.58 4.50 0.373495 0.335583 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0443269 0.0400028 84 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30220 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 17.5 MiB 1.03 832 15481 6850 8276 355 56.1 MiB 0.20 0.00 3.22585 -113.908 -3.22585 3.22585 1.09 0.00114903 0.00105319 0.105186 0.0964149 40 2681 28 6.95648e+06 246087 706193. 2443.58 3.95 0.361547 0.324808 26914 176310 -1 2155 23 1599 2614 231061 49102 3.24022 3.24022 -125.665 -3.24022 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0519951 0.0467392 73 53 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17288 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.4 MiB 0.89 692 9712 3251 4487 1974 56.0 MiB 0.12 0.00 4.55274 -121.613 -4.55274 4.55274 1.11 0.00103154 0.000946725 0.0612899 0.0562951 44 2409 26 6.95648e+06 231611 787024. 2723.27 3.55 0.289153 0.259386 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0487288 0.0438197 68 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 17.4 MiB 2.83 796 11532 3820 5366 2346 56.0 MiB 0.16 0.00 4.43423 -134.57 -4.43423 4.43423 1.11 0.00117036 0.00107391 0.0846868 0.0777873 40 2553 40 6.95648e+06 202660 706193. 2443.58 3.47 0.365517 0.327965 26914 176310 -1 2106 22 1511 2049 167648 37819 3.63736 3.63736 -132.097 -3.63736 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.050734 0.0456611 78 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 17.6 MiB 1.84 763 10406 4042 5595 769 56.2 MiB 0.15 0.00 3.235 -115.411 -3.235 3.235 1.10 0.00118377 0.00108507 0.0740253 0.0679148 38 2855 46 6.95648e+06 246087 678818. 2348.85 6.36 0.381098 0.341681 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0478725 0.0431174 75 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 17.6 MiB 1.10 832 13758 4740 6643 2375 56.3 MiB 0.19 0.00 4.17869 -135.166 -4.17869 4.17869 1.09 0.000457344 0.000412858 0.0747404 0.0679011 46 2399 24 6.95648e+06 376368 828058. 2865.25 3.44 0.347153 0.311192 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0582536 0.0524604 83 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30228 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 17.3 MiB 0.97 704 11804 4117 5540 2147 55.8 MiB 0.13 0.00 4.32723 -118.436 -4.32723 4.32723 1.09 0.00105304 0.000965034 0.0686656 0.0630036 42 2228 31 6.95648e+06 318465 744469. 2576.02 2.89 0.313691 0.281181 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0408157 0.0367317 69 24 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 17.5 MiB 2.28 822 10020 3444 5308 1268 56.1 MiB 0.14 0.00 4.15778 -128.101 -4.15778 4.15778 1.09 0.00109783 0.00100682 0.0703296 0.0645567 40 2642 40 6.95648e+06 188184 706193. 2443.58 3.87 0.34213 0.306552 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0516114 0.0464457 79 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.20 17856 1 0.04 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 1.51 847 12030 5014 6584 432 56.2 MiB 0.18 0.00 4.57287 -144.308 -4.57287 4.57287 1.08 0.00121522 0.00111432 0.0919047 0.0841014 46 3239 34 6.95648e+06 217135 828058. 2865.25 6.09 0.37479 0.336328 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0513365 0.0463201 85 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 17.8 MiB 2.36 757 13443 5119 6395 1929 56.5 MiB 0.19 0.00 4.08826 -130.07 -4.08826 4.08826 1.09 0.00125439 0.00114667 0.106488 0.0976398 50 2778 50 6.95648e+06 188184 902133. 3121.57 4.52 0.431311 0.386826 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0706036 0.0634084 76 77 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17408 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 17.0 MiB 0.29 503 12542 4062 6070 2410 55.6 MiB 0.13 0.00 3.14908 -92.6386 -3.14908 3.14908 1.10 0.00088637 0.000812117 0.064573 0.0591332 40 1776 44 6.95648e+06 260562 706193. 2443.58 12.76 0.461719 0.409001 26914 176310 -1 1443 22 1111 1649 176104 46230 2.86757 2.86757 -100.891 -2.86757 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0378286 0.0337741 57 23 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 1.40 674 9676 3990 5312 374 55.9 MiB 0.15 0.00 3.76865 -134.987 -3.76865 3.76865 1.09 0.00110687 0.00101222 0.0642074 0.0586079 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 3.05 0.295053 0.263922 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.41 0.11 0.45 -1 -1 0.41 0.0496703 0.044532 76 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17844 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 17.9 MiB 1.81 1197 6788 1593 4785 410 56.4 MiB 0.13 0.00 4.81732 -154.887 -4.81732 4.81732 1.10 0.00130081 0.00119476 0.0560464 0.0516652 56 2745 25 6.95648e+06 231611 973134. 3367.25 3.39 0.344605 0.310418 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.38 0.14 0.39 -1 -1 0.38 0.0535575 0.0484982 97 31 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 17.6 MiB 1.10 755 11806 4947 6514 345 56.1 MiB 0.16 0.00 4.55181 -144.133 -4.55181 4.55181 1.09 0.00114925 0.00105496 0.0808799 0.0742624 46 2302 50 6.95648e+06 246087 828058. 2865.25 3.43 0.377529 0.338772 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.34 0.12 0.34 -1 -1 0.34 0.0502422 0.0452561 74 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17256 1 0.03 -1 -1 30324 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 17.2 MiB 0.50 536 11296 4661 6055 580 55.9 MiB 0.13 0.00 2.9714 -97.779 -2.9714 2.9714 1.09 0.000952849 0.000872534 0.0630015 0.057697 46 1687 48 6.95648e+06 289514 828058. 2865.25 3.72 0.308167 0.275126 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.34 0.09 0.32 -1 -1 0.34 0.0411006 0.0367651 62 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 2.03 1154 14782 4940 8104 1738 56.5 MiB 0.25 0.00 6.12641 -181.225 -6.12641 6.12641 1.11 0.00141502 0.00129921 0.128282 0.117906 46 2972 48 6.95648e+06 217135 828058. 2865.25 6.30 0.490515 0.441577 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0368575 0.0329855 95 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.17 17800 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 17.7 MiB 1.47 717 11799 3733 5850 2216 56.3 MiB 0.15 0.00 4.62806 -129.887 -4.62806 4.62806 1.09 0.00114264 0.0010465 0.073278 0.0671131 40 2137 23 6.95648e+06 332941 706193. 2443.58 2.87 0.315154 0.282642 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.049413 0.0444819 74 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.9 MiB 0.32 514 10509 3980 5034 1495 55.5 MiB 0.11 0.00 2.96656 -92.2738 -2.96656 2.96656 1.09 0.000839728 0.000770092 0.0569363 0.0522768 44 1513 24 6.95648e+06 188184 787024. 2723.27 2.53 0.243606 0.217028 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.33 0.06 0.32 -1 -1 0.33 0.0280207 0.0251461 51 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30180 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 17.3 MiB 0.59 1076 14908 4738 8798 1372 56.0 MiB 0.20 0.00 4.96917 -138.118 -4.96917 4.96917 1.08 0.00118859 0.00108967 0.0941008 0.0863564 38 3145 48 6.95648e+06 347416 678818. 2348.85 9.35 0.3966 0.35614 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0500354 0.0448764 80 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.16 17084 1 0.03 -1 -1 30068 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 17.2 MiB 0.91 492 11034 4564 6063 407 55.8 MiB 0.12 0.00 2.9972 -99.2597 -2.9972 2.9972 1.08 0.000889359 0.000815228 0.0615557 0.0564612 40 1961 39 6.95648e+06 202660 706193. 2443.58 2.55 0.267168 0.238428 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.32 0.11 0.29 -1 -1 0.32 0.0390808 0.0350407 57 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30300 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 16.9 MiB 0.98 565 8867 3613 4967 287 55.6 MiB 0.11 0.00 3.45473 -106.167 -3.45473 3.45473 1.08 0.000952037 0.000872943 0.0523177 0.0479965 38 1930 30 6.95648e+06 246087 678818. 2348.85 4.20 0.264702 0.236131 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0367562 0.0329526 60 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30384 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 17.6 MiB 1.59 851 11487 4862 6149 476 56.2 MiB 0.17 0.00 3.95502 -124.066 -3.95502 3.95502 1.08 0.00115529 0.00105895 0.0850264 0.0780198 44 2861 40 6.95648e+06 231611 787024. 2723.27 3.89 0.365854 0.328152 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0507129 0.04563 80 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 17.4 MiB 1.30 719 14528 6712 7344 472 56.0 MiB 0.19 0.00 4.55468 -132.882 -4.55468 4.55468 1.09 0.00118145 0.00108321 0.103204 0.094637 44 2547 35 6.95648e+06 231611 787024. 2723.27 2.98 0.377995 0.339662 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.35 0.12 0.29 -1 -1 0.35 0.0536639 0.0482979 72 54 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30040 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 17.5 MiB 1.85 751 11200 4198 5153 1849 56.1 MiB 0.16 0.00 4.43749 -136.856 -4.43749 4.43749 1.09 0.00116637 0.00107008 0.0819913 0.0752454 46 2439 25 6.95648e+06 202660 828058. 2865.25 3.41 0.340414 0.305498 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0494745 0.044589 73 51 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17552 1 0.03 -1 -1 30344 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 17.3 MiB 2.90 640 8909 3664 5023 222 55.8 MiB 0.12 0.00 4.07418 -127.444 -4.07418 4.07418 1.10 0.000948218 0.000868919 0.0574649 0.0527132 40 2228 26 6.95648e+06 144757 706193. 2443.58 3.25 0.264433 0.236213 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.038515 0.0345382 61 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30540 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 17.1 MiB 2.11 607 11925 5002 6435 488 55.8 MiB 0.15 0.00 3.79972 -120.636 -3.79972 3.79972 1.09 0.00104737 0.000959875 0.0819924 0.0751431 48 1984 29 6.95648e+06 173708 865456. 2994.66 2.86 0.312881 0.28 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.35 0.11 0.36 -1 -1 0.35 0.0462916 0.0415618 68 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30460 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 17.5 MiB 0.90 673 11064 3726 5225 2113 56.0 MiB 0.14 0.00 3.0162 -94.6102 -3.0162 3.0162 1.09 0.00108601 0.000994778 0.0686572 0.0629635 38 2318 31 6.95648e+06 318465 678818. 2348.85 4.24 0.31451 0.281569 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.31 0.11 0.27 -1 -1 0.31 0.0474996 0.0425826 71 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17496 1 0.03 -1 -1 30524 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 0.66 661 10813 4387 5735 691 55.9 MiB 0.12 0.00 3.6526 -99.519 -3.6526 3.6526 1.10 0.000958058 0.000877646 0.0562243 0.0515781 42 1918 35 6.95648e+06 405319 744469. 2576.02 3.17 0.284857 0.253828 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0372544 0.0333826 72 27 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30520 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.90 539 10769 4210 5259 1300 56.0 MiB 0.13 0.00 3.44073 -108.225 -3.44073 3.44073 1.10 0.00103694 0.000949481 0.075061 0.0688106 48 1688 34 6.95648e+06 173708 865456. 2994.66 3.14 0.316659 0.283163 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0419016 0.0375633 60 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 17.3 MiB 1.73 645 12715 5333 6940 442 55.9 MiB 0.16 0.00 3.42769 -121.093 -3.42769 3.42769 1.10 0.00108629 0.000994324 0.0905067 0.082957 50 2241 50 6.95648e+06 159232 902133. 3121.57 4.05 0.36932 0.3307 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.35 0.10 0.35 -1 -1 0.35 0.0411326 0.0370325 72 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.13 17120 1 0.03 -1 -1 30388 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.3 MiB 0.43 742 11799 3162 6813 1824 55.8 MiB 0.15 0.00 4.51778 -120.862 -4.51778 4.51778 1.09 0.00103797 0.000951041 0.0670716 0.0616054 38 2757 47 6.95648e+06 347416 678818. 2348.85 6.22 0.329611 0.295313 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.045233 0.0406608 74 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30476 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 17.3 MiB 1.90 848 13606 5964 7217 425 56.0 MiB 0.19 0.00 4.62557 -150.036 -4.62557 4.62557 1.08 0.00117698 0.00107934 0.101642 0.0932917 48 2886 26 6.95648e+06 188184 865456. 2994.66 4.47 0.358922 0.322925 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0498587 0.0449603 82 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 17.3 MiB 1.67 797 15688 5451 7649 2588 56.0 MiB 0.21 0.00 4.33979 -134.933 -4.33979 4.33979 1.09 0.00124795 0.00114332 0.104228 0.0955471 46 2516 45 6.95648e+06 347416 828058. 2865.25 6.33 0.424445 0.381151 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.36 0.13 0.32 -1 -1 0.36 0.0537986 0.0485615 80 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30300 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 17.5 MiB 1.15 866 12951 5370 7312 269 56.1 MiB 0.19 0.00 4.06852 -135.722 -4.06852 4.06852 1.02 0.00125666 0.00115161 0.0889324 0.0815933 46 2675 25 6.95648e+06 332941 828058. 2865.25 4.01 0.361646 0.325031 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590119 0.0531668 80 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 17.0 MiB 0.99 535 10769 4485 5866 418 55.6 MiB 0.13 0.00 3.76076 -107.124 -3.76076 3.76076 1.19 0.00094939 0.000871748 0.0683672 0.0627931 40 1903 31 6.95648e+06 173708 706193. 2443.58 2.64 0.284374 0.254344 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.035741 0.0320169 57 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30420 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 17.4 MiB 0.98 646 9676 4013 5115 548 56.1 MiB 0.14 0.00 4.36203 -132.758 -4.36203 4.36203 1.11 0.00115283 0.00107924 0.0766215 0.0702875 48 2052 23 6.95648e+06 202660 865456. 2994.66 3.24 0.346777 0.311679 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.053888 0.0485189 76 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17516 1 0.03 -1 -1 30300 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 17.4 MiB 1.70 811 10204 3614 5065 1525 56.0 MiB 0.15 0.00 4.885 -145.205 -4.885 4.885 1.09 0.0011462 0.00105137 0.074227 0.068194 48 2507 26 6.95648e+06 202660 865456. 2994.66 4.15 0.327154 0.293712 28354 207349 -1 2034 21 1699 2745 250883 55251 4.29192 4.29192 -147.488 -4.29192 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0482482 0.0435022 80 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30384 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 2.03 840 10509 4398 5789 322 56.0 MiB 0.15 0.00 5.54805 -153.523 -5.54805 5.54805 1.12 0.00113343 0.00103975 0.0765039 0.0702187 40 2695 24 6.95648e+06 202660 706193. 2443.58 4.99 0.32664 0.293133 26914 176310 -1 2048 21 1310 1986 181257 39768 4.92101 4.92101 -156.505 -4.92101 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0475739 0.042824 79 47 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17508 1 0.03 -1 -1 30376 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 17.5 MiB 1.76 981 8543 2209 4916 1418 56.1 MiB 0.12 0.00 4.87546 -153.661 -4.87546 4.87546 1.10 0.00120241 0.00110282 0.0603805 0.0554264 38 2411 22 6.95648e+06 303989 678818. 2348.85 3.83 0.317556 0.284443 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0442546 0.039874 74 83 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 17.4 MiB 1.21 757 8390 3202 4298 890 56.0 MiB 0.13 0.00 4.41913 -136.437 -4.41913 4.41913 1.09 0.00119882 0.00109885 0.0650814 0.0597548 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.95 0.331842 0.297739 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.052834 0.0476342 72 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17636 1 0.04 -1 -1 30392 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 17.3 MiB 1.32 676 7412 2307 3688 1417 56.0 MiB 0.11 0.00 4.03938 -124.354 -4.03938 4.03938 1.08 0.00119631 0.00109615 0.0578445 0.0530584 40 1915 29 6.95648e+06 231611 706193. 2443.58 3.54 0.326431 0.292341 26914 176310 -1 1850 28 1578 2394 351685 123617 3.69672 3.69672 -129.056 -3.69672 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0639463 0.0573829 73 85 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17412 1 0.03 -1 -1 30376 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 17.1 MiB 0.80 565 8134 3323 4613 198 55.6 MiB 0.10 0.00 3.56099 -106.975 -3.56099 3.56099 1.09 0.000883987 0.000811205 0.0489428 0.0449373 38 2071 30 6.95648e+06 144757 678818. 2348.85 3.63 0.249504 0.222903 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0355494 0.0318485 53 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17852 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 17.6 MiB 3.39 780 14679 6171 7995 513 56.2 MiB 0.19 0.00 4.81946 -134.729 -4.81946 4.81946 1.10 0.00121332 0.00111195 0.0965315 0.0884873 52 2232 23 6.95648e+06 332941 926341. 3205.33 3.01 0.35837 0.321984 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.39 0.11 0.38 -1 -1 0.39 0.0550173 0.0495372 76 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17872 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 17.7 MiB 0.86 707 10672 3433 5510 1729 56.3 MiB 0.16 0.00 4.24958 -138.057 -4.24958 4.24958 1.09 0.00129493 0.00118778 0.087663 0.0804307 46 2101 39 6.95648e+06 188184 828058. 2865.25 3.80 0.402387 0.360858 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0523334 0.0472269 78 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17436 1 0.03 -1 -1 30168 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 17.0 MiB 1.50 678 11925 5137 6457 331 55.6 MiB 0.14 0.00 4.05037 -122.042 -4.05037 4.05037 1.09 0.000938878 0.000860386 0.072129 0.0661232 44 1982 25 6.95648e+06 159232 787024. 2723.27 2.43 0.25153 0.224728 27778 195446 -1 1574 22 1167 1476 132878 28622 3.52322 3.52322 -118.138 -3.52322 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0405339 0.0363221 68 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30400 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.8 MiB 1.00 478 11916 5026 6437 453 55.4 MiB 0.13 0.00 3.32523 -101.355 -3.32523 3.32523 1.09 0.000883415 0.000810612 0.0683721 0.0627105 44 1783 23 6.95648e+06 188184 787024. 2723.27 2.61 0.256569 0.229578 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0414969 0.0371061 57 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 17.5 MiB 1.60 850 12416 5241 6727 448 56.2 MiB 0.17 0.00 4.62707 -149.564 -4.62707 4.62707 1.11 0.00117809 0.00108082 0.0903788 0.0829801 46 2722 26 6.95648e+06 217135 828058. 2865.25 4.61 0.356704 0.320713 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.38 0.12 0.30 -1 -1 0.38 0.0502186 0.0452942 85 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 17.5 MiB 1.18 1128 10536 3281 5855 1400 56.1 MiB 0.15 0.00 4.81844 -154.124 -4.81844 4.81844 1.08 0.00116853 0.00107128 0.0774018 0.0709833 38 3024 27 6.95648e+06 202660 678818. 2348.85 5.51 0.342665 0.307099 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.29 0.18 0.27 -1 -1 0.29 0.0626994 0.0563686 82 56 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.15 17392 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.5 MiB 0.43 843 11456 4360 5763 1333 56.2 MiB 0.17 0.00 4.93982 -142.75 -4.93982 4.93982 1.09 0.00121246 0.00111341 0.0832551 0.0765576 46 2871 42 6.95648e+06 246087 828058. 2865.25 4.66 0.297255 0.266845 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0555244 0.0501586 83 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30040 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 17.6 MiB 0.95 630 11063 3050 5652 2361 56.1 MiB 0.14 0.00 3.41127 -97.5363 -3.41127 3.41127 1.11 0.00104576 0.000958059 0.068019 0.0624326 40 1835 26 6.95648e+06 303989 706193. 2443.58 2.62 0.296718 0.265495 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045772 0.0410814 69 52 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30636 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 17.1 MiB 0.46 487 8585 3718 4335 532 55.6 MiB 0.10 0.00 2.94405 -89.6154 -2.94405 2.94405 1.11 0.000876429 0.000803212 0.0519683 0.0476986 38 1494 30 6.95648e+06 202660 678818. 2348.85 2.58 0.246152 0.219112 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0379831 0.0339595 54 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17916 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 17.8 MiB 1.30 1018 15904 6884 8410 610 56.3 MiB 0.26 0.00 3.84665 -134.608 -3.84665 3.84665 1.14 0.00137228 0.00125846 0.131017 0.120335 50 3513 31 6.95648e+06 231611 902133. 3121.57 3.52 0.444971 0.401173 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.35 0.16 0.35 -1 -1 0.35 0.0623723 0.0562811 95 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30380 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 4.90 805 13026 5515 7018 493 55.9 MiB 0.19 0.00 5.43776 -152.039 -5.43776 5.43776 1.10 0.00118843 0.0010893 0.0967088 0.0887055 46 2740 36 6.95648e+06 217135 828058. 2865.25 5.49 0.377782 0.339252 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0545526 0.0491191 82 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30420 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 17.3 MiB 3.68 636 10029 4132 5585 312 55.8 MiB 0.13 0.00 3.67834 -124.027 -3.67834 3.67834 1.09 0.00107495 0.000984172 0.0713454 0.0653909 48 2185 28 6.95648e+06 159232 865456. 2994.66 3.72 0.289851 0.259043 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0417897 0.0375887 70 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17576 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 17.4 MiB 0.37 731 15206 6549 8090 567 55.9 MiB 0.19 0.00 4.25273 -121.678 -4.25273 4.25273 1.09 0.00110853 0.00101627 0.0921259 0.084481 48 2298 32 6.95648e+06 318465 865456. 2994.66 3.26 0.346878 0.311504 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0481356 0.0433031 74 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17700 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 0.99 751 14323 4212 7223 2888 56.1 MiB 0.18 0.00 4.42633 -128.985 -4.42633 4.42633 1.09 0.0012272 0.00112503 0.0938174 0.0860768 40 2622 38 6.95648e+06 361892 706193. 2443.58 3.93 0.38717 0.34791 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0518558 0.0467437 83 50 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30376 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 17.3 MiB 1.05 713 11034 4424 5642 968 55.8 MiB 0.14 0.00 3.35027 -102.373 -3.35027 3.35027 1.08 0.00107221 0.000982327 0.0745116 0.0683051 38 2733 50 6.95648e+06 231611 678818. 2348.85 6.13 0.367384 0.328765 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0487982 0.0437944 68 51 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17840 1 0.03 -1 -1 30472 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 17.6 MiB 1.56 907 11200 3286 6600 1314 56.2 MiB 0.17 0.00 4.64467 -151.435 -4.64467 4.64467 1.14 0.00118194 0.00108473 0.0832924 0.0765315 48 2706 42 6.95648e+06 202660 865456. 2994.66 4.93 0.372139 0.334416 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0544481 0.0491308 88 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 17.4 MiB 1.11 748 12542 5225 6709 608 56.1 MiB 0.17 0.00 4.47033 -145.191 -4.47033 4.47033 1.08 0.00125507 0.00115038 0.0920551 0.0844718 48 2531 41 6.95648e+06 260562 865456. 2994.66 3.80 0.393564 0.353799 28354 207349 -1 1938 24 1584 2112 216788 50249 4.07261 4.07261 -144.703 -4.07261 0 0 1.05005e+06 3633.38 0.36 0.14 0.35 -1 -1 0.36 0.0594679 0.0536043 80 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30284 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 17.1 MiB 3.98 466 10105 4186 5463 456 55.6 MiB 0.12 0.00 3.92822 -103.3 -3.92822 3.92822 0.95 0.000919452 0.000842416 0.0640136 0.0587391 36 1523 22 6.95648e+06 173708 648988. 2245.63 2.69 0.264377 0.23607 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.28 0.07 0.25 -1 -1 0.28 0.0298825 0.02687 53 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30364 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 17.1 MiB 1.19 606 9397 3361 4720 1316 55.8 MiB 0.12 0.00 3.68935 -126.523 -3.68935 3.68935 1.09 0.00101991 0.000933583 0.0636679 0.0583474 42 2317 35 6.95648e+06 159232 744469. 2576.02 2.99 0.301012 0.268162 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.32 0.10 0.30 -1 -1 0.32 0.0431345 0.038727 64 58 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17796 1 0.03 -1 -1 30368 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 17.3 MiB 0.91 743 11993 4026 5805 2162 55.8 MiB 0.16 0.00 4.14331 -121.523 -4.14331 4.14331 1.11 0.00111068 0.00101794 0.0742917 0.0682447 44 2597 32 6.95648e+06 332941 787024. 2723.27 3.96 0.328772 0.294755 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.34 0.10 0.31 -1 -1 0.34 0.0467542 0.0420978 77 33 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17264 1 0.03 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 17.0 MiB 1.49 616 10459 4329 5659 471 55.7 MiB 0.13 0.00 4.04737 -116.055 -4.04737 4.04737 1.09 0.000905324 0.000830727 0.0637632 0.0585107 42 2143 50 6.95648e+06 188184 744469. 2576.02 2.48 0.295414 0.263425 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0394326 0.0352998 67 31 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29984 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 16.9 MiB 1.46 561 11321 4813 6209 299 55.5 MiB 0.11 0.00 3.85356 -111.135 -3.85356 3.85356 1.05 0.000955912 0.000876077 0.0505085 0.0461373 40 1771 25 6.95648e+06 130281 706193. 2443.58 2.36 0.262839 0.234375 26914 176310 -1 1463 37 1552 2418 363039 142367 3.13687 3.13687 -111.746 -3.13687 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0644517 0.0574254 56 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30108 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 17.5 MiB 1.21 696 13719 4819 6392 2508 56.1 MiB 0.18 0.00 3.46983 -115.227 -3.46983 3.46983 1.10 0.00137426 0.00127119 0.0905152 0.0830154 44 2085 27 6.95648e+06 347416 787024. 2723.27 2.45 0.362565 0.325758 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0557661 0.050212 79 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30368 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 17.1 MiB 2.46 587 9081 3433 3891 1757 55.7 MiB 0.11 0.00 3.99537 -118.981 -3.99537 3.99537 1.08 0.000909838 0.000833664 0.0549144 0.0503463 44 2307 34 6.95648e+06 173708 787024. 2723.27 2.99 0.264166 0.235603 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.038077 0.0340616 64 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17592 1 0.03 -1 -1 30008 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 17.6 MiB 1.66 827 13505 5541 6681 1283 56.2 MiB 0.17 0.00 3.208 -113.036 -3.208 3.208 1.11 0.00114929 0.00105192 0.0854299 0.0783253 40 2180 23 6.95648e+06 318465 706193. 2443.58 3.14 0.329238 0.295539 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0503471 0.0452339 71 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30436 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 17.6 MiB 2.27 717 9706 3985 5340 381 56.2 MiB 0.14 0.00 3.995 -134.818 -3.995 3.995 1.09 0.00125359 0.00114777 0.076794 0.0703888 40 2180 49 6.95648e+06 217135 706193. 2443.58 3.39 0.403073 0.360898 26914 176310 -1 1785 21 1473 1992 159433 36664 3.82681 3.82681 -135.82 -3.82681 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0517146 0.0465312 73 91 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 1.29 546 10149 3579 4930 1640 55.8 MiB 0.13 0.00 2.9023 -96.8242 -2.9023 2.9023 1.10 0.00100016 0.00091422 0.0686568 0.0628641 46 1638 37 6.95648e+06 144757 828058. 2865.25 3.26 0.302543 0.270103 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.38 0.11 0.32 -1 -1 0.38 0.0394728 0.0347581 57 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17408 1 0.03 -1 -1 30424 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 17.2 MiB 1.42 688 11293 4712 6328 253 55.7 MiB 0.15 0.00 4.09973 -130.941 -4.09973 4.09973 1.08 0.000999036 0.000914508 0.0750596 0.0688391 46 2135 28 6.95648e+06 159232 828058. 2865.25 3.13 0.296164 0.265055 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0449834 0.0403061 70 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.17 17864 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 17.4 MiB 2.08 759 11034 4566 6063 405 56.0 MiB 0.15 0.00 4.18668 -129.57 -4.18668 4.18668 1.09 0.000964582 0.000873964 0.0748996 0.0687178 40 2605 27 6.95648e+06 202660 706193. 2443.58 4.44 0.318767 0.285771 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.33 0.18 0.26 -1 -1 0.33 0.0586306 0.0526466 79 30 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30208 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 17.5 MiB 1.27 716 10228 3612 4706 1910 56.0 MiB 0.13 0.00 4.16289 -113.847 -4.16289 4.16289 1.07 0.00107047 0.000980464 0.0646694 0.0593065 40 2239 28 6.95648e+06 303989 706193. 2443.58 3.01 0.304277 0.272348 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.30 0.11 0.26 -1 -1 0.30 0.0461976 0.0415766 71 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.21 17608 1 0.03 -1 -1 30388 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 17.7 MiB 1.49 846 13524 5903 7163 458 56.3 MiB 0.19 0.00 4.885 -157.826 -4.885 4.885 1.08 0.00127097 0.0011646 0.107309 0.0984621 56 2698 26 6.95648e+06 202660 973134. 3367.25 3.58 0.389281 0.350307 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.39 0.17 0.41 -1 -1 0.39 0.060377 0.0544023 89 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17104 1 0.02 -1 -1 30372 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 17.0 MiB 1.31 501 12076 4244 5318 2514 55.5 MiB 0.13 0.00 3.74884 -94.0057 -3.74884 3.74884 1.10 0.000833253 0.000764491 0.0658305 0.0604026 40 1910 34 6.95648e+06 188184 706193. 2443.58 2.89 0.261615 0.233375 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0351343 0.0313908 54 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 17.4 MiB 1.27 1008 14543 5389 7197 1957 56.1 MiB 0.20 0.00 3.70954 -138.278 -3.70954 3.70954 1.10 0.00130489 0.00119261 0.100288 0.091719 40 2412 20 6.95648e+06 361892 706193. 2443.58 3.48 0.367796 0.330629 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0499773 0.0451086 81 90 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 2.99 599 11389 4446 5401 1542 56.0 MiB 0.16 0.00 2.96105 -112.244 -2.96105 2.96105 1.10 0.00119149 0.00109045 0.0908164 0.0831828 38 1957 49 6.95648e+06 144757 678818. 2348.85 4.38 0.400802 0.358812 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0495094 0.044469 61 96 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 17.4 MiB 1.40 728 11993 4280 5583 2130 56.0 MiB 0.16 0.00 4.11943 -125.672 -4.11943 4.11943 1.11 0.00118551 0.00108614 0.0784337 0.0719637 44 2660 42 6.95648e+06 318465 787024. 2723.27 3.26 0.379425 0.340311 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0530541 0.0477175 75 60 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17632 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 1.89 1133 13599 5570 7048 981 56.2 MiB 0.22 0.00 6.01533 -177.28 -6.01533 6.01533 1.09 0.00133345 0.00122485 0.111045 0.102039 46 3137 40 6.95648e+06 217135 828058. 2865.25 6.65 0.427603 0.385023 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0584248 0.052825 95 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17644 1 0.02 -1 -1 30308 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 16.8 MiB 2.31 506 10409 4642 5419 348 55.5 MiB 0.11 0.00 2.68965 -94.6691 -2.68965 2.68965 1.08 0.000772212 0.000706239 0.0551067 0.0504455 38 1556 24 6.95648e+06 159232 678818. 2348.85 2.63 0.222396 0.197806 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.34 0.07 0.27 -1 -1 0.34 0.0300919 0.0268673 52 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30288 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 17.1 MiB 1.31 453 9649 4016 5181 452 55.7 MiB 0.12 0.00 3.70034 -111.62 -3.70034 3.70034 1.09 0.000974133 0.000892603 0.064559 0.0592084 46 1640 50 6.95648e+06 159232 828058. 2865.25 3.47 0.320463 0.286279 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0393906 0.0352997 54 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17380 1 0.03 -1 -1 30228 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 16.9 MiB 0.45 657 10304 4396 5657 251 55.7 MiB 0.13 0.00 3.0756 -108.291 -3.0756 3.0756 1.08 0.00100661 0.000922687 0.0696589 0.0638873 48 2011 23 6.95648e+06 144757 865456. 2994.66 3.54 0.285065 0.255035 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.35 0.12 0.34 -1 -1 0.35 0.0462545 0.0414312 59 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17428 1 0.03 -1 -1 30176 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 17.0 MiB 0.45 433 7975 3255 4078 642 55.5 MiB 0.08 0.00 3.29759 -76.2304 -3.29759 3.29759 1.13 0.000753625 0.000689958 0.0395875 0.0362594 38 1530 37 6.95648e+06 260562 678818. 2348.85 3.04 0.217404 0.192931 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0336915 0.0300313 53 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30436 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 17.5 MiB 1.82 736 10796 3697 5176 1923 56.0 MiB 0.16 0.00 3.75962 -125.032 -3.75962 3.75962 1.01 0.0012117 0.00110948 0.0854433 0.0783007 46 3469 47 6.95648e+06 173708 828058. 2865.25 8.41 0.398627 0.357097 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0617987 0.0555502 73 72 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30268 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 17.6 MiB 1.28 761 10744 4472 5806 466 56.2 MiB 0.16 0.00 4.07648 -139.886 -4.07648 4.07648 1.14 0.00129514 0.00118517 0.0843506 0.0773215 40 2524 30 6.95648e+06 246087 706193. 2443.58 4.26 0.380393 0.341417 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.06087 0.0548349 80 90 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 820 12416 4576 5562 2278 55.8 MiB 0.17 0.00 5.01635 -146.768 -5.01635 5.01635 1.09 0.00116874 0.00107166 0.0893847 0.0819985 46 2906 37 6.99608e+06 220735 828058. 2865.25 5.17 0.375269 0.336895 28066 200906 -1 1988 21 1560 2181 170932 41761 4.40451 4.40451 -147.033 -4.40451 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0495774 0.0446773 88 50 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30312 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 1.32 962 11233 3707 5934 1592 55.8 MiB 0.18 0.00 5.03284 -151.156 -5.03284 5.03284 1.08 0.00119035 0.00109136 0.0840458 0.0771552 48 2930 36 6.99608e+06 250167 865456. 2994.66 4.23 0.371377 0.33346 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0500101 0.045115 99 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.10 17908 1 0.03 -1 -1 30280 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 17.4 MiB 0.72 839 12196 5162 6681 353 55.8 MiB 0.15 0.00 3.55379 -113.123 -3.55379 3.55379 1.09 0.00102541 0.000940676 0.0783886 0.0718986 42 2585 35 6.99608e+06 206020 744469. 2576.02 3.52 0.321558 0.287606 27202 183097 -1 1882 23 1419 1986 154978 35763 3.65286 3.65286 -116.181 -3.65286 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0461369 0.0413714 76 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30280 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 17.2 MiB 1.19 700 12302 4830 6041 1431 55.6 MiB 0.16 0.00 4.05128 -116.185 -4.05128 4.05128 1.11 0.00105042 0.000963429 0.0823621 0.075584 44 2703 50 6.99608e+06 235451 787024. 2723.27 3.28 0.358573 0.320864 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.29 0.05 0.17 -1 -1 0.29 0.0191014 0.017026 78 31 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 903 10204 4241 5732 231 55.8 MiB 0.15 0.00 4.44731 -141.413 -4.44731 4.44731 1.11 0.00114741 0.0010527 0.0740626 0.0680264 40 3203 32 6.99608e+06 206020 706193. 2443.58 5.31 0.333689 0.299309 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0569935 0.0512208 81 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17936 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 17.4 MiB 2.68 903 12506 4545 6575 1386 56.2 MiB 0.18 0.00 3.38924 -119.322 -3.38924 3.38924 1.10 0.00121274 0.00111211 0.0901919 0.0827309 50 2568 40 6.99608e+06 250167 902133. 3121.57 4.03 0.384621 0.34519 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0472071 0.0426398 97 58 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30588 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 1.38 527 10769 4406 5481 882 55.4 MiB 0.13 0.00 3.89582 -110.808 -3.89582 3.89582 1.12 0.000891094 0.000817424 0.0640821 0.0587866 36 2292 38 6.99608e+06 220735 648988. 2245.63 4.63 0.281518 0.250891 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0370772 0.0331809 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30240 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.9 MiB 0.33 664 11203 3028 6067 2108 55.5 MiB 0.13 0.00 2.75465 -88.1636 -2.75465 2.75465 1.11 0.000966959 0.000886878 0.0586947 0.0538701 40 2155 26 6.99608e+06 367892 706193. 2443.58 3.38 0.265321 0.237213 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0388002 0.0347929 69 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30200 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 17.0 MiB 0.95 886 12302 5141 6872 289 55.6 MiB 0.16 0.00 3.35914 -124.887 -3.35914 3.35914 0.98 0.00103421 0.000947269 0.0810853 0.0742738 38 2606 25 6.99608e+06 206020 678818. 2348.85 5.03 0.311476 0.278693 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0500686 0.0448288 87 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30080 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 17.3 MiB 0.84 886 11650 3739 6142 1769 55.7 MiB 0.15 0.00 3.93292 -137.573 -3.93292 3.93292 1.09 0.00101657 0.000932692 0.0753531 0.0691511 40 2221 25 6.99608e+06 191304 706193. 2443.58 2.88 0.299312 0.268276 26914 176310 -1 1877 19 1373 1734 139655 29281 3.35756 3.35756 -128.359 -3.35756 0 0 926341. 3205.33 0.32 0.11 0.28 -1 -1 0.32 0.0445834 0.0403521 75 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17872 1 0.04 -1 -1 30364 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 17.5 MiB 0.62 675 11436 3956 5372 2108 56.0 MiB 0.14 0.00 3.86033 -123.728 -3.86033 3.86033 1.05 0.000992876 0.000909068 0.0739712 0.0677952 44 2557 34 6.99608e+06 206020 787024. 2723.27 3.19 0.286218 0.255536 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0450886 0.040335 83 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30076 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 17.0 MiB 0.67 784 8133 1910 6031 192 55.6 MiB 0.11 0.00 3.27288 -116.653 -3.27288 3.27288 1.09 0.000944101 0.000865525 0.0513454 0.0471193 38 2394 39 6.99608e+06 161872 678818. 2348.85 4.16 0.283576 0.252822 26626 170182 -1 1832 20 1203 1524 136412 27823 2.83937 2.83937 -113.586 -2.83937 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0381472 0.0341717 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 822 13937 5978 7482 477 55.8 MiB 0.20 0.00 3.95082 -133.749 -3.95082 3.95082 1.08 0.00115936 0.00106343 0.0989244 0.0908145 44 2826 40 6.99608e+06 220735 787024. 2723.27 3.30 0.384786 0.345725 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0511402 0.0461001 87 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 17.4 MiB 1.39 975 9706 2651 5494 1561 56.2 MiB 0.16 0.00 4.79397 -141.28 -4.79397 4.79397 1.09 0.00119637 0.00109755 0.0700813 0.0643681 40 3303 38 6.99608e+06 250167 706193. 2443.58 6.45 0.363303 0.325871 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0543763 0.0489406 97 61 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17400 1 0.02 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 16.8 MiB 2.53 630 8909 3655 4893 361 55.3 MiB 0.11 0.00 3.0564 -89.3526 -3.0564 3.0564 1.11 0.000862903 0.000790835 0.0534227 0.0489963 38 2055 28 6.99608e+06 191304 678818. 2348.85 3.40 0.246751 0.219611 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0346589 0.0310076 64 27 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 17.5 MiB 1.31 999 13840 5885 7630 325 56.1 MiB 0.20 0.00 3.63599 -124.523 -3.63599 3.63599 1.01 0.00121015 0.00110823 0.100624 0.0922221 42 3382 43 6.99608e+06 235451 744469. 2576.02 3.42 0.402264 0.361057 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.31 0.13 0.29 -1 -1 0.31 0.0523362 0.047154 96 58 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30232 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 17.3 MiB 0.75 791 13092 5076 6583 1433 55.9 MiB 0.18 0.00 4.34151 -134.806 -4.34151 4.34151 1.13 0.0011392 0.00104466 0.0916082 0.0841119 46 2501 32 6.99608e+06 220735 828058. 2865.25 3.88 0.35918 0.322505 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0423246 0.0381811 84 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 17.3 MiB 0.78 778 13261 3730 7601 1930 55.9 MiB 0.18 0.00 3.17504 -117.557 -3.17504 3.17504 1.18 0.00105468 0.00096568 0.0860526 0.0789544 50 2131 33 6.99608e+06 220735 902133. 3121.57 4.01 0.332075 0.29728 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.41 0.11 0.37 -1 -1 0.41 0.0453674 0.0407795 89 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.19 17408 1 0.02 -1 -1 30264 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 16.6 MiB 1.55 513 10949 4743 5895 311 55.2 MiB 0.11 0.00 2.33546 -88.3817 -2.33546 2.33546 1.09 0.000767063 0.000701638 0.0585085 0.0535523 40 1324 27 6.99608e+06 147157 706193. 2443.58 2.11 0.225516 0.200701 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.0346807 0.0308741 52 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17720 1 0.03 -1 -1 30356 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 17.1 MiB 1.97 843 8236 2227 5366 643 55.8 MiB 0.11 0.00 3.78247 -126.288 -3.78247 3.78247 1.08 0.000995929 0.000912087 0.0537636 0.0493085 38 2536 29 6.99608e+06 191304 678818. 2348.85 3.48 0.280087 0.250324 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0193745 0.0172233 72 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 17.3 MiB 1.29 802 15273 5455 7440 2378 55.8 MiB 0.20 0.00 3.98218 -132.203 -3.98218 3.98218 1.09 0.00115653 0.00105794 0.101521 0.0930889 44 2430 42 6.99608e+06 294314 787024. 2723.27 2.88 0.385563 0.346159 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0508699 0.04574 88 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30240 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 17.2 MiB 2.11 1225 15044 5236 8229 1579 55.9 MiB 0.22 0.00 4.6726 -146.803 -4.6726 4.6726 1.09 0.00121437 0.00111336 0.109981 0.100943 40 3256 42 6.99608e+06 235451 706193. 2443.58 6.70 0.407575 0.366227 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0533984 0.0481184 100 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.16 17608 1 0.02 -1 -1 30688 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 16.7 MiB 1.81 422 8539 3493 4523 523 55.3 MiB 0.09 0.00 2.7298 -77.3475 -2.7298 2.7298 1.09 0.000656141 0.000599667 0.0408472 0.0373821 38 1230 26 6.99608e+06 191304 678818. 2348.85 2.13 0.184104 0.16329 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0235006 0.02101 53 30 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30260 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 16.9 MiB 0.85 692 10050 3569 4878 1603 55.6 MiB 0.14 0.00 4.56174 -113.848 -4.56174 4.56174 1.18 0.00100624 0.000922884 0.0639242 0.058781 40 2097 25 6.99608e+06 220735 706193. 2443.58 3.02 0.286842 0.25746 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0456952 0.0410127 66 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.09 16932 1 0.03 -1 -1 30160 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.4 MiB 0.20 399 10055 4241 5582 232 54.9 MiB 0.09 0.00 2.06111 -67.7592 -2.06111 2.06111 1.08 0.000634934 0.000579192 0.0446507 0.0407579 36 1381 35 6.99608e+06 117725 648988. 2245.63 2.47 0.195011 0.172512 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.28 0.05 0.22 -1 -1 0.28 0.0236036 0.0210377 42 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17564 1 0.03 -1 -1 30172 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 17.0 MiB 1.10 805 13358 5696 7249 413 55.6 MiB 0.17 0.00 4.47086 -121.677 -4.47086 4.47086 1.08 0.00103395 0.000948559 0.0861858 0.0790514 38 2634 33 6.99608e+06 206020 678818. 2348.85 4.38 0.325438 0.29176 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.29 0.09 0.22 -1 -1 0.29 0.0385598 0.0347121 73 24 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.08 17060 1 0.04 -1 -1 30580 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.1 MiB 0.46 715 11617 3653 5870 2094 55.8 MiB 0.15 0.00 2.89821 -97.4108 -2.89821 2.89821 1.08 0.00104907 0.000963546 0.0686035 0.0630324 40 2334 43 6.99608e+06 309029 706193. 2443.58 3.24 0.327181 0.29323 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045317 0.0407505 74 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30240 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 17.4 MiB 1.45 800 6839 1729 4140 970 56.0 MiB 0.11 0.00 4.20669 -125.419 -4.20669 4.20669 1.09 0.00112839 0.00103503 0.0489158 0.0449162 46 2866 37 6.99608e+06 220735 828058. 2865.25 6.37 0.315661 0.282182 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590646 0.053085 87 50 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30240 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 17.1 MiB 2.15 688 11116 4644 6232 240 55.7 MiB 0.13 0.00 3.13575 -107.33 -3.13575 3.13575 1.09 0.000968622 0.00088708 0.0700065 0.0641887 40 2069 25 6.99608e+06 176588 706193. 2443.58 2.38 0.279098 0.249439 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.038049 0.0340981 69 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30148 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 16.7 MiB 1.29 579 8876 3271 4297 1308 55.4 MiB 0.10 0.00 3.70857 -107.816 -3.70857 3.70857 1.08 0.000900638 0.000825327 0.0524497 0.0480736 46 2274 40 6.99608e+06 206020 828058. 2865.25 4.83 0.278434 0.247977 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0333422 0.0298833 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 17.1 MiB 0.77 581 9540 3893 5214 433 55.7 MiB 0.12 0.00 3.25804 -101.918 -3.25804 3.25804 0.97 0.000898651 0.000822994 0.0545981 0.050083 40 1989 36 6.99608e+06 264882 706193. 2443.58 3.20 0.271878 0.242283 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0375429 0.0335645 69 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.12 17196 1 0.03 -1 -1 30416 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.1 MiB 0.35 677 11234 4696 6284 254 55.5 MiB 0.13 0.00 3.31833 -109.934 -3.31833 3.31833 1.09 0.00090616 0.000830501 0.0675607 0.0619478 38 2069 49 6.99608e+06 147157 678818. 2348.85 3.46 0.298149 0.266498 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0396016 0.0354334 58 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.17 17640 1 0.02 -1 -1 30160 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 17.0 MiB 0.84 656 7596 1857 5260 479 55.6 MiB 0.10 0.00 3.30918 -105.476 -3.30918 3.30918 1.11 0.00093345 0.000855632 0.0471981 0.0433134 36 2831 44 6.99608e+06 191304 648988. 2245.63 6.73 0.286798 0.255476 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0402396 0.0360169 69 30 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17500 1 0.03 -1 -1 30368 -1 -1 15 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 17.1 MiB 2.30 919 9036 2362 6094 580 55.5 MiB 0.12 0.00 2.93125 -106.214 -2.93125 2.93125 1.12 0.000971264 0.00089046 0.0573227 0.052576 38 2275 29 6.99608e+06 220735 678818. 2348.85 3.32 0.276748 0.246972 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0391056 0.0350672 77 54 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30436 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 1.12 980 13324 5630 7408 286 55.9 MiB 0.20 0.00 4.30703 -125.875 -4.30703 4.30703 1.11 0.00126727 0.00116613 0.102051 0.0938897 48 2769 27 6.99608e+06 235451 865456. 2994.66 3.52 0.38569 0.347942 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.35 0.13 0.35 -1 -1 0.35 0.0529057 0.0477849 92 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30224 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 17.7 MiB 1.43 1014 12683 4657 5804 2222 56.2 MiB 0.20 0.00 4.21676 -146.737 -4.21676 4.21676 1.08 0.00126951 0.00116301 0.0929641 0.0852688 40 3377 27 6.99608e+06 279598 706193. 2443.58 4.94 0.38451 0.34573 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.064636 0.0582408 106 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30088 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 16.7 MiB 1.17 880 9374 3265 4936 1173 55.4 MiB 0.12 0.00 3.62727 -120.557 -3.62727 3.62727 1.09 0.000952014 0.000872331 0.0602836 0.0553176 38 2274 42 6.99608e+06 161872 678818. 2348.85 3.26 0.293467 0.262042 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0400129 0.0358442 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30556 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 17.3 MiB 1.48 969 14528 6235 7667 626 56.0 MiB 0.21 0.00 3.54759 -121.928 -3.54759 3.54759 1.10 0.00120949 0.00111002 0.105977 0.0971821 44 3091 40 6.99608e+06 250167 787024. 2723.27 4.01 0.398127 0.357628 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0562695 0.0507761 99 61 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30392 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 17.6 MiB 1.49 989 9196 3129 4406 1661 56.2 MiB 0.15 0.00 5.24281 -163.942 -5.24281 5.24281 1.10 0.00123061 0.00112598 0.0699073 0.0641599 46 3107 34 6.99608e+06 250167 828058. 2865.25 5.20 0.361576 0.324569 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0581667 0.0523891 104 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 17.8 MiB 2.95 930 9881 4037 5524 320 56.2 MiB 0.16 0.00 5.08213 -159.731 -5.08213 5.08213 1.11 0.00124533 0.00114165 0.0743497 0.0682635 44 3191 49 6.99608e+06 264882 787024. 2723.27 4.39 0.400266 0.359057 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.054301 0.0489417 103 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30400 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 17.5 MiB 1.87 879 13768 5339 6393 2036 56.1 MiB 0.19 0.00 3.89582 -126.245 -3.89582 3.89582 1.09 0.00116363 0.00106779 0.097574 0.0895015 48 2742 24 6.99608e+06 235451 865456. 2994.66 3.61 0.360141 0.323779 28354 207349 -1 2238 24 1769 2292 241247 52052 3.50102 3.50102 -127.38 -3.50102 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0549586 0.0494918 93 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17288 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 16.9 MiB 0.96 818 11864 4957 6528 379 55.6 MiB 0.15 0.00 3.99218 -112.33 -3.99218 3.99218 1.09 0.00100284 0.000919504 0.0744651 0.0683375 40 2655 45 6.99608e+06 206020 706193. 2443.58 4.61 0.334533 0.299129 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.33 0.12 0.28 -1 -1 0.33 0.0442328 0.0397214 72 27 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18176 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 18.1 MiB 1.28 1337 8083 1871 5905 307 56.4 MiB 0.17 0.00 5.02 -170.696 -5.02 5.02 1.10 0.00147197 0.00134948 0.0684711 0.0629272 50 3572 29 6.99608e+06 309029 902133. 3121.57 3.49 0.402616 0.361669 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.37 0.16 0.36 -1 -1 0.37 0.0589189 0.0533183 129 87 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30188 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 16.9 MiB 2.79 589 8599 2844 4344 1411 55.4 MiB 0.10 0.00 3.01 -97.4254 -3.01 3.01 1.10 0.000898885 0.000823275 0.0525554 0.0481861 40 1560 21 6.99608e+06 161872 706193. 2443.58 2.67 0.243312 0.216867 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0394468 0.0352892 65 28 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30104 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 17.4 MiB 0.68 792 13524 5096 6588 1840 55.9 MiB 0.18 0.00 4.60267 -142.66 -4.60267 4.60267 1.08 0.00113429 0.00104082 0.0957584 0.0878898 52 2817 39 6.99608e+06 220735 926341. 3205.33 3.68 0.368232 0.330874 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0474881 0.0426995 85 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30212 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.28 1020 12416 4555 6119 1742 55.8 MiB 0.19 0.00 3.83208 -127.177 -3.83208 3.83208 1.08 0.00115347 0.00105825 0.0882807 0.080984 42 3450 36 6.99608e+06 220735 744469. 2576.02 3.76 0.361526 0.324612 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0445603 0.0401272 91 53 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.1 MiB 0.79 673 10228 2970 5232 2026 55.8 MiB 0.13 0.00 4.31309 -118.378 -4.31309 4.31309 1.11 0.00103263 0.000945688 0.0646994 0.0593547 40 2459 37 6.99608e+06 235451 706193. 2443.58 4.59 0.316072 0.283014 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0465719 0.0418284 68 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 17.4 MiB 1.25 915 11571 4863 6343 365 56.0 MiB 0.17 0.00 4.31005 -133.816 -4.31005 4.31005 1.12 0.00117065 0.00107413 0.0833371 0.076458 40 2850 30 6.99608e+06 220735 706193. 2443.58 3.73 0.348914 0.313136 26914 176310 -1 2174 25 1722 2282 317601 125270 3.58916 3.58916 -127.554 -3.58916 0 0 926341. 3205.33 0.27 0.10 0.15 -1 -1 0.27 0.0242714 0.0216238 90 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30356 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1099 13430 4920 6010 2500 55.8 MiB 0.19 0.00 3.65969 -129.38 -3.65969 3.65969 1.08 0.00119077 0.00109183 0.0980635 0.0899782 40 2995 22 6.99608e+06 220735 706193. 2443.58 3.90 0.361533 0.325046 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.30 0.34 0.28 -1 -1 0.30 0.0925555 0.0829523 92 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 17.6 MiB 2.17 1101 15216 5672 7066 2478 56.2 MiB 0.22 0.00 3.74401 -128.073 -3.74401 3.74401 1.08 0.00124125 0.00113795 0.114521 0.10502 38 3558 41 6.99608e+06 235451 678818. 2348.85 6.14 0.43815 0.393693 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0461544 0.041674 101 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17568 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 17.1 MiB 0.78 743 11034 4121 5253 1660 55.5 MiB 0.07 0.00 4.35583 -118.93 -4.35583 4.35583 0.74 0.000391567 0.000353726 0.0279571 0.025339 40 2999 39 6.99608e+06 206020 706193. 2443.58 3.79 0.220861 0.195956 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0478928 0.043031 74 24 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 17.1 MiB 1.75 793 9042 2962 4450 1630 55.7 MiB 0.12 0.00 4.21168 -126.242 -4.21168 4.21168 1.09 0.00108983 0.00100023 0.0632309 0.0580535 42 3421 45 6.99608e+06 191304 744469. 2576.02 3.21 0.338366 0.303031 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.27 0.06 0.15 -1 -1 0.27 0.0195276 0.0174397 81 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30356 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 17.4 MiB 0.90 950 10726 4120 5384 1222 56.1 MiB 0.16 0.00 4.31211 -136.261 -4.31211 4.31211 1.09 0.00121362 0.00111291 0.0804401 0.0737893 48 3520 36 6.99608e+06 235451 865456. 2994.66 5.83 0.375288 0.33705 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0828325 0.0742838 99 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 17.7 MiB 1.01 977 12980 5460 6998 522 56.2 MiB 0.21 0.00 3.94476 -129.858 -3.94476 3.94476 1.09 0.00124987 0.00114117 0.106732 0.097806 54 3499 42 6.99608e+06 235451 949917. 3286.91 4.59 0.411103 0.36916 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.38 0.15 0.39 -1 -1 0.38 0.0546679 0.0493078 104 77 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30012 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 0.61 645 10769 4489 5977 303 55.2 MiB 0.11 0.00 3.21628 -99.3334 -3.21628 3.21628 1.07 0.000538873 0.000484347 0.0570639 0.0521292 38 1991 25 6.99608e+06 147157 678818. 2348.85 3.46 0.256381 0.228311 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0366281 0.0327473 60 23 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17696 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 17.2 MiB 0.83 827 10726 4440 5997 289 55.8 MiB 0.15 0.00 4.06528 -146.791 -4.06528 4.06528 1.08 0.00111555 0.00102283 0.0739167 0.0678225 46 2656 31 6.99608e+06 220735 828058. 2865.25 3.65 0.327663 0.293158 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0446152 0.0400859 93 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 17.5 MiB 0.99 950 12808 5316 6896 596 56.2 MiB 0.19 0.00 4.80548 -149.393 -4.80548 4.80548 1.08 0.00129994 0.0011944 0.100511 0.0923199 50 3454 27 6.99608e+06 235451 902133. 3121.57 4.94 0.399299 0.359396 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.35 0.21 0.36 -1 -1 0.35 0.0736703 0.0664168 98 31 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 17.5 MiB 0.62 849 13599 4722 6429 2448 56.1 MiB 0.19 0.00 4.35389 -139.539 -4.35389 4.35389 1.10 0.0011492 0.00105445 0.0942326 0.0864396 38 2795 34 6.99608e+06 220735 678818. 2348.85 4.94 0.35892 0.322293 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0506264 0.0455936 85 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30268 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 16.8 MiB 1.23 640 11474 4735 6197 542 55.5 MiB 0.13 0.00 3.65345 -112.727 -3.65345 3.65345 1.10 0.000955561 0.000875764 0.0639956 0.0586762 48 1940 24 6.99608e+06 294314 865456. 2994.66 4.21 0.247241 0.220878 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0366172 0.0327963 72 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.14 17784 1 0.03 -1 -1 30344 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 17.6 MiB 1.59 1528 15924 5227 8931 1766 56.4 MiB 0.25 0.00 6.09323 -187.636 -6.09323 6.09323 1.09 0.00138279 0.00126636 0.129836 0.119254 40 4257 42 6.99608e+06 264882 706193. 2443.58 7.75 0.481012 0.432823 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.30 0.20 0.28 -1 -1 0.30 0.0641215 0.0578373 116 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 0.63 768 13524 5053 6623 1848 56.0 MiB 0.18 0.00 4.76624 -142.397 -4.76624 4.76624 1.09 0.00114551 0.00104876 0.0970901 0.0890131 46 2785 27 6.99608e+06 206020 828058. 2865.25 4.45 0.347422 0.312002 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0470707 0.042489 83 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.14 17140 1 0.03 -1 -1 30344 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.6 MiB 0.25 516 10672 4080 5320 1272 55.3 MiB 0.12 0.00 2.96036 -91.6204 -2.96036 2.96036 1.11 0.000839607 0.000769499 0.0577388 0.0530075 40 1546 38 6.99608e+06 191304 706193. 2443.58 3.13 0.256129 0.228307 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.30 0.07 0.28 -1 -1 0.30 0.0301785 0.0269545 51 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.18 17828 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 17.4 MiB 1.22 903 15560 6646 7056 1858 55.9 MiB 0.20 0.00 4.75332 -131.249 -4.75332 4.75332 1.09 0.00118571 0.0010876 0.11038 0.101283 48 2982 46 6.99608e+06 235451 865456. 2994.66 5.22 0.41691 0.375047 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0530848 0.0478312 85 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30220 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.8 MiB 0.81 493 9540 2740 5276 1524 55.3 MiB 0.11 0.00 2.966 -97.1273 -2.966 2.966 1.08 0.000889742 0.000815883 0.0535904 0.049189 38 1851 39 6.99608e+06 206020 678818. 2348.85 3.35 0.26619 0.237492 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0393354 0.0350643 57 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17384 1 0.03 -1 -1 30344 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 16.8 MiB 0.60 768 9081 3737 5047 297 55.5 MiB 0.12 0.00 3.80347 -118.428 -3.80347 3.80347 1.08 0.000953003 0.000873799 0.0575279 0.0528044 38 2446 44 6.99608e+06 191304 678818. 2348.85 4.64 0.297439 0.265436 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.34 0.11 0.26 -1 -1 0.34 0.041202 0.0369383 69 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30492 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 17.4 MiB 1.66 956 12416 5112 6468 836 56.1 MiB 0.18 0.00 4.12666 -129.088 -4.12666 4.12666 1.08 0.00116004 0.00106413 0.0884212 0.0811378 38 3346 46 6.99608e+06 264882 678818. 2348.85 6.42 0.384561 0.344954 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0508516 0.0457415 97 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 974 13599 5339 6861 1399 56.0 MiB 0.20 0.00 4.25698 -140.266 -4.25698 4.25698 1.10 0.00118401 0.00108566 0.098286 0.0901365 38 3070 41 6.99608e+06 220735 678818. 2348.85 4.97 0.389968 0.349655 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0533935 0.0480747 93 54 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30124 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.99 1087 13768 5458 5698 2612 55.9 MiB 0.20 0.00 4.58577 -147.33 -4.58577 4.58577 1.10 0.00116326 0.00106679 0.0985759 0.0904356 38 3125 30 6.99608e+06 220735 678818. 2348.85 5.79 0.370553 0.33291 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.32 0.12 0.27 -1 -1 0.32 0.0462991 0.041794 90 51 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17436 1 0.03 -1 -1 30328 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 17.0 MiB 1.91 854 11609 4663 6043 903 55.7 MiB 0.15 0.00 3.95082 -130.122 -3.95082 3.95082 1.09 0.000955318 0.000875918 0.0727408 0.0667669 38 2338 24 6.99608e+06 161872 678818. 2348.85 3.12 0.280097 0.25018 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0427938 0.0383202 67 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17704 1 0.03 -1 -1 30392 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 0.92 785 11813 4965 6422 426 55.7 MiB 0.16 0.00 3.70143 -122.026 -3.70143 3.70143 1.12 0.00104281 0.000955211 0.0785815 0.0719896 46 2466 44 6.99608e+06 206020 828058. 2865.25 3.75 0.336515 0.301065 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0488484 0.0437919 86 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.12 17856 1 0.03 -1 -1 30416 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 17.2 MiB 1.19 809 10756 2943 5618 2195 55.8 MiB 0.17 0.00 3.4598 -111.751 -3.4598 3.4598 1.08 0.00108395 0.00099328 0.0796534 0.0731504 46 2326 24 6.99608e+06 279598 828058. 2865.25 3.66 0.318008 0.285187 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0455529 0.0409493 91 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.21 17240 1 0.03 -1 -1 30396 -1 -1 17 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 17.0 MiB 0.49 678 13280 5850 6635 795 55.7 MiB 0.15 0.00 3.68935 -104.602 -3.68935 3.68935 0.98 0.000961613 0.000881162 0.0804875 0.0737777 42 2430 50 6.99608e+06 250167 744469. 2576.02 3.68 0.331449 0.29666 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0400287 0.0358731 71 27 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30520 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 1.81 779 10020 4070 5537 413 55.8 MiB 0.13 0.00 4.56081 -142.799 -4.56081 4.56081 1.10 0.00103869 0.000951352 0.059057 0.0540045 44 2750 43 6.99608e+06 220735 787024. 2723.27 3.64 0.296024 0.264172 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0468184 0.0419785 87 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30124 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 17.4 MiB 0.91 988 11366 4377 5078 1911 56.0 MiB 0.16 0.00 3.4477 -126.272 -3.4477 3.4477 1.10 0.00109307 0.00100131 0.0777245 0.0712269 40 3223 42 6.99608e+06 206020 706193. 2443.58 5.29 0.345476 0.309076 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0456434 0.0409934 93 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30324 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.1 MiB 0.37 735 13335 5144 6746 1445 55.8 MiB 0.15 0.00 4.50448 -121.497 -4.50448 4.50448 1.08 0.00103849 0.000953856 0.0748994 0.068778 46 2320 24 6.99608e+06 353176 828058. 2865.25 4.35 0.297804 0.26726 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.33 0.10 0.34 -1 -1 0.33 0.0408576 0.0367638 74 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.21 17560 1 0.03 -1 -1 30376 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 17.5 MiB 1.82 849 9872 4071 5471 330 56.1 MiB 0.15 0.00 4.41391 -145.413 -4.41391 4.41391 1.09 0.00117874 0.00108122 0.0734314 0.0674222 44 3096 30 6.99608e+06 206020 787024. 2723.27 3.50 0.343449 0.308459 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0535794 0.0482711 86 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17760 1 0.02 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 17.5 MiB 0.80 1031 9706 3955 5323 428 56.0 MiB 0.15 0.00 5.10216 -163.017 -5.10216 5.10216 1.09 0.00125893 0.00115464 0.0733005 0.067189 48 3809 38 6.99608e+06 250167 865456. 2994.66 7.87 0.380737 0.341457 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.34 0.23 0.34 -1 -1 0.34 0.0671675 0.0603663 102 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1043 9881 4045 5563 273 56.1 MiB 0.16 0.00 4.39921 -147.12 -4.39921 4.39921 1.09 0.0012589 0.00115223 0.0746023 0.0683871 46 3556 37 6.99608e+06 250167 828058. 2865.25 4.15 0.378029 0.339153 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0548478 0.0494338 104 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.20 17552 1 0.03 -1 -1 30232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 16.8 MiB 0.74 639 8765 3407 4448 910 55.5 MiB 0.11 0.00 4.31695 -124.149 -4.31695 4.31695 1.10 0.000933175 0.000855983 0.0545339 0.0500269 42 2236 38 6.99608e+06 191304 744469. 2576.02 2.97 0.278657 0.248269 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0364435 0.0326764 71 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30396 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 919 12808 4622 5804 2382 56.0 MiB 0.17 0.00 5.00926 -154.589 -5.00926 5.00926 1.08 0.00122507 0.00112342 0.0947277 0.0869549 48 2897 47 6.99608e+06 264882 865456. 2994.66 3.64 0.407068 0.36543 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.35 0.16 0.33 -1 -1 0.35 0.0554031 0.0498851 104 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30356 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 17.3 MiB 1.09 773 12860 5275 6775 810 55.9 MiB 0.17 0.00 4.8046 -140.908 -4.8046 4.8046 1.09 0.0011492 0.00105436 0.0918723 0.0843511 48 2906 29 6.99608e+06 206020 865456. 2994.66 4.69 0.351843 0.31625 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.35 0.15 0.38 -1 -1 0.35 0.0499367 0.0450314 82 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.12 17820 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 17.4 MiB 1.18 794 10228 3166 5486 1576 55.9 MiB 0.15 0.00 5.19565 -143.212 -5.19565 5.19565 1.08 0.00107269 0.00100129 0.0703128 0.0644917 38 3224 38 6.99608e+06 250167 678818. 2348.85 7.81 0.3257 0.291578 26626 170182 -1 2195 21 1511 2171 195678 43019 4.59296 4.59296 -149.718 -4.59296 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0475509 0.0428174 87 47 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 17.7 MiB 1.93 966 13788 4937 6208 2643 56.2 MiB 0.19 0.00 4.24398 -133.079 -4.24398 4.24398 1.08 0.00120488 0.00110476 0.0968639 0.0888002 46 3311 48 6.99608e+06 294314 828058. 2865.25 6.66 0.414336 0.371955 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.34 0.13 0.34 -1 -1 0.34 0.0335121 0.0299482 108 83 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 17.3 MiB 1.57 1164 15481 5166 8845 1470 56.0 MiB 0.23 0.00 4.66597 -153.274 -4.66597 4.66597 1.08 0.00119684 0.00109838 0.10996 0.100807 40 3016 25 6.99608e+06 250167 706193. 2443.58 4.40 0.37075 0.33328 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0530467 0.0477654 95 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17816 1 0.03 -1 -1 30304 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 17.6 MiB 2.28 970 14431 6168 7633 630 56.3 MiB 0.22 0.00 3.80498 -123.528 -3.80498 3.80498 1.11 0.0012036 0.00110337 0.112571 0.103143 46 3095 47 6.99608e+06 294314 828058. 2865.25 3.96 0.415606 0.372966 28066 200906 -1 2327 21 1984 2580 225360 47479 3.58866 3.58866 -125.19 -3.58866 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0507945 0.0457176 109 85 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17104 1 0.02 -1 -1 30368 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 16.7 MiB 1.06 673 8289 1936 5635 718 55.4 MiB 0.10 0.00 3.54309 -104.459 -3.54309 3.54309 1.10 0.000892566 0.000819583 0.049922 0.045894 36 2073 30 6.99608e+06 147157 648988. 2245.63 2.78 0.242304 0.215929 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0392691 0.0350805 54 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30276 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 17.6 MiB 0.70 998 13731 5201 6084 2446 56.2 MiB 0.20 0.00 5.23946 -166.614 -5.23946 5.23946 1.09 0.00121697 0.0011155 0.0990516 0.0908448 46 3007 25 6.99608e+06 250167 828058. 2865.25 5.69 0.365056 0.328045 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.33 0.19 0.32 -1 -1 0.33 0.0531495 0.0479942 100 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 17.5 MiB 1.00 1023 11631 4065 5883 1683 56.1 MiB 0.18 0.00 4.8947 -165.145 -4.8947 4.8947 1.09 0.00128592 0.00117884 0.0892813 0.0818749 40 3825 35 6.99608e+06 250167 706193. 2443.58 6.65 0.401024 0.360313 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.054914 0.0495398 109 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30092 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 17.0 MiB 1.00 649 12083 5091 6584 408 55.6 MiB 0.14 0.00 3.80367 -112.996 -3.80367 3.80367 1.09 0.000930657 0.00085282 0.0738313 0.0677115 42 2423 39 6.99608e+06 161872 744469. 2576.02 3.42 0.303153 0.270915 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.31 0.11 0.27 -1 -1 0.31 0.0419107 0.037484 69 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17292 1 0.03 -1 -1 30384 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.9 MiB 0.45 500 9836 4038 5376 422 55.4 MiB 0.11 0.00 3.32523 -100.829 -3.32523 3.32523 1.08 0.000885941 0.000812117 0.0566718 0.0519228 44 1930 39 6.99608e+06 191304 787024. 2723.27 2.89 0.267666 0.238829 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0430079 0.0384468 56 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 868 11909 4701 5758 1450 55.8 MiB 0.16 0.00 4.58703 -149.04 -4.58703 4.58703 1.08 0.00116532 0.00106995 0.0856055 0.0786148 46 2684 28 6.99608e+06 220735 828058. 2865.25 3.00 0.34841 0.312978 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0670356 0.0601634 88 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30456 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 17.5 MiB 1.68 896 11571 3933 6047 1591 56.1 MiB 0.17 0.00 4.54977 -137.477 -4.54977 4.54977 1.10 0.00116652 0.00106935 0.0834157 0.076491 46 2917 48 6.99608e+06 220735 828058. 2865.25 4.41 0.371624 0.333019 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528339 0.0475556 95 56 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17396 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.4 MiB 0.41 847 13556 4796 7036 1724 55.9 MiB 0.21 0.00 4.71017 -139.049 -4.71017 4.71017 1.11 0.00121518 0.00111622 0.0977834 0.0898604 44 3122 48 6.99608e+06 250167 787024. 2723.27 3.96 0.418612 0.377132 27778 195446 -1 2155 23 1937 3243 335429 101756 4.32031 4.32031 -143.248 -4.32031 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0558999 0.0504369 83 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30100 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 17.1 MiB 1.12 742 9042 3157 4137 1748 55.7 MiB 0.11 0.00 3.64737 -104.512 -3.64737 3.64737 1.10 0.00104808 0.000961014 0.0604104 0.0554495 48 2323 27 6.99608e+06 235451 865456. 2994.66 3.14 0.29125 0.260335 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.35 0.12 0.35 -1 -1 0.35 0.0449195 0.0403499 86 52 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30600 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 16.7 MiB 0.95 490 9374 3097 4710 1567 55.2 MiB 0.11 0.00 3.44679 -100.328 -3.44679 3.44679 1.09 0.000875151 0.000802828 0.0559208 0.0513468 38 1628 40 6.99608e+06 220735 678818. 2348.85 4.09 0.25919 0.230799 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0378589 0.0338021 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 17848 1 0.03 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1154 16102 6967 8731 404 56.5 MiB 0.25 0.00 4.18254 -144.202 -4.18254 4.18254 1.10 0.00137198 0.00125841 0.128485 0.117915 46 4050 36 6.99608e+06 264882 828058. 2865.25 8.65 0.459332 0.413416 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0556495 0.0502866 111 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17660 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 17.4 MiB 1.73 1126 13496 4705 6380 2411 56.1 MiB 0.21 0.00 5.49463 -159.408 -5.49463 5.49463 1.09 0.00118907 0.00109019 0.0998072 0.0915973 38 3177 46 6.99608e+06 250167 678818. 2348.85 5.76 0.382061 0.34251 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.31 0.21 0.27 -1 -1 0.31 0.0598834 0.0539366 100 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 17.2 MiB 0.94 926 14354 6182 7861 311 55.8 MiB 0.19 0.00 4.28347 -151.804 -4.28347 4.28347 1.11 0.00107768 0.000986533 0.0966611 0.0885936 48 2248 21 6.99608e+06 206020 865456. 2994.66 2.81 0.321914 0.288895 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0416219 0.0374266 91 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.10 17700 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 17.2 MiB 0.72 1057 13599 5180 6238 2181 55.8 MiB 0.19 0.00 4.11318 -134.456 -4.11318 4.11318 1.08 0.00110373 0.00101267 0.0924332 0.0848494 38 2724 25 6.99608e+06 220735 678818. 2348.85 3.18 0.332038 0.29835 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0466711 0.042031 81 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 17.5 MiB 1.30 870 12120 4959 6494 667 56.4 MiB 0.18 0.00 4.09557 -123.875 -4.09557 4.09557 1.09 0.00123159 0.00112866 0.0909194 0.0834611 42 3474 41 6.99608e+06 250167 744469. 2576.02 3.55 0.393028 0.353328 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.31 0.13 0.30 -1 -1 0.31 0.0523314 0.0471581 97 50 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17920 1 0.03 -1 -1 30108 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 17.4 MiB 1.43 825 9205 3109 4150 1946 55.9 MiB 0.13 0.00 3.47679 -109.391 -3.47679 3.47679 1.09 0.00107633 0.000987094 0.0621826 0.0570589 46 2602 31 6.99608e+06 250167 828058. 2865.25 3.49 0.304786 0.272801 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0526117 0.0471799 88 51 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 17.2 MiB 0.85 918 10536 3621 5008 1907 55.9 MiB 0.16 0.00 4.39601 -144.18 -4.39601 4.39601 1.13 0.00118452 0.00108497 0.0781172 0.0715612 46 3353 30 6.99608e+06 206020 828058. 2865.25 4.76 0.352179 0.316075 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.054118 0.0487511 88 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 17.7 MiB 2.39 942 12292 4666 5756 1870 56.2 MiB 0.18 0.00 3.70017 -126.602 -3.70017 3.70017 1.10 0.00125919 0.00115361 0.0934224 0.0856285 48 3168 40 6.99608e+06 235451 865456. 2994.66 5.98 0.404778 0.363544 28354 207349 -1 2445 29 2504 3455 343966 87145 3.56046 3.56046 -132.854 -3.56046 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0710283 0.0639023 103 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30320 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 16.9 MiB 1.21 638 10503 3616 4659 2228 55.5 MiB 0.13 0.00 4.33189 -121.838 -4.33189 4.33189 1.09 0.000927905 0.000851584 0.0648271 0.0595629 38 1692 24 6.99608e+06 206020 678818. 2348.85 2.49 0.26199 0.234106 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0380205 0.0341076 70 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17796 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 17.4 MiB 2.02 733 10370 4308 5800 262 55.9 MiB 0.13 0.00 4.00228 -133.8 -4.00228 4.00228 1.09 0.00101858 0.000932807 0.0666996 0.0610919 44 2610 40 6.99608e+06 206020 787024. 2723.27 3.53 0.317338 0.283444 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.33 0.11 0.29 -1 -1 0.33 0.0443815 0.0398007 79 58 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 17.0 MiB 0.77 764 12362 5067 6494 801 55.6 MiB 0.17 0.00 4.07608 -123.99 -4.07608 4.07608 1.09 0.00110946 0.00101876 0.0861858 0.0791629 46 2867 29 6.99608e+06 220735 828058. 2865.25 4.68 0.334818 0.30076 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0524789 0.04718 80 33 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30548 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 16.9 MiB 0.93 586 8909 3659 4796 454 55.6 MiB 0.06 0.00 3.79267 -108.98 -3.79267 3.79267 0.77 0.000399758 0.000359848 0.0229846 0.0207815 44 2352 39 6.99608e+06 191304 787024. 2723.27 3.41 0.234547 0.207621 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0505404 0.0449289 68 31 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.14 17592 1 0.03 -1 -1 30052 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 16.8 MiB 0.80 860 12076 5115 6633 328 55.5 MiB 0.15 0.00 4.30315 -133.848 -4.30315 4.30315 1.09 0.000951116 0.000871914 0.0743711 0.0681943 38 2379 33 6.99608e+06 176588 678818. 2348.85 3.98 0.297084 0.265389 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0370042 0.033192 73 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 17.4 MiB 0.90 1156 13840 5407 6744 1689 56.0 MiB 0.20 0.00 4.42187 -150.582 -4.42187 4.42187 1.17 0.00122216 0.00112127 0.102214 0.093829 46 2902 21 6.99608e+06 250167 828058. 2865.25 3.31 0.361016 0.324858 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.39 0.16 0.33 -1 -1 0.39 0.0619373 0.0560201 101 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17376 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 16.9 MiB 0.78 820 12876 4559 5981 2336 55.5 MiB 0.16 0.00 3.74867 -118.743 -3.74867 3.74867 1.17 0.000910962 0.000835144 0.0756146 0.0693066 36 2421 43 6.99608e+06 191304 648988. 2245.63 4.79 0.303993 0.269994 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0371261 0.0332296 71 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30012 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 17.5 MiB 0.87 889 10726 4477 5918 331 56.1 MiB 0.16 0.00 3.49879 -116.053 -3.49879 3.49879 1.13 0.00115037 0.00105412 0.0796434 0.0731126 48 2372 28 6.99608e+06 220735 865456. 2994.66 3.07 0.338034 0.30323 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.36 0.09 0.35 -1 -1 0.36 0.0392533 0.0354419 91 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30296 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 17.8 MiB 2.48 1223 9263 3795 5242 226 56.4 MiB 0.15 0.00 4.74537 -163.238 -4.74537 4.74537 1.11 0.00125417 0.00115005 0.0681835 0.0625366 48 3333 47 6.99608e+06 294314 865456. 2994.66 5.58 0.396464 0.355619 28354 207349 -1 2908 35 3164 4392 767405 233701 4.54929 4.54929 -166.714 -4.54929 0 0 1.05005e+06 3633.38 0.35 0.32 0.34 -1 -1 0.35 0.0824277 0.0740056 113 91 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30276 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 17.4 MiB 1.76 727 10316 3968 5326 1022 56.0 MiB 0.13 0.00 3.38944 -114.889 -3.38944 3.38944 1.09 0.000997464 0.000913266 0.0676786 0.0620248 46 2548 48 6.99608e+06 176588 828058. 2865.25 5.13 0.331732 0.296218 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0417862 0.0374252 80 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17928 1 0.03 -1 -1 30264 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 16.9 MiB 0.61 695 11609 4409 5699 1501 55.5 MiB 0.15 0.00 3.88892 -124.254 -3.88892 3.88892 1.10 0.000987081 0.000902693 0.0769316 0.0704317 40 2563 29 6.99608e+06 161872 706193. 2443.58 5.21 0.297211 0.265854 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0384946 0.0345423 72 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17912 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 17.0 MiB 1.34 729 11034 3646 5163 2225 55.5 MiB 0.14 0.00 4.07043 -123.448 -4.07043 4.07043 1.09 0.00108049 0.000990694 0.0742129 0.0680555 46 2576 50 6.99608e+06 206020 828058. 2865.25 4.10 0.353364 0.316495 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.33 0.13 0.18 -1 -1 0.33 0.0615958 0.0552665 79 30 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17864 1 0.03 -1 -1 30284 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 807 9881 4044 5289 548 56.0 MiB 0.13 0.00 3.78147 -112.033 -3.78147 3.78147 1.09 0.00108217 0.000992776 0.0661805 0.0607682 40 2561 37 6.99608e+06 264882 706193. 2443.58 5.41 0.3207 0.286952 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0457208 0.0411192 88 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.13 17760 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 1189 13031 5003 6393 1635 56.3 MiB 0.20 0.00 5.55394 -180.701 -5.55394 5.55394 1.12 0.00127212 0.00116674 0.0984341 0.0903012 40 3527 35 6.99608e+06 250167 706193. 2443.58 7.46 0.403281 0.362397 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.32 0.20 0.31 -1 -1 0.32 0.0585156 0.0527671 105 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17312 1 0.02 -1 -1 30288 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.8 MiB 0.76 678 10796 4152 4483 2161 55.5 MiB 0.12 0.00 3.34663 -92.0539 -3.34663 3.34663 1.09 0.000841221 0.000771986 0.0589865 0.0541565 34 1899 26 6.99608e+06 191304 618332. 2139.56 2.24 0.241029 0.214659 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.23 0.06 0.13 -1 -1 0.23 0.0234027 0.020869 54 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 17.8 MiB 2.56 1002 14907 4915 7817 2175 56.4 MiB 0.23 0.00 4.76623 -160.299 -4.76623 4.76623 1.09 0.00131669 0.0012072 0.111141 0.101975 48 2884 23 6.99608e+06 294314 865456. 2994.66 3.20 0.363002 0.326434 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.35 0.14 0.35 -1 -1 0.35 0.0531467 0.048079 116 90 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1317 10744 3615 5258 1871 56.2 MiB 0.17 0.00 4.50112 -167.331 -4.50112 4.50112 1.15 0.00118175 0.00108182 0.0797715 0.0730389 40 3495 26 6.99608e+06 235451 706193. 2443.58 5.66 0.350325 0.313952 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0562211 0.0504752 110 96 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.18 17688 1 0.03 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 17.3 MiB 1.39 944 9712 3948 5370 394 55.9 MiB 0.14 0.00 3.79657 -123.64 -3.79657 3.79657 1.09 0.00117916 0.00108055 0.0713395 0.0654456 44 3075 49 6.99608e+06 220735 787024. 2723.27 4.43 0.373651 0.334874 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.0498724 0.044915 94 60 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 18164 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 17.8 MiB 0.99 1078 15796 7109 8306 381 56.2 MiB 0.25 0.00 5.81442 -170.312 -5.81442 5.81442 1.14 0.0013349 0.00122551 0.128856 0.118452 46 3303 43 6.99608e+06 220735 828058. 2865.25 6.11 0.46695 0.421288 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0518826 0.0470061 98 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17560 1 0.03 -1 -1 30144 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 16.5 MiB 0.63 501 9684 3375 4762 1547 55.2 MiB 0.10 0.00 2.78575 -96.9119 -2.78575 2.78575 1.10 0.000777844 0.000710183 0.0507912 0.0465029 38 1487 22 6.99608e+06 176588 678818. 2348.85 2.18 0.213982 0.19013 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0295263 0.0263302 53 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17536 1 0.03 -1 -1 30376 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 17.0 MiB 3.03 598 11756 4032 5894 1830 55.7 MiB 0.14 0.00 3.77712 -117.524 -3.77712 3.77712 1.10 0.000973616 0.000891919 0.0743298 0.0681435 38 1780 24 6.99608e+06 206020 678818. 2348.85 2.40 0.283102 0.253187 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.32 0.10 0.28 -1 -1 0.32 0.0415002 0.0372447 68 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 0.64 791 12331 4777 6250 1304 55.6 MiB 0.16 0.00 3.68644 -122.952 -3.68644 3.68644 1.10 0.00102425 0.000939221 0.0738034 0.0676842 44 2873 41 6.99608e+06 250167 787024. 2723.27 4.01 0.321045 0.287083 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0390802 0.0351075 78 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17528 1 0.03 -1 -1 30244 -1 -1 16 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 16.7 MiB 0.99 448 7369 2953 3764 652 55.2 MiB 0.08 0.00 3.31959 -76.8944 -3.31959 3.31959 1.09 0.000751374 0.000688187 0.0386094 0.0353884 38 1742 32 6.99608e+06 235451 678818. 2348.85 3.44 0.216971 0.192665 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0276883 0.0247549 59 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 17.8 MiB 2.71 1245 8306 2489 4423 1394 56.2 MiB 0.13 0.00 4.0386 -139.855 -4.0386 4.0386 1.09 0.00121825 0.00111214 0.0612642 0.0562223 48 3245 50 6.99608e+06 250167 865456. 2994.66 3.73 0.379117 0.339815 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0517423 0.0465789 103 72 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17780 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 17.8 MiB 2.24 1163 15568 6109 7919 1540 56.5 MiB 0.23 0.00 4.35051 -150.242 -4.35051 4.35051 1.09 0.00129454 0.00118664 0.116953 0.107238 40 3509 30 6.99608e+06 279598 706193. 2443.58 4.20 0.415186 0.373354 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.32 0.16 0.29 -1 -1 0.32 0.0574242 0.0518319 117 90 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.27 17628 14 0.25 -1 -1 32976 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 1276 8543 2090 5594 859 55.6 MiB 0.15 0.00 8.38905 -176.577 -8.38905 8.38905 1.10 0.00155867 0.00142984 0.0791495 0.0727134 36 3665 49 6.79088e+06 255968 648988. 2245.63 7.49 0.486414 0.43708 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0695637 0.0628718 130 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.29 17704 14 0.28 -1 -1 32900 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 17.1 MiB 2.13 1147 12331 4133 6053 2145 55.7 MiB 0.20 0.00 7.6097 -157.374 -7.6097 7.6097 1.09 0.00156214 0.00143244 0.115651 0.10595 34 3327 27 6.79088e+06 255968 618332. 2139.56 4.82 0.467533 0.420904 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0622332 0.0563932 125 184 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 3.04 1231 6383 1494 4487 402 55.7 MiB 0.11 0.00 6.81003 -148.008 -6.81003 6.81003 1.09 0.0015737 0.00144281 0.0604016 0.055419 36 3209 32 6.79088e+06 255968 648988. 2245.63 6.04 0.432831 0.388973 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0634192 0.0574451 130 186 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.25 17780 12 0.31 -1 -1 32780 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 16.8 MiB 1.03 1099 5293 1100 3885 308 55.4 MiB 0.10 0.00 7.28153 -143.815 -7.28153 7.28153 1.13 0.00148932 0.00135537 0.0498105 0.0457441 36 3357 33 6.79088e+06 323328 648988. 2245.63 5.20 0.427263 0.38429 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0654588 0.0592809 136 190 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.28 17916 13 0.25 -1 -1 32788 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1401 5756 1163 4305 288 55.8 MiB 0.11 0.00 8.2885 -175.09 -8.2885 8.2885 1.12 0.00172797 0.00158411 0.0577817 0.0530401 40 3602 29 6.79088e+06 296384 706193. 2443.58 3.45 0.455276 0.40923 26254 175826 -1 3419 16 1490 3850 301755 77078 7.51181 7.51181 -175.313 -7.51181 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0601393 0.054702 152 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.29 17704 13 0.27 -1 -1 32764 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 1243 11063 3086 5977 2000 55.6 MiB 0.19 0.00 7.40767 -155.099 -7.40767 7.40767 1.10 0.00165126 0.00151303 0.106851 0.0979258 38 3505 23 6.79088e+06 255968 678818. 2348.85 5.00 0.484157 0.436373 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640915 0.0581552 137 198 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.24 17316 12 0.19 -1 -1 32548 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 16.4 MiB 1.28 831 9024 2147 6104 773 55.1 MiB 0.13 0.00 7.03512 -124.15 -7.03512 7.03512 1.08 0.00127187 0.00116586 0.0697703 0.0640761 36 2328 49 6.79088e+06 282912 648988. 2245.63 3.58 0.396087 0.355753 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0611743 0.0552524 106 150 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17656 12 0.20 -1 -1 32640 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 16.7 MiB 2.52 997 12636 5258 7154 224 55.4 MiB 0.18 0.00 6.42294 -136.16 -6.42294 6.42294 1.09 0.00125975 0.00115363 0.096507 0.088426 44 2627 22 6.79088e+06 229024 787024. 2723.27 2.94 0.375068 0.33761 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0443719 0.0402357 106 138 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17760 12 0.17 -1 -1 32600 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 16.6 MiB 2.75 1116 6203 1235 4627 341 55.2 MiB 0.10 0.00 7.04997 -146.463 -7.04997 7.04997 1.09 0.00128457 0.00117408 0.0484196 0.0443338 38 2827 29 6.79088e+06 269440 678818. 2348.85 3.70 0.338934 0.303964 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.31 0.10 0.27 -1 -1 0.31 0.0430107 0.0390826 113 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.25 17612 13 0.19 -1 -1 32624 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 16.7 MiB 1.95 1109 7177 1737 4800 640 55.3 MiB 0.12 0.00 7.59858 -166.488 -7.59858 7.59858 1.10 0.00140355 0.00128559 0.0611081 0.0559336 36 3033 30 6.79088e+06 202080 648988. 2245.63 5.15 0.386951 0.347188 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.043998 0.039989 106 156 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.23 17532 12 0.18 -1 -1 32396 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 16.7 MiB 1.61 935 11402 3533 6247 1622 55.2 MiB 0.15 0.00 7.11778 -148.236 -7.11778 7.11778 1.12 0.00120471 0.0011022 0.0846607 0.0775578 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.52 0.287076 0.25855 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0438125 0.0396521 96 128 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17364 12 0.15 -1 -1 32668 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 16.6 MiB 2.13 937 12856 4731 5927 2198 55.2 MiB 0.17 0.00 5.84661 -143.137 -5.84661 5.84661 0.79 0.00125106 0.00114462 0.0874764 0.0799449 38 2936 43 6.79088e+06 229024 678818. 2348.85 5.82 0.411997 0.369757 25966 169698 -1 2301 16 1075 2850 166834 38480 5.18431 5.18431 -138.28 -5.18431 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0442037 0.040114 101 142 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.29 17796 13 0.24 -1 -1 32424 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 16.8 MiB 1.75 1258 8319 2303 5000 1016 55.5 MiB 0.15 0.00 7.91028 -166.355 -7.91028 7.91028 1.09 0.00161414 0.00146971 0.0796278 0.0730054 40 3060 21 6.79088e+06 269440 706193. 2443.58 2.77 0.420557 0.378504 26254 175826 -1 2982 19 1354 3465 231601 50194 7.01056 7.01056 -160.338 -7.01056 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0660728 0.0598831 134 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.28 17720 14 0.30 -1 -1 32812 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 17.2 MiB 1.76 1345 7268 1767 5038 463 55.7 MiB 0.13 0.00 8.74626 -182.518 -8.74626 8.74626 1.08 0.00170019 0.00155577 0.0716713 0.0656901 36 3522 26 6.79088e+06 296384 648988. 2245.63 5.02 0.461067 0.414995 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0669132 0.0608893 151 209 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17544 11 0.17 -1 -1 32572 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 16.6 MiB 2.20 987 12186 3908 6119 2159 55.4 MiB 0.16 0.00 6.7187 -136.52 -6.7187 6.7187 1.08 0.00125295 0.00114798 0.0895151 0.0820395 34 3118 45 6.79088e+06 282912 618332. 2139.56 4.30 0.406874 0.365566 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.26 0.39 0.26 -1 -1 0.26 0.11896 0.106644 106 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.28 17704 12 0.27 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1224 13348 3764 6998 2586 55.7 MiB 0.22 0.00 7.24781 -156.42 -7.24781 7.24781 1.08 0.00172557 0.00158421 0.124132 0.113918 40 3377 35 6.79088e+06 323328 706193. 2443.58 4.46 0.532698 0.480586 26254 175826 -1 3153 21 1625 5435 403477 86340 6.75642 6.75642 -155.136 -6.75642 0 0 926341. 3205.33 0.30 0.19 0.30 -1 -1 0.30 0.0749283 0.067922 145 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.26 17788 14 0.26 -1 -1 32772 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 2.14 1311 6743 1544 4772 427 55.6 MiB 0.12 0.00 8.47078 -173.752 -8.47078 8.47078 1.10 0.00155995 0.00142965 0.0633255 0.0581058 38 3697 39 6.79088e+06 255968 678818. 2348.85 6.55 0.451081 0.405333 25966 169698 -1 2925 18 1377 3834 209038 46091 7.22545 7.22545 -162.343 -7.22545 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0604965 0.0548575 126 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.25 17640 12 0.16 -1 -1 32388 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 16.6 MiB 1.56 1008 11740 3543 6499 1698 55.2 MiB 0.16 0.00 7.24148 -161.628 -7.24148 7.24148 1.09 0.00126643 0.0011584 0.09208 0.0842545 36 2795 45 6.79088e+06 202080 648988. 2245.63 4.89 0.431783 0.387882 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0424921 0.0385862 105 133 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 16.1 MiB 1.83 679 4973 1078 3739 156 54.8 MiB 0.07 0.00 4.83286 -114.815 -4.83286 4.83286 1.09 0.000905144 0.000828525 0.0312004 0.0285602 38 1772 21 6.79088e+06 175136 678818. 2348.85 2.32 0.223993 0.199319 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0284368 0.0256244 66 87 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.26 17328 13 0.20 -1 -1 32576 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 16.4 MiB 1.96 997 12331 4111 5801 2419 55.0 MiB 0.17 0.00 7.54752 -160.268 -7.54752 7.54752 1.10 0.00128719 0.00117869 0.0947577 0.0868446 36 2929 29 6.79088e+06 242496 648988. 2245.63 3.56 0.387784 0.348779 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0489743 0.0443738 107 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17696 13 0.27 -1 -1 32996 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 17.0 MiB 1.74 1287 9943 2672 5830 1441 55.7 MiB 0.17 0.00 7.66212 -166.709 -7.66212 7.66212 1.11 0.00168777 0.00154804 0.0949829 0.0870744 36 4367 40 6.79088e+06 282912 648988. 2245.63 10.20 0.519947 0.468238 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.27 0.29 0.25 -1 -1 0.27 0.0994 0.0897403 143 210 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.28 17816 13 0.29 -1 -1 32620 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1366 11989 3183 6998 1808 55.8 MiB 0.20 0.00 7.56666 -167.812 -7.56666 7.56666 1.08 0.00163159 0.00149481 0.110257 0.101124 38 3931 41 6.79088e+06 282912 678818. 2348.85 6.54 0.517871 0.466604 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0596683 0.054218 141 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17244 9 0.09 -1 -1 32284 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 16.1 MiB 1.05 700 7596 2556 3853 1187 54.8 MiB 0.08 0.00 4.83723 -93.7879 -4.83723 4.83723 1.09 0.000821918 0.000753118 0.0413765 0.0379289 34 1715 26 6.79088e+06 242496 618332. 2139.56 2.03 0.220502 0.196201 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0306556 0.0274575 67 76 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17428 13 0.28 -1 -1 32772 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1263 10263 2709 7113 441 55.6 MiB 0.17 0.00 8.1433 -166.845 -8.1433 8.1433 1.09 0.00121623 0.00110022 0.0797825 0.0726352 40 3385 50 6.79088e+06 309856 706193. 2443.58 4.19 0.4981 0.446973 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.31 0.16 0.29 -1 -1 0.31 0.0702408 0.0636137 136 193 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17076 8 0.09 -1 -1 32664 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 16.0 MiB 1.81 633 5921 1256 4594 71 54.6 MiB 0.07 0.00 4.18492 -95.1021 -4.18492 4.18492 1.09 0.000788706 0.000721557 0.0270113 0.0245461 36 1824 30 6.79088e+06 148192 648988. 2245.63 2.26 0.202317 0.178896 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.029487 0.0263632 60 60 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.25 17488 15 0.25 -1 -1 32856 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1197 14144 5293 7084 1767 55.5 MiB 0.21 0.00 8.89118 -178.017 -8.89118 8.89118 1.10 0.00146121 0.00134046 0.119847 0.10993 36 3911 43 6.79088e+06 242496 648988. 2245.63 9.94 0.497505 0.447697 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.28 0.25 0.25 -1 -1 0.28 0.0874954 0.0788705 121 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17316 13 0.22 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1207 12898 3890 6827 2181 55.6 MiB 0.20 0.00 6.79894 -149.553 -6.79894 6.79894 1.11 0.00146697 0.00134581 0.11155 0.102321 36 3359 23 6.79088e+06 242496 648988. 2245.63 8.43 0.429845 0.386578 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.27 0.13 0.27 -1 -1 0.27 0.0587348 0.0532059 117 166 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.27 17780 13 0.28 -1 -1 32880 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1179 7024 1686 4552 786 55.5 MiB 0.06 0.00 7.81323 -165.772 -7.81323 7.81323 1.08 0.000575707 0.000519854 0.0263879 0.0239397 40 3618 36 6.79088e+06 242496 706193. 2443.58 6.10 0.396163 0.354838 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.32 0.26 0.30 -1 -1 0.32 0.0815291 0.0736815 136 185 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.13 17316 12 0.16 -1 -1 32608 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 16.5 MiB 1.83 1077 9024 2472 4753 1799 55.3 MiB 0.13 0.00 6.90294 -154.176 -6.90294 6.90294 1.08 0.00129032 0.00118078 0.0719087 0.0659265 38 2685 27 6.79088e+06 215552 678818. 2348.85 3.61 0.356865 0.32063 25966 169698 -1 2236 14 1015 2429 130604 29713 5.99004 5.99004 -143.607 -5.99004 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0406936 0.036995 103 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17344 11 0.16 -1 -1 32724 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 16.4 MiB 1.75 910 12120 3870 6285 1965 55.0 MiB 0.16 0.00 6.3635 -135.496 -6.3635 6.3635 1.11 0.00116635 0.00106758 0.0854939 0.0782692 36 2758 44 6.79088e+06 242496 648988. 2245.63 4.63 0.38332 0.343807 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0384663 0.0348461 95 125 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.11 17432 11 0.17 -1 -1 32620 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 16.5 MiB 1.49 934 11106 3231 6003 1872 55.1 MiB 0.15 0.00 7.04953 -133.904 -7.04953 7.04953 1.09 0.00125696 0.00115176 0.0834827 0.0765127 36 2495 17 6.79088e+06 282912 648988. 2245.63 2.84 0.348082 0.313258 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.24 0.05 0.13 -1 -1 0.24 0.0187607 0.0170466 109 145 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.23 17612 12 0.20 -1 -1 32616 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 16.9 MiB 2.32 1143 7431 2070 3957 1404 55.4 MiB 0.12 0.00 7.03679 -162.788 -7.03679 7.03679 1.09 0.00148673 0.00136121 0.067694 0.0620701 38 3489 28 6.79088e+06 229024 678818. 2348.85 4.84 0.403344 0.362004 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0573383 0.051971 119 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.23 17548 12 0.16 -1 -1 32688 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 16.4 MiB 2.10 1005 7304 1599 5397 308 55.0 MiB 0.12 0.00 6.85818 -143.144 -6.85818 6.85818 1.13 0.0012768 0.00116879 0.0599463 0.0549714 36 3104 26 6.79088e+06 229024 648988. 2245.63 5.37 0.344934 0.309478 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0527951 0.0477451 101 146 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.23 17552 10 0.15 -1 -1 32768 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 16.5 MiB 1.39 942 8378 2178 5592 608 55.2 MiB 0.12 0.00 6.16888 -135.594 -6.16888 6.16888 1.07 0.00123682 0.00113275 0.0660431 0.0604695 34 2825 33 6.79088e+06 229024 618332. 2139.56 3.19 0.318677 0.285813 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0409455 0.0371643 103 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18156 13 0.31 -1 -1 32744 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 17.1 MiB 1.71 1312 13663 4088 7126 2449 55.7 MiB 0.24 0.00 8.09614 -166.803 -8.09614 8.09614 1.11 0.00178874 0.00163755 0.138996 0.127386 44 3318 23 6.79088e+06 282912 787024. 2723.27 3.69 0.530745 0.478621 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0668998 0.0608224 149 221 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.27 18308 14 0.33 -1 -1 33288 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 17.0 MiB 2.05 1261 10584 2627 7173 784 55.7 MiB 0.19 0.00 7.68903 -168.897 -7.68903 7.68903 1.08 0.00162185 0.00148683 0.101591 0.093056 44 3649 50 6.79088e+06 242496 787024. 2723.27 4.66 0.526375 0.473774 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.35 0.14 0.32 -1 -1 0.35 0.0597816 0.0543349 136 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17484 12 0.15 -1 -1 32656 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 16.5 MiB 1.99 1099 9036 2242 5503 1291 55.2 MiB 0.13 0.00 7.11595 -155.813 -7.11595 7.11595 1.09 0.0012829 0.00117428 0.0722901 0.0662087 30 2953 39 6.79088e+06 215552 556674. 1926.21 3.70 0.28566 0.257124 24526 138013 -1 2356 56 1353 4062 755449 394520 6.33018 6.33018 -154.996 -6.33018 0 0 706193. 2443.58 0.28 0.41 0.21 -1 -1 0.28 0.12939 0.116052 101 150 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.23 18028 12 0.27 -1 -1 32756 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 17.2 MiB 2.20 1467 6039 1319 4287 433 55.8 MiB 0.12 0.00 7.47278 -158.083 -7.47278 7.47278 1.09 0.00171607 0.00157202 0.0615698 0.0565242 44 3629 28 6.79088e+06 323328 787024. 2723.27 4.00 0.458717 0.4126 27118 194962 -1 3054 17 1429 4213 263921 56409 6.54502 6.54502 -148.774 -6.54502 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0629577 0.0572327 146 216 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 18016 14 0.33 -1 -1 33176 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 17.2 MiB 1.27 1271 10129 2796 6287 1046 55.8 MiB 0.17 0.00 8.30959 -169.599 -8.30959 8.30959 1.06 0.00166874 0.00153034 0.0960603 0.0880855 36 3450 22 6.79088e+06 296384 648988. 2245.63 4.35 0.464265 0.417273 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0590073 0.0536986 142 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.28 17848 13 0.25 -1 -1 32792 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1280 4811 900 3622 289 55.7 MiB 0.09 0.00 8.58767 -169.841 -8.58767 8.58767 1.29 0.00155772 0.0014279 0.0446221 0.0409648 38 3430 34 6.79088e+06 309856 678818. 2348.85 3.75 0.426433 0.383393 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.058921 0.0535508 136 185 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.28 17880 13 0.25 -1 -1 32776 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 16.9 MiB 1.77 1180 11979 3854 6305 1820 55.5 MiB 0.19 0.00 7.68398 -158.005 -7.68398 7.68398 1.09 0.00153799 0.00140546 0.105313 0.096469 46 3049 18 6.79088e+06 282912 828058. 2865.25 4.04 0.430065 0.387814 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0538497 0.048902 125 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.24 17516 12 0.19 -1 -1 32844 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 17.0 MiB 1.86 851 11432 3292 6222 1918 55.6 MiB 0.17 0.00 6.74005 -141.479 -6.74005 6.74005 1.13 0.00142466 0.00130503 0.0995049 0.0912937 38 2732 20 6.79088e+06 215552 678818. 2348.85 5.17 0.399768 0.359156 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.39 0.09 0.23 -1 -1 0.39 0.0398015 0.0358915 111 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.32 18492 14 0.38 -1 -1 32772 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 17.4 MiB 1.13 1525 8269 1990 5730 549 55.9 MiB 0.17 0.00 8.76146 -179.232 -8.76146 8.76146 1.11 0.00189445 0.00172858 0.0900173 0.0825446 40 3962 28 6.79088e+06 282912 706193. 2443.58 5.17 0.515109 0.464401 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.31 0.17 0.25 -1 -1 0.31 0.066406 0.0606195 159 230 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17300 11 0.19 -1 -1 32380 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 16.7 MiB 2.13 1083 5656 1222 4312 122 55.2 MiB 0.10 0.00 6.44427 -138.672 -6.44427 6.44427 1.10 0.0013859 0.00126909 0.0509739 0.0467584 40 2970 31 6.79088e+06 215552 706193. 2443.58 3.49 0.376309 0.336577 26254 175826 -1 2695 18 1295 3569 245355 53324 5.60634 5.60634 -134.282 -5.60634 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0540157 0.0489514 112 158 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17788 13 0.26 -1 -1 33268 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1224 12683 3651 6628 2404 55.7 MiB 0.21 0.00 8.19665 -170.984 -8.19665 8.19665 1.11 0.00160046 0.00146589 0.118485 0.108587 36 3521 25 6.79088e+06 269440 648988. 2245.63 5.91 0.476879 0.42959 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0609382 0.0554556 137 193 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.31 17792 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1183 14221 4949 6932 2340 55.6 MiB 0.25 0.00 7.19197 -155.782 -7.19197 7.19197 1.09 0.001711 0.00156834 0.133533 0.122249 48 3258 28 6.79088e+06 282912 865456. 2994.66 3.88 0.524885 0.473301 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.36 0.24 0.34 -1 -1 0.36 0.0825989 0.0748122 146 209 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.25 17632 13 0.24 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 16.7 MiB 1.28 1273 10103 2600 6194 1309 55.5 MiB 0.16 0.00 8.00961 -170.987 -8.00961 8.00961 1.08 0.00156602 0.00143579 0.0882421 0.080965 38 3255 22 6.79088e+06 296384 678818. 2348.85 3.39 0.431469 0.388334 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.30 0.12 0.24 -1 -1 0.30 0.0577498 0.0524341 131 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.29 17768 13 0.21 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 16.7 MiB 2.48 1094 12364 4318 5742 2304 55.3 MiB 0.19 0.00 7.6093 -157.428 -7.6093 7.6093 1.08 0.00151551 0.00138913 0.109923 0.100771 38 3487 43 6.79088e+06 242496 678818. 2348.85 8.02 0.489595 0.440145 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0549715 0.0498456 124 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17904 12 0.24 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.86 1339 6489 1417 4538 534 55.8 MiB 0.12 0.00 7.45027 -163.951 -7.45027 7.45027 1.09 0.00165009 0.00151314 0.0633481 0.0581754 36 4037 43 6.79088e+06 269440 648988. 2245.63 10.95 0.485655 0.436583 25390 158009 -1 3242 19 1321 4175 282612 58801 6.45897 6.45897 -154.692 -6.45897 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0668468 0.0606339 140 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.27 18068 13 0.29 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 17.3 MiB 1.56 1312 5757 1265 4157 335 55.9 MiB 0.12 0.00 7.77691 -170.238 -7.77691 7.77691 1.10 0.00176712 0.00162073 0.0609812 0.0559732 36 4117 46 6.79088e+06 269440 648988. 2245.63 9.83 0.522201 0.469465 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.28 0.31 0.25 -1 -1 0.28 0.115059 0.103934 145 212 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17656 14 0.27 -1 -1 32956 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 1.40 1196 9783 2600 6598 585 55.7 MiB 0.16 0.00 8.29092 -170.108 -8.29092 8.29092 1.09 0.00148895 0.00136431 0.0844592 0.0773804 38 3116 34 6.79088e+06 269440 678818. 2348.85 3.99 0.456817 0.411622 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.31 0.15 0.27 -1 -1 0.31 0.0697627 0.0631465 125 168 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.25 17664 13 0.25 -1 -1 32740 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 17.2 MiB 2.08 1239 12547 3128 7964 1455 55.8 MiB 0.20 0.00 8.02156 -162.008 -8.02156 8.02156 1.09 0.00162863 0.00149189 0.114357 0.104786 36 3706 32 6.79088e+06 282912 648988. 2245.63 8.95 0.490474 0.441531 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.28 0.19 0.25 -1 -1 0.28 0.075055 0.0678523 136 197 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 18208 13 0.27 -1 -1 32696 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1309 8319 2069 5720 530 55.9 MiB 0.16 0.00 7.83086 -168.91 -7.83086 7.83086 1.02 0.00169836 0.00155667 0.0846177 0.0775721 38 3459 40 6.79088e+06 282912 678818. 2348.85 5.42 0.510362 0.459281 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.065611 0.0595916 144 211 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.27 17856 12 0.29 -1 -1 32792 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 17.3 MiB 1.48 1321 14779 4130 8902 1747 55.7 MiB 0.26 0.00 7.66848 -162.706 -7.66848 7.66848 1.09 0.00169448 0.00155268 0.152532 0.13979 38 3631 50 6.79088e+06 282912 678818. 2348.85 6.05 0.597035 0.538262 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.065869 0.0598032 147 214 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.20 17536 11 0.13 -1 -1 32704 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.09 752 5224 962 4133 129 55.1 MiB 0.08 0.00 6.41251 -131.25 -6.41251 6.41251 1.08 0.00115422 0.00105681 0.0397874 0.0364162 36 2354 24 6.79088e+06 188608 648988. 2245.63 3.54 0.290867 0.260248 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0418479 0.0377584 91 122 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17812 13 0.20 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.73 1180 7221 1648 4796 777 55.2 MiB 0.06 0.00 7.59268 -164.24 -7.59268 7.59268 0.75 0.000522799 0.000473144 0.0240784 0.0218847 36 3135 25 6.79088e+06 269440 648988. 2245.63 5.11 0.286616 0.25597 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0519724 0.0470402 118 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18324 14 0.42 -1 -1 33012 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57476 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 17.6 MiB 1.25 1584 7108 1588 4936 584 56.1 MiB 0.15 0.00 9.32595 -187.261 -9.32595 9.32595 1.16 0.00195527 0.00179212 0.0799751 0.0732379 46 3936 32 6.79088e+06 323328 828058. 2865.25 5.45 0.50431 0.454682 27406 200422 -1 3289 21 1725 5115 340361 89609 8.0201 8.0201 -172.736 -8.0201 0 0 1.01997e+06 3529.29 0.33 0.20 0.32 -1 -1 0.33 0.0844054 0.0767247 171 244 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.14 17836 13 0.30 -1 -1 32788 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 16.9 MiB 1.49 1314 12733 3340 7297 2096 55.5 MiB 0.24 0.00 7.97246 -177.126 -7.97246 7.97246 1.09 0.00160225 0.00146967 0.129324 0.118122 38 3411 27 6.79088e+06 282912 678818. 2348.85 5.74 0.489579 0.441153 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0574774 0.0521157 134 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.24 17516 11 0.17 -1 -1 32636 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 16.4 MiB 0.70 915 4304 849 3239 216 55.1 MiB 0.08 0.00 6.78614 -143.669 -6.78614 6.78614 1.13 0.00125655 0.00115088 0.036158 0.0332226 36 2700 29 6.79088e+06 229024 648988. 2245.63 3.91 0.23979 0.214025 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0417264 0.0378472 101 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.31 18516 15 0.52 -1 -1 32880 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 17.5 MiB 1.09 1525 5039 926 3796 317 56.1 MiB 0.11 0.00 9.59451 -195.342 -9.59451 9.59451 1.09 0.00204404 0.00187329 0.0583238 0.0535474 36 4861 41 6.79088e+06 336800 648988. 2245.63 13.86 0.583422 0.526252 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.29 0.20 0.25 -1 -1 0.29 0.0915143 0.0831423 179 257 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.25 17704 13 0.31 -1 -1 32884 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 17.1 MiB 1.12 1281 8502 2158 5508 836 55.8 MiB 0.15 0.00 8.03603 -175.042 -8.03603 8.03603 1.12 0.00170192 0.00156163 0.0848448 0.077923 38 3308 18 6.79088e+06 269440 678818. 2348.85 3.35 0.403218 0.363334 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.056001 0.0509517 139 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.20 17192 11 0.13 -1 -1 32420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 16.5 MiB 1.20 1102 10183 2765 6008 1410 55.1 MiB 0.14 0.00 6.80233 -145.463 -6.80233 6.80233 1.08 0.00122427 0.00111897 0.0799159 0.0731057 30 2820 19 6.79088e+06 175136 556674. 1926.21 1.81 0.241345 0.217552 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0425276 0.0385254 94 137 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.27 17604 12 0.29 -1 -1 32788 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 17.2 MiB 1.08 1332 7953 2031 5347 575 55.7 MiB 0.15 0.00 7.73069 -165.16 -7.73069 7.73069 1.09 0.00172475 0.00158003 0.0806271 0.0739033 38 3533 25 6.79088e+06 269440 678818. 2348.85 4.53 0.463399 0.416896 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0614707 0.0558705 146 211 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.25 17376 12 0.20 -1 -1 32732 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 17.0 MiB 1.20 1053 12008 3553 6389 2066 55.5 MiB 0.17 0.00 7.28149 -150.89 -7.28149 7.28149 1.08 0.00134793 0.00123499 0.0951366 0.0872463 44 2625 43 6.79088e+06 242496 787024. 2723.27 3.50 0.431562 0.387509 27118 194962 -1 2033 17 1102 2951 150094 35597 6.20493 6.20493 -138.957 -6.20493 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0497315 0.0451028 113 149 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17508 12 0.18 -1 -1 32676 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 16.5 MiB 0.97 903 6163 1336 4643 184 55.3 MiB 0.10 0.00 7.56546 -146.033 -7.56546 7.56546 1.12 0.00128195 0.00117357 0.0508396 0.0465473 30 2736 29 6.79088e+06 229024 556674. 1926.21 2.81 0.238859 0.215012 24526 138013 -1 2112 20 907 2572 134816 30941 6.67032 6.67032 -143.964 -6.67032 0 0 706193. 2443.58 0.22 0.07 0.11 -1 -1 0.22 0.0367738 0.0332523 106 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 18128 12 0.28 -1 -1 32816 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 17.0 MiB 1.95 1197 6039 1341 4100 598 55.6 MiB 0.10 0.00 7.39356 -141.853 -7.39356 7.39356 1.11 0.00161042 0.0014771 0.0554602 0.0509082 40 2765 18 6.79088e+06 350272 706193. 2443.58 3.38 0.398251 0.358048 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.30 0.14 0.30 -1 -1 0.30 0.0613308 0.0556626 140 190 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.26 17828 13 0.33 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 17.2 MiB 1.00 1362 9111 2298 6252 561 55.9 MiB 0.17 0.00 7.91407 -168.647 -7.91407 7.91407 1.10 0.00183632 0.00168472 0.0927307 0.0849622 36 4498 41 6.79088e+06 309856 648988. 2245.63 11.25 0.555485 0.500299 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.28 0.27 0.25 -1 -1 0.28 0.0980899 0.0889205 160 236 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17784 12 0.23 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.24 1278 7770 1751 5660 359 55.7 MiB 0.14 0.00 7.73336 -164.138 -7.73336 7.73336 1.12 0.00164116 0.00150534 0.0748496 0.0686568 38 3570 28 6.79088e+06 269440 678818. 2348.85 5.70 0.457478 0.41133 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0652339 0.0591592 140 196 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.24 17352 12 0.14 -1 -1 32344 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 16.5 MiB 1.80 988 4473 916 3372 185 55.0 MiB 0.07 0.00 7.24997 -147.671 -7.24997 7.24997 1.10 0.00119076 0.00109059 0.0360762 0.0330471 36 2682 24 6.79088e+06 202080 648988. 2245.63 4.68 0.293713 0.262886 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0447185 0.0403823 93 120 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.26 17652 12 0.21 -1 -1 32420 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 16.8 MiB 1.37 1084 12898 3877 6797 2224 55.2 MiB 0.19 0.00 7.21455 -151.198 -7.21455 7.21455 1.09 0.00135032 0.00123708 0.102342 0.0937367 36 2934 32 6.79088e+06 255968 648988. 2245.63 5.62 0.416642 0.374397 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0477592 0.0433004 111 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.27 17900 11 0.21 -1 -1 32920 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1115 8626 2299 5376 951 55.5 MiB 0.14 0.00 6.84847 -137.093 -6.84847 6.84847 1.09 0.00153039 0.00140343 0.0786859 0.0721547 36 3085 31 6.79088e+06 269440 648988. 2245.63 4.39 0.438996 0.394474 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0538793 0.0488874 125 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.24 17680 11 0.20 -1 -1 32632 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 16.9 MiB 1.21 1077 4642 990 3215 437 55.4 MiB 0.08 0.00 6.39394 -126.807 -6.39394 6.39394 1.08 0.00137222 0.00125407 0.0425855 0.0392017 36 2869 37 6.79088e+06 255968 648988. 2245.63 5.46 0.383244 0.343356 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0661844 0.0597698 116 171 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.25 17820 13 0.21 -1 -1 32692 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 1.68 1115 9196 2684 4764 1748 55.5 MiB 0.13 0.00 7.27805 -147.461 -7.27805 7.27805 1.10 0.00131664 0.00120604 0.0742087 0.0680229 30 3203 46 6.79088e+06 242496 556674. 1926.21 2.99 0.309048 0.278111 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.0503556 0.0456621 108 147 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.25 17604 12 0.19 -1 -1 32776 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.8 MiB 1.96 1193 6490 1485 4564 441 55.6 MiB 0.11 0.00 7.26273 -167.563 -7.26273 7.26273 1.15 0.00132926 0.00121039 0.0586146 0.0537333 40 2753 23 6.79088e+06 242496 706193. 2443.58 3.32 0.391166 0.351322 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.31 0.11 0.29 -1 -1 0.31 0.0497702 0.0452251 120 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17508 13 0.28 -1 -1 32796 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 16.8 MiB 1.59 1194 6123 1343 4442 338 55.5 MiB 0.11 0.00 8.79477 -171.911 -8.79477 8.79477 1.11 0.0015896 0.00145764 0.0582899 0.0535091 34 3211 26 6.79088e+06 282912 618332. 2139.56 3.45 0.419166 0.376412 25102 150614 -1 2646 15 1148 3180 179176 40712 7.64065 7.64065 -158.33 -7.64065 0 0 787024. 2723.27 0.26 0.11 0.14 -1 -1 0.26 0.0523766 0.0475658 137 187 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17932 14 0.28 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1287 8685 2330 5621 734 55.7 MiB 0.15 0.00 8.66267 -183.033 -8.66267 8.66267 1.11 0.00162759 0.00149185 0.0825374 0.0756856 38 3763 48 6.79088e+06 269440 678818. 2348.85 6.12 0.516445 0.464622 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.30 0.13 0.27 -1 -1 0.30 0.0578025 0.0525301 132 196 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.26 17900 14 0.24 -1 -1 32924 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 17.0 MiB 1.98 1083 11456 4044 5385 2027 55.6 MiB 0.20 0.00 7.96611 -159.164 -7.96611 7.96611 1.11 0.00152007 0.00139307 0.110611 0.100813 38 3010 34 6.79088e+06 229024 678818. 2348.85 5.14 0.480409 0.431907 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0684848 0.0620992 122 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.29 18100 13 0.32 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 17.1 MiB 1.68 1338 8024 1861 5707 456 55.6 MiB 0.15 0.00 8.29812 -170.177 -8.29812 8.29812 1.14 0.00169613 0.00155509 0.077868 0.0714676 46 3286 28 6.79088e+06 296384 828058. 2865.25 3.85 0.473727 0.426908 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0627477 0.0571236 144 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.24 17324 13 0.18 -1 -1 32360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 919 12292 3407 6536 2349 55.1 MiB 0.17 0.00 7.20737 -146.133 -7.20737 7.20737 1.11 0.0012935 0.00118455 0.0965605 0.0883512 36 2720 18 6.79088e+06 242496 648988. 2245.63 3.50 0.378248 0.339929 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0558411 0.0504664 104 146 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.30 17988 13 0.41 -1 -1 32892 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 17.4 MiB 1.64 1350 9234 2593 5787 854 55.9 MiB 0.17 0.00 8.31996 -168.69 -8.31996 8.31996 1.10 0.00171185 0.00157099 0.0921929 0.084664 38 3825 50 6.79088e+06 296384 678818. 2348.85 6.28 0.531173 0.478025 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.31 0.17 0.22 -1 -1 0.31 0.0717698 0.0650931 145 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17596 14 0.30 -1 -1 32728 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 16.9 MiB 1.56 1251 6312 1329 4019 964 55.6 MiB 0.12 0.00 8.37235 -176.058 -8.37235 8.37235 1.08 0.00148454 0.00134885 0.0607203 0.0556678 40 3069 17 6.79088e+06 242496 706193. 2443.58 3.49 0.391135 0.351722 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.30 0.16 0.29 -1 -1 0.30 0.0660097 0.0598009 128 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.29 17824 13 0.22 -1 -1 32868 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 16.9 MiB 1.75 1125 7914 1884 5216 814 55.5 MiB 0.14 0.00 7.39828 -160.2 -7.39828 7.39828 1.08 0.00150998 0.00138583 0.0720707 0.0661485 38 3005 21 6.79088e+06 255968 678818. 2348.85 4.19 0.39292 0.352989 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0694596 0.0627824 124 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17832 13 0.21 -1 -1 32728 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 17.0 MiB 1.60 1096 8306 2939 4353 1014 55.6 MiB 0.14 0.00 7.45237 -146.107 -7.45237 7.45237 1.09 0.00148541 0.00136115 0.0753578 0.0691005 38 3152 24 6.79088e+06 255968 678818. 2348.85 4.26 0.401484 0.359786 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.29 0.11 0.28 -1 -1 0.29 0.052931 0.0479947 121 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17904 14 0.36 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1434 9943 2708 5582 1653 55.8 MiB 0.13 0.00 8.52022 -179.043 -8.52022 8.52022 0.75 0.00177437 0.00162715 0.0609507 0.0555544 46 3715 29 6.79088e+06 282912 828058. 2865.25 4.83 0.473011 0.425609 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.34 0.15 0.24 -1 -1 0.34 0.0658054 0.0598805 154 216 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17828 11 0.27 -1 -1 32680 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 16.7 MiB 1.96 1077 10149 2679 5779 1691 55.4 MiB 0.16 0.00 7.52622 -140.559 -7.52622 7.52622 1.10 0.00152958 0.00140211 0.0896496 0.0822676 36 3431 24 6.79088e+06 309856 648988. 2245.63 7.13 0.437452 0.393774 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0631941 0.0571923 136 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17544 13 0.16 -1 -1 32720 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.81 972 6054 1229 4689 136 55.0 MiB 0.10 0.00 6.97458 -160.094 -6.97458 6.97458 1.09 0.00122375 0.00111052 0.0492924 0.0451384 44 2580 35 6.79088e+06 188608 787024. 2723.27 2.84 0.337194 0.301947 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.33 0.09 0.34 -1 -1 0.33 0.0404734 0.0367331 98 128 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 18096 14 0.24 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 17.0 MiB 1.59 963 3581 624 2890 67 55.5 MiB 0.08 0.00 8.38402 -165.799 -8.38402 8.38402 1.12 0.00151563 0.00139046 0.0359025 0.032999 36 3137 33 6.79088e+06 229024 648988. 2245.63 5.88 0.296309 0.264822 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0708874 0.0640701 122 173 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.17 18136 15 0.40 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 17.5 MiB 1.46 1424 5271 949 4056 266 56.1 MiB 0.12 0.00 9.1358 -193.594 -9.1358 9.1358 1.10 0.00191638 0.00175782 0.0604098 0.0554736 40 3948 49 6.79088e+06 309856 706193. 2443.58 4.66 0.525457 0.472243 26254 175826 -1 3616 22 2383 6323 430097 92001 7.89475 7.89475 -181.053 -7.89475 0 0 926341. 3205.33 0.30 0.22 0.29 -1 -1 0.30 0.0862745 0.078289 163 240 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17644 11 0.16 -1 -1 32556 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 16.6 MiB 1.53 958 10726 3368 5272 2086 55.2 MiB 0.14 0.00 6.79222 -142.45 -6.79222 6.79222 1.15 0.00120321 0.00110204 0.0728711 0.0665771 30 2689 41 6.79088e+06 202080 556674. 1926.21 1.84 0.271629 0.243924 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0450699 0.0408443 97 126 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17324 12 0.20 -1 -1 32932 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 1114 10400 2653 5866 1881 55.3 MiB 0.16 0.00 6.63358 -148.815 -6.63358 6.63358 1.08 0.00134166 0.00122925 0.0857501 0.0785564 38 3230 30 6.79088e+06 229024 678818. 2348.85 4.09 0.390863 0.351008 25966 169698 -1 2582 19 1265 3460 189795 41991 5.82549 5.82549 -148.72 -5.82549 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0538804 0.0487273 112 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.27 17592 12 0.27 -1 -1 32780 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1409 5123 1016 3643 464 55.8 MiB 0.10 0.00 7.37446 -165.375 -7.37446 7.37446 1.08 0.00173209 0.00158717 0.0547006 0.0501989 38 3552 27 6.79088e+06 255968 678818. 2348.85 3.62 0.44624 0.401417 25966 169698 -1 3027 19 1404 4076 214650 48148 6.46241 6.46241 -154.792 -6.46241 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0703111 0.0638381 143 206 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.28 17640 12 0.24 -1 -1 32936 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1290 8804 2224 5446 1134 55.5 MiB 0.15 0.00 7.66631 -156.992 -7.66631 7.66631 1.10 0.00145579 0.00132651 0.0803032 0.0736579 38 3773 50 6.79088e+06 242496 678818. 2348.85 7.28 0.4925 0.442502 25966 169698 -1 2908 20 1397 4117 236922 51526 6.45897 6.45897 -151.356 -6.45897 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0275586 0.024886 130 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.29 18044 14 0.43 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 17.5 MiB 1.79 1339 6323 1159 4879 285 56.0 MiB 0.13 0.00 9.2305 -183.989 -9.2305 9.2305 1.12 0.00191143 0.00175157 0.0700871 0.0643737 38 3705 30 6.79088e+06 296384 678818. 2348.85 4.18 0.517858 0.467192 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0733484 0.0668142 167 233 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17664 12 0.21 -1 -1 32704 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.52 1023 10231 4165 5804 262 55.4 MiB 0.16 0.00 7.21752 -140.072 -7.21752 7.21752 1.12 0.00144096 0.00132066 0.0889305 0.0815878 36 3532 36 6.79088e+06 255968 648988. 2245.63 8.44 0.435246 0.390884 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.049137 0.0445402 121 158 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.23 17384 11 0.18 -1 -1 32596 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.5 MiB 1.95 852 9208 3256 4555 1397 55.2 MiB 0.06 0.00 7.04622 -127.422 -7.04622 7.04622 1.11 0.000447685 0.000402769 0.0275598 0.0249121 30 2286 23 6.79088e+06 255968 556674. 1926.21 1.28 0.199496 0.178894 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0429394 0.038945 104 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.23 18356 13 0.43 -1 -1 32820 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 18.0 MiB 1.54 1698 8532 2074 5800 658 56.5 MiB 0.18 0.00 7.91451 -163.387 -7.91451 7.91451 1.08 0.00212415 0.00194723 0.0968134 0.0888205 46 4524 47 6.79088e+06 350272 828058. 2865.25 6.17 0.641328 0.578909 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0836163 0.0763234 188 286 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 17900 14 0.28 -1 -1 33248 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1264 9385 2554 5852 979 55.6 MiB 0.16 0.00 8.41881 -168.357 -8.41881 8.41881 1.11 0.00155799 0.00142834 0.0840395 0.0770408 30 3443 28 6.79088e+06 296384 556674. 1926.21 2.68 0.302763 0.273077 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0574591 0.0520993 130 186 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17936 12 0.16 -1 -1 32432 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 16.5 MiB 1.53 1075 7736 1882 5428 426 55.2 MiB 0.12 0.00 7.20863 -155.968 -7.20863 7.20863 1.10 0.00129196 0.00118232 0.0605415 0.0554382 38 2746 23 6.79088e+06 242496 678818. 2348.85 3.75 0.355069 0.319368 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0495451 0.0448983 109 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.25 17940 13 0.27 -1 -1 32908 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 17.1 MiB 1.37 1233 12542 3940 6787 1815 55.6 MiB 0.19 0.00 8.09146 -166.475 -8.09146 8.09146 1.10 0.00151712 0.00139019 0.111788 0.102523 36 3202 30 6.79088e+06 242496 648988. 2245.63 5.96 0.468673 0.42218 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0666535 0.0603667 128 169 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.30 18088 13 0.32 -1 -1 32924 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 17.4 MiB 1.61 1392 4695 845 3563 287 56.0 MiB 0.10 0.00 7.47587 -155.329 -7.47587 7.47587 1.13 0.0018211 0.00166868 0.0505948 0.0465154 40 3664 28 6.79088e+06 323328 706193. 2443.58 4.38 0.471906 0.425029 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0706126 0.0642379 157 230 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.24 17768 11 0.24 -1 -1 32696 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 17.1 MiB 1.58 1218 4659 929 3342 388 55.7 MiB 0.09 0.00 7.06923 -144.171 -7.06923 7.06923 1.12 0.00161455 0.00147964 0.0459976 0.0422468 36 3280 38 6.79088e+06 296384 648988. 2245.63 5.72 0.451043 0.405113 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.30 0.14 0.25 -1 -1 0.30 0.0629935 0.0572602 141 199 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 18224 15 0.36 -1 -1 32724 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 17.3 MiB 1.44 1290 8402 2178 5761 463 55.8 MiB 0.16 0.00 8.74612 -186.954 -8.74612 8.74612 1.11 0.00222516 0.00203988 0.0848816 0.0777432 46 3189 27 6.79088e+06 296384 828058. 2865.25 3.92 0.477728 0.430526 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.33 0.27 0.33 -1 -1 0.33 0.0948042 0.0857969 147 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.27 18188 13 0.31 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 17.1 MiB 1.91 1316 8641 2148 5636 857 55.8 MiB 0.15 0.00 8.07216 -175.63 -8.07216 8.07216 1.10 0.00166204 0.00152135 0.0828159 0.075941 40 2999 17 6.79088e+06 282912 706193. 2443.58 2.66 0.446771 0.402927 26254 175826 -1 2987 16 1343 3851 238119 53175 7.04981 7.04981 -167.947 -7.04981 0 0 926341. 3205.33 0.31 0.13 0.29 -1 -1 0.31 0.0582067 0.0528657 143 191 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.25 17556 12 0.19 -1 -1 32572 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 16.7 MiB 1.57 864 9543 2234 6923 386 55.1 MiB 0.14 0.00 7.58072 -150.751 -7.58072 7.58072 1.08 0.00134989 0.0012393 0.0801306 0.0735426 38 2787 32 6.79088e+06 242496 678818. 2348.85 4.81 0.399484 0.359485 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0471161 0.0428097 111 154 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.25 17824 11 0.15 -1 -1 32684 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 16.6 MiB 1.43 1018 5722 1217 4259 246 55.2 MiB 0.09 0.00 6.71746 -144.764 -6.71746 6.71746 1.08 0.00125485 0.00114851 0.0470147 0.0430831 36 2822 26 6.79088e+06 188608 648988. 2245.63 4.93 0.334063 0.299746 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.30 0.10 0.25 -1 -1 0.30 0.0458279 0.0414974 98 141 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.25 17780 13 0.31 -1 -1 32932 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1236 5940 1259 4215 466 55.7 MiB 0.12 0.00 8.31912 -162.691 -8.31912 8.31912 1.08 0.00166489 0.00152751 0.0597696 0.0548745 38 3344 20 6.79088e+06 282912 678818. 2348.85 3.64 0.41408 0.372299 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.05824 0.0529257 143 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.21 17344 10 0.15 -1 -1 32740 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.4 MiB 1.75 951 4560 1025 3135 400 55.1 MiB 0.07 0.00 6.21922 -128.027 -6.21922 6.21922 1.09 0.00122851 0.00111743 0.0375568 0.034471 30 2695 24 6.79088e+06 229024 556674. 1926.21 2.04 0.208946 0.188001 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0460033 0.0416265 101 134 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17552 14 0.19 -1 -1 32580 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 16.9 MiB 2.56 984 4532 878 3142 512 55.3 MiB 0.09 0.00 7.85466 -160.915 -7.85466 7.85466 1.13 0.00131867 0.0012064 0.0397098 0.0364887 34 3083 47 6.79088e+06 242496 618332. 2139.56 6.14 0.400214 0.358711 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0499815 0.0452653 110 145 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.25 17900 13 0.28 -1 -1 32720 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 17.2 MiB 2.31 1210 8183 2048 5045 1090 55.8 MiB 0.14 0.00 7.80505 -164.773 -7.80505 7.80505 1.08 0.00149214 0.00136747 0.0727666 0.066751 38 3002 19 6.79088e+06 269440 678818. 2348.85 3.84 0.398218 0.358231 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.29 0.12 0.20 -1 -1 0.29 0.0534021 0.0485201 125 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.24 17404 12 0.15 -1 -1 32664 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 3.10 940 12120 3498 6380 2242 55.3 MiB 0.16 0.00 6.85518 -144.407 -6.85518 6.85518 1.04 0.0012188 0.0011157 0.0895423 0.0819516 46 2350 15 6.79088e+06 229024 828058. 2865.25 2.76 0.336883 0.302995 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0441767 0.0400099 99 134 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.23 17812 12 0.20 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 17.0 MiB 1.91 1190 9694 2639 6567 488 55.6 MiB 0.16 0.00 7.04874 -155.773 -7.04874 7.04874 1.10 0.00159434 0.001459 0.091743 0.0840187 46 2758 18 6.79088e+06 242496 828058. 2865.25 2.95 0.429738 0.386783 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.37 0.11 0.33 -1 -1 0.37 0.0538111 0.0488858 130 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.28 18088 13 0.28 -1 -1 32860 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.08 1303 8543 2004 5667 872 55.7 MiB 0.15 0.00 7.83951 -165.716 -7.83951 7.83951 1.09 0.00162403 0.00148739 0.0821141 0.0751874 38 3278 20 6.79088e+06 269440 678818. 2348.85 4.52 0.438765 0.395208 25966 169698 -1 2822 21 1439 4066 220511 48947 6.93332 6.93332 -157.758 -6.93332 0 0 902133. 3121.57 0.31 0.15 0.25 -1 -1 0.31 0.0736603 0.0666597 143 191 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17640 11 0.17 -1 -1 32752 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 16.4 MiB 1.83 1116 6616 1429 3881 1306 55.0 MiB 0.10 0.00 6.2158 -147.345 -6.2158 6.2158 1.08 0.001282 0.001174 0.0530145 0.0485487 36 3218 33 6.79088e+06 215552 648988. 2245.63 4.52 0.358557 0.321304 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0497483 0.0452275 106 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17368 13 0.21 -1 -1 32632 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 2.47 994 9543 2876 4545 2122 55.3 MiB 0.15 0.00 7.66009 -161.63 -7.66009 7.66009 0.88 0.00143813 0.00131906 0.0852099 0.078042 38 3161 25 6.79088e+06 202080 678818. 2348.85 5.45 0.402065 0.361318 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.26 0.12 0.14 -1 -1 0.26 0.0602439 0.0545377 113 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.15 17812 13 0.25 -1 -1 32836 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 17.0 MiB 1.14 1317 8183 2040 5445 698 55.6 MiB 0.14 0.00 7.48608 -168.657 -7.48608 7.48608 1.12 0.00159587 0.00146318 0.077455 0.0710196 38 3334 18 6.79088e+06 255968 678818. 2348.85 3.64 0.41786 0.376314 25966 169698 -1 2836 17 1443 3829 193627 45163 6.69849 6.69849 -160.313 -6.69849 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640862 0.05816 136 191 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.26 17812 11 0.19 -1 -1 32620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 16.9 MiB 1.87 932 11088 4572 6163 353 55.4 MiB 0.16 0.00 6.40374 -127.638 -6.40374 6.40374 1.11 0.00138433 0.00126777 0.0936474 0.0858267 38 3204 35 6.79088e+06 255968 678818. 2348.85 8.79 0.436128 0.391873 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.31 0.11 0.28 -1 -1 0.31 0.048609 0.0440898 116 158 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.28 18296 14 0.31 -1 -1 33416 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 17.2 MiB 1.41 1275 12567 3064 6849 2654 55.7 MiB 0.22 0.00 8.90517 -187.129 -8.90517 8.90517 1.21 0.00184271 0.00168995 0.128182 0.117686 38 3597 20 6.79088e+06 309856 678818. 2348.85 3.50 0.422677 0.38148 25966 169698 -1 2719 15 1368 3478 182247 41956 8.06351 8.06351 -178.421 -8.06351 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0620139 0.0565333 159 224 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17248 12 0.15 -1 -1 32560 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 16.6 MiB 2.25 1076 14144 4263 7957 1924 55.2 MiB 0.18 0.00 6.67019 -155.032 -6.67019 6.67019 1.09 0.0012103 0.00110736 0.0988914 0.0905011 38 2834 33 6.79088e+06 255968 678818. 2348.85 3.94 0.382026 0.343349 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.30 0.10 0.27 -1 -1 0.30 0.0436854 0.0395255 106 131 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 17932 13 0.29 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 1.40 1249 10698 2850 6495 1353 55.6 MiB 0.18 0.00 8.17702 -169.59 -8.17702 8.17702 1.08 0.00160484 0.00147248 0.0989186 0.0907962 38 3574 20 6.79088e+06 269440 678818. 2348.85 4.38 0.438388 0.394867 25966 169698 -1 2827 19 1307 3681 195634 44638 7.25013 7.25013 -165.64 -7.25013 0 0 902133. 3121.57 0.31 0.18 0.27 -1 -1 0.31 0.0859186 0.0778216 136 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17940 13 0.18 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 16.5 MiB 1.09 988 12528 4457 5893 2178 55.2 MiB 0.17 0.00 7.60722 -166.135 -7.60722 7.60722 1.09 0.00129296 0.00118408 0.0926856 0.0848827 38 2718 29 6.79088e+06 269440 678818. 2348.85 3.11 0.383651 0.345026 25966 169698 -1 2116 22 1062 2686 131823 31124 6.36938 6.36938 -151.235 -6.36938 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0580037 0.0523704 107 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32860 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1129 6563 1390 4948 225 55.5 MiB 0.12 0.00 7.37103 -160.155 -7.37103 7.37103 1.08 0.00155782 0.00142697 0.0617814 0.056684 30 3342 45 6.79088e+06 255968 556674. 1926.21 2.91 0.326029 0.293444 24526 138013 -1 2538 16 1126 3371 177495 40121 6.37287 6.37287 -151.837 -6.37287 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0545174 0.0494777 128 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18520 15 0.47 -1 -1 33452 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 17.5 MiB 1.15 1461 7019 1723 4462 834 56.2 MiB 0.08 0.00 9.4802 -194.196 -9.4802 9.4802 1.10 0.000742782 0.000669311 0.0318727 0.028896 40 3857 20 6.79088e+06 336800 706193. 2443.58 4.56 0.481506 0.433224 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.30 0.21 0.28 -1 -1 0.30 0.0869634 0.0791462 183 256 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.22 17068 10 0.10 -1 -1 32152 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 16.0 MiB 1.44 790 7049 2015 4252 782 54.6 MiB 0.09 0.00 4.74332 -119.113 -4.74332 4.74332 1.15 0.000906631 0.00083008 0.044015 0.0403297 30 2094 24 6.79088e+06 161664 556674. 1926.21 1.95 0.163309 0.146204 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0297253 0.0267531 66 84 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17336 13 0.18 -1 -1 32616 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 16.5 MiB 1.47 974 10050 2926 5436 1688 55.3 MiB 0.14 0.00 7.74787 -157.983 -7.74787 7.74787 1.08 0.00127586 0.00116938 0.0798866 0.0732232 36 2911 43 6.79088e+06 229024 648988. 2245.63 4.65 0.417154 0.375892 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.29 0.13 0.27 -1 -1 0.29 0.0471027 0.0428886 103 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.25 17456 12 0.19 -1 -1 32648 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 17.0 MiB 1.86 1289 8448 2191 5318 939 55.5 MiB 0.14 0.00 7.18863 -160.485 -7.18863 7.18863 1.12 0.00146182 0.0013404 0.0733671 0.067316 38 3079 21 6.79088e+06 242496 678818. 2348.85 3.93 0.387811 0.348234 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0485068 0.044015 117 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17276 9 0.13 -1 -1 32488 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 16.2 MiB 0.82 752 9555 2712 5903 940 54.7 MiB 0.11 0.00 5.16629 -99.605 -5.16629 5.16629 1.10 0.00101083 0.000926136 0.0642708 0.0588988 30 2043 29 6.79088e+06 242496 556674. 1926.21 1.53 0.20802 0.186909 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0368551 0.0332237 86 110 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17652 12 0.25 -1 -1 32848 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.47 1312 13291 3621 7142 2528 55.7 MiB 0.22 0.00 7.35568 -164.212 -7.35568 7.35568 1.08 0.00167342 0.00152956 0.124389 0.113789 38 3697 28 6.79088e+06 282912 678818. 2348.85 6.45 0.517625 0.466691 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.29 0.14 0.28 -1 -1 0.29 0.062348 0.0567161 143 206 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.33 18436 13 0.58 -1 -1 32636 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 17.4 MiB 1.85 1311 13291 3763 7122 2406 55.8 MiB 0.22 0.00 8.3208 -173.057 -8.3208 8.3208 1.09 0.00169452 0.00155248 0.126755 0.116275 34 4579 49 6.79088e+06 296384 618332. 2139.56 9.72 0.576887 0.519299 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.065995 0.0596471 147 199 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.15 17528 1 0.03 -1 -1 30012 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 17.4 MiB 2.84 1137 15768 5063 8031 2674 56.0 MiB 0.25 0.00 5.46262 -163.811 -5.46262 5.46262 1.09 0.00116984 0.00107307 0.0975617 0.0894697 34 2793 23 6.87369e+06 363320 618332. 2139.56 2.50 0.352454 0.316595 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0427335 0.0384346 142 50 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30384 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 17.3 MiB 2.31 995 9347 2406 6094 847 55.9 MiB 0.16 0.00 4.40625 -134.148 -4.40625 4.40625 1.09 0.00118972 0.00109178 0.061674 0.056611 34 2568 29 6.87369e+06 335372 618332. 2139.56 2.19 0.329611 0.295604 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.049165 0.0442191 138 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 17.2 MiB 2.46 954 15337 4637 8345 2355 55.7 MiB 0.21 0.00 4.42735 -120.659 -4.42735 4.42735 1.09 0.00102822 0.00094253 0.0877293 0.0803448 34 2485 25 6.87369e+06 293451 618332. 2139.56 2.00 0.316347 0.283453 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405266 0.0363609 124 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.10 17468 1 0.03 -1 -1 30120 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 17.2 MiB 0.93 990 16170 4805 9691 1674 55.7 MiB 0.23 0.00 4.56722 -126.881 -4.56722 4.56722 1.12 0.00104656 0.000959559 0.0861792 0.0790357 34 2380 21 6.87369e+06 405241 618332. 2139.56 2.13 0.307887 0.276164 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0469857 0.0420779 124 31 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30112 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 17.1 MiB 1.14 1020 12127 3332 7989 806 55.7 MiB 0.19 0.00 4.58138 -135.491 -4.58138 4.58138 1.10 0.00114263 0.00104674 0.0708246 0.0648306 28 2864 24 6.87369e+06 377294 531479. 1839.03 1.75 0.192581 0.172176 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0508992 0.0456721 131 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.12 17548 1 0.03 -1 -1 30152 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 17.1 MiB 1.28 1076 15643 4151 9274 2218 55.8 MiB 0.22 0.00 3.36233 -119.977 -3.36233 3.36233 1.10 0.00119656 0.00109639 0.0909206 0.0833503 28 2604 23 6.87369e+06 419215 531479. 1839.03 1.24 0.245803 0.221516 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0493979 0.0444308 136 58 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30452 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 16.8 MiB 1.94 768 11200 3422 6221 1557 55.3 MiB 0.14 0.00 3.88482 -108.503 -3.88482 3.88482 1.10 0.000888851 0.000813251 0.0623708 0.0571038 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.85 0.245005 0.218902 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0346178 0.0309264 97 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 29940 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.83 962 13487 3595 7903 1989 55.5 MiB 0.16 0.00 3.53179 -106.578 -3.53179 3.53179 1.09 0.000976574 0.000896195 0.0633145 0.0580553 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.85 0.2634 0.235979 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03849 0.0344779 119 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29964 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 925 12636 4369 6197 2070 55.7 MiB 0.18 0.00 3.30197 -112.873 -3.30197 3.30197 1.09 0.00103193 0.000944823 0.0786399 0.0720205 36 2160 23 6.87369e+06 237555 648988. 2245.63 2.16 0.298473 0.267127 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0406624 0.0363944 113 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.20 17480 1 0.03 -1 -1 30020 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 16.8 MiB 3.35 866 10916 3152 5921 1843 55.4 MiB 0.16 0.00 4.09393 -136.454 -4.09393 4.09393 1.09 0.00101297 0.000928277 0.0669555 0.0614164 34 2156 24 6.87369e+06 223581 618332. 2139.56 2.04 0.288252 0.258015 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416932 0.0373387 107 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30148 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 17.0 MiB 2.73 765 11532 2973 7641 918 55.5 MiB 0.16 0.00 4.09699 -119.415 -4.09699 4.09699 1.11 0.00100162 0.000916988 0.0721129 0.0660676 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.87 0.277695 0.248346 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0397461 0.0355601 98 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 29912 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.7 MiB 2.07 706 8306 1954 5512 840 55.3 MiB 0.11 0.00 3.6525 -111.833 -3.6525 3.6525 1.10 0.00095027 0.000870694 0.0477752 0.0438127 36 1988 27 6.87369e+06 237555 648988. 2245.63 2.24 0.255915 0.227923 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.036027 0.0322133 107 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30120 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.3 MiB 3.24 1028 16599 6315 8361 1923 55.9 MiB 0.26 0.00 4.13563 -133.6 -4.13563 4.13563 1.12 0.00116085 0.00106309 0.103384 0.0947033 34 3057 25 6.87369e+06 321398 618332. 2139.56 2.48 0.346776 0.311304 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0500973 0.0450245 142 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30116 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 17.2 MiB 2.16 989 10031 2534 6882 615 55.9 MiB 0.17 0.00 4.81484 -142.23 -4.81484 4.81484 1.18 0.0012104 0.00111051 0.0592255 0.0543181 32 2593 24 6.87369e+06 433189 586450. 2029.24 1.40 0.218992 0.196897 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.050661 0.0455 133 61 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17284 1 0.03 -1 -1 30128 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 614 5068 1019 3719 330 55.1 MiB 0.07 0.00 3.26207 -95.0897 -3.26207 3.26207 1.10 0.00086205 0.000790637 0.0280054 0.0257328 26 1919 28 6.87369e+06 265503 503264. 1741.40 1.22 0.146405 0.130499 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0438057 0.0392496 94 27 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17840 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 17.3 MiB 1.78 1007 16078 5563 8042 2473 55.9 MiB 0.25 0.00 3.7063 -122.467 -3.7063 3.7063 1.10 0.00120518 0.0011045 0.103101 0.0945459 34 2625 21 6.87369e+06 335372 618332. 2139.56 2.17 0.35071 0.314953 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0520151 0.0467671 135 58 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 29916 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 17.2 MiB 3.49 1032 15523 6549 8204 770 55.8 MiB 0.22 0.00 4.15353 -134.149 -4.15353 4.15353 1.09 0.00113799 0.00104339 0.0983876 0.0900048 34 2905 38 6.87369e+06 293451 618332. 2139.56 2.55 0.382702 0.343308 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.022077 0.0196645 140 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17664 1 0.03 -1 -1 30088 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 16.9 MiB 2.22 847 14168 4025 7985 2158 55.6 MiB 0.18 0.00 3.09156 -110.795 -3.09156 3.09156 1.10 0.00105161 0.000962638 0.0747061 0.0683976 34 2031 19 6.87369e+06 391268 618332. 2139.56 2.00 0.29416 0.263193 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0466682 0.0416947 109 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 29884 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 16.5 MiB 0.52 656 11276 3436 6760 1080 55.1 MiB 0.12 0.00 2.61023 -88.8242 -2.61023 2.61023 1.11 0.000769556 0.000704437 0.0566723 0.0519054 32 1559 23 6.87369e+06 195634 586450. 2029.24 1.24 0.156387 0.139138 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.25 0.07 0.25 -1 -1 0.25 0.0338849 0.0300959 71 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30396 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 2.59 778 9338 2420 6492 426 55.6 MiB 0.15 0.00 4.95513 -145.252 -4.95513 4.95513 1.09 0.000988702 0.000906832 0.0545129 0.0499787 34 2105 23 6.87369e+06 265503 618332. 2139.56 1.96 0.26454 0.236279 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0378891 0.0339741 116 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.23 17544 1 0.03 -1 -1 30196 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 17.1 MiB 0.77 985 11499 2787 8050 662 55.7 MiB 0.17 0.00 4.26399 -136.517 -4.26399 4.26399 1.09 0.00115183 0.00105591 0.0614296 0.0563335 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.51 0.254125 0.22832 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0611862 0.0549181 137 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30200 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 1.90 995 6701 1305 5169 227 55.7 MiB 0.13 0.00 4.31715 -129.69 -4.31715 4.31715 1.10 0.00121195 0.00111218 0.0462457 0.0424281 34 3077 27 6.87369e+06 307425 618332. 2139.56 2.87 0.319943 0.286288 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.29 0.15 0.24 -1 -1 0.29 0.0550466 0.0496728 142 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17368 1 0.02 -1 -1 30396 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 16.4 MiB 1.53 371 10977 3839 5013 2125 55.0 MiB 0.11 0.00 2.58413 -70.3474 -2.58413 2.58413 1.16 0.000658575 0.000601153 0.0482886 0.0441518 28 1325 27 6.87369e+06 237555 531479. 1839.03 1.15 0.136795 0.122014 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0281548 0.0249888 67 30 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17040 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.7 MiB 0.91 952 5847 1159 4467 221 55.5 MiB 0.09 0.00 4.63338 -129.909 -4.63338 4.63338 1.08 0.00101034 0.000927375 0.0331739 0.030414 30 2387 25 6.87369e+06 321398 556674. 1926.21 1.37 0.17051 0.152598 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0503555 0.0453994 119 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 16972 1 0.02 -1 -1 29912 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.4 MiB 0.39 704 9676 3283 5033 1360 54.9 MiB 0.06 0.00 2.58823 -84.5042 -2.58823 2.58823 1.14 0.000636772 0.000581042 0.0187246 0.0169526 28 1429 20 6.87369e+06 167686 531479. 1839.03 1.16 0.0987679 0.0873839 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.23 0.05 0.20 -1 -1 0.23 0.0209922 0.0186754 65 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17208 1 0.03 -1 -1 29824 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 16.6 MiB 0.75 922 10744 2499 7805 440 55.4 MiB 0.15 0.00 4.70738 -131.097 -4.70738 4.70738 1.09 0.00103964 0.000954101 0.0552546 0.0506788 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.46 0.184955 0.166174 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.22 0.13 0.19 -1 -1 0.22 0.0514779 0.0461193 120 24 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.11 17124 1 0.03 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.9 MiB 0.78 1018 15215 4457 9037 1721 55.4 MiB 0.20 0.00 3.58631 -115.037 -3.58631 3.58631 1.10 0.00105965 0.000973512 0.0766369 0.070337 28 2435 25 6.87369e+06 433189 531479. 1839.03 1.34 0.217143 0.195634 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0349007 0.0314423 130 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30120 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1070 17066 5177 9769 2120 55.7 MiB 0.25 0.00 4.79173 -136.462 -4.79173 4.79173 1.09 0.00111852 0.00102531 0.0955342 0.0875644 30 2520 24 6.87369e+06 391268 556674. 1926.21 1.32 0.241781 0.217889 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0391791 0.0352783 131 50 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17544 1 0.03 -1 -1 29932 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 16.7 MiB 0.82 703 9368 2220 5797 1351 55.3 MiB 0.14 0.00 3.24007 -107.338 -3.24007 3.24007 1.09 0.000969356 0.000888815 0.0558179 0.0512335 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.89 0.25784 0.230376 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.039734 0.0355098 99 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17204 1 0.03 -1 -1 30260 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 16.9 MiB 1.05 624 12763 3540 6427 2796 55.4 MiB 0.14 0.00 3.24697 -98.9537 -3.24697 3.24697 1.10 0.000905242 0.000828437 0.0592897 0.0542704 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.88 0.255693 0.228092 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0341161 0.0305116 97 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30028 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 16.9 MiB 0.82 763 12694 4114 7113 1467 55.4 MiB 0.16 0.00 3.5993 -104.629 -3.5993 3.5993 1.09 0.000895647 0.000821123 0.0706879 0.0648407 32 2109 21 6.87369e+06 251529 586450. 2029.24 1.27 0.182496 0.163976 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.24 0.09 0.16 -1 -1 0.24 0.0341036 0.0304703 95 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.78 834 13031 3636 7853 1542 55.5 MiB 0.17 0.00 3.99153 -123.226 -3.99153 3.99153 1.10 0.000908594 0.00083343 0.0701986 0.0643919 30 1992 21 6.87369e+06 237555 556674. 1926.21 1.21 0.185159 0.166466 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0358872 0.0320927 101 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30080 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 17.0 MiB 0.92 614 5831 1071 4187 573 55.5 MiB 0.08 0.00 3.5993 -104.92 -3.5993 3.5993 1.11 0.000942266 0.000863803 0.030124 0.0275994 34 1764 25 6.87369e+06 363320 618332. 2139.56 2.01 0.226207 0.201135 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0341071 0.030541 102 30 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30232 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 16.7 MiB 2.67 863 14072 4376 7539 2157 55.3 MiB 0.17 0.00 3.04756 -100.489 -3.04756 3.04756 1.10 0.000963519 0.000882567 0.0742504 0.0680318 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.93 0.282524 0.252565 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0364303 0.0325656 106 54 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 30368 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 17.2 MiB 3.11 1118 10108 2278 7040 790 55.8 MiB 0.16 0.00 4.17389 -123.088 -4.17389 4.17389 1.13 0.00125377 0.00115196 0.0551752 0.0506494 26 3090 38 6.87369e+06 558954 503264. 1741.40 2.37 0.24751 0.22246 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.21 0.37 0.10 -1 -1 0.21 0.158687 0.142126 156 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 30056 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 17.4 MiB 2.85 1050 18428 5889 9545 2994 55.9 MiB 0.25 0.00 3.99748 -134.85 -3.99748 3.99748 1.10 0.00126275 0.00115732 0.101552 0.0929345 30 2304 26 6.87369e+06 531006 556674. 1926.21 1.35 0.270848 0.244201 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0457081 0.0411272 148 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17728 1 0.03 -1 -1 29884 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.9 MiB 1.85 729 12681 4828 6102 1751 55.5 MiB 0.17 0.00 4.09163 -121.55 -4.09163 4.09163 1.10 0.000998343 0.000909436 0.0727164 0.0665998 36 2115 36 6.87369e+06 251529 648988. 2245.63 2.52 0.297918 0.266009 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0363083 0.0325031 109 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30232 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 17.2 MiB 2.26 953 14543 4925 6755 2863 55.8 MiB 0.22 0.00 3.78134 -121.658 -3.78134 3.78134 1.10 0.00121753 0.00111707 0.092723 0.0851141 34 2770 24 6.87369e+06 363320 618332. 2139.56 2.26 0.354562 0.318161 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0495583 0.0445299 136 61 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17748 1 0.03 -1 -1 30272 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 17.2 MiB 3.56 1511 10033 2621 6359 1053 55.9 MiB 0.19 0.00 5.60672 -170.903 -5.60672 5.60672 1.10 0.00123988 0.0011376 0.0661355 0.0606186 36 3561 24 6.87369e+06 349346 648988. 2245.63 3.19 0.335264 0.300324 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.049363 0.0444416 159 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17440 1 0.03 -1 -1 30244 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 17.2 MiB 3.10 1142 14964 4330 8425 2209 55.8 MiB 0.24 0.00 5.2871 -162.814 -5.2871 5.2871 1.09 0.00124341 0.0011398 0.0961406 0.0882082 34 2876 29 6.87369e+06 377294 618332. 2139.56 2.24 0.373323 0.335345 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051341 0.046205 152 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.24 17680 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 17.0 MiB 2.56 964 8863 1996 5999 868 55.7 MiB 0.16 0.00 4.10673 -127.256 -4.10673 4.10673 1.09 0.00115809 0.00106169 0.0560972 0.0514876 34 2616 23 6.87369e+06 349346 618332. 2139.56 2.42 0.302219 0.270847 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0481247 0.0431939 131 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17344 1 0.03 -1 -1 30260 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 16.9 MiB 2.31 831 14175 5092 5953 3130 55.6 MiB 0.19 0.00 4.31305 -113.651 -4.31305 4.31305 1.11 0.0010069 0.000923402 0.0803594 0.0737034 34 2736 36 6.87369e+06 279477 618332. 2139.56 2.52 0.32399 0.289731 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0434897 0.0389097 119 27 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17812 1 0.03 -1 -1 30312 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57720 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 17.6 MiB 3.07 1125 12954 3388 8890 676 56.4 MiB 0.24 0.01 4.84068 -153.465 -4.84068 4.84068 1.08 0.00147061 0.0013497 0.0843156 0.0774585 30 2992 40 6.87369e+06 531006 556674. 1926.21 1.78 0.30639 0.275453 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.059998 0.0541759 173 87 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30168 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 16.7 MiB 1.54 779 13291 4134 7087 2070 55.2 MiB 0.17 0.00 3.55895 -107.74 -3.55895 3.55895 1.09 0.00090143 0.000826536 0.0672226 0.0616137 32 2017 21 6.87369e+06 307425 586450. 2029.24 1.30 0.182823 0.163825 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0343096 0.0306247 96 28 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30016 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.1 MiB 2.12 1055 8969 2107 6380 482 55.6 MiB 0.16 0.00 4.79158 -142.334 -4.79158 4.79158 1.08 0.00114727 0.0010531 0.0571597 0.052522 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.49 0.204889 0.184461 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0488297 0.0438813 140 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17472 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 17.2 MiB 1.72 980 9951 2142 7372 437 55.7 MiB 0.16 0.00 3.6843 -115.486 -3.6843 3.6843 1.10 0.00114017 0.00104345 0.054876 0.0502675 32 2890 26 6.87369e+06 447163 586450. 2029.24 1.52 0.214694 0.192887 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.28 0.13 0.22 -1 -1 0.28 0.0483915 0.0435044 132 53 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17272 1 0.03 -1 -1 29916 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 17.1 MiB 0.62 972 9537 2296 6533 708 55.6 MiB 0.15 0.00 4.25479 -129.925 -4.25479 4.25479 1.10 0.00103305 0.000948691 0.0517253 0.0474601 34 2449 22 6.87369e+06 363320 618332. 2139.56 2.04 0.272205 0.243703 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.042724 0.0383319 123 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30144 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 2.75 1122 14450 4547 7634 2269 55.9 MiB 0.22 0.00 5.14049 -153.237 -5.14049 5.14049 1.15 0.0011651 0.00106167 0.0920349 0.0844038 34 2716 24 6.87369e+06 307425 618332. 2139.56 2.03 0.341431 0.306754 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0483511 0.0435009 136 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17572 1 0.03 -1 -1 30108 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 17.1 MiB 2.76 990 17178 5882 8168 3128 55.6 MiB 0.22 0.00 3.6884 -118.378 -3.6884 3.6884 1.13 0.00119028 0.00109152 0.0969832 0.0890224 30 2877 24 6.87369e+06 447163 556674. 1926.21 2.06 0.24617 0.221899 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0506258 0.0454724 136 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17612 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 17.3 MiB 2.72 922 18795 6474 8507 3814 56.0 MiB 0.25 0.00 4.11773 -131.117 -4.11773 4.11773 1.09 0.001253 0.00114877 0.106613 0.0977332 34 3101 29 6.87369e+06 489084 618332. 2139.56 3.81 0.394023 0.354189 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0497199 0.0445939 144 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17500 1 0.03 -1 -1 30112 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 17.2 MiB 0.81 881 12751 3354 7696 1701 55.7 MiB 0.18 0.00 4.26989 -123.123 -4.26989 4.26989 1.14 0.00105861 0.000969819 0.0629599 0.0576046 30 2195 22 6.87369e+06 461137 556674. 1926.21 1.25 0.19795 0.177861 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0433435 0.038876 124 24 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 1.96 1140 14450 4739 7431 2280 55.7 MiB 0.22 0.00 4.86398 -140.272 -4.86398 4.86398 0.93 0.00108809 0.00099787 0.086344 0.0792406 34 2688 26 6.87369e+06 307425 618332. 2139.56 2.17 0.324166 0.291016 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.30 0.13 0.24 -1 -1 0.30 0.0510374 0.0458698 135 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.23 17548 1 0.03 -1 -1 30132 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 17.1 MiB 1.94 912 13105 4297 5300 3508 55.7 MiB 0.20 0.00 4.74348 -140.694 -4.74348 4.74348 1.10 0.00121584 0.00111409 0.0919869 0.0843179 36 3390 47 6.87369e+06 307425 648988. 2245.63 6.53 0.407763 0.365761 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0444339 0.0399813 141 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30156 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 17.0 MiB 2.52 1089 15709 4726 9045 1938 55.6 MiB 0.26 0.00 4.3693 -136.102 -4.3693 4.3693 1.10 0.00125378 0.00114917 0.11062 0.101378 34 2963 29 6.87369e+06 293451 618332. 2139.56 2.33 0.390143 0.350441 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0414054 0.0367764 135 77 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17516 1 0.03 -1 -1 29852 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 16.7 MiB 0.65 730 9914 2670 6709 535 55.2 MiB 0.13 0.00 3.5583 -105.077 -3.5583 3.5583 1.11 0.000888448 0.000814877 0.049088 0.045012 28 1795 23 6.87369e+06 307425 531479. 1839.03 1.19 0.163896 0.146544 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.25 0.09 0.20 -1 -1 0.25 0.0366539 0.0327269 93 23 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.15 17708 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 17.1 MiB 1.58 968 15568 5616 7798 2154 55.7 MiB 0.23 0.00 3.7434 -130.891 -3.7434 3.7434 1.10 0.00111355 0.00102049 0.100662 0.0921985 34 2779 24 6.87369e+06 251529 618332. 2139.56 2.48 0.345504 0.310017 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0513225 0.0459169 124 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30200 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 17.4 MiB 2.65 1427 16858 5256 9636 1966 55.9 MiB 0.31 0.01 5.58608 -163.667 -5.58608 5.58608 1.12 0.00130956 0.00119393 0.116751 0.106994 34 3599 26 6.87369e+06 335372 618332. 2139.56 2.40 0.400091 0.360503 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0565629 0.0509837 166 31 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30248 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 16.9 MiB 2.71 968 18998 5516 10575 2907 55.6 MiB 0.26 0.00 4.31005 -135.578 -4.31005 4.31005 1.15 0.00114826 0.00105287 0.10061 0.0921914 28 2295 25 6.87369e+06 475111 531479. 1839.03 1.43 0.254037 0.229213 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0497725 0.0447427 137 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30344 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 16.6 MiB 0.69 634 6615 1367 5002 246 55.2 MiB 0.10 0.00 3.6392 -108.305 -3.6392 3.6392 1.12 0.000949142 0.000870264 0.0351363 0.0322151 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.89 0.179869 0.160598 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0409999 0.0366091 104 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18040 1 0.03 -1 -1 30148 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 17.5 MiB 4.62 1457 14543 4326 8631 1586 56.0 MiB 0.25 0.00 5.90291 -175.463 -5.90291 5.90291 1.15 0.00140404 0.00128981 0.106924 0.098195 34 3438 35 6.87369e+06 349346 618332. 2139.56 2.82 0.450574 0.404975 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0567522 0.0510925 171 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 17.1 MiB 2.91 1003 17199 4580 10530 2089 55.8 MiB 0.22 0.00 4.63938 -140.336 -4.63938 4.63938 1.09 0.00113653 0.00104279 0.086217 0.0790462 32 2464 25 6.87369e+06 489084 586450. 2029.24 1.30 0.235118 0.211893 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.25 0.14 0.25 -1 -1 0.25 0.0583252 0.0523287 135 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.21 17004 1 0.03 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.6 MiB 0.60 878 10618 2802 6933 883 55.1 MiB 0.13 0.00 3.66956 -107.639 -3.66956 3.66956 1.09 0.000842428 0.000772955 0.0483077 0.0443019 30 1958 22 6.87369e+06 335372 556674. 1926.21 1.20 0.153992 0.137786 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0301438 0.0269005 94 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30088 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 17.2 MiB 1.91 1091 19371 5911 10963 2497 55.8 MiB 0.29 0.00 5.19487 -138.438 -5.19487 5.19487 1.09 0.00119073 0.00109154 0.107031 0.0981231 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.92 0.258793 0.233494 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0504607 0.0453269 145 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17020 1 0.03 -1 -1 29900 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.9 MiB 0.70 765 8363 1967 5928 468 55.4 MiB 0.12 0.00 3.6502 -113.574 -3.6502 3.6502 1.14 0.000890535 0.000816823 0.0436033 0.0399958 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.94 0.230874 0.206007 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0333727 0.0298343 98 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30260 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 16.8 MiB 2.14 687 8418 1716 5962 740 55.4 MiB 0.11 0.00 3.88482 -111.398 -3.88482 3.88482 1.10 0.000952754 0.000872315 0.0402322 0.0367669 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.77 0.160885 0.14387 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0341463 0.0305437 109 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.23 17824 1 0.03 -1 -1 30200 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 17.3 MiB 3.37 1118 13105 3443 8133 1529 55.9 MiB 0.22 0.00 4.10563 -124.474 -4.10563 4.10563 1.08 0.00117506 0.00107908 0.0855685 0.0785651 34 2878 24 6.87369e+06 335372 618332. 2139.56 2.29 0.344993 0.309998 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0515055 0.0461992 138 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30116 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 17.3 MiB 1.97 806 8532 1884 6173 475 55.9 MiB 0.13 0.00 4.39805 -136.981 -4.39805 4.39805 1.09 0.00117657 0.0010785 0.0530477 0.0486391 34 2439 23 6.87369e+06 363320 618332. 2139.56 2.09 0.299316 0.267767 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.26 0.11 0.20 -1 -1 0.26 0.0503472 0.0451689 132 54 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 29964 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 16.9 MiB 1.96 1121 14983 4753 8344 1886 55.6 MiB 0.23 0.00 4.71348 -141.457 -4.71348 4.71348 1.08 0.00117336 0.00107288 0.089057 0.0814205 32 3230 48 6.87369e+06 377294 586450. 2029.24 1.72 0.230021 0.20632 25474 144626 -1 2572 20 1540 2596 302466 61481 4.17136 4.17136 -144.462 -4.17136 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0466228 0.0418861 133 51 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30204 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.8 MiB 3.01 883 12923 4460 6401 2062 55.2 MiB 0.18 0.00 4.76482 -134.311 -4.76482 4.76482 1.11 0.000942363 0.000863762 0.0748571 0.0686393 34 2173 23 6.87369e+06 209608 618332. 2139.56 2.03 0.275504 0.246284 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0436354 0.0389494 103 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 16.8 MiB 2.36 973 14184 4741 7494 1949 55.5 MiB 0.20 0.00 3.76746 -124.928 -3.76746 3.76746 1.11 0.00104036 0.000952347 0.0890098 0.0815109 34 2486 19 6.87369e+06 237555 618332. 2139.56 2.15 0.311427 0.278515 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0397929 0.0356554 114 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30248 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 17.3 MiB 2.32 925 17835 5186 10054 2595 55.8 MiB 0.23 0.00 3.47005 -102.148 -3.47005 3.47005 1.12 0.00109299 0.000990592 0.0916177 0.0835937 32 2458 31 6.87369e+06 475111 586450. 2029.24 1.35 0.246458 0.221357 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464306 0.0415659 124 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.20 17204 1 0.03 -1 -1 30228 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 16.9 MiB 1.66 875 14783 4032 9129 1622 55.5 MiB 0.18 0.00 4.05975 -105.458 -4.05975 4.05975 1.12 0.000964005 0.00088451 0.0674525 0.0617504 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.63 0.198666 0.178204 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0397022 0.0354872 117 27 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30284 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 2.48 802 13599 4534 7471 1594 55.4 MiB 0.20 0.00 4.04073 -123.042 -4.04073 4.04073 1.10 0.00104353 0.000956607 0.0865742 0.0793737 28 2087 22 6.87369e+06 237555 531479. 1839.03 1.61 0.221733 0.199532 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.23 0.11 0.17 -1 -1 0.23 0.0433918 0.0388331 105 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17492 1 0.03 -1 -1 29956 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 17.1 MiB 2.50 1020 11806 3110 7534 1162 55.6 MiB 0.19 0.00 3.6756 -125.066 -3.6756 3.6756 1.11 0.00115759 0.00106548 0.0776347 0.0711589 34 2679 22 6.87369e+06 237555 618332. 2139.56 2.27 0.3156 0.282166 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0407596 0.0366541 122 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17216 1 0.03 -1 -1 30240 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 17.2 MiB 0.70 1014 15430 4861 8054 2515 55.7 MiB 0.21 0.00 4.6284 -133.663 -4.6284 4.6284 1.08 0.00103659 0.000950404 0.0778856 0.0713369 32 2693 29 6.87369e+06 433189 586450. 2029.24 1.45 0.2229 0.200597 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0394341 0.0354115 129 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.1 MiB 2.97 1172 16215 5632 8430 2153 55.8 MiB 0.28 0.01 4.82738 -155.303 -4.82738 4.82738 1.08 0.00118466 0.00108712 0.102786 0.0943375 34 3239 22 6.87369e+06 321398 618332. 2139.56 2.29 0.351728 0.316263 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0471756 0.0424646 147 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30156 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 17.5 MiB 3.44 951 10308 2331 7565 412 55.9 MiB 0.17 0.00 5.39654 -155.229 -5.39654 5.39654 1.08 0.00125147 0.00114661 0.0602278 0.0551991 34 2817 24 6.87369e+06 503058 618332. 2139.56 2.75 0.326765 0.292969 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.056744 0.0509518 147 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17612 1 0.03 -1 -1 30200 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 17.2 MiB 2.80 1114 12702 3372 8526 804 55.9 MiB 0.20 0.00 4.59844 -147.406 -4.59844 4.59844 1.10 0.00127091 0.00116653 0.0701108 0.0641225 28 3068 25 6.87369e+06 572927 531479. 1839.03 2.18 0.240863 0.216813 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.0596606 0.0535772 148 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17224 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 17.0 MiB 2.21 643 13768 5811 6950 1007 55.6 MiB 0.17 0.00 4.04073 -117.599 -4.04073 4.04073 1.12 0.000933645 0.000855475 0.0788415 0.0722911 36 1975 29 6.87369e+06 237555 648988. 2245.63 3.07 0.292429 0.261508 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.25 0.04 0.13 -1 -1 0.25 0.015893 0.0140921 99 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30204 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 17.2 MiB 3.14 958 7038 1640 4840 558 55.8 MiB 0.13 0.00 4.57902 -143.19 -4.57902 4.57902 1.15 0.00122002 0.00111677 0.050452 0.0462371 34 2472 21 6.87369e+06 307425 618332. 2139.56 2.20 0.308633 0.276604 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.26 0.12 0.26 -1 -1 0.26 0.0489913 0.0441345 136 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30100 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.1 MiB 2.30 1035 6615 1396 4961 258 55.7 MiB 0.13 0.00 5.21006 -150.271 -5.21006 5.21006 1.09 0.00116252 0.00106808 0.0434835 0.0399114 34 2845 24 6.87369e+06 321398 618332. 2139.56 2.44 0.292221 0.261153 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0490046 0.0440331 140 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30200 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1178 17839 5313 10611 1915 55.8 MiB 0.26 0.00 5.241 -151.339 -5.241 5.241 1.09 0.00112774 0.00103357 0.102139 0.0936497 36 2587 21 6.87369e+06 391268 648988. 2245.63 2.24 0.339207 0.304504 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.28 0.11 0.24 -1 -1 0.28 0.0454221 0.040835 141 47 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 17.2 MiB 2.34 1032 10531 2482 6524 1525 55.7 MiB 0.16 0.00 4.69758 -143.214 -4.69758 4.69758 1.10 0.0012019 0.00110052 0.0626885 0.0574338 32 2579 23 6.87369e+06 447163 586450. 2029.24 1.35 0.220934 0.198548 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0501669 0.045029 135 83 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17788 1 0.03 -1 -1 30120 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1030 11245 3242 7121 882 55.7 MiB 0.19 0.00 4.79284 -145.044 -4.79284 4.79284 1.09 0.00120243 0.00110169 0.0754728 0.0691563 34 2708 22 6.87369e+06 293451 618332. 2139.56 2.20 0.328567 0.294923 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0549061 0.0492868 132 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.18 17780 1 0.02 -1 -1 30104 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 17.0 MiB 2.35 973 10944 3003 6644 1297 55.6 MiB 0.17 0.00 4.08063 -124.263 -4.08063 4.08063 1.10 0.00119469 0.00109372 0.0683323 0.0626063 34 2457 23 6.87369e+06 405241 618332. 2139.56 2.19 0.326548 0.29268 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0535818 0.0480871 132 85 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.16 17040 1 0.03 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.7 MiB 0.60 780 13906 5362 7318 1226 55.1 MiB 0.18 0.00 4.08063 -122.384 -4.08063 4.08063 1.23 0.00088075 0.000808531 0.0728737 0.0668639 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.90 0.289997 0.259228 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0347832 0.0310972 96 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.16 17632 1 0.02 -1 -1 30136 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 17.4 MiB 4.09 1081 9548 2182 6489 877 55.9 MiB 0.15 0.00 4.62608 -140.581 -4.62608 4.62608 1.08 0.00121786 0.0011163 0.0547578 0.0501773 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.49 0.225313 0.202471 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.047923 0.04307 137 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30208 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 17.2 MiB 3.47 1050 13477 3452 8462 1563 55.9 MiB 0.24 0.00 4.60818 -154.696 -4.60818 4.60818 1.08 0.0012808 0.001174 0.0963612 0.0883918 34 2764 25 6.87369e+06 293451 618332. 2139.56 2.80 0.383849 0.344758 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488461 0.0440008 142 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17504 1 0.02 -1 -1 29888 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 16.8 MiB 2.79 803 10744 3029 6489 1226 55.3 MiB 0.16 0.00 4.47622 -122.656 -4.47622 4.47622 1.09 0.000939872 0.000862157 0.0608998 0.0558999 34 2330 21 6.87369e+06 223581 618332. 2139.56 2.08 0.227181 0.202151 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.28 0.04 0.25 -1 -1 0.28 0.0160197 0.0142619 106 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30232 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 17.0 MiB 0.64 704 7103 1505 5021 577 55.5 MiB 0.11 0.00 4.06963 -117.109 -4.06963 4.06963 1.09 0.00088824 0.000815197 0.0371049 0.0340427 30 1825 19 6.87369e+06 279477 556674. 1926.21 1.18 0.142927 0.127765 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.25 0.07 0.22 -1 -1 0.25 0.0292888 0.0262723 99 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17544 1 0.04 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 17.3 MiB 2.65 1122 16407 5100 9312 1995 55.9 MiB 0.27 0.00 4.76368 -149.576 -4.76368 4.76368 1.10 0.00116865 0.00107344 0.103522 0.0950554 34 3132 23 6.87369e+06 321398 618332. 2139.56 2.46 0.359398 0.323537 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0469041 0.0421885 145 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 17.3 MiB 2.30 1027 10087 2665 7077 345 55.9 MiB 0.16 0.00 5.28228 -152.543 -5.28228 5.28228 1.12 0.00138567 0.00128784 0.0614257 0.0563639 36 2623 39 6.87369e+06 377294 648988. 2245.63 2.62 0.344948 0.308984 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0445001 0.0400465 142 56 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 29956 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.93 1027 19820 5642 10737 3441 55.8 MiB 0.29 0.00 5.45503 -148.146 -5.45503 5.45503 1.08 0.00121612 0.00111807 0.107206 0.098231 30 3056 37 6.87369e+06 503058 556674. 1926.21 1.58 0.292952 0.26461 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.26 0.12 0.21 -1 -1 0.26 0.05014 0.0451766 157 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29952 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 17.2 MiB 2.23 803 13893 3888 7187 2818 55.6 MiB 0.18 0.00 3.64131 -107.005 -3.64131 3.64131 1.09 0.00105043 0.000962367 0.0692627 0.0634947 32 2150 23 6.87369e+06 475111 586450. 2029.24 1.33 0.204167 0.183648 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0445553 0.0398193 119 52 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17396 1 0.03 -1 -1 30448 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 16.7 MiB 0.89 507 7132 1637 4881 614 55.2 MiB 0.09 0.00 3.6605 -96.1635 -3.6605 3.6605 1.08 0.000876497 0.000803229 0.0385784 0.035388 30 1496 20 6.87369e+06 293451 556674. 1926.21 1.23 0.147884 0.132483 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.25 0.06 0.22 -1 -1 0.25 0.0302516 0.0270396 96 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.22 18076 1 0.03 -1 -1 30104 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 3.22 1378 10228 2746 6595 887 56.2 MiB 0.20 0.01 4.35815 -140.01 -4.35815 4.35815 1.08 0.000949139 0.000853683 0.0530295 0.047898 34 3944 37 6.87369e+06 335372 618332. 2139.56 4.04 0.378197 0.338351 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515533 0.0464878 165 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17728 1 0.04 -1 -1 30128 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 17.3 MiB 3.75 1036 15709 5736 7909 2064 55.9 MiB 0.24 0.00 5.60997 -168.26 -5.60997 5.60997 1.09 0.00118652 0.00108835 0.103341 0.0947328 34 2870 35 6.87369e+06 307425 618332. 2139.56 2.65 0.384237 0.345103 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0533136 0.0479038 139 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.18 17616 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 17.0 MiB 3.86 954 12542 3477 7836 1229 55.6 MiB 0.18 0.00 4.34735 -144.276 -4.34735 4.34735 1.06 0.00107359 0.000982983 0.0781178 0.0715394 34 2396 24 6.87369e+06 251529 618332. 2139.56 2.40 0.311446 0.278793 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.042494 0.0380972 118 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30228 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 17.3 MiB 1.02 986 18523 6141 9875 2507 55.9 MiB 0.24 0.00 5.03998 -136.555 -5.03998 5.03998 1.09 0.00111349 0.00101161 0.0951427 0.0870949 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.68 0.242867 0.21878 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.25 0.12 0.20 -1 -1 0.25 0.0481912 0.0431683 129 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17620 1 0.03 -1 -1 30028 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 17.3 MiB 1.74 1064 18301 5445 10263 2593 55.9 MiB 0.26 0.00 4.47348 -130.92 -4.47348 4.47348 1.08 0.00123397 0.0011278 0.104567 0.0959235 32 2670 22 6.87369e+06 475111 586450. 2029.24 1.32 0.263812 0.238508 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0509373 0.045852 149 50 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29960 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1005 13953 3900 8706 1347 55.7 MiB 0.19 0.00 3.71604 -108.811 -3.71604 3.71604 1.09 0.00109393 0.00100419 0.0751879 0.0689936 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.97 0.302462 0.270903 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0372075 0.0333996 124 51 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30196 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 17.3 MiB 2.95 1158 14261 4788 7245 2228 56.0 MiB 0.24 0.00 4.84864 -152.871 -4.84864 4.84864 1.12 0.0011773 0.00108035 0.0944781 0.0867188 34 3462 28 6.87369e+06 307425 618332. 2139.56 3.68 0.362373 0.325262 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0525623 0.0472511 148 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 29960 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 2.79 1138 19124 5521 11431 2172 56.0 MiB 0.27 0.00 4.13563 -138.632 -4.13563 4.13563 1.09 0.00125792 0.00115354 0.106942 0.0980626 28 2715 22 6.87369e+06 503058 531479. 1839.03 1.39 0.26827 0.24226 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.20 0.06 0.10 -1 -1 0.20 0.0200243 0.0178352 147 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30208 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 1.67 666 12120 4433 5222 2465 55.2 MiB 0.15 0.00 3.97634 -118.279 -3.97634 3.97634 1.10 0.000929794 0.000851847 0.0688721 0.0631396 32 1713 25 6.87369e+06 265503 586450. 2029.24 1.25 0.19052 0.171138 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0303425 0.0272215 101 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.14 17548 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 17.0 MiB 1.49 954 14256 4666 7594 1996 55.7 MiB 0.21 0.00 4.32352 -124.508 -4.32352 4.32352 1.11 0.00102158 0.000935586 0.0956169 0.0875227 30 2387 23 6.87369e+06 237555 556674. 1926.21 1.27 0.226536 0.203784 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0317896 0.0285409 112 58 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.16 17776 1 0.03 -1 -1 30352 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1008 17238 4626 10206 2406 55.5 MiB 0.22 0.00 4.58512 -131.297 -4.58512 4.58512 1.10 0.00110649 0.00101395 0.083692 0.0766199 28 2463 22 6.87369e+06 544980 531479. 1839.03 1.52 0.225352 0.203057 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0448876 0.0404245 135 33 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30248 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 766 12464 3650 7053 1761 55.5 MiB 0.18 0.00 4.72278 -121.674 -4.72278 4.72278 1.09 0.000899171 0.000824059 0.0680569 0.0624196 36 2048 24 6.87369e+06 265503 648988. 2245.63 2.22 0.259798 0.23211 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.0344255 0.0307369 107 31 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17292 1 0.03 -1 -1 29988 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 16.6 MiB 2.82 839 11909 3234 7671 1004 55.3 MiB 0.16 0.00 4.09853 -129.483 -4.09853 4.09853 1.09 0.000955564 0.000875816 0.0697271 0.0639335 34 2157 23 6.87369e+06 209608 618332. 2139.56 2.01 0.271515 0.242682 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0388064 0.0346758 101 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30048 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 17.1 MiB 2.53 942 11236 2692 7798 746 55.8 MiB 0.18 0.00 3.93572 -125.697 -3.93572 3.93572 1.10 0.00121872 0.00111753 0.0625795 0.0573494 30 2084 23 6.87369e+06 517032 556674. 1926.21 1.28 0.219862 0.197751 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.26 0.11 0.22 -1 -1 0.26 0.052524 0.0471849 141 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17608 1 0.02 -1 -1 30212 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 17.0 MiB 2.70 854 11604 2702 8073 829 55.4 MiB 0.15 0.00 3.71466 -115.66 -3.71466 3.71466 1.09 0.000909409 0.000834046 0.0640496 0.0587601 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.85 0.254782 0.227738 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0421916 0.0375718 105 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17656 1 0.03 -1 -1 29856 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 17.5 MiB 2.67 1000 15215 3699 9919 1597 55.8 MiB 0.21 0.00 3.6733 -115.913 -3.6733 3.6733 1.09 0.001153 0.00105707 0.0841343 0.0771503 28 2463 22 6.87369e+06 433189 531479. 1839.03 1.49 0.229766 0.206956 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0396763 0.0356484 129 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 17.3 MiB 2.98 1013 12839 3510 8051 1278 55.9 MiB 0.19 0.00 3.7214 -127.022 -3.7214 3.7214 1.08 0.00124903 0.00114422 0.0775456 0.0710626 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.73 0.258758 0.232835 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.25 0.13 0.21 -1 -1 0.25 0.0455104 0.0407095 137 91 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17352 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 868 13324 3871 8104 1349 55.4 MiB 0.18 0.00 3.6034 -114.008 -3.6034 3.6034 1.08 0.000996912 0.000912568 0.0799895 0.0732793 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.91 0.28921 0.258746 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0394106 0.035257 99 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30100 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.9 MiB 1.58 974 10050 2495 6517 1038 55.6 MiB 0.16 0.00 4.16989 -130.796 -4.16989 4.16989 1.11 0.00098787 0.000905254 0.0631511 0.0579007 34 2564 21 6.87369e+06 251529 618332. 2139.56 2.08 0.27106 0.242437 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.31 0.11 0.24 -1 -1 0.31 0.0424128 0.0379621 114 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30108 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 17.1 MiB 2.48 1073 14072 3847 8138 2087 55.7 MiB 0.20 0.00 4.82103 -137.111 -4.82103 4.82103 1.11 0.00109851 0.00100928 0.0844716 0.0775679 34 2766 23 6.87369e+06 307425 618332. 2139.56 2.08 0.315806 0.283463 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0193705 0.0171787 132 30 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 29992 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 17.3 MiB 2.49 938 11346 3139 7252 955 55.8 MiB 0.16 0.00 4.10263 -113.928 -4.10263 4.10263 1.11 0.00107475 0.000986281 0.0640514 0.0588362 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.93 0.289988 0.259928 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.26 0.08 0.25 -1 -1 0.26 0.0389622 0.0349934 123 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.22 17824 1 0.03 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.79 1137 15773 5092 8347 2334 56.0 MiB 0.28 0.00 5.16181 -165.054 -5.16181 5.16181 1.09 0.00130906 0.00119311 0.112351 0.102992 34 3224 24 6.87369e+06 307425 618332. 2139.56 2.61 0.388666 0.349664 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0569407 0.0512193 151 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17100 1 0.03 -1 -1 30280 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.7 MiB 0.60 812 10400 2700 6281 1419 55.1 MiB 0.12 0.00 3.6213 -110.383 -3.6213 3.6213 1.11 0.000842088 0.000771452 0.0527955 0.0484241 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.82 0.225149 0.200948 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0318271 0.0284424 92 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17728 1 0.03 -1 -1 30128 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 17.3 MiB 1.69 1097 18567 5571 11084 1912 55.9 MiB 0.27 0.00 4.4584 -148.753 -4.4584 4.4584 1.12 0.00130361 0.0011944 0.109622 0.100463 30 2603 24 6.87369e+06 489084 556674. 1926.21 1.43 0.280123 0.252783 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0410474 0.0364312 145 90 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 3.91 823 13152 5512 7421 219 55.7 MiB 0.20 0.00 3.7595 -132.319 -3.7595 3.7595 1.10 0.00118193 0.00108238 0.0939533 0.08612 34 2123 27 6.87369e+06 223581 618332. 2139.56 2.13 0.351096 0.314821 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0447468 0.0401457 114 96 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29960 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 17.1 MiB 2.57 1010 10827 2581 6963 1283 55.6 MiB 0.17 0.00 4.11773 -126.026 -4.11773 4.11773 1.08 0.00118874 0.00109018 0.0620615 0.0569473 34 2332 20 6.87369e+06 447163 618332. 2139.56 2.01 0.307847 0.276149 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0468096 0.0420486 134 60 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.23 18084 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 17.7 MiB 3.64 1280 16127 4711 8958 2458 56.1 MiB 0.28 0.00 5.89191 -180.703 -5.89191 5.89191 1.09 0.00132585 0.00121743 0.111749 0.102668 34 3352 23 6.87369e+06 349346 618332. 2139.56 2.41 0.395509 0.356546 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0604442 0.0546346 171 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.19 17480 1 0.02 -1 -1 29964 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 16.5 MiB 1.17 668 8716 2078 6018 620 55.1 MiB 0.11 0.00 3.01966 -95.583 -3.01966 3.01966 1.10 0.000781149 0.000715061 0.0441248 0.0404433 30 1784 17 6.87369e+06 209608 556674. 1926.21 1.18 0.135647 0.121124 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0279875 0.0249234 81 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30028 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 16.8 MiB 1.00 599 7081 1635 4909 537 55.3 MiB 0.11 0.00 4.05453 -121.132 -4.05453 4.05453 1.10 0.000976291 0.000894533 0.0419876 0.0385206 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.89 0.249608 0.222525 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419196 0.0374511 105 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 29852 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 16.9 MiB 0.90 913 15639 4952 8936 1751 55.5 MiB 0.21 0.00 3.6323 -121.89 -3.6323 3.6323 1.14 0.00100898 0.000923269 0.0854976 0.0783747 32 2483 25 6.87369e+06 321398 586450. 2029.24 1.37 0.220001 0.197839 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0444065 0.0396879 109 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17272 1 0.03 -1 -1 30108 -1 -1 29 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 16.6 MiB 0.67 516 9536 2821 4714 2001 55.2 MiB 0.10 0.00 3.5473 -82.6349 -3.5473 3.5473 1.08 0.000754772 0.000691971 0.0398559 0.0364914 28 1443 23 6.87369e+06 405241 531479. 1839.03 1.19 0.140077 0.125285 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.23 0.06 0.20 -1 -1 0.23 0.0246274 0.0219489 87 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30056 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 2.39 974 10332 2610 6542 1180 55.8 MiB 0.19 0.00 4.3434 -128.294 -4.3434 4.3434 1.14 0.00121372 0.00111187 0.0751841 0.0689215 34 2904 44 6.87369e+06 279477 618332. 2139.56 2.51 0.375446 0.336266 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0523892 0.0470825 133 72 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30072 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 17.3 MiB 2.74 978 9679 2433 6610 636 56.0 MiB 0.17 0.00 4.12463 -132.597 -4.12463 4.12463 1.12 0.00129922 0.00119127 0.0622183 0.0570443 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.50 0.231302 0.207896 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0554607 0.049848 143 90 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 29852 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 16.9 MiB 2.41 1101 11203 3178 6921 1104 55.7 MiB 0.20 0.00 5.42457 -156.316 -5.42457 5.42457 1.10 0.00116999 0.00107401 0.0707159 0.0648736 34 2918 37 6.89349e+06 338252 618332. 2139.56 2.53 0.34045 0.304834 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.048453 0.043536 149 50 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30368 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1174 12178 3196 7626 1356 55.6 MiB 0.18 0.00 4.90208 -149.95 -4.90208 4.90208 1.08 0.00118351 0.00108464 0.0616883 0.0564942 34 3129 45 6.89349e+06 366440 618332. 2139.56 2.46 0.357007 0.319714 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0467514 0.042037 156 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17812 1 0.03 -1 -1 30128 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1048 13663 4160 7949 1554 55.5 MiB 0.19 0.00 4.2044 -120.612 -4.2044 4.2044 1.11 0.00102325 0.000938471 0.0781961 0.0716981 34 2461 28 6.89349e+06 295971 618332. 2139.56 2.12 0.303587 0.271854 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0354234 0.0317938 125 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30288 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 16.6 MiB 1.52 1070 14593 4351 8219 2023 55.4 MiB 0.21 0.00 4.83618 -131.951 -4.83618 4.83618 1.09 0.00105111 0.000963304 0.0852205 0.0782145 34 2512 27 6.89349e+06 338252 618332. 2139.56 2.06 0.31508 0.282658 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429473 0.0385581 134 31 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30044 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 17.1 MiB 1.32 1121 10839 3086 5720 2033 55.5 MiB 0.19 0.00 5.28221 -151.791 -5.28221 5.28221 0.97 0.00113639 0.00103991 0.0670779 0.0614667 36 3048 26 6.89349e+06 324158 648988. 2245.63 3.55 0.31048 0.27811 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0432058 0.0385289 142 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17584 1 0.02 -1 -1 30204 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1263 20077 7001 10670 2406 55.7 MiB 0.30 0.00 3.92406 -127.128 -3.92406 3.92406 1.15 0.00120144 0.00110244 0.11208 0.102649 34 3484 24 6.89349e+06 465097 618332. 2139.56 2.61 0.371212 0.333474 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515025 0.0462788 162 58 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30380 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 16.9 MiB 1.19 795 13496 4096 7659 1741 55.3 MiB 0.16 0.00 4.14623 -113.724 -4.14623 4.14623 1.09 0.000888098 0.000815107 0.0721262 0.0661767 34 1922 21 6.89349e+06 295971 618332. 2139.56 2.00 0.258775 0.231576 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0335578 0.0299897 107 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 29928 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.67 908 11759 3095 6971 1693 55.3 MiB 0.15 0.00 3.40307 -102.549 -3.40307 3.40307 1.10 0.000971539 0.000889757 0.0555657 0.0508322 26 2334 21 6.89349e+06 451003 503264. 1741.40 1.43 0.176757 0.158589 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0377604 0.0337631 119 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30120 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 16.7 MiB 1.53 1042 10703 3845 4978 1880 55.4 MiB 0.20 0.00 3.68945 -124.167 -3.68945 3.68945 1.11 0.00103459 0.000947371 0.0793581 0.0726625 34 2732 28 6.89349e+06 281877 618332. 2139.56 2.36 0.305437 0.273044 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0408479 0.0365779 130 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.21 17500 1 0.03 -1 -1 29944 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 16.9 MiB 1.88 928 7914 1841 5211 862 55.6 MiB 0.13 0.00 4.05148 -133.476 -4.05148 4.05148 1.13 0.00101975 0.000935752 0.0477819 0.0438732 34 2363 46 6.89349e+06 253689 618332. 2139.56 2.37 0.290287 0.258505 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0365416 0.0327777 120 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17684 1 0.03 -1 -1 30200 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 16.8 MiB 1.96 867 6563 1487 4637 439 55.5 MiB 0.11 0.00 4.47797 -127.666 -4.47797 4.47797 1.12 0.000994547 0.000910901 0.0389475 0.0356947 34 2468 30 6.89349e+06 295971 618332. 2139.56 2.23 0.257033 0.22862 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0371875 0.0332689 124 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30016 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.9 MiB 1.45 849 7781 1935 5506 340 55.4 MiB 0.12 0.00 3.6807 -111.961 -3.6807 3.6807 1.09 0.000929661 0.000850217 0.0449377 0.0412336 34 2156 24 6.89349e+06 239595 618332. 2139.56 2.36 0.246374 0.219598 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0341546 0.0305702 108 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.0 MiB 1.90 1060 16407 4994 8930 2483 55.4 MiB 0.26 0.00 4.09068 -131.143 -4.09068 4.09068 1.09 0.00115792 0.00106196 0.101972 0.0935371 34 2942 46 6.89349e+06 324158 618332. 2139.56 2.63 0.393758 0.353569 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0449367 0.040455 143 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30132 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 17.2 MiB 1.62 1222 15298 4935 8519 1844 55.7 MiB 0.24 0.00 5.57191 -161.898 -5.57191 5.57191 1.17 0.00118854 0.00108913 0.0975506 0.0893348 38 2640 21 6.89349e+06 338252 678818. 2348.85 2.56 0.345164 0.310073 26626 170182 -1 2332 20 1682 2320 155536 33971 4.52865 4.52865 -151.53 -4.52865 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0536948 0.0483999 153 61 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.11 17604 1 0.03 -1 -1 30256 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 16.6 MiB 1.70 847 11909 3522 6229 2158 55.1 MiB 0.14 0.00 3.19582 -98.7926 -3.19582 3.19582 1.10 0.000872989 0.000788946 0.0631276 0.0578404 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.98 0.242886 0.216685 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.23 0.04 0.12 -1 -1 0.23 0.0143751 0.0126857 102 27 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30164 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 17.1 MiB 2.01 1270 15103 4761 8086 2256 55.6 MiB 0.24 0.00 4.1162 -136.486 -4.1162 4.1162 1.09 0.0012161 0.00111529 0.0979038 0.0897764 38 3035 24 6.89349e+06 338252 678818. 2348.85 2.57 0.356769 0.320539 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.28 0.12 0.23 -1 -1 0.28 0.0438613 0.0394882 159 58 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17768 1 0.03 -1 -1 29896 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1061 15017 4935 7452 2630 55.4 MiB 0.14 0.00 4.12104 -133.123 -4.12104 4.12104 0.96 0.000419707 0.000379457 0.0429257 0.0388442 36 2514 26 6.89349e+06 310065 648988. 2245.63 2.59 0.29294 0.261586 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0432386 0.0388841 142 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30172 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 17.2 MiB 1.61 1121 14407 4796 7561 2050 55.7 MiB 0.22 0.00 3.60799 -127.319 -3.60799 3.60799 1.16 0.00106225 0.000973792 0.0847125 0.0776114 36 2593 20 6.89349e+06 295971 648988. 2245.63 3.04 0.304621 0.272792 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.27 0.10 0.29 -1 -1 0.27 0.0402344 0.0360718 131 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17348 1 0.02 -1 -1 30120 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 16.3 MiB 0.92 565 9205 3754 4929 522 54.9 MiB 0.10 0.00 2.67033 -85.3827 -2.67033 2.67033 1.11 0.000766292 0.000701186 0.0453218 0.041492 38 1394 30 6.89349e+06 211408 678818. 2348.85 2.35 0.215072 0.191016 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.30 0.05 0.27 -1 -1 0.30 0.0214664 0.0192116 82 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30208 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 16.6 MiB 1.95 986 14322 4290 8044 1988 55.3 MiB 0.20 0.00 4.76552 -144.771 -4.76552 4.76552 1.08 0.000993936 0.00091169 0.0824551 0.0756243 34 2322 29 6.89349e+06 267783 618332. 2139.56 2.35 0.301307 0.269772 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0391706 0.0350955 117 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30324 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 16.9 MiB 1.05 1121 13823 3432 8585 1806 55.4 MiB 0.21 0.00 4.71322 -150.624 -4.71322 4.71322 1.11 0.00115309 0.00105758 0.0808698 0.0741945 34 2727 22 6.89349e+06 479191 618332. 2139.56 2.45 0.325451 0.292304 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.045417 0.0408348 151 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17532 1 0.04 -1 -1 30056 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 17.0 MiB 1.27 1277 12375 3467 7863 1045 55.6 MiB 0.21 0.00 4.43295 -138.206 -4.43295 4.43295 1.09 0.00120896 0.00110818 0.0814355 0.0747213 36 3078 26 6.89349e+06 324158 648988. 2245.63 2.91 0.344704 0.309478 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0498654 0.044811 155 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17364 1 0.02 -1 -1 30480 -1 -1 19 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 16.4 MiB 1.15 448 11324 4682 5071 1571 55.0 MiB 0.11 0.00 2.70371 -73.039 -2.70371 2.70371 1.10 0.000668651 0.000611422 0.048423 0.0443188 36 1409 29 6.89349e+06 267783 648988. 2245.63 2.16 0.194675 0.172987 26050 158493 -1 1053 24 894 1077 88226 21748 2.34066 2.34066 -71.8008 -2.34066 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0301797 0.0267521 76 30 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17024 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.6 MiB 0.77 989 9879 2312 6247 1320 55.1 MiB 0.15 0.00 4.42392 -127.052 -4.42392 4.42392 1.06 0.00100943 0.000925967 0.0545601 0.0500587 34 2328 22 6.89349e+06 324158 618332. 2139.56 2.17 0.268062 0.240014 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416674 0.0374105 119 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 17112 1 0.02 -1 -1 29876 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.2 MiB 0.32 477 9356 3828 5185 343 54.6 MiB 0.09 0.00 2.35052 -74.7133 -2.35052 2.35052 1.08 0.000639511 0.000582364 0.038773 0.03532 30 1271 33 6.89349e+06 169126 556674. 1926.21 1.14 0.129711 0.115253 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0140638 0.0124422 65 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 1.48 1046 9966 2582 6701 683 55.3 MiB 0.15 0.00 4.91481 -138.303 -4.91481 4.91481 1.09 0.00101862 0.000931057 0.0586525 0.0537516 34 2316 22 6.89349e+06 281877 618332. 2139.56 2.14 0.277801 0.248581 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0391267 0.0351274 125 24 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17012 1 0.03 -1 -1 30240 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.64 1030 18239 5331 10544 2364 55.3 MiB 0.24 0.00 3.48935 -111.917 -3.48935 3.48935 1.09 0.0010491 0.000962946 0.0915034 0.0839396 30 2299 29 6.89349e+06 436909 556674. 1926.21 1.34 0.23682 0.213464 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.26 0.08 0.21 -1 -1 0.26 0.0375984 0.0337884 130 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 17.2 MiB 2.02 1031 15255 4057 8092 3106 55.7 MiB 0.23 0.00 4.82008 -133.501 -4.82008 4.82008 1.12 0.00112104 0.0010277 0.0930646 0.0853435 34 2929 28 6.89349e+06 324158 618332. 2139.56 2.78 0.342166 0.307 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0443954 0.0399037 142 50 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.11 17224 1 0.03 -1 -1 29900 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1042 13556 4378 7182 1996 55.2 MiB 0.19 0.00 3.7536 -126.104 -3.7536 3.7536 1.10 0.00113128 0.00105035 0.0803766 0.0736858 34 2426 26 6.89349e+06 239595 618332. 2139.56 2.04 0.290635 0.25973 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.24 0.05 0.12 -1 -1 0.24 0.0166746 0.0147078 112 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 1.63 868 13092 4092 7012 1988 55.3 MiB 0.17 0.00 4.03552 -117.607 -4.03552 4.03552 1.09 0.000896087 0.00082059 0.071822 0.065778 34 2273 22 6.89349e+06 239595 618332. 2139.56 2.25 0.267221 0.238698 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.28 0.09 0.25 -1 -1 0.28 0.0357378 0.0319324 104 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17460 1 0.02 -1 -1 29920 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 757 6960 1669 4834 457 55.1 MiB 0.12 0.00 4.17394 -114.526 -4.17394 4.17394 1.09 0.000893271 0.000819668 0.0403095 0.037033 30 2142 28 6.89349e+06 281877 556674. 1926.21 1.39 0.168933 0.150963 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.24 0.08 0.22 -1 -1 0.24 0.0352533 0.0314846 107 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17028 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.55 835 13031 3792 7568 1671 55.1 MiB 0.17 0.00 3.90738 -121.629 -3.90738 3.90738 1.12 0.000908942 0.000833344 0.0704029 0.0646176 32 2291 36 6.89349e+06 239595 586450. 2029.24 1.41 0.206848 0.185739 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0359568 0.032174 101 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30048 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 16.7 MiB 1.41 912 9006 2499 5943 564 55.2 MiB 0.13 0.00 3.63671 -112.55 -3.63671 3.63671 1.13 0.000933996 0.000856839 0.0519347 0.0476752 30 2196 23 6.89349e+06 253689 556674. 1926.21 1.26 0.174399 0.156414 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0305519 0.0273845 108 30 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.12 17860 1 0.03 -1 -1 30236 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 16.6 MiB 1.65 982 10163 2807 6505 851 55.3 MiB 0.14 0.00 3.48715 -105.954 -3.48715 3.48715 0.99 0.00096495 0.000884049 0.0570174 0.0522218 36 2114 24 6.89349e+06 310065 648988. 2245.63 2.45 0.26291 0.234465 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0336119 0.0301273 120 54 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17724 1 0.03 -1 -1 30264 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1339 15137 4138 9246 1753 55.5 MiB 0.24 0.00 4.47915 -132.321 -4.47915 4.47915 1.15 0.000855396 0.000769602 0.0922264 0.0843865 34 2963 23 6.89349e+06 352346 618332. 2139.56 2.18 0.353305 0.317536 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.24 0.06 0.13 -1 -1 0.24 0.0212141 0.0188836 159 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30192 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 16.9 MiB 2.00 1289 13933 4065 8243 1625 55.9 MiB 0.13 0.00 4.58977 -156.464 -4.58977 4.58977 0.75 0.000474319 0.000428862 0.0356744 0.0323105 36 2961 23 6.89349e+06 338252 648988. 2245.63 1.70 0.136686 0.120035 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.24 0.06 0.13 -1 -1 0.24 0.0203993 0.0182145 168 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17768 1 0.04 -1 -1 29988 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 765 12506 3068 7484 1954 55.2 MiB 0.17 0.00 3.98848 -116.551 -3.98848 3.98848 1.12 0.000891858 0.000819741 0.0645346 0.0593975 36 1999 20 6.89349e+06 253689 648988. 2245.63 2.38 0.266121 0.238064 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0388434 0.034696 109 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 17.2 MiB 2.00 1249 10813 2744 7185 884 56.0 MiB 0.18 0.00 4.24063 -135.696 -4.24063 4.24063 1.08 0.00120535 0.00110488 0.0702303 0.0644228 34 3153 26 6.89349e+06 352346 618332. 2139.56 2.41 0.329828 0.295815 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0437508 0.0393666 160 61 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 17.0 MiB 2.38 1247 16273 5220 8383 2670 55.9 MiB 0.27 0.00 5.45989 -162.138 -5.45989 5.45989 1.08 0.0012211 0.00111937 0.105353 0.0966131 36 3304 23 6.89349e+06 352346 648988. 2245.63 3.32 0.353796 0.317752 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.052753 0.0474798 163 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30268 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1201 15298 5197 6778 3323 55.7 MiB 0.24 0.00 5.99918 -171.098 -5.99918 5.99918 1.16 0.00123778 0.00113383 0.100202 0.0918153 36 3723 40 6.89349e+06 352346 648988. 2245.63 4.55 0.404594 0.363088 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0515743 0.0464016 166 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17488 1 0.03 -1 -1 30164 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 17.1 MiB 1.77 1173 16983 5747 8489 2747 55.6 MiB 0.27 0.00 4.05378 -126.496 -4.05378 4.05378 1.08 0.00116965 0.00107433 0.106959 0.0982259 36 2746 23 6.89349e+06 338252 648988. 2245.63 2.73 0.353406 0.317592 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0462309 0.0414668 148 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17876 1 0.02 -1 -1 30208 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 16.6 MiB 1.60 909 14358 5137 7007 2214 55.2 MiB 0.19 0.00 4.5826 -118.27 -4.5826 4.5826 1.08 0.000998695 0.000915126 0.0811198 0.0743818 34 2771 28 6.89349e+06 281877 618332. 2139.56 2.41 0.294353 0.263015 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.038271 0.0343332 120 27 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17752 1 0.03 -1 -1 30152 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 17.3 MiB 2.05 1620 14567 4267 9425 875 56.2 MiB 0.27 0.01 5.31355 -171.75 -5.31355 5.31355 1.09 0.00147407 0.00135318 0.10254 0.0941982 36 4099 33 6.89349e+06 436909 648988. 2245.63 3.86 0.444167 0.399597 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0679045 0.0610306 203 87 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17392 1 0.03 -1 -1 30084 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 16.8 MiB 1.47 935 8481 2198 5465 818 55.2 MiB 0.12 0.00 3.78206 -112.802 -3.78206 3.78206 1.09 0.000901648 0.000826247 0.0460245 0.042173 36 2118 26 6.89349e+06 253689 648988. 2245.63 1.98 0.24184 0.215381 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.32 0.08 0.25 -1 -1 0.32 0.032574 0.0292587 106 28 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30084 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1159 12749 3392 7336 2021 55.5 MiB 0.20 0.00 4.75882 -144.088 -4.75882 4.75882 1.08 0.00114351 0.0010499 0.0797735 0.0732509 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.67 0.260217 0.234343 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0450009 0.0404774 140 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30152 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 16.9 MiB 2.01 1195 16023 5389 8481 2153 55.7 MiB 0.25 0.00 4.23925 -128.06 -4.23925 4.23925 1.08 0.00116091 0.00106515 0.0999448 0.0916985 36 2964 25 6.89349e+06 324158 648988. 2245.63 3.12 0.348356 0.31266 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0454442 0.0408217 149 53 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17196 1 0.03 -1 -1 29928 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.9 MiB 0.52 1056 13758 4414 7436 1908 55.5 MiB 0.22 0.00 4.26729 -130.845 -4.26729 4.26729 1.08 0.00103553 0.000950333 0.072062 0.065766 30 2527 28 6.89349e+06 366440 556674. 1926.21 1.49 0.21441 0.192667 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.050425 0.045185 123 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 17.3 MiB 1.59 1207 10455 2579 6753 1123 55.8 MiB 0.19 0.00 4.44301 -131.225 -4.44301 4.44301 1.15 0.00117647 0.00107753 0.0664174 0.060915 36 2616 21 6.89349e+06 324158 648988. 2245.63 2.57 0.298249 0.267177 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0439393 0.0394968 148 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 29848 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 17.2 MiB 1.81 1187 14518 4859 6825 2834 55.7 MiB 0.23 0.00 4.27293 -132.833 -4.27293 4.27293 1.23 0.000724823 0.000662557 0.0905631 0.0830478 34 3445 26 6.89349e+06 338252 618332. 2139.56 2.74 0.341746 0.306188 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0447007 0.0401598 154 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30124 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1246 9336 2230 6513 593 55.7 MiB 0.18 0.00 4.12904 -136.238 -4.12904 4.12904 1.09 0.00124278 0.00113943 0.0610888 0.0560132 34 3265 27 6.89349e+06 366440 618332. 2139.56 2.69 0.330859 0.296061 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.27 0.14 0.26 -1 -1 0.27 0.0581061 0.0522693 164 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30176 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 16.6 MiB 1.47 1001 8641 2091 5830 720 55.3 MiB 0.14 0.00 4.50695 -131.282 -4.50695 4.50695 0.78 0.00105837 0.000971311 0.0517961 0.0475275 34 2625 20 6.89349e+06 295971 618332. 2139.56 2.18 0.272077 0.243768 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0433547 0.0388887 128 24 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.17 17476 1 0.03 -1 -1 30220 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.9 MiB 1.41 1119 14450 4565 7826 2059 55.6 MiB 0.22 0.00 4.84598 -139.753 -4.84598 4.84598 1.19 0.00109075 0.00100168 0.0866617 0.0796073 34 2751 32 6.89349e+06 310065 618332. 2139.56 2.30 0.333766 0.299695 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.30 0.10 0.26 -1 -1 0.30 0.041807 0.0376525 135 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.24 17572 1 0.03 -1 -1 30160 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1292 15447 4870 8199 2378 55.8 MiB 0.26 0.00 4.72898 -145.597 -4.72898 4.72898 1.11 0.00123611 0.00113449 0.103256 0.094687 34 3305 38 6.89349e+06 338252 618332. 2139.56 2.54 0.390856 0.351186 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0524522 0.0472068 156 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.23 17664 1 0.03 -1 -1 30164 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 16.9 MiB 2.33 1374 13553 4031 8630 892 55.9 MiB 0.23 0.00 4.3848 -136.299 -4.3848 4.3848 1.09 0.00124247 0.00113959 0.0882048 0.0808459 36 3546 21 6.89349e+06 352346 648988. 2245.63 3.48 0.351194 0.315358 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.29 0.21 0.25 -1 -1 0.29 0.0808083 0.0725246 166 77 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29976 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 16.4 MiB 1.48 841 8022 2262 5194 566 55.0 MiB 0.13 0.00 3.56029 -109.346 -3.56029 3.56029 1.16 0.000883411 0.000809987 0.0549251 0.0504957 36 1876 16 6.89349e+06 211408 648988. 2245.63 2.26 0.23208 0.207068 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0345974 0.0308863 96 23 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.21 17776 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 17.1 MiB 1.17 1155 11979 3435 7133 1411 55.6 MiB 0.20 0.00 4.30741 -149.256 -4.30741 4.30741 1.10 0.000768415 0.00069094 0.0779058 0.0712932 34 2804 26 6.89349e+06 281877 618332. 2139.56 2.80 0.323667 0.289729 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0437806 0.0392591 138 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1337 12167 3186 7820 1161 55.9 MiB 0.23 0.00 5.53202 -162.159 -5.53202 5.53202 1.09 0.0013021 0.00119542 0.0840893 0.077258 34 3534 45 6.89349e+06 352346 618332. 2139.56 3.05 0.416164 0.374672 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.28 0.19 0.24 -1 -1 0.28 0.0840971 0.075715 168 31 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17468 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 17.2 MiB 1.65 981 15773 5650 7566 2557 55.7 MiB 0.24 0.00 4.48922 -138.529 -4.48922 4.48922 1.08 0.00115238 0.00105737 0.098635 0.09051 36 2706 29 6.89349e+06 310065 648988. 2245.63 3.37 0.304545 0.273462 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0473415 0.042564 144 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17400 1 0.03 -1 -1 30156 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 16.6 MiB 1.28 892 10781 3144 6961 676 55.2 MiB 0.15 0.00 4.18863 -126.692 -4.18863 4.18863 1.08 0.000955152 0.000876612 0.0546745 0.0501891 36 2083 22 6.89349e+06 380534 648988. 2245.63 2.38 0.253849 0.226662 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407685 0.0362451 118 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.10 17972 1 0.04 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 17.4 MiB 2.92 1573 16207 5526 8946 1735 56.1 MiB 0.31 0.01 6.36902 -185.345 -6.36902 6.36902 1.09 0.00140613 0.00129097 0.116052 0.10659 34 4174 50 6.89349e+06 380534 618332. 2139.56 4.29 0.479939 0.431456 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0558795 0.0503519 188 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 16.8 MiB 1.38 1035 15151 5099 7891 2161 55.5 MiB 0.22 0.00 4.71732 -144.131 -4.71732 4.71732 1.09 0.00114887 0.00105479 0.0956945 0.0878042 34 2637 24 6.89349e+06 295971 618332. 2139.56 2.12 0.339297 0.304871 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.29 0.11 0.24 -1 -1 0.29 0.0471434 0.0424314 139 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17336 1 0.02 -1 -1 30212 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.4 MiB 0.49 851 9838 2581 6658 599 55.1 MiB 0.13 0.00 3.70876 -106.292 -3.70876 3.70876 1.10 0.000848183 0.000778133 0.0470929 0.0431697 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.59 0.142728 0.12733 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.22 0.09 0.19 -1 -1 0.22 0.0288283 0.0257271 94 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17444 1 0.03 -1 -1 29940 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.67 1097 14679 5479 6928 2272 55.5 MiB 0.22 0.00 5.34057 -137.648 -5.34057 5.34057 1.09 0.00119873 0.00110036 0.0943147 0.0866212 34 3407 33 6.89349e+06 324158 618332. 2139.56 3.52 0.367357 0.330197 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0489609 0.044052 149 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17232 1 0.03 -1 -1 29996 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.5 MiB 0.59 790 8543 2077 5745 721 55.2 MiB 0.13 0.00 3.60525 -112.744 -3.60525 3.60525 1.11 0.000913453 0.000839247 0.0453249 0.0415761 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.93 0.240818 0.21456 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0350841 0.0313417 98 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.11 17500 1 0.03 -1 -1 30108 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 1.18 900 11118 2938 7199 981 55.3 MiB 0.17 0.00 4.05078 -116.815 -4.05078 4.05078 1.10 0.000952766 0.000873973 0.0618767 0.0567659 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.91 0.221406 0.19735 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0373236 0.0333897 113 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17664 1 0.05 -1 -1 30092 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 17.1 MiB 2.75 1189 14871 4290 8850 1731 55.7 MiB 0.23 0.00 4.52181 -133.377 -4.52181 4.52181 1.08 0.00115559 0.00105984 0.0928489 0.085095 34 2841 25 6.89349e+06 366440 618332. 2139.56 2.31 0.343479 0.308345 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0440198 0.0395896 154 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 30112 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1209 16340 4806 9520 2014 55.8 MiB 0.26 0.00 5.15268 -160.098 -5.15268 5.15268 1.08 0.00118291 0.00108443 0.105334 0.0966296 36 2942 21 6.89349e+06 310065 648988. 2245.63 2.86 0.351313 0.315832 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0465594 0.0418274 151 54 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 29968 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 17.2 MiB 1.43 1151 8919 1954 6160 805 55.7 MiB 0.16 0.00 5.44797 -153.538 -5.44797 5.44797 1.08 0.00117374 0.00107264 0.0573715 0.0526439 36 2961 43 6.89349e+06 324158 648988. 2245.63 3.34 0.336899 0.301325 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.046228 0.0415657 150 51 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17400 1 0.03 -1 -1 30188 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.7 MiB 1.52 948 12416 4023 6894 1499 55.2 MiB 0.17 0.00 4.44301 -126.97 -4.44301 4.44301 1.10 0.000948983 0.00086885 0.0723819 0.0663195 34 2281 31 6.89349e+06 211408 618332. 2139.56 2.32 0.286003 0.255589 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0348069 0.0311816 105 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.11 17768 1 0.03 -1 -1 30304 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.44 1059 14483 4851 7224 2408 55.6 MiB 0.20 0.00 3.67535 -124.181 -3.67535 3.67535 1.09 0.00104314 0.000955214 0.0866914 0.0794359 34 2699 22 6.89349e+06 281877 618332. 2139.56 2.15 0.307214 0.275288 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0395283 0.0354068 131 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17840 1 0.03 -1 -1 30376 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 16.9 MiB 1.91 1024 15493 4307 9520 1666 55.4 MiB 0.22 0.00 3.806 -108.658 -3.806 3.806 1.10 0.00108611 0.000996156 0.0896019 0.0821112 36 2360 20 6.89349e+06 366440 648988. 2245.63 2.34 0.316454 0.284059 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0414765 0.0372677 142 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17480 1 0.03 -1 -1 30248 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 16.7 MiB 1.17 918 12323 3941 6490 1892 55.3 MiB 0.16 0.00 4.39675 -112.391 -4.39675 4.39675 1.08 0.000961852 0.000882625 0.0682823 0.0626789 34 2147 21 6.89349e+06 324158 618332. 2139.56 2.02 0.266577 0.238596 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0366972 0.0327904 119 27 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30304 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 16.7 MiB 2.14 924 9083 2508 6037 538 55.4 MiB 0.15 0.00 4.56532 -133.276 -4.56532 4.56532 1.08 0.0010441 0.000958277 0.0556726 0.0510844 34 2736 29 6.89349e+06 295971 618332. 2139.56 2.42 0.287636 0.257305 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0413347 0.0370753 130 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1216 6123 1500 4259 364 55.8 MiB 0.12 0.00 3.91264 -134.898 -3.91264 3.91264 1.13 0.00109608 0.00100447 0.039762 0.0364779 36 2645 23 6.89349e+06 281877 648988. 2245.63 3.03 0.26999 0.241045 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.28 0.18 0.25 -1 -1 0.28 0.0593119 0.0529909 138 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17244 1 0.03 -1 -1 30212 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.6 MiB 0.59 941 8614 1787 6108 719 55.2 MiB 0.14 0.00 4.73282 -132.206 -4.73282 4.73282 1.10 0.00104357 0.00095941 0.0460406 0.0423262 30 2255 21 6.89349e+06 436909 556674. 1926.21 1.29 0.18407 0.165448 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.042592 0.0382072 129 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.11 17784 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.82 946 14295 4865 6147 3283 55.5 MiB 0.21 0.00 4.80372 -148.142 -4.80372 4.80372 1.11 0.0011768 0.0010799 0.0911294 0.0836614 38 2827 33 6.89349e+06 324158 678818. 2348.85 3.44 0.361363 0.324472 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0465798 0.041915 148 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30092 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1348 15391 4691 8221 2479 55.9 MiB 0.27 0.00 5.48061 -170.804 -5.48061 5.48061 1.09 0.00124834 0.00114546 0.0937368 0.0858667 36 2971 28 6.89349e+06 380534 648988. 2245.63 3.26 0.369819 0.332446 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517851 0.0465814 164 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17468 1 0.04 -1 -1 30136 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1348 16572 5279 8759 2534 55.6 MiB 0.28 0.00 4.59633 -149.535 -4.59633 4.59633 1.12 0.0012643 0.00115992 0.103201 0.094526 36 3220 22 6.89349e+06 366440 648988. 2245.63 3.14 0.372703 0.335138 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0543725 0.0489658 164 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.17 17336 1 0.03 -1 -1 30044 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.66 929 11603 3304 7249 1050 55.4 MiB 0.17 0.00 4.22559 -126.079 -4.22559 4.22559 1.08 0.000938198 0.000860531 0.0626658 0.0575044 34 2274 21 6.89349e+06 295971 618332. 2139.56 2.17 0.263443 0.235101 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0467676 0.0417308 112 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.21 17544 1 0.03 -1 -1 30328 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 17.3 MiB 2.37 1157 9838 2412 6479 947 56.0 MiB 0.18 0.00 5.48387 -163.439 -5.48387 5.48387 1.12 0.00123527 0.00113314 0.0664573 0.0609724 34 2914 31 6.89349e+06 366440 618332. 2139.56 2.23 0.339188 0.304036 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0465631 0.041938 162 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1128 9303 2368 6110 825 55.7 MiB 0.09 0.00 5.14805 -150.89 -5.14805 5.14805 0.74 0.000426038 0.000385701 0.0227853 0.0206836 34 2876 34 6.89349e+06 324158 618332. 2139.56 1.73 0.12133 0.106238 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0430147 0.0386471 139 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30220 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1160 14828 4291 8520 2017 55.4 MiB 0.12 0.00 5.04939 -147.832 -5.04939 5.04939 1.08 0.000417431 0.000376219 0.0349946 0.0316536 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.77 0.191222 0.169166 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0468229 0.0420262 142 47 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30304 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.85 1280 15731 5729 7457 2545 56.1 MiB 0.25 0.00 4.67272 -140.819 -4.67272 4.67272 1.09 0.00120405 0.00110401 0.100307 0.0919408 36 2891 31 6.89349e+06 380534 648988. 2245.63 2.89 0.372239 0.334125 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.28 0.12 0.27 -1 -1 0.28 0.0460554 0.0413954 162 83 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 17.2 MiB 2.69 1143 12183 3367 8279 537 55.8 MiB 0.21 0.00 5.41467 -156.077 -5.41467 5.41467 1.09 0.0012044 0.00110516 0.079676 0.0730619 34 3317 24 6.89349e+06 324158 618332. 2139.56 2.74 0.336842 0.302282 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488384 0.0438697 155 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.12 17816 1 0.03 -1 -1 30312 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 16.9 MiB 1.54 1279 8047 1945 5583 519 55.6 MiB 0.15 0.00 4.65125 -137.416 -4.65125 4.65125 1.11 0.00121351 0.00110824 0.0513959 0.0471627 36 2926 21 6.89349e+06 422815 648988. 2245.63 2.62 0.303817 0.272058 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0438801 0.0394947 166 85 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17376 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.5 MiB 0.49 782 13906 5117 6523 2266 55.2 MiB 0.18 0.00 4.15903 -122.769 -4.15903 4.15903 1.10 0.000877319 0.000804706 0.0641473 0.0584948 30 2007 46 6.89349e+06 239595 556674. 1926.21 1.31 0.210262 0.188098 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0345416 0.0308819 96 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17828 1 0.03 -1 -1 30232 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1307 13157 3552 8195 1410 55.8 MiB 0.22 0.00 5.64852 -169.418 -5.64852 5.64852 1.11 0.00121488 0.00111406 0.0839158 0.0769762 36 3147 47 6.89349e+06 352346 648988. 2245.63 3.39 0.384854 0.345013 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517209 0.0464841 156 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30184 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 17.1 MiB 2.83 1377 7415 1651 5387 377 55.8 MiB 0.08 0.00 5.30157 -175.126 -5.30157 5.30157 1.07 0.000477715 0.000431872 0.0201641 0.0182806 36 3393 25 6.89349e+06 352346 648988. 2245.63 3.21 0.299802 0.267912 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0554302 0.049939 171 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17208 1 0.03 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 16.6 MiB 2.32 743 12720 4130 6895 1695 55.2 MiB 0.17 0.00 4.14342 -113.505 -4.14342 4.14342 1.11 0.000926878 0.000848793 0.0690049 0.0632568 30 2176 39 6.89349e+06 253689 556674. 1926.21 1.48 0.214882 0.192427 25186 138497 -1 1608 19 847 1143 74159 17662 2.99811 2.99811 -101.39 -2.99811 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0348487 0.0311628 108 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17212 1 0.03 -1 -1 30284 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.4 MiB 0.53 706 7823 1736 5421 666 55.1 MiB 0.11 0.00 4.10083 -117.838 -4.10083 4.10083 1.08 0.000882209 0.000809218 0.0404985 0.0371904 30 1853 22 6.89349e+06 281877 556674. 1926.21 1.23 0.152973 0.136936 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.033349 0.0297928 99 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.7 MiB 2.00 1103 13719 4794 6980 1945 55.5 MiB 0.22 0.00 4.58942 -145.059 -4.58942 4.58942 1.08 0.00117705 0.00108049 0.0870629 0.0799649 34 2800 20 6.89349e+06 324158 618332. 2139.56 2.30 0.338571 0.304228 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.28 0.12 0.24 -1 -1 0.28 0.044499 0.0400557 145 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17556 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1083 8919 2056 5474 1389 55.7 MiB 0.14 0.00 4.89424 -142.728 -4.89424 4.89424 1.09 0.0011682 0.00106993 0.0572894 0.0525096 34 3008 43 6.89349e+06 324158 618332. 2139.56 2.44 0.342917 0.306635 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0444122 0.0399439 149 56 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17312 1 0.03 -1 -1 30004 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.66 1033 19356 5199 10890 3267 55.5 MiB 0.29 0.00 5.32917 -146.087 -5.32917 5.32917 1.08 0.00121833 0.00111805 0.105021 0.0963905 30 3041 40 6.89349e+06 507378 556674. 1926.21 1.89 0.298615 0.269499 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.0519902 0.0468244 157 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17764 1 0.04 -1 -1 29960 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 16.9 MiB 1.32 1151 13143 3782 7948 1413 55.3 MiB 0.20 0.00 3.95739 -118.903 -3.95739 3.95739 1.09 0.00104572 0.000959095 0.0744934 0.0682735 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.99 0.249457 0.222321 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0381575 0.0342386 136 52 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.19 17376 1 0.02 -1 -1 30448 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 16.6 MiB 1.23 755 13768 6057 6665 1046 55.1 MiB 0.15 0.00 4.43859 -116.143 -4.43859 4.43859 1.08 0.000875089 0.0008023 0.073587 0.0674984 34 2141 23 6.89349e+06 281877 618332. 2139.56 2.25 0.261479 0.233849 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0331051 0.0295649 106 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30136 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 17.2 MiB 2.57 1514 18043 5658 10071 2314 56.2 MiB 0.32 0.01 4.58581 -147.507 -4.58581 4.58581 1.09 0.00137617 0.00126337 0.124848 0.114545 34 4194 50 6.89349e+06 380534 618332. 2139.56 3.49 0.48125 0.43293 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0563725 0.0507173 185 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30128 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 17.1 MiB 1.76 1122 15639 4714 8375 2550 55.6 MiB 0.27 0.00 5.51467 -162.715 -5.51467 5.51467 1.11 0.00118606 0.00108775 0.107686 0.0987502 34 2973 28 6.89349e+06 338252 618332. 2139.56 2.71 0.371948 0.334208 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0470024 0.0422855 155 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17472 1 0.04 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 16.9 MiB 1.76 1207 14779 4497 8341 1941 55.4 MiB 0.22 0.00 4.36565 -143.578 -4.36565 4.36565 1.09 0.00108419 0.000994226 0.0888276 0.0814078 34 2807 25 6.89349e+06 295971 618332. 2139.56 2.36 0.323658 0.289998 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0463618 0.0415261 137 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 30244 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 16.6 MiB 1.78 1106 13291 3686 7595 2010 55.3 MiB 0.20 0.00 5.17406 -143.598 -5.17406 5.17406 1.09 0.00110295 0.00101178 0.0817427 0.0750086 30 2835 35 6.89349e+06 295971 556674. 1926.21 1.53 0.246432 0.221943 25186 138497 -1 2176 19 1108 1682 108723 25154 3.8055 3.8055 -132.53 -3.8055 0 0 706193. 2443.58 0.26 0.09 0.24 -1 -1 0.26 0.0421416 0.0379175 135 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17756 1 0.03 -1 -1 30012 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1277 13949 4663 6540 2746 55.8 MiB 0.22 0.00 4.6119 -129.607 -4.6119 4.6119 1.19 0.00123402 0.00113278 0.0913764 0.0838517 34 2960 24 6.89349e+06 366440 618332. 2139.56 2.24 0.357564 0.321417 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0489338 0.0440311 163 50 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30036 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 17.1 MiB 1.63 1057 10103 2410 7187 506 55.6 MiB 0.16 0.00 4.37294 -118.646 -4.37294 4.37294 1.08 0.00108246 0.000992013 0.0609446 0.0559031 34 2982 24 6.89349e+06 338252 618332. 2139.56 2.44 0.29327 0.262579 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0480546 0.0430392 140 51 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30140 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.18 1146 16340 5897 7961 2482 55.8 MiB 0.14 0.00 4.90628 -154.007 -4.90628 4.90628 0.74 0.000439789 0.000397445 0.0396115 0.0358868 34 3223 50 6.89349e+06 310065 618332. 2139.56 3.41 0.341116 0.304782 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.23 0.06 0.12 -1 -1 0.23 0.0193985 0.01724 148 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30024 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 17.0 MiB 2.27 1236 16371 6869 8593 909 55.8 MiB 0.26 0.00 4.19324 -136.834 -4.19324 4.19324 1.08 0.00126145 0.00115529 0.106768 0.0979564 36 2890 25 6.89349e+06 366440 648988. 2245.63 3.22 0.378062 0.340137 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.29 0.12 0.27 -1 -1 0.29 0.0527547 0.0475385 167 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17476 1 0.03 -1 -1 30088 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 16.8 MiB 1.18 881 7081 1573 4782 726 55.3 MiB 0.11 0.00 4.21387 -125.832 -4.21387 4.21387 1.12 0.000927657 0.000851548 0.042257 0.0388987 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.93 0.235977 0.210551 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.0369402 0.0330465 110 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30172 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.07 868 7770 1747 5581 442 55.5 MiB 0.13 0.00 4.24583 -126.348 -4.24583 4.24583 1.09 0.00101712 0.000931314 0.0461002 0.0421894 36 2425 28 6.89349e+06 281877 648988. 2245.63 2.79 0.270924 0.241424 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0419361 0.0375195 125 58 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.17 17820 1 0.03 -1 -1 30216 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 17.0 MiB 1.35 954 15337 5910 7043 2384 55.5 MiB 0.22 0.00 4.83108 -133.604 -4.83108 4.83108 1.10 0.00111441 0.00102255 0.094812 0.0869954 34 3035 40 6.89349e+06 310065 618332. 2139.56 2.67 0.360756 0.323688 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0492344 0.0441637 137 33 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.12 17576 1 0.03 -1 -1 30224 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.7 MiB 2.51 859 12636 4650 6385 1601 55.2 MiB 0.17 0.00 4.13932 -113.849 -4.13932 4.13932 1.10 0.000902765 0.000826873 0.0691321 0.0630881 34 2181 32 6.89349e+06 267783 618332. 2139.56 2.06 0.274757 0.24522 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0385886 0.0344814 108 31 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17276 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 16.5 MiB 1.74 931 12898 3547 7775 1576 55.1 MiB 0.18 0.00 4.14413 -130.005 -4.14413 4.14413 1.09 0.000953427 0.000874011 0.0721013 0.0661601 36 2328 29 6.89349e+06 253689 648988. 2245.63 2.53 0.274588 0.245138 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0388748 0.0347116 114 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 29920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 17.1 MiB 1.52 1223 9197 2351 6452 394 55.6 MiB 0.17 0.00 4.60737 -145.998 -4.60737 4.60737 1.09 0.00122981 0.00111744 0.0611364 0.0560149 34 2913 27 6.89349e+06 366440 618332. 2139.56 2.56 0.32771 0.293593 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0542474 0.0487761 160 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17212 1 0.03 -1 -1 30208 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.70 913 11088 2855 7004 1229 55.0 MiB 0.16 0.00 3.57635 -113.738 -3.57635 3.57635 1.08 0.000925147 0.000849174 0.0623222 0.0572577 30 2273 20 6.89349e+06 239595 556674. 1926.21 1.22 0.1749 0.156996 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0260025 0.0230214 108 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 29840 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1210 14261 3846 8261 2154 55.6 MiB 0.22 0.00 4.18989 -126.928 -4.18989 4.18989 1.09 0.00114421 0.00104683 0.0894508 0.0818736 34 3022 24 6.89349e+06 310065 618332. 2139.56 2.12 0.335277 0.300757 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0455679 0.0409383 146 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17616 1 0.03 -1 -1 30092 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1307 17117 5534 9059 2524 55.9 MiB 0.27 0.00 4.84686 -157.681 -4.84686 4.84686 0.74 0.00125898 0.00115312 0.0995143 0.0910091 34 3332 30 6.89349e+06 366440 618332. 2139.56 2.65 0.382723 0.343429 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0558373 0.0501819 170 91 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 16.9 MiB 2.24 1086 13432 3424 8813 1195 55.6 MiB 0.19 0.00 3.821 -117.953 -3.821 3.821 1.09 0.000998871 0.000915616 0.078255 0.0716897 34 2606 27 6.89349e+06 253689 618332. 2139.56 2.11 0.296116 0.264715 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.039341 0.0351813 124 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30296 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.5 MiB 1.00 871 12898 3868 7278 1752 55.1 MiB 0.18 0.00 4.12213 -126.038 -4.12213 4.12213 1.09 0.000770918 0.00069411 0.0738288 0.0676884 36 2177 21 6.89349e+06 253689 648988. 2245.63 2.53 0.281728 0.252013 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407813 0.0365321 115 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17868 1 0.17 -1 -1 29828 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 16.7 MiB 1.52 1006 10292 2539 6455 1298 55.3 MiB 0.15 0.00 4.93133 -134.302 -4.93133 4.93133 1.09 0.00109231 0.0010033 0.0618925 0.0568162 34 2482 22 6.89349e+06 310065 618332. 2139.56 2.02 0.291169 0.260972 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0395842 0.0356244 133 30 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.11 17824 1 0.27 -1 -1 30012 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 17.2 MiB 1.72 1105 14450 4218 8203 2029 55.6 MiB 0.22 0.00 4.04968 -110.899 -4.04968 4.04968 1.09 0.0010719 0.000983018 0.0852688 0.0782581 34 2657 23 6.89349e+06 352346 618332. 2139.56 2.14 0.310813 0.27853 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0509434 0.0456467 138 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17516 1 0.27 -1 -1 30008 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1170 10033 2409 6880 744 55.8 MiB 0.18 0.00 5.6505 -176.695 -5.6505 5.6505 1.08 0.00127428 0.00116832 0.0689066 0.0631954 34 3979 39 6.89349e+06 338252 618332. 2139.56 4.19 0.38311 0.34286 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0570891 0.0513345 166 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17156 1 0.27 -1 -1 30004 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.5 MiB 0.50 815 9368 2443 5733 1192 55.1 MiB 0.11 0.00 3.49795 -108.682 -3.49795 3.49795 1.09 0.000834867 0.000765601 0.0475319 0.0436072 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.91 0.226291 0.20168 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.28 0.07 0.23 -1 -1 0.28 0.0314812 0.0281193 92 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17472 1 0.04 -1 -1 30260 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1425 17431 5130 10160 2141 56.0 MiB 0.30 0.01 5.66786 -177.951 -5.66786 5.66786 1.09 0.00131256 0.00120346 0.115788 0.106181 34 3494 40 6.89349e+06 380534 618332. 2139.56 2.82 0.440468 0.396133 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.05917 0.0532553 175 90 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.18 17468 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 17.1 MiB 1.92 1387 11223 3117 6896 1210 56.0 MiB 0.18 0.00 4.854 -168.258 -4.854 4.854 1.09 0.00118103 0.0010814 0.0725653 0.0664608 38 2917 25 6.89349e+06 324158 678818. 2348.85 2.60 0.321593 0.287639 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.29 0.12 0.28 -1 -1 0.29 0.0546332 0.0489311 160 96 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17788 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 17.0 MiB 1.65 1228 16529 5130 9253 2146 55.5 MiB 0.26 0.00 4.18062 -130.52 -4.18062 4.18062 1.10 0.0011807 0.00108173 0.106084 0.0972041 36 2679 46 6.89349e+06 310065 648988. 2245.63 2.61 0.402196 0.360902 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0450346 0.04049 152 60 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30404 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 17.4 MiB 2.27 1277 13758 3654 8100 2004 56.1 MiB 0.28 0.01 5.8432 -174.13 -5.8432 5.8432 1.09 0.0013463 0.00123563 0.0954653 0.0875724 36 3134 30 6.89349e+06 366440 648988. 2245.63 3.32 0.397751 0.358195 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.055002 0.0496374 172 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.14 17352 1 0.02 -1 -1 30128 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 16.4 MiB 0.76 693 11650 3455 7011 1184 54.9 MiB 0.13 0.00 3.03066 -95.0101 -3.03066 3.03066 1.08 0.000775434 0.00070975 0.057383 0.0525581 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.92 0.238286 0.211855 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.31 0.06 0.23 -1 -1 0.31 0.0267014 0.0237879 82 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30388 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 16.8 MiB 1.07 726 8270 1936 5996 338 55.4 MiB 0.13 0.00 4.60327 -135.822 -4.60327 4.60327 1.08 0.00097829 0.000897998 0.0479814 0.0440291 34 1980 21 6.89349e+06 281877 618332. 2139.56 2.04 0.251619 0.224638 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.26 0.19 0.20 -1 -1 0.26 0.0581864 0.0519421 119 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30280 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1036 12008 3645 6699 1664 55.5 MiB 0.20 0.00 4.33865 -139.218 -4.33865 4.33865 1.08 0.00100995 0.000927069 0.0705449 0.0647264 34 2978 44 6.89349e+06 253689 618332. 2139.56 2.73 0.317903 0.284049 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.28 0.12 0.25 -1 -1 0.28 0.0417233 0.0373486 120 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17396 1 0.02 -1 -1 30372 -1 -1 21 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 16.5 MiB 1.01 532 11034 4110 4271 2653 55.2 MiB 0.11 0.00 3.6784 -85.8398 -3.6784 3.6784 1.09 0.000749817 0.000686466 0.0517791 0.0474192 34 1620 27 6.89349e+06 295971 618332. 2139.56 2.02 0.214637 0.191026 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0294776 0.0262638 92 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.17 17548 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1378 14871 4869 7700 2302 55.6 MiB 0.25 0.00 4.565 -139.747 -4.565 4.565 1.11 0.00121068 0.0011095 0.0975763 0.0894915 38 3057 23 6.89349e+06 324158 678818. 2348.85 2.59 0.365731 0.328429 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0460028 0.0413809 161 72 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17856 1 0.03 -1 -1 30432 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 17.4 MiB 2.03 1414 15617 4439 9113 2065 56.2 MiB 0.28 0.00 4.8901 -157.733 -4.8901 4.8901 1.09 0.0012968 0.00118873 0.107379 0.098359 34 3269 24 6.89349e+06 408721 618332. 2139.56 2.33 0.386272 0.34697 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0512767 0.0461771 179 90 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index 847e17d5f84..f228ac410e1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,2049 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 4.76 vpr 62.50 MiB 0.02 6740 -1 -1 14 0.24 -1 -1 32952 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1354 8532 2094 5512 926 62.5 MiB 0.09 0.00 8.19013 -165.934 -8.19013 8.19013 0.63 0.000911572 0.000845455 0.0421278 0.0389893 28 3693 28 6.55708e+06 313430 500653. 1732.36 1.79 0.162717 0.142573 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037161 0.0324187 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 62.45 MiB 0.03 6716 -1 -1 14 0.29 -1 -1 32772 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1292 15824 4267 9033 2524 62.4 MiB 0.15 0.00 8.12966 -162.719 -8.12966 8.12966 0.66 0.000907128 0.000840271 0.0750926 0.0696213 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.22 0.194161 0.171438 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341478 0.0299947 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.29 vpr 62.25 MiB 0.05 6840 -1 -1 11 0.22 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1266 13157 3416 7667 2074 62.3 MiB 0.13 0.00 6.4728 -136.716 -6.4728 6.4728 0.63 0.000893199 0.000827038 0.0631231 0.0583866 36 3746 35 6.55708e+06 301375 612192. 2118.31 4.11 0.262229 0.228441 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0390401 0.0341413 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.75 vpr 62.76 MiB 0.02 6756 -1 -1 12 0.33 -1 -1 32892 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1320 8130 2002 5291 837 62.8 MiB 0.09 0.00 7.77357 -147.192 -7.77357 7.77357 0.63 0.00093371 0.000839328 0.0402817 0.0372852 36 3542 23 6.55708e+06 349595 612192. 2118.31 3.73 0.224209 0.194478 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0327015 0.0287213 185 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.15 vpr 62.83 MiB 0.02 6628 -1 -1 13 0.30 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.3 MiB 0.41 1568 9951 2486 6481 984 62.8 MiB 0.11 0.00 7.68511 -161.036 -7.68511 7.68511 0.65 0.00103523 0.000958016 0.0514817 0.0476022 30 4458 47 6.55708e+06 385760 526063. 1820.29 1.87 0.214298 0.187068 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0402365 0.0353162 223 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.58 vpr 63.07 MiB 0.05 6688 -1 -1 12 0.28 -1 -1 32676 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.2 MiB 0.47 1500 9773 2280 6498 995 63.1 MiB 0.10 0.00 7.53766 -152.093 -7.53766 7.53766 0.65 0.000958635 0.000887576 0.0456729 0.0422471 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.27 0.236012 0.205012 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.20 0.09 0.12 -1 -1 0.20 0.0322298 0.0285026 209 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.58 vpr 62.11 MiB 0.02 6492 -1 -1 12 0.18 -1 -1 32272 -1 -1 27 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1024 5945 1385 4013 547 62.1 MiB 0.06 0.00 7.15274 -128.455 -7.15274 7.15274 0.63 0.000568799 0.00052082 0.0237947 0.0220379 28 3014 27 6.55708e+06 325485 500653. 1732.36 1.80 0.119129 0.10371 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.025201 0.0221632 136 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 4.42 vpr 62.32 MiB 0.05 6772 -1 -1 11 0.18 -1 -1 32816 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1220 9679 2547 5973 1159 62.3 MiB 0.09 0.00 6.45772 -132.139 -6.45772 6.45772 0.62 0.000848956 0.00078669 0.0435893 0.0403683 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.46 0.168525 0.148065 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0268312 0.0236665 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 4.59 vpr 62.18 MiB 0.04 6788 -1 -1 12 0.17 -1 -1 32448 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1146 12373 3633 6385 2355 62.2 MiB 0.11 0.00 7.00181 -148.703 -7.00181 7.00181 0.64 0.000750915 0.000694775 0.0508621 0.0470599 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.65 0.148228 0.130496 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0288059 0.0253076 145 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.22 vpr 62.32 MiB 0.03 6548 -1 -1 13 0.21 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1098 10979 3065 6306 1608 62.3 MiB 0.10 0.00 7.23855 -159.771 -7.23855 7.23855 0.63 0.000817545 0.000758341 0.0485073 0.044869 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.12 0.152677 0.133991 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0295727 0.0259776 162 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.49 vpr 62.00 MiB 0.04 6532 -1 -1 12 0.17 -1 -1 32736 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1073 8868 2309 4974 1585 62.0 MiB 0.08 0.00 7.23424 -146.32 -7.23424 7.23424 0.67 0.000702278 0.000650303 0.0365744 0.033886 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.53 0.148597 0.129912 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0242107 0.0213057 132 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.81 vpr 61.96 MiB 0.02 6584 -1 -1 12 0.17 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 971 12175 3572 6038 2565 62.0 MiB 0.11 0.00 6.75009 -143.946 -6.75009 6.75009 0.63 0.000733129 0.000679315 0.0494691 0.045705 36 2632 22 6.55708e+06 253155 612192. 2118.31 1.99 0.192827 0.168024 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0231096 0.0204691 138 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.18 vpr 62.76 MiB 0.05 6736 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1456 5419 862 4216 341 62.8 MiB 0.07 0.00 7.90792 -162.801 -7.90792 7.90792 0.64 0.000982983 0.000909746 0.0287289 0.0266188 28 4018 41 6.55708e+06 361650 500653. 1732.36 1.85 0.181383 0.157595 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037686 0.0331274 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 9.87 vpr 62.88 MiB 0.03 6776 -1 -1 14 0.32 -1 -1 33252 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1487 7653 1685 5037 931 62.9 MiB 0.09 0.00 8.67599 -179.222 -8.67599 8.67599 0.64 0.00098071 0.000906993 0.0396785 0.0367267 30 3773 20 6.55708e+06 349595 526063. 1820.29 6.54 0.286875 0.248245 21886 126133 -1 3079 18 1487 4228 203303 48407 7.37842 7.37842 -169.663 -7.37842 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0373031 0.0327956 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.71 vpr 62.11 MiB 0.02 6536 -1 -1 11 0.22 -1 -1 32408 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1095 15366 4454 8585 2327 62.1 MiB 0.13 0.00 6.42654 -129.9 -6.42654 6.42654 0.66 0.000754213 0.000693132 0.0639594 0.0592358 28 3139 21 6.55708e+06 349595 500653. 1732.36 1.73 0.155457 0.137734 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0308411 0.0270245 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.12 vpr 62.80 MiB 0.05 6748 -1 -1 12 0.27 -1 -1 32884 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1497 7523 1547 5261 715 62.8 MiB 0.08 0.00 7.78498 -159.33 -7.78498 7.78498 0.64 0.000995265 0.000918752 0.0381691 0.0352965 36 3844 37 6.55708e+06 409870 612192. 2118.31 4.65 0.275563 0.239664 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0364182 0.0321835 213 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 4.84 vpr 62.89 MiB 0.02 6736 -1 -1 13 0.25 -1 -1 32744 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1448 9075 2050 5697 1328 62.9 MiB 0.10 0.00 8.28129 -168.719 -8.28129 8.28129 0.64 0.00101741 0.000942053 0.046806 0.0433115 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.66 0.182792 0.16007 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.09 0.12 -1 -1 0.22 0.0379165 0.033406 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.54 vpr 62.10 MiB 0.04 6492 -1 -1 12 0.17 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1089 8402 1864 6112 426 62.1 MiB 0.08 0.00 7.26292 -158.375 -7.26292 7.26292 0.63 0.000749562 0.000693343 0.0363037 0.0335967 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.42 0.125465 0.110246 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0263692 0.0232836 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.76 vpr 61.68 MiB 0.04 6356 -1 -1 10 0.10 -1 -1 32304 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.2 MiB 0.14 786 5244 1130 3909 205 61.7 MiB 0.05 0.00 5.1986 -117.15 -5.1986 5.1986 0.64 0.000568228 0.000528103 0.0193127 0.0179301 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.12 0.0866695 0.0754284 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0241224 0.0209538 96 88 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.35 vpr 62.18 MiB 0.02 6612 -1 -1 13 0.17 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1123 5079 946 3658 475 62.2 MiB 0.06 0.00 7.44701 -156.373 -7.44701 7.44701 0.64 0.000748003 0.000693257 0.0227339 0.0210382 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.47 0.13633 0.118525 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0288565 0.0253292 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.53 vpr 62.69 MiB 0.02 6668 -1 -1 13 0.28 -1 -1 32824 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1494 10031 2522 6626 883 62.7 MiB 0.10 0.00 7.77584 -154.394 -7.77584 7.77584 0.67 0.000760707 0.000693863 0.0394374 0.0359732 28 4288 44 6.55708e+06 373705 500653. 1732.36 2.34 0.194262 0.168915 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.18 0.14 0.10 -1 -1 0.18 0.0414711 0.0363462 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 7.44 vpr 62.77 MiB 0.02 6740 -1 -1 13 0.29 -1 -1 33280 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1626 7973 1601 5735 637 62.8 MiB 0.09 0.00 7.9648 -163.763 -7.9648 7.9648 0.64 0.000959812 0.000888632 0.0378658 0.0350273 34 4543 38 6.55708e+06 409870 585099. 2024.56 3.93 0.253937 0.220003 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.20 0.23 0.13 -1 -1 0.20 0.0632518 0.0560076 207 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.66 vpr 61.45 MiB 0.02 6316 -1 -1 9 0.09 -1 -1 32220 -1 -1 21 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62928 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.0 MiB 0.29 710 10557 2762 6888 907 61.5 MiB 0.07 0.00 4.66154 -94.5374 -4.66154 4.66154 0.66 0.000591432 0.000550371 0.0339111 0.0315476 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.00 0.110688 0.0969159 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.16 0.03 0.07 -1 -1 0.16 0.00926188 0.00831013 83 73 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.68 vpr 62.79 MiB 0.02 6612 -1 -1 13 0.31 -1 -1 32676 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1530 4780 793 3650 337 62.8 MiB 0.06 0.00 7.84695 -156.636 -7.84695 7.84695 0.65 0.00098049 0.000906089 0.0279149 0.0258923 26 4457 46 6.55708e+06 361650 477104. 1650.88 3.15 0.186585 0.162037 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.18 0.69 0.08 -1 -1 0.18 0.130392 0.112362 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.73 vpr 61.49 MiB 0.02 6296 -1 -1 8 0.09 -1 -1 31108 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62964 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 22.9 MiB 0.22 436 8831 2193 4716 1922 61.5 MiB 0.06 0.00 4.66158 -87.3613 -4.66158 4.66158 0.66 0.000512117 0.000476279 0.0275763 0.025635 30 1374 37 6.55708e+06 204935 526063. 1820.29 1.11 0.10112 0.0883793 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0149569 0.0131562 77 61 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 4.46 vpr 62.53 MiB 0.03 6736 -1 -1 15 0.23 -1 -1 33240 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1127 8999 2110 5455 1434 62.5 MiB 0.09 0.00 8.78748 -168.447 -8.78748 8.78748 0.71 0.000840897 0.000779905 0.0417058 0.0386975 30 3036 31 6.55708e+06 301375 526063. 1820.29 1.45 0.159054 0.139405 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0330986 0.0289932 161 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.59 vpr 62.84 MiB 0.05 6548 -1 -1 12 0.24 -1 -1 32752 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1426 7871 1871 5355 645 62.8 MiB 0.09 0.00 6.97141 -150.212 -6.97141 6.97141 0.68 0.000987461 0.000913708 0.0405558 0.0374732 34 3985 37 6.55708e+06 373705 585099. 2024.56 4.30 0.373319 0.321778 22462 138074 -1 3469 18 1513 4862 300913 67896 6.49978 6.49978 -149.655 -6.49978 0 0 742403. 2568.87 0.20 0.11 0.13 -1 -1 0.20 0.0378 0.0332635 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 10.43 vpr 62.62 MiB 0.02 6724 -1 -1 13 0.26 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1403 8993 2077 6178 738 62.6 MiB 0.10 0.00 7.73601 -160.617 -7.73601 7.73601 0.63 0.000932834 0.000852773 0.0437932 0.040496 30 3593 32 6.55708e+06 337540 526063. 1820.29 7.35 0.276862 0.239839 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0353125 0.0309999 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.25 vpr 62.32 MiB 0.03 6480 -1 -1 12 0.17 -1 -1 32336 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1093 9158 2327 6239 592 62.3 MiB 0.09 0.00 6.471 -143.803 -6.471 6.471 0.66 0.000762234 0.000702162 0.0402733 0.0372186 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.41 0.160538 0.140399 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0297925 0.026162 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.67 vpr 61.88 MiB 0.04 6508 -1 -1 11 0.16 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63364 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 1045 6781 1469 4387 925 61.9 MiB 0.06 0.00 6.28146 -130.954 -6.28146 6.28146 0.63 0.000689475 0.000639119 0.0278034 0.0257913 30 2354 17 6.55708e+06 277265 526063. 1820.29 0.91 0.103511 0.0909063 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0200318 0.0178077 128 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.30 vpr 62.13 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32636 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1079 8535 1915 5707 913 62.1 MiB 0.08 0.00 6.57292 -128.193 -6.57292 6.57292 0.62 0.000727551 0.000674546 0.035076 0.0325199 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.35 0.149491 0.130269 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0371363 0.0324386 142 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.89 vpr 62.67 MiB 0.04 6516 -1 -1 12 0.20 -1 -1 32492 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1327 6716 1263 5020 433 62.7 MiB 0.07 0.00 7.20375 -160.021 -7.20375 7.20375 0.63 0.000861993 0.000799266 0.0312838 0.0289936 30 3050 19 6.55708e+06 337540 526063. 1820.29 0.99 0.122561 0.107355 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0340653 0.0298833 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 3.96 vpr 62.15 MiB 0.02 6544 -1 -1 11 0.17 -1 -1 32764 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1072 4244 722 3315 207 62.1 MiB 0.05 0.00 6.41894 -136.128 -6.41894 6.41894 0.63 0.000768605 0.000711708 0.0208966 0.0193635 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.10 0.119701 0.104074 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0342294 0.0299412 147 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.72 vpr 62.05 MiB 0.04 6612 -1 -1 10 0.14 -1 -1 32692 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.23 967 12733 4051 6442 2240 62.0 MiB 0.11 0.00 6.08886 -123.876 -6.08886 6.08886 0.63 0.000725097 0.000671423 0.0527031 0.0487447 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.84 0.140261 0.123877 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0230223 0.0203407 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.81 vpr 63.01 MiB 0.05 6944 -1 -1 13 0.32 -1 -1 33412 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1621 5869 1104 4212 553 63.0 MiB 0.04 0.00 7.46683 -155.207 -7.46683 7.46683 0.63 0.000476956 0.000437109 0.0159413 0.0146369 30 3995 44 6.55708e+06 397815 526063. 1820.29 2.53 0.14845 0.129059 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.20 0.10 0.11 -1 -1 0.20 0.0379468 0.0335009 239 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.66 vpr 62.67 MiB 0.02 6720 -1 -1 13 0.28 -1 -1 32972 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1508 8283 1888 5355 1040 62.7 MiB 0.09 0.00 8.09706 -175.077 -8.09706 8.09706 0.63 0.000975472 0.00090224 0.0422161 0.0389818 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.42 0.254466 0.220908 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0372485 0.0327661 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.09 vpr 62.34 MiB 0.04 6620 -1 -1 12 0.15 -1 -1 32752 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1096 12568 3446 6926 2196 62.3 MiB 0.11 0.00 6.66868 -144.132 -6.66868 6.66868 0.64 0.000738521 0.0006831 0.0506349 0.0467321 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.11 0.207701 0.181103 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0234613 0.0207376 150 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.58 vpr 62.84 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 33112 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1489 8977 2020 5913 1044 62.8 MiB 0.09 0.00 8.10558 -165.766 -8.10558 8.10558 0.66 0.00100419 0.000931709 0.0352035 0.0324236 36 3566 22 6.55708e+06 409870 612192. 2118.31 2.46 0.232694 0.201434 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0338183 0.0299356 219 219 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.28 vpr 62.64 MiB 0.05 6936 -1 -1 14 0.36 -1 -1 33216 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1460 6211 1289 4295 627 62.6 MiB 0.07 0.00 8.35283 -161.679 -8.35283 8.35283 0.65 0.000956704 0.0008874 0.0328082 0.03042 30 3894 50 6.55708e+06 337540 526063. 1820.29 2.11 0.189678 0.16467 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0350292 0.0308772 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.00 vpr 62.37 MiB 0.04 6896 -1 -1 13 0.28 -1 -1 32820 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1364 9271 2151 5683 1437 62.4 MiB 0.10 0.00 7.40806 -157.551 -7.40806 7.40806 0.55 0.000899304 0.000831062 0.044975 0.0415022 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.18 0.162745 0.142374 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0320359 0.0281335 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.96 vpr 62.67 MiB 0.05 6692 -1 -1 12 0.25 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1374 13743 3666 8130 1947 62.7 MiB 0.13 0.00 6.76701 -143.203 -6.76701 6.76701 0.63 0.000911643 0.000843971 0.0637128 0.0589754 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.58 0.302333 0.263807 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0387178 0.0338767 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 3.81 vpr 62.56 MiB 0.04 6828 -1 -1 12 0.17 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1252 8278 1977 5044 1257 62.6 MiB 0.08 0.00 7.19338 -143.847 -7.19338 7.19338 0.65 0.000835498 0.000774578 0.0387252 0.035867 30 3079 17 6.55708e+06 289320 526063. 1820.29 0.92 0.133688 0.117273 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298981 0.0262802 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.65 vpr 62.80 MiB 0.05 6932 -1 -1 14 0.43 -1 -1 32476 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1757 10673 2583 7118 972 62.8 MiB 0.12 0.00 8.08019 -170.094 -8.08019 8.08019 0.64 0.00107206 0.000991306 0.0553479 0.0511759 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.16 0.269697 0.235114 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.22 0.11 0.13 -1 -1 0.22 0.0418706 0.0369416 245 245 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.29 vpr 62.25 MiB 0.04 6604 -1 -1 11 0.20 -1 -1 32528 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1212 8009 2047 5116 846 62.2 MiB 0.08 0.00 6.43815 -136.573 -6.43815 6.43815 0.64 0.000811093 0.000752324 0.0362993 0.0336181 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.28 0.151057 0.131804 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0307915 0.0270527 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.19 vpr 62.52 MiB 0.04 6688 -1 -1 13 0.30 -1 -1 32744 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1339 4512 785 3381 346 62.5 MiB 0.06 0.00 8.23298 -156.44 -8.23298 8.23298 0.63 0.000896123 0.000819016 0.0233624 0.0216121 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.06 0.212056 0.182395 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.21 0.08 0.08 -1 -1 0.21 0.0311296 0.0274297 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.07 vpr 62.84 MiB 0.05 6692 -1 -1 12 0.23 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1513 7973 1697 5548 728 62.8 MiB 0.09 0.00 7.05697 -153.444 -7.05697 7.05697 0.63 0.000992776 0.000918071 0.0392452 0.0363086 34 4231 45 6.55708e+06 409870 585099. 2024.56 2.87 0.275637 0.238104 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.20 0.19 0.12 -1 -1 0.20 0.0532504 0.0463601 227 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 9.01 vpr 62.64 MiB 0.04 6728 -1 -1 13 0.24 -1 -1 32968 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1286 13340 3362 8056 1922 62.6 MiB 0.13 0.00 7.57452 -156.038 -7.57452 7.57452 0.63 0.000908581 0.000842402 0.0614507 0.0568175 28 3767 45 6.55708e+06 337540 500653. 1732.36 5.94 0.350158 0.303313 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.17 0.14 0.11 -1 -1 0.17 0.0471903 0.0410931 184 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 9.48 vpr 62.50 MiB 0.06 6808 -1 -1 13 0.25 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1203 12563 3367 6823 2373 62.5 MiB 0.12 0.00 7.77281 -162.033 -7.77281 7.77281 0.63 0.000870649 0.000805904 0.0589842 0.0544377 30 2961 38 6.55708e+06 301375 526063. 1820.29 6.35 0.300193 0.260036 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0281982 0.0249356 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.53 vpr 62.76 MiB 0.04 6800 -1 -1 12 0.29 -1 -1 32708 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.0 MiB 0.59 1416 10679 2747 6565 1367 62.8 MiB 0.11 0.00 6.86528 -151.049 -6.86528 6.86528 0.66 0.00108601 0.00100035 0.0539988 0.0498462 36 3519 46 6.55708e+06 373705 612192. 2118.31 3.04 0.288389 0.250122 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0338705 0.0298649 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.82 vpr 62.63 MiB 0.04 6728 -1 -1 13 0.25 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1584 11223 2635 7117 1471 62.6 MiB 0.12 0.00 7.96921 -159.229 -7.96921 7.96921 0.64 0.000967061 0.000895486 0.0557484 0.051563 36 3876 21 6.55708e+06 349595 612192. 2118.31 3.68 0.253433 0.220653 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0350936 0.0309186 205 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.39 vpr 62.41 MiB 0.02 6708 -1 -1 14 0.28 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1228 9197 2464 5958 775 62.4 MiB 0.10 0.00 7.91369 -163.421 -7.91369 7.91369 0.66 0.000869014 0.000796924 0.0469801 0.0434289 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.10 0.168672 0.1478 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.20 0.11 0.12 -1 -1 0.20 0.0365672 0.0319997 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.60 vpr 62.56 MiB 0.03 6772 -1 -1 13 0.27 -1 -1 32804 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.0 MiB 0.50 1537 7336 1683 5066 587 62.6 MiB 0.08 0.00 8.38432 -170.174 -8.38432 8.38432 0.66 0.00107264 0.00100343 0.0368505 0.0340221 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.27 0.178969 0.15636 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0326727 0.0288024 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.05 vpr 62.67 MiB 0.05 6744 -1 -1 13 0.28 -1 -1 33100 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1531 8951 1993 6087 871 62.7 MiB 0.10 0.00 8.45326 -176.134 -8.45326 8.45326 0.63 0.000995902 0.000921594 0.0454643 0.041904 30 3859 27 6.55708e+06 385760 526063. 1820.29 1.85 0.175429 0.1535 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0318034 0.0281455 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.72 vpr 62.93 MiB 0.05 6728 -1 -1 12 0.30 -1 -1 32668 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1599 7323 1463 5208 652 62.9 MiB 0.09 0.00 7.47193 -159.786 -7.47193 7.47193 0.63 0.00102005 0.000941953 0.0379666 0.0350937 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.42 0.236312 0.204878 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0369305 0.0325417 231 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 3.89 vpr 61.92 MiB 0.04 6508 -1 -1 11 0.15 -1 -1 32360 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1043 10883 2916 6057 1910 61.9 MiB 0.10 0.00 5.95009 -133.303 -5.95009 5.95009 0.63 0.000684026 0.000632855 0.0443481 0.0409612 30 2668 32 6.55708e+06 229045 526063. 1820.29 0.98 0.142295 0.124386 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.18 0.06 0.13 -1 -1 0.18 0.025023 0.0219396 127 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.73 vpr 62.25 MiB 0.04 6520 -1 -1 13 0.19 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1281 6211 1217 4524 470 62.3 MiB 0.07 0.00 7.73937 -166.104 -7.73937 7.73937 0.63 0.000805651 0.000747502 0.0283327 0.0262887 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.63 0.126889 0.110711 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0360988 0.0314731 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.18 vpr 62.86 MiB 0.05 6944 -1 -1 14 0.44 -1 -1 32916 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.6 MiB 0.36 1818 9380 1999 6471 910 62.9 MiB 0.11 0.00 8.82888 -183.788 -8.82888 8.82888 0.63 0.00114881 0.00106353 0.0505866 0.0467001 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.69 0.218196 0.191133 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.19 0.14 0.11 -1 -1 0.19 0.0478678 0.0425258 267 267 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.31 vpr 63.19 MiB 0.04 6620 -1 -1 13 0.33 -1 -1 32792 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.7 MiB 0.46 1477 8735 1981 6002 752 63.2 MiB 0.10 0.00 7.79483 -168.531 -7.79483 7.79483 0.63 0.00102872 0.00095177 0.0468266 0.0431886 26 4757 42 6.55708e+06 373705 477104. 1650.88 2.87 0.213452 0.186126 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.17 0.19 0.10 -1 -1 0.17 0.0692161 0.0601008 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 4.75 vpr 62.11 MiB 0.03 6560 -1 -1 11 0.17 -1 -1 32772 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 916 9943 3248 5072 1623 62.1 MiB 0.09 0.00 6.47975 -131.851 -6.47975 6.47975 0.66 0.000731304 0.000676574 0.0431961 0.0398932 36 2386 24 6.55708e+06 277265 612192. 2118.31 1.78 0.189 0.164258 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.026683 0.0235345 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.53 vpr 62.97 MiB 0.05 7068 -1 -1 15 0.45 -1 -1 32884 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1670 7867 1614 5465 788 63.0 MiB 0.09 0.00 8.70958 -179.837 -8.70958 8.70958 0.65 0.00107842 0.000996852 0.0428172 0.0395571 36 4552 44 6.55708e+06 397815 612192. 2118.31 4.01 0.316407 0.275579 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.20 0.13 0.13 -1 -1 0.20 0.0473525 0.0415923 241 241 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 14.44 vpr 62.79 MiB 0.05 6732 -1 -1 13 0.32 -1 -1 33264 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1370 12483 3068 7076 2339 62.8 MiB 0.13 0.00 7.72925 -154.988 -7.72925 7.72925 0.64 0.000978501 0.000906426 0.0628185 0.0581343 38 3720 24 6.55708e+06 349595 638502. 2209.35 10.95 0.430567 0.373341 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.22 0.09 0.13 -1 -1 0.22 0.0356639 0.0314547 207 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.34 vpr 62.30 MiB 0.04 6488 -1 -1 11 0.14 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1161 6718 1477 4583 658 62.3 MiB 0.07 0.00 6.62468 -135.028 -6.62468 6.62468 0.64 0.00073168 0.000678159 0.0279979 0.0259334 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.52 0.127649 0.111375 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0298159 0.0261519 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.24 vpr 62.73 MiB 0.05 6868 -1 -1 12 0.29 -1 -1 32776 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1540 8735 2140 5810 785 62.7 MiB 0.09 0.00 7.17512 -150.872 -7.17512 7.17512 0.65 0.000977688 0.000903307 0.0435449 0.0402436 34 3975 42 6.55708e+06 373705 585099. 2024.56 5.95 0.38864 0.334264 22462 138074 -1 3408 21 1468 4452 271452 60248 6.59444 6.59444 -149.82 -6.59444 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0419011 0.0367126 217 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.03 vpr 62.36 MiB 0.02 6588 -1 -1 12 0.20 -1 -1 32380 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1252 5517 962 4221 334 62.4 MiB 0.06 0.00 7.41221 -152.744 -7.41221 7.41221 0.63 0.000837982 0.000777388 0.0275411 0.0256044 30 2953 20 6.55708e+06 313430 526063. 1820.29 1.10 0.12738 0.111337 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0303534 0.0267501 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.84 vpr 62.02 MiB 0.03 6564 -1 -1 12 0.18 -1 -1 32668 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.22 998 6383 1524 4361 498 62.0 MiB 0.07 0.00 7.15324 -144.822 -7.15324 7.15324 0.64 0.00076182 0.000706224 0.0302407 0.0279842 28 2443 17 6.55708e+06 253155 500653. 1732.36 0.97 0.117351 0.10289 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.03172 0.0277692 139 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 12.15 vpr 62.66 MiB 0.03 6820 -1 -1 12 0.33 -1 -1 32768 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1315 14583 4048 7926 2609 62.7 MiB 0.15 0.00 7.005 -132.757 -7.005 7.005 0.63 0.000962425 0.000889088 0.0733817 0.0677962 30 3666 44 6.55708e+06 385760 526063. 1820.29 8.98 0.364866 0.316603 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0345851 0.0304227 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.66 vpr 63.11 MiB 0.04 6732 -1 -1 14 0.31 -1 -1 32948 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1622 11046 2782 7202 1062 63.1 MiB 0.12 0.00 8.27143 -173.321 -8.27143 8.27143 0.63 0.00102748 0.00095163 0.0566707 0.0524257 30 4187 27 6.55708e+06 385760 526063. 1820.29 1.29 0.178305 0.15718 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0408506 0.0359528 227 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 4.98 vpr 62.54 MiB 0.02 6736 -1 -1 12 0.24 -1 -1 32888 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1318 5191 912 3744 535 62.5 MiB 0.06 0.00 7.44045 -154.388 -7.44045 7.44045 0.63 0.000935331 0.000863766 0.0272598 0.0252337 28 3868 27 6.55708e+06 325485 500653. 1732.36 1.84 0.153948 0.134193 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.21 0.11 0.11 -1 -1 0.21 0.0346751 0.030565 192 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.03 vpr 62.02 MiB 0.02 6580 -1 -1 12 0.13 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.6 MiB 0.40 1100 6615 1512 4600 503 62.0 MiB 0.06 0.00 6.69922 -140.427 -6.69922 6.69922 0.64 0.000703776 0.000652206 0.0269216 0.0249271 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.13 0.114916 0.100558 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0256924 0.0225684 133 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.30 vpr 62.24 MiB 0.04 6560 -1 -1 12 0.23 -1 -1 32340 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1148 11398 2849 6739 1810 62.2 MiB 0.11 0.00 7.39043 -143.264 -7.39043 7.39043 0.63 0.000835345 0.000773965 0.0530799 0.049195 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.15 0.178693 0.156617 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0349132 0.0305764 170 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.25 vpr 62.42 MiB 0.04 6736 -1 -1 11 0.19 -1 -1 32932 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1267 6723 1289 4852 582 62.4 MiB 0.07 0.00 6.0378 -125.718 -6.0378 6.0378 0.63 0.000893289 0.00082792 0.0328412 0.0304201 28 3807 32 6.55708e+06 337540 500653. 1732.36 2.25 0.156894 0.136707 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0373179 0.0325781 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.13 vpr 62.41 MiB 0.02 6792 -1 -1 11 0.23 -1 -1 32780 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1153 14128 4158 7800 2170 62.4 MiB 0.13 0.00 6.59995 -118.466 -6.59995 6.59995 0.63 0.000843271 0.000781816 0.0642843 0.0595487 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.04 0.228428 0.199243 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.21 0.04 0.09 -1 -1 0.21 0.0179725 0.0162048 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 62.08 MiB 0.04 6568 -1 -1 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.5 MiB 0.42 1112 5463 1180 3669 614 62.1 MiB 0.06 0.00 7.87624 -151.634 -7.87624 7.87624 0.64 0.000721543 0.000667534 0.0220921 0.0203786 30 2565 19 6.55708e+06 301375 526063. 1820.29 1.13 0.105113 0.0920041 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0235665 0.0208631 142 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.94 vpr 62.60 MiB 0.24 6632 -1 -1 12 0.21 -1 -1 32500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1245 6211 1266 4515 430 62.6 MiB 0.07 0.00 7.2362 -155.292 -7.2362 7.2362 0.63 0.000867828 0.000804009 0.0304375 0.0282454 30 3044 16 6.55708e+06 325485 526063. 1820.29 0.94 0.12793 0.11183 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0315858 0.0277797 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.95 vpr 62.57 MiB 0.02 6832 -1 -1 13 0.32 -1 -1 32780 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1187 15843 5382 8046 2415 62.6 MiB 0.15 0.00 7.69912 -151.004 -7.69912 7.69912 0.63 0.000920329 0.00085195 0.073505 0.0679805 32 3890 40 6.55708e+06 361650 554710. 1919.41 1.66 0.21641 0.190665 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0408985 0.0356324 195 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 4.58 vpr 62.86 MiB 0.02 6644 -1 -1 14 0.28 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1371 16295 4299 9326 2670 62.9 MiB 0.16 0.00 7.90558 -162.398 -7.90558 7.90558 0.63 0.00100236 0.000927732 0.0798324 0.0738648 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.40 0.225615 0.198937 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0377738 0.033258 215 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.79 vpr 62.65 MiB 0.02 6696 -1 -1 14 0.26 -1 -1 32732 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.49 1364 9067 2106 6307 654 62.6 MiB 0.10 0.00 7.8859 -150.917 -7.8859 7.8859 0.63 0.000920831 0.000849217 0.0446599 0.0412789 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.49 0.245341 0.213756 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0344779 0.0303371 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.58 vpr 62.44 MiB 0.05 6648 -1 -1 13 0.34 -1 -1 33204 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1350 6211 1219 4577 415 62.4 MiB 0.07 0.00 7.98147 -162.621 -7.98147 7.98147 0.64 0.000950398 0.00088083 0.033529 0.0310655 36 3253 20 6.55708e+06 325485 612192. 2118.31 2.23 0.215458 0.186842 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.21 0.10 0.12 -1 -1 0.21 0.0305154 0.0272715 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.15 vpr 62.05 MiB 0.02 6536 -1 -1 13 0.20 -1 -1 32772 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1092 10670 2647 6412 1611 62.1 MiB 0.09 0.00 7.9674 -161.443 -7.9674 7.9674 0.63 0.000739961 0.000684278 0.0446374 0.0412826 32 2870 34 6.55708e+06 289320 554710. 1919.41 1.18 0.148636 0.130384 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0250927 0.0221699 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.01 vpr 62.96 MiB 0.04 6712 -1 -1 13 0.44 -1 -1 32868 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1304 7653 1748 5033 872 63.0 MiB 0.09 0.00 8.34953 -161.953 -8.34953 8.34953 0.64 0.00148578 0.00136169 0.0410987 0.0380415 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.64 0.163888 0.14354 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0383337 0.033676 208 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.12 vpr 62.82 MiB 0.04 6824 -1 -1 14 0.31 -1 -1 31508 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.2 MiB 0.50 1332 7336 1480 5450 406 62.8 MiB 0.08 0.00 7.42283 -159.831 -7.42283 7.42283 0.65 0.000912859 0.000846309 0.0356172 0.0329015 28 3869 50 6.55708e+06 361650 500653. 1732.36 2.51 0.18401 0.160108 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.17 0.43 0.08 -1 -1 0.17 0.0895655 0.0768268 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 5.26 vpr 62.84 MiB 0.02 6768 -1 -1 12 0.25 -1 -1 32924 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1420 6575 1256 4964 355 62.8 MiB 0.07 0.00 8.28906 -160.635 -8.28906 8.28906 0.64 0.000954078 0.000884846 0.0323466 0.0299406 34 3727 35 6.55708e+06 385760 585099. 2024.56 2.23 0.241323 0.208752 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0341754 0.0301016 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 4.69 vpr 62.68 MiB 0.04 6812 -1 -1 13 0.23 -1 -1 32808 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1315 6522 1420 4675 427 62.7 MiB 0.07 0.00 7.42898 -137.517 -7.42898 7.42898 0.63 0.000883382 0.000818644 0.0327075 0.0302532 30 3356 18 6.55708e+06 337540 526063. 1820.29 1.69 0.137371 0.120492 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0319055 0.0280749 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.44 vpr 62.93 MiB 0.03 6740 -1 -1 14 0.36 -1 -1 32908 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.2 MiB 0.49 1483 8199 1652 5918 629 62.9 MiB 0.10 0.00 8.85275 -170.114 -8.85275 8.85275 0.62 0.00101573 0.000935747 0.0435958 0.0403868 28 4521 37 6.55708e+06 385760 500653. 1732.36 8.01 0.399432 0.345288 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0426671 0.0374235 220 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.23 vpr 62.53 MiB 0.02 6840 -1 -1 11 0.27 -1 -1 32908 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1183 4512 917 3199 396 62.5 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.67 0.000704895 0.000639451 0.0234754 0.0217469 28 3440 40 6.55708e+06 349595 500653. 1732.36 2.10 0.1519 0.131482 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.15 0.10 -1 -1 0.22 0.0383427 0.0338582 174 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.74 vpr 62.01 MiB 0.04 6512 -1 -1 13 0.15 -1 -1 32648 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1098 6999 1531 4700 768 62.0 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.63 0.00126489 0.00117239 0.0377926 0.034943 26 3154 29 6.55708e+06 277265 477104. 1650.88 1.85 0.137495 0.120587 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.02897 0.0254386 142 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.94 vpr 62.51 MiB 0.02 6692 -1 -1 14 0.30 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1308 7027 1497 5027 503 62.5 MiB 0.08 0.00 8.02087 -160.438 -8.02087 8.02087 0.64 0.000895879 0.000822624 0.0354911 0.0328273 28 3737 36 6.55708e+06 325485 500653. 1732.36 1.86 0.163509 0.142313 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.25 0.12 0.12 -1 -1 0.25 0.0416046 0.0365153 183 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.21 vpr 62.84 MiB 0.02 6732 -1 -1 15 0.42 -1 -1 33144 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.3 MiB 0.58 1579 7323 1484 5148 691 62.8 MiB 0.09 0.00 9.31018 -193.267 -9.31018 9.31018 0.65 0.00104453 0.000967957 0.0407113 0.0376537 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.66 0.198383 0.173159 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0391995 0.0345258 228 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.88 vpr 62.09 MiB 0.03 6664 -1 -1 11 0.17 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.59 1088 7079 1594 5001 484 62.1 MiB 0.07 0.00 6.82798 -137.917 -6.82798 6.82798 0.64 0.000704369 0.000652459 0.0288596 0.0267233 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.67 0.159935 0.13858 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.22 0.06 0.13 -1 -1 0.22 0.0253795 0.022281 126 124 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 10.68 vpr 62.31 MiB 0.05 6488 -1 -1 12 0.24 -1 -1 32564 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1155 8207 1978 5141 1088 62.3 MiB 0.10 0.00 7.38032 -154.384 -7.38032 7.38032 0.63 0.000795518 0.000737807 0.0461021 0.0429769 40 2525 16 6.55708e+06 313430 666494. 2306.21 7.52 0.319559 0.276084 23614 160646 -1 2436 15 988 2915 152941 35751 6.47024 6.47024 -145.36 -6.47024 0 0 872365. 3018.56 0.22 0.07 0.14 -1 -1 0.22 0.0272887 0.024086 157 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.04 vpr 62.81 MiB 0.06 6656 -1 -1 12 0.32 -1 -1 32876 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1424 7439 1505 5396 538 62.8 MiB 0.11 0.00 7.41461 -164.576 -7.41461 7.41461 0.73 0.000996995 0.000919504 0.051374 0.0476477 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.47 0.212758 0.186348 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0374782 0.0329476 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 4.82 vpr 62.64 MiB 0.04 6656 -1 -1 12 0.26 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.55 1429 8579 2186 5781 612 62.6 MiB 0.09 0.00 7.42022 -157.463 -7.42022 7.42022 0.66 0.000899436 0.000833432 0.040738 0.0377066 30 3708 20 6.55708e+06 337540 526063. 1820.29 1.45 0.152667 0.134183 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0353409 0.0311607 186 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 5.74 vpr 63.05 MiB 0.02 6788 -1 -1 14 0.48 -1 -1 33388 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1656 14691 3485 9017 2189 63.1 MiB 0.15 0.00 8.55829 -177.042 -8.55829 8.55829 0.64 0.00113794 0.00102892 0.0742777 0.0686806 38 3905 20 6.55708e+06 421925 638502. 2209.35 2.29 0.285914 0.250365 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.22 0.10 0.13 -1 -1 0.22 0.0391986 0.0346062 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 4.87 vpr 62.30 MiB 0.02 6708 -1 -1 11 0.23 -1 -1 32444 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1210 13157 4017 6643 2497 62.3 MiB 0.12 0.00 6.86503 -131.636 -6.86503 6.86503 0.68 0.000861997 0.000798509 0.0613439 0.0567996 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.44 0.188284 0.165574 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0302565 0.026676 176 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.49 vpr 61.92 MiB 0.02 6504 -1 -1 11 0.19 -1 -1 32408 -1 -1 25 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.4 MiB 0.29 858 9234 2019 6554 661 61.9 MiB 0.08 0.00 6.39815 -115.858 -6.39815 6.39815 0.79 0.000716243 0.000664189 0.0397719 0.0368491 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.16 0.120316 0.106681 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.21 0.09 0.10 -1 -1 0.21 0.0301293 0.0266312 138 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.34 vpr 63.04 MiB 0.03 6980 -1 -1 13 0.54 -1 -1 32888 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1915 8888 1943 6342 603 63.0 MiB 0.11 0.00 7.96961 -161.89 -7.96961 7.96961 0.65 0.00120778 0.00111628 0.0480526 0.0443725 36 5494 32 6.55708e+06 482200 612192. 2118.31 5.76 0.319339 0.277987 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.21 0.12 0.13 -1 -1 0.21 0.0434667 0.0383805 280 279 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.90 vpr 62.43 MiB 0.03 6836 -1 -1 14 0.31 -1 -1 33400 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1307 6821 1398 4713 710 62.4 MiB 0.08 0.00 8.63003 -171.716 -8.63003 8.63003 0.71 0.000878922 0.00081404 0.0349227 0.0323696 28 3653 27 6.55708e+06 313430 500653. 1732.36 2.57 0.153636 0.135104 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0317754 0.0279348 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.13 vpr 62.01 MiB 0.06 6484 -1 -1 12 0.20 -1 -1 32304 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.5 MiB 0.45 1197 8251 1803 5271 1177 62.0 MiB 0.08 0.00 7.37817 -162.484 -7.37817 7.37817 0.64 0.000746662 0.000691107 0.0335085 0.0310046 28 3416 42 6.55708e+06 325485 500653. 1732.36 1.85 0.151532 0.132604 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0249639 0.0224962 144 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 9.98 vpr 62.35 MiB 0.02 6780 -1 -1 13 0.28 -1 -1 32744 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1296 6623 1420 4442 761 62.4 MiB 0.08 0.00 7.83929 -154.667 -7.83929 7.83929 0.69 0.000971325 0.000889427 0.035415 0.0325059 30 3458 27 6.55708e+06 301375 526063. 1820.29 6.71 0.267236 0.230739 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0305594 0.026957 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.21 vpr 62.98 MiB 0.02 6844 -1 -1 13 0.34 -1 -1 33368 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1675 5723 977 4473 273 63.0 MiB 0.07 0.00 7.72485 -162.113 -7.72485 7.72485 0.71 0.000808246 0.000739602 0.0264645 0.0242867 30 4421 42 6.55708e+06 421925 526063. 1820.29 2.45 0.181906 0.159695 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0388471 0.0343277 235 234 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 4.91 vpr 62.62 MiB 0.02 6640 -1 -1 11 0.23 -1 -1 32884 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1363 8827 2077 5986 764 62.6 MiB 0.06 0.00 7.0834 -142.912 -7.0834 7.0834 0.62 0.000436483 0.000402726 0.0218388 0.0200895 30 3732 37 6.55708e+06 385760 526063. 1820.29 1.75 0.13045 0.113486 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0320649 0.0288437 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 7.10 vpr 62.83 MiB 0.03 6740 -1 -1 15 0.32 -1 -1 32936 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1473 9543 2499 5737 1307 62.8 MiB 0.10 0.00 9.02492 -182.614 -9.02492 9.02492 0.65 0.000963107 0.00088708 0.0484339 0.0447229 36 3930 43 6.55708e+06 349595 612192. 2118.31 3.84 0.278441 0.241763 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0352606 0.0310257 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.66 vpr 62.60 MiB 0.02 6668 -1 -1 13 0.32 -1 -1 32952 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1528 11922 3138 7505 1279 62.6 MiB 0.12 0.00 8.01701 -168.403 -8.01701 8.01701 0.64 0.00101178 0.000935502 0.0593763 0.0548676 34 4013 32 6.55708e+06 385760 585099. 2024.56 2.46 0.279384 0.242796 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.27 0.10 0.14 -1 -1 0.27 0.0374917 0.0330817 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.10 vpr 62.14 MiB 0.02 6600 -1 -1 12 0.21 -1 -1 32340 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1144 6321 1459 4287 575 62.1 MiB 0.07 0.00 6.98904 -150.776 -6.98904 6.98904 0.64 0.000777179 0.00072137 0.0269759 0.0250142 30 2863 42 6.55708e+06 349595 526063. 1820.29 4.00 0.241644 0.209494 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0264391 0.0233918 159 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 10.08 vpr 61.95 MiB 0.02 6680 -1 -1 11 0.18 -1 -1 32504 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 1041 8402 1813 6153 436 61.9 MiB 0.08 0.00 6.97021 -142.93 -6.97021 6.97021 0.65 0.00073734 0.000683055 0.0353529 0.0327063 30 2905 24 6.55708e+06 265210 526063. 1820.29 7.02 0.220582 0.190696 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0251092 0.0221089 138 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.45 vpr 62.65 MiB 0.02 6684 -1 -1 13 0.30 -1 -1 32756 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1528 7975 1701 5466 808 62.6 MiB 0.09 0.00 8.19329 -167.366 -8.19329 8.19329 0.69 0.000955143 0.000883771 0.0391456 0.0361949 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.22 0.171767 0.150128 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.037373 0.032921 204 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.58 vpr 61.96 MiB 0.02 6568 -1 -1 10 0.17 -1 -1 32764 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1030 5107 1053 3581 473 62.0 MiB 0.05 0.00 6.08471 -123.999 -6.08471 6.08471 0.63 0.000724127 0.000671014 0.0231606 0.0214633 26 3016 46 6.55708e+06 289320 477104. 1650.88 2.79 0.140875 0.122289 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281723 0.0246893 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.59 vpr 62.17 MiB 0.02 6656 -1 -1 14 0.18 -1 -1 32692 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.6 MiB 0.45 1019 11203 3089 5915 2199 62.2 MiB 0.10 0.00 7.69221 -156.392 -7.69221 7.69221 0.64 0.000775238 0.000716406 0.0470527 0.0435112 28 3519 29 6.55708e+06 289320 500653. 1732.36 2.46 0.159999 0.140997 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.0350871 0.0307997 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.62 vpr 62.78 MiB 0.04 6760 -1 -1 12 0.33 -1 -1 32840 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1351 11891 3061 6959 1871 62.8 MiB 0.12 0.00 7.58423 -159.03 -7.58423 7.58423 0.63 0.000961983 0.000886965 0.0588962 0.0543274 36 3367 18 6.55708e+06 349595 612192. 2118.31 2.43 0.246747 0.215187 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0342994 0.0301751 201 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.50 vpr 62.11 MiB 0.02 6644 -1 -1 12 0.15 -1 -1 32392 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1079 5567 1026 4331 210 62.1 MiB 0.06 0.00 6.95154 -149.121 -6.95154 6.95154 0.67 0.000623329 0.000568003 0.0243021 0.0225048 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.60 0.142242 0.123578 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0272408 0.0239668 141 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 4.73 vpr 62.62 MiB 0.02 6844 -1 -1 12 0.22 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1263 7843 1830 5405 608 62.6 MiB 0.08 0.00 7.086 -151.926 -7.086 7.086 0.64 0.000898875 0.000832249 0.0383897 0.0354925 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.72 0.14975 0.131128 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0439523 0.0382702 188 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 10.71 vpr 62.55 MiB 0.02 6780 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1349 6509 1390 4237 882 62.6 MiB 0.07 0.00 7.60996 -160.091 -7.60996 7.60996 0.63 0.000893594 0.000827738 0.0317426 0.0293922 28 4174 46 6.55708e+06 349595 500653. 1732.36 7.51 0.352884 0.302938 21310 115450 -1 3442 36 1483 4579 649016 276569 6.5197 6.5197 -157.574 -6.5197 0 0 612192. 2118.31 0.20 0.23 0.11 -1 -1 0.20 0.058293 0.0504437 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.14 vpr 62.15 MiB 0.04 6528 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1256 8251 2031 5471 749 62.1 MiB 0.08 0.00 6.67834 -143.715 -6.67834 6.67834 0.64 0.000792608 0.000735385 0.0349008 0.0323788 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.28 0.136913 0.120487 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0298066 0.0261791 148 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.86 vpr 62.21 MiB 0.02 6492 -1 -1 13 0.20 -1 -1 32452 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1339 8047 1963 5261 823 62.2 MiB 0.08 0.00 7.72555 -161.807 -7.72555 7.72555 0.64 0.000846725 0.000784054 0.0366124 0.0338966 28 3857 33 6.55708e+06 325485 500653. 1732.36 1.87 0.155823 0.135952 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0468029 0.0405681 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.68 vpr 62.52 MiB 0.04 6772 -1 -1 13 0.26 -1 -1 32808 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1276 15187 4382 8407 2398 62.5 MiB 0.15 0.00 7.99583 -160.474 -7.99583 7.99583 0.65 0.000907748 0.00084118 0.0713909 0.0660637 36 3413 20 6.55708e+06 325485 612192. 2118.31 2.59 0.24837 0.217297 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0326906 0.0287648 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.95 vpr 62.22 MiB 0.04 6872 -1 -1 11 0.24 -1 -1 32716 -1 -1 28 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1142 12761 3414 7382 1965 62.2 MiB 0.12 0.00 6.37111 -124.414 -6.37111 6.37111 0.64 0.000808228 0.000747209 0.0527179 0.0482621 36 2747 19 6.55708e+06 337540 612192. 2118.31 1.81 0.20936 0.181625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.20 0.07 0.13 -1 -1 0.20 0.027754 0.0243508 162 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.54 vpr 63.13 MiB 0.02 6760 -1 -1 14 0.35 -1 -1 33556 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.4 MiB 0.38 1569 9951 2260 6812 879 63.1 MiB 0.11 0.00 8.3634 -177.338 -8.3634 8.3634 0.63 0.0010227 0.000946832 0.0507044 0.0468561 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.35 0.185312 0.162365 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0381553 0.0336846 225 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.91 vpr 62.10 MiB 0.02 6564 -1 -1 12 0.19 -1 -1 32512 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1144 6619 1429 4488 702 62.1 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.64 0.000739445 0.00068451 0.0268686 0.02487 36 2680 25 6.55708e+06 337540 612192. 2118.31 1.78 0.176467 0.152667 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0237312 0.0209983 145 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 5.43 vpr 62.62 MiB 0.02 6852 -1 -1 13 0.34 -1 -1 32880 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1396 7843 1736 5120 987 62.6 MiB 0.08 0.00 7.69421 -153.973 -7.69421 7.69421 0.58 0.00103015 0.000957193 0.0386503 0.0357159 28 3900 43 6.55708e+06 325485 500653. 1732.36 2.23 0.180634 0.15731 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.038469 0.0336339 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.12 vpr 61.99 MiB 0.05 6544 -1 -1 13 0.22 -1 -1 32832 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1076 10583 2933 6087 1563 62.0 MiB 0.09 0.00 7.44215 -162.135 -7.44215 7.44215 0.65 0.000747898 0.000692173 0.0431559 0.0399264 28 3369 28 6.55708e+06 301375 500653. 1732.36 1.99 0.148937 0.131212 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0331016 0.0289265 146 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.32 vpr 62.36 MiB 0.03 6740 -1 -1 12 0.21 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1148 5517 1034 4096 387 62.4 MiB 0.06 0.00 7.36755 -151.17 -7.36755 7.36755 0.66 0.000993175 0.000915804 0.0281481 0.0261209 30 2794 18 6.55708e+06 313430 526063. 1820.29 4.29 0.234482 0.201916 21886 126133 -1 2452 16 1021 3422 165754 38479 6.5237 6.5237 -142.626 -6.5237 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0304638 0.0267292 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.78 vpr 63.07 MiB 0.03 6896 -1 -1 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.9 MiB 0.31 1759 9998 2422 6696 880 63.1 MiB 0.14 0.00 8.78932 -180.299 -8.78932 8.78932 0.64 0.00112224 0.00103771 0.0649369 0.0598937 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.20 0.312555 0.272257 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0473715 0.0417671 250 250 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.81 vpr 61.55 MiB 0.02 6444 -1 -1 10 0.09 -1 -1 31968 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.1 MiB 0.31 757 9042 2084 6396 562 61.6 MiB 0.07 0.00 5.22063 -120.025 -5.22063 5.22063 0.63 0.000561989 0.000522243 0.0325528 0.0301338 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.05 0.0960395 0.0843475 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0174701 0.0153802 92 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.03 vpr 62.40 MiB 0.02 6524 -1 -1 13 0.18 -1 -1 32544 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1069 6415 1411 4237 767 62.4 MiB 0.06 0.00 7.77311 -151.473 -7.77311 7.77311 0.63 0.000752674 0.000698341 0.0264341 0.0244626 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.20 0.144514 0.125828 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0412877 0.0360205 150 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.38 MiB 0.04 6520 -1 -1 12 0.21 -1 -1 32516 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1241 11223 2642 6703 1878 62.4 MiB 0.11 0.00 6.72746 -150.964 -6.72746 6.72746 0.63 0.000841141 0.000779116 0.0520145 0.0481425 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.80 0.209822 0.182621 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0312523 0.0274015 167 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.09 vpr 61.95 MiB 0.02 6552 -1 -1 9 0.13 -1 -1 32508 -1 -1 25 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.4 MiB 0.16 840 9694 2571 5897 1226 61.9 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.67 0.000469714 0.000429671 0.0288376 0.0264435 26 2429 32 6.55708e+06 301375 477104. 1650.88 2.39 0.115528 0.100615 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0255648 0.0222381 112 111 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.94 vpr 62.73 MiB 0.05 6656 -1 -1 12 0.26 -1 -1 32744 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.2 MiB 0.55 1640 5273 863 4118 292 62.7 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.64 0.000983417 0.000902618 0.0264788 0.0245066 36 4101 31 6.55708e+06 409870 612192. 2118.31 4.44 0.242036 0.209418 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.20 0.15 0.13 -1 -1 0.20 0.0493503 0.0430863 209 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.33 vpr 62.79 MiB 0.04 6724 -1 -1 14 0.31 -1 -1 32944 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1228 13340 3394 7367 2579 62.8 MiB 0.14 0.00 8.33716 -163.889 -8.33716 8.33716 0.64 0.000984721 0.000903453 0.0664498 0.0612243 38 3334 33 6.55708e+06 349595 638502. 2209.35 2.88 0.287428 0.250907 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.21 0.08 0.11 -1 -1 0.21 0.0325453 0.0287779 204 204 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.83 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30832 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.12 929 17268 4565 10218 2485 62.8 MiB 0.17 0.00 4.24756 -141.398 -4.24756 4.24756 0.64 0.000827988 0.000767268 0.064469 0.0596802 32 2653 22 6.64007e+06 452088 554710. 1919.41 0.96 0.162961 0.14444 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.19 0.09 0.10 -1 -1 0.19 0.0316439 0.0275912 153 96 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.67 vpr 62.99 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30636 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.3 MiB 0.19 873 12919 4129 6395 2395 63.0 MiB 0.13 0.00 4.44716 -130.844 -4.44716 4.44716 0.64 0.000764562 0.000709835 0.0559314 0.0519323 32 2348 20 6.64007e+06 288834 554710. 1919.41 0.86 0.144281 0.127743 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324432 0.0282045 142 91 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.58 vpr 62.97 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30500 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1003 9675 2005 7104 566 63.0 MiB 0.10 0.00 3.83457 -129.818 -3.83457 3.83457 0.66 0.000742313 0.000689013 0.0347448 0.0322428 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.87 0.129417 0.113479 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0267707 0.0234137 142 65 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.69 vpr 62.72 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30508 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.0 MiB 0.08 990 11245 3461 6773 1011 62.7 MiB 0.12 0.00 4.46418 -132.921 -4.46418 4.46418 0.64 0.000688526 0.000639881 0.042101 0.0390755 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.03 0.127391 0.112594 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0281545 0.0245736 138 34 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.62 vpr 62.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.2 MiB 0.11 849 15017 4515 8552 1950 62.8 MiB 0.16 0.00 4.14936 -139.21 -4.14936 4.14936 0.63 0.000698925 0.00064501 0.0620162 0.057641 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.90 0.149161 0.132535 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324253 0.0284015 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.66 vpr 62.93 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30516 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1024 19142 5848 10342 2952 62.9 MiB 0.18 0.00 3.5603 -122.153 -3.5603 3.5603 0.66 0.000769856 0.000712554 0.0637324 0.0590922 32 2260 24 6.64007e+06 489762 554710. 1919.41 0.86 0.157237 0.139232 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0317082 0.0276797 156 64 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.37 vpr 62.18 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30580 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.6 MiB 0.10 722 12923 4015 7171 1737 62.2 MiB 0.11 0.00 3.7987 -103.375 -3.7987 3.7987 0.63 0.00056724 0.000527573 0.0454016 0.0422238 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.76 0.107912 0.0956302 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0209956 0.0182635 96 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.11 vpr 62.89 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30240 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.09 948 16081 4441 8879 2761 62.9 MiB 0.14 0.00 3.49449 -109.504 -3.49449 3.49449 0.63 0.000668355 0.00062178 0.0508719 0.0473057 28 2371 22 6.64007e+06 426972 500653. 1732.36 0.92 0.133171 0.118063 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0260766 0.0227478 140 4 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.41 vpr 62.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30228 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.6 MiB 0.15 706 7820 1805 5417 598 62.5 MiB 0.08 0.00 3.31336 -101.862 -3.31336 3.31336 0.63 0.000657452 0.000610882 0.0320631 0.0298232 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.74 0.108945 0.095574 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0250137 0.0218173 106 85 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.24 vpr 62.62 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.0 MiB 0.15 890 10756 2975 5928 1853 62.6 MiB 0.10 0.00 3.5061 -124.869 -3.5061 3.5061 0.64 0.000648222 0.000603082 0.0421452 0.0392251 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.83 0.117423 0.103772 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0244739 0.0213861 121 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.37 vpr 62.62 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30176 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 23.9 MiB 0.14 822 14012 5060 7295 1657 62.6 MiB 0.13 0.00 3.4841 -115.834 -3.4841 3.4841 0.65 0.000642683 0.000596339 0.0547004 0.0508058 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.76 0.12621 0.112089 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0236129 0.0206423 110 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.42 vpr 62.62 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30528 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.10 840 9753 2297 6936 520 62.6 MiB 0.09 0.00 3.52209 -114.564 -3.52209 3.52209 0.67 0.00065979 0.00061293 0.0329072 0.0305616 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.80 0.109337 0.095981 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0226312 0.0197843 114 65 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.76 vpr 62.99 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 0.21 893 19448 6133 10048 3267 63.0 MiB 0.20 0.00 3.56129 -122.026 -3.56129 3.56129 0.55 0.000759823 0.000705655 0.0745375 0.0692153 32 2222 23 6.64007e+06 426972 554710. 1919.41 0.91 0.165859 0.147789 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0317495 0.0277204 145 58 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.30 vpr 63.09 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1031 17036 4693 9820 2523 63.1 MiB 0.16 0.00 4.31123 -147.759 -4.31123 4.31123 0.63 0.000774397 0.000719396 0.0598716 0.0555632 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.57 0.155599 0.137807 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.16 0.11 0.10 -1 -1 0.16 0.0365356 0.0318073 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.38 vpr 62.15 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30596 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.11 800 8852 2481 5509 862 62.1 MiB 0.08 0.00 3.4261 -103.793 -3.4261 3.4261 0.64 0.000579514 0.000539613 0.0317105 0.0295349 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.78 0.0960878 0.0845963 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0241147 0.0210077 108 29 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.72 vpr 62.97 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30480 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1068 13316 3890 7652 1774 63.0 MiB 0.14 0.00 3.5141 -124.724 -3.5141 3.5141 0.64 0.000770659 0.000715805 0.0558149 0.0517676 32 2326 21 6.64007e+06 276276 554710. 1919.41 0.88 0.146298 0.129498 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0315044 0.027501 147 63 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.66 vpr 62.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30236 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 0.17 964 16340 5208 8057 3075 62.8 MiB 0.13 0.00 3.6263 -123.14 -3.6263 3.6263 0.63 0.000743354 0.000689953 0.0548368 0.0508881 34 2358 39 6.64007e+06 452088 585099. 2024.56 1.92 0.221119 0.192919 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.21 0.07 0.12 -1 -1 0.21 0.0282365 0.0247067 144 57 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.41 vpr 62.73 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30108 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 919 13487 3473 7992 2022 62.7 MiB 0.12 0.00 2.83964 -105.375 -2.83964 2.83964 0.64 0.000675201 0.000627262 0.0440963 0.0409032 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.78 0.129117 0.114143 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0253755 0.0222945 119 65 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.25 vpr 61.81 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30140 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.03 670 10835 3352 6011 1472 61.8 MiB 0.08 0.00 2.72344 -89.4054 -2.72344 2.72344 0.64 0.000508569 0.000473794 0.035256 0.0328355 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.76 0.0935044 0.0824858 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0201169 0.0174276 85 34 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.44 vpr 62.73 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.0 MiB 0.12 727 12120 4439 5930 1751 62.7 MiB 0.11 0.00 4.19115 -121.049 -4.19115 4.19115 0.63 0.000662025 0.000615316 0.048875 0.0454405 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.80 0.121788 0.108011 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0220441 0.0193532 113 64 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.63 vpr 62.93 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.4 MiB 0.09 885 17732 4998 9545 3189 62.9 MiB 0.16 0.00 4.22193 -138.344 -4.22193 4.22193 0.65 0.000725514 0.000673601 0.0579985 0.0538142 32 2479 24 6.64007e+06 452088 554710. 1919.41 0.87 0.147005 0.130259 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0301692 0.0263673 147 34 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.77 vpr 63.39 MiB 0.04 7132 -1 -1 1 0.04 -1 -1 30840 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.21 960 11288 2842 7087 1359 63.4 MiB 0.12 0.00 3.74425 -123.858 -3.74425 3.74425 0.63 0.000845384 0.000785564 0.04286 0.039765 30 2640 22 6.64007e+06 477204 526063. 1820.29 0.91 0.143047 0.125515 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.20 0.08 0.14 -1 -1 0.20 0.0354752 0.0308318 150 124 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.24 vpr 61.77 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63248 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.09 395 10503 3120 6151 1232 61.8 MiB 0.07 0.00 2.74064 -71.156 -2.74064 2.74064 0.63 0.000439838 0.000408942 0.0307856 0.0286255 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.74 0.0820588 0.0724596 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170694 0.0149113 77 30 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.59 vpr 62.85 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30076 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.2 MiB 0.10 990 12749 4130 6257 2362 62.8 MiB 0.13 0.00 4.45633 -140.507 -4.45633 4.45633 0.67 0.000691454 0.000643358 0.0491148 0.0457345 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.89 0.131861 0.116928 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0267335 0.0233777 138 3 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.30 vpr 61.88 MiB 0.02 6636 -1 -1 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.05 603 10672 2424 7898 350 61.9 MiB 0.08 0.00 2.3583 -83.9313 -2.3583 2.3583 0.63 0.000470605 0.000437815 0.0328069 0.0305017 28 1546 20 6.64007e+06 163254 500653. 1732.36 0.89 0.0877241 0.0775743 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170371 0.014911 81 3 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.62 vpr 63.03 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.10 956 14691 4376 8904 1411 63.0 MiB 0.14 0.00 4.18856 -140.856 -4.18856 4.18856 0.65 0.000738556 0.000686526 0.0504071 0.046727 32 2560 22 6.64007e+06 439530 554710. 1919.41 0.94 0.138704 0.122631 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0322818 0.028112 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.79 vpr 62.74 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 23.9 MiB 0.09 1019 8796 1857 6524 415 62.7 MiB 0.11 0.00 3.60659 -123.354 -3.60659 3.60659 0.68 0.000697109 0.00064849 0.0302687 0.0279192 26 3249 33 6.64007e+06 464646 477104. 1650.88 2.12 0.127266 0.11105 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0285418 0.0249149 152 3 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.61 vpr 63.16 MiB 0.05 7024 -1 -1 1 0.04 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.10 1069 18901 5689 10576 2636 63.2 MiB 0.18 0.00 4.16036 -141.868 -4.16036 4.16036 0.65 0.000778214 0.000721261 0.065092 0.0603558 32 2736 22 6.64007e+06 464646 554710. 1919.41 0.86 0.14307 0.127528 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.19 0.09 0.08 -1 -1 0.19 0.0326697 0.028514 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.49 vpr 62.38 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.9 MiB 0.07 857 10572 2555 6423 1594 62.4 MiB 0.10 0.00 3.07196 -107.422 -3.07196 3.07196 0.68 0.000619284 0.000575848 0.0398414 0.0370536 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.84 0.111502 0.0985515 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303854 0.0265291 107 34 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.50 vpr 62.38 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.05 824 11806 3275 6761 1770 62.4 MiB 0.11 0.00 3.4951 -114.009 -3.4951 3.4951 0.63 0.00061495 0.000572089 0.0435388 0.0405159 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.88 0.124794 0.109885 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0262761 0.0228717 115 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.38 vpr 62.25 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30344 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 658 7132 1686 4570 876 62.3 MiB 0.08 0.00 3.4309 -100.483 -3.4309 3.4309 0.64 0.000580304 0.000539058 0.0259747 0.0241387 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.81 0.0959523 0.083993 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0224452 0.0195602 107 34 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.50 vpr 62.68 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.07 802 15390 5648 7380 2362 62.7 MiB 0.14 0.00 3.5251 -121.985 -3.5251 3.5251 0.63 0.000611879 0.000568595 0.0550573 0.0511471 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.83 0.12968 0.115178 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0283485 0.0246472 125 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.40 vpr 62.66 MiB 0.03 6836 -1 -1 1 0.03 -1 -1 30260 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 772 9679 2262 6618 799 62.7 MiB 0.09 0.00 3.47387 -114.287 -3.47387 3.47387 0.64 0.000563076 0.000523775 0.0305503 0.028373 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.89 0.103193 0.0906019 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.16 0.04 0.07 -1 -1 0.16 0.0127998 0.011364 119 34 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.38 vpr 62.62 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 23.9 MiB 0.08 877 15824 4460 9332 2032 62.6 MiB 0.13 0.00 2.80466 -91.9047 -2.80466 2.80466 0.63 0.000626684 0.000581866 0.0501112 0.0464827 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.82 0.123948 0.109521 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0258751 0.0225273 110 61 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.57 vpr 63.00 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30412 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.7 MiB 0.17 1234 17889 5288 10109 2492 63.0 MiB 0.20 0.00 4.16036 -142.499 -4.16036 4.16036 0.63 0.000829408 0.000770382 0.0631875 0.0586163 28 3347 24 6.64007e+06 514878 500653. 1732.36 1.80 0.167466 0.148182 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.032658 0.0285599 181 29 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.39 vpr 63.21 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.15 996 11616 2636 8022 958 63.2 MiB 0.12 0.00 3.5823 -125.213 -3.5823 3.5823 0.68 0.000782207 0.000720146 0.0432372 0.0401145 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.85 0.134641 0.118638 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0292772 0.0256438 154 65 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.49 vpr 62.80 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30404 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 803 9407 2189 6388 830 62.8 MiB 0.09 0.00 3.6833 -114.43 -3.6833 3.6833 0.63 0.000688313 0.000639344 0.0332064 0.0308694 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.78 0.110984 0.0971906 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.18 0.06 0.10 -1 -1 0.18 0.024241 0.0211499 114 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.59 vpr 63.04 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30404 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1052 11799 3060 6831 1908 63.0 MiB 0.12 0.00 3.64847 -119.816 -3.64847 3.64847 0.65 0.000748906 0.000695833 0.0485682 0.0451458 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.85 0.137505 0.121475 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0318861 0.0278132 149 64 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.72 vpr 63.07 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.30 953 7835 1760 5704 371 63.1 MiB 0.10 0.00 5.23812 -147.937 -5.23812 5.23812 0.64 0.00083531 0.00077671 0.0375823 0.0349464 32 2549 24 6.64007e+06 288834 554710. 1919.41 0.88 0.138421 0.121042 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0328164 0.0285762 150 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.71 vpr 63.10 MiB 0.03 7280 -1 -1 1 0.03 -1 -1 30364 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.4 MiB 0.14 955 10859 3044 7047 768 63.1 MiB 0.12 0.00 5.02279 -136.574 -5.02279 5.02279 0.60 0.000775991 0.00072066 0.0473001 0.0439536 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.81 0.138565 0.122326 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0273593 0.0240681 144 90 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.62 vpr 62.91 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30360 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1046 15623 4332 9609 1682 62.9 MiB 0.15 0.00 3.5621 -120.379 -3.5621 3.5621 0.63 0.000749334 0.000695992 0.0552679 0.0511571 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.87 0.144642 0.127847 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0262977 0.0230402 148 64 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.63 vpr 63.08 MiB 0.04 7020 -1 -1 1 0.04 -1 -1 30920 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.11 865 10206 2264 6941 1001 63.1 MiB 0.11 0.00 4.23656 -140.329 -4.23656 4.23656 0.63 0.000765917 0.000710766 0.0367901 0.0341209 32 2829 21 6.64007e+06 464646 554710. 1919.41 0.92 0.124704 0.109783 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0311987 0.0272495 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.81 vpr 63.03 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 30632 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1205 17356 4219 10649 2488 63.0 MiB 0.21 0.00 4.21478 -145.938 -4.21478 4.21478 0.64 0.000930411 0.000865548 0.0711812 0.0658242 32 2779 22 6.64007e+06 527436 554710. 1919.41 0.89 0.180042 0.159148 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0446948 0.0392437 186 96 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.50 vpr 62.66 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.10 655 13731 5030 6417 2284 62.7 MiB 0.07 0.00 3.7665 -117.146 -3.7665 3.7665 0.69 0.000286358 0.000263769 0.0238656 0.0220173 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.83 0.104369 0.090779 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0253339 0.0222428 116 34 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.57 vpr 63.09 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.10 910 7386 1527 5477 382 63.1 MiB 0.09 0.00 4.20356 -136.322 -4.20356 4.20356 0.63 0.000763323 0.000708838 0.0265754 0.0246692 32 2713 25 6.64007e+06 477204 554710. 1919.41 0.94 0.120099 0.104933 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0310919 0.0271511 152 64 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.52 vpr 63.15 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.13 994 14048 3500 8468 2080 63.1 MiB 0.14 0.00 3.7163 -119.726 -3.7163 3.7163 0.64 0.000755328 0.000701354 0.0499884 0.046411 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.78 0.128398 0.113773 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300424 0.0262219 149 63 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 vpr 62.80 MiB 0.08 6964 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1080 15017 4624 8554 1839 62.8 MiB 0.15 0.00 4.14936 -144.892 -4.14936 4.14936 0.67 0.000708092 0.000658265 0.0587861 0.0546481 32 2624 22 6.64007e+06 276276 554710. 1919.41 0.91 0.144924 0.128805 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0303339 0.0265041 151 3 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.71 vpr 63.12 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1044 15603 4218 9336 2049 63.1 MiB 0.15 0.00 3.55822 -125.535 -3.55822 3.55822 0.65 0.00079638 0.00073909 0.0566774 0.0525784 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.89 0.146532 0.129754 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0307139 0.0267276 146 96 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.13 vpr 63.18 MiB 0.02 6944 -1 -1 1 0.04 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1017 12791 3286 8285 1220 63.2 MiB 0.13 0.00 3.47912 -120.914 -3.47912 3.47912 0.63 0.000767519 0.000713288 0.0442653 0.041 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.45 0.163008 0.142866 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0278299 0.0243714 148 61 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.80 vpr 63.08 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30504 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 19142 5372 11310 2460 63.1 MiB 0.17 0.00 3.5243 -123.608 -3.5243 3.5243 0.75 0.000597611 0.000546728 0.0584572 0.0538865 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.91 0.157983 0.139518 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0294464 0.025815 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.65 vpr 62.77 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1032 14906 4320 9186 1400 62.8 MiB 0.19 0.00 4.18856 -144.112 -4.18856 4.18856 0.65 0.000743603 0.000691214 0.0630334 0.058403 30 2290 20 6.64007e+06 464646 526063. 1820.29 0.87 0.149447 0.132686 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0290211 0.025396 152 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.44 vpr 62.96 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30804 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1016 12153 3010 8355 788 63.0 MiB 0.12 0.00 4.23153 -146.068 -4.23153 4.23153 0.67 0.000767544 0.00071225 0.0419196 0.0388259 26 2842 35 6.64007e+06 489762 477104. 1650.88 1.58 0.151455 0.132609 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.032679 0.0284541 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.16 vpr 63.34 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30496 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1141 13095 3356 8753 986 63.3 MiB 0.14 0.00 4.67535 -137.171 -4.67535 4.67535 0.65 0.000823597 0.000764662 0.0501666 0.0465596 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.29 0.153533 0.135155 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0306034 0.0266151 147 122 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.68 vpr 63.04 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1069 15584 4992 8664 1928 63.0 MiB 0.17 0.00 4.34993 -137.194 -4.34993 4.34993 0.65 0.000808182 0.000750404 0.0722198 0.0671163 32 2657 20 6.64007e+06 276276 554710. 1919.41 0.88 0.1671 0.14872 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0313887 0.0273473 151 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.45 vpr 62.77 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30592 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.1 MiB 0.07 928 8735 1852 5986 897 62.8 MiB 0.09 0.00 3.50687 -122.364 -3.50687 3.50687 0.65 0.000641009 0.00059443 0.0290733 0.0270114 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.88 0.107981 0.0947505 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0260214 0.0226763 125 34 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.54 vpr 62.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30492 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.18 885 10406 2864 6861 681 62.8 MiB 0.11 0.00 3.5031 -121.505 -3.5031 3.5031 0.64 0.000713908 0.00066341 0.0442174 0.0411126 26 2358 26 6.64007e+06 226044 477104. 1650.88 0.88 0.134775 0.11876 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0265461 0.0231568 121 94 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.98 vpr 63.09 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30728 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1352 17606 4821 10688 2097 63.1 MiB 0.20 0.00 4.98622 -168.741 -4.98622 4.98622 0.66 0.00114974 0.00105947 0.0671496 0.0622668 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.01 0.181008 0.159999 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.041696 0.0362943 189 65 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.62 vpr 63.14 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30472 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1055 17857 5354 10411 2092 63.1 MiB 0.17 0.00 3.51607 -123.396 -3.51607 3.51607 0.67 0.000736211 0.000681833 0.0619367 0.0573078 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.83 0.138497 0.1235 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0278644 0.0244341 148 34 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.63 vpr 62.66 MiB 0.03 6776 -1 -1 1 0.05 -1 -1 30392 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.08 853 17523 5443 9889 2191 62.7 MiB 0.15 0.00 3.4529 -114.711 -3.4529 3.4529 0.67 0.000617041 0.000573917 0.0540711 0.0501917 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.79 0.128338 0.11395 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.18 0.06 0.12 -1 -1 0.18 0.0259534 0.0225771 116 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.02 vpr 63.23 MiB 0.05 7236 -1 -1 1 0.04 -1 -1 31060 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1192 13629 3357 8864 1408 63.2 MiB 0.15 0.00 4.97469 -167.233 -4.97469 4.97469 0.64 0.000749041 0.000687645 0.0457609 0.0419029 32 2825 26 6.64007e+06 565110 554710. 1919.41 0.97 0.140448 0.123463 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0430907 0.0382662 188 127 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.57 vpr 62.96 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30496 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1027 16762 4357 10483 1922 63.0 MiB 0.15 0.00 4.27488 -146.847 -4.27488 4.27488 0.64 0.000744244 0.000691356 0.0561498 0.0520468 28 2563 23 6.64007e+06 477204 500653. 1732.36 0.88 0.145637 0.128935 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.17 0.08 0.07 -1 -1 0.17 0.0273898 0.0240398 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.37 vpr 62.43 MiB 0.05 6732 -1 -1 1 0.03 -1 -1 30456 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 23.9 MiB 0.08 882 11046 2802 6952 1292 62.4 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.66 0.000622511 0.000579542 0.0328011 0.0303732 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.77 0.10487 0.0921965 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.21 0.03 0.12 -1 -1 0.21 0.0133288 0.0118575 124 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.10 vpr 62.99 MiB 0.07 7144 -1 -1 1 0.04 -1 -1 30820 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1334 20347 5362 13158 1827 63.0 MiB 0.21 0.00 4.95502 -168.119 -4.95502 4.95502 0.65 0.000853648 0.000793136 0.0720922 0.0669924 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.15 0.183167 0.162815 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.20 0.10 0.12 -1 -1 0.20 0.0369691 0.0323422 190 34 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.58 vpr 62.29 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30344 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.8 MiB 0.09 623 13731 4925 6406 2400 62.3 MiB 0.12 0.00 3.5061 -118.666 -3.5061 3.5061 0.65 0.000612175 0.000569632 0.0501907 0.0467109 32 2131 28 6.64007e+06 213486 554710. 1919.41 0.85 0.129947 0.115061 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025148 0.0219274 121 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.47 vpr 62.39 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 30264 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 23.8 MiB 0.12 855 13939 4099 8667 1173 62.4 MiB 0.12 0.00 3.47387 -112.968 -3.47387 3.47387 0.68 0.000617153 0.000574394 0.0427663 0.0397175 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.84 0.11942 0.105586 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.17 0.06 0.07 -1 -1 0.17 0.0243286 0.0211553 114 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.72 vpr 62.89 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30348 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1003 12839 3224 8329 1286 62.9 MiB 0.13 0.00 3.6803 -109.03 -3.6803 3.6803 0.65 0.00074837 0.000695401 0.0470527 0.0436914 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.86 0.124505 0.110345 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0327536 0.0285784 134 88 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.68 vpr 63.05 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30604 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 937 11048 2797 7564 687 63.1 MiB 0.12 0.00 4.21976 -143.232 -4.21976 4.21976 0.65 0.000770568 0.000715458 0.0477968 0.0444019 32 2378 24 6.64007e+06 276276 554710. 1919.41 0.93 0.143628 0.126722 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0311277 0.0271736 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.99 vpr 62.91 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30604 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1070 15876 4480 9346 2050 62.9 MiB 0.17 0.00 4.25856 -146.098 -4.25856 4.25856 0.65 0.00077803 0.000722073 0.0584984 0.054275 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.02 0.169838 0.149849 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0408059 0.0354159 154 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.61 vpr 62.73 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30484 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.0 MiB 0.13 863 8856 1892 6516 448 62.7 MiB 0.09 0.00 3.4749 -121.747 -3.4749 3.4749 0.73 0.000523797 0.000479742 0.0263443 0.0241591 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.87 0.106752 0.0930891 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.027379 0.0238337 122 65 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.55 vpr 62.72 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.18 821 8336 2395 4162 1779 62.7 MiB 0.09 0.00 3.72326 -116.749 -3.72326 3.72326 0.66 0.000676986 0.000628888 0.0351132 0.0326137 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.84 0.112517 0.0988879 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0267366 0.0232606 109 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.95 vpr 62.90 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30452 -1 -1 35 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 985 17635 4923 10695 2017 62.9 MiB 0.17 0.00 3.4529 -110.073 -3.4529 3.4529 0.63 0.000731009 0.000679685 0.0603311 0.0560557 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.16 0.156345 0.138282 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0272597 0.0238228 139 60 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.95 vpr 62.59 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30404 -1 -1 32 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.0 MiB 0.09 939 14996 4215 8524 2257 62.6 MiB 0.15 0.00 4.39198 -124.88 -4.39198 4.39198 0.63 0.000671121 0.000624858 0.0557517 0.0517479 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.30 0.145199 0.128587 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0280153 0.0244488 134 34 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.56 vpr 62.64 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.0 MiB 0.16 846 13731 4520 7348 1863 62.6 MiB 0.13 0.00 3.5343 -117.296 -3.5343 3.5343 0.63 0.000646424 0.000600523 0.0531668 0.0493664 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.84 0.125645 0.111563 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.024408 0.02127 114 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.41 vpr 62.66 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.0 MiB 0.18 892 11281 2807 6986 1488 62.7 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.66 0.000704124 0.000654464 0.0352036 0.0326278 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.78 0.115932 0.101943 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0259568 0.0226832 114 91 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.65 vpr 62.98 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30196 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.09 1121 19124 6194 10224 2706 63.0 MiB 0.17 0.00 4.18856 -139.706 -4.18856 4.18856 0.63 0.000692597 0.000643647 0.0598423 0.0555476 32 2557 23 6.64007e+06 464646 554710. 1919.41 0.86 0.143978 0.127856 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.029593 0.0258547 152 4 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.05 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30756 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1037 18660 5257 10625 2778 63.2 MiB 0.18 0.00 4.17032 -143.358 -4.17032 4.17032 0.68 0.000778162 0.000722385 0.0652289 0.060448 32 2589 21 6.64007e+06 452088 554710. 1919.41 0.99 0.166826 0.147689 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.19 0.09 0.15 -1 -1 0.19 0.0302731 0.0264379 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.63 vpr 63.15 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1085 15876 4268 10377 1231 63.2 MiB 0.15 0.00 4.15553 -144.194 -4.15553 4.15553 0.63 0.000774015 0.000718395 0.0561187 0.0520202 32 2670 22 6.64007e+06 452088 554710. 1919.41 0.90 0.149258 0.13207 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0318266 0.0277727 153 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.74 vpr 62.99 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30432 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.3 MiB 0.13 963 9146 1745 6045 1356 63.0 MiB 0.09 0.00 4.17056 -135.219 -4.17056 4.17056 0.64 0.000767842 0.000712195 0.0323649 0.0300307 30 3028 24 6.64007e+06 477204 526063. 1820.29 1.07 0.126742 0.111113 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0333563 0.0291114 149 65 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.47 vpr 62.51 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 840 12856 4254 6466 2136 62.5 MiB 0.12 0.00 3.4921 -115.538 -3.4921 3.4921 0.65 0.000615101 0.000571826 0.0475663 0.0442057 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.82 0.12201 0.10804 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0243759 0.0212663 113 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.90 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.1 MiB 0.15 996 13127 3599 7422 2106 62.9 MiB 0.13 0.00 4.20393 -135.69 -4.20393 4.20393 0.66 0.000742573 0.000689672 0.0539589 0.0501115 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.09 0.152751 0.134862 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0282203 0.0247192 146 63 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.65 vpr 62.90 MiB 0.05 7216 -1 -1 1 0.05 -1 -1 30892 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1061 10232 2187 7405 640 62.9 MiB 0.11 0.00 4.16036 -143.59 -4.16036 4.16036 0.64 0.000853651 0.000792068 0.0386711 0.0358428 26 3037 26 6.64007e+06 514878 477104. 1650.88 1.80 0.151419 0.132609 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0340566 0.0294936 156 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.74 vpr 63.16 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30424 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 924 14769 3776 9247 1746 63.2 MiB 0.15 0.00 4.18868 -135.93 -4.18868 4.18868 0.63 0.000808375 0.00074977 0.056086 0.05202 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.02 0.146397 0.130052 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0322025 0.0281177 148 94 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.65 vpr 63.08 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30472 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.17 973 15004 4033 8498 2473 63.1 MiB 0.19 0.00 3.6693 -113.052 -3.6693 3.6693 0.66 0.000902613 0.000830107 0.066143 0.0609115 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.88 0.15026 0.133376 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0291805 0.025582 138 92 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.90 vpr 63.02 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30708 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1125 9725 2385 6614 726 63.0 MiB 0.12 0.00 4.21673 -144.443 -4.21673 4.21673 0.64 0.00061603 0.000562602 0.0406824 0.0376346 30 2849 27 6.64007e+06 276276 526063. 1820.29 0.96 0.141329 0.124128 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.035455 0.030982 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.78 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30308 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 964 18079 5189 10710 2180 62.8 MiB 0.16 0.00 3.5353 -109.312 -3.5353 3.5353 0.64 0.000818081 0.000764168 0.0615371 0.0568908 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.96 0.153241 0.135526 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0252811 0.0223443 136 88 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.65 vpr 62.30 MiB 0.04 6792 -1 -1 1 0.35 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.04 799 9356 2113 6168 1075 62.3 MiB 0.09 0.00 3.4921 -122.483 -3.4921 3.4921 0.63 0.000614909 0.000572495 0.0348496 0.0324662 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.79 0.10577 0.0932244 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0235451 0.0205916 115 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.96 vpr 63.06 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.25 992 16743 5741 8435 2567 63.1 MiB 0.16 0.00 4.25856 -144.485 -4.25856 4.25856 0.64 0.000779233 0.000722929 0.0600044 0.055631 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.12 0.158203 0.140112 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0315336 0.0275113 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.77 vpr 63.05 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30544 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1054 17367 5167 10302 1898 63.1 MiB 0.10 0.00 4.21976 -145.962 -4.21976 4.21976 0.70 0.000343248 0.00031599 0.0333551 0.0307199 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.86 0.123921 0.10848 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0352269 0.0306761 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.93 vpr 62.50 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30396 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 691 7975 1531 6145 299 62.5 MiB 0.08 0.00 3.6913 -111.241 -3.6913 3.6913 0.65 0.000551682 0.00050898 0.0247783 0.0228674 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.43 0.107754 0.0942095 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.16 0.04 0.06 -1 -1 0.16 0.0140691 0.0124427 112 55 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.52 vpr 62.27 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.08 653 13381 4684 6039 2658 62.3 MiB 0.13 0.00 3.5533 -116.629 -3.5533 3.5533 0.63 0.000612246 0.000569386 0.0501599 0.0466494 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.83 0.123736 0.109539 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0261753 0.0227956 118 4 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.77 vpr 62.85 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30500 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 927 16303 4785 8793 2725 62.8 MiB 0.16 0.00 4.16476 -135.871 -4.16476 4.16476 0.64 0.000765219 0.000710821 0.0577329 0.0535618 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.84 0.144242 0.127709 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187321 0.0167692 139 59 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.16 vpr 63.20 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1051 17397 5163 9750 2484 63.2 MiB 0.17 0.00 4.41596 -136.112 -4.41596 4.41596 0.63 0.000874693 0.00081956 0.0653336 0.0605845 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.37 0.161089 0.14288 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0351537 0.0305773 136 88 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.84 vpr 62.85 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.09 1159 10441 2545 7247 649 62.8 MiB 0.12 0.00 4.95022 -163.094 -4.95022 4.95022 0.71 0.000792931 0.000736999 0.0382021 0.0354709 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.04 0.136474 0.120295 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0350806 0.0307806 179 3 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.12 vpr 62.81 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30524 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.2 MiB 0.15 813 9732 2096 6039 1597 62.8 MiB 0.08 0.00 3.7815 -111.41 -3.7815 3.7815 0.63 0.000715746 0.000664134 0.0343126 0.0318428 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.48 0.130716 0.114564 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0246781 0.0217498 138 59 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.47 vpr 62.21 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 529 12292 5081 5761 1450 62.2 MiB 0.10 0.00 3.54427 -98.353 -3.54427 3.54427 0.64 0.000439955 0.000403615 0.0404621 0.0373668 32 1668 31 6.64007e+06 263718 554710. 1919.41 0.91 0.115974 0.101693 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0241623 0.0209504 107 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.32 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30712 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.8 MiB 0.16 1462 20856 5895 12562 2399 63.3 MiB 0.23 0.00 4.52196 -148.077 -4.52196 4.52196 0.64 0.000911176 0.000845836 0.0772459 0.0714878 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.03 0.18576 0.164578 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0366714 0.0319264 186 95 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.84 vpr 63.11 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.23 998 12919 3192 8538 1189 63.1 MiB 0.14 0.00 4.42996 -140.975 -4.42996 4.42996 0.64 0.00082973 0.00077044 0.060554 0.0562332 32 2535 22 6.64007e+06 276276 554710. 1919.41 0.91 0.157879 0.139453 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.035985 0.0312398 145 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.59 vpr 62.72 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.22 894 11948 3681 7128 1139 62.7 MiB 0.12 0.00 3.6755 -115.703 -3.6755 3.6755 0.66 0.000696569 0.000647021 0.0501565 0.0465973 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.83 0.132349 0.117476 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0237604 0.020748 108 89 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.17 vpr 62.86 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30460 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.08 1023 18745 6322 9498 2925 62.9 MiB 0.17 0.00 4.46396 -140.121 -4.46396 4.46396 0.65 0.000728743 0.000677377 0.0644208 0.0598041 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.44 0.158692 0.140857 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0309427 0.0269668 147 34 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.69 vpr 62.98 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30752 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1135 20076 5790 11566 2720 63.0 MiB 0.20 0.00 4.51716 -144.659 -4.51716 4.51716 0.65 0.000987666 0.000911618 0.0748152 0.0694554 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.89 0.179385 0.158802 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0342205 0.0297936 173 64 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.21 vpr 62.93 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30400 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.3 MiB 0.07 923 11484 2608 8162 714 62.9 MiB 0.12 0.00 3.73061 -110.59 -3.73061 3.73061 0.67 0.00072196 0.000670654 0.0402824 0.0373785 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.62 0.129164 0.113641 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0315296 0.0274364 135 61 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.81 vpr 62.67 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30516 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1008 13516 3637 9135 744 62.7 MiB 0.14 0.00 4.19956 -142.899 -4.19956 4.19956 0.65 0.000781943 0.000725876 0.0450655 0.041736 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.10 0.160164 0.140458 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0340321 0.0296331 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.29 vpr 62.99 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.3 MiB 0.14 988 17184 5218 8807 3159 63.0 MiB 0.18 0.00 3.62559 -123.648 -3.62559 3.62559 0.69 0.000781233 0.000724812 0.0666394 0.0618203 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.32 0.16354 0.144196 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0385387 0.0334723 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.50 vpr 62.46 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.5 MiB 0.07 573 13430 5649 6739 1042 62.5 MiB 0.11 0.00 3.6785 -105.931 -3.6785 3.6785 0.66 0.000456864 0.00041738 0.0472114 0.0436413 28 1653 18 6.64007e+06 226044 500653. 1732.36 0.95 0.102083 0.0907808 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.023585 0.0204936 95 34 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.47 vpr 62.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30084 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.8 MiB 0.16 857 11783 4174 5528 2081 62.7 MiB 0.11 0.00 4.00656 -110.848 -4.00656 4.00656 0.63 0.000771003 0.000724295 0.0463133 0.0430175 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.82 0.121351 0.107278 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0207409 0.0182056 112 82 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.78 vpr 62.84 MiB 0.02 7016 -1 -1 1 0.05 -1 -1 30432 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1100 13261 3564 8068 1629 62.8 MiB 0.12 0.00 4.80256 -145.153 -4.80256 4.80256 0.65 0.000728323 0.000676865 0.0446827 0.041501 28 2902 24 6.64007e+06 477204 500653. 1732.36 1.01 0.134972 0.119033 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0298906 0.0261146 151 34 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.69 vpr 62.64 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30372 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.9 MiB 0.17 620 10442 2502 7352 588 62.6 MiB 0.09 0.00 3.6803 -100.526 -3.6803 3.6803 0.65 0.000602596 0.00056042 0.0324745 0.0301407 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.11 0.115906 0.101214 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0225636 0.0195846 108 56 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.62 vpr 62.75 MiB 0.02 6772 -1 -1 1 0.05 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.14 691 13906 4599 7385 1922 62.8 MiB 0.13 0.00 3.53127 -120.288 -3.53127 3.53127 0.66 0.000646162 0.000600867 0.0536383 0.0499105 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.86 0.131636 0.116643 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0264044 0.0230142 118 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.84 vpr 62.97 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.4 MiB 0.12 999 13261 3446 8635 1180 63.0 MiB 0.13 0.00 3.5665 -119.865 -3.5665 3.5665 0.67 0.000753069 0.000700131 0.0460652 0.0427129 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.82 0.132461 0.116739 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0281434 0.0246253 144 64 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.51 vpr 62.57 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 23.8 MiB 0.14 869 9368 2508 6076 784 62.6 MiB 0.09 0.00 3.34153 -105.882 -3.34153 3.34153 0.64 0.000628762 0.000585022 0.0368969 0.0343516 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.81 0.111414 0.0982209 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.20 0.06 0.15 -1 -1 0.20 0.0236052 0.0205975 106 55 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.95 vpr 62.85 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.0 MiB 0.14 879 9865 2512 6573 780 62.8 MiB 0.10 0.00 3.57229 -117.612 -3.57229 3.57229 0.70 0.000747709 0.000694802 0.0357745 0.0332191 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.18 0.130126 0.114437 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0291816 0.0255959 137 65 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.74 vpr 63.13 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30428 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.25 875 10540 2287 7686 567 63.1 MiB 0.11 0.00 3.79366 -119.555 -3.79366 3.79366 0.64 0.000791213 0.000734819 0.0389231 0.0361057 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.89 0.137661 0.120894 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298256 0.0260566 149 93 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.57 vpr 62.71 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.15 816 8626 2345 5890 391 62.7 MiB 0.09 0.00 3.06096 -106.925 -3.06096 3.06096 0.64 0.000663626 0.000616966 0.0346069 0.0321608 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.87 0.115809 0.101231 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291058 0.0254055 115 61 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.62 vpr 62.65 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.17 920 11296 3024 7326 946 62.7 MiB 0.11 0.00 3.5031 -121.121 -3.5031 3.5031 0.66 0.000672425 0.000624742 0.045022 0.0418272 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.82 0.124642 0.110364 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0273739 0.0238382 121 63 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.50 vpr 62.93 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30768 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1027 12240 2965 8371 904 62.9 MiB 0.12 0.00 4.25676 -144.495 -4.25676 4.25676 0.63 0.000773013 0.000717401 0.0422635 0.0391933 32 2501 30 6.64007e+06 477204 554710. 1919.41 0.76 0.108207 0.0959152 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333425 0.0290399 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.66 vpr 63.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30516 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1021 16079 4076 10280 1723 63.0 MiB 0.18 0.00 3.7925 -111.563 -3.7925 3.7925 0.64 0.000732658 0.000681636 0.063549 0.0589393 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.83 0.1556 0.137191 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0286238 0.0250386 135 62 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.85 vpr 62.89 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.24 937 9020 1835 6701 484 62.9 MiB 0.10 0.00 4.29776 -145.038 -4.29776 4.29776 0.67 0.000852686 0.000790953 0.0352488 0.0327114 32 2670 31 6.64007e+06 489762 554710. 1919.41 0.95 0.148463 0.129517 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0353782 0.0306721 158 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.37 vpr 62.15 MiB 0.05 6740 -1 -1 1 0.03 -1 -1 30504 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 804 11948 3966 6404 1578 62.1 MiB 0.10 0.00 3.08296 -103.61 -3.08296 3.08296 0.65 0.000573544 0.000534111 0.0418632 0.0389878 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.77 0.108873 0.0963511 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0236629 0.0205892 106 4 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.84 vpr 62.84 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30548 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.2 MiB 0.13 998 18111 4956 10747 2408 62.8 MiB 0.17 0.00 4.26296 -139.632 -4.26296 4.26296 0.65 0.000775327 0.000719281 0.0645162 0.059778 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.22 0.16459 0.145722 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0179052 0.0158423 144 92 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.66 vpr 63.04 MiB 0.04 6944 -1 -1 1 0.04 -1 -1 30116 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.29 734 13381 4309 7077 1995 63.0 MiB 0.13 0.00 3.54047 -121.881 -3.54047 3.54047 0.64 0.000715267 0.000663699 0.0573444 0.0532458 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.82 0.143448 0.127503 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0294383 0.02566 114 96 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.63 vpr 62.95 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30316 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 9501 2041 6911 549 63.0 MiB 0.11 0.00 3.5841 -124.322 -3.5841 3.5841 0.65 0.000770066 0.000715436 0.0340486 0.0316187 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.86 0.134402 0.117752 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0283215 0.024894 151 65 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.13 vpr 63.33 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30936 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1244 16489 4012 10933 1544 63.3 MiB 0.19 0.00 4.96651 -168.366 -4.96651 4.96651 0.67 0.00092804 0.000862132 0.0701169 0.065029 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.17 0.188052 0.165947 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.18 0.11 0.08 -1 -1 0.18 0.0361165 0.031558 188 96 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.31 vpr 62.08 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.08 483 10509 2545 7262 702 62.1 MiB 0.08 0.00 2.73878 -81.5531 -2.73878 2.73878 0.65 0.00052924 0.000492155 0.0358284 0.0333551 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.77 0.10014 0.0880357 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.17 0.05 0.11 -1 -1 0.17 0.0216446 0.0187493 83 56 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.17 MiB 0.03 6956 -1 -1 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.5 MiB 0.08 793 10388 3558 5136 1694 62.2 MiB 0.07 0.00 3.6815 -114.291 -3.6815 3.6815 0.73 0.000616805 0.000573515 0.0283126 0.0262449 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.78 0.100509 0.0881538 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0245803 0.0214329 97 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.66 vpr 62.61 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.9 MiB 0.11 798 13966 5020 6560 2386 62.6 MiB 0.13 0.00 3.4859 -119.604 -3.4859 3.4859 0.64 0.000646211 0.000600452 0.0530012 0.0492348 32 2382 23 6.64007e+06 226044 554710. 1919.41 0.93 0.131792 0.116789 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0274288 0.0238717 126 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.42 vpr 62.14 MiB 0.03 6916 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.05 678 12127 3168 7672 1287 62.1 MiB 0.10 0.00 3.4089 -91.215 -3.4089 3.4089 0.63 0.000762538 0.000708997 0.0339782 0.0316566 26 1687 20 6.64007e+06 426972 477104. 1650.88 0.94 0.0971062 0.0853718 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0233551 0.0201962 103 34 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.77 vpr 62.98 MiB 0.05 7008 -1 -1 1 0.04 -1 -1 30548 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1064 14828 5337 7470 2021 63.0 MiB 0.16 0.00 4.34676 -140.278 -4.34676 4.34676 0.64 0.000802022 0.000744616 0.0656436 0.0609464 32 2475 24 6.64007e+06 276276 554710. 1919.41 0.90 0.163639 0.14489 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0268572 0.023701 149 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.45 vpr 63.04 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30364 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.4 MiB 0.17 786 10336 2273 7345 718 63.0 MiB 0.11 0.00 3.53327 -114.261 -3.53327 3.53327 0.64 0.00101929 0.000933286 0.0378106 0.0349707 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.71 0.165672 0.144622 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0304777 0.0266013 148 94 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.67 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30620 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.5 MiB 0.21 984 7523 1506 5708 309 62.7 MiB 0.09 0.00 3.92206 -133.487 -3.92206 3.92206 0.64 0.000809792 0.000752004 0.0300029 0.02782 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.08 0.132418 0.11575 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.18 0.09 0.08 -1 -1 0.18 0.0304517 0.0265385 151 96 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.70 vpr 62.96 MiB 0.05 7108 -1 -1 1 0.04 -1 -1 30572 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.2 MiB 0.31 986 12323 4513 6271 1539 63.0 MiB 0.08 0.00 4.33507 -129.747 -4.33507 4.33507 0.65 0.000344815 0.000317708 0.0257176 0.0237632 32 2540 23 6.65987e+06 266238 554710. 1919.41 0.82 0.117595 0.102598 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0312099 0.027203 140 91 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.73 vpr 62.88 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1040 16523 4439 10256 1828 62.9 MiB 0.15 0.00 3.41879 -119.689 -3.41879 3.41879 0.63 0.000743191 0.000689694 0.0571518 0.0530765 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.05 0.145688 0.129103 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0324746 0.0282694 141 65 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.40 vpr 62.63 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.1 MiB 0.11 793 11603 2857 6819 1927 62.6 MiB 0.07 0.00 4.2977 -123.649 -4.2977 4.2977 0.71 0.000696309 0.000647326 0.0241568 0.022322 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.67 0.154266 0.133557 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.20 0.09 0.13 -1 -1 0.20 0.0328465 0.0287523 138 34 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.02 vpr 62.72 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1026 15456 4961 8586 1909 62.7 MiB 0.16 0.00 4.14936 -143.085 -4.14936 4.14936 0.64 0.000738993 0.000686648 0.0653041 0.060671 32 2926 21 6.65987e+06 253560 554710. 1919.41 0.92 0.15429 0.137314 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0341645 0.0298938 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.79 vpr 62.69 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1029 9501 1978 7135 388 62.7 MiB 0.10 0.00 3.43623 -117.882 -3.43623 3.43623 0.65 0.000769948 0.000712758 0.0338278 0.0313746 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.86 0.12975 0.113679 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0318188 0.0278025 154 64 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.60 vpr 61.91 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30808 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.3 MiB 0.18 580 13026 4344 6329 2353 61.9 MiB 0.12 0.00 3.7565 -98.351 -3.7565 3.7565 0.75 0.000567201 0.000527919 0.0509653 0.047448 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.78 0.115784 0.102776 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0205585 0.0180041 96 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.62 vpr 62.64 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30228 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1006 10170 2426 6636 1108 62.6 MiB 0.10 0.00 3.27903 -106.33 -3.27903 3.27903 0.65 0.000676177 0.000628649 0.0347205 0.032285 28 2449 18 6.65987e+06 418374 500653. 1732.36 0.90 0.111753 0.0985446 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0263728 0.0230883 139 4 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.66 vpr 62.41 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.7 MiB 0.27 870 11571 3268 6617 1686 62.4 MiB 0.11 0.00 3.07084 -101.313 -3.07084 3.07084 0.67 0.000664646 0.000617713 0.04847 0.0450797 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.78 0.126011 0.111481 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0262122 0.0228715 105 85 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.16 vpr 62.44 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30464 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 642 11432 4032 4649 2751 62.4 MiB 0.10 0.00 3.56921 -118.924 -3.56921 3.56921 0.63 0.000655871 0.000609079 0.0453333 0.0421093 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.24 0.191647 0.166991 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0275798 0.0241721 121 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.88 vpr 62.64 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 0.26 784 11571 3060 7609 902 62.6 MiB 0.11 0.00 3.4841 -113.76 -3.4841 3.4841 0.64 0.00065046 0.000604685 0.0468917 0.0436505 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.87 0.130299 0.115416 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0293567 0.0254978 110 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.42 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30484 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.7 MiB 0.25 841 11223 2602 8034 587 62.4 MiB 0.11 0.00 3.27957 -108.894 -3.27957 3.27957 0.65 0.000659311 0.000611112 0.0378672 0.0351403 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.87 0.118192 0.104153 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0249791 0.0218061 114 65 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.99 vpr 62.78 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1002 18711 5900 10256 2555 62.8 MiB 0.18 0.00 3.50686 -122.446 -3.50686 3.50686 0.65 0.000750831 0.000696554 0.0677127 0.0627021 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.93 0.158304 0.140707 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0317277 0.0276627 143 58 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.43 vpr 62.46 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 30576 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.0 MiB 0.29 942 7973 1567 6126 280 62.5 MiB 0.09 0.00 4.02327 -135.611 -4.02327 4.02327 0.87 0.000618028 0.000567462 0.0256015 0.0235677 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.04 0.119624 0.104685 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.21 0.10 0.13 -1 -1 0.21 0.0344855 0.0301231 156 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.60 vpr 62.16 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.17 686 7177 1709 4538 930 62.2 MiB 0.07 0.00 3.15358 -93.6229 -3.15358 3.15358 0.65 0.000583404 0.000543612 0.0265262 0.0247235 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.79 0.0947739 0.083094 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.24 0.08 0.12 -1 -1 0.24 0.0356502 0.0314816 107 29 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.50 vpr 62.88 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1074 13992 4161 7846 1985 62.9 MiB 0.14 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000597023 0.00054735 0.0487722 0.044764 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.03 0.125802 0.111277 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0319986 0.02813 146 63 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.46 vpr 62.90 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30296 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 934 18323 6450 8556 3317 62.9 MiB 0.15 0.00 3.6343 -123.732 -3.6343 3.6343 0.64 0.000727331 0.000672626 0.0640976 0.0595207 30 2475 27 6.65987e+06 431052 526063. 1820.29 1.49 0.164195 0.146008 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.18 0.07 0.09 -1 -1 0.18 0.027872 0.0245105 142 57 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.53 vpr 62.79 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30056 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.19 832 15430 4777 8349 2304 62.8 MiB 0.14 0.00 2.83964 -101.748 -2.83964 2.83964 0.63 0.000679661 0.000630926 0.0514787 0.0477813 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.77 0.125249 0.111012 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0235774 0.0206696 118 65 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.45 vpr 61.64 MiB 0.02 6648 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63120 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.12 661 10835 3152 6204 1479 61.6 MiB 0.08 0.00 2.60038 -85.2282 -2.60038 2.60038 0.66 0.000601778 0.00055492 0.0354827 0.0330116 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.75 0.0987736 0.0869962 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.018376 0.0159886 85 34 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.65 vpr 62.57 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30424 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.9 MiB 0.20 855 13768 4604 7573 1591 62.6 MiB 0.13 0.00 3.94338 -122.155 -3.94338 3.94338 0.64 0.000659835 0.000613017 0.0578196 0.0537615 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.81 0.137082 0.121579 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0238189 0.0208769 113 64 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.59 vpr 62.84 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1021 12248 3399 7922 927 62.8 MiB 0.12 0.00 3.9823 -134.861 -3.9823 3.9823 0.65 0.000718081 0.000664225 0.0428026 0.0397435 26 2573 27 6.65987e+06 431052 477104. 1650.88 0.98 0.136722 0.120444 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0320781 0.0280901 145 34 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.94 vpr 62.72 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30572 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1084 15644 4587 8678 2379 62.7 MiB 0.15 0.00 3.46744 -121.209 -3.46744 3.46744 0.67 0.000843363 0.000783129 0.0608548 0.0565342 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.94 0.166898 0.147133 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0377261 0.0328294 149 124 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.28 vpr 61.62 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63096 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.0 MiB 0.15 410 10345 3142 6004 1199 61.6 MiB 0.07 0.00 2.61938 -68.655 -2.61938 2.61938 0.63 0.000440883 0.00040938 0.0303597 0.0282489 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.71 0.0830307 0.0732116 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.18 0.04 0.14 -1 -1 0.18 0.0157633 0.0137968 77 30 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.52 vpr 62.74 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1123 11064 3077 6737 1250 62.7 MiB 0.12 0.00 4.10424 -135.549 -4.10424 4.10424 0.60 0.000690645 0.000642303 0.0442303 0.0411699 32 2636 25 6.65987e+06 253560 554710. 1919.41 0.89 0.1307 0.115484 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0290035 0.0255074 137 3 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.40 vpr 61.63 MiB 0.02 6712 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63108 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.0 MiB 0.04 594 8553 1943 6358 252 61.6 MiB 0.07 0.00 2.22607 -81.0919 -2.22607 2.22607 0.69 0.000467776 0.000435397 0.0271284 0.0252266 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.90 0.092641 0.081581 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.17 0.04 0.11 -1 -1 0.17 0.0141677 0.0125464 81 3 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.71 vpr 62.89 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30508 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.07 1112 19189 6002 11213 1974 62.9 MiB 0.18 0.00 4.06247 -140.472 -4.06247 4.06247 0.64 0.000735489 0.000682684 0.0695124 0.0644878 32 2640 23 6.65987e+06 418374 554710. 1919.41 0.92 0.158962 0.141374 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.21 0.10 0.12 -1 -1 0.21 0.0342125 0.0300857 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.72 vpr 62.70 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30112 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1134 16059 4004 10217 1838 62.7 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.66 0.000545831 0.000501028 0.050128 0.0465176 30 2437 23 6.65987e+06 443730 526063. 1820.29 0.88 0.135047 0.119558 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0291351 0.0254669 150 3 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.37 vpr 62.63 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1120 14463 4038 8924 1501 62.6 MiB 0.16 0.00 3.91784 -136.256 -3.91784 3.91784 0.64 0.000938635 0.000872578 0.0545017 0.0506019 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.29 0.153439 0.13593 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.20 0.11 0.13 -1 -1 0.20 0.0380745 0.0332444 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.52 vpr 62.19 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.7 MiB 0.06 736 8191 2107 5347 737 62.2 MiB 0.08 0.00 2.8895 -100.047 -2.8895 2.8895 0.66 0.000616876 0.00057359 0.0325978 0.0303512 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.81 0.107934 0.0949648 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.24 0.06 0.10 -1 -1 0.24 0.0230211 0.0201368 106 34 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.74 vpr 62.43 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.7 MiB 0.12 832 12156 3666 7026 1464 62.4 MiB 0.11 0.00 3.4951 -115.55 -3.4951 3.4951 0.66 0.000613693 0.000570723 0.045411 0.0422522 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.82 0.119352 0.105675 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0245931 0.021542 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30468 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.7 MiB 0.12 590 7820 1903 5456 461 62.2 MiB 0.08 0.00 3.4309 -99.7277 -3.4309 3.4309 0.66 0.000586781 0.000546298 0.0287992 0.0267962 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.05 0.115158 0.100443 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0243158 0.0211755 107 34 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.61 vpr 62.44 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.12 686 12008 2561 8162 1285 62.4 MiB 0.10 0.00 3.4859 -118.026 -3.4859 3.4859 0.65 0.000614104 0.000571435 0.0433436 0.0403278 32 2225 24 6.65987e+06 228204 554710. 1919.41 0.94 0.12409 0.109888 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0261458 0.0229299 125 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.40 vpr 62.27 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 778 11809 2809 7761 1239 62.3 MiB 0.11 0.00 3.29178 -109.233 -3.29178 3.29178 0.76 0.000632262 0.000587894 0.0367419 0.0341078 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.46 0.127783 0.111946 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.16 0.08 0.06 -1 -1 0.16 0.0256641 0.0223509 119 34 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.55 vpr 62.50 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30236 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.19 717 8047 1725 5786 536 62.5 MiB 0.08 0.00 2.76744 -86.2128 -2.76744 2.76744 0.64 0.000486762 0.000446094 0.0271978 0.0251921 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.82 0.0964644 0.0844708 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.0254877 0.0223402 109 61 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.24 vpr 62.72 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30560 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1246 13117 3185 8526 1406 62.7 MiB 0.15 0.00 4.16036 -141.523 -4.16036 4.16036 0.65 0.000837396 0.000779058 0.0485236 0.0451188 26 4082 47 6.65987e+06 494442 477104. 1650.88 3.31 0.187362 0.164646 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.0327446 0.0288259 179 29 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.68 vpr 62.93 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30540 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1041 9447 2232 6542 673 62.9 MiB 0.11 0.00 3.5061 -122.514 -3.5061 3.5061 0.67 0.000775963 0.00071838 0.03559 0.0329359 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.88 0.127609 0.111981 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0296716 0.0260214 152 65 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.42 vpr 62.61 MiB 0.05 6992 -1 -1 1 0.04 -1 -1 30508 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 709 5599 957 4403 239 62.6 MiB 0.07 0.00 3.18838 -103.883 -3.18838 3.18838 0.68 0.000684041 0.000636138 0.0218387 0.0202942 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.52 0.107343 0.0935397 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0287437 0.0249188 113 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.80 vpr 62.71 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1062 14541 4862 7202 2477 62.7 MiB 0.15 0.00 3.4921 -118.867 -3.4921 3.4921 0.66 0.00069921 0.000645777 0.0620453 0.0576392 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.84 0.147518 0.131138 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0325776 0.0285071 148 64 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.82 vpr 63.00 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30504 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1075 7953 1851 5455 647 63.0 MiB 0.10 0.00 4.84238 -140.996 -4.84238 4.84238 0.64 0.000833417 0.000774336 0.0388296 0.0360857 30 2507 19 6.65987e+06 266238 526063. 1820.29 0.89 0.129577 0.11403 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0303767 0.0266649 149 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.76 vpr 62.91 MiB 0.03 7192 -1 -1 1 0.05 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 0.38 977 8868 2457 6032 379 62.9 MiB 0.10 0.00 4.78027 -132.334 -4.78027 4.78027 0.64 0.000772969 0.00071824 0.0399795 0.0371651 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.83 0.131159 0.115448 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0262971 0.0231833 143 90 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.26 vpr 62.64 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30412 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1043 11922 3052 7896 974 62.6 MiB 0.15 0.00 3.40784 -114.93 -3.40784 3.40784 0.67 0.000764538 0.000709662 0.0495888 0.0458193 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.27 0.138671 0.122224 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.18 0.11 0.10 -1 -1 0.18 0.0374524 0.0326004 146 64 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.65 vpr 62.65 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30844 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1091 9903 2241 6952 710 62.7 MiB 0.11 0.00 3.91784 -134.792 -3.91784 3.91784 0.64 0.000769042 0.000714512 0.036182 0.0336156 30 2568 27 6.65987e+06 443730 526063. 1820.29 0.92 0.134481 0.118161 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.20 0.08 0.13 -1 -1 0.20 0.0330949 0.0289531 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.09 vpr 63.06 MiB 0.04 7268 -1 -1 1 0.04 -1 -1 30632 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1177 18648 4595 11838 2215 63.1 MiB 0.21 0.00 4.0593 -137.323 -4.0593 4.0593 0.64 0.000907617 0.000842397 0.0730646 0.0677843 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.04 0.18259 0.161712 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.039302 0.034334 184 96 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.42 vpr 62.54 MiB 0.03 6832 -1 -1 1 0.02 -1 -1 30660 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 685 11806 2914 7153 1739 62.5 MiB 0.11 0.00 3.55518 -111.493 -3.55518 3.55518 0.60 0.000627651 0.000583741 0.0454916 0.0423698 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.85 0.122125 0.108067 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.19 0.07 0.10 -1 -1 0.19 0.0250079 0.0218439 116 34 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.16 vpr 62.51 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30452 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.27 976 9675 2155 7053 467 62.5 MiB 0.11 0.00 4.0281 -131.561 -4.0281 4.0281 0.68 0.000757609 0.000704246 0.0349931 0.0325048 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.30 0.128477 0.112874 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0323436 0.0282261 150 64 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.72 vpr 62.96 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30564 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1040 11641 3109 7665 867 63.0 MiB 0.13 0.00 3.62624 -117.445 -3.62624 3.62624 0.66 0.000763023 0.000708828 0.0428777 0.0397849 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.05 0.140709 0.123982 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0292194 0.0256143 148 63 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.03 vpr 62.44 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30560 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.0 MiB 0.14 853 8685 1897 5601 1187 62.4 MiB 0.09 0.00 4.14936 -138.467 -4.14936 4.14936 0.66 0.000714112 0.00066334 0.0356344 0.0330795 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.21 0.119221 0.104964 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0341263 0.0300601 150 3 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.90 vpr 62.91 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1097 11798 3144 7589 1065 62.9 MiB 0.13 0.00 3.29555 -116.715 -3.29555 3.29555 0.64 0.000789388 0.000732844 0.0449829 0.0416769 32 2610 28 6.65987e+06 431052 554710. 1919.41 0.95 0.143859 0.126648 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0423671 0.036921 145 96 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.83 vpr 62.57 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30476 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1042 7623 1446 5778 399 62.6 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.64 0.000765022 0.000709614 0.0282191 0.0262215 32 2739 23 6.65987e+06 443730 554710. 1919.41 0.90 0.121539 0.106139 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0298541 0.0262543 146 61 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.73 vpr 62.61 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1118 19136 5296 11671 2169 62.6 MiB 0.19 0.00 3.42984 -118.83 -3.42984 3.42984 0.59 0.000775195 0.000719231 0.0661715 0.0612942 32 2579 24 6.65987e+06 469086 554710. 1919.41 0.89 0.169748 0.150184 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.22 0.09 0.12 -1 -1 0.22 0.034144 0.029891 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.57 vpr 62.43 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1049 17883 5721 9099 3063 62.4 MiB 0.17 0.00 4.02327 -139.097 -4.02327 4.02327 0.60 0.00074002 0.000684777 0.0617647 0.0573754 32 2663 21 6.65987e+06 443730 554710. 1919.41 0.91 0.150493 0.133842 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0356784 0.0310904 150 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.93 vpr 62.58 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1032 17491 4961 10150 2380 62.6 MiB 0.16 0.00 3.95704 -138.916 -3.95704 3.95704 0.65 0.000781284 0.000725712 0.060515 0.0561538 32 2565 23 6.65987e+06 469086 554710. 1919.41 0.91 0.156774 0.1388 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.28 0.09 0.12 -1 -1 0.28 0.0299453 0.0264942 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.89 vpr 62.74 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1081 15859 4297 9232 2330 62.7 MiB 0.16 0.00 4.24338 -127.817 -4.24338 4.24338 0.66 0.000818516 0.000758987 0.0615839 0.0570575 28 2788 21 6.65987e+06 431052 500653. 1732.36 0.91 0.159928 0.141205 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.08 0.11 -1 -1 0.20 0.0313545 0.0273084 145 122 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.84 vpr 62.99 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1088 15822 4733 9518 1571 63.0 MiB 0.17 0.00 4.01118 -127.976 -4.01118 4.01118 0.63 0.000816562 0.000758681 0.073541 0.0683868 32 2771 23 6.65987e+06 253560 554710. 1919.41 0.91 0.173218 0.153771 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0375222 0.0328049 149 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.34 vpr 62.48 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30608 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.7 MiB 0.07 798 8401 2034 5819 548 62.5 MiB 0.09 0.00 3.27158 -111.236 -3.27158 3.27158 0.63 0.000654809 0.000602127 0.0276186 0.0256554 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.83 0.102596 0.0900605 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0261568 0.0228501 124 34 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.74 vpr 62.69 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 912 11830 3154 7792 884 62.7 MiB 0.13 0.00 3.41618 -118.934 -3.41618 3.41618 0.65 0.000701766 0.000650887 0.0499572 0.0463826 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.85 0.134778 0.119009 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.029552 0.0257673 121 94 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.89 vpr 63.05 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30780 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.9 MiB 0.15 1362 14988 3862 9734 1392 63.1 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.67 0.000735348 0.000674342 0.0409575 0.0376465 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.03 0.153144 0.133909 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0379304 0.0330853 187 65 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.72 vpr 62.70 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 954 14567 4735 7432 2400 62.7 MiB 0.14 0.00 3.51422 -121.562 -3.51422 3.51422 0.64 0.000733427 0.000681526 0.0519425 0.0482695 32 2533 23 6.65987e+06 393018 554710. 1919.41 0.94 0.140451 0.124348 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0306468 0.0268595 146 34 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.43 vpr 62.32 MiB 0.06 6772 -1 -1 1 0.03 -1 -1 30300 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.7 MiB 0.08 839 17066 5534 9253 2279 62.3 MiB 0.14 0.00 3.49012 -114.14 -3.49012 3.49012 0.63 0.000624954 0.000582346 0.053231 0.0494946 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.80 0.126959 0.112552 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0272575 0.0236996 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.28 vpr 63.07 MiB 0.03 7440 -1 -1 1 0.04 -1 -1 30928 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1333 18829 5161 11634 2034 63.1 MiB 0.21 0.00 4.64147 -157.361 -4.64147 4.64147 0.63 0.000952758 0.000882584 0.0748397 0.0693026 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.03 0.190972 0.169073 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0389888 0.0340168 186 127 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.71 vpr 62.50 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1044 16340 4500 10034 1806 62.5 MiB 0.15 0.00 4.15932 -143.209 -4.15932 4.15932 0.64 0.000742717 0.000689388 0.0550826 0.0511361 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.87 0.145136 0.128588 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0264479 0.0232405 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.58 vpr 62.54 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.08 722 13703 3609 8489 1605 62.5 MiB 0.12 0.00 3.4859 -117.474 -3.4859 3.4859 0.64 0.000509563 0.000466631 0.0413225 0.0383061 28 2223 23 6.65987e+06 393018 500653. 1732.36 0.98 0.116584 0.102947 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0259409 0.0226801 123 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.74 vpr 62.88 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30776 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1337 12702 3419 8223 1060 62.9 MiB 0.14 0.00 4.90437 -166.477 -4.90437 4.90437 0.65 0.000858617 0.000798689 0.0470784 0.0437851 30 3011 23 6.65987e+06 519798 526063. 1820.29 0.93 0.14967 0.131835 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0354023 0.0309891 188 34 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.65 vpr 62.32 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.8 MiB 0.15 852 11260 3935 5447 1878 62.3 MiB 0.10 0.00 3.4749 -119.679 -3.4749 3.4749 0.64 0.00063525 0.000582271 0.0426567 0.0396897 32 2124 48 6.65987e+06 202848 554710. 1919.41 0.96 0.140232 0.12312 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0246848 0.0215664 121 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.62 vpr 62.19 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.6 MiB 0.18 707 8073 1842 5622 609 62.2 MiB 0.09 0.00 3.47387 -110.471 -3.47387 3.47387 0.66 0.000624242 0.000581123 0.0244039 0.0225586 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.81 0.0966993 0.0845194 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0267687 0.0233655 113 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.58 vpr 62.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30360 -1 -1 33 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.0 MiB 0.27 964 15856 4550 8712 2594 62.7 MiB 0.15 0.00 3.50895 -109.722 -3.50895 3.50895 0.63 0.000751214 0.000698151 0.0576721 0.0535069 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.84 0.159025 0.140483 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.22 0.06 0.12 -1 -1 0.22 0.0282237 0.0247772 133 88 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.65 vpr 62.90 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30704 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1002 7770 1874 5369 527 62.9 MiB 0.10 0.00 4.0593 -140.547 -4.0593 4.0593 0.64 0.000766236 0.000710834 0.0351693 0.032663 32 2537 20 6.65987e+06 253560 554710. 1919.41 0.90 0.125729 0.110466 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0330931 0.0289263 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.06 vpr 62.55 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30652 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1039 19223 6359 10018 2846 62.6 MiB 0.18 0.00 4.06007 -140.169 -4.06007 4.06007 0.64 0.000769709 0.00071392 0.0689799 0.0639557 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.04 0.16362 0.14536 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.17 0.09 0.07 -1 -1 0.17 0.0326348 0.0286053 152 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.71 vpr 62.58 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30604 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.7 MiB 0.21 697 8614 1900 5780 934 62.6 MiB 0.09 0.00 3.41884 -113.998 -3.41884 3.41884 0.64 0.000678438 0.00062919 0.0298938 0.0277444 32 1903 25 6.65987e+06 380340 554710. 1919.41 0.91 0.119155 0.104234 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0280949 0.0245343 120 65 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.77 vpr 62.59 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.30 800 12464 4465 5577 2422 62.6 MiB 0.14 0.00 3.46898 -107.312 -3.46898 3.46898 0.77 0.000677636 0.000629193 0.0620627 0.0576711 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.83 0.143619 0.12746 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0297124 0.0258183 109 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.69 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30420 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.0 MiB 0.20 996 12623 3384 8308 931 62.7 MiB 0.13 0.00 3.33164 -109.888 -3.33164 3.33164 0.64 0.000725495 0.000673787 0.0466242 0.0432373 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.42 0.14643 0.128923 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0301378 0.0264004 137 60 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.56 vpr 62.57 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30324 -1 -1 31 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 23.9 MiB 0.10 995 16207 5283 8775 2149 62.6 MiB 0.15 0.00 4.24344 -123.397 -4.24344 4.24344 0.64 0.000665842 0.000619186 0.0554609 0.0515575 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.88 0.132921 0.118081 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0286154 0.0250244 133 34 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.84 vpr 62.43 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30264 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.7 MiB 0.36 727 13152 3808 7208 2136 62.4 MiB 0.12 0.00 3.5343 -112.204 -3.5343 3.5343 0.65 0.000544335 0.000489546 0.047606 0.043977 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.83 0.124699 0.110026 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.21 0.05 0.12 -1 -1 0.21 0.0230428 0.0202149 114 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.80 vpr 62.54 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30392 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.30 910 8164 2057 5403 704 62.5 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.79 0.000553097 0.000506008 0.0290293 0.0266783 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.83 0.110159 0.0962057 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0276936 0.0242626 113 91 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.08 vpr 62.70 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30204 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1101 12023 3143 7728 1152 62.7 MiB 0.12 0.00 4.17558 -139.576 -4.17558 4.17558 0.70 0.000693696 0.000644473 0.0410847 0.0381683 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.24 0.1286 0.113996 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0260032 0.023028 150 4 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.95 vpr 62.57 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30568 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1037 13598 4125 8601 872 62.6 MiB 0.15 0.00 4.1263 -141.609 -4.1263 4.1263 0.65 0.000780035 0.000723919 0.0522642 0.0485146 28 2566 22 6.65987e+06 431052 500653. 1732.36 1.18 0.142535 0.12639 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0335775 0.0294161 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.37 vpr 62.46 MiB 0.04 7000 -1 -1 1 0.04 -1 -1 30540 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1033 10448 2380 7653 415 62.5 MiB 0.12 0.00 4.16458 -142.258 -4.16458 4.16458 0.65 0.000781082 0.000725478 0.0399336 0.0369548 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.49 0.149414 0.130886 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.03088 0.0270837 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.77 vpr 62.55 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.25 982 9031 1878 6401 752 62.6 MiB 0.10 0.00 3.86706 -126.941 -3.86706 3.86706 0.66 0.000771741 0.000716852 0.0320121 0.0296859 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.90 0.127245 0.111684 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.20 0.08 0.11 -1 -1 0.20 0.0358447 0.0315433 148 65 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.98 vpr 62.46 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.6 MiB 0.21 656 10400 2388 7389 623 62.5 MiB 0.10 0.00 3.50927 -110.79 -3.50927 3.50927 0.69 0.000616738 0.000573255 0.0391656 0.0364384 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.09 0.136403 0.119444 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0257346 0.0226014 112 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.96 vpr 62.67 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30340 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 0.24 986 11613 3437 7269 907 62.7 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.80 0.000568302 0.000521081 0.0391176 0.0359418 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.90 0.126895 0.111177 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.0274918 0.0239688 145 63 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.07 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30864 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1052 13117 2855 8842 1420 62.8 MiB 0.13 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000866717 0.000806091 0.0500562 0.0465014 32 2892 25 6.65987e+06 494442 554710. 1919.41 0.93 0.156748 0.137793 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.18 0.07 0.08 -1 -1 0.18 0.0219432 0.0192119 154 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.94 vpr 62.67 MiB 0.06 7112 -1 -1 1 0.03 -1 -1 30652 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1048 9679 2436 6757 486 62.7 MiB 0.11 0.00 3.91106 -131.073 -3.91106 3.91106 0.66 0.00079337 0.000736257 0.0368721 0.034059 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.11 0.132776 0.116623 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0327955 0.0286431 146 94 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.85 vpr 62.86 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30524 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.2 MiB 0.30 967 14375 3613 8859 1903 62.9 MiB 0.14 0.00 3.7785 -114.4 -3.7785 3.7785 0.68 0.000584347 0.000535331 0.0433938 0.0398308 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.98 0.135747 0.119321 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0291872 0.0256149 136 92 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.93 vpr 62.59 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1103 13477 4009 7448 2020 62.6 MiB 0.15 0.00 4.11944 -143.283 -4.11944 4.11944 0.67 0.000777769 0.000721767 0.0599668 0.0556484 32 2896 23 6.65987e+06 266238 554710. 1919.41 0.99 0.154185 0.136688 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.28 0.10 0.13 -1 -1 0.28 0.0300984 0.0268261 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.67 vpr 62.71 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.1 MiB 0.18 870 10463 2796 6767 900 62.7 MiB 0.11 0.00 3.39684 -102.663 -3.39684 3.39684 0.64 0.000732665 0.000680718 0.0378185 0.0350861 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.92 0.127319 0.11168 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0288492 0.0251964 134 88 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.52 vpr 62.36 MiB 0.04 6668 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.6 MiB 0.07 838 13496 3888 8529 1079 62.4 MiB 0.14 0.00 3.5031 -123.339 -3.5031 3.5031 0.63 0.000632506 0.000588509 0.0582954 0.0541751 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.90 0.138823 0.123251 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0259233 0.0226952 116 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.91 vpr 62.55 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1015 16525 5345 8784 2396 62.6 MiB 0.16 0.00 4.18856 -142.192 -4.18856 4.18856 0.64 0.00077494 0.000719046 0.0607549 0.0563711 32 2598 23 6.65987e+06 418374 554710. 1919.41 0.91 0.154999 0.137458 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.19 0.10 0.13 -1 -1 0.19 0.0358873 0.031491 150 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.70 vpr 62.58 MiB 0.02 7044 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1026 16081 4881 8736 2464 62.6 MiB 0.17 0.00 4.23393 -146.239 -4.23393 4.23393 0.66 0.000785494 0.000730031 0.0706725 0.0656835 32 2633 23 6.65987e+06 266238 554710. 1919.41 0.91 0.165428 0.147229 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.18 0.06 0.08 -1 -1 0.18 0.0186745 0.0166259 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.25 vpr 62.53 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30396 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.0 MiB 0.23 688 16683 5557 7719 3407 62.5 MiB 0.13 0.00 3.44878 -105.048 -3.44878 3.44878 0.63 0.000640246 0.000594417 0.0531823 0.0493856 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.44 0.141197 0.124598 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0236755 0.02091 111 55 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.42 vpr 62.25 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 746 13556 4162 7429 1965 62.2 MiB 0.12 0.00 3.4529 -114.38 -3.4529 3.4529 0.63 0.000598508 0.000556982 0.0487316 0.0453454 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.82 0.12063 0.106926 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0224695 0.0197176 118 4 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.87 vpr 62.75 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30340 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.29 900 5133 854 4121 158 62.7 MiB 0.07 0.00 4.0123 -128.007 -4.0123 4.0123 0.70 0.00074276 0.000690529 0.0198711 0.0184988 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.90 0.109385 0.0954485 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0292306 0.0255387 138 59 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.91 vpr 62.55 MiB 0.03 7112 -1 -1 1 0.03 -1 -1 30348 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.31 879 9892 2434 7009 449 62.6 MiB 0.11 0.00 4.11224 -123.302 -4.11224 4.11224 0.71 0.000760257 0.00070598 0.0385376 0.0357803 28 2733 50 6.65987e+06 380340 500653. 1732.36 1.85 0.163268 0.142533 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0328959 0.0286655 134 88 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.60 vpr 62.65 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30420 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.4 MiB 0.07 1224 16515 4921 9863 1731 62.6 MiB 0.18 0.00 4.82096 -159.28 -4.82096 4.82096 0.86 0.000789401 0.000733334 0.0620433 0.0577253 34 3026 21 6.65987e+06 443730 585099. 2024.56 1.54 0.2139 0.188256 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0335672 0.0295164 177 3 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.08 vpr 62.96 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30604 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1012 13726 3606 8436 1684 63.0 MiB 0.14 0.00 3.638 -113.448 -3.638 3.638 0.72 0.000717173 0.00066628 0.0500269 0.0464165 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.83 0.13402 0.118516 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.20 0.08 0.14 -1 -1 0.20 0.0305698 0.0267863 136 59 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.68 vpr 62.10 MiB 0.13 6940 -1 -1 1 0.03 -1 -1 30616 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.7 MiB 0.12 768 12754 4322 6521 1911 62.1 MiB 0.11 0.00 3.3979 -99.6122 -3.3979 3.3979 0.71 0.000570125 0.000530457 0.0463313 0.0431254 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.82 0.115739 0.10254 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0257384 0.0223532 107 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.14 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30596 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 25.0 MiB 0.20 1366 15232 4128 9656 1448 63.1 MiB 0.17 0.00 4.15924 -136.806 -4.15924 4.15924 0.65 0.000911491 0.000845869 0.0601603 0.0557784 32 3584 25 6.65987e+06 507120 554710. 1919.41 0.99 0.174145 0.153625 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.19 0.13 0.12 -1 -1 0.19 0.0419947 0.0365706 184 95 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.94 vpr 62.96 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30508 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.1 MiB 0.33 999 12894 3350 8149 1395 63.0 MiB 0.14 0.00 4.3007 -134.868 -4.3007 4.3007 0.66 0.000827225 0.000768524 0.061338 0.0569738 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.93 0.165957 0.146737 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0378688 0.0329122 144 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.63 vpr 62.44 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 739 9540 2469 6056 1015 62.4 MiB 0.10 0.00 3.43298 -108.977 -3.43298 3.43298 0.65 0.000687752 0.00063842 0.0408523 0.0379745 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.82 0.124396 0.10963 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0303661 0.0264474 109 89 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.71 vpr 62.81 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30356 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1126 15645 4217 9584 1844 62.8 MiB 0.15 0.00 4.2677 -137.429 -4.2677 4.2677 0.66 0.000735788 0.000675958 0.0553791 0.0513525 28 2607 21 6.65987e+06 405696 500653. 1732.36 0.89 0.135215 0.120206 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0274774 0.0241803 146 34 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.83 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.04 -1 -1 30696 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1167 13551 3218 9177 1156 62.8 MiB 0.15 0.00 4.22766 -133.836 -4.22766 4.22766 0.64 0.000848186 0.000789199 0.0549963 0.0511091 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.93 0.163067 0.143863 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0347798 0.0304362 171 64 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.25 vpr 62.77 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1070 11111 2802 7426 883 62.8 MiB 0.12 0.00 3.62941 -110.797 -3.62941 3.62941 0.65 0.000857112 0.000795438 0.0424953 0.039394 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.51 0.155949 0.137077 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.19 0.08 0.12 -1 -1 0.19 0.030515 0.0266624 134 61 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.88 vpr 62.75 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30548 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1074 12606 3053 8336 1217 62.8 MiB 0.13 0.00 4.0783 -140.694 -4.0783 4.0783 0.64 0.000614404 0.000562704 0.0362254 0.0332797 30 2464 23 6.65987e+06 532476 526063. 1820.29 0.95 0.127185 0.111662 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.03022 0.0266813 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.69 vpr 62.73 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.3 MiB 0.23 985 6766 1235 5165 366 62.7 MiB 0.08 0.00 3.41884 -116.445 -3.41884 3.41884 0.63 0.000773145 0.000717771 0.0250353 0.0232608 28 2716 20 6.65987e+06 481764 500653. 1732.36 0.92 0.114102 0.0998578 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0363592 0.0316636 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.48 vpr 62.05 MiB 0.05 6828 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63544 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.6 MiB 0.12 502 12791 3342 7797 1652 62.1 MiB 0.10 0.00 3.7595 -104.343 -3.7595 3.7595 0.63 0.000604967 0.000562887 0.0491863 0.0457977 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.81 0.119128 0.105751 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0249219 0.0217023 93 34 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.66 vpr 62.62 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30104 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 872 14431 4553 8297 1581 62.6 MiB 0.13 0.00 3.69338 -109.525 -3.69338 3.69338 0.63 0.000660775 0.000613853 0.0563316 0.0523415 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.83 0.13128 0.116497 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0264976 0.0231307 111 82 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.64 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30516 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 23.9 MiB 0.14 973 15876 4279 9893 1704 62.6 MiB 0.16 0.00 4.55701 -136.44 -4.55701 4.55701 0.63 0.000728302 0.000676688 0.0525022 0.0488075 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.00 0.151572 0.133861 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0350059 0.0306611 150 34 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.91 vpr 62.12 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30404 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.6 MiB 0.23 621 11063 2736 7707 620 62.1 MiB 0.10 0.00 3.58224 -95.8028 -3.58224 3.58224 0.63 0.000605527 0.000562235 0.0346882 0.0321968 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.27 0.118873 0.104088 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0219865 0.0191452 108 56 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.13 vpr 62.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 0.21 823 7992 1920 5681 391 62.5 MiB 0.09 0.00 3.5141 -118.56 -3.5141 3.5141 0.63 0.000610626 0.000564725 0.0323803 0.0301423 34 2038 19 6.65987e+06 202848 585099. 2024.56 1.39 0.157163 0.13684 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.22 0.07 0.13 -1 -1 0.22 0.0258694 0.0225794 119 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.68 vpr 62.90 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30392 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1001 11955 3102 7859 994 62.9 MiB 0.12 0.00 3.4951 -117.77 -3.4951 3.4951 0.64 0.000752967 0.000699691 0.0418998 0.0388398 26 2363 24 6.65987e+06 456408 477104. 1650.88 0.89 0.133025 0.117097 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0296007 0.0258956 142 64 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.57 vpr 62.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.6 MiB 0.29 876 12923 4161 7145 1617 62.3 MiB 0.11 0.00 3.11304 -101.32 -3.11304 3.11304 0.63 0.00062587 0.000581747 0.0500737 0.0465781 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.78 0.118923 0.105555 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0237348 0.0208426 105 55 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.06 vpr 62.87 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30468 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.3 MiB 0.22 929 17616 5738 7949 3929 62.9 MiB 0.14 0.00 3.3979 -111.1 -3.3979 3.3979 0.64 0.00072904 0.000675678 0.0616225 0.0571556 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.15 0.235012 0.205197 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.20 0.08 0.08 -1 -1 0.20 0.0303433 0.0265266 136 65 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.05 vpr 62.86 MiB 0.05 7196 -1 -1 1 0.04 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 0.59 965 17427 4981 9867 2579 62.9 MiB 0.16 0.00 3.7445 -120.758 -3.7445 3.7445 0.63 0.00079254 0.00073174 0.0634381 0.0587876 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.85 0.155751 0.138019 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0314744 0.0275111 148 93 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.52 vpr 62.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30532 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 23.7 MiB 0.16 861 11652 3522 6006 2124 62.5 MiB 0.11 0.00 2.81844 -100.349 -2.81844 2.81844 0.63 0.000660513 0.000613665 0.0456212 0.042431 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.84 0.126086 0.111347 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0271744 0.0236712 115 61 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.83 vpr 62.71 MiB 0.04 6944 -1 -1 1 0.02 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 667 7380 1595 4913 872 62.7 MiB 0.04 0.00 3.38184 -112.707 -3.38184 3.38184 0.65 0.000301478 0.000276528 0.0141537 0.0130409 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.10 0.114005 0.0983365 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0274993 0.0239719 121 63 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.86 vpr 62.61 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30700 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.19 1042 12164 2979 8000 1185 62.6 MiB 0.12 0.00 4.02524 -139.262 -4.02524 4.02524 0.71 0.000776565 0.000721736 0.0437191 0.0405644 28 2653 23 6.65987e+06 456408 500653. 1732.36 0.97 0.138141 0.121793 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.17 0.10 0.12 -1 -1 0.17 0.0363539 0.0317408 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.82 vpr 62.65 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30500 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.2 MiB 0.22 968 17313 5602 9212 2499 62.6 MiB 0.16 0.00 3.57304 -105.57 -3.57304 3.57304 0.64 0.00071024 0.00065969 0.0651758 0.0605399 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.83 0.148835 0.132522 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.23 0.07 0.08 -1 -1 0.23 0.0307303 0.0268374 133 62 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.89 vpr 62.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1004 11616 2968 7911 737 62.8 MiB 0.13 0.00 3.97241 -135.454 -3.97241 3.97241 0.64 0.000862851 0.00080114 0.0467395 0.0432985 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.87 0.148171 0.12994 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0377371 0.0328529 156 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.35 vpr 62.12 MiB 0.02 6728 -1 -1 1 0.03 -1 -1 30284 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.7 MiB 0.10 715 5825 1215 4401 209 62.1 MiB 0.07 0.00 2.9397 -97.4988 -2.9397 2.9397 0.65 0.000696113 0.000640247 0.0224785 0.0209462 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.78 0.0883915 0.0772869 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.19 0.05 0.13 -1 -1 0.19 0.0230888 0.0201077 105 4 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.78 vpr 62.89 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30380 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 948 20077 6167 11074 2836 62.9 MiB 0.19 0.00 4.10497 -133.778 -4.10497 4.10497 0.66 0.00077987 0.000723377 0.0754877 0.0700117 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.87 0.181481 0.161103 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0301345 0.0264543 142 92 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.98 vpr 62.72 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30196 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.22 805 9196 3450 4876 870 62.7 MiB 0.10 0.00 3.54047 -120.422 -3.54047 3.54047 0.63 0.000719555 0.000666722 0.0421606 0.0391707 30 2070 21 6.65987e+06 202848 526063. 1820.29 1.15 0.133195 0.117825 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0262375 0.0230395 115 96 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.83 vpr 62.61 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1002 18111 5520 9663 2928 62.6 MiB 0.17 0.00 3.45184 -118.995 -3.45184 3.45184 0.63 0.000771318 0.000714881 0.063436 0.0588405 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.86 0.149075 0.132635 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0348295 0.0305177 149 65 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.70 vpr 62.95 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30784 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1201 15034 3694 9653 1687 63.0 MiB 0.16 0.00 4.6905 -158.567 -4.6905 4.6905 0.63 0.000917083 0.000850746 0.058484 0.0543283 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.73 0.206556 0.181139 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.16 0.13 0.10 -1 -1 0.16 0.0455005 0.0394765 186 96 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.61 vpr 61.98 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30168 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63468 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.5 MiB 0.21 532 10509 2640 7460 409 62.0 MiB 0.08 0.00 2.61752 -80.0454 -2.61752 2.61752 0.63 0.00052958 0.000493126 0.0358871 0.0334003 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.00 0.100383 0.0883961 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0222499 0.0193469 83 56 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.14 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.7 MiB 0.09 758 10536 3415 5493 1628 62.1 MiB 0.10 0.00 3.52904 -110.224 -3.52904 3.52904 0.63 0.000615174 0.000572003 0.0412953 0.0384438 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.80 0.114729 0.101274 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0312569 0.0274112 96 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.56 vpr 62.54 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.10 856 9872 2316 7018 538 62.5 MiB 0.10 0.00 3.4859 -122.574 -3.4859 3.4859 0.64 0.000646025 0.000600739 0.0380562 0.0354195 32 2373 21 6.65987e+06 228204 554710. 1919.41 0.86 0.114652 0.101149 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0268309 0.0234654 126 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.22 vpr 62.23 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30428 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.08 696 13351 3608 8032 1711 62.2 MiB 0.11 0.00 3.32684 -88.9535 -3.32684 3.32684 0.64 0.000533747 0.000496456 0.038792 0.0360852 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.73 0.0992142 0.0876063 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0214542 0.0186141 103 34 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.72 vpr 63.24 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 0.22 877 14541 4608 7775 2158 63.2 MiB 0.18 0.00 4.02035 -125.217 -4.02035 4.02035 0.63 0.000806725 0.000749157 0.0773694 0.0718484 32 2783 25 6.65987e+06 253560 554710. 1919.41 0.95 0.176376 0.156834 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0189049 0.0167551 147 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.68 vpr 62.57 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.2 MiB 0.16 938 18660 5414 10450 2796 62.6 MiB 0.17 0.00 3.4903 -116.326 -3.4903 3.4903 0.63 0.000778371 0.000721938 0.0656141 0.0607971 32 2461 21 6.65987e+06 469086 554710. 1919.41 0.87 0.158441 0.140268 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333193 0.0290693 146 94 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 6.14 vpr 63.51 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30664 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 24.9 MiB 0.91 758 13949 4789 6835 2325 63.5 MiB 0.12 0.00 3.74419 -135.496 -3.74419 3.74419 0.66 0.000805874 0.00074779 0.0601069 0.0557882 58 1960 26 6.95648e+06 361892 997811. 3452.63 2.30 0.229723 0.200369 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.30 0.09 0.21 -1 -1 0.30 0.0340263 0.0297076 84 96 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.39 vpr 63.55 MiB 0.03 7292 -1 -1 1 0.04 -1 -1 30672 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 1.97 807 12716 4975 6082 1659 63.5 MiB 0.12 0.00 3.9478 -130.518 -3.9478 3.9478 0.65 0.000757224 0.00070248 0.0629915 0.058513 48 2407 29 6.95648e+06 202660 865456. 2994.66 3.58 0.225398 0.197257 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.26 0.17 0.17 -1 -1 0.26 0.0506675 0.0438814 76 91 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 16.23 vpr 63.44 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.6 MiB 0.72 1022 7103 1835 4569 699 63.4 MiB 0.07 0.00 3.60914 -132.635 -3.60914 3.60914 0.66 0.000740139 0.00068768 0.0322411 0.0299829 40 2728 21 6.95648e+06 275038 706193. 2443.58 12.69 0.331362 0.285048 26914 176310 -1 2485 24 1665 2605 297469 57129 3.85496 3.85496 -146.999 -3.85496 0 0 926341. 3205.33 0.24 0.12 0.16 -1 -1 0.24 0.0388303 0.0338927 77 65 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.12 vpr 63.36 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.6 MiB 0.37 752 10672 3799 5216 1657 63.4 MiB 0.10 0.00 4.001 -128.21 -4.001 4.001 0.65 0.00068378 0.000635503 0.0472427 0.043968 44 2696 27 6.95648e+06 231611 787024. 2723.27 2.01 0.186442 0.162797 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0322562 0.0281657 75 34 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.62 vpr 63.43 MiB 0.06 6972 -1 -1 1 0.03 -1 -1 30316 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.65 716 9857 3295 4764 1798 63.4 MiB 0.10 0.00 3.66789 -133.791 -3.66789 3.66789 0.65 0.000746485 0.000693313 0.0481862 0.0448464 56 2163 40 6.95648e+06 188184 973134. 3367.25 3.10 0.229883 0.200875 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.29 0.10 0.20 -1 -1 0.29 0.0331287 0.0289903 78 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 14.94 vpr 63.73 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30428 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.39 727 15003 5272 7155 2576 63.7 MiB 0.12 0.00 3.0985 -114.166 -3.0985 3.0985 0.66 0.000774594 0.000718145 0.0578677 0.0536952 46 2435 46 6.95648e+06 419795 828058. 2865.25 11.80 0.38416 0.332084 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0302881 0.0264798 89 64 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.41 vpr 62.94 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30604 -1 -1 14 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.4 MiB 3.54 451 8433 2993 4087 1353 62.9 MiB 0.07 0.00 3.26916 -93.4177 -3.26916 3.26916 0.66 0.000575449 0.000535949 0.0335818 0.0312904 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.25 0.167617 0.145119 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0228175 0.0198745 54 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.77 vpr 63.07 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.6 MiB 0.48 722 11088 4563 6076 449 63.1 MiB 0.11 0.00 3.0394 -105.493 -3.0394 3.0394 0.65 0.0008327 0.000776 0.0504746 0.0469401 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.56 0.188363 0.164698 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297735 0.0260166 77 4 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 11.46 vpr 62.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30232 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 1.54 523 9994 2759 5612 1623 63.0 MiB 0.09 0.00 3.10275 -98.727 -3.10275 3.10275 0.65 0.000653658 0.000606421 0.0444859 0.041304 40 1829 42 6.95648e+06 159232 706193. 2443.58 7.27 0.33491 0.287725 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.23 0.11 0.12 -1 -1 0.23 0.0420189 0.0363805 57 85 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.09 vpr 62.93 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.91 638 10614 4216 4843 1555 62.9 MiB 0.10 0.00 2.95005 -114.898 -2.95005 2.95005 0.65 0.000650113 0.000603717 0.0478757 0.0445693 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.52 0.189557 0.165527 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0273877 0.0239382 62 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.11 vpr 63.25 MiB 0.02 6916 -1 -1 1 0.05 -1 -1 30132 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 1.59 651 11079 4648 6085 346 63.3 MiB 0.10 0.00 3.1095 -111.937 -3.1095 3.1095 0.72 0.000647361 0.000601785 0.050373 0.0469555 38 1744 25 6.95648e+06 173708 678818. 2348.85 1.77 0.173707 0.151984 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0259027 0.022618 60 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 5.32 vpr 63.51 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30448 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.6 MiB 0.81 540 10476 4331 5741 404 63.5 MiB 0.09 0.00 2.9793 -106.716 -2.9793 2.9793 0.65 0.00065639 0.0006096 0.045402 0.0422115 50 1707 47 6.95648e+06 173708 902133. 3121.57 1.77 0.176299 0.153697 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.26 0.07 0.18 -1 -1 0.26 0.0253947 0.0221734 60 65 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.13 vpr 63.41 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.5 MiB 1.27 751 11803 3277 6504 2022 63.4 MiB 0.11 0.00 3.1024 -116.565 -3.1024 3.1024 0.67 0.00075595 0.000702005 0.0501366 0.0466012 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.03 0.216096 0.188407 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0303115 0.0265731 79 58 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.54 vpr 63.62 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.7 MiB 0.99 832 16371 6652 7990 1729 63.6 MiB 0.14 0.00 3.72719 -138.885 -3.72719 3.72719 0.65 0.000777053 0.00072101 0.0662595 0.0614675 40 2769 48 6.95648e+06 376368 706193. 2443.58 3.75 0.252121 0.220571 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0312666 0.0273574 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.55 vpr 62.80 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30684 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.05 465 11234 4544 5569 1121 62.8 MiB 0.10 0.00 3.14676 -95.8879 -3.14676 3.14676 0.67 0.000686511 0.000638323 0.048916 0.0455068 46 1613 28 6.95648e+06 188184 828058. 2865.25 1.83 0.168088 0.14664 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.25 0.07 0.14 -1 -1 0.25 0.0290433 0.0251649 58 29 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 6.52 vpr 63.73 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 1.63 807 11813 5009 6533 271 63.7 MiB 0.13 0.00 3.1505 -120.688 -3.1505 3.1505 0.65 0.00141771 0.00131534 0.0670848 0.0623275 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.02 0.219232 0.192434 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0364726 0.0317591 77 63 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.81 vpr 63.80 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.9 MiB 1.39 707 11064 3419 5711 1934 63.8 MiB 0.11 0.00 3.0804 -113.837 -3.0804 3.0804 0.67 0.000744491 0.000689519 0.0507175 0.0470672 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.76 0.226558 0.197194 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.24 0.07 0.11 -1 -1 0.24 0.029687 0.025994 78 57 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.34 vpr 63.28 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 574 10698 2981 5511 2206 63.3 MiB 0.09 0.00 2.43656 -93.1005 -2.43656 2.43656 0.66 0.000667806 0.000619429 0.0414783 0.0385373 48 1509 24 6.95648e+06 289514 865456. 2994.66 1.82 0.174657 0.151996 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0275562 0.0239977 67 65 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.50 vpr 62.52 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30208 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.0 MiB 0.36 450 11098 4789 5936 373 62.5 MiB 0.08 0.00 2.21746 -80.6728 -2.21746 2.21746 0.65 0.00050213 0.000467251 0.0394933 0.0367878 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.61 0.146611 0.12761 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0205962 0.0179419 45 34 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.08 vpr 63.29 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30412 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 1.09 525 9374 3845 5090 439 63.3 MiB 0.10 0.00 3.8254 -127.041 -3.8254 3.8254 0.71 0.000807564 0.000751147 0.0493322 0.0459326 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.12 0.217029 0.189114 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.032612 0.0283618 61 64 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.34 vpr 63.50 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.7 MiB 0.40 664 13663 4054 7770 1839 63.5 MiB 0.14 0.00 3.70954 -128.174 -3.70954 3.70954 0.65 0.000729895 0.000678103 0.0673952 0.0626513 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.14 0.224234 0.196772 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0307136 0.026939 81 34 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.54 vpr 63.84 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30612 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.1 MiB 1.10 791 14779 5223 7361 2195 63.8 MiB 0.13 0.00 3.66119 -126.81 -3.66119 3.66119 0.65 0.000845583 0.000784988 0.0639627 0.0593862 48 2442 23 6.95648e+06 390843 865456. 2994.66 2.57 0.233281 0.203625 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0382407 0.0332439 85 124 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.22 vpr 62.28 MiB 0.04 6764 -1 -1 1 0.03 -1 -1 30720 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 23.8 MiB 0.87 348 7809 2770 3912 1127 62.3 MiB 0.06 0.00 2.19726 -66.8557 -2.19726 2.19726 0.65 0.000520141 0.00048389 0.0290685 0.0270564 46 937 48 6.95648e+06 188184 828058. 2865.25 1.73 0.133386 0.115596 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.25 0.04 0.18 -1 -1 0.25 0.0167711 0.014753 44 30 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.00 vpr 63.44 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.7 MiB 0.80 737 10316 4241 5568 507 63.4 MiB 0.10 0.00 4.02534 -135.509 -4.02534 4.02534 0.66 0.000691905 0.000643038 0.0481539 0.0448461 48 2419 30 6.95648e+06 173708 865456. 2994.66 3.10 0.195138 0.170797 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.26 0.36 0.17 -1 -1 0.26 0.0574908 0.0496754 74 3 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.47 vpr 62.67 MiB 0.04 6676 -1 -1 1 0.03 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.29 731 9906 3689 5081 1136 62.7 MiB 0.07 0.00 2.15326 -87.6492 -2.15326 2.15326 0.67 0.000466282 0.000432898 0.032831 0.0305024 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.60 0.145898 0.126962 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.0155766 0.0137291 44 3 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.42 vpr 63.35 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30624 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.50 827 16371 5667 8716 1988 63.4 MiB 0.15 0.00 3.67409 -135.23 -3.67409 3.67409 0.68 0.000751139 0.000696051 0.0639691 0.0592373 40 2687 28 6.95648e+06 376368 706193. 2443.58 3.07 0.219677 0.192122 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0385571 0.0335002 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.64 vpr 63.39 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30172 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.33 985 13754 4254 7657 1843 63.4 MiB 0.12 0.00 3.0955 -119.852 -3.0955 3.0955 0.65 0.000701636 0.000651792 0.0488406 0.0453699 36 2880 44 6.95648e+06 405319 648988. 2245.63 4.57 0.209521 0.182849 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0270326 0.0237357 87 3 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 5.96 vpr 63.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30584 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.7 MiB 0.33 789 18308 6099 10070 2139 63.6 MiB 0.16 0.00 3.69663 -134.61 -3.69663 3.69663 0.67 0.000771296 0.000714486 0.0732736 0.067875 46 2780 28 6.95648e+06 405319 828058. 2865.25 2.84 0.238946 0.209821 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338506 0.0295608 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.42 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.72 541 9374 3087 4731 1556 63.0 MiB 0.10 0.00 2.8982 -102.358 -2.8982 2.8982 0.67 0.000735864 0.000691673 0.0512937 0.0477817 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.03 0.1926 0.168113 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0276089 0.0240681 57 34 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.14 vpr 62.84 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.2 MiB 0.55 571 8444 3466 4635 343 62.8 MiB 0.08 0.00 3.1175 -112.058 -3.1175 3.1175 0.67 0.000615567 0.00057243 0.0357287 0.033258 40 1947 30 6.95648e+06 173708 706193. 2443.58 1.94 0.169244 0.146684 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.026427 0.0230086 60 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.35 vpr 62.91 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30368 -1 -1 13 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.3 MiB 0.55 505 10257 3681 4972 1604 62.9 MiB 0.09 0.00 3.0435 -97.9378 -3.0435 3.0435 0.66 0.000581545 0.000540482 0.0414812 0.0386228 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.12 0.163838 0.142439 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0226589 0.0197483 61 34 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.17 vpr 63.01 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.23 703 9374 3895 5319 160 63.0 MiB 0.09 0.00 2.93285 -116.414 -2.93285 2.93285 0.66 0.000612187 0.000569167 0.0392736 0.0365728 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.18 0.163883 0.142867 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.029518 0.025764 64 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.13 vpr 63.23 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30264 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.5 MiB 0.16 623 13443 5605 7395 443 63.2 MiB 0.11 0.00 3.0955 -111.973 -3.0955 3.0955 0.66 0.000629843 0.000585072 0.0486487 0.0452508 44 2077 38 6.95648e+06 303989 787024. 2723.27 2.24 0.186596 0.162701 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0275901 0.0240641 68 34 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.44 vpr 63.10 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.6 MiB 0.73 508 10219 3550 4648 2021 63.1 MiB 0.08 0.00 2.43392 -85.0275 -2.43392 2.43392 0.66 0.000624575 0.000580017 0.0399226 0.0371231 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.05 0.176321 0.153225 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268241 0.0233241 64 61 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 17.92 vpr 63.83 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30568 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.74 944 14375 4687 7097 2591 63.8 MiB 0.13 0.00 3.95585 -140.771 -3.95585 3.95585 0.66 0.000827677 0.000767647 0.0605035 0.0562107 50 2802 35 6.95648e+06 405319 902133. 3121.57 14.31 0.416063 0.360027 28642 213929 -1 2332 25 2175 3439 375097 108678 4.03032 4.03032 -146.333 -4.03032 0 0 1.08113e+06 3740.92 0.27 0.13 0.18 -1 -1 0.27 0.0393316 0.0343178 100 29 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.45 vpr 63.75 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30400 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.9 MiB 0.93 786 12739 3070 7853 1816 63.7 MiB 0.12 0.00 3.0804 -115.407 -3.0804 3.0804 0.65 0.000781296 0.000723929 0.051149 0.0475119 40 2423 28 6.95648e+06 390843 706193. 2443.58 2.70 0.212018 0.185059 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0410768 0.0356608 87 65 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 5.70 vpr 63.34 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30660 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.4 MiB 1.06 525 12362 5188 6715 459 63.3 MiB 0.10 0.00 3.26916 -109.722 -3.26916 3.26916 0.65 0.000675989 0.000627411 0.0529355 0.0492012 50 1653 27 6.95648e+06 217135 902133. 3121.57 1.90 0.18966 0.165633 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.26 0.05 0.18 -1 -1 0.26 0.0216951 0.0190699 62 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 5.50 vpr 63.64 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.53 965 12791 5492 6957 342 63.6 MiB 0.12 0.00 3.0625 -116.847 -3.0625 3.0625 0.65 0.000746072 0.000692342 0.0614204 0.0570389 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.34 0.211149 0.185007 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0288782 0.0253066 79 64 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.87 vpr 63.90 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 2.12 778 10998 4559 6059 380 63.9 MiB 0.11 0.00 4.63397 -149.774 -4.63397 4.63397 0.65 0.00084012 0.000780514 0.0592324 0.0550615 44 2926 36 6.95648e+06 202660 787024. 2723.27 2.96 0.23878 0.207589 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0371166 0.0322964 78 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.36 vpr 63.68 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30460 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.8 MiB 1.42 775 10476 3672 5136 1668 63.7 MiB 0.11 0.00 4.49354 -135.009 -4.49354 4.49354 0.65 0.000768648 0.000713199 0.053456 0.0496077 44 2669 43 6.95648e+06 188184 787024. 2723.27 2.17 0.22894 0.199259 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0378706 0.0329743 76 90 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.66 vpr 63.59 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.7 MiB 0.84 864 15493 5631 7761 2101 63.6 MiB 0.14 0.00 3.1285 -114.829 -3.1285 3.1285 0.67 0.000780585 0.000723274 0.0646432 0.0600666 38 2848 26 6.95648e+06 361892 678818. 2348.85 3.13 0.221189 0.193855 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0313667 0.0274556 85 64 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 5.53 vpr 63.87 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30680 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 25.0 MiB 0.49 956 10743 3793 5013 1937 63.9 MiB 0.10 0.00 3.77119 -139.239 -3.77119 3.77119 0.65 0.000772885 0.000717777 0.0440934 0.0409993 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.40 0.198967 0.173398 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.25 0.11 0.11 -1 -1 0.25 0.0349637 0.0305893 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 17.93 vpr 64.00 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30648 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.7 MiB 0.88 1078 14999 4071 8495 2433 64.0 MiB 0.14 0.00 3.84845 -142.865 -3.84845 3.84845 0.66 0.000914787 0.000848334 0.0669773 0.0621348 40 2955 26 6.95648e+06 448746 706193. 2443.58 14.28 0.43074 0.37192 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.036351 0.0318076 104 96 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.37 vpr 63.49 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30540 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 0.60 721 10304 4339 5695 270 63.5 MiB 0.09 0.00 3.34916 -121.065 -3.34916 3.34916 0.67 0.000626714 0.000582494 0.0440208 0.0409723 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.11 0.172259 0.150164 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0260322 0.022742 62 34 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 5.11 vpr 63.53 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 24.7 MiB 0.41 784 13959 3819 8017 2123 63.5 MiB 0.13 0.00 4.0519 -136.516 -4.0519 4.0519 0.55 0.000768293 0.000713404 0.0566325 0.0526458 48 2294 26 6.95648e+06 390843 865456. 2994.66 2.11 0.21044 0.184029 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0300851 0.0263255 86 64 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.28 vpr 63.80 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.9 MiB 0.75 863 13557 4887 6407 2263 63.8 MiB 0.11 0.00 3.29596 -116.543 -3.29596 3.29596 0.65 0.000760321 0.000705017 0.0545203 0.0506466 50 2481 26 6.95648e+06 376368 902133. 3121.57 2.60 0.204345 0.178602 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.26 0.20 0.18 -1 -1 0.26 0.0547317 0.047295 85 63 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.29 vpr 63.30 MiB 0.10 7000 -1 -1 1 0.03 -1 -1 30524 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 0.83 760 7738 3134 4374 230 63.3 MiB 0.08 0.00 3.65689 -135.736 -3.65689 3.65689 0.65 0.00070816 0.000657961 0.0361191 0.0336373 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.63 0.195374 0.169851 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.031844 0.0278397 78 3 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 6.55 vpr 63.81 MiB 0.03 7036 -1 -1 1 0.04 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 1.55 808 11991 3810 6067 2114 63.8 MiB 0.11 0.00 3.1768 -117.392 -3.1768 3.1768 0.65 0.000786115 0.000729626 0.052251 0.0485884 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.30 0.214274 0.186971 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.25 0.07 0.11 -1 -1 0.25 0.0308622 0.0270065 81 96 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 5.45 vpr 63.84 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.79 845 12926 3665 7173 2088 63.8 MiB 0.11 0.00 3.1214 -116.244 -3.1214 3.1214 0.65 0.00076373 0.000709159 0.0501642 0.0466061 46 2291 24 6.95648e+06 405319 828058. 2865.25 1.94 0.200017 0.174548 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0348641 0.030425 85 61 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.68 vpr 63.94 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.3 MiB 0.56 803 14996 4547 7782 2667 63.9 MiB 0.13 0.00 3.09676 -115.471 -3.09676 3.09676 0.65 0.000777787 0.000720411 0.0587256 0.054432 46 2386 25 6.95648e+06 405319 828058. 2865.25 2.38 0.213129 0.186329 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0309563 0.0271394 88 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.17 vpr 63.85 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30532 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 25.0 MiB 0.52 938 15617 5888 7604 2125 63.8 MiB 0.14 0.00 3.66789 -137.042 -3.66789 3.66789 0.65 0.000739817 0.00068669 0.0584745 0.0542802 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.87 0.231972 0.20268 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0326036 0.0284901 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.21 vpr 63.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30696 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 25.1 MiB 0.97 799 12448 3955 5788 2705 63.6 MiB 0.12 0.00 3.78219 -138.337 -3.78219 3.78219 0.71 0.000884798 0.000812115 0.0542225 0.0502694 44 2633 42 6.95648e+06 434271 787024. 2723.27 2.39 0.227336 0.198178 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0335008 0.029245 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 21.91 vpr 63.88 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30480 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.2 MiB 1.24 822 11983 4768 6508 707 63.9 MiB 0.11 0.00 4.19045 -134.89 -4.19045 4.19045 0.65 0.000827936 0.000769042 0.0538013 0.0499986 44 3007 44 6.95648e+06 361892 787024. 2723.27 17.93 0.413065 0.355678 27778 195446 -1 2186 29 1784 2766 272117 64702 3.83002 3.83002 -138.199 -3.83002 0 0 997811. 3452.63 0.24 0.07 0.11 -1 -1 0.24 0.0230894 0.0202217 84 122 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 6.34 vpr 63.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.0 MiB 1.11 840 10346 3694 5398 1254 63.8 MiB 0.11 0.00 3.7688 -130.649 -3.7688 3.7688 0.68 0.000808834 0.000751515 0.054335 0.0505417 40 2535 24 6.95648e+06 188184 706193. 2443.58 2.65 0.216316 0.188985 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0193723 0.0171277 78 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 5.29 vpr 63.16 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30564 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.5 MiB 0.17 594 10647 4341 5910 396 63.2 MiB 0.09 0.00 3.12656 -113.614 -3.12656 3.12656 0.70 0.000645758 0.000600202 0.0381608 0.0354233 56 1741 22 6.95648e+06 332941 973134. 3367.25 2.27 0.165474 0.1442 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.29 0.07 0.20 -1 -1 0.29 0.0254144 0.0222203 71 34 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 16.41 vpr 63.45 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.8 MiB 1.03 610 8444 3495 4676 273 63.4 MiB 0.09 0.00 3.0405 -112.422 -3.0405 3.0405 0.65 0.000893196 0.00082361 0.0429175 0.0398144 48 1986 36 6.95648e+06 144757 865456. 2994.66 12.64 0.336895 0.289861 28354 207349 -1 1587 21 1492 2244 248234 67713 3.07482 3.07482 -121.215 -3.07482 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0292001 0.0254931 63 94 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 22.83 vpr 63.60 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30772 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.3 MiB 0.59 1000 14152 3772 8188 2192 63.6 MiB 0.14 0.00 4.46224 -157.711 -4.46224 4.46224 0.65 0.000883339 0.000820977 0.0617213 0.0573182 48 3589 41 6.95648e+06 434271 865456. 2994.66 19.31 0.486896 0.419306 28354 207349 -1 2647 39 3273 5242 691557 203542 5.05191 5.05191 -180.38 -5.05191 0 0 1.05005e+06 3633.38 0.27 0.23 0.18 -1 -1 0.27 0.0632437 0.0548627 103 65 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.48 vpr 63.57 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.60 717 11983 4638 6220 1125 63.6 MiB 0.10 0.00 3.1457 -117.079 -3.1457 3.1457 0.65 0.000732211 0.000679808 0.0482652 0.0445208 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.33 0.207495 0.180477 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0296739 0.0260194 83 34 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.99 vpr 62.87 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.5 MiB 0.28 571 10581 4367 5776 438 62.9 MiB 0.10 0.00 3.0735 -108.432 -3.0735 3.0735 0.69 0.000624132 0.000580397 0.0436408 0.0406775 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.16 0.176367 0.153403 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.25 0.04 0.14 -1 -1 0.25 0.0137549 0.0122137 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 7.62 vpr 63.81 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 30856 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.5 MiB 1.87 1126 15215 3732 10105 1378 63.8 MiB 0.15 0.00 4.49524 -160.999 -4.49524 4.49524 0.64 0.000947963 0.000880294 0.0702237 0.0651985 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 2.66 0.256214 0.224081 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.33 0.13 0.26 -1 -1 0.33 0.0431568 0.0377567 103 127 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.06 vpr 63.57 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30616 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.6 MiB 1.06 804 14375 4842 7223 2310 63.6 MiB 0.12 0.00 3.73321 -136.441 -3.73321 3.73321 0.65 0.000754408 0.000699746 0.0550887 0.0510594 40 2325 28 6.95648e+06 405319 706193. 2443.58 2.36 0.19909 0.174424 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0323659 0.0283721 86 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.13 vpr 63.11 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30304 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.31 740 12763 4452 6451 1860 63.1 MiB 0.10 0.00 3.05815 -117.559 -3.05815 3.05815 0.66 0.000613264 0.000569724 0.0422527 0.0393145 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.16 0.164787 0.14378 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0252353 0.0220465 70 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.32 vpr 63.49 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30888 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.0 MiB 0.50 924 14567 5045 6877 2645 63.5 MiB 0.13 0.00 4.52824 -159.979 -4.52824 4.52824 0.65 0.000860252 0.000799772 0.061709 0.057364 54 3003 36 6.95648e+06 448746 949917. 3286.91 3.96 0.252431 0.220257 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.28 0.12 0.19 -1 -1 0.28 0.0377166 0.032947 105 34 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 4.90 vpr 62.86 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30224 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.34 618 10614 4475 5915 224 62.9 MiB 0.09 0.00 2.92185 -113.699 -2.92185 2.92185 0.66 0.00061319 0.000570121 0.0442681 0.0412025 46 1828 25 6.95648e+06 144757 828058. 2865.25 1.92 0.168334 0.14725 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.25 0.08 0.18 -1 -1 0.25 0.0283245 0.0246925 62 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 13.28 vpr 62.95 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30428 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.5 MiB 0.80 601 10163 2708 5873 1582 62.9 MiB 0.08 0.00 3.10776 -107.419 -3.10776 3.10776 0.68 0.000618254 0.000574921 0.0370486 0.0344865 46 1545 25 6.95648e+06 303989 828058. 2865.25 9.72 0.321302 0.275939 28066 200906 -1 1217 20 1164 1727 130235 38121 3.03987 3.03987 -109.31 -3.03987 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0247784 0.0216718 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 7.35 vpr 63.43 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.8 MiB 1.24 705 12856 4698 6070 2088 63.4 MiB 0.12 0.00 3.39446 -107.671 -3.39446 3.39446 0.68 0.000744683 0.000690741 0.0581135 0.0539501 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.12 0.22579 0.196935 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.26 0.09 0.22 -1 -1 0.26 0.0293305 0.0256081 77 88 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 13.12 vpr 63.77 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 24.9 MiB 0.84 807 13117 5264 6347 1506 63.8 MiB 0.13 0.00 3.65689 -136.729 -3.65689 3.65689 0.65 0.000777952 0.000722481 0.0653681 0.0607189 40 2249 23 6.95648e+06 188184 706193. 2443.58 9.50 0.343898 0.298658 26914 176310 -1 1948 24 2181 2903 293446 60806 4.18386 4.18386 -152.298 -4.18386 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0375576 0.0328295 78 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.77 vpr 63.73 MiB 0.05 7120 -1 -1 1 0.05 -1 -1 30600 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.8 MiB 1.50 890 14345 5510 6931 1904 63.7 MiB 0.13 0.00 3.74419 -138.408 -3.74419 3.74419 0.66 0.000778559 0.000723486 0.0602509 0.0559962 48 2618 24 6.95648e+06 361892 865456. 2994.66 2.38 0.21599 0.189423 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.26 0.13 0.17 -1 -1 0.26 0.0354481 0.0308888 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 5.97 vpr 63.36 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30664 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.6 MiB 0.97 685 10813 4185 5763 865 63.4 MiB 0.10 0.00 3.05815 -117.015 -3.05815 3.05815 0.67 0.000718417 0.000659877 0.0415913 0.0386653 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.26 0.201209 0.174623 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.25 0.08 0.19 -1 -1 0.25 0.0277721 0.0242484 69 65 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.12 vpr 63.51 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30600 -1 -1 10 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.6 MiB 1.38 684 10105 3894 4557 1654 63.5 MiB 0.09 0.00 3.30215 -110.841 -3.30215 3.30215 0.66 0.000677441 0.000628577 0.0473566 0.0439737 36 2232 46 6.95648e+06 144757 648988. 2245.63 3.15 0.20973 0.1824 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0276674 0.0240916 59 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 14.27 vpr 63.47 MiB 0.04 7056 -1 -1 1 0.05 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.6 MiB 0.69 949 12711 4087 6844 1780 63.5 MiB 0.12 0.00 3.1285 -115.995 -3.1285 3.1285 0.66 0.00072159 0.000669844 0.0527315 0.0489987 40 2353 22 6.95648e+06 318465 706193. 2443.58 10.83 0.343695 0.29713 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0320439 0.027924 79 60 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.48 vpr 63.39 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.6 MiB 0.69 684 10156 4202 5354 600 63.4 MiB 0.09 0.00 4.24545 -126.653 -4.24545 4.24545 0.73 0.000662507 0.000615554 0.0445966 0.04149 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.05 0.200077 0.174752 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0295948 0.02581 74 34 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.40 vpr 63.30 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.4 MiB 0.77 607 9374 3879 5147 348 63.3 MiB 0.08 0.00 3.0545 -108.859 -3.0545 3.0545 0.72 0.000646488 0.000600087 0.0415839 0.0386656 38 1982 33 6.95648e+06 173708 678818. 2348.85 2.94 0.182672 0.158582 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0291518 0.0253729 61 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.99 vpr 63.47 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 1.22 777 7669 3175 4304 190 63.5 MiB 0.08 0.00 3.0765 -113.072 -3.0765 3.0765 0.66 0.000692012 0.000642604 0.037267 0.0346309 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.16 0.186965 0.162546 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0310339 0.0270316 60 91 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 16.97 vpr 63.10 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30496 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.19 795 9448 3333 4743 1372 63.1 MiB 0.09 0.00 3.89245 -136.332 -3.89245 3.89245 0.66 0.000691261 0.000642715 0.0365182 0.0339892 50 2553 48 6.95648e+06 361892 902133. 3121.57 14.06 0.333722 0.287327 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.26 0.11 0.17 -1 -1 0.26 0.0308642 0.0269922 86 4 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 21.30 vpr 63.50 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30580 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.6 MiB 1.27 926 10495 2590 6894 1011 63.5 MiB 0.11 0.00 3.78219 -140.482 -3.78219 3.78219 0.69 0.000773045 0.000717616 0.042985 0.0399217 40 2962 40 6.95648e+06 390843 706193. 2443.58 17.24 0.388125 0.334748 26914 176310 -1 2636 23 2167 3633 463776 91732 4.56126 4.56126 -163.581 -4.56126 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0339955 0.029662 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.12 vpr 63.72 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30368 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.53 831 9336 3198 4890 1248 63.7 MiB 0.09 0.00 3.70819 -135.715 -3.70819 3.70819 0.66 0.000777656 0.000721072 0.0389944 0.0361987 46 2950 33 6.95648e+06 376368 828058. 2865.25 3.85 0.206838 0.17993 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0347155 0.0303553 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.67 vpr 63.58 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 1.02 822 13351 4683 6743 1925 63.6 MiB 0.13 0.00 3.75544 -130.593 -3.75544 3.75544 0.66 0.000772927 0.000714858 0.0540502 0.0502175 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.72 0.219065 0.191265 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.28 0.12 0.19 -1 -1 0.28 0.0346366 0.0302909 86 65 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.41 vpr 62.98 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30344 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 0.65 551 9064 3696 4990 378 63.0 MiB 0.08 0.00 3.29416 -111.889 -3.29416 3.29416 0.68 0.000622206 0.000578436 0.0385868 0.0359164 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.03 0.166571 0.144956 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.23 0.08 0.16 -1 -1 0.23 0.0261525 0.0227576 62 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.81 vpr 63.54 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 24.7 MiB 0.72 751 12465 5336 6622 507 63.5 MiB 0.12 0.00 4.015 -133.992 -4.015 4.015 0.66 0.000755864 0.000680262 0.0619023 0.0574829 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.31 0.237494 0.207101 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.23 0.13 0.16 -1 -1 0.23 0.0448345 0.0388219 78 63 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.08 vpr 63.91 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30832 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.1 MiB 1.43 807 14351 4061 7900 2390 63.9 MiB 0.13 0.00 3.71619 -135.355 -3.71619 3.71619 0.69 0.000858692 0.000797229 0.0605001 0.0561588 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.78 0.249161 0.217249 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0372937 0.032416 88 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.65 vpr 63.70 MiB 0.07 7192 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65228 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.92 718 14035 5965 7479 591 63.7 MiB 0.13 0.00 3.9948 -135.983 -3.9948 3.9948 0.67 0.000773686 0.00071551 0.0638168 0.0592364 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.83 0.235805 0.206275 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0303671 0.0265644 81 94 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.06 vpr 63.68 MiB 0.04 7244 -1 -1 1 0.04 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.8 MiB 1.42 700 13668 5834 7221 613 63.7 MiB 0.15 0.00 3.27591 -109.838 -3.27591 3.27591 0.66 0.000755956 0.00070101 0.0751212 0.0697989 46 2600 45 6.95648e+06 260562 828058. 2865.25 2.85 0.25841 0.226917 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.034217 0.0297953 75 92 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 7.63 vpr 63.47 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30544 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.6 MiB 1.49 782 12628 3922 6830 1876 63.5 MiB 0.13 0.00 3.65989 -133.508 -3.65989 3.65989 0.57 0.000922507 0.000856314 0.0649009 0.0603194 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.43 0.22429 0.197631 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.26 0.15 0.12 -1 -1 0.26 0.0412986 0.0359143 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.30 vpr 63.49 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 1.07 662 10163 3749 4795 1619 63.5 MiB 0.09 0.00 3.14182 -102.393 -3.14182 3.14182 0.65 0.000730764 0.000678505 0.0448402 0.0416658 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.59 0.198782 0.173061 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.26 0.10 0.18 -1 -1 0.26 0.0310619 0.0270888 77 88 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 12.34 vpr 62.85 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30408 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.83 574 9219 3815 5040 364 62.9 MiB 0.08 0.00 2.94595 -112.182 -2.94595 2.94595 0.66 0.000622819 0.00057993 0.0393723 0.0367023 54 1709 44 6.95648e+06 144757 949917. 3286.91 8.76 0.340884 0.293818 29506 232905 -1 1314 20 1289 2001 164628 39075 3.22812 3.22812 -119.217 -3.22812 0 0 1.17392e+06 4061.99 0.28 0.08 0.20 -1 -1 0.28 0.0314778 0.0281022 61 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.99 vpr 63.57 MiB 0.04 7044 -1 -1 1 0.05 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.7 MiB 3.20 749 15688 6578 8529 581 63.6 MiB 0.14 0.00 3.77419 -136.605 -3.77419 3.77419 0.66 0.00077828 0.000721461 0.0689048 0.0639232 54 2315 29 6.95648e+06 347416 949917. 3286.91 2.84 0.232743 0.204299 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.32 0.10 0.20 -1 -1 0.32 0.0345556 0.0302283 84 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.19 vpr 63.67 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.9 MiB 0.37 800 13117 5732 6986 399 63.7 MiB 0.13 0.00 3.79019 -142.199 -3.79019 3.79019 0.65 0.000776593 0.000720287 0.0635771 0.0588791 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.11 0.246084 0.214538 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0321258 0.0286356 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 5.91 vpr 63.16 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30576 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.3 MiB 1.03 575 11609 4562 5941 1106 63.2 MiB 0.10 0.00 3.25495 -109.238 -3.25495 3.25495 0.65 0.000636295 0.000591527 0.0498343 0.0463619 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.16 0.190372 0.166014 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.23 0.07 0.18 -1 -1 0.23 0.027248 0.0238209 60 55 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.89 vpr 62.87 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30416 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.27 835 9529 3959 5371 199 62.9 MiB 0.08 0.00 3.0815 -119.168 -3.0815 3.0815 0.62 0.000600068 0.000558461 0.0391596 0.0364964 38 2078 34 6.95648e+06 159232 678818. 2348.85 2.05 0.172971 0.150865 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.25 0.09 0.14 -1 -1 0.25 0.0287636 0.025417 63 4 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.05 vpr 63.63 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30228 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.7 MiB 1.08 782 14483 5692 6794 1997 63.6 MiB 0.13 0.00 3.70334 -129.205 -3.70334 3.70334 0.68 0.000745533 0.000691208 0.0628421 0.0583984 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.29 0.218849 0.191941 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.22 0.07 0.12 -1 -1 0.22 0.0276631 0.0243146 78 59 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.20 vpr 63.71 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.9 MiB 0.73 793 11474 4768 6294 412 63.7 MiB 0.11 0.00 3.90986 -132.869 -3.90986 3.90986 0.66 0.000782064 0.000721097 0.0529644 0.0492692 40 2890 43 6.95648e+06 260562 706193. 2443.58 5.53 0.231613 0.202155 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0290692 0.0257096 78 88 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.96 vpr 63.70 MiB 0.07 7084 -1 -1 1 0.04 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.0 MiB 0.40 1152 4375 861 3334 180 63.7 MiB 0.06 0.00 4.48239 -161.071 -4.48239 4.48239 0.72 0.000791395 0.000734941 0.0199656 0.0186126 46 3119 32 6.95648e+06 390843 828058. 2865.25 4.65 0.199845 0.173553 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0326318 0.028675 100 3 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.81 vpr 63.54 MiB 0.04 7072 -1 -1 1 0.04 -1 -1 30476 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.8 MiB 0.97 698 14528 6104 7488 936 63.5 MiB 0.13 0.00 3.34296 -113.702 -3.34296 3.34296 0.66 0.000717091 0.000666075 0.063989 0.0594953 44 2314 27 6.95648e+06 260562 787024. 2723.27 2.08 0.21557 0.188858 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0338229 0.0294278 77 59 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.86 vpr 62.87 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30604 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.3 MiB 0.69 465 10459 4157 5359 943 62.9 MiB 0.08 0.00 3.15776 -95.8334 -3.15776 3.15776 0.67 0.000444349 0.00040769 0.0367995 0.0340578 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.59 0.135008 0.117575 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.23 0.05 0.13 -1 -1 0.23 0.0210303 0.0183744 57 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 7.12 vpr 63.88 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 30628 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.6 MiB 0.72 956 13513 4288 6425 2800 63.9 MiB 0.15 0.00 4.037 -139.704 -4.037 4.037 0.74 0.000960914 0.000882125 0.074344 0.0690592 54 3228 47 6.95648e+06 434271 949917. 3286.91 3.45 0.288561 0.251752 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.28 0.12 0.15 -1 -1 0.28 0.0407435 0.0354206 103 95 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 8.85 vpr 63.85 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30616 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.1 MiB 3.45 899 8716 2535 4990 1191 63.8 MiB 0.10 0.00 4.57784 -152.287 -4.57784 4.57784 0.66 0.00083435 0.000775614 0.048477 0.0451101 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.54 0.215211 0.18713 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.33 0.09 0.18 -1 -1 0.33 0.0293448 0.0259072 79 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 7.98 vpr 63.32 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30388 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.4 MiB 2.74 500 11389 4353 5738 1298 63.3 MiB 0.10 0.00 3.0346 -106.135 -3.0346 3.0346 0.67 0.000685998 0.000637011 0.0531175 0.0493546 42 2142 50 6.95648e+06 144757 744469. 2576.02 2.59 0.221529 0.192768 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.23 0.07 0.15 -1 -1 0.23 0.029 0.0252441 58 89 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.54 vpr 63.71 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.8 MiB 0.33 819 12938 5293 7361 284 63.7 MiB 0.12 0.00 4.12326 -140.658 -4.12326 4.12326 0.66 0.000824745 0.000755572 0.0479804 0.044275 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.40 0.162775 0.142561 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0312379 0.027321 83 34 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.24 vpr 63.81 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.0 MiB 0.83 852 12560 4728 5964 1868 63.8 MiB 0.12 0.00 4.1192 -140.393 -4.1192 4.1192 0.68 0.000851021 0.000790612 0.059641 0.0554474 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.44 0.270564 0.23535 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0361565 0.0314477 95 64 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.97 vpr 63.57 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30408 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.7 MiB 0.90 739 10762 4429 5782 551 63.6 MiB 0.10 0.00 3.27396 -108.751 -3.27396 3.27396 0.65 0.000727706 0.000676204 0.0461019 0.0428211 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.33 0.195197 0.170237 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0316708 0.0276653 78 61 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.40 vpr 63.73 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.0 MiB 0.50 907 15848 6161 8045 1642 63.7 MiB 0.13 0.00 3.79319 -139.401 -3.79319 3.79319 0.66 0.000779286 0.000722778 0.0579356 0.0537598 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.06 0.232932 0.203765 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.08 0.18 -1 -1 0.35 0.0182665 0.0162122 91 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.83 vpr 63.52 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 24.9 MiB 0.51 794 15215 5485 7366 2364 63.5 MiB 0.13 0.00 3.05335 -116.88 -3.05335 3.05335 0.66 0.00077615 0.00071411 0.0572911 0.0529955 38 2664 32 6.95648e+06 448746 678818. 2348.85 3.61 0.220214 0.191983 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0339131 0.0295389 90 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.41 vpr 62.78 MiB 0.04 6788 -1 -1 1 0.04 -1 -1 30432 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.2 MiB 3.31 577 8599 3570 4706 323 62.8 MiB 0.05 0.00 3.17976 -103.796 -3.17976 3.17976 0.69 0.000600538 0.000558018 0.0212484 0.0196412 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.47 0.155108 0.133252 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0226184 0.019919 56 34 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.42 vpr 63.32 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.5 MiB 0.78 584 9839 4132 5456 251 63.3 MiB 0.09 0.00 2.9814 -102.92 -2.9814 2.9814 0.65 0.000657456 0.000610701 0.0446546 0.041499 42 1955 38 6.95648e+06 144757 744469. 2576.02 1.97 0.188135 0.163742 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.24 0.07 0.18 -1 -1 0.24 0.0251662 0.0220192 58 82 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 5.80 vpr 63.56 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30360 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 0.35 743 12331 4128 5906 2297 63.6 MiB 0.10 0.00 4.24545 -140.476 -4.24545 4.24545 0.65 0.000723478 0.000671986 0.0463322 0.0430797 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.66 0.215962 0.187934 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.29 0.09 0.13 -1 -1 0.29 0.0305602 0.02668 86 34 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.33 vpr 62.86 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.3 MiB 1.09 494 12399 5297 6440 662 62.9 MiB 0.12 0.00 3.26295 -100.502 -3.26295 3.26295 0.65 0.00061651 0.000573571 0.0618932 0.0575124 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.49 0.196932 0.17265 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.25 0.08 0.15 -1 -1 0.25 0.0266303 0.0231931 59 56 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.65 vpr 62.88 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30280 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 1.00 698 10149 3910 5225 1014 62.9 MiB 0.09 0.00 3.05815 -118.306 -3.05815 3.05815 0.66 0.000658698 0.000612929 0.044926 0.0417695 38 2191 39 6.95648e+06 144757 678818. 2348.85 2.99 0.179291 0.156211 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0269985 0.0235395 61 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 10.42 vpr 63.61 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30392 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 25.0 MiB 0.95 717 11607 3761 5813 2033 63.6 MiB 0.11 0.00 3.1175 -113.433 -3.1175 3.1175 0.66 0.000749416 0.000695965 0.0489661 0.0454743 40 2046 32 6.95648e+06 347416 706193. 2443.58 6.64 0.355485 0.306873 26914 176310 -1 1703 21 1731 2236 195586 47682 3.41277 3.41277 -124.646 -3.41277 0 0 926341. 3205.33 0.25 0.09 0.17 -1 -1 0.25 0.0312178 0.0273329 82 64 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.48 vpr 63.02 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30352 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 2.06 682 10459 3058 6921 480 63.0 MiB 0.10 0.00 3.13575 -104.344 -3.13575 3.13575 0.66 0.000659561 0.000614985 0.04815 0.0448486 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.69 0.188081 0.163936 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0277792 0.0241797 57 55 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.54 vpr 63.54 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.7 MiB 1.41 710 12323 5117 6727 479 63.5 MiB 0.11 0.00 3.0155 -107.222 -3.0155 3.0155 0.71 0.000739018 0.000686485 0.053241 0.0494478 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.29 0.206655 0.18079 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0306844 0.0268187 76 65 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 6.57 vpr 63.74 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.1 MiB 1.36 717 15298 5325 7460 2513 63.7 MiB 0.14 0.00 3.41641 -118.296 -3.41641 3.41641 0.65 0.00115133 0.0010924 0.0650913 0.0604416 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.29 0.242246 0.211684 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.0328698 0.0285708 85 93 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.29 vpr 63.25 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.78 564 10149 3066 5426 1657 63.3 MiB 0.10 0.00 2.9023 -103.177 -2.9023 2.9023 0.65 0.000664899 0.000617401 0.0489119 0.0455236 44 2002 28 6.95648e+06 144757 787024. 2723.27 1.82 0.182272 0.159285 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0308609 0.0268999 61 61 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 5.89 vpr 63.18 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30060 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.3 MiB 1.01 611 8289 3413 4626 250 63.2 MiB 0.08 0.00 3.0515 -113.367 -3.0515 3.0515 0.66 0.000686792 0.000638598 0.0395605 0.0368441 52 1978 31 6.95648e+06 144757 926341. 3205.33 2.11 0.185806 0.161943 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.29 0.08 0.19 -1 -1 0.29 0.0298204 0.0262716 63 63 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.00 vpr 63.62 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30668 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 24.7 MiB 0.86 951 8283 1857 5834 592 63.6 MiB 0.09 0.00 3.78219 -143.123 -3.78219 3.78219 0.66 0.000785399 0.000729796 0.0333155 0.0309581 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.39 0.199641 0.173447 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.23 0.14 0.16 -1 -1 0.23 0.039667 0.0345172 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.61 vpr 63.36 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.8 MiB 0.90 739 8336 2662 4258 1416 63.4 MiB 0.08 0.00 3.1065 -104.923 -3.1065 3.1065 0.66 0.000708359 0.000658345 0.0369582 0.0343852 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.03 0.209509 0.181675 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294082 0.0257591 77 62 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.46 vpr 63.88 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30796 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 1.52 819 16473 6066 7302 3105 63.9 MiB 0.14 0.00 3.81039 -138.347 -3.81039 3.81039 0.69 0.000867384 0.000804792 0.0716372 0.0664977 48 2605 47 6.95648e+06 419795 865456. 2994.66 4.95 0.284041 0.248003 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.27 0.15 0.19 -1 -1 0.27 0.0461677 0.0397452 89 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.15 vpr 62.79 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30360 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.2 MiB 1.27 588 9529 3953 5280 296 62.8 MiB 0.08 0.00 3.02776 -101.68 -3.02776 3.02776 0.69 0.00057124 0.000540393 0.03761 0.0350133 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.21 0.153644 0.133896 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330821 0.0288432 58 4 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.77 vpr 63.91 MiB 0.06 7036 -1 -1 1 0.04 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 0.90 751 13335 4844 6817 1674 63.9 MiB 0.12 0.00 3.74945 -128.098 -3.74945 3.74945 0.66 0.000788405 0.000730991 0.0567411 0.0524797 50 2285 32 6.95648e+06 332941 902133. 3121.57 3.04 0.222384 0.194103 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0332403 0.0290069 81 92 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.28 vpr 63.29 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30172 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.75 613 11854 5235 6332 287 63.3 MiB 0.10 0.00 2.96105 -113.67 -2.96105 2.96105 0.66 0.000546313 0.000499437 0.056373 0.0522847 40 2066 46 6.95648e+06 144757 706193. 2443.58 2.80 0.225997 0.196887 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.23 0.10 0.18 -1 -1 0.23 0.0318516 0.0277945 61 96 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 5.86 vpr 63.64 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 1.03 784 11983 4223 5778 1982 63.6 MiB 0.11 0.00 3.13882 -116.487 -3.13882 3.13882 0.66 0.000772501 0.000716438 0.050022 0.0464075 48 2212 28 6.95648e+06 347416 865456. 2994.66 1.98 0.21085 0.183953 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.26 0.09 0.19 -1 -1 0.26 0.0337236 0.0294333 84 65 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.98 vpr 63.69 MiB 0.03 7352 -1 -1 1 0.04 -1 -1 30952 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.3 MiB 1.29 961 18301 6218 9454 2629 63.7 MiB 0.17 0.00 4.52824 -160.34 -4.52824 4.52824 0.67 0.000919043 0.000852124 0.0791877 0.0735032 46 3150 41 6.95648e+06 477698 828058. 2865.25 4.69 0.292937 0.256451 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.26 0.13 0.17 -1 -1 0.26 0.0390305 0.0337889 104 96 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.01 vpr 62.56 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 30304 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.0 MiB 0.43 395 8267 2975 4043 1249 62.6 MiB 0.07 0.00 2.20646 -76.6701 -2.20646 2.20646 0.67 0.000636996 0.000592323 0.0362019 0.0336536 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.06 0.159408 0.137956 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0224677 0.0194797 45 56 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 5.87 vpr 62.81 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.61 505 9994 3801 4923 1270 62.8 MiB 0.08 0.00 3.20866 -106.336 -3.20866 3.20866 0.66 0.000616985 0.000574089 0.0419172 0.0390189 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.65 0.166391 0.144988 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.23 0.05 0.15 -1 -1 0.23 0.0156791 0.013824 58 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.06 vpr 63.39 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.5 MiB 0.23 594 9219 3126 4706 1387 63.4 MiB 0.09 0.00 2.93285 -111.664 -2.93285 2.93285 0.68 0.000648819 0.000602602 0.0442474 0.0411938 52 1888 25 6.95648e+06 144757 926341. 3205.33 2.02 0.176272 0.154075 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.28 0.09 0.20 -1 -1 0.28 0.0302459 0.0263813 65 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 10.04 vpr 62.70 MiB 0.07 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.2 MiB 0.49 415 9310 3976 4598 736 62.7 MiB 0.08 0.00 3.24096 -89.6096 -3.24096 3.24096 0.68 0.000630908 0.000587555 0.0406688 0.0378903 40 1641 47 6.95648e+06 217135 706193. 2443.58 6.79 0.290968 0.249137 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0227539 0.0198202 56 34 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 7.74 vpr 63.91 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.05 849 10835 4559 6029 247 63.9 MiB 0.11 0.00 3.79924 -134.385 -3.79924 3.79924 0.57 0.00080774 0.000748651 0.0564517 0.0523913 44 3443 36 6.95648e+06 188184 787024. 2723.27 3.99 0.232864 0.202839 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.0356805 0.0310493 77 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.66 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30336 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.0 MiB 0.87 742 12512 4241 5927 2344 63.7 MiB 0.13 0.00 3.1116 -112.527 -3.1116 3.1116 0.74 0.000781147 0.000724011 0.0582048 0.0539414 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.57 0.243824 0.212495 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0402471 0.0349383 87 94 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.80 vpr 63.40 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 30600 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 24.8 MiB 0.57 1062 15584 5717 7278 2589 63.4 MiB 0.15 0.00 4.46104 -158.567 -4.46104 4.46104 0.66 0.00081645 0.000758503 0.0707713 0.0656883 50 2979 31 6.99608e+06 323745 902133. 3121.57 2.38 0.242973 0.212833 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.30 0.09 0.22 -1 -1 0.30 0.0331302 0.0291028 130 96 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.69 vpr 63.59 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 24.9 MiB 1.29 1018 13610 5732 7207 671 63.6 MiB 0.13 0.00 4.50158 -148.332 -4.50158 4.50158 0.65 0.000761825 0.000706997 0.0612353 0.0568528 54 3118 36 6.99608e+06 294314 949917. 3286.91 2.47 0.228463 0.199738 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.29 0.10 0.21 -1 -1 0.29 0.0313994 0.0275342 117 91 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 17.49 vpr 63.60 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1040 13610 5701 7488 421 63.6 MiB 0.13 0.00 3.59279 -128.627 -3.59279 3.59279 0.65 0.000760172 0.000707191 0.060149 0.055907 40 3318 43 6.99608e+06 264882 706193. 2443.58 13.89 0.370632 0.320814 26914 176310 -1 2702 23 2033 2424 265080 55517 4.25296 4.25296 -147.611 -4.25296 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0329514 0.028739 106 65 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.35 vpr 63.05 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.5 MiB 0.66 806 14444 6101 7602 741 63.0 MiB 0.13 0.00 3.79615 -125.537 -3.79615 3.79615 0.68 0.000686037 0.00063742 0.0615305 0.0572096 40 2767 26 6.99608e+06 264882 706193. 2443.58 2.89 0.201639 0.176899 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0296071 0.0258638 89 34 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 6.26 vpr 63.38 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 0.52 871 12416 4669 6393 1354 63.4 MiB 0.13 0.00 4.27644 -154.345 -4.27644 4.27644 0.67 0.000744166 0.000691222 0.0594412 0.0552183 56 2565 50 6.99608e+06 220735 973134. 3367.25 2.76 0.245215 0.214568 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.30 0.12 0.20 -1 -1 0.30 0.0366584 0.0321185 93 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 5.97 vpr 63.56 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 24.9 MiB 0.52 1298 16069 5589 8587 1893 63.6 MiB 0.16 0.00 3.60699 -134.626 -3.60699 3.60699 0.68 0.0007667 0.000711394 0.0640642 0.0594511 48 3162 26 6.99608e+06 441471 865456. 2994.66 2.49 0.218217 0.191072 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.27 0.11 0.19 -1 -1 0.27 0.0342925 0.0299545 117 64 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.79 vpr 62.67 MiB 0.03 6904 -1 -1 1 0.03 -1 -1 30592 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.0 MiB 1.22 620 8289 3348 4414 527 62.7 MiB 0.08 0.00 3.30124 -103.988 -3.30124 3.30124 0.65 0.000677317 0.00063024 0.0365495 0.034047 44 2016 40 6.99608e+06 220735 787024. 2723.27 1.94 0.166544 0.144341 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0248881 0.0216495 68 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.52 vpr 63.15 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.5 MiB 0.45 708 9368 3795 5080 493 63.1 MiB 0.08 0.00 2.88485 -101.173 -2.88485 2.88485 0.66 0.00066735 0.000620804 0.0392732 0.0365734 46 2433 35 6.99608e+06 250167 828058. 2865.25 4.21 0.190732 0.166437 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.26 0.12 0.18 -1 -1 0.26 0.0350692 0.0304863 77 4 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.00 vpr 63.18 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30192 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.5 MiB 2.66 865 11366 4429 5807 1130 63.2 MiB 0.11 0.00 3.3156 -116.953 -3.3156 3.3156 0.66 0.000665616 0.000618279 0.0496394 0.046157 44 2856 40 6.99608e+06 220735 787024. 2723.27 2.60 0.201046 0.175342 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0311239 0.0271082 96 85 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.58 vpr 63.11 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.1 MiB 0.67 668 10346 4043 5155 1148 63.1 MiB 0.10 0.00 3.58059 -133.895 -3.58059 3.58059 0.66 0.000646155 0.000601029 0.0437576 0.0407396 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.01 0.167608 0.14679 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0295843 0.0259148 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.42 vpr 63.14 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.4 MiB 2.22 858 10835 4264 5113 1458 63.1 MiB 0.10 0.00 3.85932 -133.017 -3.85932 3.85932 0.65 0.000649061 0.000603224 0.0466001 0.0433166 38 2753 35 6.99608e+06 220735 678818. 2348.85 3.54 0.193055 0.168216 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0284136 0.0247374 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.00 vpr 63.24 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1078 12030 4277 6214 1539 63.2 MiB 0.11 0.00 3.0712 -121.401 -3.0712 3.0712 0.61 0.000658693 0.00061202 0.0505284 0.0469848 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.64 0.20739 0.181113 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0303149 0.0263846 91 65 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.15 vpr 63.55 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 883 7132 1837 4428 867 63.5 MiB 0.08 0.00 3.50359 -126.552 -3.50359 3.50359 0.66 0.00074917 0.000695745 0.0341931 0.0318067 50 2388 31 6.99608e+06 235451 902133. 3121.57 2.57 0.196004 0.170519 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0345373 0.0301544 101 58 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.04 vpr 63.77 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.1 MiB 0.80 1134 14123 4441 7724 1958 63.8 MiB 0.13 0.00 4.28564 -153.93 -4.28564 4.28564 0.66 0.000783937 0.000728008 0.0644521 0.0598661 48 3127 38 6.99608e+06 279598 865456. 2994.66 3.31 0.241495 0.211441 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0386137 0.0337423 112 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.88 vpr 62.78 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30648 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.2 MiB 2.12 572 11293 4723 5996 574 62.8 MiB 0.09 0.00 2.92195 -96.6009 -2.92195 2.92195 0.66 0.000575224 0.000534833 0.0429313 0.0399596 40 1775 30 6.99608e+06 206020 706193. 2443.58 3.20 0.170613 0.14835 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0248046 0.0216046 67 29 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.62 vpr 63.60 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30584 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 24.8 MiB 1.83 1040 13324 4763 6768 1793 63.6 MiB 0.08 0.00 3.68279 -132.173 -3.68279 3.68279 0.67 0.000406344 0.000373317 0.0316411 0.0291207 50 2876 28 6.99608e+06 235451 902133. 3121.57 2.02 0.180162 0.156062 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.27 0.14 0.18 -1 -1 0.27 0.0478658 0.0426089 106 63 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 7.37 vpr 63.41 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.15 1122 6731 1649 4394 688 63.4 MiB 0.08 0.00 3.32994 -131.897 -3.32994 3.32994 0.66 0.00073941 0.000686582 0.0317383 0.029521 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.39 0.182341 0.158497 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0297174 0.0259998 99 57 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.46 vpr 63.30 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.4 MiB 0.70 871 13856 5887 7726 243 63.3 MiB 0.13 0.00 3.39034 -128.572 -3.39034 3.39034 0.65 0.000680821 0.000632571 0.0593126 0.0551658 44 3195 31 6.99608e+06 206020 787024. 2723.27 2.01 0.203122 0.177999 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0278798 0.0244046 91 65 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.38 vpr 62.42 MiB 0.04 6740 -1 -1 1 0.03 -1 -1 30132 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.8 MiB 2.09 536 9041 3932 4796 313 62.4 MiB 0.04 0.00 2.34646 -88.6787 -2.34646 2.34646 0.63 0.000224508 0.000206402 0.0147198 0.0135595 36 1652 38 6.99608e+06 161872 648988. 2245.63 1.79 0.127571 0.109242 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.21 0.05 0.17 -1 -1 0.21 0.0202662 0.017624 56 34 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.87 vpr 63.20 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 2.08 1018 11532 3380 6660 1492 63.2 MiB 0.10 0.00 3.58639 -133.629 -3.58639 3.58639 0.66 0.000666235 0.00061958 0.0482517 0.044876 40 2527 22 6.99608e+06 220735 706193. 2443.58 2.08 0.178475 0.156058 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0276308 0.0241249 91 64 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.32 vpr 63.42 MiB 0.02 7044 -1 -1 1 0.05 -1 -1 30348 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1089 12759 4547 6573 1639 63.4 MiB 0.11 0.00 4.04748 -146.851 -4.04748 4.04748 0.68 0.000724068 0.000672777 0.0513131 0.0476978 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.10 0.204908 0.179098 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0334569 0.0293014 97 34 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 6.41 vpr 63.62 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 31008 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.3 MiB 1.15 1280 15206 4884 7262 3060 63.6 MiB 0.15 0.00 4.01908 -141.768 -4.01908 4.01908 0.65 0.000842705 0.000783788 0.0713301 0.0663243 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.41 0.242815 0.212535 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0417096 0.0362386 138 124 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.74 vpr 62.41 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30628 -1 -1 15 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.9 MiB 0.70 401 7217 2934 3827 456 62.4 MiB 0.05 0.00 2.7074 -79.2163 -2.7074 2.7074 0.69 0.000441244 0.000410075 0.0224926 0.0209252 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.45 0.119014 0.102823 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0154127 0.0135239 52 30 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.69 vpr 63.12 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30208 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.77 698 9036 3669 4978 389 63.1 MiB 0.12 0.00 3.97238 -133.231 -3.97238 3.97238 0.68 0.000688351 0.000639785 0.0634912 0.0591259 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 1.96 0.198255 0.174522 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.31 0.08 0.23 -1 -1 0.31 0.0360682 0.0319935 75 3 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.11 vpr 62.21 MiB 0.02 6652 -1 -1 1 0.04 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.7 MiB 0.23 736 9906 3603 5031 1272 62.2 MiB 0.07 0.00 2.06111 -84.6894 -2.06111 2.06111 0.67 0.000475922 0.00044278 0.0327309 0.0304482 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.39 0.119201 0.104252 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0209472 0.0183284 44 3 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.48 vpr 63.72 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.9 MiB 1.13 836 12681 5269 6945 467 63.7 MiB 0.12 0.00 3.87925 -141.78 -3.87925 3.87925 0.66 0.000739996 0.000687363 0.0563669 0.0524048 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.46 0.230536 0.202045 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0329114 0.0287859 95 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 4.88 vpr 63.33 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30152 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1064 14375 4737 7721 1917 63.3 MiB 0.11 0.00 2.93295 -116.62 -2.93295 2.93295 0.65 0.00069251 0.000642787 0.0506511 0.0470429 40 2476 21 6.99608e+06 412039 706193. 2443.58 1.91 0.186871 0.163521 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.0285983 0.0250648 87 3 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.57 vpr 63.59 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1077 13105 3562 8179 1364 63.6 MiB 0.15 0.00 3.82425 -139.818 -3.82425 3.82425 0.65 0.000890744 0.000834222 0.0660261 0.0613206 46 3235 48 6.99608e+06 309029 828058. 2865.25 2.99 0.252722 0.221135 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338563 0.0298086 115 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.25 vpr 62.84 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30064 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.2 MiB 1.10 701 9397 3869 5271 257 62.8 MiB 0.08 0.00 2.9841 -107.493 -2.9841 2.9841 0.65 0.000615013 0.000571898 0.0388789 0.0361651 40 2056 26 6.99608e+06 161872 706193. 2443.58 2.50 0.16791 0.146054 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0260136 0.0227245 72 34 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 13.32 vpr 62.76 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.1 MiB 7.15 650 7975 2399 4401 1175 62.8 MiB 0.04 0.00 3.55679 -118.022 -3.55679 3.55679 0.65 0.000276819 0.000254598 0.0155191 0.0143283 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.36 0.167484 0.143808 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0321291 0.0283024 73 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.19 vpr 62.77 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.13 739 7975 3247 4371 357 62.8 MiB 0.09 0.00 3.69125 -116.127 -3.69125 3.69125 0.65 0.000585019 0.000544306 0.0406481 0.0377877 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.40 0.173212 0.150756 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0235827 0.020533 72 34 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 4.97 vpr 62.75 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30392 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 0.21 696 7204 2957 4121 126 62.8 MiB 0.07 0.00 2.86245 -113.51 -2.86245 2.86245 0.70 0.000613359 0.000570273 0.0306445 0.0285266 42 2358 35 6.99608e+06 147157 744469. 2576.02 1.98 0.16356 0.141901 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.24 0.08 0.16 -1 -1 0.24 0.023784 0.0208085 64 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.00 vpr 62.73 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.3 MiB 0.66 709 9540 3934 5278 328 62.7 MiB 0.08 0.00 2.94395 -107.519 -2.94395 2.94395 0.70 0.000627913 0.000583827 0.0386868 0.0359895 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.58 0.170633 0.148816 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.26 0.07 0.18 -1 -1 0.26 0.0272535 0.0238171 77 34 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.93 vpr 63.19 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.6 MiB 2.69 930 10835 4554 5858 423 63.2 MiB 0.10 0.00 2.88685 -103.645 -2.88685 2.88685 0.70 0.000631484 0.000587347 0.0441776 0.0410564 36 2556 47 6.99608e+06 235451 648988. 2245.63 3.55 0.193263 0.168078 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.21 0.07 0.19 -1 -1 0.21 0.0253984 0.0221193 86 61 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.43 vpr 63.90 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30564 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.2 MiB 0.94 1138 15273 6065 7495 1713 63.9 MiB 0.16 0.00 3.90815 -143.373 -3.90815 3.90815 0.65 0.000830365 0.000771992 0.0730857 0.0679415 46 3798 44 6.99608e+06 294314 828058. 2865.25 4.56 0.265474 0.23183 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.25 0.11 0.18 -1 -1 0.25 0.0365603 0.0319042 106 29 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 6.21 vpr 63.58 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.98 999 10762 3395 5388 1979 63.6 MiB 0.11 0.00 4.20458 -152.083 -4.20458 4.20458 0.66 0.000771363 0.000716365 0.0496059 0.0461193 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.30 0.202718 0.17718 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.33 0.10 0.22 -1 -1 0.33 0.0338944 0.0296167 110 65 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 63.35 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.5 MiB 0.80 1070 8867 2185 5933 749 63.4 MiB 0.08 0.00 3.49385 -125.494 -3.49385 3.49385 0.66 0.000681264 0.000633276 0.0391236 0.0364011 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.50 0.189359 0.164516 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0288946 0.0251809 99 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.66 vpr 63.54 MiB 0.08 7188 -1 -1 1 0.05 -1 -1 30552 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.79 1182 9006 2249 6265 492 63.5 MiB 0.10 0.00 3.66135 -134.693 -3.66135 3.66135 0.65 0.000756388 0.00070284 0.0426239 0.0396379 40 2955 30 6.99608e+06 264882 706193. 2443.58 2.09 0.201157 0.175041 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.23 0.10 0.17 -1 -1 0.23 0.0301862 0.0265043 105 64 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.05 vpr 63.59 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30508 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1281 17663 7641 9474 548 63.6 MiB 0.17 0.00 4.62587 -160.146 -4.62587 4.62587 0.65 0.000843255 0.000783379 0.0827718 0.0768699 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.23 0.248954 0.218231 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.31 0.13 0.19 -1 -1 0.31 0.038675 0.0336927 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.05 vpr 63.66 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 24.9 MiB 2.88 1159 10762 4075 5172 1515 63.7 MiB 0.11 0.00 4.92973 -159.817 -4.92973 4.92973 0.65 0.000780689 0.000724845 0.0497533 0.0462082 44 3431 27 6.99608e+06 279598 787024. 2723.27 2.36 0.210763 0.184035 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.25 0.13 0.17 -1 -1 0.25 0.0450943 0.039127 117 90 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.84 vpr 63.75 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.22 1059 13763 5785 7510 468 63.8 MiB 0.13 0.00 3.58185 -130.714 -3.58185 3.58185 0.66 0.000750495 0.000696652 0.0610427 0.0566747 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.84 0.23169 0.202647 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0325575 0.0284389 107 64 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.55 vpr 63.83 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30744 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.1 MiB 0.84 1271 6556 1686 3783 1087 63.8 MiB 0.07 0.00 3.81927 -146.587 -3.81927 3.81927 0.70 0.000767266 0.000712809 0.0317367 0.0295351 40 3290 49 6.99608e+06 250167 706193. 2443.58 3.99 0.215272 0.186404 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.23 0.15 0.10 -1 -1 0.23 0.0391876 0.0341166 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.70 vpr 63.61 MiB 0.06 7276 -1 -1 1 0.04 -1 -1 30624 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.1 MiB 2.13 1530 16529 5778 8459 2292 63.6 MiB 0.18 0.00 4.81093 -174.639 -4.81093 4.81093 0.67 0.000927381 0.000861553 0.0849029 0.0789041 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.52 0.267808 0.235147 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.31 0.15 0.17 -1 -1 0.31 0.0436924 0.0380498 139 96 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 10.32 vpr 63.10 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.4 MiB 0.81 802 9996 3771 4383 1842 63.1 MiB 0.10 0.00 3.1395 -118.304 -3.1395 3.1395 0.68 0.000629305 0.000585174 0.0453582 0.0422303 40 1998 21 6.99608e+06 191304 706193. 2443.58 6.82 0.293299 0.252879 26914 176310 -1 1846 22 1556 1917 164650 33970 3.16707 3.16707 -125.758 -3.16707 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273871 0.0239132 75 34 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.97 vpr 63.53 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 24.8 MiB 0.65 1237 14606 4845 8003 1758 63.5 MiB 0.14 0.00 4.54014 -162.571 -4.54014 4.54014 0.66 0.000768294 0.000713832 0.0670838 0.062325 44 3549 35 6.99608e+06 264882 787024. 2723.27 3.59 0.238086 0.208857 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0333396 0.029088 106 64 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 5.99 vpr 63.62 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.9 MiB 1.05 1279 13077 3808 7089 2180 63.6 MiB 0.13 0.00 3.54953 -133.609 -3.54953 3.54953 0.65 0.000763955 0.000709996 0.0576479 0.0536177 46 3226 21 6.99608e+06 294314 828058. 2865.25 2.19 0.207743 0.182355 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0302954 0.0265118 108 63 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.58 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.5 MiB 0.74 797 9368 3826 5299 243 63.0 MiB 0.10 0.00 3.54729 -133.832 -3.54729 3.54729 0.66 0.000734371 0.000675093 0.0437773 0.0407151 46 2734 24 6.99608e+06 191304 828058. 2865.25 3.14 0.190573 0.166758 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0292219 0.0255247 77 3 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.64 vpr 63.71 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.25 1139 10883 2905 7208 770 63.7 MiB 0.11 0.00 3.32994 -127.882 -3.32994 3.32994 0.65 0.000786047 0.000729561 0.0505816 0.0469466 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.54 0.232581 0.202769 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.033205 0.0290585 120 96 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.92 vpr 63.49 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 24.8 MiB 0.97 1139 12528 3436 7246 1846 63.5 MiB 0.12 0.00 3.59669 -136.453 -3.59669 3.59669 0.70 0.000772392 0.000716305 0.0554568 0.0515376 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.23 0.229341 0.20103 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.03313 0.0289493 106 61 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 6.53 vpr 63.57 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.9 MiB 0.70 1314 14431 4781 7561 2089 63.6 MiB 0.16 0.00 3.61639 -141.899 -3.61639 3.61639 0.69 0.000799338 0.000742896 0.0736985 0.0682933 40 3393 43 6.99608e+06 250167 706193. 2443.58 2.82 0.250698 0.219817 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.33 0.11 0.17 -1 -1 0.33 0.0353718 0.0309905 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.19 vpr 63.42 MiB 0.03 6892 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.6 MiB 0.84 813 11432 3614 6147 1671 63.4 MiB 0.11 0.00 3.93015 -141.517 -3.93015 3.93015 0.67 0.000738821 0.000683383 0.0518395 0.0481751 48 3063 38 6.99608e+06 235451 865456. 2994.66 3.56 0.220954 0.193598 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.26 0.12 0.14 -1 -1 0.26 0.0331824 0.0290848 94 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 16.68 vpr 63.61 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.81 930 14500 5516 6956 2028 63.6 MiB 0.14 0.00 3.81585 -138.808 -3.81585 3.81585 0.69 0.00076894 0.000713957 0.0659461 0.0612289 44 3517 47 6.99608e+06 264882 787024. 2723.27 13.05 0.408475 0.354148 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.27 0.11 0.16 -1 -1 0.27 0.0396963 0.0345748 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 6.86 vpr 63.58 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30660 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.3 MiB 1.43 1399 14035 5589 6713 1733 63.6 MiB 0.14 0.00 3.97768 -141.845 -3.97768 3.97768 0.65 0.000831533 0.000772396 0.065657 0.0608105 44 3778 32 6.99608e+06 323745 787024. 2723.27 2.57 0.240097 0.209158 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.27 0.09 0.18 -1 -1 0.27 0.0329575 0.0287279 132 122 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.17 vpr 63.52 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1318 15273 5215 8174 1884 63.5 MiB 0.15 0.00 3.73195 -141.182 -3.73195 3.73195 0.67 0.000809554 0.000751409 0.0700525 0.0650309 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.20 0.242775 0.21262 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.33 0.17 0.17 -1 -1 0.33 0.0416189 0.0364636 126 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 5.89 vpr 63.27 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.3 MiB 0.49 921 12528 4814 6023 1691 63.3 MiB 0.11 0.00 2.98795 -120.412 -2.98795 2.98795 0.65 0.000642292 0.000597314 0.0508079 0.047296 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.60 0.179009 0.156723 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0271664 0.0237019 80 34 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.46 vpr 63.38 MiB 0.01 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.7 MiB 0.74 1095 11776 4100 5415 2261 63.4 MiB 0.11 0.00 3.80663 -140.003 -3.80663 3.80663 0.66 0.00070677 0.00065603 0.0512866 0.0476907 46 2887 24 6.99608e+06 235451 828058. 2865.25 2.88 0.199073 0.173913 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.09 0.18 -1 -1 0.33 0.0268674 0.023867 108 94 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 6.59 vpr 63.56 MiB 0.03 7100 -1 -1 1 0.03 -1 -1 30812 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.1 MiB 0.85 1231 15273 6501 8321 451 63.6 MiB 0.16 0.00 4.57343 -162.846 -4.57343 4.57343 0.67 0.000884155 0.000821369 0.0787555 0.073228 54 3744 47 6.99608e+06 294314 949917. 3286.91 2.66 0.299433 0.262793 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.28 0.14 0.23 -1 -1 0.28 0.0435504 0.0379064 126 65 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 5.82 vpr 63.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.58 1100 10916 2969 6188 1759 63.4 MiB 0.11 0.00 3.58059 -138.842 -3.58059 3.58059 0.65 0.000728979 0.000676939 0.0501428 0.0466303 40 2715 36 6.99608e+06 235451 706193. 2443.58 2.52 0.216485 0.189154 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0324451 0.0283235 93 34 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 5.62 vpr 62.90 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30444 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.4 MiB 0.64 716 11804 3687 5992 2125 62.9 MiB 0.10 0.00 3.75245 -123.293 -3.75245 3.75245 0.65 0.000615556 0.000572246 0.0405868 0.0377396 40 2192 44 6.99608e+06 353176 706193. 2443.58 2.30 0.183389 0.159204 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0295224 0.0256409 80 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 6.10 vpr 63.88 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 30976 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.6 MiB 0.83 1504 15883 5797 7858 2228 63.9 MiB 0.17 0.00 5.34997 -188.353 -5.34997 5.34997 0.65 0.000951193 0.000883193 0.0812633 0.0754952 56 3670 24 6.99608e+06 353176 973134. 3367.25 2.25 0.279855 0.24514 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.29 0.13 0.23 -1 -1 0.29 0.0411109 0.0359127 159 127 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 5.85 vpr 63.41 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.73 938 15044 6550 8115 379 63.4 MiB 0.14 0.00 4.27644 -157.663 -4.27644 4.27644 0.65 0.000742206 0.000689236 0.0680038 0.0632156 48 2674 27 6.99608e+06 235451 865456. 2994.66 2.28 0.223265 0.196109 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0318091 0.0278564 92 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.42 vpr 62.76 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30312 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 0.28 660 12763 5275 7138 350 62.8 MiB 0.10 0.00 2.98775 -114.509 -2.98775 2.98775 0.65 0.000617122 0.000573409 0.0425442 0.0395559 46 2129 35 6.99608e+06 353176 828058. 2865.25 2.43 0.175354 0.152889 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0277707 0.0241535 70 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 8.92 vpr 63.90 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30796 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 1143 13432 5563 7207 662 63.9 MiB 0.14 0.00 4.46895 -161.038 -4.46895 4.46895 0.68 0.000854627 0.00079476 0.0680384 0.0632746 46 4011 41 6.99608e+06 264882 828058. 2865.25 5.32 0.266644 0.233091 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.26 0.12 0.14 -1 -1 0.26 0.0370189 0.032616 112 34 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.44 vpr 62.75 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30396 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.30 625 10614 4416 5947 251 62.8 MiB 0.09 0.00 2.85145 -111.794 -2.85145 2.85145 0.66 0.000607625 0.000564445 0.0440693 0.0409427 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.49 0.183854 0.160152 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0275761 0.0240165 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 5.19 vpr 62.65 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30200 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.2 MiB 0.65 755 9857 4076 5498 283 62.7 MiB 0.09 0.00 3.30794 -118.735 -3.30794 3.30794 0.65 0.000616739 0.000573488 0.0401466 0.0373486 44 2377 21 6.99608e+06 220735 787024. 2723.27 1.93 0.160575 0.139984 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0264088 0.023037 74 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.69 vpr 63.43 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30396 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.8 MiB 1.62 1003 15481 6003 6865 2613 63.4 MiB 0.14 0.00 3.85703 -126.704 -3.85703 3.85703 0.66 0.00074583 0.00069244 0.0703618 0.0653279 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.24 0.234888 0.20583 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0342207 0.0298524 113 88 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.34 vpr 63.61 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30744 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 0.96 1068 14144 5407 6800 1937 63.6 MiB 0.13 0.00 4.29664 -157.784 -4.29664 4.29664 0.68 0.000769772 0.000714192 0.0640171 0.0594557 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.50 0.226928 0.199222 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.25 0.10 0.18 -1 -1 0.25 0.0346218 0.0302876 109 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.23 vpr 63.69 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 1.00 1151 6846 1472 4993 381 63.7 MiB 0.08 0.00 4.30354 -157.84 -4.30354 4.30354 0.66 0.000772844 0.000717753 0.0326154 0.0303242 44 3666 26 6.99608e+06 264882 787024. 2723.27 2.40 0.193254 0.168014 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0331066 0.0289454 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.60 vpr 63.33 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.8 MiB 0.64 792 12585 5306 6906 373 63.3 MiB 0.11 0.00 3.44424 -128.433 -3.44424 3.44424 0.71 0.000685268 0.000636397 0.0535938 0.0498004 46 2594 31 6.99608e+06 220735 828058. 2865.25 3.18 0.197676 0.172267 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.25 0.09 0.12 -1 -1 0.25 0.0307413 0.0268935 92 65 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.40 vpr 63.16 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.5 MiB 2.28 885 11260 4668 6241 351 63.2 MiB 0.09 0.00 3.46644 -123.995 -3.46644 3.46644 0.67 0.000531088 0.000487088 0.0385122 0.0353721 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.49 0.187786 0.162467 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.24 0.06 0.11 -1 -1 0.24 0.0210685 0.0185169 102 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.98 vpr 63.55 MiB 0.05 7072 -1 -1 1 0.04 -1 -1 30568 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.13 904 12506 5230 6653 623 63.6 MiB 0.13 0.00 3.42074 -117.96 -3.42074 3.42074 0.66 0.000732263 0.000679824 0.059686 0.0554151 44 3198 37 6.99608e+06 279598 787024. 2723.27 2.97 0.220827 0.193044 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.30 0.09 0.18 -1 -1 0.30 0.0314174 0.0274196 101 60 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.37 vpr 63.33 MiB 0.02 6992 -1 -1 1 0.02 -1 -1 30572 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 824 9872 4064 5274 534 63.3 MiB 0.09 0.00 3.73195 -121.956 -3.73195 3.73195 0.65 0.000666267 0.000619411 0.0420186 0.0391114 44 2539 27 6.99608e+06 264882 787024. 2723.27 2.00 0.185433 0.161918 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.031359 0.0273607 87 34 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.31 vpr 63.27 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30100 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.74 814 10672 3702 5165 1805 63.3 MiB 0.10 0.00 4.51934 -148.35 -4.51934 4.51934 0.66 0.000652314 0.000606298 0.0448768 0.041732 44 2874 44 6.99608e+06 220735 787024. 2723.27 2.75 0.197218 0.171306 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0308294 0.0271557 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.30 vpr 63.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 2.63 1000 12585 4720 5647 2218 63.7 MiB 0.12 0.00 3.77345 -134.122 -3.77345 3.77345 0.65 0.000695151 0.000645565 0.054539 0.0506452 46 3110 45 6.99608e+06 220735 828058. 2865.25 2.90 0.202049 0.176759 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0298784 0.0260276 104 91 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.92 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.14 808 15688 5217 8110 2361 63.0 MiB 0.14 0.00 3.76925 -134.079 -3.76925 3.76925 0.66 0.000695669 0.000646679 0.059035 0.0548849 46 3039 46 6.99608e+06 367892 828058. 2865.25 3.95 0.228217 0.199962 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0298464 0.0260472 86 4 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 24.27 vpr 63.50 MiB 0.05 7092 -1 -1 1 0.04 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 24.8 MiB 0.68 1209 11281 3120 7720 441 63.5 MiB 0.12 0.00 4.19534 -154.628 -4.19534 4.19534 0.67 0.000782407 0.00072692 0.052718 0.0489263 40 3750 26 6.99608e+06 250167 706193. 2443.58 20.65 0.377919 0.327226 26914 176310 -1 3109 32 2987 3961 695507 232571 4.80515 4.80515 -184.309 -4.80515 0 0 926341. 3205.33 0.23 0.21 0.15 -1 -1 0.23 0.0452283 0.0392673 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 6.46 vpr 63.55 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.8 MiB 0.59 1142 12364 5175 6807 382 63.5 MiB 0.12 0.00 5.12678 -171.348 -5.12678 5.12678 0.67 0.000780871 0.000725092 0.0576382 0.0535415 54 3283 29 6.99608e+06 264882 949917. 3286.91 2.94 0.221072 0.19353 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.31 0.11 0.19 -1 -1 0.31 0.0317002 0.0278034 108 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.05 vpr 63.58 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1089 13788 4649 7550 1589 63.6 MiB 0.14 0.00 4.15408 -148.064 -4.15408 4.15408 0.67 0.000786922 0.0007304 0.0624545 0.0580102 44 3953 47 6.99608e+06 264882 787024. 2723.27 4.55 0.248508 0.217291 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.25 0.10 0.20 -1 -1 0.25 0.0320005 0.0279905 107 65 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.83 vpr 62.93 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.5 MiB 0.71 692 12241 5462 6300 479 62.9 MiB 0.10 0.00 3.58339 -124.571 -3.58339 3.58339 0.66 0.000618908 0.000575343 0.0500648 0.0465097 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.35 0.188266 0.164147 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0251551 0.0219356 76 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.24 vpr 63.64 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.9 MiB 2.19 1070 13152 5486 7187 479 63.6 MiB 0.13 0.00 4.68713 -157.481 -4.68713 4.68713 0.69 0.000737267 0.000684368 0.0598965 0.0556801 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.21 0.222052 0.194536 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0293912 0.0257568 105 63 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.54 vpr 63.71 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30812 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1372 11615 4190 5568 1857 63.7 MiB 0.12 0.00 4.17744 -155.5 -4.17744 4.17744 0.67 0.000847355 0.000786429 0.0548038 0.0508955 46 3391 25 6.99608e+06 323745 828058. 2865.25 2.93 0.230589 0.201174 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0388414 0.0337902 139 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 18.04 vpr 63.26 MiB 0.04 7196 -1 -1 1 0.04 -1 -1 30360 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 24.8 MiB 1.37 1101 12733 5285 6817 631 63.3 MiB 0.12 0.00 4.35899 -150.667 -4.35899 4.35899 0.65 0.000792562 0.00072893 0.0570857 0.0529784 50 3217 36 6.99608e+06 323745 902133. 3121.57 13.87 0.401511 0.346642 28642 213929 -1 2323 21 2201 2619 211762 52502 4.6934 4.6934 -161.769 -4.6934 0 0 1.08113e+06 3740.92 0.27 0.09 0.19 -1 -1 0.27 0.0326983 0.0286511 125 94 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.35 vpr 63.45 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.8 MiB 2.61 1072 15456 6595 7994 867 63.4 MiB 0.15 0.00 4.1343 -135.415 -4.1343 4.1343 0.67 0.000907806 0.000843234 0.0698627 0.0648584 48 3698 50 6.99608e+06 323745 865456. 2994.66 4.79 0.260726 0.228234 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.27 0.16 0.17 -1 -1 0.27 0.0377766 0.0330643 114 92 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 22.45 vpr 63.52 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30584 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1174 14500 5592 7226 1682 63.5 MiB 0.14 0.00 4.33244 -160.384 -4.33244 4.33244 0.66 0.000773243 0.000717902 0.0684075 0.0635078 46 3851 34 6.99608e+06 264882 828058. 2865.25 18.70 0.426163 0.369221 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0339885 0.0298259 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.04 vpr 63.57 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30340 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1070 11106 4662 5983 461 63.6 MiB 0.11 0.00 3.53179 -119.754 -3.53179 3.53179 0.67 0.000734998 0.000682413 0.0490137 0.0455089 38 3405 45 6.99608e+06 294314 678818. 2348.85 5.55 0.227155 0.197628 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.29 0.11 0.15 -1 -1 0.29 0.0336259 0.0293662 112 88 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.68 vpr 62.60 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30468 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.0 MiB 0.65 592 9684 3186 4658 1840 62.6 MiB 0.09 0.00 2.86245 -110.719 -2.86245 2.86245 0.67 0.000619203 0.000575776 0.0404677 0.0376744 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.29 0.187687 0.163319 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.26 0.09 0.12 -1 -1 0.26 0.0270365 0.0235439 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.77 vpr 63.55 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30588 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.63 999 9872 3990 5501 381 63.6 MiB 0.10 0.00 4.9054 -173.166 -4.9054 4.9054 0.66 0.000778994 0.000723104 0.0466319 0.0433036 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.32 0.204461 0.178094 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.31 0.10 0.22 -1 -1 0.31 0.035841 0.0313029 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.15 vpr 63.54 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 24.9 MiB 0.72 1203 7431 1958 4126 1347 63.5 MiB 0.08 0.00 4.63877 -167.295 -4.63877 4.63877 0.66 0.000780204 0.000724023 0.0358477 0.0333449 44 3706 30 6.99608e+06 250167 787024. 2723.27 2.61 0.198382 0.172263 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.25 0.12 0.16 -1 -1 0.25 0.0349107 0.0304374 111 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 16.99 vpr 63.00 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.6 MiB 1.89 766 11324 4293 5664 1367 63.0 MiB 0.05 0.00 3.24452 -112.954 -3.24452 3.24452 0.67 0.000285627 0.000262496 0.0219418 0.0202074 48 2295 39 6.99608e+06 191304 865456. 2994.66 12.32 0.311851 0.26676 28354 207349 -1 1784 21 1600 1887 197435 47668 3.48726 3.48726 -120.115 -3.48726 0 0 1.05005e+06 3633.38 0.27 0.08 0.19 -1 -1 0.27 0.0275347 0.024109 85 55 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.12 vpr 62.65 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30392 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 592 7514 3020 4270 224 62.6 MiB 0.07 0.00 3.0031 -111.146 -3.0031 3.0031 0.69 0.0005977 0.000555618 0.0319781 0.0297328 44 2109 28 6.99608e+06 161872 787024. 2723.27 1.94 0.165995 0.144131 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0265781 0.0231406 63 4 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.44 vpr 63.56 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1014 12331 5131 6918 282 63.6 MiB 0.11 0.00 4.03648 -138.539 -4.03648 4.03648 0.65 0.000740415 0.000687504 0.0548958 0.0510204 40 2840 45 6.99608e+06 250167 706193. 2443.58 2.80 0.22817 0.199309 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.23 0.16 0.16 -1 -1 0.23 0.0420894 0.0365071 102 59 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 6.84 vpr 63.56 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.8 MiB 1.31 1077 13043 5447 7262 334 63.6 MiB 0.13 0.00 4.38874 -150.527 -4.38874 4.38874 0.65 0.000762646 0.000707661 0.0585376 0.0543542 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.55 0.231405 0.201982 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.26 0.15 0.17 -1 -1 0.26 0.0420053 0.0365089 115 88 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 5.78 vpr 63.60 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.8 MiB 0.29 981 8047 1739 5489 819 63.6 MiB 0.08 0.00 4.28063 -149.977 -4.28063 4.28063 0.65 0.000937722 0.000870978 0.0347532 0.0323064 48 3128 28 6.99608e+06 397324 865456. 2994.66 2.79 0.201501 0.175275 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.26 0.13 0.14 -1 -1 0.26 0.0415076 0.0363231 100 3 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.43 vpr 63.39 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30464 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.6 MiB 0.90 884 14431 6074 7798 559 63.4 MiB 0.13 0.00 3.66815 -119.86 -3.66815 3.66815 0.66 0.000717058 0.000665876 0.0634399 0.0589523 40 3422 29 6.99608e+06 279598 706193. 2443.58 3.79 0.221143 0.194174 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0307884 0.0268797 101 59 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.70 vpr 62.72 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30788 -1 -1 16 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.2 MiB 1.20 589 11925 5033 6263 629 62.7 MiB 0.09 0.00 3.68305 -110.555 -3.68305 3.68305 0.65 0.000573815 0.00053397 0.0452249 0.0420847 40 1692 28 6.99608e+06 235451 706193. 2443.58 1.90 0.16348 0.142469 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0220367 0.0191993 67 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 21.38 vpr 63.75 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.3 MiB 0.79 1512 15151 5383 7381 2387 63.8 MiB 0.17 0.00 4.46404 -157.207 -4.46404 4.46404 0.68 0.000857296 0.000791129 0.0773741 0.0718183 50 4170 39 6.99608e+06 309029 902133. 3121.57 17.53 0.468734 0.405171 28642 213929 -1 3441 24 2733 3835 527406 117145 4.67941 4.67941 -171.114 -4.67941 0 0 1.08113e+06 3740.92 0.27 0.16 0.19 -1 -1 0.27 0.0429848 0.0374962 141 95 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.29 vpr 63.64 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.3 MiB 2.42 1389 9013 2681 4820 1512 63.6 MiB 0.10 0.00 4.97674 -167.764 -4.97674 4.97674 0.65 0.00084351 0.000783783 0.0438202 0.0407674 42 3808 25 6.99608e+06 323745 744469. 2576.02 2.07 0.211137 0.183442 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.24 0.11 0.15 -1 -1 0.24 0.0356478 0.0310588 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.95 vpr 63.40 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.5 MiB 2.73 1031 11233 4729 6294 210 63.4 MiB 0.10 0.00 3.87693 -140.03 -3.87693 3.87693 0.66 0.00068574 0.000636339 0.0478245 0.0443742 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.51 0.189226 0.164956 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.25 0.08 0.11 -1 -1 0.25 0.0285745 0.0249765 102 89 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 5.98 vpr 63.40 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30552 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 1034 14184 5996 7912 276 63.4 MiB 0.13 0.00 3.78975 -136.67 -3.78975 3.78975 0.66 0.000725795 0.000674673 0.0625258 0.0581264 46 3037 39 6.99608e+06 235451 828058. 2865.25 2.31 0.224124 0.196323 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0321731 0.0280828 92 34 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.12 vpr 63.77 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30764 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65296 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1068 13943 4857 7191 1895 63.8 MiB 0.14 0.00 3.9689 -135.877 -3.9689 3.9689 0.67 0.000860533 0.000800824 0.069505 0.0646898 38 3765 35 6.99608e+06 294314 678818. 2348.85 3.87 0.258977 0.226655 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0322494 0.0282265 117 64 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.72 vpr 63.44 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13788 5313 5928 2547 63.4 MiB 0.13 0.00 3.56069 -123.887 -3.56069 3.56069 0.65 0.000717011 0.000665902 0.0583453 0.0542059 36 3765 43 6.99608e+06 294314 648988. 2245.63 7.02 0.230394 0.201432 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.033625 0.0293349 101 61 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.50 vpr 63.42 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1034 13906 5203 6656 2047 63.4 MiB 0.14 0.00 4.17744 -150.809 -4.17744 4.17744 0.66 0.000786314 0.0007256 0.0648143 0.0602028 46 3490 34 6.99608e+06 250167 828058. 2865.25 4.21 0.234526 0.205601 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.24 0.05 0.12 -1 -1 0.24 0.0181963 0.0162639 107 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.01 vpr 63.53 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1295 11830 3708 6867 1255 63.5 MiB 0.12 0.00 3.61179 -138.351 -3.61179 3.61179 0.65 0.000769653 0.000714443 0.0543596 0.0505316 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.53 0.213095 0.186394 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0309392 0.0271109 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.81 vpr 62.73 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.0 MiB 1.15 714 7817 3113 4376 328 62.7 MiB 0.07 0.00 3.29694 -113.946 -3.29694 3.29694 0.66 0.000598654 0.000556858 0.0319076 0.0297032 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.04 0.161036 0.139612 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0250098 0.0217002 73 34 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.56 vpr 63.43 MiB 0.03 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.6 MiB 2.31 796 13192 4518 6301 2373 63.4 MiB 0.11 0.00 3.75163 -124.237 -3.75163 3.75163 0.65 0.000666075 0.000619021 0.0554427 0.0514582 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.59 0.203166 0.177259 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.30 0.08 0.18 -1 -1 0.30 0.0281309 0.0246089 91 82 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.17 vpr 63.34 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.62 1104 8164 1792 5984 388 63.3 MiB 0.08 0.00 3.79614 -138.31 -3.79614 3.79614 0.65 0.000725755 0.000674776 0.0370122 0.034463 38 3147 50 6.99608e+06 250167 678818. 2348.85 3.80 0.21437 0.186139 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0335204 0.0292714 92 34 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.65 vpr 62.91 MiB 0.02 6872 -1 -1 1 0.04 -1 -1 30492 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 1.50 924 11813 4851 6237 725 62.9 MiB 0.10 0.00 3.23604 -112.025 -3.23604 3.23604 0.66 0.000600794 0.000558074 0.0462667 0.0429945 38 2436 26 6.99608e+06 235451 678818. 2348.85 2.51 0.164964 0.143726 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277275 0.0240538 81 56 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.70 vpr 62.94 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.3 MiB 0.67 800 12628 5339 6973 316 62.9 MiB 0.11 0.00 3.56959 -131.903 -3.56959 3.56959 0.65 0.000654004 0.000600732 0.0533295 0.0496083 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.31 0.188722 0.165108 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0231807 0.0203723 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.11 vpr 63.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.6 MiB 1.09 964 11296 3574 5293 2429 63.5 MiB 0.11 0.00 4.06828 -143.162 -4.06828 4.06828 0.66 0.000746844 0.000693295 0.0502357 0.0466926 40 3214 32 6.99608e+06 279598 706193. 2443.58 3.31 0.210033 0.183403 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.28 0.11 0.13 -1 -1 0.28 0.0328082 0.0285998 105 64 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.68 vpr 63.12 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30324 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.6 MiB 2.18 694 11756 4613 5996 1147 63.1 MiB 0.10 0.00 3.23724 -109.795 -3.23724 3.23724 0.66 0.000634383 0.00058962 0.048792 0.0453597 48 2270 42 6.99608e+06 191304 865456. 2994.66 2.73 0.19567 0.170575 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0260284 0.0226637 81 55 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.84 vpr 63.39 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.5 MiB 1.41 911 15034 6476 7971 587 63.4 MiB 0.13 0.00 3.61105 -126.923 -3.61105 3.61105 0.65 0.000752094 0.000699111 0.0661581 0.061449 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.60 0.231913 0.203414 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.29 0.09 0.21 -1 -1 0.29 0.0311707 0.0272094 103 65 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 6.79 vpr 63.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30308 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1135 16081 6006 7648 2427 63.6 MiB 0.17 0.00 4.67827 -157.924 -4.67827 4.67827 0.68 0.000792008 0.000734923 0.0802752 0.0747246 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.07 0.263699 0.23117 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0302425 0.0265272 123 93 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 8.21 vpr 63.42 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.7 MiB 2.40 1185 10050 2506 6241 1303 63.4 MiB 0.09 0.00 3.59004 -135.268 -3.59004 3.59004 0.65 0.000665784 0.000618822 0.0419072 0.0389879 38 3007 50 6.99608e+06 220735 678818. 2348.85 3.16 0.201173 0.174813 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0279954 0.0244827 88 61 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.34 vpr 63.01 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30156 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.5 MiB 0.68 844 13856 5698 7170 988 63.0 MiB 0.15 0.00 3.30794 -123.058 -3.30794 3.30794 0.66 0.000673523 0.000625469 0.0698808 0.0647266 46 2571 29 6.99608e+06 206020 828058. 2865.25 2.87 0.215414 0.189179 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297454 0.025875 91 63 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 5.65 vpr 63.45 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.84 1239 11118 3579 5407 2132 63.4 MiB 0.11 0.00 3.81515 -143.501 -3.81515 3.81515 0.65 0.000811389 0.000755376 0.0518509 0.0482252 46 2851 29 6.99608e+06 264882 828058. 2865.25 2.08 0.210074 0.183342 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0341321 0.0297773 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.01 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.5 MiB 1.96 913 9160 3758 4976 426 63.4 MiB 0.09 0.00 3.41124 -117.262 -3.41124 3.41124 0.66 0.000713425 0.000661972 0.039312 0.0365267 38 3163 50 6.99608e+06 309029 678818. 2348.85 4.57 0.213015 0.184621 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0172219 0.0153018 101 62 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 16.91 vpr 63.69 MiB 0.04 7212 -1 -1 1 0.04 -1 -1 30628 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.71 1399 13316 4006 7788 1522 63.7 MiB 0.14 0.00 4.54237 -164.626 -4.54237 4.54237 0.65 0.000861596 0.000800968 0.0638529 0.0593525 38 4423 46 6.99608e+06 323745 678818. 2348.85 13.46 0.409142 0.352873 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.22 0.12 0.14 -1 -1 0.22 0.0391886 0.0340593 140 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.89 vpr 62.53 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30396 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.0 MiB 1.13 486 10149 3821 5138 1190 62.5 MiB 0.08 0.00 2.81885 -95.7056 -2.81885 2.81885 0.66 0.000579251 0.000538879 0.0396532 0.0368955 44 2052 46 6.99608e+06 161872 787024. 2723.27 2.23 0.174783 0.151736 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.02386 0.0207883 57 4 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.95 vpr 63.66 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 2.60 1299 14303 5218 6688 2397 63.7 MiB 0.14 0.00 4.76923 -166.635 -4.76923 4.76923 0.66 0.000780947 0.000724329 0.0661607 0.0614374 46 3535 24 6.99608e+06 279598 828058. 2865.25 2.54 0.222862 0.195402 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0316096 0.0277342 118 92 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.17 vpr 63.38 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1244 15216 5143 8703 1370 63.4 MiB 0.14 0.00 4.66407 -173.875 -4.66407 4.66407 0.65 0.00072261 0.000671356 0.0669381 0.0622027 44 3377 41 6.99608e+06 235451 787024. 2723.27 2.60 0.229549 0.201262 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.25 0.11 0.14 -1 -1 0.25 0.0321864 0.0280765 110 96 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.19 vpr 63.62 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30416 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1129 13403 5326 6238 1839 63.6 MiB 0.12 0.00 3.33684 -128.417 -3.33684 3.33684 0.89 0.000594434 0.000544882 0.047438 0.0435706 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.29 0.223512 0.194629 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.22 0.19 0.11 -1 -1 0.22 0.051104 0.0443431 106 65 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.70 vpr 63.66 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 30760 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.4 MiB 0.73 1500 14261 4373 7976 1912 63.7 MiB 0.15 0.00 4.89654 -177.942 -4.89654 4.89654 0.66 0.000916428 0.000851489 0.0727778 0.0675792 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.08 0.264564 0.231667 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0367643 0.0321517 140 96 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.02 vpr 62.66 MiB 0.02 6832 -1 -1 1 0.04 -1 -1 30324 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.1 MiB 1.99 577 8449 3482 4728 239 62.7 MiB 0.07 0.00 2.75275 -95.2487 -2.75275 2.75275 0.65 0.000622691 0.000578741 0.0303429 0.0281888 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.52 0.156173 0.134535 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0219706 0.0190439 65 56 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.51 vpr 62.91 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.1 MiB 2.96 870 9516 3877 5353 286 62.9 MiB 0.08 0.00 3.41559 -121.499 -3.41559 3.41559 0.70 0.000621678 0.000577698 0.0394262 0.0367199 34 2262 25 6.99608e+06 206020 618332. 2139.56 1.93 0.155262 0.135243 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0219026 0.0191797 72 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.28 vpr 62.87 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30104 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.2 MiB 0.23 764 10316 3722 4683 1911 62.9 MiB 0.10 0.00 3.37904 -128.379 -3.37904 3.37904 0.66 0.000656069 0.000609362 0.0452644 0.0420766 44 3301 35 6.99608e+06 176588 787024. 2723.27 3.28 0.189806 0.165692 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.25 0.10 0.21 -1 -1 0.25 0.029171 0.0254909 80 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.04 vpr 62.72 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.68 497 10819 4307 4933 1579 62.7 MiB 0.09 0.00 3.31386 -89.9377 -3.31386 3.31386 0.66 0.000647088 0.000603037 0.0407049 0.0379379 38 1712 31 6.99608e+06 264882 678818. 2348.85 1.86 0.154522 0.134353 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0239852 0.0208942 68 34 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 7.03 vpr 63.52 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30540 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.87 1423 14358 4574 7658 2126 63.5 MiB 0.14 0.00 3.77875 -143.667 -3.77875 3.77875 0.66 0.000812114 0.000754269 0.0663138 0.0615622 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.26 0.23514 0.205869 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.35 0.11 0.20 -1 -1 0.35 0.0291451 0.0258444 125 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 5.82 vpr 63.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30448 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1182 13663 4698 6384 2581 63.7 MiB 0.14 0.00 4.16978 -143.827 -4.16978 4.16978 0.66 0.000782365 0.000726129 0.0639972 0.0594537 46 3209 24 6.99608e+06 323745 828058. 2865.25 2.13 0.221252 0.193906 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.28 0.10 0.17 -1 -1 0.28 0.0337162 0.029429 121 94 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 7.82 vpr 62.77 MiB 0.05 6892 -1 -1 14 0.26 -1 -1 32872 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1265 9263 2276 5364 1623 62.8 MiB 0.10 0.00 8.4853 -170.751 -8.4853 8.4853 0.65 0.000918685 0.000842563 0.0518695 0.047945 44 3187 47 6.79088e+06 255968 787024. 2723.27 2.81 0.27075 0.235219 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.25 0.16 0.16 -1 -1 0.25 0.0486984 0.0424814 134 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 7.72 vpr 62.73 MiB 0.05 6788 -1 -1 14 0.28 -1 -1 32844 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1228 8270 2008 5297 965 62.7 MiB 0.09 0.00 7.98833 -161.421 -7.98833 7.98833 0.65 0.000900735 0.000835664 0.0455987 0.0423016 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.25 0.221943 0.193173 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0323699 0.0285516 132 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 9.54 vpr 62.64 MiB 0.05 6868 -1 -1 11 0.22 -1 -1 32724 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 1.62 1125 11613 3520 5862 2231 62.6 MiB 0.12 0.00 7.03202 -141.666 -7.03202 7.03202 0.66 0.00088626 0.000820018 0.060814 0.0562856 38 3591 44 6.79088e+06 269440 678818. 2348.85 4.94 0.275465 0.239832 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.28 0.08 0.14 -1 -1 0.28 0.0269666 0.0243256 138 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 12.22 vpr 62.88 MiB 0.05 6816 -1 -1 12 0.33 -1 -1 32728 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1021 7643 1879 4700 1064 62.9 MiB 0.08 0.00 7.24011 -138.658 -7.24011 7.24011 0.65 0.000902471 0.00083621 0.0419129 0.038825 38 2805 20 6.79088e+06 296384 678818. 2348.85 7.90 0.347136 0.299365 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0334068 0.0294597 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 26.54 vpr 63.18 MiB 0.02 6796 -1 -1 13 0.31 -1 -1 32900 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.6 MiB 2.01 1463 12568 3276 7023 2269 63.2 MiB 0.14 0.00 8.02445 -169.708 -8.02445 8.02445 0.65 0.00103692 0.000960661 0.0710613 0.0657986 40 3628 20 6.79088e+06 323328 706193. 2443.58 21.50 0.459173 0.397886 26254 175826 -1 3546 18 1747 4686 306027 66756 7.21431 7.21431 -166.609 -7.21431 0 0 926341. 3205.33 0.23 0.11 0.11 -1 -1 0.23 0.0397939 0.0351206 160 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 21.92 vpr 63.14 MiB 0.03 6672 -1 -1 12 0.30 -1 -1 32760 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.7 MiB 2.18 1344 4768 918 3685 165 63.1 MiB 0.06 0.00 7.61832 -163.245 -7.61832 7.61832 0.66 0.000956906 0.000885912 0.0273586 0.0254022 40 3616 33 6.79088e+06 323328 706193. 2443.58 16.69 0.435675 0.374235 26254 175826 -1 3273 18 1457 4340 288576 61849 6.72076 6.72076 -158.409 -6.72076 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.036881 0.0324977 150 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 8.28 vpr 62.25 MiB 0.04 6524 -1 -1 12 0.17 -1 -1 32312 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.6 MiB 1.46 1000 7177 1656 4753 768 62.2 MiB 0.08 0.00 7.28149 -137.47 -7.28149 7.28149 0.70 0.000785571 0.000725222 0.0379845 0.0353239 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.03 0.19796 0.172069 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0258128 0.0227753 101 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 7.06 vpr 62.97 MiB 0.03 6736 -1 -1 11 0.21 -1 -1 32708 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1129 9531 2421 6090 1020 63.0 MiB 0.10 0.00 6.82017 -140.384 -6.82017 6.82017 0.65 0.00085361 0.000782909 0.0498167 0.0459766 38 3033 23 6.79088e+06 242496 678818. 2348.85 3.11 0.22151 0.192635 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0299203 0.0264289 118 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 8.58 vpr 62.41 MiB 0.02 6596 -1 -1 12 0.17 -1 -1 32432 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 2.35 1115 11631 3187 7135 1309 62.4 MiB 0.11 0.00 6.73244 -139.285 -6.73244 6.73244 0.66 0.000750036 0.000694909 0.0537423 0.0497747 36 2986 40 6.79088e+06 242496 648988. 2245.63 3.60 0.228049 0.198627 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.21 0.07 0.09 -1 -1 0.21 0.0240555 0.0215892 111 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 13.93 vpr 62.48 MiB 0.04 6492 -1 -1 13 0.19 -1 -1 32756 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.0 MiB 1.39 1011 5412 1090 4064 258 62.5 MiB 0.06 0.00 7.30367 -163.797 -7.30367 7.30367 0.68 0.000818333 0.000758248 0.0291177 0.0270238 34 3575 46 6.79088e+06 215552 618332. 2139.56 9.66 0.326418 0.280578 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.29 0.08 0.16 -1 -1 0.29 0.0283984 0.0255369 107 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 5.79 vpr 62.36 MiB 0.04 6696 -1 -1 12 0.20 -1 -1 32580 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.7 MiB 1.28 838 6386 1352 4871 163 62.4 MiB 0.06 0.00 7.31171 -145.298 -7.31171 7.31171 0.65 0.000704057 0.000652366 0.0298531 0.027698 38 2306 22 6.79088e+06 215552 678818. 2348.85 1.81 0.167761 0.145296 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0228644 0.02028 93 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 14.78 vpr 62.56 MiB 0.04 6576 -1 -1 12 0.13 -1 -1 32640 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1055 4560 1014 3240 306 62.6 MiB 0.05 0.00 6.46989 -155.558 -6.46989 6.46989 0.65 0.000711279 0.000658672 0.0224351 0.0207874 40 2500 20 6.79088e+06 188608 706193. 2443.58 10.22 0.304683 0.261469 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273718 0.0240864 94 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 10.79 vpr 63.09 MiB 0.05 6788 -1 -1 13 0.26 -1 -1 32844 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.35 1239 11431 3102 6258 2071 63.1 MiB 0.12 0.00 7.91359 -165.523 -7.91359 7.91359 0.65 0.000982646 0.000909573 0.0643446 0.0595706 36 3864 39 6.79088e+06 282912 648988. 2245.63 6.50 0.292082 0.254274 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0406202 0.0356797 148 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 7.19 vpr 63.16 MiB 0.02 6712 -1 -1 14 0.32 -1 -1 33096 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1366 11245 3016 6173 2056 63.2 MiB 0.12 0.00 9.12295 -182.881 -9.12295 9.12295 0.66 0.000987436 0.000913718 0.0634744 0.0587717 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.41 0.264704 0.230631 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0503228 0.0439428 149 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 12.93 vpr 62.42 MiB 0.05 6592 -1 -1 11 0.18 -1 -1 32400 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.0 MiB 1.36 857 12681 3929 6469 2283 62.4 MiB 0.11 0.00 6.92892 -133.02 -6.92892 6.92892 0.65 0.000754333 0.000698506 0.0580178 0.0537936 40 2281 19 6.79088e+06 269440 706193. 2443.58 8.81 0.35973 0.31113 26254 175826 -1 2219 18 1178 2818 179355 42380 6.07609 6.07609 -130.204 -6.07609 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0265573 0.0234187 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 9.35 vpr 63.44 MiB 0.04 6792 -1 -1 12 0.27 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1420 13992 4103 7703 2186 63.4 MiB 0.16 0.00 7.6046 -160.271 -7.6046 7.6046 0.68 0.000996273 0.000922694 0.0805561 0.0744952 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.87 0.306314 0.267628 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0400629 0.0352882 146 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 8.49 vpr 63.16 MiB 0.02 6812 -1 -1 13 0.27 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1236 10687 3174 5565 1948 63.2 MiB 0.12 0.00 8.28661 -168.45 -8.28661 8.28661 0.65 0.000994362 0.000915789 0.0612016 0.0566778 38 3417 39 6.79088e+06 282912 678818. 2348.85 4.07 0.294005 0.255666 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0386639 0.0340435 144 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 6.71 vpr 62.29 MiB 0.02 6568 -1 -1 12 0.17 -1 -1 32444 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.6 MiB 1.87 945 7992 1779 4650 1563 62.3 MiB 0.08 0.00 6.70943 -154.61 -6.70943 6.70943 0.67 0.000749537 0.000691153 0.0379579 0.0351627 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.06 0.196131 0.170264 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.21 0.06 0.15 -1 -1 0.21 0.0246236 0.0218536 104 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 6.98 vpr 61.93 MiB 0.02 6508 -1 -1 10 0.12 -1 -1 32304 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.3 MiB 2.40 878 7049 1926 4350 773 61.9 MiB 0.06 0.00 5.18321 -124.627 -5.18321 5.18321 0.66 0.000572093 0.000531662 0.0294834 0.0273781 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.03 0.162851 0.140726 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0190775 0.0167779 67 88 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 6.75 vpr 62.41 MiB 0.04 6632 -1 -1 13 0.21 -1 -1 32700 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 23.8 MiB 1.81 974 6332 1469 4570 293 62.4 MiB 0.07 0.00 7.59608 -163.359 -7.59608 7.59608 0.67 0.000746479 0.000692004 0.0314776 0.0291664 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.04 0.180037 0.156505 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0249529 0.0220905 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 7.45 vpr 62.77 MiB 0.02 6672 -1 -1 13 0.28 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1254 12371 3408 7445 1518 62.8 MiB 0.15 0.00 7.46133 -157.73 -7.46133 7.46133 0.72 0.000960148 0.000888014 0.076876 0.0710101 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.12 0.306199 0.267499 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0388915 0.0342658 143 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 7.67 vpr 63.13 MiB 0.02 6792 -1 -1 13 0.30 -1 -1 33132 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.7 MiB 1.84 1425 10883 2960 6054 1869 63.1 MiB 0.12 0.00 8.13867 -171.504 -8.13867 8.13867 0.65 0.000956134 0.000885132 0.0618236 0.0572714 40 3438 18 6.79088e+06 255968 706193. 2443.58 2.77 0.261008 0.227515 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0510905 0.0445997 141 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 4.94 vpr 61.77 MiB 0.03 6404 -1 -1 9 0.10 -1 -1 32124 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.2 MiB 1.54 588 10149 2859 5591 1699 61.8 MiB 0.07 0.00 4.97273 -93.6629 -4.97273 4.97273 0.66 0.000499776 0.000464726 0.034537 0.0321232 30 1736 26 6.79088e+06 215552 556674. 1926.21 0.85 0.0980044 0.0860494 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.18 0.04 0.12 -1 -1 0.18 0.0176496 0.0154682 64 73 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 8.64 vpr 63.10 MiB 0.02 6696 -1 -1 13 0.34 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.4 MiB 2.17 1289 7268 1575 5261 432 63.1 MiB 0.09 0.00 8.3813 -168.316 -8.3813 8.3813 0.65 0.000974086 0.000903302 0.0414575 0.0384207 38 3745 37 6.79088e+06 296384 678818. 2348.85 3.49 0.257695 0.22336 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0426348 0.0373043 137 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 5.69 vpr 61.86 MiB 0.03 6352 -1 -1 8 0.10 -1 -1 30992 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.3 MiB 2.32 737 11631 4246 5219 2166 61.9 MiB 0.08 0.00 4.77835 -104.906 -4.77835 4.77835 0.65 0.000514294 0.000477895 0.0373539 0.0347392 30 1930 29 6.79088e+06 229024 556674. 1926.21 0.97 0.104463 0.0919141 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.18 0.03 0.08 -1 -1 0.18 0.0110387 0.00987682 64 61 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 6.92 vpr 62.70 MiB 0.04 6832 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.82 1155 10581 3115 6097 1369 62.7 MiB 0.11 0.00 8.86251 -178.17 -8.86251 8.86251 0.69 0.000849706 0.000788254 0.0572703 0.0531995 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.06 0.230695 0.201731 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0285159 0.0252333 118 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 9.74 vpr 63.09 MiB 0.02 6772 -1 -1 12 0.25 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1241 4433 817 3477 139 63.1 MiB 0.06 0.00 7.21583 -155.808 -7.21583 7.21583 0.70 0.000977367 0.000903724 0.0277414 0.025713 36 4047 49 6.79088e+06 296384 648988. 2245.63 5.46 0.266888 0.231106 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.20 0.09 0.09 -1 -1 0.20 0.027633 0.0245762 145 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 7.53 vpr 62.81 MiB 0.02 6708 -1 -1 13 0.28 -1 -1 32684 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.33 1284 4659 748 3690 221 62.8 MiB 0.06 0.00 8.13835 -165.274 -8.13835 8.13835 0.65 0.000914223 0.000845613 0.0282342 0.0261828 38 3292 49 6.79088e+06 269440 678818. 2348.85 3.31 0.258067 0.222906 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0353296 0.0310848 136 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 6.36 vpr 62.48 MiB 0.05 6576 -1 -1 12 0.19 -1 -1 32288 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1045 5303 1002 3952 349 62.5 MiB 0.06 0.00 6.60115 -147.873 -6.60115 6.60115 0.65 0.000766293 0.000709242 0.0256175 0.023697 38 2622 19 6.79088e+06 255968 678818. 2348.85 1.76 0.175372 0.151829 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.21 0.04 0.09 -1 -1 0.21 0.0148605 0.0135481 106 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 7.28 vpr 62.15 MiB 0.02 6520 -1 -1 11 0.15 -1 -1 32716 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.5 MiB 1.87 954 11652 3379 7115 1158 62.1 MiB 0.10 0.00 6.23714 -130.615 -6.23714 6.23714 0.67 0.000692035 0.00064107 0.0481296 0.0446396 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.69 0.194208 0.169217 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0258718 0.0228321 97 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 7.40 vpr 62.30 MiB 0.02 6604 -1 -1 11 0.15 -1 -1 32412 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 23.9 MiB 1.17 1013 7346 1810 4929 607 62.3 MiB 0.07 0.00 6.76313 -133.919 -6.76313 6.76313 0.65 0.000727466 0.000674401 0.0346294 0.0321114 36 2839 26 6.79088e+06 255968 648988. 2245.63 3.52 0.188786 0.164067 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268238 0.0236634 107 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 7.50 vpr 62.93 MiB 0.04 6652 -1 -1 12 0.19 -1 -1 32424 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1274 9443 2812 5690 941 62.9 MiB 0.10 0.00 6.88424 -161.28 -6.88424 6.88424 0.65 0.000859532 0.000796501 0.0497391 0.0460911 38 3239 49 6.79088e+06 255968 678818. 2348.85 2.74 0.260935 0.226094 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.034222 0.0300518 119 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 7.39 vpr 62.39 MiB 0.03 6508 -1 -1 11 0.17 -1 -1 32520 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 23.9 MiB 1.49 908 10056 3226 4794 2036 62.4 MiB 0.10 0.00 6.39517 -140.882 -6.39517 6.39517 0.66 0.000772882 0.000715927 0.0483496 0.0448044 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.11 0.220481 0.192112 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.028406 0.025032 107 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 5.91 vpr 62.52 MiB 0.04 6676 -1 -1 10 0.17 -1 -1 32640 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.9 MiB 1.38 870 8022 2297 4713 1012 62.5 MiB 0.08 0.00 6.19022 -129.37 -6.19022 6.19022 0.69 0.00072027 0.000666601 0.0365349 0.0337065 34 2314 24 6.79088e+06 242496 618332. 2139.56 1.86 0.190137 0.165164 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0286698 0.0251962 103 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 9.82 vpr 63.10 MiB 0.02 6808 -1 -1 13 0.32 -1 -1 33424 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1352 10103 2504 6636 963 63.1 MiB 0.12 0.00 7.85531 -169.709 -7.85531 7.85531 0.66 0.00106153 0.000980609 0.0609609 0.0563514 38 3914 48 6.79088e+06 296384 678818. 2348.85 5.45 0.320641 0.278858 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.21 0.06 0.09 -1 -1 0.21 0.0252382 0.0227633 162 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 12.02 vpr 63.28 MiB 0.05 6816 -1 -1 13 0.32 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 1.67 1274 13849 4315 6877 2657 63.3 MiB 0.15 0.00 7.85526 -169.716 -7.85526 7.85526 0.65 0.000983715 0.000910464 0.0767195 0.070801 36 4447 42 6.79088e+06 282912 648988. 2245.63 7.33 0.315242 0.275346 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0427464 0.0374926 152 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 10.24 vpr 62.39 MiB 0.05 6552 -1 -1 12 0.15 -1 -1 32844 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.7 MiB 1.25 851 11631 4796 6628 207 62.4 MiB 0.11 0.00 7.11438 -152.359 -7.11438 7.11438 0.65 0.00074102 0.000685826 0.0524204 0.0485176 36 2928 40 6.79088e+06 242496 648988. 2245.63 6.20 0.231086 0.201834 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.20 0.07 0.09 -1 -1 0.20 0.0267652 0.0236954 102 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 6.63 vpr 63.24 MiB 0.02 6700 -1 -1 12 0.26 -1 -1 33056 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.5 MiB 1.18 1154 12749 3915 6368 2466 63.2 MiB 0.14 0.00 7.84323 -159.621 -7.84323 7.84323 0.59 0.000978239 0.000905998 0.0705089 0.0652143 40 3413 28 6.79088e+06 309856 706193. 2443.58 2.57 0.275407 0.240257 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.22 0.12 0.12 -1 -1 0.22 0.0450531 0.039395 148 219 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 14.38 vpr 62.95 MiB 0.05 6764 -1 -1 14 0.35 -1 -1 33104 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1375 11247 2864 6672 1711 63.0 MiB 0.12 0.00 8.18012 -172.817 -8.18012 8.18012 0.65 0.000955624 0.000885556 0.0625237 0.0579839 36 4160 47 6.79088e+06 282912 648988. 2245.63 10.10 0.408809 0.353661 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0394323 0.0346858 146 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 7.29 vpr 62.67 MiB 0.04 6880 -1 -1 13 0.26 -1 -1 32808 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 2.17 1310 10149 2655 5632 1862 62.7 MiB 0.11 0.00 7.78561 -164.423 -7.78561 7.78561 0.66 0.000879432 0.000814639 0.0527774 0.0489338 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.17 0.241611 0.21026 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0344146 0.0302114 126 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 19.05 vpr 62.61 MiB 0.02 6692 -1 -1 12 0.24 -1 -1 32904 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1267 10859 2857 6722 1280 62.6 MiB 0.12 0.00 7.65156 -158.395 -7.65156 7.65156 0.66 0.00108257 0.000995625 0.0592775 0.0548986 40 3210 25 6.79088e+06 309856 706193. 2443.58 15.11 0.423023 0.36614 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.27 0.09 0.15 -1 -1 0.27 0.0351359 0.0311736 135 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 8.22 vpr 62.56 MiB 0.04 6732 -1 -1 12 0.20 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.12 1093 11106 3659 5731 1716 62.6 MiB 0.11 0.00 7.11863 -144.901 -7.11863 7.11863 0.60 0.00083187 0.000770231 0.0562454 0.0521067 36 3341 42 6.79088e+06 229024 648988. 2245.63 4.34 0.251322 0.218438 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.033241 0.0291358 113 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 8.80 vpr 63.43 MiB 0.04 7024 -1 -1 14 0.47 -1 -1 32520 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.5 MiB 1.32 1406 13355 3498 8147 1710 63.4 MiB 0.16 0.00 8.18038 -175.8 -8.18038 8.18038 0.65 0.00108322 0.00100082 0.0825634 0.0763236 38 4021 47 6.79088e+06 336800 678818. 2348.85 4.21 0.348322 0.304694 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.27 0.10 0.14 -1 -1 0.27 0.0389529 0.0345345 169 245 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.93 vpr 62.46 MiB 0.02 6524 -1 -1 11 0.22 -1 -1 32520 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1088 9006 2212 5478 1316 62.5 MiB 0.09 0.00 6.58747 -141.672 -6.58747 6.58747 0.65 0.000814582 0.000754596 0.045453 0.042099 36 3313 23 6.79088e+06 242496 648988. 2245.63 4.53 0.215458 0.187331 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0309182 0.0271323 113 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 8.19 vpr 62.80 MiB 0.05 6744 -1 -1 13 0.29 -1 -1 32752 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1133 5422 1123 3954 345 62.8 MiB 0.07 0.00 7.76692 -152.212 -7.76692 7.76692 0.67 0.000891563 0.000825724 0.0307146 0.0285062 36 3213 29 6.79088e+06 255968 648988. 2245.63 3.63 0.219689 0.190027 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0330407 0.0291576 132 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 10.08 vpr 63.16 MiB 0.03 6636 -1 -1 12 0.25 -1 -1 32992 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1437 6967 1505 4666 796 63.2 MiB 0.09 0.00 7.30746 -159.645 -7.30746 7.30746 0.65 0.00100091 0.000925063 0.0416451 0.038539 38 3828 35 6.79088e+06 282912 678818. 2348.85 5.73 0.278546 0.241791 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.22 0.11 0.14 -1 -1 0.22 0.041517 0.0364808 153 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 9.12 vpr 62.73 MiB 0.05 6748 -1 -1 13 0.26 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.1 MiB 1.29 1157 7823 1835 4914 1074 62.7 MiB 0.11 0.00 7.47708 -158.746 -7.47708 7.47708 0.66 0.00089482 0.00082905 0.0528113 0.0489852 36 3541 41 6.79088e+06 255968 648988. 2245.63 4.85 0.274706 0.239579 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0317307 0.0280545 131 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 8.07 vpr 62.98 MiB 0.03 6876 -1 -1 13 0.21 -1 -1 32748 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1097 11106 3753 5771 1582 63.0 MiB 0.13 0.00 7.69072 -162.222 -7.69072 7.69072 0.67 0.000987304 0.000922097 0.0615489 0.0569984 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.12 0.257682 0.224207 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0426018 0.0372754 118 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 9.78 vpr 62.99 MiB 0.03 6720 -1 -1 12 0.25 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1359 8151 1869 5680 602 63.0 MiB 0.09 0.00 7.62073 -165.231 -7.62073 7.62073 0.66 0.00097055 0.000897938 0.0463755 0.0430064 36 3806 40 6.79088e+06 309856 648988. 2245.63 4.93 0.272105 0.235851 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0388009 0.0341413 150 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 19.87 vpr 62.84 MiB 0.04 6828 -1 -1 13 0.32 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.4 MiB 1.97 1315 9051 2036 5908 1107 62.8 MiB 0.10 0.00 7.55776 -165.084 -7.55776 7.55776 0.68 0.000960503 0.000887814 0.0515224 0.0476589 40 3325 24 6.79088e+06 269440 706193. 2443.58 14.80 0.442727 0.381893 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0514664 0.0449435 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 17.77 vpr 62.54 MiB 0.02 6748 -1 -1 14 0.27 -1 -1 32900 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.01 1139 8270 1889 5806 575 62.5 MiB 0.09 0.00 8.36252 -172.285 -8.36252 8.36252 0.67 0.000861859 0.000799242 0.0446075 0.0414042 40 2999 22 6.79088e+06 242496 706193. 2443.58 12.81 0.402548 0.346931 26254 175826 -1 2868 16 1271 3527 223782 49875 7.46496 7.46496 -168.675 -7.46496 0 0 926341. 3205.33 0.25 0.08 0.16 -1 -1 0.25 0.0303815 0.0268631 123 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 8.82 vpr 62.96 MiB 0.02 6852 -1 -1 13 0.31 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.1 MiB 3.04 1159 8868 1881 6136 851 63.0 MiB 0.10 0.00 8.02321 -165.348 -8.02321 8.02321 0.66 0.000937212 0.00086874 0.0490727 0.0455 36 3689 32 6.79088e+06 269440 648988. 2245.63 2.78 0.222677 0.19443 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.21 0.11 0.13 -1 -1 0.21 0.040276 0.0354975 134 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 6.88 vpr 63.26 MiB 0.02 6808 -1 -1 13 0.28 -1 -1 33108 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1323 8591 2185 5991 415 63.3 MiB 0.10 0.00 8.19403 -174.315 -8.19403 8.19403 0.65 0.000996346 0.000922088 0.0495303 0.0458475 40 3394 20 6.79088e+06 309856 706193. 2443.58 2.69 0.247883 0.21549 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.049066 0.0430426 154 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 7.20 vpr 63.45 MiB 0.02 6736 -1 -1 12 0.33 -1 -1 32756 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.7 MiB 1.39 1325 11983 3288 6841 1854 63.4 MiB 0.13 0.00 7.62163 -166.383 -7.62163 7.62163 0.65 0.00102033 0.000944733 0.067737 0.0625685 44 3682 36 6.79088e+06 323328 787024. 2723.27 2.71 0.296889 0.25863 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.26 0.12 0.16 -1 -1 0.26 0.0452158 0.0401748 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 11.54 vpr 62.26 MiB 0.04 6576 -1 -1 11 0.13 -1 -1 32380 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.7 MiB 1.39 956 7249 1855 4884 510 62.3 MiB 0.07 0.00 6.10061 -138.097 -6.10061 6.10061 0.65 0.000681386 0.000630026 0.0339751 0.031483 40 2274 24 6.79088e+06 175136 706193. 2443.58 7.43 0.304264 0.262135 26254 175826 -1 2061 14 902 2231 149609 32911 5.5245 5.5245 -134.444 -5.5245 0 0 926341. 3205.33 0.23 0.06 0.11 -1 -1 0.23 0.0225574 0.0199568 90 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 7.92 vpr 62.59 MiB 0.04 6644 -1 -1 13 0.18 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.47 1073 11631 3861 5991 1779 62.6 MiB 0.12 0.00 7.81611 -170.556 -7.81611 7.81611 0.66 0.00091697 0.000857745 0.0593602 0.0550011 38 2825 21 6.79088e+06 229024 678818. 2348.85 2.57 0.231004 0.202037 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294951 0.0260914 113 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 8.79 vpr 63.41 MiB 0.03 6960 -1 -1 14 0.40 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1399 15493 4561 8338 2594 63.4 MiB 0.18 0.00 8.67312 -179.019 -8.67312 8.67312 0.67 0.00113674 0.00104557 0.0949061 0.0876823 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.23 0.369944 0.323016 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.25 0.32 0.17 -1 -1 0.25 0.0814709 0.0708164 180 267 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.91 vpr 63.25 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.4 MiB 2.23 1244 13849 3731 7364 2754 63.3 MiB 0.15 0.00 8.43396 -178.911 -8.43396 8.43396 0.65 0.00102789 0.000950214 0.0808519 0.0747894 38 3697 23 6.79088e+06 282912 678818. 2348.85 3.59 0.299817 0.262257 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0370009 0.0327971 154 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 4.90 vpr 62.41 MiB 0.02 6568 -1 -1 11 0.16 -1 -1 32620 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.66 899 5994 1459 3795 740 62.4 MiB 0.06 0.00 6.69493 -140.456 -6.69493 6.69493 0.65 0.000723002 0.000669835 0.0286268 0.026468 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.65 0.147432 0.128286 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.18 0.06 0.08 -1 -1 0.18 0.0267135 0.0235382 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 7.87 vpr 63.60 MiB 0.04 6960 -1 -1 15 0.44 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1572 8083 1890 5078 1115 63.6 MiB 0.11 0.00 9.61575 -193.644 -9.61575 9.61575 0.71 0.00109983 0.00100924 0.0525623 0.0485348 44 4110 31 6.79088e+06 323328 787024. 2723.27 3.29 0.305529 0.265312 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0402975 0.0356574 172 241 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 7.11 vpr 62.98 MiB 0.02 6664 -1 -1 13 0.37 -1 -1 33028 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.5 MiB 1.07 1447 9914 2954 6315 645 63.0 MiB 0.11 0.00 8.38843 -181.197 -8.38843 8.38843 0.65 0.000988445 0.000915501 0.055689 0.0516018 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.03 0.248495 0.21691 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0389201 0.034419 149 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 5.61 vpr 62.23 MiB 0.02 6540 -1 -1 11 0.13 -1 -1 32636 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.6 MiB 1.52 1043 11604 3704 5973 1927 62.2 MiB 0.10 0.00 6.83225 -151.19 -6.83225 6.83225 0.65 0.000729788 0.000675276 0.0520692 0.0481738 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.49 0.1639 0.144063 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0280305 0.0246262 97 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 7.03 vpr 63.10 MiB 0.03 6888 -1 -1 12 0.29 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1321 11989 3057 7272 1660 63.1 MiB 0.13 0.00 7.80487 -167.158 -7.80487 7.80487 0.66 0.000984237 0.000904521 0.0670253 0.0617948 40 3150 27 6.79088e+06 282912 706193. 2443.58 2.48 0.270904 0.236111 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0370457 0.0326176 152 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 8.81 vpr 62.44 MiB 0.04 6596 -1 -1 12 0.19 -1 -1 32384 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 23.9 MiB 1.83 1076 11776 3996 5804 1976 62.4 MiB 0.12 0.00 7.20737 -155.525 -7.20737 7.20737 0.65 0.000847847 0.000784424 0.0606436 0.056238 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.16 0.236441 0.206429 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.036946 0.0323494 115 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 5.05 vpr 62.62 MiB 0.02 6592 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 24.0 MiB 1.35 861 12331 3461 6927 1943 62.6 MiB 0.11 0.00 7.68992 -150.206 -7.68992 7.68992 0.65 0.000749869 0.000694947 0.0553767 0.0512959 30 2423 23 6.79088e+06 255968 556674. 1926.21 0.99 0.146864 0.129806 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0241836 0.0214652 105 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 8.24 vpr 62.67 MiB 0.02 6800 -1 -1 12 0.28 -1 -1 32860 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1109 13105 4321 6403 2381 62.7 MiB 0.13 0.00 7.73882 -148.46 -7.73882 7.73882 0.65 0.000958017 0.000879371 0.0710996 0.0657443 36 3249 25 6.79088e+06 323328 648988. 2245.63 3.98 0.272708 0.238035 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0353883 0.0312504 144 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 7.79 vpr 63.12 MiB 0.04 6672 -1 -1 14 0.31 -1 -1 33036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.3 MiB 2.29 1442 8024 2021 5399 604 63.1 MiB 0.10 0.00 8.63126 -174.325 -8.63126 8.63126 0.73 0.00101852 0.000942938 0.0476384 0.0440779 46 3512 20 6.79088e+06 296384 828058. 2865.25 2.34 0.254685 0.221315 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0376891 0.0333169 155 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 7.92 vpr 62.86 MiB 0.02 6780 -1 -1 12 0.23 -1 -1 32784 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.37 1323 12503 3954 6429 2120 62.9 MiB 0.13 0.00 7.68002 -164.527 -7.68002 7.68002 0.65 0.00110627 0.00102459 0.069317 0.06415 38 3480 45 6.79088e+06 255968 678818. 2348.85 3.62 0.294539 0.257186 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.22 0.15 0.14 -1 -1 0.22 0.0478282 0.0417141 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 7.00 vpr 62.36 MiB 0.04 6684 -1 -1 12 0.15 -1 -1 32728 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.7 MiB 1.27 883 6839 1546 5160 133 62.4 MiB 0.07 0.00 7.22527 -147.319 -7.22527 7.22527 0.66 0.000723939 0.000661849 0.0331961 0.0306145 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.02 0.201823 0.174464 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.21 0.13 0.11 -1 -1 0.21 0.0363901 0.0317303 95 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 6.80 vpr 62.55 MiB 0.02 6724 -1 -1 12 0.21 -1 -1 32348 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1016 11806 3829 5905 2072 62.6 MiB 0.12 0.00 7.21239 -153.602 -7.21239 7.21239 0.66 0.00084792 0.000786403 0.0614919 0.0570062 46 2377 20 6.79088e+06 242496 828058. 2865.25 2.04 0.225771 0.197152 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0313243 0.0276727 114 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 18.43 vpr 62.73 MiB 0.02 6668 -1 -1 11 0.23 -1 -1 32756 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 2.61 1192 7587 1799 4901 887 62.7 MiB 0.08 0.00 6.65573 -139.172 -6.65573 6.65573 0.65 0.000899057 0.000833398 0.0399498 0.0369907 38 3199 19 6.79088e+06 296384 678818. 2348.85 12.99 0.347974 0.299089 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0326184 0.0287622 129 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 20.83 vpr 62.67 MiB 0.02 6764 -1 -1 11 0.20 -1 -1 32636 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.49 990 12156 4943 6412 801 62.7 MiB 0.12 0.00 6.59863 -125.892 -6.59863 6.59863 0.66 0.000846774 0.000784253 0.0614511 0.0568988 40 3108 38 6.79088e+06 282912 706193. 2443.58 16.43 0.434536 0.374581 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0383975 0.0334717 125 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 7.72 vpr 62.36 MiB 0.05 6736 -1 -1 13 0.18 -1 -1 32636 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.7 MiB 2.81 1023 6220 1452 4481 287 62.4 MiB 0.06 0.00 7.37394 -146.255 -7.37394 7.37394 0.65 0.000719139 0.000666296 0.0298326 0.0276704 36 2646 31 6.79088e+06 215552 648988. 2245.63 2.16 0.185248 0.160569 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0242371 0.0215957 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 7.87 vpr 62.65 MiB 0.02 6604 -1 -1 12 0.21 -1 -1 32604 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.1 MiB 2.15 1239 4476 858 3235 383 62.6 MiB 0.06 0.00 7.13568 -159.479 -7.13568 7.13568 0.66 0.000876021 0.000808667 0.0260865 0.0241892 36 3048 33 6.79088e+06 269440 648988. 2245.63 2.91 0.220181 0.18966 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.21 0.08 0.15 -1 -1 0.21 0.0312789 0.0276188 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 6.60 vpr 62.77 MiB 0.03 6804 -1 -1 13 0.29 -1 -1 32964 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1176 7283 1697 4959 627 62.8 MiB 0.08 0.00 7.98183 -162.706 -7.98183 7.98183 0.64 0.000921218 0.000853488 0.0412566 0.0382389 38 2773 17 6.79088e+06 269440 678818. 2348.85 1.94 0.216817 0.188067 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0370006 0.0326052 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 8.00 vpr 63.31 MiB 0.05 6656 -1 -1 14 0.30 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.6 MiB 1.51 1408 9013 2325 5592 1096 63.3 MiB 0.10 0.00 8.8032 -181.521 -8.8032 8.8032 0.66 0.000996657 0.000922751 0.0522658 0.0483439 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.45 0.274069 0.238578 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.23 0.09 0.15 -1 -1 0.23 0.0355089 0.0314035 149 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 19.85 vpr 62.75 MiB 0.04 6784 -1 -1 14 0.26 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.3 MiB 2.21 1168 12528 4001 6466 2061 62.8 MiB 0.13 0.00 8.11366 -160.164 -8.11366 8.11366 0.65 0.000907343 0.000839678 0.0676538 0.0626655 38 3448 46 6.79088e+06 269440 678818. 2348.85 14.65 0.419273 0.362094 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.037957 0.0333438 136 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 7.91 vpr 62.77 MiB 0.05 6668 -1 -1 13 0.34 -1 -1 33396 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 1.95 1266 7823 1896 4973 954 62.8 MiB 0.09 0.00 7.98865 -167.696 -7.98865 7.98865 0.66 0.000946398 0.000874796 0.0462085 0.04274 44 3303 29 6.79088e+06 255968 787024. 2723.27 2.77 0.254475 0.221032 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0351314 0.0310337 139 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 6.66 vpr 62.51 MiB 0.04 6524 -1 -1 13 0.20 -1 -1 32784 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 23.8 MiB 1.49 955 5888 1275 4387 226 62.5 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.66 0.000752619 0.000692434 0.0294945 0.0273368 40 2382 30 6.79088e+06 215552 706193. 2443.58 2.34 0.186868 0.162107 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0270252 0.0239526 106 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 9.18 vpr 62.84 MiB 0.04 6868 -1 -1 13 0.43 -1 -1 32928 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.3 MiB 1.41 1281 12175 3045 7735 1395 62.8 MiB 0.13 0.00 8.2401 -167.978 -8.2401 8.2401 0.65 0.000986682 0.000915319 0.0685038 0.0634771 36 3566 29 6.79088e+06 309856 648988. 2245.63 4.61 0.281897 0.246267 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.21 0.14 0.14 -1 -1 0.21 0.045127 0.0395111 144 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 6.73 vpr 62.69 MiB 0.04 6868 -1 -1 14 0.28 -1 -1 31400 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1252 6306 1410 4478 418 62.7 MiB 0.08 0.00 8.1933 -176.786 -8.1933 8.1933 0.66 0.000890066 0.000821668 0.034845 0.0322939 46 3049 24 6.79088e+06 269440 828058. 2865.25 2.09 0.217121 0.187978 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0359006 0.0316988 133 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 7.41 vpr 63.03 MiB 0.03 6708 -1 -1 12 0.25 -1 -1 32928 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1214 6855 1626 4139 1090 63.0 MiB 0.08 0.00 7.87232 -159.238 -7.87232 7.87232 0.65 0.000946808 0.000878238 0.0392083 0.0363668 38 3142 49 6.79088e+06 282912 678818. 2348.85 2.88 0.265233 0.229415 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0344545 0.0304355 143 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 8.60 vpr 62.79 MiB 0.05 6784 -1 -1 13 0.21 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1166 13583 4513 7114 1956 62.8 MiB 0.13 0.00 8.05477 -151.514 -8.05477 8.05477 0.65 0.00087284 0.000807684 0.0694914 0.0643185 38 3283 21 6.79088e+06 282912 678818. 2348.85 3.83 0.246843 0.215918 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.23 0.08 0.17 -1 -1 0.23 0.0320303 0.028247 126 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 8.81 vpr 63.29 MiB 0.02 6688 -1 -1 14 0.39 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.8 MiB 1.45 1356 6595 1328 4700 567 63.3 MiB 0.08 0.00 8.2637 -174.994 -8.2637 8.2637 0.65 0.00101205 0.000937719 0.0401248 0.0372516 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.22 0.264622 0.229885 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.31 0.11 0.16 -1 -1 0.31 0.0400624 0.0357349 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 6.73 vpr 62.71 MiB 0.02 6824 -1 -1 11 0.33 -1 -1 32816 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1061 13403 4351 6899 2153 62.7 MiB 0.13 0.00 6.99502 -136.053 -6.99502 6.99502 0.65 0.000873357 0.000809848 0.0685248 0.0635579 30 3783 49 6.79088e+06 296384 556674. 1926.21 2.48 0.212668 0.186631 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.19 0.12 0.12 -1 -1 0.19 0.0421213 0.0367616 130 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 8.92 vpr 62.56 MiB 0.02 6580 -1 -1 13 0.17 -1 -1 32800 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 23.9 MiB 2.89 995 4062 701 3272 89 62.6 MiB 0.05 0.00 6.9771 -161.617 -6.9771 6.9771 0.62 0.000736398 0.000682564 0.022381 0.0208204 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.37 0.188296 0.162748 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0266293 0.0234957 99 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 8.43 vpr 62.93 MiB 0.02 6884 -1 -1 14 0.23 -1 -1 32804 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1302 5483 1117 4002 364 62.9 MiB 0.07 0.00 8.68565 -176.783 -8.68565 8.68565 0.65 0.000869959 0.000804854 0.0308036 0.0286151 36 3263 26 6.79088e+06 255968 648988. 2245.63 3.92 0.215526 0.186682 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.21 0.08 0.09 -1 -1 0.21 0.0313365 0.027698 129 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 7.29 vpr 63.37 MiB 0.05 6720 -1 -1 15 0.36 -1 -1 33228 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1292 9914 2574 6184 1156 63.4 MiB 0.12 0.00 9.1052 -186.475 -9.1052 9.1052 0.66 0.00103079 0.000954193 0.0602428 0.0557801 40 3560 37 6.79088e+06 296384 706193. 2443.58 2.36 0.302198 0.263357 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0439346 0.0385692 153 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 7.43 vpr 62.18 MiB 0.02 6560 -1 -1 11 0.16 -1 -1 32468 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 1.92 829 6054 1305 4663 86 62.2 MiB 0.07 0.00 6.63906 -133.693 -6.63906 6.63906 0.66 0.000710304 0.000658491 0.0290988 0.0269194 34 2844 35 6.79088e+06 188608 618332. 2139.56 2.79 0.186679 0.161459 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255808 0.022537 91 124 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 7.02 vpr 62.39 MiB 0.04 6540 -1 -1 12 0.19 -1 -1 32440 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 23.9 MiB 1.47 1045 8360 2472 4444 1444 62.4 MiB 0.09 0.00 7.09988 -155.106 -7.09988 7.09988 0.65 0.000798881 0.000740265 0.0431063 0.0399729 36 3087 23 6.79088e+06 215552 648988. 2245.63 2.74 0.199241 0.173284 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0319637 0.0280363 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 7.45 vpr 63.02 MiB 0.02 6772 -1 -1 12 0.30 -1 -1 32944 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1231 6306 1337 4274 695 63.0 MiB 0.08 0.00 7.48442 -156.804 -7.48442 7.48442 0.65 0.000981217 0.000908445 0.0380226 0.0352391 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.17 0.257174 0.222356 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.20 0.12 0.09 -1 -1 0.20 0.0440589 0.0389136 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 8.51 vpr 62.75 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32812 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.59 1313 9443 2521 5826 1096 62.8 MiB 0.10 0.00 7.56551 -160.745 -7.56551 7.56551 0.65 0.000894614 0.000828851 0.0506707 0.0469297 36 3623 36 6.79088e+06 255968 648988. 2245.63 3.99 0.254871 0.22146 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.22 0.09 0.11 -1 -1 0.22 0.034846 0.0307756 133 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 8.33 vpr 63.55 MiB 0.04 6940 -1 -1 14 0.46 -1 -1 33396 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1284 5079 907 4069 103 63.5 MiB 0.09 0.00 8.77515 -179.37 -8.77515 8.77515 0.65 0.00109846 0.00101288 0.0469696 0.0436119 38 4131 35 6.79088e+06 309856 678818. 2348.85 3.82 0.288553 0.250651 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.22 0.11 0.15 -1 -1 0.22 0.0454537 0.0401231 170 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 18.25 vpr 62.66 MiB 0.02 6812 -1 -1 11 0.28 -1 -1 32364 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.1 MiB 1.85 1159 11963 3648 6429 1886 62.7 MiB 0.12 0.00 7.06667 -142.983 -7.06667 7.06667 0.65 0.000870817 0.000806857 0.061618 0.0571294 38 2927 33 6.79088e+06 282912 678818. 2348.85 13.40 0.373272 0.323193 25966 169698 -1 2582 16 1118 3242 177675 39214 6.29442 6.29442 -136.052 -6.29442 0 0 902133. 3121.57 0.25 0.08 0.16 -1 -1 0.25 0.032027 0.0283375 128 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 10.50 vpr 62.36 MiB 0.04 6540 -1 -1 11 0.20 -1 -1 32420 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.8 MiB 1.11 770 7714 1883 5409 422 62.4 MiB 0.07 0.00 6.64923 -122.654 -6.64923 6.64923 0.65 0.000709526 0.000656662 0.0359064 0.0332524 38 2218 30 6.79088e+06 255968 678818. 2348.85 6.56 0.332114 0.285248 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.22 0.07 0.16 -1 -1 0.22 0.0296906 0.026003 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 9.32 vpr 63.66 MiB 0.04 6860 -1 -1 13 0.47 -1 -1 32888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 24.9 MiB 1.64 1654 14793 4090 8037 2666 63.7 MiB 0.18 0.00 8.15219 -167.23 -8.15219 8.15219 0.65 0.00119286 0.00109271 0.0894951 0.0824395 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.07 0.335756 0.293341 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.23 0.39 0.15 -1 -1 0.23 0.0919851 0.0798388 191 279 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 6.38 vpr 62.82 MiB 0.05 6844 -1 -1 14 0.25 -1 -1 33132 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1216 6923 1704 4584 635 62.8 MiB 0.08 0.00 8.60637 -173.25 -8.60637 8.60637 0.65 0.000881511 0.000817615 0.0374556 0.0347465 30 3569 30 6.79088e+06 269440 556674. 1926.21 2.06 0.164119 0.144001 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0336854 0.029663 128 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 6.96 vpr 62.32 MiB 0.02 6632 -1 -1 12 0.14 -1 -1 32520 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 23.7 MiB 2.04 1144 8723 2365 5890 468 62.3 MiB 0.09 0.00 7.40683 -169.316 -7.40683 7.40683 0.65 0.000760785 0.000704796 0.039794 0.0368709 44 3005 29 6.79088e+06 255968 787024. 2723.27 2.17 0.199649 0.173954 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0275522 0.0243322 109 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 20.11 vpr 62.63 MiB 0.03 6660 -1 -1 13 0.34 -1 -1 32804 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.56 1115 5066 1001 3852 213 62.6 MiB 0.06 0.00 8.33866 -169.136 -8.33866 8.33866 0.65 0.000881964 0.000817565 0.0285675 0.0265245 38 3306 39 6.79088e+06 242496 678818. 2348.85 14.54 0.391644 0.335993 25966 169698 -1 2672 26 1221 3475 344525 134931 7.04987 7.04987 -158.656 -7.04987 0 0 902133. 3121.57 0.22 0.14 0.15 -1 -1 0.22 0.0443258 0.0387524 125 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 21.00 vpr 63.13 MiB 0.03 6840 -1 -1 13 0.31 -1 -1 33436 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1490 8083 1681 5214 1188 63.1 MiB 0.10 0.00 7.4732 -162.473 -7.4732 7.4732 0.81 0.00105775 0.00097991 0.0473236 0.0438176 38 4261 31 6.79088e+06 336800 678818. 2348.85 15.76 0.479036 0.412165 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.22 0.20 0.15 -1 -1 0.22 0.0598445 0.0521619 159 234 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 8.96 vpr 62.73 MiB 0.05 6832 -1 -1 11 0.23 -1 -1 32788 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1209 11059 2877 6113 2069 62.7 MiB 0.12 0.00 7.11391 -144.84 -7.11391 7.11391 0.68 0.000924005 0.000854906 0.0594386 0.0550371 38 3561 49 6.79088e+06 309856 678818. 2348.85 4.47 0.297232 0.258854 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.036919 0.0324452 140 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 6.85 vpr 62.86 MiB 0.02 6704 -1 -1 15 0.32 -1 -1 33008 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1211 12503 3460 7559 1484 62.9 MiB 0.14 0.00 9.11536 -184.558 -9.11536 9.11536 0.66 0.000957695 0.000886033 0.0728687 0.0674037 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.24 0.253575 0.22212 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.22 0.13 0.15 -1 -1 0.22 0.0409518 0.0363788 142 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 13.85 vpr 63.09 MiB 0.05 6708 -1 -1 13 0.30 -1 -1 33016 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.5 MiB 1.98 1357 5463 1001 4200 262 63.1 MiB 0.07 0.00 8.32676 -176.58 -8.32676 8.32676 0.67 0.00101777 0.000935024 0.0330101 0.0304794 36 4143 34 6.79088e+06 309856 648988. 2245.63 8.83 0.268636 0.233102 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0349146 0.0309497 154 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 6.54 vpr 62.66 MiB 0.01 6544 -1 -1 12 0.20 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.1 MiB 1.86 941 10557 3755 4946 1856 62.7 MiB 0.10 0.00 7.68137 -155.362 -7.68137 7.68137 0.65 0.000757528 0.000702472 0.0521987 0.0484591 36 2695 26 6.79088e+06 242496 648988. 2245.63 1.91 0.214178 0.186965 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.22 0.07 0.15 -1 -1 0.22 0.0287767 0.0253272 109 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 6.26 vpr 62.63 MiB 0.05 6536 -1 -1 11 0.16 -1 -1 32440 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 24.0 MiB 1.40 1148 5224 1190 3763 271 62.6 MiB 0.06 0.00 6.84847 -147.97 -6.84847 6.84847 0.65 0.000727127 0.000673502 0.0258115 0.0239181 48 2763 18 6.79088e+06 188608 865456. 2994.66 2.04 0.176656 0.153093 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.27 0.07 0.17 -1 -1 0.27 0.0263788 0.0233756 98 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 8.42 vpr 63.08 MiB 0.04 6804 -1 -1 13 0.30 -1 -1 32976 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1115 8455 2194 4906 1355 63.1 MiB 0.10 0.00 7.89179 -153.02 -7.89179 7.89179 0.65 0.000944991 0.00087284 0.0474494 0.0439367 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.37 0.254673 0.220982 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0387025 0.0340688 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 6.41 vpr 62.30 MiB 0.04 6624 -1 -1 10 0.17 -1 -1 32800 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.7 MiB 1.63 851 10204 2504 7246 454 62.3 MiB 0.09 0.00 6.11518 -125.484 -6.11518 6.11518 0.66 0.000717875 0.000665162 0.0480387 0.044561 38 2368 25 6.79088e+06 229024 678818. 2348.85 1.96 0.193202 0.168449 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0309449 0.0272841 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.45 vpr 62.34 MiB 0.05 6636 -1 -1 14 0.19 -1 -1 32668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 23.9 MiB 2.57 1049 6312 1330 4556 426 62.3 MiB 0.07 0.00 7.76918 -161.081 -7.76918 7.76918 0.65 0.000767009 0.000709957 0.0302132 0.0279868 36 3203 45 6.79088e+06 242496 648988. 2245.63 5.02 0.219435 0.190197 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.21 0.20 0.13 -1 -1 0.21 0.0545022 0.047217 110 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 9.15 vpr 62.60 MiB 0.02 6764 -1 -1 12 0.31 -1 -1 32956 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.2 MiB 1.25 1262 12919 3620 7000 2299 62.6 MiB 0.13 0.00 7.60154 -161.988 -7.60154 7.60154 0.63 0.000945839 0.000875602 0.0696219 0.0643847 36 3634 39 6.79088e+06 296384 648988. 2245.63 4.79 0.291627 0.254687 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.25 0.09 0.15 -1 -1 0.25 0.0352955 0.0311369 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 7.11 vpr 62.33 MiB 0.02 6632 -1 -1 12 0.15 -1 -1 32360 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.7 MiB 2.20 992 10726 2823 7181 722 62.3 MiB 0.10 0.00 6.58069 -144.507 -6.58069 6.58069 0.65 0.000721007 0.000667529 0.0499757 0.0463652 30 2929 43 6.79088e+06 215552 556674. 1926.21 2.21 0.162971 0.143133 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0272719 0.0242128 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 8.34 vpr 63.12 MiB 0.02 6864 -1 -1 12 0.17 -1 -1 32792 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.3 MiB 1.37 1163 7736 1889 5402 445 63.1 MiB 0.09 0.00 7.51176 -154.757 -7.51176 7.51176 0.70 0.00089032 0.00082465 0.0431257 0.0399267 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.15 0.238941 0.20782 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0330206 0.0290881 123 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 6.44 vpr 62.71 MiB 0.05 6908 -1 -1 13 0.31 -1 -1 32936 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.1 MiB 1.43 1250 11296 2557 6849 1890 62.7 MiB 0.12 0.00 7.49717 -162.624 -7.49717 7.49717 0.65 0.000887658 0.000822129 0.0600729 0.0556774 40 2968 20 6.79088e+06 255968 706193. 2443.58 1.99 0.235329 0.205195 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.034331 0.0301982 134 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 6.33 vpr 62.40 MiB 0.02 6640 -1 -1 11 0.16 -1 -1 32280 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 1.27 937 7515 1724 5667 124 62.4 MiB 0.08 0.00 7.16165 -142.405 -7.16165 7.16165 0.66 0.000757994 0.000702342 0.037093 0.0343982 46 2683 20 6.79088e+06 202080 828058. 2865.25 2.20 0.191511 0.166523 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268485 0.0237702 105 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 7.87 vpr 62.56 MiB 0.04 6656 -1 -1 13 0.19 -1 -1 32508 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1005 13381 4639 6392 2350 62.6 MiB 0.13 0.00 7.38301 -157.601 -7.38301 7.38301 0.66 0.000844927 0.000783327 0.0698167 0.0647163 38 2883 22 6.79088e+06 229024 678818. 2348.85 3.20 0.249236 0.21871 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0313334 0.0276416 116 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 6.97 vpr 62.91 MiB 0.02 6832 -1 -1 13 0.33 -1 -1 32876 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1327 8092 2018 5457 617 62.9 MiB 0.09 0.00 7.14878 -159.209 -7.14878 7.14878 0.66 0.000911679 0.000845738 0.0456385 0.0423815 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.31 0.231398 0.201114 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0367871 0.0324787 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 7.87 vpr 62.51 MiB 0.05 6740 -1 -1 11 0.17 -1 -1 32676 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.1 MiB 1.55 925 13403 4743 6446 2214 62.5 MiB 0.12 0.00 6.69836 -125.024 -6.69836 6.69836 0.66 0.000792215 0.000733799 0.0637596 0.0590521 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.47 0.239158 0.208796 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0353595 0.0316033 115 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 7.07 vpr 63.23 MiB 0.02 6876 -1 -1 14 0.30 -1 -1 33396 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1410 8213 2036 5597 580 63.2 MiB 0.10 0.00 9.10514 -189.548 -9.10514 9.10514 0.69 0.00102188 0.000945495 0.0490702 0.0453912 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.44 0.268305 0.234053 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0366234 0.0324489 160 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 10.35 vpr 62.57 MiB 0.03 6552 -1 -1 12 0.20 -1 -1 32448 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 2.75 1093 11281 2937 6811 1533 62.6 MiB 0.12 0.00 6.61653 -142.296 -6.61653 6.61653 0.68 0.000739598 0.000684599 0.0556871 0.051583 34 3493 43 6.79088e+06 242496 618332. 2139.56 4.73 0.239341 0.209101 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0277811 0.0245617 108 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 7.52 vpr 62.80 MiB 0.03 6784 -1 -1 13 0.28 -1 -1 32840 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1323 14123 4442 7710 1971 62.8 MiB 0.16 0.00 7.64293 -157.325 -7.64293 7.64293 0.65 0.000910992 0.000843453 0.0851464 0.0791705 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.64 0.262284 0.230792 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.036052 0.0317784 132 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 7.66 vpr 62.36 MiB 0.02 6508 -1 -1 13 0.18 -1 -1 32748 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 23.7 MiB 1.97 1020 12120 3554 6383 2183 62.4 MiB 0.11 0.00 7.35402 -164.423 -7.35402 7.35402 0.67 0.000749268 0.000693755 0.05646 0.0522906 36 3009 44 6.79088e+06 215552 648988. 2245.63 3.01 0.236476 0.206462 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.20 0.05 0.09 -1 -1 0.20 0.0177433 0.0160074 104 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 7.35 vpr 62.93 MiB 0.04 6852 -1 -1 12 0.21 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1030 11783 4465 6036 1282 62.9 MiB 0.13 0.00 7.13827 -153.033 -7.13827 7.13827 0.76 0.000851435 0.00078783 0.063309 0.0585885 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.36 0.233966 0.204359 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0305704 0.0270152 121 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 8.91 vpr 63.37 MiB 0.04 6908 -1 -1 15 0.46 -1 -1 32864 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.8 MiB 1.93 1457 12373 3076 6798 2499 63.4 MiB 0.15 0.00 9.48621 -188.88 -9.48621 9.48621 0.66 0.00115167 0.00106615 0.0765741 0.0707904 46 4011 21 6.79088e+06 323328 828058. 2865.25 3.66 0.317332 0.277743 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0471324 0.0414787 176 250 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 5.95 vpr 61.80 MiB 0.03 6388 -1 -1 10 0.10 -1 -1 32076 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.2 MiB 1.50 678 9345 2965 4615 1765 61.8 MiB 0.09 0.00 5.03415 -115.492 -5.03415 5.03415 0.66 0.000659133 0.000612134 0.0426856 0.039637 36 1722 23 6.79088e+06 148192 648988. 2245.63 1.75 0.154225 0.134529 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.23 0.05 0.15 -1 -1 0.23 0.0232266 0.0203336 63 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 7.58 vpr 62.45 MiB 0.04 6656 -1 -1 13 0.17 -1 -1 32472 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.0 MiB 1.70 930 9881 2975 5177 1729 62.4 MiB 0.09 0.00 7.15369 -149.901 -7.15369 7.15369 0.65 0.000752687 0.000697858 0.0462136 0.0428857 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.11 0.219457 0.190866 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0297497 0.0261988 105 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 8.14 vpr 62.59 MiB 0.04 6508 -1 -1 12 0.19 -1 -1 32540 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.1 MiB 1.87 1026 12331 4984 6774 573 62.6 MiB 0.12 0.00 7.35057 -161.147 -7.35057 7.35057 0.66 0.000835594 0.000773534 0.0627522 0.0580946 38 3211 42 6.79088e+06 229024 678818. 2348.85 3.41 0.260059 0.226507 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0337063 0.0296842 115 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 4.71 vpr 62.12 MiB 0.04 6588 -1 -1 9 0.13 -1 -1 32368 -1 -1 20 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.6 MiB 1.06 772 8553 2593 4994 966 62.1 MiB 0.07 0.00 5.4216 -101.246 -5.4216 5.4216 0.70 0.000616888 0.000573226 0.0348058 0.0323538 32 2040 31 6.79088e+06 269440 586450. 2029.24 0.97 0.118619 0.104045 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.20 0.06 0.14 -1 -1 0.20 0.0206391 0.0181989 86 111 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 10.87 vpr 63.19 MiB 0.05 6828 -1 -1 12 0.25 -1 -1 32736 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.4 MiB 2.36 1475 10263 2607 5842 1814 63.2 MiB 0.11 0.00 7.81518 -176.908 -7.81518 7.81518 0.65 0.000961972 0.000890265 0.0555956 0.0514356 38 4034 49 6.79088e+06 309856 678818. 2348.85 5.55 0.298123 0.25967 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0358162 0.0316376 146 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 8.09 vpr 63.22 MiB 0.04 6876 -1 -1 14 0.33 -1 -1 33024 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1195 12733 3723 6434 2576 63.2 MiB 0.13 0.00 9.14434 -182.838 -9.14434 9.14434 0.66 0.00095869 0.000886502 0.0699998 0.0646894 38 3451 34 6.79088e+06 296384 678818. 2348.85 3.83 0.285693 0.24914 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.038403 0.0339505 151 204 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.18 vpr 63.46 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30736 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 1.20 895 12321 3076 8292 953 63.5 MiB 0.14 0.00 4.3249 -144.349 -4.3249 4.3249 0.66 0.000824308 0.000766581 0.0467388 0.0434153 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.30 0.150131 0.131748 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0309578 0.0269769 155 96 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.96 vpr 63.28 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30632 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.5 MiB 3.24 889 13477 4603 6656 2218 63.3 MiB 0.14 0.00 4.22285 -135.326 -4.22285 4.22285 0.65 0.000758029 0.000703394 0.0583357 0.0541799 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.02 0.154216 0.136041 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0323683 0.0280503 141 91 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.33 vpr 63.19 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30456 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.4 MiB 1.65 953 18428 5979 9684 2765 63.2 MiB 0.16 0.00 3.74716 -129.333 -3.74716 3.74716 0.67 0.000741727 0.000686721 0.061256 0.0566361 30 2530 23 6.87369e+06 503058 556674. 1926.21 0.99 0.150016 0.13263 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308084 0.0267687 145 65 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.59 vpr 63.15 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30604 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.4 MiB 1.23 922 15090 5352 7218 2520 63.1 MiB 0.16 0.00 4.1666 -130.205 -4.1666 4.1666 0.70 0.000786983 0.000728851 0.0614599 0.0571558 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.63 0.199329 0.174925 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0297362 0.0258013 136 34 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.03 vpr 63.31 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.69 1047 14965 5078 8038 1849 63.3 MiB 0.15 0.00 4.2175 -149.421 -4.2175 4.2175 0.65 0.000741226 0.000688539 0.0621227 0.0577285 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.59 0.208179 0.182566 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.032851 0.0285934 147 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.74 vpr 63.32 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30396 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 1.11 1041 20588 6432 11323 2833 63.3 MiB 0.19 0.00 3.55395 -124.862 -3.55395 3.55395 0.65 0.000766237 0.000709123 0.0682532 0.0632196 32 2871 28 6.87369e+06 544980 586450. 2029.24 0.94 0.165902 0.146965 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.19 0.10 0.11 -1 -1 0.19 0.0323527 0.0280992 154 64 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.56 vpr 62.62 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30672 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.1 MiB 1.99 640 10388 2730 6621 1037 62.6 MiB 0.10 0.00 3.6994 -105.15 -3.6994 3.6994 0.68 0.000564366 0.000524551 0.0363824 0.0338211 28 1921 25 6.87369e+06 279477 531479. 1839.03 0.93 0.106706 0.0936416 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.17 0.07 0.13 -1 -1 0.17 0.0253451 0.0218606 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.27 vpr 63.14 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30180 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 0.87 969 14273 4212 7662 2399 63.1 MiB 0.13 0.00 3.61131 -114.549 -3.61131 3.61131 0.65 0.000664295 0.000617927 0.0443504 0.0411473 30 2496 28 6.87369e+06 489084 556674. 1926.21 0.90 0.130101 0.114546 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.18 0.07 0.08 -1 -1 0.18 0.0259802 0.0226949 141 4 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.81 vpr 62.96 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.1 MiB 2.45 735 9712 2823 5738 1151 63.0 MiB 0.09 0.00 3.24697 -108.666 -3.24697 3.24697 0.69 0.00050926 0.000466416 0.0345157 0.0317336 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.84 0.111252 0.0972724 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0227074 0.0197891 103 85 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.72 vpr 62.69 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.54 706 12808 2978 8428 1402 62.7 MiB 0.10 0.00 3.8076 -131.302 -3.8076 3.8076 0.67 0.00051977 0.000477234 0.0483749 0.0448819 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.57 0.196852 0.171433 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.027833 0.0241278 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.26 vpr 62.92 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30156 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.1 MiB 2.84 860 11776 3165 7564 1047 62.9 MiB 0.11 0.00 3.7375 -122.128 -3.7375 3.7375 0.66 0.000651147 0.00060539 0.0465814 0.0433071 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.86 0.122218 0.108004 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.21 0.07 0.13 -1 -1 0.21 0.0240918 0.0209726 109 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.24 vpr 63.06 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 30524 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.1 MiB 1.31 881 15207 4108 9975 1124 63.1 MiB 0.13 0.00 3.45001 -118.108 -3.45001 3.45001 0.66 0.000668208 0.000613345 0.0480654 0.0444845 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.38 0.178478 0.155449 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0249312 0.021619 116 65 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.48 vpr 63.28 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 4.23 958 19935 5624 11872 2439 63.3 MiB 0.18 0.00 3.64005 -125.972 -3.64005 3.64005 0.69 0.000750177 0.000696164 0.0679397 0.062932 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.56 0.21544 0.188842 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.026464 0.0230953 147 58 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.87 vpr 63.36 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 2.15 1059 21016 6637 11817 2562 63.4 MiB 0.20 0.00 4.34584 -150.842 -4.34584 4.34584 0.65 0.000778745 0.000719782 0.0742459 0.0687613 30 2683 24 6.87369e+06 517032 556674. 1926.21 0.96 0.16812 0.149083 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0335842 0.0291474 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.10 vpr 62.49 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30772 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 1.74 791 11776 3380 6895 1501 62.5 MiB 0.10 0.00 3.6364 -112.843 -3.6364 3.6364 0.66 0.000577156 0.000536725 0.0415926 0.0386977 32 2110 22 6.87369e+06 265503 586450. 2029.24 0.85 0.110343 0.0973497 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.19 0.07 0.12 -1 -1 0.19 0.022329 0.0193585 102 29 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.98 vpr 63.40 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.44 930 14221 5969 7807 445 63.4 MiB 0.15 0.00 3.52575 -124.171 -3.52575 3.52575 0.70 0.000782763 0.000727059 0.0623666 0.0579136 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.81 0.216391 0.188923 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0319652 0.0278269 145 63 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.80 vpr 63.35 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30372 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 4.18 1056 17238 4537 10962 1739 63.3 MiB 0.15 0.00 3.55695 -127.024 -3.55695 3.55695 0.65 0.000743976 0.000691406 0.0564693 0.0523558 28 2543 24 6.87369e+06 531006 531479. 1839.03 0.93 0.146379 0.129385 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0327378 0.0283884 148 57 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.19 vpr 63.04 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30040 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.1 MiB 2.20 836 17103 4501 10697 1905 63.0 MiB 0.17 0.00 3.09156 -112.02 -3.09156 3.09156 0.68 0.000677391 0.000629515 0.0649323 0.0602691 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.34 0.14913 0.132447 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0268488 0.0233194 117 65 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.95 vpr 62.16 MiB 0.03 6772 -1 -1 1 0.02 -1 -1 30228 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.6 MiB 0.54 560 9036 3714 4978 344 62.2 MiB 0.08 0.00 2.94056 -94.1681 -2.94056 2.94056 0.67 0.000599612 0.000557753 0.0329556 0.0306448 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.90 0.102272 0.0895668 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.19 0.05 0.12 -1 -1 0.19 0.0174037 0.0151332 73 34 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.63 vpr 62.85 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.07 944 12636 3568 7641 1427 62.8 MiB 0.12 0.00 4.39847 -135.821 -4.39847 4.39847 0.67 0.000668939 0.000621373 0.0526463 0.048927 32 2277 24 6.87369e+06 237555 586450. 2029.24 0.91 0.14042 0.124216 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0286841 0.0250083 113 64 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.14 vpr 63.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30196 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.88 894 19124 5624 10425 3075 63.2 MiB 0.17 0.00 4.20059 -139.885 -4.20059 4.20059 0.67 0.00073568 0.000684357 0.0624691 0.0578932 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.64 0.212976 0.186411 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.19 0.05 0.09 -1 -1 0.19 0.0161849 0.0142448 150 34 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 9.70 vpr 63.48 MiB 0.03 7188 -1 -1 1 0.05 -1 -1 30564 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.7 MiB 2.84 951 19380 5821 10599 2960 63.5 MiB 0.19 0.00 3.81248 -128.436 -3.81248 3.81248 0.66 0.000965596 0.000890459 0.0710356 0.0655544 30 2850 21 6.87369e+06 558954 556674. 1926.21 4.09 0.279563 0.242999 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0338636 0.0294632 154 124 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.15 vpr 62.01 MiB 0.04 6820 -1 -1 1 0.02 -1 -1 30636 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.5 MiB 1.83 600 9219 3759 4898 562 62.0 MiB 0.09 0.00 2.91856 -82.7442 -2.91856 2.91856 0.66 0.000449184 0.000417831 0.0358766 0.0333842 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.81 0.0874968 0.077471 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0192123 0.0165744 69 30 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.90 vpr 63.02 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.3 MiB 1.26 1038 9757 2635 6591 531 63.0 MiB 0.11 0.00 4.1666 -141.416 -4.1666 4.1666 0.66 0.000690641 0.000642682 0.0384623 0.0357679 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.76 0.177851 0.154779 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0289807 0.0252395 141 3 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.95 vpr 62.21 MiB 0.02 6644 -1 -1 1 0.04 -1 -1 30532 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.7 MiB 0.37 506 9516 2238 6770 508 62.2 MiB 0.07 0.00 2.55523 -88.1124 -2.55523 2.55523 0.66 0.000477073 0.000444144 0.0296652 0.0275798 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.20 0.122826 0.107296 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0260763 0.0226997 71 3 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.61 vpr 63.24 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.4 MiB 0.74 1092 17964 4627 11625 1712 63.2 MiB 0.20 0.00 4.26205 -149.131 -4.26205 4.26205 0.68 0.000747215 0.000685284 0.0679371 0.0628589 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.07 0.158056 0.140152 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289582 0.0252195 155 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.49 vpr 63.21 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.81 964 9612 2267 6482 863 63.2 MiB 0.10 0.00 3.55269 -121.215 -3.55269 3.55269 0.66 0.000704692 0.000653942 0.0318044 0.0294946 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.03 0.131265 0.114954 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0283436 0.024758 151 3 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.31 vpr 63.33 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30524 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13358 3512 8899 947 63.3 MiB 0.14 0.00 4.2809 -148.724 -4.2809 4.2809 0.66 0.000787531 0.00073061 0.0461596 0.0427486 26 3507 43 6.87369e+06 544980 503264. 1741.40 2.59 0.157384 0.138137 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.17 0.13 0.13 -1 -1 0.17 0.0351887 0.0306229 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.86 vpr 62.61 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30208 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.1 MiB 0.87 734 6839 1724 4743 372 62.6 MiB 0.07 0.00 3.07332 -108.035 -3.07332 3.07332 0.67 0.000618767 0.000575155 0.0279089 0.0259652 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.40 0.16177 0.140414 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0224363 0.0196942 104 34 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.67 vpr 62.52 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 1.01 856 11260 3834 5392 2034 62.5 MiB 0.12 0.00 3.7936 -125.971 -3.7936 3.7936 0.74 0.000615131 0.00057151 0.0480709 0.0446482 32 2233 22 6.87369e+06 251529 586450. 2029.24 0.96 0.128142 0.113442 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.21 0.09 0.13 -1 -1 0.21 0.0309663 0.0268571 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.65 vpr 62.55 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30364 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.0 MiB 1.00 743 13092 5209 6121 1762 62.6 MiB 0.14 0.00 3.48175 -108.034 -3.48175 3.48175 0.66 0.00104244 0.000970629 0.056577 0.0526437 28 2217 26 6.87369e+06 265503 531479. 1839.03 0.98 0.130704 0.115795 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.24 0.07 0.11 -1 -1 0.24 0.019505 0.0171101 104 34 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.21 vpr 62.56 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 1.16 861 14700 5460 6955 2285 62.6 MiB 0.13 0.00 3.58201 -129.205 -3.58201 3.58201 0.65 0.000610198 0.000567512 0.0540774 0.0503314 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.41 0.172981 0.15157 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0250465 0.0217846 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.31 vpr 62.97 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.6 MiB 0.75 924 11975 3064 7554 1357 63.0 MiB 0.11 0.00 3.50375 -121.402 -3.50375 3.50375 0.65 0.000628985 0.000584458 0.0374879 0.0348522 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.89 0.114705 0.100691 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0292368 0.0253047 119 34 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.35 vpr 62.88 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30060 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.0 MiB 2.47 824 15003 4455 7859 2689 62.9 MiB 0.13 0.00 2.90021 -94.838 -2.90021 2.90021 0.65 0.000625439 0.000579086 0.0476329 0.0441351 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.32 0.167999 0.146315 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.21 0.07 0.09 -1 -1 0.21 0.0249962 0.0216256 113 61 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.98 vpr 63.56 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30500 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 24.9 MiB 3.67 1315 20411 5511 12546 2354 63.6 MiB 0.22 0.00 4.25391 -147.758 -4.25391 4.25391 0.66 0.000951756 0.000889169 0.0717005 0.066358 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.38 0.185272 0.163801 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.18 0.13 0.12 -1 -1 0.18 0.0376156 0.0326261 184 29 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.40 vpr 63.34 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30428 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.5 MiB 2.74 1049 18419 4848 10881 2690 63.3 MiB 0.17 0.00 3.66825 -130.624 -3.66825 3.66825 0.65 0.000785432 0.000729863 0.0620304 0.0574961 32 2652 21 6.87369e+06 544980 586450. 2029.24 0.91 0.152535 0.135162 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0268916 0.0235475 154 65 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.32 vpr 62.79 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30468 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.4 MiB 3.18 881 17134 5393 9307 2434 62.8 MiB 0.15 0.00 3.56305 -119.83 -3.56305 3.56305 0.66 0.000679746 0.000630078 0.0569747 0.0527326 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.43 0.184421 0.161195 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0260103 0.0224943 116 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.33 vpr 63.25 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30380 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.93 1019 8641 2131 5612 898 63.3 MiB 0.12 0.00 3.59121 -120.774 -3.59121 3.59121 0.69 0.000901426 0.000837606 0.0419826 0.0390702 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.59 0.200644 0.174369 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0319811 0.0277115 141 64 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.10 vpr 63.56 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30640 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.8 MiB 4.65 1071 16825 7101 8757 967 63.6 MiB 0.18 0.00 4.97069 -151.888 -4.97069 4.97069 0.67 0.000838496 0.00077902 0.078059 0.0725153 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.68 0.231984 0.203309 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.22 0.07 0.14 -1 -1 0.22 0.0256751 0.0223169 145 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.98 vpr 63.32 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.72 980 12175 3299 8119 757 63.3 MiB 0.13 0.00 4.75154 -140.36 -4.75154 4.75154 0.65 0.00076967 0.000714377 0.0529953 0.0492247 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.53 0.203831 0.177919 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0320425 0.0278831 141 90 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.31 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 2.34 1053 19023 5653 10954 2416 63.3 MiB 0.17 0.00 3.64005 -125.414 -3.64005 3.64005 0.66 0.000753904 0.000700112 0.0649646 0.0601688 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.45 0.212462 0.186034 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311568 0.0269399 148 64 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.60 vpr 63.21 MiB 0.05 7092 -1 -1 1 0.05 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1150 19618 5466 12522 1630 63.2 MiB 0.18 0.00 4.1996 -145.707 -4.1996 4.1996 0.66 0.000768546 0.000713743 0.0659248 0.0610962 30 2927 24 6.87369e+06 531006 556674. 1926.21 4.24 0.248663 0.217349 25186 138497 -1 2218 18 1562 2480 174353 38167 3.7701 3.7701 -147.596 -3.7701 0 0 706193. 2443.58 0.25 0.08 0.10 -1 -1 0.25 0.0271111 0.0236894 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.96 vpr 64.03 MiB 0.03 7236 -1 -1 1 0.04 -1 -1 30788 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.1 MiB 3.12 1303 13356 3327 8820 1209 64.0 MiB 0.16 0.00 4.31511 -149.42 -4.31511 4.31511 0.65 0.000928107 0.000854251 0.0529036 0.0489521 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.16 0.161466 0.141839 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.17 0.11 0.11 -1 -1 0.17 0.0373986 0.032535 186 96 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.85 vpr 62.59 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.81 908 12636 4255 7048 1333 62.6 MiB 0.13 0.00 3.7654 -130.371 -3.7654 3.7654 0.65 0.000629638 0.000585682 0.0506952 0.0471489 34 2191 32 6.87369e+06 237555 618332. 2139.56 1.51 0.182895 0.159836 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0233526 0.0202751 112 34 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.40 vpr 63.30 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30388 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 2.49 1036 19820 6398 10981 2441 63.3 MiB 0.18 0.00 4.25889 -142.345 -4.25889 4.25889 0.66 0.000766016 0.000711435 0.0692492 0.0642729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.23 0.181169 0.160024 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.20 0.11 0.13 -1 -1 0.20 0.0321021 0.0278334 152 64 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.91 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30704 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1118 16515 4839 10227 1449 63.4 MiB 0.16 0.00 3.56001 -125.702 -3.56001 3.56001 0.66 0.000775388 0.000720561 0.0582834 0.0540856 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.35 0.150679 0.13316 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0311658 0.0270078 150 63 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.27 vpr 63.19 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30340 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.39 942 16081 4088 11306 687 63.2 MiB 0.16 0.00 4.1996 -144.758 -4.1996 4.1996 0.66 0.000708782 0.000658644 0.0637822 0.0592522 34 3051 25 6.87369e+06 293451 618332. 2139.56 2.17 0.205772 0.180814 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0316372 0.0275019 147 3 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.77 vpr 63.33 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30560 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 3.56 1066 20980 7180 11264 2536 63.3 MiB 0.19 0.00 3.54349 -125.696 -3.54349 3.54349 0.65 0.000790765 0.000734141 0.0745136 0.0689941 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.51 0.23023 0.202274 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0308858 0.0268074 148 96 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.37 vpr 63.30 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30480 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.52 1032 19142 4987 12020 2135 63.3 MiB 0.20 0.00 3.61805 -127.505 -3.61805 3.61805 0.67 0.000760629 0.000705234 0.0710442 0.0657893 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.28 0.182299 0.160931 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.17 0.05 0.07 -1 -1 0.17 0.0179675 0.0156835 152 61 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.43 vpr 63.38 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.5 MiB 2.72 1111 18648 5184 11229 2235 63.4 MiB 0.18 0.00 3.58025 -126.995 -3.58025 3.58025 0.66 0.000768883 0.00071323 0.0662197 0.0613132 32 2918 26 6.87369e+06 558954 586450. 2029.24 0.98 0.159213 0.140945 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0321075 0.0280837 156 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.58 vpr 63.29 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30648 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.4 MiB 0.84 973 12876 3455 7707 1714 63.3 MiB 0.11 0.00 4.3249 -147.802 -4.3249 4.3249 0.69 0.000753225 0.000700128 0.0426039 0.0395544 34 2850 24 6.87369e+06 544980 618332. 2139.56 1.99 0.191678 0.167373 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.0278979 0.0243932 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.14 vpr 63.24 MiB 0.05 6956 -1 -1 1 0.04 -1 -1 30664 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.4 MiB 2.62 1087 15172 3966 9854 1352 63.2 MiB 0.15 0.00 4.1996 -143.047 -4.1996 4.1996 0.69 0.000774825 0.000719516 0.0509635 0.0471673 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.71 0.211864 0.184404 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0331884 0.0288214 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.46 vpr 63.77 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30580 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 25.1 MiB 3.71 988 19356 5396 10906 3054 63.8 MiB 0.19 0.00 4.16785 -135.645 -4.16785 4.16785 0.65 0.000830933 0.000770036 0.0712429 0.065899 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.01 0.169308 0.149593 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0330511 0.0285719 150 122 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.15 vpr 63.47 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.6 MiB 2.67 1079 15709 4633 9421 1655 63.5 MiB 0.17 0.00 4.13359 -143.515 -4.13359 4.13359 0.66 0.000812796 0.000754658 0.0711953 0.0661087 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.72 0.230343 0.201755 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0343442 0.0297476 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.40 vpr 62.59 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30540 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.0 MiB 0.84 919 15426 4260 9754 1412 62.6 MiB 0.13 0.00 3.51475 -125.544 -3.51475 3.51475 0.66 0.000638318 0.000593958 0.0478223 0.0443698 32 2428 31 6.87369e+06 447163 586450. 2029.24 0.94 0.134697 0.118574 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0273314 0.0236843 121 34 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.54 vpr 63.25 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.4 MiB 2.86 953 12980 4579 7047 1354 63.3 MiB 0.14 0.00 3.6884 -132.193 -3.6884 3.6884 0.68 0.000714009 0.000662914 0.0590387 0.0547913 32 2548 27 6.87369e+06 223581 586450. 2029.24 0.93 0.147839 0.13069 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.22 0.10 0.15 -1 -1 0.22 0.0341031 0.0296644 112 94 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.06 vpr 63.43 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30788 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.9 MiB 1.90 1419 16556 4403 10830 1323 63.4 MiB 0.18 0.00 4.99284 -170.715 -4.99284 4.99284 0.66 0.00106753 0.000993415 0.0614611 0.0569834 28 3950 45 6.87369e+06 614849 531479. 1839.03 2.46 0.19887 0.17469 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.20 0.14 0.08 -1 -1 0.20 0.037568 0.0325996 189 65 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.32 vpr 63.20 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30304 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.4 MiB 2.55 1069 15831 4027 10006 1798 63.2 MiB 0.15 0.00 3.59121 -127.943 -3.59121 3.59121 0.66 0.000780036 0.000723825 0.0544397 0.050286 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.13 0.142686 0.125882 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0413221 0.0356822 150 34 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.27 vpr 63.02 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30296 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.1 MiB 0.67 823 15633 5297 7776 2560 63.0 MiB 0.13 0.00 3.51601 -116.196 -3.51601 3.51601 0.65 0.000617644 0.000573172 0.048343 0.0448172 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.03 0.123391 0.108888 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.17 0.04 0.07 -1 -1 0.17 0.0161521 0.0141071 116 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.93 vpr 63.50 MiB 0.05 7332 -1 -1 1 0.03 -1 -1 31072 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 24.9 MiB 5.40 1193 22455 6528 13018 2909 63.5 MiB 0.22 0.00 4.91264 -167.151 -4.91264 4.91264 0.69 0.000953751 0.00088506 0.0835759 0.0774261 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.62 0.239314 0.210922 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.21 0.14 0.13 -1 -1 0.21 0.0437943 0.0378161 190 127 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.82 vpr 63.20 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30508 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.3 MiB 2.86 975 19868 5843 10688 3337 63.2 MiB 0.17 0.00 4.28153 -144.516 -4.28153 4.28153 0.67 0.000750213 0.000696956 0.0632288 0.0586669 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.19 0.183376 0.161556 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289729 0.0251684 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.08 vpr 62.68 MiB 0.03 6748 -1 -1 1 0.03 -1 -1 30376 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.59 857 11197 2857 7409 931 62.7 MiB 0.10 0.00 3.64005 -128.736 -3.64005 3.64005 0.65 0.000622527 0.000579222 0.0331289 0.030761 30 2290 23 6.87369e+06 461137 556674. 1926.21 0.87 0.107121 0.0941421 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.21 0.08 0.13 -1 -1 0.21 0.0262032 0.0226931 123 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.70 vpr 63.43 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.7 MiB 2.38 1249 21169 5887 12519 2763 63.4 MiB 0.20 0.00 4.9297 -168.732 -4.9297 4.9297 0.66 0.00085602 0.00079554 0.0723584 0.06716 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.51 0.183078 0.16176 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.19 0.14 0.11 -1 -1 0.19 0.0372862 0.0322512 189 34 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.91 vpr 62.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 0.87 806 12292 2857 8871 564 62.8 MiB 0.11 0.00 3.7764 -134.344 -3.7764 3.7764 0.65 0.000604044 0.000561094 0.0452227 0.0420221 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.37 0.166068 0.145075 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0264163 0.0228978 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.64 vpr 62.72 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30060 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.3 MiB 2.16 719 10463 2628 6946 889 62.7 MiB 0.10 0.00 3.56001 -114.458 -3.56001 3.56001 0.65 0.000614356 0.000571372 0.0315518 0.0292482 28 2094 21 6.87369e+06 461137 531479. 1839.03 0.92 0.104927 0.0919668 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.026353 0.022756 118 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.17 vpr 63.34 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30260 -1 -1 35 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 3.05 1008 14550 3923 8443 2184 63.3 MiB 0.14 0.00 3.54707 -114.227 -3.54707 3.54707 0.68 0.000741532 0.000688413 0.0515543 0.0478369 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.47 0.195202 0.170421 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292661 0.025383 141 88 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.46 vpr 63.44 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30608 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 2.03 854 12175 2685 7576 1914 63.4 MiB 0.11 0.00 4.2388 -146.065 -4.2388 4.2388 0.65 0.000753416 0.000701605 0.0531092 0.049309 34 2806 28 6.87369e+06 293451 618332. 2139.56 1.78 0.209919 0.183107 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.0352036 0.0305181 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.59 vpr 63.40 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.91 1100 18901 5336 11603 1962 63.4 MiB 0.18 0.00 4.27679 -150.534 -4.27679 4.27679 0.56 0.000790326 0.000727356 0.0651175 0.0603553 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.05 0.156513 0.13878 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.18 0.09 0.13 -1 -1 0.18 0.0330496 0.0286816 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.94 vpr 63.12 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30504 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.4 MiB 2.86 825 17191 6233 8742 2216 63.1 MiB 0.14 0.00 3.60705 -126.657 -3.60705 3.60705 0.65 0.000686204 0.00063105 0.0547869 0.0507557 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.46 0.187298 0.163615 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0270182 0.02349 123 65 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.57 vpr 63.09 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 3.58 738 4456 873 3135 448 63.1 MiB 0.06 0.00 3.6994 -119.902 -3.6994 3.6994 0.65 0.00067665 0.000629265 0.0193315 0.0179786 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.43 0.149279 0.128934 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278404 0.0240939 108 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.73 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 2.68 914 16740 4391 9932 2417 63.2 MiB 0.16 0.00 3.59605 -116.379 -3.59605 3.59605 0.69 0.000726804 0.00067534 0.0586669 0.0544782 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.32 0.19726 0.172673 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026658 0.0231992 143 60 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.67 vpr 62.95 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.2 MiB 1.48 905 12191 3346 7959 886 63.0 MiB 0.11 0.00 4.19891 -125.962 -4.19891 4.19891 0.66 0.000667003 0.000620877 0.0398213 0.0369411 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.61 0.121865 0.106907 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.16 0.11 0.11 -1 -1 0.16 0.0340326 0.0294761 139 34 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.69 vpr 62.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30308 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.1 MiB 2.24 882 11432 3518 6484 1430 63.0 MiB 0.11 0.00 3.7324 -126.153 -3.7324 3.7324 0.67 0.00064665 0.000600903 0.0452925 0.042106 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.86 0.119422 0.105373 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0261104 0.0226434 110 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.23 vpr 63.13 MiB 0.04 6872 -1 -1 1 0.04 -1 -1 30364 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.2 MiB 3.05 904 14256 4718 7453 2085 63.1 MiB 0.14 0.00 3.6144 -123.374 -3.6144 3.6144 0.66 0.000703585 0.000650192 0.0597809 0.0555272 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.37 0.19492 0.170785 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0279126 0.024247 110 91 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.88 vpr 62.88 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30184 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.79 962 16804 5215 8614 2975 62.9 MiB 0.15 0.00 4.24789 -140.354 -4.24789 4.24789 0.65 0.000808979 0.000759869 0.0529431 0.0491689 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.45 0.13249 0.11744 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.18 0.09 0.12 -1 -1 0.18 0.0260193 0.0227999 151 4 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.00 vpr 63.53 MiB 0.05 6968 -1 -1 1 0.05 -1 -1 30536 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.7 MiB 3.93 1093 19380 5712 11198 2470 63.5 MiB 0.18 0.00 4.29189 -149.386 -4.29189 4.29189 0.66 0.000773174 0.000717835 0.0658998 0.0610278 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.37 0.162521 0.143906 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0352847 0.030557 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.19 vpr 63.41 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30324 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.51 1146 17256 4889 10338 2029 63.4 MiB 0.18 0.00 4.30289 -150.744 -4.30289 4.30289 0.65 0.000781793 0.00072618 0.0666785 0.0618434 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.01 0.160697 0.142402 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308231 0.0268498 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.97 vpr 63.17 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30528 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.4 MiB 2.81 1114 16491 4519 10066 1906 63.2 MiB 0.15 0.00 4.16249 -142.489 -4.16249 4.16249 0.65 0.000763161 0.000708717 0.0554139 0.051306 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.51 0.162854 0.143553 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0313768 0.0272022 152 65 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.86 vpr 62.68 MiB 0.05 6808 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.33 746 10406 2932 6420 1054 62.7 MiB 0.10 0.00 3.7324 -121.378 -3.7324 3.7324 0.65 0.000616316 0.000573793 0.0385431 0.0358612 32 2264 21 6.87369e+06 265503 586450. 2029.24 0.89 0.110609 0.0974482 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.21 0.09 0.14 -1 -1 0.21 0.0256651 0.0223086 110 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 6.54 vpr 63.23 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30324 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.4 MiB 2.95 980 15709 4819 8970 1920 63.2 MiB 0.15 0.00 4.23999 -140.261 -4.23999 4.23999 0.66 0.00073329 0.000680726 0.0643365 0.0597156 30 2357 25 6.87369e+06 321398 556674. 1926.21 0.93 0.155382 0.137461 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0283602 0.0246686 140 63 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.93 vpr 63.62 MiB 0.04 7188 -1 -1 1 0.04 -1 -1 30872 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.8 MiB 4.94 1155 15540 3963 10188 1389 63.6 MiB 0.16 0.00 4.23385 -146.284 -4.23385 4.23385 0.67 0.00086016 0.000796699 0.0557272 0.0515611 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.21 0.183672 0.160561 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.19 0.12 0.13 -1 -1 0.19 0.0372594 0.0321419 158 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.92 vpr 63.46 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1029 18273 5989 9373 2911 63.5 MiB 0.18 0.00 4.26989 -143.564 -4.26989 4.26989 0.65 0.000797005 0.000740538 0.0693751 0.064245 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.20 0.145321 0.129603 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0337583 0.0293146 149 94 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 5.90 vpr 63.26 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30648 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.15 942 16921 5030 8706 3185 63.3 MiB 0.17 0.00 3.63595 -118.056 -3.63595 3.63595 0.67 0.000762288 0.000700316 0.0626343 0.0579815 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.02 0.160772 0.14198 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.19 0.08 0.13 -1 -1 0.19 0.0309738 0.0268622 141 92 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.70 vpr 63.63 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 4.20 1087 14593 4252 9147 1194 63.6 MiB 0.16 0.00 4.1996 -148.308 -4.1996 4.1996 0.65 0.000780075 0.000724251 0.0637187 0.0591754 34 3260 29 6.87369e+06 293451 618332. 2139.56 1.88 0.226378 0.198045 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.20 0.12 0.09 -1 -1 0.20 0.0342308 0.0297091 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.67 vpr 63.16 MiB 0.04 7128 -1 -1 1 0.05 -1 -1 30332 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.5 MiB 2.12 943 12751 3363 8405 983 63.2 MiB 0.12 0.00 3.54105 -112.818 -3.54105 3.54105 0.63 0.000737109 0.000682388 0.0452754 0.0419034 26 2618 24 6.87369e+06 503058 503264. 1741.40 0.95 0.140566 0.123506 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0312349 0.027035 138 88 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.55 vpr 62.57 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.62 862 12292 3174 7904 1214 62.6 MiB 0.11 0.00 3.7104 -131.958 -3.7104 3.7104 0.65 0.000612204 0.000569761 0.0456634 0.0425053 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.35 0.161486 0.141329 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0241587 0.0210505 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.00 vpr 63.34 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30344 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 4.19 1088 19841 5443 12522 1876 63.3 MiB 0.19 0.00 4.3249 -149.309 -4.3249 4.3249 0.66 0.000772559 0.000715829 0.0680462 0.0629887 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.00 0.162678 0.144142 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.19 0.11 0.14 -1 -1 0.19 0.0345776 0.0299965 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.23 vpr 63.29 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30452 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 3.84 1071 15151 5130 8107 1914 63.3 MiB 0.16 0.00 4.2388 -148.068 -4.2388 4.2388 0.66 0.00077875 0.000722277 0.0661096 0.0613743 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.61 0.219556 0.192488 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0325765 0.0283577 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.26 vpr 62.93 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30412 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.0 MiB 3.32 885 16708 4981 9424 2303 62.9 MiB 0.14 0.00 3.50501 -121.209 -3.50501 3.50501 0.68 0.000658966 0.000612815 0.0536003 0.0497633 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.32 0.177315 0.155474 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0262076 0.0227107 112 55 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.30 vpr 62.47 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 0.82 723 6960 1528 4773 659 62.5 MiB 0.09 0.00 3.7434 -125.643 -3.7434 3.7434 0.66 0.000751047 0.000699405 0.0280819 0.026162 32 2245 24 6.87369e+06 237555 586450. 2029.24 0.91 0.102889 0.0900109 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.023112 0.0200812 112 4 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.26 vpr 63.30 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 2.69 1023 18795 5447 10788 2560 63.3 MiB 0.17 0.00 4.30799 -144.78 -4.30799 4.30799 0.65 0.000755549 0.000702316 0.0643126 0.0596367 28 2603 22 6.87369e+06 489084 531479. 1839.03 0.90 0.151806 0.134682 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0281979 0.024527 144 59 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.09 vpr 63.22 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1094 18745 5603 10775 2367 63.2 MiB 0.17 0.00 4.21185 -141.009 -4.21185 4.21185 0.65 0.000761726 0.000706579 0.0669063 0.0619691 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.22 0.167508 0.148047 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.18 0.10 0.12 -1 -1 0.18 0.0360327 0.0312447 142 88 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.71 vpr 63.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.7 MiB 0.92 1329 17642 5677 9392 2573 63.4 MiB 0.18 0.00 4.98719 -165.596 -4.98719 4.98719 0.63 0.000797412 0.000740577 0.0597168 0.0554178 34 3730 48 6.87369e+06 572927 618332. 2139.56 3.00 0.255546 0.223881 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0340414 0.0296232 183 3 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.67 vpr 63.21 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30512 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.54 1005 13300 3782 8501 1017 63.2 MiB 0.14 0.00 3.59605 -120.715 -3.59605 3.59605 0.66 0.000717272 0.000665628 0.0502434 0.0465363 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.47 0.194386 0.169441 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0264931 0.0230704 141 59 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.12 vpr 62.46 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.0 MiB 0.70 735 12247 4571 5926 1750 62.5 MiB 0.11 0.00 3.6866 -109.378 -3.6866 3.6866 0.66 0.000438321 0.000402263 0.0441998 0.0409729 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.83 0.108583 0.0959298 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.19 0.06 0.13 -1 -1 0.19 0.0254477 0.0222748 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 6.56 vpr 63.50 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30608 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 2.40 1290 11856 2585 8478 793 63.5 MiB 0.14 0.00 4.1886 -144.868 -4.1886 4.1886 0.65 0.000911214 0.000843078 0.0472187 0.0437474 30 3626 23 6.87369e+06 586901 556674. 1926.21 1.43 0.1571 0.137866 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.19 0.10 0.12 -1 -1 0.19 0.0385309 0.0333936 184 95 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.01 vpr 63.35 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30552 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.7 MiB 3.14 874 9914 2276 6234 1404 63.4 MiB 0.11 0.00 4.91157 -150.663 -4.91157 4.91157 0.66 0.000827605 0.000768579 0.0461521 0.042895 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.13 0.221078 0.191836 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0339433 0.0293362 144 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.04 vpr 62.92 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.01 802 14356 5267 6628 2461 62.9 MiB 0.14 0.00 4.598 -126.496 -4.598 4.598 0.68 0.000683953 0.000634897 0.0601246 0.0558216 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.38 0.195489 0.171096 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0236867 0.0209187 107 89 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.18 vpr 63.28 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30520 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.5 MiB 0.91 1114 14723 4652 8968 1103 63.3 MiB 0.17 0.00 4.1955 -143.003 -4.1955 4.1955 0.66 0.000727696 0.00067575 0.0569265 0.0526309 28 2955 24 6.87369e+06 475111 531479. 1839.03 1.57 0.146848 0.130104 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.18 0.11 0.12 -1 -1 0.18 0.0290997 0.0253113 147 34 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.90 vpr 63.64 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30584 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.9 MiB 1.94 1006 19865 6118 9930 3817 63.6 MiB 0.20 0.00 4.28153 -140.004 -4.28153 4.28153 0.73 0.000856362 0.000787946 0.0737644 0.0680664 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.04 0.261921 0.228464 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.03676 0.0317884 176 64 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.09 vpr 63.18 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1085 17873 5357 10009 2507 63.2 MiB 0.16 0.00 3.50639 -115.998 -3.50639 3.50639 0.65 0.000720965 0.000669362 0.0599912 0.0555172 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.60 0.204157 0.178497 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0300644 0.0260486 144 61 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.76 vpr 63.40 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30592 -1 -1 46 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.49 1127 20887 5685 13197 2005 63.4 MiB 0.19 0.00 4.26133 -148.826 -4.26133 4.26133 0.66 0.000788578 0.000731863 0.0657779 0.0609127 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.48 0.159922 0.141491 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0342995 0.0297039 160 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.93 vpr 63.66 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.8 MiB 2.69 1115 19606 5308 11826 2472 63.7 MiB 0.17 0.00 3.52575 -126.542 -3.52575 3.52575 0.71 0.000774671 0.000719273 0.0636793 0.0590545 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.47 0.184439 0.162356 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0351058 0.0304891 157 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.55 vpr 62.57 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.0 MiB 1.61 669 12808 5105 6141 1562 62.6 MiB 0.11 0.00 3.73366 -117.212 -3.73366 3.73366 0.69 0.000600059 0.000558053 0.0481315 0.0447571 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.29 0.172589 0.150466 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.20 0.06 0.11 -1 -1 0.20 0.0231166 0.0200212 107 34 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 63.00 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 2.16 808 7256 1653 5365 238 63.0 MiB 0.08 0.00 4.2805 -117.484 -4.2805 4.2805 0.66 0.000655947 0.000609585 0.0291951 0.0271077 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.50 0.165215 0.143015 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.23 0.05 0.13 -1 -1 0.23 0.0174827 0.0153623 102 82 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.08 vpr 63.35 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.5 MiB 1.74 1136 19618 6151 11073 2394 63.3 MiB 0.18 0.00 4.1886 -141.394 -4.1886 4.1886 0.67 0.000739426 0.000687628 0.0625609 0.0580227 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.67 0.168992 0.149286 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0306524 0.0267349 152 34 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.02 vpr 62.55 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30492 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 23.9 MiB 3.12 794 17103 5256 9538 2309 62.5 MiB 0.13 0.00 3.45975 -106.144 -3.45975 3.45975 0.66 0.000732981 0.000681337 0.0512668 0.0475683 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.30 0.136931 0.120641 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.15 0.10 0.10 -1 -1 0.15 0.0277466 0.0239175 108 56 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.47 vpr 62.82 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.23 809 12464 3077 8852 535 62.8 MiB 0.12 0.00 3.7104 -131.395 -3.7104 3.7104 0.71 0.000651743 0.000606525 0.0497787 0.0462442 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.46 0.183816 0.160462 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.22 0.08 0.17 -1 -1 0.22 0.026802 0.0232539 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.46 vpr 63.34 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30324 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1003 13598 3664 8482 1452 63.3 MiB 0.13 0.00 3.61625 -124.489 -3.61625 3.61625 0.67 0.000756087 0.000695232 0.0489639 0.0453438 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.36 0.193099 0.168457 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.028702 0.0248798 146 64 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.31 vpr 62.78 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.79 698 11402 3727 5924 1751 62.8 MiB 0.11 0.00 3.33623 -109.833 -3.33623 3.33623 0.72 0.000630362 0.000585237 0.0446494 0.0414952 26 2239 28 6.87369e+06 223581 503264. 1741.40 0.96 0.124848 0.109778 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0251477 0.0217892 103 55 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.25 vpr 63.30 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.4 MiB 2.61 1019 17256 4700 9815 2741 63.3 MiB 0.17 0.00 3.59195 -122.625 -3.59195 3.59195 0.66 0.000775791 0.000725351 0.0543374 0.0501793 32 2782 36 6.87369e+06 517032 586450. 2029.24 0.97 0.124028 0.109911 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.20 0.09 0.08 -1 -1 0.20 0.0328952 0.028551 143 65 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.80 vpr 63.36 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30348 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 3.10 929 10336 2368 6764 1204 63.4 MiB 0.12 0.00 3.59605 -120.102 -3.59605 3.59605 0.67 0.000954493 0.000879385 0.0384382 0.0355927 32 2620 21 6.87369e+06 544980 586450. 2029.24 0.99 0.140274 0.123039 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0340739 0.0295237 151 93 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.40 vpr 62.92 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.1 MiB 2.42 812 13206 3975 7418 1813 62.9 MiB 0.13 0.00 3.26897 -114.681 -3.26897 3.26897 0.65 0.000661677 0.000614619 0.0525356 0.0488033 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.36 0.187335 0.16367 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0291006 0.0254726 110 61 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.71 vpr 63.18 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30200 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 3.09 923 10056 2840 6443 773 63.2 MiB 0.12 0.00 3.6884 -128.712 -3.6884 3.6884 0.72 0.000683846 0.000636064 0.0453038 0.0421213 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.94 0.129975 0.114587 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0288887 0.025074 112 63 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.96 vpr 63.20 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30660 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1032 14988 3846 9829 1313 63.2 MiB 0.14 0.00 4.29009 -147.998 -4.29009 4.29009 0.65 0.000771264 0.000715448 0.0504058 0.0466934 34 2540 20 6.87369e+06 558954 618332. 2139.56 1.58 0.19899 0.173873 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0341398 0.029763 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.53 vpr 63.13 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.21 880 11759 2826 8215 718 63.1 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.68 0.000717498 0.000664608 0.031817 0.0293698 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.71 0.142312 0.123945 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0306797 0.0265987 140 62 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.45 vpr 63.50 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30692 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 24.7 MiB 4.75 930 19136 5654 10352 3130 63.5 MiB 0.21 0.00 4.25669 -144.754 -4.25669 4.25669 0.66 0.000868862 0.000798952 0.0792822 0.0734335 34 2868 25 6.87369e+06 558954 618332. 2139.56 1.92 0.26059 0.228082 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.20 0.10 0.09 -1 -1 0.20 0.0357247 0.030804 157 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.16 vpr 62.33 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30232 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.9 MiB 0.65 801 6501 1452 4525 524 62.3 MiB 0.07 0.00 3.09052 -106.923 -3.09052 3.09052 0.73 0.00057597 0.000535847 0.0249699 0.0232568 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.87 0.10285 0.0898931 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.19 0.08 0.10 -1 -1 0.19 0.0261874 0.0228877 104 4 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.80 vpr 63.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30360 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 1.53 977 17961 5555 9821 2585 63.7 MiB 0.16 0.00 4.24789 -140.827 -4.24789 4.24789 0.65 0.000778746 0.000715034 0.0618852 0.05732 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.48 0.210948 0.18454 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0270205 0.0235709 147 92 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 7.96 vpr 63.06 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.90 961 12808 4157 6979 1672 63.1 MiB 0.13 0.00 3.7416 -135.274 -3.7416 3.7416 0.65 0.000716397 0.000664129 0.0562931 0.052254 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.38 0.195542 0.17106 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0310427 0.0269383 114 96 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.73 vpr 63.26 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30408 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1013 13117 3136 9263 718 63.3 MiB 0.13 0.00 3.62407 -127.528 -3.62407 3.62407 0.65 0.000867654 0.000801319 0.0446385 0.0413264 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.29 0.155098 0.135901 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0340171 0.0295209 153 65 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.61 vpr 63.51 MiB 0.03 7292 -1 -1 1 0.03 -1 -1 30724 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 4.25 1138 14475 3597 10051 827 63.5 MiB 0.15 0.00 4.97494 -166.026 -4.97494 4.97494 0.68 0.000922833 0.000857177 0.0534347 0.0494461 32 3530 43 6.87369e+06 656770 586450. 2029.24 1.50 0.190793 0.166873 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.19 0.13 0.14 -1 -1 0.19 0.0407452 0.0353433 190 96 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.22 vpr 62.23 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.6 MiB 1.90 613 9036 2242 6211 583 62.2 MiB 0.07 0.00 2.94746 -92.2629 -2.94746 2.94746 0.69 0.000529727 0.000492728 0.0315819 0.0293703 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.80 0.0948377 0.0831344 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.20 0.05 0.13 -1 -1 0.20 0.0177852 0.015482 72 56 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.38 vpr 62.54 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.86 764 12120 4745 5717 1658 62.5 MiB 0.11 0.00 3.7196 -120.247 -3.7196 3.7196 0.68 0.000619074 0.000575869 0.0465721 0.0433318 32 2131 23 6.87369e+06 251529 586450. 2029.24 0.89 0.121427 0.10727 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.20 0.09 0.14 -1 -1 0.20 0.0308532 0.0267 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.60 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.23 884 12464 4265 6183 2016 63.0 MiB 0.13 0.00 3.52575 -127.584 -3.52575 3.52575 0.69 0.000648627 0.00060256 0.0494308 0.0459043 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.61 0.179223 0.156751 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.21 0.10 0.18 -1 -1 0.21 0.0291762 0.0252425 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.13 vpr 62.48 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 23.9 MiB 0.70 742 15004 4316 8330 2358 62.5 MiB 0.11 0.00 3.44875 -93.4127 -3.44875 3.44875 0.69 0.000536234 0.000499064 0.0406833 0.0378205 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.82 0.102713 0.0905946 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0239987 0.0207911 105 34 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 6.93 vpr 63.42 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.53 1035 11989 3061 8035 893 63.4 MiB 0.14 0.00 4.14459 -143.245 -4.14459 4.14459 0.67 0.000917043 0.000859411 0.056505 0.0524247 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.68 0.214136 0.186802 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311656 0.0271431 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.71 vpr 63.41 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30348 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.5 MiB 2.48 969 12394 3038 8536 820 63.4 MiB 0.13 0.00 3.62425 -121.977 -3.62425 3.62425 0.72 0.000632201 0.000576616 0.044336 0.0409093 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.44 0.199252 0.173141 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.034764 0.0302143 151 94 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.93 vpr 63.36 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30596 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.6 MiB 1.50 1383 18363 6134 9531 2698 63.4 MiB 0.18 0.00 5.11247 -173.262 -5.11247 5.11247 0.68 0.000814662 0.000756751 0.0745697 0.0692271 36 3373 46 6.89349e+06 408721 648988. 2245.63 1.52 0.198317 0.174686 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0316248 0.0275274 192 96 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.33 vpr 63.33 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1338 16411 5641 8181 2589 63.3 MiB 0.17 0.00 5.22297 -160.634 -5.22297 5.22297 0.66 0.000771333 0.000716127 0.0646034 0.0600002 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.17 0.225976 0.197639 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0340051 0.0294828 177 91 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.57 vpr 63.04 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1277 15533 4267 9018 2248 63.0 MiB 0.17 0.00 4.0146 -140.879 -4.0146 4.0146 0.66 0.000904504 0.000841248 0.0651527 0.0604988 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.08 0.231806 0.202867 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0301146 0.0262361 167 65 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.19 vpr 62.88 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30412 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1071 16718 5447 9404 1867 62.9 MiB 0.17 0.00 4.53305 -141.516 -4.53305 4.53305 0.65 0.000678768 0.000629657 0.0629253 0.0584318 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.60 0.206028 0.18034 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298366 0.0256272 148 34 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.90 vpr 63.05 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.2 MiB 1.80 1361 14518 4265 8140 2113 63.0 MiB 0.17 0.00 5.03124 -172.909 -5.03124 5.03124 0.68 0.000744171 0.000691603 0.0624521 0.0580995 36 3336 26 6.89349e+06 338252 648988. 2245.63 2.23 0.218016 0.191295 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0287129 0.0250095 163 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.20 vpr 63.26 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30452 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.4 MiB 1.69 1499 20359 6047 11800 2512 63.3 MiB 0.19 0.00 4.44565 -148.532 -4.44565 4.44565 0.70 0.000765735 0.000710406 0.0659912 0.060989 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.63 0.225103 0.197021 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.22 0.11 0.16 -1 -1 0.22 0.0377332 0.0327929 179 64 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 4.72 vpr 62.41 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 1.40 730 14528 4147 9388 993 62.4 MiB 0.12 0.00 3.83226 -109.129 -3.83226 3.83226 0.66 0.000570349 0.000530453 0.0502473 0.046429 30 2039 26 6.89349e+06 295971 556674. 1926.21 0.85 0.12109 0.106741 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.020886 0.0181141 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.79 vpr 62.97 MiB 0.03 7004 -1 -1 1 0.04 -1 -1 30192 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.1 MiB 0.70 921 14273 4335 7347 2591 63.0 MiB 0.12 0.00 3.53335 -112.01 -3.53335 3.53335 0.66 0.000667263 0.00061852 0.0445223 0.0412815 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.50 0.173638 0.151537 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0251962 0.0218916 141 4 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.63 vpr 62.80 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30316 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1141 14358 3961 8348 2049 62.8 MiB 0.14 0.00 3.63141 -123.531 -3.63141 3.63141 0.65 0.000667176 0.000620384 0.0549113 0.0510073 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.46 0.207373 0.1806 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.27 0.07 0.15 -1 -1 0.27 0.0258118 0.0224631 140 85 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.65 vpr 62.68 MiB 0.02 6832 -1 -1 1 0.02 -1 -1 30308 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.53 873 6923 1573 5100 250 62.7 MiB 0.08 0.00 3.71245 -131.003 -3.71245 3.71245 0.69 0.000653017 0.000607625 0.027036 0.0251553 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.45 0.164051 0.141865 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.022868 0.0200957 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.82 vpr 62.95 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.87 942 6923 1677 4944 302 62.9 MiB 0.08 0.00 4.3965 -138.695 -4.3965 4.3965 0.65 0.000653269 0.000607913 0.027475 0.0255772 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.37 0.155406 0.134354 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246215 0.0215017 135 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.09 vpr 63.02 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 883 15822 6326 7340 2156 63.0 MiB 0.16 0.00 3.8129 -121.35 -3.8129 3.8129 0.65 0.000667063 0.000620052 0.0654446 0.0605474 36 2401 21 6.89349e+06 281877 648988. 2245.63 1.97 0.194438 0.170413 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0215603 0.0188545 135 65 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.78 vpr 63.29 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.5 MiB 1.18 987 17513 5731 7853 3929 63.3 MiB 0.15 0.00 4.23419 -140.25 -4.23419 4.23419 0.71 0.000752529 0.000698813 0.0690538 0.0641029 38 3008 43 6.89349e+06 352346 678818. 2348.85 3.79 0.243409 0.213178 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0301451 0.0262744 161 58 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.72 vpr 63.29 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30500 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.4 MiB 1.34 1162 11063 2970 6995 1098 63.3 MiB 0.13 0.00 5.02024 -166.562 -5.02024 5.02024 0.69 0.000784876 0.000729547 0.0447949 0.0416092 36 3019 23 6.89349e+06 394628 648988. 2245.63 1.65 0.198332 0.172675 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0297018 0.0258776 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.25 vpr 62.37 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.9 MiB 1.34 754 11296 2879 7697 720 62.4 MiB 0.10 0.00 3.61645 -112 -3.61645 3.61645 0.68 0.000574843 0.000535077 0.0385279 0.0358409 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.32 0.158036 0.137188 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0237539 0.0205872 112 29 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.91 vpr 63.25 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30556 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 2.06 1259 17315 5682 9212 2421 63.3 MiB 0.19 0.00 4.31019 -146.5 -4.31019 4.31019 0.67 0.000771233 0.000716628 0.0706687 0.0655446 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.01 0.234803 0.205348 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0320295 0.0278038 174 63 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.23 vpr 63.23 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.4 MiB 1.11 1183 12365 3291 7811 1263 63.2 MiB 0.14 0.00 3.69045 -130.871 -3.69045 3.69045 0.70 0.000750409 0.000697488 0.0535743 0.0497959 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.44 0.199528 0.17421 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0252498 0.0220485 160 57 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.90 vpr 62.96 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1015 15395 4903 8010 2482 63.0 MiB 0.15 0.00 3.61051 -123.557 -3.61051 3.61051 0.66 0.000676303 0.000628844 0.0576347 0.0535386 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.55 0.211748 0.184358 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0242771 0.0212977 139 65 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.92 vpr 62.16 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30116 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.6 MiB 0.91 569 8227 1998 5670 559 62.2 MiB 0.07 0.00 3.06366 -95.1937 -3.06366 3.06366 0.71 0.000504474 0.000469591 0.0305402 0.0284067 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.33 0.136929 0.118765 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.20 0.05 0.09 -1 -1 0.20 0.0205741 0.0177333 85 34 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.28 vpr 62.94 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.24 1101 13663 4048 7780 1835 62.9 MiB 0.13 0.00 4.32835 -147.32 -4.32835 4.32835 0.65 0.000663957 0.000616671 0.0509524 0.0473151 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.44 0.183452 0.160239 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255511 0.0222404 141 64 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.23 vpr 63.00 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30136 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.3 MiB 0.94 1052 20112 6009 11047 3056 63.0 MiB 0.18 0.00 4.67003 -155.404 -4.67003 4.67003 0.69 0.000730979 0.000679574 0.0635106 0.058872 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.55 0.212695 0.186528 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0277791 0.0241897 166 34 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.70 vpr 63.43 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.7 MiB 1.18 1507 16511 4972 9774 1765 63.4 MiB 0.18 0.00 4.34661 -147.62 -4.34661 4.34661 0.65 0.00085323 0.000793618 0.0688169 0.0639282 36 3423 27 6.89349e+06 436909 648988. 2245.63 1.61 0.238115 0.207872 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0353182 0.0306665 201 124 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.51 vpr 62.10 MiB 0.04 6656 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.6 MiB 1.23 692 10476 3888 5359 1229 62.1 MiB 0.08 0.00 2.84541 -81.5212 -2.84541 2.84541 0.69 0.000453685 0.000422005 0.0314768 0.0292775 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.70 0.139016 0.120288 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.21 0.03 0.13 -1 -1 0.21 0.0134009 0.0117558 77 30 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.01 vpr 63.02 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30140 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.2 MiB 1.10 1016 9571 2543 6414 614 63.0 MiB 0.10 0.00 4.12784 -139.243 -4.12784 4.12784 0.65 0.000689839 0.000641581 0.0376758 0.0350422 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.33 0.134323 0.117734 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.18 0.08 0.09 -1 -1 0.18 0.0308415 0.0267066 141 3 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.53 vpr 61.88 MiB 0.04 6708 -1 -1 1 0.02 -1 -1 30336 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63360 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.5 MiB 0.31 514 9356 2285 6456 615 61.9 MiB 0.07 0.00 2.43188 -86.7872 -2.43188 2.43188 0.65 0.000470195 0.000437111 0.0289716 0.0269239 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.80 0.0810777 0.0716888 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.17 0.05 0.11 -1 -1 0.17 0.017299 0.0151035 71 3 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.84 vpr 63.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30616 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.4 MiB 1.24 1097 15929 4551 10101 1277 63.1 MiB 0.17 0.00 4.62958 -159.64 -4.62958 4.62958 0.67 0.00074212 0.00069041 0.061923 0.0575796 30 2755 25 6.89349e+06 352346 556674. 1926.21 0.92 0.152959 0.135604 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0272663 0.0239687 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.28 vpr 62.97 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30040 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.1 MiB 0.68 885 10772 2583 7345 844 63.0 MiB 0.11 0.00 3.4709 -116.935 -3.4709 3.4709 0.65 0.000699184 0.000648524 0.0347602 0.0322028 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.01 0.141413 0.123618 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0284688 0.0247894 151 3 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.18 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30452 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1365 8130 1863 5269 998 63.3 MiB 0.10 0.00 4.69935 -162.091 -4.69935 4.69935 0.65 0.000811709 0.000751433 0.0353053 0.0328058 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.87 0.19101 0.166039 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.25 0.10 0.14 -1 -1 0.25 0.0321296 0.0279349 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.24 vpr 62.50 MiB 0.02 6780 -1 -1 1 0.03 -1 -1 30216 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 23.9 MiB 1.69 863 14256 5690 7135 1431 62.5 MiB 0.13 0.00 3.57625 -122.952 -3.57625 3.57625 0.66 0.000617675 0.000574261 0.0524083 0.0487129 36 2395 27 6.89349e+06 239595 648988. 2245.63 1.87 0.178267 0.155801 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0261654 0.0227301 118 34 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.88 vpr 62.54 MiB 0.03 6896 -1 -1 1 0.05 -1 -1 30244 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 24.0 MiB 1.58 1065 12331 4460 6746 1125 62.5 MiB 0.12 0.00 4.27029 -139.911 -4.27029 4.27029 0.68 0.000618654 0.000575045 0.0456839 0.0424895 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.55 0.167686 0.146275 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0236671 0.0205487 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.44 vpr 62.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30336 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.0 MiB 1.93 839 10231 2827 6777 627 62.5 MiB 0.10 0.00 4.26535 -126.926 -4.26535 4.26535 0.67 0.000588695 0.000547534 0.037111 0.034541 30 2437 23 6.89349e+06 295971 556674. 1926.21 0.92 0.108192 0.0951554 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0315655 0.0272671 115 34 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.24 vpr 62.36 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 860 14700 5342 7547 1811 62.4 MiB 0.13 0.00 3.60535 -129.612 -3.60535 3.60535 0.65 0.000613571 0.0005711 0.0548607 0.0510648 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.38 0.175613 0.154105 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0235494 0.0204532 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.77 vpr 62.36 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30284 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 23.8 MiB 1.26 985 14322 4727 7440 2155 62.4 MiB 0.13 0.00 3.69435 -127.028 -3.69435 3.69435 0.66 0.000625972 0.000582575 0.0525159 0.0488251 30 2355 32 6.89349e+06 267783 556674. 1926.21 0.92 0.136137 0.120401 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0246196 0.0214825 121 34 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.49 vpr 62.54 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30184 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1052 14724 4760 7779 2185 62.5 MiB 0.16 0.00 3.57215 -115.596 -3.57215 3.57215 0.66 0.0006679 0.000615592 0.0615132 0.0571439 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.36 0.203841 0.178033 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0236364 0.0206202 130 61 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.87 vpr 63.40 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.5 MiB 1.83 1199 18247 5521 9891 2835 63.4 MiB 0.20 0.00 4.73855 -160.484 -4.73855 4.73855 0.61 0.000944782 0.000886486 0.077647 0.0721764 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.32 0.273519 0.239992 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323775 0.0281225 184 29 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.27 vpr 63.33 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30440 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1143 14147 4354 7296 2497 63.3 MiB 0.15 0.00 4.17974 -143.168 -4.17974 4.17974 0.66 0.000780443 0.000724921 0.0583653 0.0542628 34 3686 37 6.89349e+06 352346 618332. 2139.56 1.80 0.22626 0.197571 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0372731 0.0322047 173 65 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.92 vpr 63.00 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 0.84 1094 14965 4562 8063 2340 63.0 MiB 0.14 0.00 3.67235 -123.222 -3.67235 3.67235 0.68 0.00067781 0.000630017 0.0565901 0.0525905 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.42 0.193196 0.169104 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0259383 0.0225191 143 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.62 vpr 63.14 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.3 MiB 2.20 1244 16523 4277 10843 1403 63.1 MiB 0.18 0.00 4.45875 -146.616 -4.45875 4.45875 0.67 0.00075042 0.000696704 0.0643215 0.0596278 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.65 0.224049 0.195669 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.22 0.09 0.09 -1 -1 0.22 0.0315598 0.0274849 170 64 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.45 vpr 63.64 MiB 0.02 7236 -1 -1 1 0.04 -1 -1 30540 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.79 1489 17560 4957 10293 2310 63.6 MiB 0.20 0.00 5.02254 -165.43 -5.02254 5.02254 0.67 0.000844596 0.000785597 0.0727489 0.0675953 34 3603 25 6.89349e+06 436909 618332. 2139.56 1.88 0.22124 0.193928 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0315655 0.0273469 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.65 vpr 63.33 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30412 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 2.17 1401 11923 3470 7236 1217 63.3 MiB 0.13 0.00 5.49816 -175.294 -5.49816 5.49816 0.74 0.000599742 0.000548754 0.0421888 0.0389026 34 3760 29 6.89349e+06 394628 618332. 2139.56 4.67 0.305638 0.263652 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0312856 0.0272792 181 90 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.14 vpr 63.07 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30416 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.2 MiB 1.70 1340 14763 4284 8311 2168 63.1 MiB 0.17 0.00 3.76655 -130.012 -3.76655 3.76655 0.69 0.000758729 0.000704496 0.0621432 0.0576911 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.68 0.238548 0.208237 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0325238 0.0283092 168 64 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.98 vpr 63.34 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30496 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 2.02 1284 16207 4365 9844 1998 63.3 MiB 0.16 0.00 4.62085 -160.706 -4.62085 4.62085 0.89 0.000595015 0.000546169 0.0507187 0.0466176 34 3366 50 6.89349e+06 380534 618332. 2139.56 2.02 0.235743 0.204373 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0310796 0.0270776 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.54 vpr 63.60 MiB 0.05 7228 -1 -1 1 0.04 -1 -1 30724 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.1 MiB 2.44 1764 15215 4236 8627 2352 63.6 MiB 0.19 0.00 5.15348 -175.341 -5.15348 5.15348 0.69 0.000845263 0.000778541 0.067427 0.0624955 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.20 0.275509 0.240112 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.21 0.14 0.13 -1 -1 0.21 0.036504 0.0317521 220 96 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.81 vpr 62.51 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30640 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.56 822 6743 1455 4759 529 62.5 MiB 0.08 0.00 3.853 -129.297 -3.853 3.853 0.66 0.000640445 0.000595956 0.0260511 0.0242337 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.39 0.168767 0.145881 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0254668 0.0221603 127 34 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.55 vpr 63.32 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.5 MiB 1.54 1294 17376 6419 8627 2330 63.3 MiB 0.18 0.00 5.00234 -161.335 -5.00234 5.00234 0.67 0.000773185 0.000717775 0.070126 0.0651223 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.25 0.225203 0.197945 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0301526 0.0263922 168 64 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 6.72 vpr 63.14 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1356 15391 5368 7626 2397 63.1 MiB 0.17 0.00 4.39449 -148.549 -4.39449 4.39449 0.72 0.000761155 0.000706715 0.0613051 0.0568303 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.09 0.220736 0.193029 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.028877 0.0253072 172 63 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.13 vpr 62.62 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.0 MiB 1.18 953 14407 3720 10033 654 62.6 MiB 0.14 0.00 4.3344 -147.594 -4.3344 4.3344 0.66 0.000549258 0.000503653 0.0453129 0.0416019 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.12 0.175794 0.152898 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0262622 0.0231332 147 3 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.04 vpr 63.30 MiB 0.05 7164 -1 -1 1 0.04 -1 -1 30572 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1279 18101 5797 9598 2706 63.3 MiB 0.18 0.00 4.41459 -148.068 -4.41459 4.41459 0.68 0.000785157 0.00072935 0.0714047 0.0663381 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.84 0.244635 0.214167 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0264702 0.0230928 184 96 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.03 vpr 63.11 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.3 MiB 1.94 1221 17635 5673 8836 3126 63.1 MiB 0.17 0.00 4.28929 -146.442 -4.28929 4.28929 0.70 0.000765099 0.000710982 0.068382 0.0635126 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.16 0.227184 0.199386 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0304305 0.0266997 169 61 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.98 vpr 63.20 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30428 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 1.53 1303 7027 1560 5110 357 63.2 MiB 0.09 0.00 3.72045 -130.455 -3.72045 3.72045 0.68 0.000773989 0.000718967 0.0295816 0.0274594 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.64 0.194466 0.168186 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0254669 0.022511 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.77 vpr 63.31 MiB 0.03 6896 -1 -1 1 0.02 -1 -1 30516 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 1.47 1190 14518 4171 8562 1785 63.3 MiB 0.15 0.00 4.63815 -161.109 -4.63815 4.63815 0.65 0.000739279 0.000686759 0.0578805 0.0537937 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.57 0.205645 0.180198 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0285819 0.0248603 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.42 vpr 63.32 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30668 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1201 13351 3240 8446 1665 63.3 MiB 0.14 0.00 4.60525 -158.398 -4.60525 4.60525 0.65 0.000781109 0.000726329 0.0528392 0.0490879 36 3088 18 6.89349e+06 380534 648988. 2245.63 1.58 0.197814 0.17268 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0333611 0.02902 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.72 vpr 63.45 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30492 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.7 MiB 1.28 1470 18625 5270 10765 2590 63.4 MiB 0.19 0.00 5.00359 -155.604 -5.00359 5.00359 0.68 0.000824741 0.000766393 0.075484 0.0701894 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.61 0.245376 0.214839 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.032127 0.0279234 195 122 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.14 vpr 63.41 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.43 1648 15391 4130 9133 2128 63.4 MiB 0.18 0.00 4.77885 -161.828 -4.77885 4.77885 0.58 0.000808666 0.000750706 0.0660986 0.0614237 36 3608 22 6.89349e+06 380534 648988. 2245.63 1.91 0.223825 0.195887 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0354378 0.0308238 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.44 vpr 62.45 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 1.39 1067 16081 5068 9178 1835 62.5 MiB 0.15 0.00 3.68745 -131.866 -3.68745 3.68745 0.69 0.00063878 0.000594292 0.057265 0.0532629 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.37 0.17875 0.156902 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0226333 0.0197451 127 34 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.85 vpr 63.04 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1122 7711 1541 6020 150 63.0 MiB 0.09 0.00 4.29439 -143.523 -4.29439 4.29439 0.67 0.000713226 0.000658812 0.0316974 0.0294515 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.80 0.252353 0.216896 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283052 0.0246409 154 94 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.15 vpr 63.59 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30816 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1537 17347 5978 9037 2332 63.6 MiB 0.21 0.00 5.35709 -181.872 -5.35709 5.35709 0.66 0.000898264 0.000835384 0.0771597 0.0718201 38 3731 22 6.89349e+06 422815 678818. 2348.85 1.70 0.250313 0.219649 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0353743 0.0308159 209 65 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.40 vpr 63.04 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30376 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1176 14295 4272 7910 2113 63.0 MiB 0.15 0.00 3.7808 -134.415 -3.7808 3.7808 0.66 0.000737146 0.00068476 0.0594284 0.0552571 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.05 0.219935 0.192145 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0335909 0.029144 156 34 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.00 vpr 62.57 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30324 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 23.9 MiB 1.10 932 11809 3108 7963 738 62.6 MiB 0.11 0.00 4.33203 -134.423 -4.33203 4.33203 0.66 0.000620462 0.000577476 0.0360648 0.0334708 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.31 0.154345 0.134096 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.23 0.06 0.14 -1 -1 0.23 0.0240635 0.0208005 129 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.46 vpr 63.36 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 31064 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 1.66 1787 18111 5206 10704 2201 63.4 MiB 0.22 0.00 5.73258 -193.193 -5.73258 5.73258 0.65 0.00095312 0.000885592 0.0802955 0.0745641 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.93 0.306627 0.267899 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.23 0.11 0.16 -1 -1 0.23 0.0408635 0.0354266 239 127 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.73 vpr 63.03 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1091 13143 3864 7923 1356 63.0 MiB 0.14 0.00 4.41749 -154.465 -4.41749 4.41749 0.70 0.000755398 0.000702227 0.0531662 0.0494078 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.64 0.202496 0.177006 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.030776 0.0268782 159 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.11 vpr 62.37 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30356 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 23.8 MiB 0.53 849 10087 2557 6780 750 62.4 MiB 0.10 0.00 3.73565 -131.011 -3.73565 3.73565 0.69 0.000607691 0.00056421 0.0302899 0.0280971 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.91 0.103581 0.0907569 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.21 0.07 0.12 -1 -1 0.21 0.0226924 0.0197163 123 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.01 vpr 63.49 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 1.71 1275 12273 3390 7733 1150 63.5 MiB 0.15 0.00 5.39711 -179.414 -5.39711 5.39711 0.65 0.000825004 0.000764344 0.0525839 0.0488961 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.52 0.226504 0.197057 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0347328 0.0302902 194 34 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.98 vpr 62.51 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30420 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.88 787 10056 2193 7590 273 62.5 MiB 0.10 0.00 3.8468 -135.678 -3.8468 3.8468 0.67 0.000609598 0.000567276 0.0374044 0.0348083 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.48 0.161203 0.140457 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0252483 0.0218891 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.28 vpr 62.51 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30504 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.06 801 8131 1824 5536 771 62.5 MiB 0.08 0.00 3.71635 -120.03 -3.71635 3.71635 0.65 0.000619491 0.00057624 0.03094 0.0287925 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.65 0.151238 0.131217 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.21 0.06 0.13 -1 -1 0.21 0.0227629 0.0197732 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.49 vpr 63.44 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.6 MiB 1.32 1254 15203 3953 9019 2231 63.4 MiB 0.16 0.00 4.1318 -129.307 -4.1318 4.1318 0.68 0.000756186 0.000703455 0.0608763 0.056558 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.46 0.207846 0.18168 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0295208 0.0256722 171 88 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.26 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30656 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1381 16974 4929 9664 2381 63.3 MiB 0.16 0.00 5.29596 -177.687 -5.29596 5.29596 0.66 0.000772564 0.000717011 0.0675648 0.0626923 36 3381 23 6.89349e+06 366440 648988. 2245.63 1.80 0.222756 0.195445 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0331964 0.0290045 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.42 vpr 63.41 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30688 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.63 1376 18180 6112 9250 2818 63.4 MiB 0.20 0.00 5.13064 -174.448 -5.13064 5.13064 0.67 0.000775111 0.000719759 0.0749303 0.0695437 34 3618 39 6.89349e+06 366440 618332. 2139.56 1.94 0.24831 0.217417 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0338205 0.0296997 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.47 vpr 63.02 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30520 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1013 14221 3579 9597 1045 63.0 MiB 0.14 0.00 4.30029 -147.314 -4.30029 4.30029 0.67 0.000686692 0.000637367 0.0565328 0.0525669 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.68 0.17555 0.154024 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0256387 0.0222136 141 65 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.81 vpr 63.06 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30408 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1168 10501 2617 6825 1059 63.1 MiB 0.10 0.00 4.23729 -139.76 -4.23729 4.23729 0.80 0.000599761 0.000555292 0.0325614 0.0299336 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.54 0.169565 0.146518 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0270898 0.0234813 146 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.12 vpr 63.22 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30368 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1158 18043 5948 9235 2860 63.2 MiB 0.18 0.00 3.9471 -130.183 -3.9471 3.9471 0.68 0.000724236 0.000672838 0.0664106 0.0616246 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.64 0.206139 0.181084 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0301111 0.0261603 164 60 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.67 vpr 62.96 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30508 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.14 970 11031 2869 6600 1562 63.0 MiB 0.10 0.00 4.51585 -132.654 -4.51585 4.51585 0.65 0.00067334 0.000626267 0.0405629 0.0377353 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.00 0.121685 0.106867 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0269296 0.0234438 145 34 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.38 vpr 62.90 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30156 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 1.78 1087 9083 2557 5800 726 62.9 MiB 0.09 0.00 4.36859 -139.508 -4.36859 4.36859 0.78 0.000506865 0.000467057 0.0344534 0.0319675 36 2461 21 6.89349e+06 295971 648988. 2245.63 1.88 0.15765 0.137056 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0230874 0.020111 136 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.91 vpr 63.06 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1180 8827 2269 5871 687 63.1 MiB 0.10 0.00 3.8008 -130.21 -3.8008 3.8008 0.65 0.000697827 0.000648362 0.0353878 0.0328445 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.69 0.170767 0.148019 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0245359 0.0216055 150 91 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.11 vpr 63.02 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30152 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.66 1032 15180 4497 8229 2454 63.0 MiB 0.14 0.00 4.35445 -144.691 -4.35445 4.35445 0.67 0.000702391 0.000651045 0.0479968 0.0444774 28 3116 24 6.89349e+06 521472 531479. 1839.03 1.79 0.136155 0.120052 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0293902 0.025461 151 4 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.56 vpr 63.25 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30588 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1263 12351 3110 8140 1101 63.2 MiB 0.14 0.00 4.78058 -162.367 -4.78058 4.78058 0.66 0.000779867 0.000724425 0.0514792 0.0478223 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.67 0.216361 0.188747 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0306781 0.0267664 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.63 vpr 63.27 MiB 0.04 7044 -1 -1 1 0.04 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1405 10743 3107 6650 986 63.3 MiB 0.13 0.00 4.9601 -169.723 -4.9601 4.9601 0.66 0.000782458 0.000726051 0.0442406 0.0410427 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.37 0.193773 0.168572 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.21 0.11 0.15 -1 -1 0.21 0.0350189 0.0304775 171 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.76 vpr 63.09 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1306 10087 2279 7315 493 63.1 MiB 0.12 0.00 4.3224 -145.723 -4.3224 4.3224 0.65 0.000765612 0.00071099 0.0387853 0.0359745 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.34 0.205393 0.178093 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.27 0.11 0.15 -1 -1 0.27 0.0317707 0.0278175 172 65 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.53 vpr 62.43 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.50 814 9181 2458 5686 1037 62.4 MiB 0.09 0.00 3.809 -121.257 -3.809 3.809 0.66 0.000618892 0.000575783 0.0342749 0.0318868 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.44 0.156651 0.136129 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0219365 0.0190904 122 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.56 vpr 63.11 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30544 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1287 12568 3293 7724 1551 63.1 MiB 0.13 0.00 5.05854 -160.711 -5.05854 5.05854 0.66 0.000740285 0.000687467 0.0501106 0.0465692 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.77 0.196956 0.171803 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0308118 0.0267599 165 63 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.81 vpr 63.68 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30840 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.8 MiB 1.04 1479 11383 3062 7492 829 63.7 MiB 0.13 0.00 4.57601 -155.587 -4.57601 4.57601 0.67 0.00105856 0.000978628 0.0495089 0.0460141 36 3485 21 6.89349e+06 422815 648988. 2245.63 1.98 0.214935 0.186912 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0353186 0.0305541 204 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.10 vpr 63.36 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30688 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.44 1301 16445 5093 9336 2016 63.4 MiB 0.18 0.00 5.17904 -171.173 -5.17904 5.17904 0.67 0.000943993 0.000877503 0.0661523 0.0613718 36 3067 22 6.89349e+06 408721 648988. 2245.63 1.83 0.221465 0.193967 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.23 0.11 0.17 -1 -1 0.23 0.0385531 0.0335524 186 94 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.86 vpr 63.21 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30564 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1252 12351 3368 8179 804 63.2 MiB 0.14 0.00 4.25135 -136.296 -4.25135 4.25135 0.66 0.000772645 0.00071895 0.0498195 0.0462778 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.24 0.226691 0.196903 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.26 0.08 0.14 -1 -1 0.26 0.0278975 0.024293 175 92 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 6.30 vpr 63.30 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30676 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1349 14160 4180 8412 1568 63.3 MiB 0.16 0.00 5.11687 -171.214 -5.11687 5.11687 0.67 0.000781613 0.000725574 0.0604479 0.0561111 34 3581 27 6.89349e+06 366440 618332. 2139.56 1.96 0.21853 0.19107 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0309337 0.0270696 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.08 vpr 63.16 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30424 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1337 17431 5595 9274 2562 63.2 MiB 0.17 0.00 4.49555 -136.793 -4.49555 4.49555 0.67 0.000845239 0.000792664 0.0648763 0.0602063 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.49 0.214704 0.187933 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0293322 0.0255011 170 88 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.50 vpr 62.27 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 0.48 851 10744 3065 7267 412 62.3 MiB 0.11 0.00 3.7888 -133.854 -3.7888 3.7888 0.66 0.000614028 0.000571497 0.0415225 0.0385499 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.39 0.163716 0.142801 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0225579 0.019614 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.57 vpr 63.27 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30548 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1266 16411 5685 8276 2450 63.3 MiB 0.18 0.00 5.17997 -174.972 -5.17997 5.17997 0.65 0.000779496 0.000723423 0.0675635 0.0627493 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.32 0.22524 0.197591 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0327204 0.0285389 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.35 vpr 63.37 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30524 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.5 MiB 2.40 1294 9791 2343 6863 585 63.4 MiB 0.12 0.00 5.01095 -168.663 -5.01095 5.01095 0.67 0.000779052 0.000723442 0.0432461 0.040209 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.16 0.205585 0.179192 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0313068 0.0272672 176 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.51 vpr 62.70 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.1 MiB 1.47 971 13043 4021 6975 2047 62.7 MiB 0.12 0.00 3.51612 -116.281 -3.51612 3.51612 0.65 0.000637815 0.000592886 0.0486843 0.0453133 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.39 0.17343 0.15127 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0261222 0.022552 128 55 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.24 vpr 62.42 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.71 734 11604 2641 7381 1582 62.4 MiB 0.11 0.00 3.8218 -128.161 -3.8218 3.8218 0.65 0.000600294 0.000558988 0.0423281 0.0394172 32 2249 20 6.89349e+06 239595 586450. 2029.24 0.86 0.112232 0.099313 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0239617 0.0207526 112 4 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.47 vpr 63.23 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30260 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 1.29 1234 14147 4178 8444 1525 63.2 MiB 0.14 0.00 4.31849 -141.833 -4.31849 4.31849 0.66 0.00074055 0.000688048 0.0553447 0.051401 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.51 0.203815 0.178228 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0334719 0.029112 158 59 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.88 vpr 63.21 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 30268 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 1.42 1314 10341 2747 6842 752 63.2 MiB 0.12 0.00 5.10864 -160.907 -5.10864 5.10864 0.65 0.00077034 0.000714279 0.0430161 0.0398155 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.81 0.201561 0.175094 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0304018 0.0264744 170 88 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.19 vpr 63.27 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30568 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.4 MiB 0.72 1292 15419 3797 10101 1521 63.3 MiB 0.16 0.00 4.85078 -164.688 -4.85078 4.85078 0.65 0.000800683 0.000744646 0.053115 0.0492494 34 3291 24 6.89349e+06 577847 618332. 2139.56 1.74 0.201032 0.175853 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.23 0.10 0.09 -1 -1 0.23 0.0326577 0.0284132 183 3 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.83 vpr 63.21 MiB 0.02 7024 -1 -1 1 0.05 -1 -1 30564 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1124 9395 2323 6078 994 63.2 MiB 0.11 0.00 3.8961 -125.22 -3.8961 3.8961 0.66 0.000718096 0.000667181 0.0375023 0.0348973 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.63 0.196532 0.170741 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0296547 0.0257776 160 59 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 4.94 vpr 62.48 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 24.0 MiB 1.09 915 13031 5095 6351 1585 62.5 MiB 0.11 0.00 4.34539 -126.288 -4.34539 4.34539 0.66 0.000573393 0.000534107 0.0446719 0.0415869 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.31 0.15341 0.133857 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.19 0.04 0.09 -1 -1 0.19 0.0135077 0.0118618 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.91 vpr 63.32 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1748 16302 4126 10044 2132 63.3 MiB 0.21 0.00 5.09354 -170.611 -5.09354 5.09354 0.69 0.000913683 0.000848699 0.0754689 0.0700495 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.23 0.263129 0.230048 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.21 0.11 0.10 -1 -1 0.21 0.0376485 0.0326776 219 95 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.86 vpr 63.34 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30612 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.7 MiB 1.93 1467 12661 2948 8528 1185 63.3 MiB 0.14 0.00 5.14784 -166.315 -5.14784 5.14784 0.65 0.000835935 0.000777052 0.0524276 0.0487052 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.12 0.239097 0.208474 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.22 0.10 0.15 -1 -1 0.22 0.0365614 0.0317343 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.25 vpr 63.07 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1133 9914 2313 7132 469 63.1 MiB 0.10 0.00 4.28535 -139.234 -4.28535 4.28535 0.66 0.000690364 0.000641708 0.0385024 0.0357575 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.72 0.192896 0.167087 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254125 0.0221273 150 89 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.83 vpr 63.18 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1114 12951 3612 7720 1619 63.2 MiB 0.14 0.00 4.53785 -150.754 -4.53785 4.53785 0.71 0.000715818 0.000664725 0.0514777 0.0477639 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.45 0.195754 0.170853 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278901 0.0242964 151 34 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.97 vpr 63.52 MiB 0.05 7276 -1 -1 1 0.04 -1 -1 30808 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.9 MiB 1.43 1475 19413 5609 11709 2095 63.5 MiB 0.22 0.00 4.64537 -154.979 -4.64537 4.64537 0.67 0.000848432 0.000774615 0.0824658 0.0764143 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.68 0.259517 0.227124 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0358803 0.0311398 193 64 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.22 vpr 63.11 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30372 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1223 16773 5429 8542 2802 63.1 MiB 0.17 0.00 4.28025 -135.791 -4.28025 4.28025 0.67 0.000710746 0.000659044 0.0645845 0.0599933 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.70 0.211616 0.185501 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0254733 0.0221865 162 61 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 6.20 vpr 63.20 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30520 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.3 MiB 1.34 1373 17066 5393 8866 2807 63.2 MiB 0.19 0.00 5.03124 -168.563 -5.03124 5.03124 0.65 0.000771233 0.000715691 0.0662816 0.0615148 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.07 0.235689 0.20599 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0321644 0.0278831 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.03 vpr 63.36 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1418 13147 3928 7969 1250 63.4 MiB 0.14 0.00 3.78872 -134.171 -3.78872 3.78872 0.65 0.000773749 0.000718387 0.0523408 0.0485918 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.58 0.204366 0.178316 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0316773 0.0276089 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.10 vpr 62.51 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30564 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.22 802 14322 5252 6511 2559 62.5 MiB 0.12 0.00 3.809 -119.785 -3.809 3.809 0.66 0.000599199 0.000557055 0.0497353 0.0462152 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.30 0.168639 0.147509 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.022427 0.0194646 118 34 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.27 vpr 62.84 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.2 MiB 0.99 1059 7038 1561 5080 397 62.8 MiB 0.08 0.00 4.31213 -129.707 -4.31213 4.31213 0.67 0.000689935 0.000643465 0.0278587 0.0259047 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.60 0.165497 0.142971 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0228659 0.0199174 136 82 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.02 vpr 63.19 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30428 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 1144 15255 6301 7544 1410 63.2 MiB 0.15 0.00 4.60015 -151.135 -4.60015 4.60015 0.71 0.000724668 0.000673279 0.06073 0.0565168 36 2816 23 6.89349e+06 338252 648988. 2245.63 1.86 0.204606 0.179496 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0269208 0.0234775 154 34 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.03 vpr 62.59 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 23.9 MiB 1.09 955 13610 4945 6467 2198 62.6 MiB 0.12 0.00 3.4839 -106.878 -3.4839 3.4839 0.67 0.00060445 0.000561901 0.0487858 0.0453608 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.31 0.168695 0.147071 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0214843 0.0186098 123 56 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.94 vpr 62.61 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1000 12186 3922 6390 1874 62.6 MiB 0.12 0.00 3.839 -135.657 -3.839 3.839 0.67 0.0006523 0.000605655 0.0467834 0.0434786 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.58 0.17476 0.15239 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0267946 0.0232994 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.38 vpr 63.18 MiB 0.02 7012 -1 -1 1 0.05 -1 -1 30448 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1201 16773 5048 9300 2425 63.2 MiB 0.18 0.00 4.20938 -143.511 -4.20938 4.20938 0.72 0.000751088 0.000697637 0.0707558 0.0657831 36 2859 23 6.89349e+06 380534 648988. 2245.63 1.91 0.222262 0.195433 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.031477 0.0274093 164 64 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.20 vpr 62.47 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30272 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.27 877 7953 1966 5579 408 62.5 MiB 0.08 0.00 3.31212 -108.619 -3.31212 3.31212 0.63 0.000627417 0.000584103 0.0293072 0.0272561 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.34 0.153871 0.133352 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.20 0.06 0.10 -1 -1 0.20 0.0223677 0.019471 125 55 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.08 vpr 63.14 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30456 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1287 17711 6388 9306 2017 63.1 MiB 0.19 0.00 4.20729 -140.905 -4.20729 4.20729 0.67 0.000575323 0.000526356 0.0654438 0.0603268 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.81 0.211317 0.185098 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0284906 0.0248235 162 65 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.69 vpr 63.29 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.6 MiB 1.63 1441 16921 4862 9627 2432 63.3 MiB 0.18 0.00 5.00842 -163.951 -5.00842 5.00842 0.68 0.000794888 0.000737576 0.0661728 0.0612932 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.25 0.225335 0.197201 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0352343 0.0305635 185 93 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.62 vpr 62.87 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1150 11245 3095 6987 1163 62.9 MiB 0.11 0.00 3.53115 -123.245 -3.53115 3.53115 0.67 0.000663854 0.000615866 0.0421587 0.0391318 34 2943 19 6.89349e+06 295971 618332. 2139.56 1.68 0.172017 0.149719 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0224854 0.0196273 137 61 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.59 vpr 62.94 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.3 MiB 1.18 1121 13443 3684 8167 1592 62.9 MiB 0.14 0.00 3.817 -131.483 -3.817 3.817 0.67 0.000682202 0.000634343 0.0513523 0.0476972 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.69 0.189867 0.166386 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.20 0.04 0.09 -1 -1 0.20 0.0146559 0.0129044 139 63 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.79 vpr 63.17 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30728 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.3 MiB 1.29 1272 13147 3375 7731 2041 63.2 MiB 0.13 0.00 4.61515 -160.202 -4.61515 4.61515 0.67 0.000777982 0.000722589 0.0523372 0.0486044 36 3093 23 6.89349e+06 380534 648988. 2245.63 1.74 0.208077 0.181763 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0297772 0.0259352 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.28 vpr 62.97 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30540 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.2 MiB 1.57 1161 15639 4794 8641 2204 63.0 MiB 0.16 0.00 3.67945 -117.378 -3.67945 3.67945 0.66 0.000714878 0.000664131 0.0604291 0.0561476 30 2520 23 6.89349e+06 366440 556674. 1926.21 0.93 0.14709 0.130266 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0263567 0.0229532 157 62 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 6.16 vpr 63.41 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30624 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.7 MiB 1.26 1517 16893 4857 9388 2648 63.4 MiB 0.18 0.00 4.97404 -168.093 -4.97404 4.97404 0.68 0.000862907 0.000802851 0.0726144 0.0674697 36 3623 47 6.89349e+06 408721 648988. 2245.63 1.95 0.271562 0.236577 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.24 0.10 0.14 -1 -1 0.24 0.0352143 0.0305116 203 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.94 vpr 62.39 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.7 MiB 0.54 803 5149 1186 3599 364 62.4 MiB 0.06 0.00 2.99217 -104.791 -2.99217 2.99217 0.66 0.000579995 0.00053995 0.0189923 0.0176763 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.83 0.0848815 0.074009 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0235743 0.0204233 104 4 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.11 vpr 63.33 MiB 0.05 7080 -1 -1 1 0.04 -1 -1 30320 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1396 18101 5815 9868 2418 63.3 MiB 0.18 0.00 5.41163 -177.078 -5.41163 5.41163 0.65 0.000790206 0.000734033 0.0713302 0.0661524 34 3746 48 6.89349e+06 394628 618332. 2139.56 1.81 0.254653 0.222124 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0346148 0.0300479 179 92 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.39 vpr 63.10 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.4 MiB 1.96 1193 17248 5142 9796 2310 63.1 MiB 0.17 0.00 4.89074 -162.672 -4.89074 4.89074 0.68 0.000715418 0.000663996 0.0659456 0.0611808 36 3213 26 6.89349e+06 338252 648988. 2245.63 2.61 0.215899 0.189306 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0353093 0.0306815 161 96 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 5.67 vpr 63.15 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1163 10187 2742 6187 1258 63.1 MiB 0.12 0.00 3.75965 -128.904 -3.75965 3.75965 0.66 0.000765216 0.000710701 0.0427696 0.0397187 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.47 0.198324 0.17252 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286161 0.0249786 170 65 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.93 vpr 63.37 MiB 0.05 7312 -1 -1 1 0.04 -1 -1 30924 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.9 MiB 1.50 1578 21409 7235 11132 3042 63.4 MiB 0.24 0.00 5.18464 -176.869 -5.18464 5.18464 0.65 0.000904094 0.000839176 0.0913222 0.0847569 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.47 0.271983 0.238701 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0377031 0.0327356 224 96 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.73 vpr 62.16 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30292 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.5 MiB 0.98 774 12860 4018 7384 1458 62.2 MiB 0.10 0.00 3.08706 -94.2237 -3.08706 3.08706 0.66 0.000538033 0.000501127 0.0429908 0.0399963 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.18 0.14515 0.1267 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.20 0.04 0.11 -1 -1 0.20 0.0164764 0.0143541 93 56 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.05 vpr 62.50 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 936 13763 4663 7110 1990 62.5 MiB 0.12 0.00 4.23979 -138.497 -4.23979 4.23979 0.65 0.00062033 0.000577311 0.0493624 0.0459567 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.34 0.170095 0.148815 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0267058 0.0231481 124 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.85 vpr 62.80 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1009 8448 2021 6048 379 62.8 MiB 0.10 0.00 4.33609 -148.866 -4.33609 4.33609 0.67 0.000651327 0.000605289 0.0330376 0.0307111 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.17 0.162991 0.141553 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0277595 0.0240871 129 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 4.99 vpr 62.28 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30396 -1 -1 24 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.11 636 10231 2621 6138 1472 62.3 MiB 0.09 0.00 3.787 -96.2626 -3.787 3.787 0.65 0.000532951 0.00049636 0.0326782 0.0303697 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.29 0.13608 0.117899 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0214047 0.0184975 107 34 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.26 vpr 63.37 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30512 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1453 17273 5845 8574 2854 63.4 MiB 0.19 0.00 4.55715 -154.068 -4.55715 4.55715 0.65 0.000623687 0.00057108 0.0635065 0.0586403 38 3543 25 6.89349e+06 394628 678818. 2348.85 1.99 0.225873 0.197435 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.23 0.11 0.17 -1 -1 0.23 0.0344365 0.0299281 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.44 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.8 MiB 1.74 1285 13758 3623 8223 1912 63.4 MiB 0.15 0.00 4.84654 -156.987 -4.84654 4.84654 0.66 0.000781438 0.000725232 0.0564222 0.0523852 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.80 0.236814 0.206271 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0408528 0.0354271 183 94 29 29 93 31 +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.95 vpr 55.27 MiB 0.04 6676 -1 -1 14 0.26 -1 -1 32876 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1354 8532 2094 5512 926 55.6 MiB 0.14 0.00 8.19013 -165.934 -8.19013 8.19013 1.05 0.00158061 0.00145029 0.0717353 0.065761 28 3693 28 6.55708e+06 313430 500653. 1732.36 5.28 0.53329 0.478568 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0646335 0.0584114 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 8.13 vpr 55.40 MiB 0.02 6852 -1 -1 14 0.28 -1 -1 32752 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.41 1292 15824 4267 9033 2524 55.5 MiB 0.23 0.00 8.12966 -162.719 -8.12966 8.12966 1.05 0.00156893 0.00143869 0.124562 0.114222 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.81 0.345944 0.31248 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0590807 0.053456 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 8.11 vpr 55.46 MiB 0.05 6648 -1 -1 11 0.21 -1 -1 32868 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 17.1 MiB 0.34 1266 13157 3416 7667 2074 55.6 MiB 0.20 0.00 6.4728 -136.716 -6.4728 6.4728 1.07 0.00155511 0.00142484 0.10819 0.0990878 36 3746 35 6.55708e+06 301375 612192. 2118.31 20.01 0.73914 0.663365 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0666209 0.0602227 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.29 vpr 55.38 MiB 0.02 6828 -1 -1 12 0.33 -1 -1 32788 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1320 8130 2002 5291 837 55.5 MiB 0.13 0.00 7.77357 -147.192 -7.77357 7.77357 1.06 0.0015693 0.00143952 0.068828 0.0631923 36 3542 23 6.55708e+06 349595 612192. 2118.31 5.81 0.520222 0.467177 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0568462 0.051505 185 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 8.23 vpr 55.54 MiB 0.06 6780 -1 -1 13 0.31 -1 -1 32904 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57504 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 17.5 MiB 0.42 1568 9951 2486 6481 984 56.2 MiB 0.17 0.00 7.68511 -161.036 -7.68511 7.68511 1.05 0.00182242 0.00167093 0.0887681 0.0814162 30 4458 47 6.55708e+06 385760 526063. 1820.29 2.80 0.40244 0.363148 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0723155 0.0655736 223 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.87 vpr 55.42 MiB 0.04 6836 -1 -1 12 0.27 -1 -1 32804 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 16.9 MiB 0.46 1500 9773 2280 6498 995 55.8 MiB 0.15 0.00 7.53766 -152.093 -7.53766 7.53766 1.10 0.00168294 0.00154249 0.07802 0.0714763 36 3688 23 6.55708e+06 409870 612192. 2118.31 3.42 0.443701 0.399337 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0557222 0.0506649 209 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.44 vpr 55.06 MiB 0.04 6600 -1 -1 12 0.20 -1 -1 32292 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 16.4 MiB 0.27 1024 5945 1385 4013 547 54.9 MiB 0.11 0.00 7.15274 -128.455 -7.15274 7.15274 1.07 0.00119071 0.00109273 0.0512681 0.0471054 28 3014 27 6.55708e+06 325485 500653. 1732.36 2.60 0.218082 0.196302 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0428581 0.0387766 136 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 8.79 vpr 55.01 MiB 0.05 6668 -1 -1 11 0.18 -1 -1 32868 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1220 9679 2547 5973 1159 55.4 MiB 0.14 0.00 6.45772 -132.139 -6.45772 6.45772 1.05 0.00145854 0.00133623 0.0732423 0.0670701 36 3012 18 6.55708e+06 337540 612192. 2118.31 5.63 0.601053 0.538043 22750 144809 -1 2688 17 1131 3571 200803 45790 5.46178 5.46178 -126.123 -5.46178 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0527168 0.0477184 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.15 vpr 55.25 MiB 0.04 6496 -1 -1 12 0.17 -1 -1 32452 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1146 12373 3633 6385 2355 55.1 MiB 0.16 0.00 7.00181 -148.703 -7.00181 7.00181 1.04 0.00129771 0.00118859 0.086291 0.0790342 28 3391 24 6.55708e+06 301375 500653. 1732.36 2.36 0.258475 0.233153 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.22 0.12 0.15 -1 -1 0.22 0.0496111 0.0449457 145 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.85 vpr 55.20 MiB 0.04 6472 -1 -1 13 0.19 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1098 10979 3065 6306 1608 55.1 MiB 0.16 0.00 7.23855 -159.771 -7.23855 7.23855 1.05 0.00139452 0.00127789 0.0810209 0.0741114 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.66 0.270877 0.243859 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0506487 0.0458149 162 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.58 vpr 54.81 MiB 0.04 6528 -1 -1 12 0.17 -1 -1 32632 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 16.5 MiB 0.36 1073 8868 2309 4974 1585 54.9 MiB 0.12 0.00 7.23424 -146.32 -7.23424 7.23424 0.79 0.00118902 0.00108846 0.061107 0.055947 28 2862 44 6.55708e+06 265210 500653. 1732.36 2.17 0.259268 0.23296 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0408665 0.0369637 132 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.14 vpr 55.05 MiB 0.03 6580 -1 -1 12 0.15 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 971 12175 3572 6038 2565 54.9 MiB 0.16 0.00 6.75009 -143.946 -6.75009 6.75009 1.05 0.00121301 0.00111019 0.0828367 0.0757274 36 2632 22 6.55708e+06 253155 612192. 2118.31 4.88 0.417425 0.374254 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0375322 0.0339784 138 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.45 vpr 55.28 MiB 0.04 6668 -1 -1 13 0.28 -1 -1 32828 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1456 5419 862 4216 341 55.7 MiB 0.10 0.00 7.90792 -162.801 -7.90792 7.90792 1.04 0.00169128 0.00154591 0.0491411 0.0450844 28 4018 41 6.55708e+06 361650 500653. 1732.36 9.66 0.66259 0.594509 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0658684 0.0597542 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.84 vpr 55.36 MiB 0.05 6720 -1 -1 14 0.31 -1 -1 33244 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 17.1 MiB 0.48 1487 7653 1685 5037 931 55.8 MiB 0.13 0.00 8.67599 -179.222 -8.67599 8.67599 1.05 0.00172626 0.00158108 0.068036 0.0623941 34 4030 26 6.55708e+06 349595 585099. 2024.56 2.53 0.367208 0.330782 22462 138074 -1 3285 20 1626 4702 256491 60555 7.53782 7.53782 -169.858 -7.53782 0 0 742403. 2568.87 0.26 0.17 0.22 -1 -1 0.26 0.0749868 0.0681645 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.96 vpr 54.97 MiB 0.04 6508 -1 -1 11 0.17 -1 -1 32488 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1095 15366 4454 8585 2327 55.2 MiB 0.19 0.00 6.42654 -129.9 -6.42654 6.42654 1.06 0.0012954 0.00118776 0.102823 0.0942001 36 2830 20 6.55708e+06 349595 612192. 2118.31 2.20 0.320956 0.289531 22750 144809 -1 2387 14 976 2696 166897 37529 5.60952 5.60952 -124.13 -5.60952 0 0 782063. 2706.10 0.36 0.10 0.23 -1 -1 0.36 0.0414205 0.0376803 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.77 vpr 55.51 MiB 0.05 6668 -1 -1 12 0.27 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 16.8 MiB 0.51 1497 7523 1547 5261 715 55.8 MiB 0.13 0.00 7.78498 -159.33 -7.78498 7.78498 1.07 0.00175619 0.00160731 0.0659455 0.0604299 36 3844 37 6.55708e+06 409870 612192. 2118.31 16.38 0.737808 0.6622 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.063637 0.0578131 213 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.83 vpr 55.27 MiB 0.03 6744 -1 -1 13 0.26 -1 -1 32756 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.28 1448 9075 2050 5697 1328 55.9 MiB 0.15 0.00 8.28129 -168.719 -8.28129 8.28129 1.07 0.0017541 0.00160687 0.0779001 0.0713393 30 3798 28 6.55708e+06 385760 526063. 1820.29 2.44 0.327316 0.295523 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.07 0.19 -1 -1 0.22 0.0288488 0.0261221 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.84 vpr 54.79 MiB 0.06 6560 -1 -1 12 0.15 -1 -1 32644 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 16.5 MiB 0.50 1089 8402 1864 6112 426 55.0 MiB 0.12 0.00 7.26292 -158.375 -7.26292 7.26292 1.05 0.00129452 0.00118558 0.0616027 0.0565106 28 3024 19 6.55708e+06 265210 500653. 1732.36 2.07 0.222108 0.200329 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0440985 0.0399784 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.87 vpr 54.22 MiB 0.04 6396 -1 -1 10 0.10 -1 -1 32300 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 16.1 MiB 0.13 786 5244 1130 3909 205 54.6 MiB 0.07 0.00 5.1986 -117.15 -5.1986 5.1986 1.05 0.00107964 0.00100519 0.0323955 0.029672 34 2066 32 6.55708e+06 241100 585099. 2024.56 2.18 0.197464 0.175957 22462 138074 -1 1763 15 662 1690 102174 24087 4.711 4.711 -115.001 -4.711 0 0 742403. 2568.87 0.26 0.07 0.22 -1 -1 0.26 0.0297451 0.0267504 96 88 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.57 vpr 54.89 MiB 0.05 6572 -1 -1 13 0.16 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1123 5079 946 3658 475 55.2 MiB 0.08 0.00 7.44701 -156.373 -7.44701 7.44701 1.11 0.00125172 0.00114618 0.0383243 0.0350854 26 3256 40 6.55708e+06 289320 477104. 1650.88 6.85 0.397369 0.355926 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.23 0.11 0.17 -1 -1 0.23 0.0495813 0.0448564 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.35 vpr 55.64 MiB 0.05 6784 -1 -1 13 0.30 -1 -1 32992 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1494 10031 2522 6626 883 55.5 MiB 0.16 0.00 7.77584 -154.394 -7.77584 7.77584 1.05 0.00169368 0.00155236 0.0838518 0.0767855 28 4288 44 6.55708e+06 373705 500653. 1732.36 3.52 0.37137 0.334867 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0731536 0.0661888 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 13.77 vpr 55.22 MiB 0.05 6776 -1 -1 13 0.28 -1 -1 33268 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 17.0 MiB 0.42 1626 7973 1601 5735 637 55.8 MiB 0.13 0.00 7.9648 -163.763 -7.9648 7.9648 1.05 0.00168163 0.00154207 0.0645773 0.0591789 34 4543 38 6.55708e+06 409870 585099. 2024.56 13.37 0.687735 0.616575 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.27 0.29 0.23 -1 -1 0.27 0.0932029 0.0842865 207 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.36 vpr 54.27 MiB 0.02 6500 -1 -1 9 0.09 -1 -1 32228 -1 -1 21 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 15.8 MiB 0.28 710 10557 2762 6888 907 54.5 MiB 0.10 0.00 4.66154 -94.5374 -4.66154 4.66154 1.05 0.000794834 0.000728345 0.0514945 0.0471739 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.47 0.167994 0.15026 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0240516 0.0215726 83 73 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 7.31 vpr 55.36 MiB 0.05 6568 -1 -1 13 0.30 -1 -1 32732 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1530 4780 793 3650 337 55.9 MiB 0.09 0.00 7.84695 -156.636 -7.84695 7.84695 1.04 0.00169359 0.00155103 0.0445193 0.0408285 26 4457 46 6.55708e+06 361650 477104. 1650.88 9.40 0.580959 0.52066 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.21 0.99 0.17 -1 -1 0.21 0.230626 0.207067 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.91 vpr 54.23 MiB 0.04 6380 -1 -1 8 0.09 -1 -1 31196 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55496 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 15.6 MiB 0.20 436 8831 2193 4716 1922 54.2 MiB 0.09 0.00 4.66158 -87.3613 -4.66158 4.66158 1.09 0.000805986 0.000737532 0.0431038 0.0395112 30 1374 37 6.55708e+06 204935 526063. 1820.29 4.39 0.292614 0.25928 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.25 0.05 0.20 -1 -1 0.25 0.023032 0.0206286 77 61 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.53 vpr 55.39 MiB 0.05 6804 -1 -1 15 0.24 -1 -1 33024 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.19 1127 8999 2110 5455 1434 55.0 MiB 0.14 0.00 8.78748 -168.447 -8.78748 8.78748 1.05 0.00143957 0.00132107 0.070012 0.0642632 30 3036 31 6.55708e+06 301375 526063. 1820.29 8.21 0.489584 0.439016 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0568623 0.0513379 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.87 vpr 55.17 MiB 0.04 6788 -1 -1 12 0.25 -1 -1 32784 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 16.9 MiB 0.23 1426 7871 1871 5355 645 55.7 MiB 0.14 0.00 6.97141 -150.212 -6.97141 6.97141 1.09 0.00172873 0.00158362 0.0703352 0.064457 30 3857 27 6.55708e+06 373705 526063. 1820.29 13.16 0.575593 0.516835 21886 126133 -1 3289 24 1509 4913 363335 114600 6.49978 6.49978 -148.902 -6.49978 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0840065 0.0758888 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 6.15 vpr 55.17 MiB 0.05 6776 -1 -1 13 0.27 -1 -1 32692 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1403 8993 2077 6178 738 55.7 MiB 0.15 0.00 7.73601 -160.617 -7.73601 7.73601 1.06 0.00161024 0.00147568 0.0747439 0.0684968 30 3593 32 6.55708e+06 337540 526063. 1820.29 2.28 0.313714 0.2829 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0610573 0.0553391 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 8.42 vpr 54.87 MiB 0.04 6484 -1 -1 12 0.16 -1 -1 32308 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1093 9158 2327 6239 592 55.0 MiB 0.13 0.00 6.471 -143.803 -6.471 6.471 1.07 0.00129791 0.00118399 0.0668344 0.061086 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.96 0.285103 0.256331 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0509788 0.0460288 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.63 vpr 54.66 MiB 0.04 6636 -1 -1 11 0.15 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1045 6781 1469 4387 925 55.1 MiB 0.09 0.00 6.28146 -130.954 -6.28146 6.28146 1.05 0.00116036 0.00106273 0.0407445 0.0371836 30 2354 17 6.55708e+06 277265 526063. 1820.29 3.57 0.309003 0.276124 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0326225 0.0296412 128 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.48 vpr 55.14 MiB 0.05 6516 -1 -1 11 0.16 -1 -1 32408 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1079 8535 1915 5707 913 55.0 MiB 0.12 0.00 6.57292 -128.193 -6.57292 6.57292 1.07 0.00123926 0.00113506 0.0589558 0.0540407 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.89 0.27648 0.248847 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.24 0.17 0.21 -1 -1 0.24 0.0636049 0.0573838 142 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.89 vpr 55.09 MiB 0.02 6484 -1 -1 12 0.17 -1 -1 32576 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 16.7 MiB 0.20 1327 6716 1263 5020 433 55.4 MiB 0.11 0.00 7.20375 -160.021 -7.20375 7.20375 1.06 0.00149369 0.00137023 0.0533185 0.0489103 30 3050 19 6.55708e+06 337540 526063. 1820.29 4.13 0.463944 0.41578 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0564782 0.0508866 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.15 vpr 55.05 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32644 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1072 4244 722 3315 207 55.1 MiB 0.07 0.00 6.41894 -136.128 -6.41894 6.41894 1.06 0.00133016 0.00121814 0.0350244 0.0321211 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.62 0.217672 0.195604 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0584813 0.0527037 147 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 5.38 vpr 54.95 MiB 0.04 6576 -1 -1 10 0.14 -1 -1 32656 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 16.6 MiB 0.22 967 12733 4051 6442 2240 55.1 MiB 0.16 0.00 6.08886 -123.876 -6.08886 6.08886 1.05 0.00123814 0.00113338 0.0884426 0.0809489 32 2471 22 6.55708e+06 289320 554710. 1919.41 1.27 0.249715 0.225451 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.27 0.09 0.19 -1 -1 0.27 0.0378687 0.034373 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.88 vpr 55.84 MiB 0.05 6972 -1 -1 13 0.32 -1 -1 33208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 17.4 MiB 0.31 1621 5869 1104 4212 553 56.0 MiB 0.11 0.00 7.46683 -155.207 -7.46683 7.46683 1.07 0.00190053 0.00174227 0.0561222 0.0515117 30 3995 44 6.55708e+06 397815 526063. 1820.29 4.01 0.373151 0.336324 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.25 0.15 0.20 -1 -1 0.25 0.0694714 0.0631385 239 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 7.11 vpr 55.43 MiB 0.05 6840 -1 -1 13 0.31 -1 -1 33072 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1508 8283 1888 5355 1040 55.5 MiB 0.14 0.00 8.09706 -175.077 -8.09706 8.09706 1.05 0.00172376 0.00157927 0.073143 0.0670206 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.31 0.391396 0.352633 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0658884 0.0598027 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.12 vpr 54.86 MiB 0.04 6656 -1 -1 12 0.15 -1 -1 32712 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1096 12568 3446 6926 2196 55.0 MiB 0.16 0.00 6.66868 -144.132 -6.66868 6.66868 1.05 0.00126561 0.00115766 0.0850329 0.0776615 36 2895 29 6.55708e+06 301375 612192. 2118.31 5.07 0.486318 0.435683 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.29 0.10 0.23 -1 -1 0.29 0.0394496 0.0357878 150 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.95 vpr 55.47 MiB 0.05 6756 -1 -1 12 0.28 -1 -1 33128 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1489 8977 2020 5913 1044 55.8 MiB 0.15 0.00 8.10558 -165.766 -8.10558 8.10558 1.07 0.00173681 0.00159288 0.0751733 0.06891 36 3566 22 6.55708e+06 409870 612192. 2118.31 3.77 0.456193 0.410946 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0576066 0.0524406 219 219 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 6.77 vpr 55.67 MiB 0.05 6768 -1 -1 14 0.34 -1 -1 33092 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1460 6211 1289 4295 627 55.7 MiB 0.11 0.00 8.35283 -161.679 -8.35283 8.35283 1.06 0.00168193 0.00154283 0.0561068 0.0515012 30 3894 50 6.55708e+06 337540 526063. 1820.29 3.13 0.355242 0.31986 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0602465 0.0547082 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 7.58 vpr 55.23 MiB 0.05 6832 -1 -1 13 0.25 -1 -1 32968 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1364 9271 2151 5683 1437 55.4 MiB 0.15 0.00 7.40806 -157.551 -7.40806 7.40806 1.05 0.00152886 0.00139873 0.0760096 0.0694878 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.73 0.292682 0.263514 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.24 0.13 0.21 -1 -1 0.24 0.0555454 0.0503008 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.44 vpr 55.41 MiB 0.05 6772 -1 -1 12 0.25 -1 -1 32924 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 17.1 MiB 0.50 1374 13743 3666 8130 1947 55.6 MiB 0.22 0.00 6.76701 -143.203 -6.76701 6.76701 1.06 0.00160907 0.00147604 0.118125 0.108134 34 4200 50 6.55708e+06 361650 585099. 2024.56 5.02 0.530496 0.477192 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0681219 0.0616402 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 6.20 vpr 55.38 MiB 0.05 6852 -1 -1 12 0.19 -1 -1 32680 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.26 1252 8278 1977 5044 1257 55.2 MiB 0.13 0.00 7.19338 -143.847 -7.19338 7.19338 1.05 0.00145062 0.00133006 0.0653242 0.05988 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.36 0.239667 0.215853 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0514732 0.0465681 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.73 vpr 55.70 MiB 0.05 6824 -1 -1 14 0.43 -1 -1 32512 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.35 1757 10673 2583 7118 972 55.7 MiB 0.19 0.00 8.08019 -170.094 -8.08019 8.08019 1.07 0.00195504 0.00179308 0.0980598 0.0899095 38 4328 19 6.55708e+06 409870 638502. 2209.35 26.22 0.873873 0.786495 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.29 0.17 0.25 -1 -1 0.29 0.0744361 0.0676232 245 245 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 6.07 vpr 54.97 MiB 0.04 6612 -1 -1 11 0.18 -1 -1 32372 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1212 8009 2047 5116 846 55.2 MiB 0.12 0.00 6.43815 -136.573 -6.43815 6.43815 1.05 0.00139448 0.00127896 0.0605636 0.0555217 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.87 0.267 0.240119 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524819 0.0474584 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.19 vpr 55.34 MiB 0.05 6924 -1 -1 13 0.27 -1 -1 32904 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1339 4512 785 3381 346 55.4 MiB 0.09 0.00 8.23298 -156.44 -8.23298 8.23298 1.07 0.00157959 0.00143598 0.0410936 0.0378409 36 3361 29 6.55708e+06 325485 612192. 2118.31 4.60 0.406861 0.365593 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.27 0.12 0.25 -1 -1 0.27 0.054486 0.0494655 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.51 vpr 55.52 MiB 0.02 6744 -1 -1 12 0.28 -1 -1 32912 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1513 7973 1697 5548 728 55.6 MiB 0.15 0.00 7.05697 -153.444 -7.05697 7.05697 1.07 0.0017887 0.00163897 0.0691471 0.0634731 34 4231 45 6.55708e+06 409870 585099. 2024.56 4.11 0.475307 0.427004 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.26 0.29 0.22 -1 -1 0.26 0.0996208 0.0902505 227 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.98 vpr 55.26 MiB 0.04 6636 -1 -1 13 0.24 -1 -1 32884 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1286 13340 3362 8056 1922 55.3 MiB 0.21 0.00 7.57452 -156.038 -7.57452 7.57452 1.05 0.0015646 0.0014345 0.115043 0.105414 28 3767 45 6.55708e+06 337540 500653. 1732.36 10.52 0.636032 0.571323 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.22 0.22 0.18 -1 -1 0.22 0.0845574 0.0762556 184 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.97 vpr 55.26 MiB 0.05 6744 -1 -1 13 0.22 -1 -1 32792 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1203 12563 3367 6823 2373 55.5 MiB 0.18 0.00 7.77281 -162.033 -7.77281 7.77281 0.81 0.00150769 0.00138154 0.100441 0.0918099 30 2961 38 6.55708e+06 301375 526063. 1820.29 2.00 0.340434 0.306861 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0471758 0.0428135 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.77 vpr 55.30 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 32928 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 17.0 MiB 0.63 1416 10679 2747 6565 1367 55.8 MiB 0.17 0.00 6.86528 -151.049 -6.86528 6.86528 1.05 0.00171815 0.00157454 0.0902988 0.0826979 36 3519 46 6.55708e+06 373705 612192. 2118.31 6.27 0.672632 0.604984 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0600395 0.0546031 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.19 vpr 55.50 MiB 0.05 6872 -1 -1 13 0.28 -1 -1 32776 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1584 11223 2635 7117 1471 55.4 MiB 0.18 0.00 7.96921 -159.229 -7.96921 7.96921 1.05 0.00170389 0.00156205 0.0965322 0.088456 36 3876 21 6.55708e+06 349595 612192. 2118.31 5.38 0.461336 0.415327 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0620256 0.0563331 205 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.86 vpr 55.18 MiB 0.05 6716 -1 -1 14 0.29 -1 -1 32992 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 16.8 MiB 0.38 1228 9197 2464 5958 775 55.3 MiB 0.14 0.00 7.91369 -163.421 -7.91369 7.91369 1.09 0.00149985 0.00136412 0.0750989 0.0687248 28 3563 32 6.55708e+06 301375 500653. 1732.36 3.18 0.299666 0.269764 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0634698 0.0573009 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 8.33 vpr 55.39 MiB 0.04 6808 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 16.7 MiB 0.49 1537 7336 1683 5066 587 55.3 MiB 0.12 0.00 8.38432 -170.174 -8.38432 8.38432 1.06 0.00161444 0.00147957 0.062049 0.0568194 38 3362 32 6.55708e+06 361650 638502. 2209.35 5.58 0.582894 0.522708 23326 155178 -1 2978 15 1374 3965 188691 44200 7.21136 7.21136 -157.114 -7.21136 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0534632 0.0485525 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 8.32 vpr 55.71 MiB 0.03 6836 -1 -1 13 0.28 -1 -1 33120 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1531 8951 1993 6087 871 55.8 MiB 0.15 0.00 8.45326 -176.134 -8.45326 8.45326 1.09 0.00195245 0.00178634 0.0775527 0.0709209 38 3461 21 6.55708e+06 385760 638502. 2209.35 6.01 0.662124 0.594815 23326 155178 -1 2972 14 1250 4091 193064 44497 7.36616 7.36616 -162.608 -7.36616 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0565557 0.0515565 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.35 vpr 55.52 MiB 0.04 6780 -1 -1 12 0.33 -1 -1 32684 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1599 7323 1463 5208 652 55.7 MiB 0.15 0.00 7.47193 -159.786 -7.47193 7.47193 1.05 0.00160762 0.00150533 0.074181 0.0680498 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.25 0.41036 0.369942 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0647682 0.0588088 231 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.10 vpr 54.85 MiB 0.04 6616 -1 -1 11 0.13 -1 -1 32524 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 16.1 MiB 0.20 1043 10883 2916 6057 1910 54.8 MiB 0.14 0.00 5.95009 -133.303 -5.95009 5.95009 1.06 0.00115558 0.0010567 0.0734671 0.0671415 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.40 0.242775 0.218237 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0422223 0.0381188 127 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 6.80 vpr 55.13 MiB 0.04 6592 -1 -1 13 0.21 -1 -1 32792 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 16.6 MiB 0.45 1281 6211 1217 4524 470 55.3 MiB 0.10 0.00 7.73937 -166.104 -7.73937 7.73937 1.05 0.00138912 0.00127382 0.0473656 0.0434408 28 3459 26 6.55708e+06 325485 500653. 1732.36 2.44 0.236523 0.212649 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.23 0.15 0.21 -1 -1 0.23 0.0664926 0.0599691 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.44 vpr 55.89 MiB 0.05 6892 -1 -1 14 0.44 -1 -1 33080 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 17.7 MiB 0.37 1818 9380 1999 6471 910 56.0 MiB 0.17 0.00 8.82888 -183.788 -8.82888 8.82888 1.04 0.00203461 0.00186364 0.0885432 0.0811599 36 4579 30 6.55708e+06 433980 612192. 2118.31 5.45 0.566356 0.51094 22750 144809 -1 3780 17 1639 5179 293117 66152 7.76595 7.76595 -173.279 -7.76595 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0758363 0.0691542 267 267 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.82 vpr 55.12 MiB 0.04 6788 -1 -1 13 0.32 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 17.0 MiB 0.49 1477 8735 1981 6002 752 55.8 MiB 0.15 0.00 7.79483 -168.531 -7.79483 7.79483 1.05 0.00184633 0.00169238 0.0820304 0.0750558 26 4757 42 6.55708e+06 373705 477104. 1650.88 8.19 0.634428 0.570565 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.22 0.31 0.17 -1 -1 0.22 0.131845 0.119113 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.85 vpr 54.79 MiB 0.05 6540 -1 -1 11 0.16 -1 -1 32716 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 16.4 MiB 0.20 916 9943 3248 5072 1623 54.9 MiB 0.14 0.00 6.47975 -131.851 -6.47975 6.47975 1.07 0.00123955 0.00113508 0.0700747 0.0640659 36 2386 24 6.55708e+06 277265 612192. 2118.31 4.93 0.439965 0.394161 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.042569 0.0385803 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.65 vpr 55.66 MiB 0.05 7116 -1 -1 15 0.45 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1670 7867 1614 5465 788 56.0 MiB 0.15 0.00 8.70958 -179.837 -8.70958 8.70958 1.06 0.00195493 0.00179145 0.075405 0.0691463 36 4552 44 6.55708e+06 397815 612192. 2118.31 5.86 0.570721 0.514333 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.27 0.20 0.23 -1 -1 0.27 0.082099 0.0744768 241 241 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.44 vpr 55.55 MiB 0.04 6660 -1 -1 13 0.31 -1 -1 32980 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1370 12483 3068 7076 2339 55.6 MiB 0.21 0.00 7.72925 -154.988 -7.72925 7.72925 1.05 0.00172318 0.00157928 0.111599 0.10226 38 3720 24 6.55708e+06 349595 638502. 2209.35 19.56 0.821044 0.737552 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0626732 0.056938 207 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.78 vpr 55.03 MiB 0.04 6628 -1 -1 11 0.13 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1161 6718 1477 4583 658 54.9 MiB 0.10 0.00 6.62468 -135.028 -6.62468 6.62468 1.04 0.00123663 0.00113166 0.0462763 0.0423545 28 3179 30 6.55708e+06 289320 500653. 1732.36 8.01 0.383186 0.34288 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0506809 0.0457874 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.35 vpr 55.80 MiB 0.04 6876 -1 -1 12 0.33 -1 -1 32704 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1540 8735 2140 5810 785 55.6 MiB 0.15 0.00 7.17512 -150.872 -7.17512 7.17512 1.06 0.00174545 0.00159804 0.0757152 0.0693652 38 3444 21 6.55708e+06 373705 638502. 2209.35 5.63 0.621913 0.558859 23326 155178 -1 2888 15 1226 3932 189527 43326 6.31224 6.31224 -142.735 -6.31224 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0581905 0.0528705 217 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.22 vpr 55.22 MiB 0.04 6584 -1 -1 12 0.20 -1 -1 32532 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1252 5517 962 4221 334 55.1 MiB 0.09 0.00 7.41221 -152.744 -7.41221 7.41221 1.11 0.00143357 0.00131379 0.0426852 0.0391467 30 2953 20 6.55708e+06 313430 526063. 1820.29 4.35 0.477066 0.427262 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0513219 0.0464698 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 7.05 vpr 54.96 MiB 0.04 6584 -1 -1 12 0.18 -1 -1 32736 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 998 6383 1524 4361 498 55.0 MiB 0.12 0.00 7.15324 -144.822 -7.15324 7.15324 1.06 0.00088075 0.000790294 0.0582231 0.0533159 28 2443 17 6.55708e+06 253155 500653. 1732.36 3.52 0.338269 0.302736 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0547264 0.0494445 139 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.75 vpr 55.58 MiB 0.05 6760 -1 -1 12 0.28 -1 -1 32864 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1315 14583 4048 7926 2609 55.6 MiB 0.22 0.00 7.005 -132.757 -7.005 7.005 1.04 0.00170066 0.00155946 0.122325 0.112031 30 3666 44 6.55708e+06 385760 526063. 1820.29 3.21 0.415895 0.375978 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0620603 0.0563467 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 7.80 vpr 55.73 MiB 0.05 6744 -1 -1 14 0.32 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 17.3 MiB 0.51 1622 11046 2782 7202 1062 55.9 MiB 0.19 0.00 8.27143 -173.321 -8.27143 8.27143 1.06 0.00182707 0.00167659 0.0974203 0.0892994 30 4187 27 6.55708e+06 385760 526063. 1820.29 2.03 0.348656 0.314945 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.24 0.15 0.16 -1 -1 0.24 0.0680064 0.0617131 227 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.93 vpr 55.43 MiB 0.05 6716 -1 -1 12 0.23 -1 -1 32776 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1318 5191 912 3744 535 55.6 MiB 0.09 0.00 7.44045 -154.388 -7.44045 7.44045 0.88 0.0016361 0.00149899 0.0463444 0.042548 28 3868 27 6.55708e+06 325485 500653. 1732.36 2.58 0.272133 0.245118 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0616719 0.0559177 192 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.70 vpr 54.79 MiB 0.04 6700 -1 -1 12 0.14 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1100 6615 1512 4600 503 54.8 MiB 0.11 0.01 6.69922 -140.427 -6.69922 6.69922 1.06 0.0038875 0.00355745 0.0512008 0.0468729 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.57 0.198098 0.178185 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0425031 0.0383707 133 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 6.88 vpr 54.93 MiB 0.02 6644 -1 -1 12 0.23 -1 -1 32364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1148 11398 2849 6739 1810 55.1 MiB 0.17 0.00 7.39043 -143.264 -7.39043 7.39043 1.07 0.00144854 0.00132977 0.0892775 0.0819758 28 3477 38 6.55708e+06 301375 500653. 1732.36 9.16 0.596773 0.534736 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.22 0.14 0.20 -1 -1 0.22 0.0593155 0.0535855 170 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 9.64 vpr 55.30 MiB 0.05 6748 -1 -1 11 0.19 -1 -1 32940 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1267 6723 1289 4852 582 55.4 MiB 0.11 0.00 6.0378 -125.718 -6.0378 6.0378 1.12 0.00154 0.00141266 0.0538567 0.0492871 28 3807 32 6.55708e+06 337540 500653. 1732.36 3.40 0.285816 0.257143 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.24 0.18 0.18 -1 -1 0.24 0.0658058 0.0594448 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.26 vpr 55.27 MiB 0.04 6752 -1 -1 11 0.20 -1 -1 32736 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 16.7 MiB 0.32 1153 14128 4158 7800 2170 55.4 MiB 0.20 0.00 6.59995 -118.466 -6.59995 6.59995 1.05 0.00144559 0.00132516 0.109007 0.0999831 38 2640 22 6.55708e+06 337540 638502. 2209.35 5.11 0.501641 0.450767 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.29 0.11 0.27 -1 -1 0.29 0.0501783 0.0455059 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.11 vpr 54.96 MiB 0.04 6548 -1 -1 13 0.18 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 16.6 MiB 0.43 1112 5463 1180 3669 614 55.1 MiB 0.08 0.00 7.87624 -151.634 -7.87624 7.87624 1.05 0.00126564 0.0011607 0.0395405 0.0362924 30 2565 19 6.55708e+06 301375 526063. 1820.29 3.99 0.358572 0.321662 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0384435 0.0348995 142 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.15 vpr 55.11 MiB 0.04 6656 -1 -1 12 0.22 -1 -1 32412 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1245 6211 1266 4515 430 55.4 MiB 0.11 0.00 7.2362 -155.292 -7.2362 7.2362 1.07 0.00150813 0.00138215 0.0505199 0.046341 34 3145 23 6.55708e+06 325485 585099. 2024.56 4.20 0.493695 0.442309 22462 138074 -1 2771 14 1227 3252 178140 42327 6.38924 6.38924 -148.221 -6.38924 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0469171 0.0425693 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.00 vpr 55.37 MiB 0.05 6668 -1 -1 13 0.28 -1 -1 32804 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 16.8 MiB 0.37 1187 15843 5382 8046 2415 55.4 MiB 0.23 0.00 7.69912 -151.004 -7.69912 7.69912 1.05 0.00161306 0.0014785 0.127334 0.116699 32 3890 40 6.55708e+06 361650 554710. 1919.41 14.73 0.745445 0.669192 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.25 0.18 0.16 -1 -1 0.25 0.0717666 0.0648554 195 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.83 vpr 55.25 MiB 0.05 6736 -1 -1 14 0.31 -1 -1 32924 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.28 1371 16295 4299 9326 2670 55.4 MiB 0.25 0.00 7.90558 -162.398 -7.90558 7.90558 1.07 0.00176261 0.00161567 0.138288 0.126695 30 3631 37 6.55708e+06 373705 526063. 1820.29 10.06 0.655133 0.589794 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.26 0.13 0.20 -1 -1 0.26 0.0668355 0.0606901 215 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.89 vpr 55.24 MiB 0.04 6768 -1 -1 14 0.26 -1 -1 32852 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1364 9067 2106 6307 654 55.6 MiB 0.15 0.00 7.8859 -150.917 -7.8859 7.8859 1.05 0.00159805 0.0014633 0.0753546 0.0689786 36 3364 28 6.55708e+06 325485 612192. 2118.31 5.07 0.44437 0.399836 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.060476 0.0548419 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.79 vpr 55.55 MiB 0.04 6844 -1 -1 13 0.33 -1 -1 33252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1350 6211 1219 4577 415 55.5 MiB 0.11 0.00 7.98147 -162.621 -7.98147 7.98147 1.04 0.0016792 0.0015403 0.0577606 0.0530184 36 3253 20 6.55708e+06 325485 612192. 2118.31 3.40 0.416727 0.374837 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.24 0.08 0.21 -1 -1 0.24 0.0283175 0.0256211 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.93 vpr 54.79 MiB 0.04 6696 -1 -1 13 0.18 -1 -1 32704 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1092 10670 2647 6412 1611 54.9 MiB 0.14 0.00 7.9674 -161.443 -7.9674 7.9674 1.10 0.00128282 0.0011753 0.0776175 0.0711099 32 2870 34 6.55708e+06 289320 554710. 1919.41 2.73 0.389309 0.349985 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.26 0.10 0.21 -1 -1 0.26 0.0426228 0.0386276 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 8.72 vpr 55.48 MiB 0.05 6824 -1 -1 13 0.43 -1 -1 32920 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1304 7653 1748 5033 872 55.7 MiB 0.14 0.00 8.34953 -161.953 -8.34953 8.34953 1.05 0.0017132 0.00157123 0.0695901 0.0639062 30 3707 24 6.55708e+06 373705 526063. 1820.29 2.44 0.302563 0.273375 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0681447 0.0618533 208 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 7.19 vpr 55.24 MiB 0.05 6892 -1 -1 14 0.28 -1 -1 31488 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1332 7336 1480 5450 406 55.3 MiB 0.12 0.00 7.42283 -159.831 -7.42283 7.42283 1.04 0.00159275 0.00145987 0.0610949 0.0559217 28 3869 50 6.55708e+06 361650 500653. 1732.36 11.57 0.687715 0.617283 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.22 0.68 0.18 -1 -1 0.22 0.170927 0.153341 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.37 vpr 55.40 MiB 0.05 6788 -1 -1 12 0.25 -1 -1 33016 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1420 6575 1256 4964 355 55.5 MiB 0.11 0.00 8.28906 -160.635 -8.28906 8.28906 1.05 0.00164982 0.00151379 0.0552008 0.0506724 34 3727 35 6.55708e+06 385760 585099. 2024.56 5.74 0.613486 0.550755 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0595078 0.0541626 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 9.68 vpr 55.27 MiB 0.05 6772 -1 -1 13 0.23 -1 -1 32904 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1315 6522 1420 4675 427 55.6 MiB 0.11 0.00 7.42898 -137.517 -7.42898 7.42898 1.05 0.00154167 0.00141503 0.0561738 0.0515267 30 3356 18 6.55708e+06 337540 526063. 1820.29 2.56 0.249606 0.225272 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0553616 0.0502198 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.44 vpr 55.70 MiB 0.02 6756 -1 -1 14 0.34 -1 -1 32892 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.48 1483 8199 1652 5918 629 55.9 MiB 0.14 0.00 8.85275 -170.114 -8.85275 8.85275 1.05 0.00178525 0.00163153 0.0721702 0.0661061 28 4521 37 6.55708e+06 385760 500653. 1732.36 12.88 0.588764 0.529368 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0764262 0.0692793 220 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.88 vpr 55.46 MiB 0.04 6776 -1 -1 11 0.28 -1 -1 32756 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 16.8 MiB 0.31 1183 4512 917 3199 396 55.3 MiB 0.08 0.00 6.95549 -133.856 -6.95549 6.95549 1.04 0.00150902 0.00138555 0.0383013 0.0351444 28 3440 40 6.55708e+06 349595 500653. 1732.36 8.98 0.607915 0.543597 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0748488 0.0674849 174 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 7.87 vpr 55.05 MiB 0.04 6480 -1 -1 13 0.16 -1 -1 32572 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1098 6999 1531 4700 768 55.1 MiB 0.10 0.00 7.85907 -167.622 -7.85907 7.85907 1.04 0.00124672 0.00114118 0.0492086 0.0450668 26 3154 29 6.55708e+06 277265 477104. 1650.88 2.68 0.226191 0.2033 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.23 0.12 0.17 -1 -1 0.23 0.0491871 0.0444309 142 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 10.19 vpr 55.24 MiB 0.05 6832 -1 -1 14 0.23 -1 -1 32736 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1308 7027 1497 5027 503 55.4 MiB 0.12 0.00 8.02087 -160.438 -8.02087 8.02087 1.04 0.00155512 0.00141697 0.057695 0.0528692 28 3737 36 6.55708e+06 325485 500653. 1732.36 8.59 0.570896 0.511661 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.065383 0.0590323 183 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.89 vpr 55.90 MiB 0.05 6732 -1 -1 15 0.36 -1 -1 33280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 17.2 MiB 0.54 1579 7323 1484 5148 691 55.8 MiB 0.13 0.00 9.31018 -193.267 -9.31018 9.31018 1.08 0.00182715 0.00167535 0.0667704 0.0612093 28 4344 42 6.55708e+06 385760 500653. 1732.36 2.49 0.366017 0.33018 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0694484 0.0630225 228 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.93 vpr 54.74 MiB 0.04 6548 -1 -1 11 0.16 -1 -1 32476 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 16.4 MiB 0.57 1088 7079 1594 5001 484 54.8 MiB 0.10 0.00 6.82798 -137.917 -6.82798 6.82798 1.11 0.00118489 0.00108007 0.0478437 0.0437565 28 2912 30 6.55708e+06 265210 500653. 1732.36 3.27 0.228674 0.205567 21310 115450 -1 2481 64 1445 5105 1045472 613892 5.86358 5.86358 -137.858 -5.86358 0 0 612192. 2118.31 0.22 0.53 0.18 -1 -1 0.22 0.133271 0.119236 126 124 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.70 vpr 55.17 MiB 0.04 6528 -1 -1 12 0.18 -1 -1 32488 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1155 8207 1978 5141 1088 55.1 MiB 0.12 0.00 7.38032 -154.384 -7.38032 7.38032 1.05 0.0013655 0.00125107 0.0610134 0.0559849 46 2574 16 6.55708e+06 313430 782063. 2706.10 4.87 0.43912 0.393126 24766 183262 -1 2168 17 929 2778 124629 29449 6.47024 6.47024 -143.196 -6.47024 0 0 958460. 3316.47 0.33 0.10 0.30 -1 -1 0.33 0.0494643 0.0447796 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 7.16 vpr 55.40 MiB 0.05 6704 -1 -1 12 0.30 -1 -1 33000 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 17.0 MiB 0.34 1424 7439 1505 5396 538 55.8 MiB 0.13 0.00 7.41461 -164.576 -7.41461 7.41461 1.05 0.00173532 0.00158803 0.0666674 0.0610506 34 3820 24 6.55708e+06 373705 585099. 2024.56 4.55 0.493087 0.442952 22462 138074 -1 3126 15 1357 3877 209257 49419 6.7229 6.7229 -159.681 -6.7229 0 0 742403. 2568.87 0.26 0.13 0.19 -1 -1 0.26 0.0572853 0.0520771 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.62 vpr 55.12 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32868 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.47 1429 8579 2186 5781 612 55.7 MiB 0.14 0.00 7.42022 -157.463 -7.42022 7.42022 1.05 0.00154368 0.00141304 0.0694416 0.0636671 30 3708 20 6.55708e+06 337540 526063. 1820.29 2.05 0.266346 0.240173 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.22 0.07 0.10 -1 -1 0.22 0.0262101 0.0237065 186 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 11.30 vpr 55.76 MiB 0.05 6864 -1 -1 14 0.46 -1 -1 33324 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1656 14691 3485 9017 2189 55.8 MiB 0.24 0.00 8.55829 -177.042 -8.55829 8.55829 1.04 0.00193157 0.00177069 0.129995 0.11918 38 3905 20 6.55708e+06 421925 638502. 2209.35 5.79 0.692246 0.624088 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.28 0.15 0.25 -1 -1 0.28 0.0703929 0.0640838 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 7.23 vpr 55.20 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32532 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1210 13157 4017 6643 2497 55.3 MiB 0.19 0.00 6.86503 -131.636 -6.86503 6.86503 1.05 0.00150857 0.00138312 0.104338 0.0956301 30 3211 36 6.55708e+06 325485 526063. 1820.29 2.10 0.335543 0.302607 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.051727 0.0469074 176 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 5.57 vpr 54.85 MiB 0.04 6592 -1 -1 11 0.17 -1 -1 32356 -1 -1 25 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 16.4 MiB 0.22 858 9234 2019 6554 661 54.9 MiB 0.16 0.00 6.39815 -115.858 -6.39815 6.39815 1.07 0.00122167 0.00111864 0.090794 0.0831485 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.57 0.254516 0.229707 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0566443 0.0508183 138 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 11.85 vpr 55.96 MiB 0.05 7028 -1 -1 13 0.41 -1 -1 33036 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 17.8 MiB 0.27 1915 8888 1943 6342 603 56.0 MiB 0.17 0.00 7.96961 -161.89 -7.96961 7.96961 1.05 0.00215819 0.00197941 0.0851364 0.0780885 36 5494 32 6.55708e+06 482200 612192. 2118.31 7.40 0.746579 0.673031 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.27 0.19 0.23 -1 -1 0.27 0.07906 0.0720521 280 279 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.71 vpr 55.28 MiB 0.05 6844 -1 -1 14 0.26 -1 -1 33128 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 17.0 MiB 0.27 1307 6821 1398 4713 710 55.5 MiB 0.11 0.00 8.63003 -171.716 -8.63003 8.63003 1.04 0.00153037 0.00140356 0.0586958 0.0538591 28 3653 27 6.55708e+06 313430 500653. 1732.36 10.55 0.534767 0.4793 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547028 0.0495538 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.68 vpr 55.00 MiB 0.04 6580 -1 -1 12 0.16 -1 -1 32292 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1197 8251 1803 5271 1177 54.9 MiB 0.11 0.00 7.37817 -162.484 -7.37817 7.37817 1.05 0.00129686 0.00118844 0.05599 0.0513393 28 3416 42 6.55708e+06 325485 500653. 1732.36 2.68 0.26409 0.237519 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0445335 0.0403685 144 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.40 vpr 55.25 MiB 0.04 6592 -1 -1 13 0.29 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1296 6623 1420 4442 761 55.3 MiB 0.12 0.00 7.83929 -154.667 -7.83929 7.83929 1.05 0.00152501 0.00139922 0.0574432 0.0526812 30 3458 27 6.55708e+06 301375 526063. 1820.29 9.47 0.48898 0.438491 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0529112 0.0480454 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 8.35 vpr 55.82 MiB 0.03 6812 -1 -1 13 0.31 -1 -1 33516 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1675 5723 977 4473 273 55.9 MiB 0.11 0.00 7.72485 -162.113 -7.72485 7.72485 1.06 0.00184348 0.00169113 0.0526985 0.0484279 30 4421 42 6.55708e+06 421925 526063. 1820.29 3.19 0.358461 0.323176 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0665945 0.0605167 235 234 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.74 vpr 55.51 MiB 0.05 6740 -1 -1 11 0.23 -1 -1 32892 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1363 8827 2077 5986 764 55.6 MiB 0.14 0.00 7.0834 -142.912 -7.0834 7.0834 1.06 0.00162525 0.00148949 0.0739497 0.0677753 30 3732 37 6.55708e+06 385760 526063. 1820.29 2.95 0.333311 0.300675 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0593074 0.0537365 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 8.27 vpr 55.58 MiB 0.03 6748 -1 -1 15 0.32 -1 -1 32856 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1473 9543 2499 5737 1307 55.7 MiB 0.16 0.00 9.02492 -182.614 -9.02492 9.02492 1.07 0.00170425 0.00155937 0.0834121 0.0762538 36 3930 43 6.55708e+06 349595 612192. 2118.31 5.96 0.64415 0.578972 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610698 0.0553805 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 6.80 vpr 55.38 MiB 0.05 6676 -1 -1 13 0.31 -1 -1 32944 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 17.1 MiB 0.22 1528 11922 3138 7505 1279 55.7 MiB 0.20 0.00 8.01701 -168.403 -8.01701 8.01701 1.05 0.00136382 0.00124055 0.103502 0.0947721 34 4013 32 6.55708e+06 385760 585099. 2024.56 3.25 0.428402 0.386334 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.29 0.15 0.16 -1 -1 0.29 0.0676822 0.0615819 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.05 vpr 55.28 MiB 0.04 6544 -1 -1 12 0.20 -1 -1 32288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.47 1144 6321 1459 4287 575 55.0 MiB 0.10 0.00 6.98904 -150.776 -6.98904 6.98904 1.05 0.0012962 0.00118838 0.0448126 0.0411148 30 2863 42 6.55708e+06 349595 526063. 1820.29 2.00 0.255304 0.22938 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0441448 0.0400114 159 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.43 vpr 54.96 MiB 0.03 6512 -1 -1 11 0.15 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 16.6 MiB 0.39 1041 8402 1813 6153 436 55.1 MiB 0.12 0.00 6.97021 -142.93 -6.97021 6.97021 1.05 0.0012389 0.00113424 0.0588392 0.0538441 30 2905 24 6.55708e+06 265210 526063. 1820.29 2.30 0.232955 0.209659 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0449475 0.0406488 138 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 9.48 vpr 55.54 MiB 0.05 6840 -1 -1 13 0.32 -1 -1 32896 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 17.0 MiB 0.38 1528 7975 1701 5466 808 55.7 MiB 0.13 0.00 8.19329 -167.366 -8.19329 8.19329 1.08 0.00170237 0.00155868 0.0691094 0.0633781 28 4213 29 6.55708e+06 373705 500653. 1732.36 9.31 0.619605 0.556544 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0610316 0.0553164 204 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.20 vpr 54.84 MiB 0.02 6616 -1 -1 10 0.15 -1 -1 32856 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1030 5107 1053 3581 473 55.1 MiB 0.10 0.00 6.08471 -123.999 -6.08471 6.08471 1.05 0.00121626 0.00111315 0.0475233 0.0434209 30 2309 29 6.55708e+06 289320 526063. 1820.29 3.80 0.39355 0.352358 21886 126133 -1 1984 35 866 2657 373349 213628 5.25032 5.25032 -118.026 -5.25032 0 0 666494. 2306.21 0.26 0.24 0.20 -1 -1 0.26 0.0802863 0.072171 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 6.78 vpr 55.10 MiB 0.04 6668 -1 -1 14 0.19 -1 -1 32780 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 16.4 MiB 0.42 1019 11203 3089 5915 2199 55.0 MiB 0.15 0.00 7.69221 -156.392 -7.69221 7.69221 1.05 0.00132736 0.00121554 0.0791989 0.0724887 34 2803 37 6.55708e+06 289320 585099. 2024.56 2.54 0.333525 0.299941 22462 138074 -1 2326 18 1079 3249 175189 43266 6.7601 6.7601 -147.192 -6.7601 0 0 742403. 2568.87 0.28 0.12 0.23 -1 -1 0.28 0.0503284 0.0453972 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 6.40 vpr 55.41 MiB 0.05 6684 -1 -1 12 0.30 -1 -1 32908 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1351 11891 3061 6959 1871 55.6 MiB 0.19 0.00 7.58423 -159.03 -7.58423 7.58423 1.08 0.00167668 0.00153839 0.103121 0.094297 36 3367 18 6.55708e+06 349595 612192. 2118.31 3.62 0.451807 0.406828 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610964 0.0554537 201 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 8.33 vpr 54.74 MiB 0.05 6552 -1 -1 12 0.16 -1 -1 32292 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 16.2 MiB 0.30 1079 5567 1026 4331 210 54.8 MiB 0.08 0.00 6.95154 -149.121 -6.95154 6.95154 1.04 0.00122763 0.00112318 0.039747 0.0364123 28 3150 46 6.55708e+06 277265 500653. 1732.36 7.03 0.438707 0.391887 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.20 0.11 0.09 -1 -1 0.20 0.0469118 0.042471 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 9.18 vpr 55.19 MiB 0.05 6716 -1 -1 12 0.19 -1 -1 32856 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1263 7843 1830 5405 608 55.4 MiB 0.13 0.00 7.086 -151.926 -7.086 7.086 1.05 0.00155138 0.00142046 0.0659666 0.060399 28 3643 19 6.55708e+06 325485 500653. 1732.36 2.50 0.266154 0.239664 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.23 0.22 0.18 -1 -1 0.23 0.0750401 0.0676982 188 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 6.67 vpr 55.32 MiB 0.05 6748 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1349 6509 1390 4237 882 55.5 MiB 0.11 0.00 7.60996 -160.091 -7.60996 7.60996 1.07 0.00156315 0.00143197 0.0540348 0.0495299 34 3758 47 6.55708e+06 349595 585099. 2024.56 2.93 0.419411 0.376743 22462 138074 -1 3187 19 1257 3833 298777 77572 6.5197 6.5197 -154.677 -6.5197 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0623382 0.0564277 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.03 vpr 55.03 MiB 0.04 6620 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1256 8251 2031 5471 749 55.2 MiB 0.12 0.00 6.67834 -143.715 -6.67834 6.67834 1.07 0.00128913 0.00118107 0.0564648 0.0516941 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.79 0.230362 0.207374 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0516899 0.0467213 148 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.14 vpr 54.96 MiB 0.04 6568 -1 -1 13 0.19 -1 -1 32508 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1339 8047 1963 5261 823 55.1 MiB 0.10 0.00 7.72555 -161.807 -7.72555 7.72555 1.06 0.000546167 0.000493652 0.0368678 0.0332272 28 3857 33 6.55708e+06 325485 500653. 1732.36 9.24 0.56761 0.507103 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.23 0.24 0.18 -1 -1 0.23 0.0843968 0.0758925 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.44 vpr 55.53 MiB 0.05 6840 -1 -1 13 0.25 -1 -1 32928 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 16.8 MiB 0.20 1276 15187 4382 8407 2398 55.6 MiB 0.23 0.00 7.99583 -160.474 -7.99583 7.99583 1.07 0.00156065 0.00143128 0.121243 0.111127 40 2881 19 6.55708e+06 325485 666494. 2306.21 5.02 0.578971 0.520822 23614 160646 -1 2859 15 1242 3716 205051 47781 7.09316 7.09316 -151.569 -7.09316 0 0 872365. 3018.56 0.30 0.12 0.27 -1 -1 0.30 0.0518574 0.0470708 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 6.67 vpr 55.12 MiB 0.05 6880 -1 -1 11 0.19 -1 -1 32740 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1142 12761 3414 7382 1965 55.1 MiB 0.19 0.00 6.37111 -124.414 -6.37111 6.37111 1.05 0.00137673 0.00125894 0.103842 0.0949386 36 2747 19 6.55708e+06 337540 612192. 2118.31 4.87 0.481412 0.431847 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0477242 0.043124 162 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.44 vpr 55.93 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33456 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 17.3 MiB 0.39 1569 9951 2260 6812 879 55.9 MiB 0.18 0.00 8.3634 -177.338 -8.3634 8.3634 1.00 0.00084219 0.000760871 0.0916238 0.0838099 34 4532 35 6.55708e+06 385760 585099. 2024.56 3.43 0.463318 0.417773 22462 138074 -1 3580 16 1687 4869 264649 62027 7.41056 7.41056 -172.227 -7.41056 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0642241 0.0584273 225 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.16 vpr 55.05 MiB 0.04 6612 -1 -1 12 0.20 -1 -1 32476 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 16.5 MiB 0.45 1144 6619 1429 4488 702 55.0 MiB 0.10 0.00 6.81857 -143.271 -6.81857 6.81857 1.05 0.00126147 0.00115514 0.04513 0.0413824 36 2680 25 6.55708e+06 337540 612192. 2118.31 2.70 0.328613 0.294904 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0394137 0.0358377 145 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.30 vpr 55.35 MiB 0.04 6744 -1 -1 13 0.29 -1 -1 32992 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1396 7843 1736 5120 987 55.4 MiB 0.12 0.00 7.69421 -153.973 -7.69421 7.69421 1.08 0.0015876 0.00145072 0.0658667 0.0603216 28 3900 43 6.55708e+06 325485 500653. 1732.36 3.26 0.308391 0.277594 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.22 0.19 0.18 -1 -1 0.22 0.0681866 0.0616621 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.66 vpr 55.04 MiB 0.04 6620 -1 -1 13 0.18 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1076 10583 2933 6087 1563 54.9 MiB 0.14 0.00 7.44215 -162.135 -7.44215 7.44215 1.05 0.00128006 0.0011715 0.0721755 0.0660637 28 3369 28 6.55708e+06 301375 500653. 1732.36 2.87 0.261323 0.235436 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0569187 0.0513276 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.70 vpr 55.46 MiB 0.05 6660 -1 -1 12 0.21 -1 -1 32812 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1148 5517 1034 4096 387 55.2 MiB 0.09 0.00 7.36755 -151.17 -7.36755 7.36755 1.05 0.00152259 0.0013947 0.0463069 0.0424714 34 3150 21 6.55708e+06 313430 585099. 2024.56 4.31 0.495371 0.443919 22462 138074 -1 2544 17 1051 3386 187761 43277 6.5237 6.5237 -142.576 -6.5237 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0554314 0.0502404 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.82 vpr 55.96 MiB 0.05 6976 -1 -1 15 0.50 -1 -1 32832 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1759 9998 2422 6696 880 55.8 MiB 0.18 0.00 8.78932 -180.299 -8.78932 8.78932 1.07 0.00202495 0.00186002 0.0969755 0.0888388 36 4483 32 6.55708e+06 409870 612192. 2118.31 6.18 0.569647 0.514341 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.27 0.21 0.25 -1 -1 0.27 0.0841946 0.0764979 250 250 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.15 vpr 54.30 MiB 0.04 6412 -1 -1 10 0.10 -1 -1 32068 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 16.0 MiB 0.29 757 9042 2084 6396 562 54.4 MiB 0.10 0.00 5.22063 -120.025 -5.22063 5.22063 1.07 0.000893745 0.00081805 0.051473 0.0469983 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.55 0.160243 0.143452 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.23 0.08 0.18 -1 -1 0.23 0.0301454 0.0270752 92 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 6.71 vpr 54.79 MiB 0.03 6612 -1 -1 13 0.15 -1 -1 32592 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1069 6415 1411 4237 767 55.1 MiB 0.09 0.00 7.77311 -151.473 -7.77311 7.77311 1.07 0.00128432 0.00117689 0.0442048 0.0404886 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.87 0.265755 0.238888 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0710206 0.0639536 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.24 vpr 55.18 MiB 0.05 6636 -1 -1 12 0.19 -1 -1 32624 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1241 11223 2642 6703 1878 55.1 MiB 0.17 0.00 6.72746 -150.964 -6.72746 6.72746 1.05 0.001451 0.00133137 0.0894805 0.0821083 34 3118 16 6.55708e+06 277265 585099. 2024.56 2.50 0.313877 0.283085 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0545664 0.0493467 167 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.53 vpr 54.68 MiB 0.05 6580 -1 -1 9 0.13 -1 -1 32424 -1 -1 25 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 16.1 MiB 0.17 840 9694 2571 5897 1226 54.7 MiB 0.12 0.00 5.60806 -104.508 -5.60806 5.60806 1.07 0.0010197 0.00093416 0.058698 0.0538446 26 2429 32 6.55708e+06 301375 477104. 1650.88 3.47 0.209499 0.188176 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0433009 0.0389052 112 111 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 9.64 vpr 55.72 MiB 0.05 6716 -1 -1 12 0.26 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 17.1 MiB 0.57 1640 5273 863 4118 292 55.7 MiB 0.09 0.00 7.59969 -165.851 -7.59969 7.59969 1.05 0.00168915 0.00153707 0.0443563 0.0406678 36 4101 31 6.55708e+06 409870 612192. 2118.31 16.35 0.683667 0.612659 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.100153 0.0904891 209 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.78 vpr 55.60 MiB 0.07 6804 -1 -1 14 0.65 -1 -1 32856 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1228 13340 3394 7367 2579 55.9 MiB 0.22 0.00 8.33716 -163.889 -8.33716 8.33716 1.05 0.00171935 0.00157379 0.116386 0.106507 38 3334 33 6.55708e+06 349595 638502. 2209.35 15.36 0.799747 0.718221 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0570099 0.0518879 204 204 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.01 vpr 55.59 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30656 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 929 17268 4565 10218 2485 56.0 MiB 0.27 0.00 4.24756 -141.398 -4.24756 4.24756 1.07 0.00137294 0.00125818 0.106057 0.0969715 32 2653 22 6.64007e+06 452088 554710. 1919.41 1.38 0.280755 0.253215 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.055258 0.0498254 153 96 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.45 vpr 55.61 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 17.4 MiB 0.24 873 12919 4129 6395 2395 56.0 MiB 0.21 0.00 4.44716 -130.844 -4.44716 4.44716 1.03 0.00128814 0.00118101 0.0918461 0.0841975 32 2348 20 6.64007e+06 288834 554710. 1919.41 1.32 0.263396 0.237783 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0552136 0.0496668 142 91 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.64 vpr 55.29 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30192 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1003 9675 2005 7104 566 55.7 MiB 0.15 0.00 3.83457 -129.818 -3.83457 3.83457 1.05 0.00128652 0.00118285 0.0582171 0.0534792 30 2305 22 6.64007e+06 439530 526063. 1820.29 1.24 0.220376 0.198559 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.32 0.07 0.18 -1 -1 0.32 0.0307765 0.0275688 142 65 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.05 vpr 55.21 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30368 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 17.1 MiB 0.09 990 11245 3461 6773 1011 55.9 MiB 0.20 0.00 4.46418 -132.921 -4.46418 4.46418 1.05 0.00117595 0.00108149 0.0741681 0.0682493 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.46 0.219108 0.197959 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.22 0.14 0.18 -1 -1 0.22 0.060055 0.0542688 138 34 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.79 vpr 55.36 MiB 0.03 7032 -1 -1 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 17.3 MiB 0.12 849 15017 4515 8552 1950 55.9 MiB 0.26 0.00 4.14936 -139.21 -4.14936 4.14936 1.05 0.00125237 0.00114944 0.103123 0.0947044 32 2360 21 6.64007e+06 276276 554710. 1919.41 1.33 0.261821 0.236873 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0550582 0.0496775 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.92 vpr 55.45 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 17.4 MiB 0.13 1024 19142 5848 10342 2952 56.1 MiB 0.28 0.01 3.5603 -122.153 -3.5603 3.5603 1.06 0.00137015 0.00125922 0.10756 0.0985194 32 2260 24 6.64007e+06 489762 554710. 1919.41 1.28 0.277724 0.2508 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0541696 0.0488047 156 64 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.99 vpr 54.93 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30460 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 16.3 MiB 0.12 722 12923 4015 7171 1737 55.0 MiB 0.17 0.00 3.7987 -103.375 -3.7987 3.7987 0.80 0.000915725 0.000840192 0.07377 0.0670434 32 1657 16 6.64007e+06 251160 554710. 1919.41 1.15 0.181756 0.163032 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0336964 0.0302072 96 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.97 vpr 55.18 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30004 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 16.7 MiB 0.09 948 16081 4441 8879 2761 55.6 MiB 0.20 0.00 3.49449 -109.504 -3.49449 3.49449 1.06 0.00110375 0.00101491 0.0689728 0.0632262 28 2371 22 6.64007e+06 426972 500653. 1732.36 1.35 0.210871 0.190021 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0448822 0.040489 140 4 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.11 vpr 55.33 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30040 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 16.7 MiB 0.18 706 7820 1805 5417 598 55.6 MiB 0.12 0.00 3.31336 -101.862 -3.31336 3.31336 1.06 0.00107676 0.000986984 0.0519688 0.0476378 28 1873 21 6.64007e+06 213486 500653. 1732.36 1.07 0.186327 0.167111 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0407442 0.0365137 106 85 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.18 vpr 55.15 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 16.9 MiB 0.18 890 10756 2975 5928 1853 55.6 MiB 0.08 0.00 3.5061 -124.869 -3.5061 3.5061 1.04 0.000387342 0.000350169 0.0257644 0.023324 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.77 0.0768339 0.0678766 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.26 0.09 0.21 -1 -1 0.26 0.0392327 0.0352998 121 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.97 vpr 55.25 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 29992 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 16.9 MiB 0.17 822 14012 5060 7295 1657 55.6 MiB 0.20 0.00 3.4841 -115.834 -3.4841 3.4841 1.05 0.00106519 0.000977506 0.0897426 0.0823383 28 1767 16 6.64007e+06 226044 500653. 1732.36 1.12 0.216138 0.194887 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0388869 0.0349265 110 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.99 vpr 55.02 MiB 0.02 6904 -1 -1 1 0.02 -1 -1 30328 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.8 MiB 0.13 840 9753 2297 6936 520 55.5 MiB 0.14 0.00 3.52209 -114.564 -3.52209 3.52209 1.05 0.00107733 0.000986628 0.0522698 0.0478189 30 1922 21 6.64007e+06 364182 526063. 1820.29 1.19 0.186412 0.167135 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.24 0.08 0.22 -1 -1 0.24 0.0374285 0.0336356 114 65 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.51 vpr 55.32 MiB 0.07 7104 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 17.2 MiB 0.24 893 19448 6133 10048 3267 55.8 MiB 0.28 0.00 3.56129 -122.026 -3.56129 3.56129 1.05 0.00125396 0.00114913 0.111689 0.102377 32 2222 23 6.64007e+06 426972 554710. 1919.41 1.33 0.274374 0.247935 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.27 0.14 0.21 -1 -1 0.27 0.0548642 0.0494335 145 58 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.69 vpr 55.42 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30344 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1031 17036 4693 9820 2523 56.0 MiB 0.26 0.00 4.31123 -147.759 -4.31123 4.31123 1.12 0.00131247 0.00120392 0.100211 0.0918588 26 2990 23 6.64007e+06 452088 477104. 1650.88 2.33 0.272916 0.246206 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0549128 0.0494706 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.85 vpr 55.11 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30628 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 800 8852 2481 5509 862 55.2 MiB 0.07 0.00 3.4261 -103.793 -3.4261 3.4261 0.86 0.000348744 0.000315524 0.0197965 0.0179423 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.73 0.0656575 0.0577674 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.27 0.08 0.23 -1 -1 0.27 0.0348072 0.0309915 108 29 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.28 vpr 55.57 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1068 13316 3890 7652 1774 56.0 MiB 0.22 0.00 3.5141 -124.724 -3.5141 3.5141 1.03 0.00130096 0.00119221 0.0948447 0.0869652 32 2326 21 6.64007e+06 276276 554710. 1919.41 1.29 0.258662 0.233591 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.31 0.06 0.14 -1 -1 0.31 0.0231827 0.02072 147 63 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.44 vpr 55.54 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 17.3 MiB 0.20 964 16340 5208 8057 3075 55.9 MiB 0.20 0.00 3.6263 -123.14 -3.6263 3.6263 1.05 0.00124994 0.00114594 0.0909267 0.0833106 34 2358 39 6.64007e+06 452088 585099. 2024.56 2.88 0.387948 0.348479 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.31 0.12 0.22 -1 -1 0.31 0.0370198 0.0331174 144 57 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.23 vpr 55.34 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30044 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 919 13487 3473 7992 2022 55.7 MiB 0.18 0.00 2.83964 -105.375 -2.83964 2.83964 1.05 0.00109892 0.00100631 0.0721393 0.066111 26 2137 22 6.64007e+06 389298 477104. 1650.88 1.13 0.213442 0.192014 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0407777 0.036702 119 65 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.81 vpr 54.88 MiB 0.04 6700 -1 -1 1 0.03 -1 -1 30032 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56004 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.1 MiB 0.06 670 10835 3352 6011 1472 54.7 MiB 0.12 0.00 2.72344 -89.4054 -2.72344 2.72344 0.94 0.000781874 0.000715656 0.0540326 0.0494786 32 1416 19 6.64007e+06 188370 554710. 1919.41 1.13 0.14952 0.133831 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.27 0.07 0.23 -1 -1 0.27 0.0311481 0.0277317 85 34 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 6.59 vpr 55.31 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30328 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 16.8 MiB 0.14 727 12120 4439 5930 1751 55.6 MiB 0.18 0.00 4.19115 -121.049 -4.19115 4.19115 1.05 0.00109019 0.000998833 0.0801954 0.0735341 32 2029 16 6.64007e+06 213486 554710. 1919.41 1.19 0.207352 0.186821 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.25 0.07 0.22 -1 -1 0.25 0.0363707 0.0327424 113 64 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.02 vpr 55.54 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30056 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 16.7 MiB 0.10 885 17732 4998 9545 3189 55.7 MiB 0.26 0.00 4.22193 -138.344 -4.22193 4.22193 1.05 0.00122416 0.00112453 0.101095 0.0927748 32 2479 24 6.64007e+06 452088 554710. 1919.41 1.29 0.26267 0.237339 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0514446 0.0463942 147 34 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 6.66 vpr 55.86 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 960 11288 2842 7087 1359 56.1 MiB 0.21 0.01 3.74425 -123.858 -3.74425 3.74425 1.05 0.00141823 0.00130013 0.0795518 0.072765 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.35 0.261477 0.235141 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.060895 0.054662 150 124 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.74 vpr 54.80 MiB 0.02 6696 -1 -1 1 0.02 -1 -1 30352 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.1 MiB 0.11 395 10503 3120 6151 1232 54.6 MiB 0.10 0.00 2.74064 -71.156 -2.74064 2.74064 1.05 0.000682856 0.000624286 0.0472801 0.0432418 28 1145 19 6.64007e+06 213486 500653. 1732.36 1.06 0.130664 0.116942 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0260333 0.0231926 77 30 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.55 vpr 55.25 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 29976 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 16.9 MiB 0.09 990 12749 4130 6257 2362 55.6 MiB 0.21 0.00 4.45633 -140.507 -4.45633 4.45633 1.07 0.00115288 0.00105971 0.0823503 0.0756772 32 2561 21 6.64007e+06 276276 554710. 1919.41 1.31 0.228995 0.207016 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0449407 0.0405688 138 3 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.60 vpr 54.55 MiB 0.04 6704 -1 -1 1 0.03 -1 -1 30148 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.3 MiB 0.05 603 10672 2424 7898 350 54.8 MiB 0.12 0.00 2.3583 -83.9313 -2.3583 2.3583 1.14 0.000723994 0.000662986 0.0495188 0.045349 28 1546 20 6.64007e+06 163254 500653. 1732.36 1.25 0.145628 0.13058 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.22 0.06 0.20 -1 -1 0.22 0.0266707 0.0238664 81 3 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.95 vpr 55.24 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30384 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.09 956 14691 4376 8904 1411 55.8 MiB 0.23 0.00 4.18856 -140.856 -4.18856 4.18856 1.06 0.00125527 0.00115302 0.0839117 0.0769085 32 2560 22 6.64007e+06 439530 554710. 1919.41 1.33 0.243605 0.219756 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0541553 0.0486609 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.99 vpr 55.28 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30064 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1019 8796 1857 6524 415 55.9 MiB 0.15 0.00 3.60659 -123.354 -3.60659 3.60659 1.05 0.00119146 0.00109593 0.0475793 0.0436458 26 3249 33 6.64007e+06 464646 477104. 1650.88 7.03 0.372195 0.3336 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0493401 0.0444749 152 3 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.09 vpr 55.49 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30368 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1069 18901 5689 10576 2636 56.0 MiB 0.28 0.01 4.16036 -141.868 -4.16036 4.16036 1.05 0.00131411 0.00120484 0.108774 0.0996816 32 2736 22 6.64007e+06 464646 554710. 1919.41 1.34 0.275853 0.249275 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0568292 0.051201 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.92 vpr 54.97 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 16.7 MiB 0.08 857 10572 2555 6423 1594 55.6 MiB 0.15 0.00 3.07196 -107.422 -3.07196 3.07196 1.08 0.00099784 0.000914248 0.0640299 0.0587363 32 1869 19 6.64007e+06 200928 554710. 1919.41 1.19 0.195673 0.175925 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.25 0.09 0.23 -1 -1 0.25 0.0385831 0.0346183 107 34 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.81 vpr 55.11 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30000 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.9 MiB 0.09 824 11806 3275 6761 1770 55.3 MiB 0.16 0.00 3.4951 -114.009 -3.4951 3.4951 1.05 0.00100574 0.000922809 0.0707527 0.0649754 32 1835 21 6.64007e+06 238602 554710. 1919.41 1.19 0.196985 0.177293 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0456569 0.0409146 115 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.15 vpr 54.90 MiB 0.02 6884 -1 -1 1 0.02 -1 -1 30176 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 658 7132 1686 4570 876 55.1 MiB 0.11 0.00 3.4309 -100.483 -3.4309 3.4309 1.05 0.00094543 0.000867205 0.0418195 0.0383956 32 1851 20 6.64007e+06 251160 554710. 1919.41 1.21 0.160148 0.143671 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0365116 0.0327435 107 34 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.27 vpr 55.09 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30140 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.7 MiB 0.09 802 15390 5648 7380 2362 55.4 MiB 0.22 0.00 3.5251 -121.985 -3.5251 3.5251 1.06 0.00100168 0.000919428 0.089409 0.0820991 32 2003 23 6.64007e+06 226044 554710. 1919.41 1.23 0.219109 0.197617 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0533375 0.0477763 125 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 5.14 vpr 54.94 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 772 9679 2262 6618 799 55.5 MiB 0.14 0.00 3.47387 -114.287 -3.47387 3.47387 1.05 0.00103043 0.000945764 0.0496711 0.0455735 28 2025 20 6.64007e+06 389298 500653. 1732.36 1.16 0.177364 0.159354 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0388123 0.034891 119 34 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.06 vpr 55.23 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 16.9 MiB 0.16 877 15824 4460 9332 2032 55.6 MiB 0.20 0.00 2.80466 -91.9047 -2.80466 2.80466 1.07 0.00101723 0.000931474 0.0810886 0.0742085 26 2073 22 6.64007e+06 389298 477104. 1650.88 1.18 0.204935 0.184146 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0432509 0.0386193 110 61 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.34 vpr 55.59 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30420 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 17.5 MiB 0.21 1234 17889 5288 10109 2492 55.9 MiB 0.32 0.01 4.16036 -142.499 -4.16036 4.16036 1.06 0.00142439 0.00130997 0.106172 0.0974593 28 3347 24 6.64007e+06 514878 500653. 1732.36 2.67 0.293882 0.265546 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0575938 0.052059 181 29 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.69 vpr 55.79 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30328 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 996 11616 2636 8022 958 56.1 MiB 0.23 0.00 3.5823 -125.213 -3.5823 3.5823 1.10 0.0013311 0.00121219 0.0647492 0.0590421 30 2080 20 6.64007e+06 464646 526063. 1820.29 1.27 0.228138 0.20539 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510926 0.046132 154 65 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.19 vpr 55.27 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30424 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 17.0 MiB 0.23 803 9407 2189 6388 830 55.7 MiB 0.14 0.00 3.6833 -114.43 -3.6833 3.6833 1.04 0.00110479 0.00101058 0.0530788 0.0485902 30 1852 20 6.64007e+06 364182 526063. 1820.29 1.17 0.190169 0.170442 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0401364 0.0360176 114 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.39 vpr 55.38 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1052 11799 3060 6831 1908 55.9 MiB 0.20 0.00 3.64847 -119.816 -3.64847 3.64847 1.05 0.00127223 0.00116732 0.0815481 0.074865 32 2372 21 6.64007e+06 301392 554710. 1919.41 1.28 0.241194 0.217691 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.26 0.13 0.11 -1 -1 0.26 0.0546795 0.049459 149 64 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.42 vpr 55.51 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30336 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 17.4 MiB 0.42 953 7835 1760 5704 371 56.1 MiB 0.15 0.00 5.23812 -147.937 -5.23812 5.23812 1.05 0.0014085 0.00129296 0.062018 0.056929 32 2549 24 6.64007e+06 288834 554710. 1919.41 1.33 0.255594 0.229826 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.28 0.12 0.24 -1 -1 0.28 0.0546275 0.0490509 150 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.63 vpr 55.71 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30248 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.21 955 10859 3044 7047 768 56.1 MiB 0.20 0.00 5.02279 -136.574 -5.02279 5.02279 1.06 0.00130854 0.00119897 0.0790271 0.0725077 30 2107 21 6.64007e+06 288834 526063. 1820.29 1.24 0.244696 0.220718 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0459545 0.0415279 144 90 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.16 vpr 55.34 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 0.11 1046 15623 4332 9609 1682 55.8 MiB 0.13 0.00 3.5621 -120.379 -3.5621 3.5621 0.72 0.000471116 0.00042694 0.0351109 0.0316882 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.81 0.0988372 0.0876969 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0449083 0.040528 148 64 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.70 vpr 55.43 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30416 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 17.0 MiB 0.13 865 10206 2264 6941 1001 55.9 MiB 0.18 0.00 4.23656 -140.329 -4.23656 4.23656 1.05 0.00129043 0.00118296 0.061301 0.0562135 32 2829 21 6.64007e+06 464646 554710. 1919.41 1.36 0.223724 0.201453 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.25 0.12 0.23 -1 -1 0.25 0.0539649 0.048595 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.78 vpr 55.86 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30640 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 17.7 MiB 0.22 1205 17356 4219 10649 2488 56.1 MiB 0.29 0.01 4.21478 -145.938 -4.21478 4.21478 1.05 0.00157943 0.00145058 0.114258 0.104985 32 2779 22 6.64007e+06 527436 554710. 1919.41 1.33 0.315288 0.284995 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0651661 0.0588169 186 96 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.08 vpr 55.19 MiB 0.03 6776 -1 -1 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.12 655 13731 5030 6417 2284 55.4 MiB 0.20 0.00 3.7665 -117.146 -3.7665 3.7665 1.05 0.00102124 0.00093564 0.0920338 0.0843554 32 1931 27 6.64007e+06 226044 554710. 1919.41 1.31 0.232142 0.20908 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0442073 0.0398636 116 34 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.67 vpr 55.79 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 30416 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 17.1 MiB 0.17 910 7386 1527 5477 382 55.9 MiB 0.13 0.00 4.20356 -136.322 -4.20356 4.20356 1.05 0.00128572 0.00117999 0.0439211 0.0402868 32 2713 25 6.64007e+06 477204 554710. 1919.41 1.27 0.199558 0.179353 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.053345 0.0480808 152 64 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 6.87 vpr 55.37 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 17.1 MiB 0.13 994 14048 3500 8468 2080 55.9 MiB 0.23 0.00 3.7163 -119.726 -3.7163 3.7163 0.91 0.00127945 0.00117418 0.0836927 0.0768458 32 2435 23 6.64007e+06 426972 554710. 1919.41 1.27 0.250008 0.225677 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0517773 0.0467113 149 63 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.95 vpr 55.33 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 16.9 MiB 0.10 1080 15017 4624 8554 1839 55.8 MiB 0.26 0.00 4.14936 -144.892 -4.14936 4.14936 1.04 0.00120402 0.00110683 0.105899 0.0974313 32 2624 22 6.64007e+06 276276 554710. 1919.41 1.33 0.260787 0.236348 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.22 0.07 0.11 -1 -1 0.22 0.0220454 0.0197173 151 3 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 6.30 vpr 55.66 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30308 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 17.3 MiB 0.22 1044 15603 4218 9336 2049 56.0 MiB 0.24 0.00 3.55822 -125.535 -3.55822 3.55822 1.05 0.00132349 0.00121278 0.0938649 0.0859795 32 2394 19 6.64007e+06 439530 554710. 1919.41 1.28 0.255419 0.230498 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0526038 0.0473171 146 96 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.81 vpr 55.63 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30188 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 17.2 MiB 0.21 1017 12791 3286 8285 1220 55.8 MiB 0.11 0.00 3.47912 -120.914 -3.47912 3.47912 1.07 0.000475577 0.000430279 0.0284306 0.0256573 26 2568 45 6.64007e+06 464646 477104. 1650.88 2.08 0.233211 0.208745 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0473752 0.0427138 148 61 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.18 vpr 55.88 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30372 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1102 19142 5372 11310 2460 56.1 MiB 0.27 0.01 3.5243 -123.608 -3.5243 3.5243 1.05 0.00130918 0.0012003 0.107637 0.0986642 32 2414 19 6.64007e+06 489762 554710. 1919.41 1.28 0.268777 0.243038 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.25 0.11 0.25 -1 -1 0.25 0.0504312 0.0455428 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.99 vpr 55.16 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 17.3 MiB 0.09 1032 14906 4320 9186 1400 56.0 MiB 0.24 0.00 4.18856 -144.112 -4.18856 4.18856 1.05 0.00124988 0.00114811 0.0837632 0.0769465 30 2290 20 6.64007e+06 464646 526063. 1820.29 1.29 0.241242 0.217994 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0497973 0.0449443 152 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1016 12153 3010 8355 788 56.1 MiB 0.19 0.00 4.23153 -146.068 -4.23153 4.23153 1.06 0.00129772 0.00118939 0.0693798 0.0635831 26 2842 35 6.64007e+06 489762 477104. 1650.88 5.50 0.425951 0.381787 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.22 0.15 0.20 -1 -1 0.22 0.057821 0.0521731 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.97 vpr 55.82 MiB 0.02 7328 -1 -1 1 0.04 -1 -1 30320 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1141 13095 3356 8753 986 56.2 MiB 0.23 0.00 4.67535 -137.171 -4.67535 4.67535 1.05 0.00139126 0.0012751 0.0832999 0.0763313 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.87 0.260623 0.234497 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0526128 0.047255 147 122 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.44 vpr 55.80 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1069 15584 4992 8664 1928 55.9 MiB 0.26 0.00 4.34993 -137.194 -4.34993 4.34993 1.05 0.00136046 0.00124846 0.11558 0.106028 32 2657 20 6.64007e+06 276276 554710. 1919.41 1.30 0.284601 0.25722 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.25 0.13 0.23 -1 -1 0.25 0.0550126 0.0496451 151 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.09 vpr 54.96 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30428 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.08 928 8735 1852 5986 897 55.2 MiB 0.13 0.00 3.50687 -122.364 -3.50687 3.50687 1.05 0.00104763 0.000960412 0.0455496 0.0417699 28 2197 22 6.64007e+06 389298 500653. 1732.36 1.13 0.179099 0.160504 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.25 0.10 0.18 -1 -1 0.25 0.043659 0.0391901 125 34 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.08 vpr 55.19 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30208 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 17.0 MiB 0.21 885 10406 2864 6861 681 55.7 MiB 0.17 0.00 3.5031 -121.505 -3.5031 3.5031 1.05 0.00116393 0.00106615 0.0709577 0.0650521 26 2358 26 6.64007e+06 226044 477104. 1650.88 1.28 0.226995 0.204097 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.23 0.11 0.20 -1 -1 0.23 0.0447618 0.0402069 121 94 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.08 vpr 55.66 MiB 0.02 7144 -1 -1 1 0.05 -1 -1 30660 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 17.7 MiB 0.08 1352 17606 4821 10688 2097 56.1 MiB 0.32 0.01 4.98622 -168.741 -4.98622 4.98622 1.04 0.0015383 0.00141405 0.111872 0.102807 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.43 0.309191 0.279613 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.26 0.18 0.21 -1 -1 0.26 0.0751814 0.06769 189 65 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.19 vpr 55.49 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30368 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1055 17857 5354 10411 2092 55.9 MiB 0.15 0.00 3.51607 -123.396 -3.51607 3.51607 0.81 0.00045669 0.000410582 0.0394075 0.0354883 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.74 0.0985556 0.0873011 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0475492 0.042949 148 34 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.89 vpr 54.98 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 16.7 MiB 0.08 853 17523 5443 9889 2191 55.2 MiB 0.22 0.00 3.4529 -114.711 -3.4529 3.4529 1.05 0.00100337 0.000920183 0.0865702 0.0793253 30 1885 20 6.64007e+06 389298 526063. 1820.29 1.14 0.211139 0.190215 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.32 0.08 0.18 -1 -1 0.32 0.043582 0.0390159 116 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.89 vpr 55.67 MiB 0.03 7240 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.36 1192 13629 3357 8864 1408 56.2 MiB 0.24 0.01 4.97469 -167.233 -4.97469 4.97469 1.05 0.00163103 0.00149636 0.0899147 0.0824168 32 2825 26 6.64007e+06 565110 554710. 1919.41 1.44 0.313272 0.282593 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.062573 0.0564454 188 127 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.52 vpr 55.44 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30456 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 17.1 MiB 0.16 1027 16762 4357 10483 1922 55.9 MiB 0.24 0.00 4.27488 -146.847 -4.27488 4.27488 1.06 0.0012577 0.00115473 0.0921762 0.0845069 28 2563 23 6.64007e+06 477204 500653. 1732.36 1.29 0.255355 0.230595 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0460567 0.0416201 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.87 vpr 54.93 MiB 0.04 6688 -1 -1 1 0.03 -1 -1 30096 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 17.0 MiB 0.09 882 11046 2802 6952 1292 55.5 MiB 0.16 0.00 3.5621 -124.172 -3.5621 3.5621 1.07 0.00100748 0.000924811 0.054147 0.0496189 30 1857 21 6.64007e+06 401856 526063. 1820.29 1.25 0.185361 0.16656 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.34 0.09 0.15 -1 -1 0.34 0.0428854 0.0387424 124 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.49 vpr 55.32 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30700 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 17.5 MiB 0.09 1334 20347 5362 13158 1827 55.9 MiB 0.18 0.00 4.95502 -168.119 -4.95502 4.95502 0.72 0.000528865 0.000478496 0.0452319 0.040935 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.00 0.11712 0.103994 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0676236 0.0611178 190 34 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.81 vpr 54.84 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30132 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 16.6 MiB 0.10 623 13731 4925 6406 2400 55.1 MiB 0.19 0.00 3.5061 -118.666 -3.5061 3.5061 1.05 0.00099857 0.000917096 0.081639 0.0750215 32 2131 28 6.64007e+06 213486 554710. 1919.41 1.28 0.222841 0.200702 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0396032 0.035452 121 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.08 vpr 55.04 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30052 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 17.0 MiB 0.09 855 13939 4099 8667 1173 55.7 MiB 0.18 0.00 3.47387 -112.968 -3.47387 3.47387 1.06 0.00100564 0.000922618 0.0689214 0.0631201 28 1888 22 6.64007e+06 401856 500653. 1732.36 1.15 0.196859 0.176979 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0402767 0.0361234 114 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.46 vpr 55.39 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30284 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1003 12839 3224 8329 1286 55.9 MiB 0.20 0.00 3.6803 -109.03 -3.6803 3.6803 1.05 0.00124513 0.00114069 0.0772871 0.0708789 26 2529 22 6.64007e+06 426972 477104. 1650.88 1.27 0.235788 0.212555 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.049759 0.044791 134 88 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.17 vpr 55.44 MiB 0.05 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 17.1 MiB 0.09 937 11048 2797 7564 687 55.9 MiB 0.10 0.00 4.21976 -143.232 -4.21976 4.21976 0.72 0.000477426 0.000430346 0.0301697 0.027283 32 2378 24 6.64007e+06 276276 554710. 1919.41 1.29 0.199789 0.179065 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0527214 0.0475618 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.26 vpr 55.30 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30500 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1070 15876 4480 9346 2050 56.0 MiB 0.26 0.01 4.25856 -146.098 -4.25856 4.25856 1.05 0.00132236 0.00121333 0.0942745 0.0864867 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.46 0.29616 0.26703 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.059244 0.0534081 154 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.22 vpr 55.38 MiB 0.04 6984 -1 -1 1 0.05 -1 -1 30372 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 16.7 MiB 0.18 863 8856 1892 6516 448 55.5 MiB 0.14 0.00 3.4749 -121.747 -3.4749 3.4749 1.06 0.00112036 0.00102685 0.0485605 0.0444489 32 2048 21 6.64007e+06 401856 554710. 1919.41 1.23 0.191595 0.172026 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0462755 0.0415336 122 65 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.64 vpr 55.49 MiB 0.05 6916 -1 -1 1 0.04 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 821 8336 2395 4162 1779 55.8 MiB 0.13 0.00 3.72326 -116.749 -3.72326 3.72326 1.04 0.00110859 0.00101531 0.0566862 0.0519478 32 1980 18 6.64007e+06 213486 554710. 1919.41 1.21 0.190514 0.1711 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0441328 0.0395571 109 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 6.06 vpr 55.20 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 16.9 MiB 0.17 985 17635 4923 10695 2017 55.8 MiB 0.27 0.00 3.4529 -110.073 -3.4529 3.4529 1.05 0.00121317 0.00111362 0.100009 0.0917748 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.69 0.266048 0.23999 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0468873 0.0422569 139 60 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.56 vpr 55.11 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 16.9 MiB 0.10 939 14996 4215 8524 2257 55.7 MiB 0.21 0.00 4.39198 -124.88 -4.39198 4.39198 1.05 0.0011054 0.00101461 0.0833251 0.0764293 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.87 0.239375 0.2159 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.20 0.05 0.09 -1 -1 0.20 0.0202394 0.018137 134 34 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.29 vpr 55.23 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30008 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 16.7 MiB 0.20 846 13731 4520 7348 1863 55.4 MiB 0.20 0.00 3.5343 -117.296 -3.5343 3.5343 1.05 0.00105949 0.000970617 0.0860166 0.0788566 32 1980 19 6.64007e+06 238602 554710. 1919.41 1.23 0.221041 0.198949 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.27 0.10 0.21 -1 -1 0.27 0.0410077 0.0367911 114 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.28 vpr 55.31 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 17.0 MiB 0.14 892 11281 2807 6986 1488 55.7 MiB 0.17 0.00 3.6865 -117.315 -3.6865 3.6865 1.04 0.00114211 0.00104597 0.0766431 0.0702538 30 1846 19 6.64007e+06 213486 526063. 1820.29 1.13 0.215415 0.193931 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0318038 0.0282908 114 91 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.42 vpr 55.18 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30352 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1121 19124 6194 10224 2706 55.9 MiB 0.27 0.00 4.18856 -139.706 -4.18856 4.18856 1.05 0.00115981 0.00106592 0.0990031 0.0909037 32 2557 23 6.64007e+06 464646 554710. 1919.41 1.27 0.250534 0.226351 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0507878 0.0457501 152 4 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.89 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1037 18660 5257 10625 2778 56.0 MiB 0.28 0.00 4.17032 -143.358 -4.17032 4.17032 1.05 0.00131033 0.00120238 0.10928 0.100132 32 2589 21 6.64007e+06 452088 554710. 1919.41 1.31 0.275482 0.249069 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.25 0.13 0.24 -1 -1 0.25 0.0534406 0.0482574 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.43 vpr 55.35 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30332 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 17.4 MiB 0.21 1085 15876 4268 10377 1231 56.2 MiB 0.24 0.00 4.15553 -144.194 -4.15553 4.15553 1.05 0.00133427 0.00122529 0.0950285 0.0871671 32 2670 22 6.64007e+06 452088 554710. 1919.41 1.35 0.267194 0.241568 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547757 0.0494116 153 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.65 vpr 55.54 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30280 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 17.0 MiB 0.17 963 9146 1745 6045 1356 55.8 MiB 0.13 0.00 4.17056 -135.219 -4.17056 4.17056 1.06 0.00129923 0.00119146 0.0534929 0.0490784 30 3028 24 6.64007e+06 477204 526063. 1820.29 4.11 0.41421 0.371418 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.25 0.12 0.20 -1 -1 0.25 0.0588011 0.0529675 149 65 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.92 vpr 55.16 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.11 840 12856 4254 6466 2136 55.5 MiB 0.18 0.00 3.4921 -115.538 -3.4921 3.4921 0.93 0.00100641 0.000923602 0.0770531 0.0707705 32 2099 22 6.64007e+06 238602 554710. 1919.41 1.22 0.204681 0.184357 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403359 0.0362079 113 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.32 vpr 55.61 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 17.0 MiB 0.19 996 13127 3599 7422 2106 55.9 MiB 0.21 0.00 4.20393 -135.69 -4.20393 4.20393 1.08 0.00123952 0.00113419 0.08993 0.0824502 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.66 0.284503 0.256489 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0480125 0.0433434 146 63 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.86 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30700 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1061 10232 2187 7405 640 55.9 MiB 0.17 0.00 4.16036 -143.59 -4.16036 4.16036 0.85 0.00143536 0.00131582 0.0631531 0.0578799 26 3037 26 6.64007e+06 514878 477104. 1650.88 2.62 0.258853 0.232303 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586937 0.0526751 156 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.55 vpr 55.47 MiB 0.08 7156 -1 -1 1 0.03 -1 -1 30684 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 924 14769 3776 9247 1746 55.9 MiB 0.23 0.00 4.18868 -135.93 -4.18868 4.18868 1.07 0.00132272 0.00121148 0.0929273 0.0851 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.29 0.26409 0.23814 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0554051 0.049948 148 94 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.22 vpr 55.72 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30352 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 973 15004 4033 8498 2473 55.8 MiB 0.23 0.00 3.6693 -113.052 -3.6693 3.6693 1.07 0.00127053 0.00116374 0.0930932 0.0852981 32 2183 19 6.64007e+06 401856 554710. 1919.41 1.25 0.249909 0.225552 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.27 0.10 0.24 -1 -1 0.27 0.050113 0.0451349 138 92 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.30 vpr 55.61 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1125 9725 2385 6614 726 56.0 MiB 0.19 0.00 4.21673 -144.443 -4.21673 4.21673 1.05 0.00132533 0.00121222 0.0714439 0.0656261 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.41 0.249974 0.225404 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0540025 0.0487296 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.29 vpr 55.42 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30140 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 964 18079 5189 10710 2180 55.8 MiB 0.25 0.01 3.5353 -109.312 -3.5353 3.5353 1.05 0.00177736 0.00162604 0.104007 0.0951663 32 2101 19 6.64007e+06 452088 554710. 1919.41 1.23 0.253839 0.228985 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0490144 0.0440913 136 88 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.98 vpr 54.81 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.07 799 9356 2113 6168 1075 55.4 MiB 0.14 0.00 3.4921 -122.483 -3.4921 3.4921 1.07 0.00100403 0.000920974 0.0561914 0.0516319 32 1948 20 6.64007e+06 213486 554710. 1919.41 1.22 0.188725 0.169856 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0386589 0.034755 115 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.59 vpr 55.64 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30280 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 992 16743 5741 8435 2567 56.1 MiB 0.25 0.00 4.25856 -144.485 -4.25856 4.25856 1.06 0.00131985 0.00121018 0.100311 0.0919532 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.55 0.277531 0.250419 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.24 0.13 0.18 -1 -1 0.24 0.0550652 0.049651 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.57 vpr 55.67 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 17.3 MiB 0.12 1054 17367 5167 10302 1898 56.1 MiB 0.28 0.00 4.21976 -145.962 -4.21976 4.21976 1.06 0.00131734 0.00120908 0.122301 0.11223 32 2466 19 6.64007e+06 288834 554710. 1919.41 1.27 0.285232 0.258216 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0623077 0.0562074 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.44 vpr 55.05 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30356 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 0.19 691 7975 1531 6145 299 55.5 MiB 0.12 0.00 3.6913 -111.241 -3.6913 3.6913 1.07 0.00103186 0.000944444 0.0414361 0.0379303 26 2376 30 6.64007e+06 376740 477104. 1650.88 2.00 0.193813 0.17318 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0349786 0.031347 112 55 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.87 vpr 54.85 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.7 MiB 0.09 653 13381 4684 6039 2658 55.1 MiB 0.19 0.00 3.5533 -116.629 -3.5533 3.5533 1.08 0.000971299 0.000891432 0.0774471 0.0711454 32 1990 24 6.64007e+06 226044 554710. 1919.41 1.26 0.206711 0.186341 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0421946 0.0378353 118 4 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.22 vpr 55.64 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30176 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 17.2 MiB 0.17 927 16303 4785 8793 2725 55.9 MiB 0.24 0.00 4.16476 -135.871 -4.16476 4.16476 1.03 0.00124156 0.0011387 0.0949523 0.0870547 32 2289 21 6.64007e+06 414414 554710. 1919.41 1.23 0.251172 0.226712 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0518616 0.0466519 139 59 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.40 vpr 55.64 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30136 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1051 17397 5163 9750 2484 56.0 MiB 0.26 0.00 4.41596 -136.112 -4.41596 4.41596 1.05 0.00128196 0.00117435 0.102702 0.0941093 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.73 0.231706 0.208878 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.24 0.13 0.17 -1 -1 0.24 0.0547931 0.0491792 136 88 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.99 vpr 55.75 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 17.4 MiB 0.10 1159 10441 2545 7247 649 55.7 MiB 0.19 0.00 4.95022 -163.094 -4.95022 4.95022 1.08 0.00136854 0.00125791 0.0656561 0.0604157 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.56 0.247047 0.22344 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0599087 0.0542162 179 3 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.06 vpr 55.28 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 16.9 MiB 0.17 813 9732 2096 6039 1597 55.8 MiB 0.13 0.00 3.7815 -111.41 -3.7815 3.7815 1.05 0.00120679 0.0011059 0.0567784 0.0520472 28 2429 27 6.64007e+06 426972 500653. 1732.36 2.09 0.221123 0.198589 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0402802 0.0363366 138 59 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.61 vpr 54.95 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30460 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 529 12292 5081 5761 1450 55.0 MiB 0.14 0.00 3.54427 -98.353 -3.54427 3.54427 1.05 0.000919665 0.000843569 0.0684978 0.0628783 32 1668 31 6.64007e+06 263718 554710. 1919.41 1.29 0.198856 0.178471 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0400883 0.0358249 107 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.55 vpr 55.62 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30448 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 17.5 MiB 0.18 1462 20856 5895 12562 2399 55.9 MiB 0.37 0.01 4.52196 -148.077 -4.52196 4.52196 1.05 0.00155719 0.00142831 0.134225 0.123203 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.53 0.335947 0.304042 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630288 0.0567112 186 95 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.54 vpr 55.65 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 17.3 MiB 0.29 998 12919 3192 8538 1189 56.0 MiB 0.22 0.00 4.42996 -140.975 -4.42996 4.42996 1.05 0.00139901 0.00128311 0.101053 0.0927489 32 2535 22 6.64007e+06 276276 554710. 1919.41 1.36 0.287761 0.259014 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0621537 0.0557817 145 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.41 vpr 55.36 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 17.0 MiB 0.25 894 11948 3681 7128 1139 55.8 MiB 0.18 0.00 3.6755 -115.703 -3.6755 3.6755 1.07 0.00112512 0.00103048 0.0813656 0.0745713 32 1930 19 6.64007e+06 200928 554710. 1919.41 1.20 0.221576 0.199614 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0393538 0.0353591 108 89 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.76 vpr 55.22 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30252 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.08 1023 18745 6322 9498 2925 56.0 MiB 0.28 0.00 4.46396 -140.121 -4.46396 4.46396 1.05 0.00120869 0.0011085 0.106129 0.0973526 28 3262 26 6.64007e+06 414414 500653. 1732.36 2.10 0.270364 0.244185 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0528788 0.0475995 147 34 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.01 vpr 55.77 MiB 0.04 7304 -1 -1 1 0.03 -1 -1 30612 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1135 20076 5790 11566 2720 55.8 MiB 0.17 0.00 4.51716 -144.659 -4.51716 4.51716 1.05 0.000525179 0.000475606 0.0477573 0.0432607 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.81 0.11755 0.10446 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0598704 0.0538754 173 64 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.32 vpr 55.12 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30264 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 923 11484 2608 8162 714 55.8 MiB 0.18 0.00 3.73061 -110.59 -3.73061 3.73061 1.05 0.00120162 0.0011009 0.0660836 0.0604918 26 3004 29 6.64007e+06 426972 477104. 1650.88 2.48 0.239797 0.215707 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.21 0.13 0.18 -1 -1 0.21 0.0540627 0.0485842 135 61 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.96 vpr 56.00 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30368 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 17.2 MiB 0.16 1008 13516 3637 9135 744 55.7 MiB 0.24 0.01 4.19956 -142.899 -4.19956 4.19956 1.05 0.00131852 0.0012095 0.0803168 0.0734207 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.59 0.290275 0.261208 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0593716 0.0535246 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.36 vpr 55.56 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30336 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 17.1 MiB 0.17 988 17184 5218 8807 3159 56.0 MiB 0.25 0.00 3.62559 -123.648 -3.62559 3.62559 1.05 0.00131302 0.00120449 0.0959092 0.0879898 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.95 0.269417 0.24312 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.22 0.17 0.20 -1 -1 0.22 0.0696533 0.062653 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.88 vpr 54.99 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30200 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 16.6 MiB 0.09 573 13430 5649 6739 1042 55.3 MiB 0.16 0.00 3.6785 -105.931 -3.6785 3.6785 1.07 0.000976675 0.000895559 0.0796449 0.0730907 28 1653 18 6.64007e+06 226044 500653. 1732.36 1.05 0.131489 0.118321 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0398437 0.0356805 95 34 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.08 vpr 55.26 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30112 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 16.5 MiB 0.19 857 11783 4174 5528 2081 55.5 MiB 0.19 0.00 4.00656 -110.848 -4.00656 4.00656 1.08 0.00106401 0.000973802 0.0820563 0.0751292 30 1873 19 6.64007e+06 238602 526063. 1820.29 1.19 0.194732 0.174684 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0335728 0.0301894 112 82 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.18 vpr 55.47 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30284 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.12 1100 13261 3564 8068 1629 55.8 MiB 0.18 0.00 4.80256 -145.153 -4.80256 4.80256 1.06 0.00121894 0.00111877 0.072291 0.0663308 28 2902 24 6.64007e+06 477204 500653. 1732.36 3.90 0.40015 0.358551 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0510047 0.0459481 151 34 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.35 vpr 55.04 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30360 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.9 MiB 0.21 620 10442 2502 7352 588 55.7 MiB 0.14 0.00 3.6803 -100.526 -3.6803 3.6803 1.05 0.000975395 0.000893918 0.0519281 0.0475534 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.51 0.167866 0.149882 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.037361 0.0333843 108 56 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.09 vpr 55.07 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 16.6 MiB 0.16 691 13906 4599 7385 1922 55.5 MiB 0.20 0.00 3.53127 -120.288 -3.53127 3.53127 1.05 0.00106677 0.00097929 0.087393 0.08024 32 2039 20 6.64007e+06 213486 554710. 1919.41 1.28 0.213479 0.192513 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.25 0.11 0.23 -1 -1 0.25 0.044617 0.0400972 118 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.33 vpr 55.61 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30256 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 17.2 MiB 0.18 999 13261 3446 8635 1180 55.8 MiB 0.19 0.00 3.5665 -119.865 -3.5665 3.5665 1.04 0.00125855 0.00115397 0.0744826 0.0681984 30 2030 20 6.64007e+06 477204 526063. 1820.29 1.20 0.2306 0.2079 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0483865 0.0434082 144 64 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.00 vpr 55.06 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 869 9368 2508 6076 784 55.5 MiB 0.14 0.00 3.34153 -105.882 -3.34153 3.34153 1.05 0.00100174 0.00091668 0.0581428 0.0533356 32 1935 19 6.64007e+06 213486 554710. 1919.41 1.17 0.182319 0.16378 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0355479 0.0318938 106 55 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.34 vpr 55.33 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 879 9865 2512 6573 780 55.9 MiB 0.15 0.00 3.57229 -117.612 -3.57229 3.57229 1.03 0.00123995 0.00113653 0.0587771 0.0538537 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.75 0.231702 0.208362 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.047711 0.0430243 137 65 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.36 vpr 55.57 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 17.2 MiB 0.29 875 10540 2287 7686 567 55.9 MiB 0.19 0.00 3.79366 -119.555 -3.79366 3.79366 1.09 0.00133896 0.00122676 0.0729341 0.0669137 30 2033 25 6.64007e+06 464646 526063. 1820.29 1.28 0.24985 0.224903 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510956 0.0460656 149 93 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.21 vpr 55.20 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30204 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 17.0 MiB 0.17 816 8626 2345 5890 391 55.7 MiB 0.14 0.00 3.06096 -106.925 -3.06096 3.06096 1.05 0.00108683 0.000995915 0.0553231 0.0507273 32 2043 18 6.64007e+06 226044 554710. 1919.41 1.23 0.188004 0.169097 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0449396 0.0403321 115 61 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.26 vpr 55.21 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.20 920 11296 3024 7326 946 55.6 MiB 0.17 0.00 3.5031 -121.121 -3.5031 3.5031 1.05 0.00111123 0.00101844 0.0732044 0.0671231 30 2197 20 6.64007e+06 226044 526063. 1820.29 1.12 0.181123 0.162508 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0450467 0.0404539 121 63 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.29 vpr 55.54 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30580 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1027 12240 2965 8371 904 56.0 MiB 0.19 0.00 4.25676 -144.495 -4.25676 4.25676 1.13 0.00130301 0.00119484 0.0704251 0.0645493 32 2501 30 6.64007e+06 477204 554710. 1919.41 1.44 0.262847 0.236714 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.058365 0.0525856 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.23 vpr 55.45 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30512 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1021 16079 4076 10280 1723 55.8 MiB 0.16 0.00 3.7925 -111.563 -3.7925 3.7925 1.03 0.000437226 0.000394134 0.0478999 0.0434832 32 2199 23 6.64007e+06 426972 554710. 1919.41 1.14 0.20129 0.180465 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.045776 0.0412528 135 62 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.71 vpr 55.96 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.30 937 9020 1835 6701 484 55.9 MiB 0.16 0.01 4.29776 -145.038 -4.29776 4.29776 1.06 0.00145479 0.00133386 0.0581837 0.0533538 32 2670 31 6.64007e+06 489762 554710. 1919.41 1.40 0.263477 0.23657 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0618353 0.0555575 158 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.80 vpr 54.87 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30164 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 16.2 MiB 0.08 804 11948 3966 6404 1578 54.9 MiB 0.15 0.00 3.08296 -103.61 -3.08296 3.08296 1.04 0.000921943 0.00084658 0.0669025 0.0614338 32 1812 20 6.64007e+06 213486 554710. 1919.41 1.18 0.191357 0.172369 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0347888 0.0310368 106 4 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.27 vpr 55.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 17.1 MiB 0.10 998 18111 4956 10747 2408 55.7 MiB 0.14 0.00 4.26296 -139.632 -4.26296 4.26296 1.06 0.000479012 0.000431854 0.0404269 0.0364651 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.76 0.229125 0.20518 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0572017 0.0515105 144 92 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.42 vpr 55.55 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30028 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.9 MiB 0.32 734 13381 4309 7077 1995 55.7 MiB 0.20 0.00 3.54047 -121.881 -3.54047 3.54047 1.06 0.00137499 0.00126292 0.0962368 0.088278 28 2004 19 6.64007e+06 213486 500653. 1732.36 1.20 0.241626 0.217943 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0488515 0.0438367 114 96 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.47 vpr 55.46 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30244 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1102 9501 2041 6911 549 56.2 MiB 0.16 0.01 3.5841 -124.322 -3.5841 3.5841 1.05 0.00129492 0.00118817 0.0554789 0.050903 30 2381 21 6.64007e+06 464646 526063. 1820.29 1.26 0.219561 0.197791 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0476442 0.0430128 151 65 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.93 vpr 55.43 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30664 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.26 1244 16489 4012 10933 1544 56.3 MiB 0.28 0.01 4.96651 -168.366 -4.96651 4.96651 1.05 0.001615 0.00147831 0.106904 0.098176 26 3486 28 6.64007e+06 565110 477104. 1650.88 3.19 0.324512 0.293038 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0630546 0.0569107 188 96 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.90 vpr 54.70 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30096 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.10 483 10509 2545 7262 702 55.0 MiB 0.11 0.00 2.73878 -81.5531 -2.73878 2.73878 1.06 0.00081907 0.000749193 0.0555462 0.0508053 28 1397 23 6.64007e+06 188370 500653. 1732.36 1.12 0.162415 0.145 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0338227 0.0300703 83 56 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.96 vpr 55.02 MiB 0.05 6892 -1 -1 1 0.03 -1 -1 30324 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 16.4 MiB 0.08 793 10388 3558 5136 1694 55.0 MiB 0.14 0.00 3.6815 -114.291 -3.6815 3.6815 1.05 0.00100083 0.000917528 0.064177 0.0588883 32 1615 19 6.64007e+06 213486 554710. 1919.41 1.15 0.187007 0.168235 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0403113 0.0361639 97 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.96 vpr 55.17 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.9 MiB 0.11 798 13966 5020 6560 2386 55.6 MiB 0.21 0.00 3.4859 -119.604 -3.4859 3.4859 1.06 0.00106125 0.000973399 0.0861333 0.0790485 32 2382 23 6.64007e+06 226044 554710. 1919.41 1.38 0.223093 0.201109 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0457113 0.0410063 126 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.86 vpr 54.74 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30372 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.4 MiB 0.06 678 12127 3168 7672 1287 55.0 MiB 0.14 0.00 3.4089 -91.215 -3.4089 3.4089 1.04 0.00117672 0.00107809 0.0538512 0.0494329 26 1687 20 6.64007e+06 426972 477104. 1650.88 1.28 0.159814 0.143333 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0442308 0.0393992 103 34 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.42 vpr 55.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1064 14828 5337 7470 2021 55.8 MiB 0.24 0.00 4.34676 -140.278 -4.34676 4.34676 1.06 0.000807085 0.000734388 0.0883533 0.0805688 32 2475 24 6.64007e+06 276276 554710. 1919.41 1.26 0.266315 0.239407 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.24 0.12 0.11 -1 -1 0.24 0.0566516 0.0510199 149 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.54 vpr 55.86 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30344 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 17.3 MiB 0.19 786 10336 2273 7345 718 56.0 MiB 0.09 0.00 3.53327 -114.261 -3.53327 3.53327 1.07 0.000498228 0.000443033 0.0243597 0.0219332 28 2510 49 6.64007e+06 489762 500653. 1732.36 2.36 0.240548 0.214758 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.22 0.13 0.20 -1 -1 0.22 0.0546721 0.0493793 148 94 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.66 vpr 55.34 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 17.3 MiB 0.20 984 7523 1506 5708 309 55.8 MiB 0.14 0.00 3.92206 -133.487 -3.92206 3.92206 1.05 0.00137067 0.00125757 0.0497852 0.0456441 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.84 0.248154 0.222431 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.27 0.17 0.22 -1 -1 0.27 0.0642352 0.057744 151 96 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.51 vpr 55.31 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 17.1 MiB 0.34 986 12323 4513 6271 1539 55.8 MiB 0.21 0.00 4.33507 -129.747 -4.33507 4.33507 1.05 0.00127901 0.00117203 0.0910724 0.0835554 32 2540 23 6.65987e+06 266238 554710. 1919.41 1.30 0.257887 0.232747 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0536876 0.0483671 140 91 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.88 vpr 55.04 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 17.3 MiB 0.14 1040 16523 4439 10256 1828 55.9 MiB 0.24 0.00 3.41879 -119.689 -3.41879 3.41879 1.06 0.00125118 0.00114677 0.0952753 0.0874299 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.58 0.257862 0.232788 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0571844 0.0515881 141 65 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.33 vpr 55.06 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30492 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 16.6 MiB 0.13 793 11603 2857 6819 1927 55.5 MiB 0.16 0.00 4.2977 -123.649 -4.2977 4.2977 1.05 0.00114653 0.00105196 0.0772747 0.0709645 34 2278 23 6.65987e+06 278916 585099. 2024.56 2.16 0.269989 0.242956 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.05252 0.0472835 138 34 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 6.12 vpr 55.04 MiB 0.05 7056 -1 -1 1 0.05 -1 -1 30168 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1026 15456 4961 8586 1909 55.5 MiB 0.26 0.00 4.14936 -143.085 -4.14936 4.14936 1.09 0.00125067 0.00114695 0.109707 0.100689 32 2926 21 6.65987e+06 253560 554710. 1919.41 1.41 0.274933 0.248726 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0574555 0.0518716 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.08 vpr 55.28 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1029 9501 1978 7135 388 55.4 MiB 0.16 0.00 3.43623 -117.882 -3.43623 3.43623 1.07 0.00131834 0.00120651 0.0565238 0.051835 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.93 0.124558 0.111381 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0548377 0.049448 154 64 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.93 vpr 54.68 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 16.1 MiB 0.20 580 13026 4344 6329 2353 54.9 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 1.06 0.000955119 0.000876981 0.0746351 0.0685204 30 1363 17 6.65987e+06 240882 526063. 1820.29 1.06 0.185149 0.166772 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0327821 0.0294105 96 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.02 vpr 55.14 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30052 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1006 10170 2426 6636 1108 55.5 MiB 0.15 0.00 3.27903 -106.33 -3.27903 3.27903 1.03 0.00110905 0.00101816 0.054649 0.050174 28 2449 18 6.65987e+06 418374 500653. 1732.36 1.31 0.193834 0.174623 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0445708 0.0401505 139 4 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.16 vpr 55.31 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 16.7 MiB 0.27 870 11571 3268 6617 1686 55.5 MiB 0.15 0.00 3.07084 -101.313 -3.07084 3.07084 1.07 0.00108156 0.000990332 0.0653262 0.0596821 32 1812 21 6.65987e+06 202848 554710. 1919.41 1.16 0.201471 0.180874 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0431414 0.0386952 105 85 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.31 vpr 55.02 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 16.7 MiB 0.19 642 11432 4032 4649 2751 55.4 MiB 0.15 0.00 3.56921 -118.924 -3.56921 3.56921 0.92 0.00106261 0.000970312 0.0734364 0.0673744 36 2032 39 6.65987e+06 202848 612192. 2118.31 3.24 0.329633 0.294558 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.27 0.10 0.24 -1 -1 0.27 0.0411531 0.0369138 121 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.02 vpr 55.04 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30032 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 16.6 MiB 0.24 784 11571 3060 7609 902 55.4 MiB 0.17 0.00 3.4841 -113.76 -3.4841 3.4841 1.07 0.00106762 0.000978702 0.0759783 0.0696433 32 1689 20 6.65987e+06 215526 554710. 1919.41 1.19 0.195798 0.175748 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0479643 0.0429902 110 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 5.14 vpr 55.15 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30476 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.9 MiB 0.22 841 11223 2602 8034 587 55.5 MiB 0.16 0.00 3.27957 -108.894 -3.27957 3.27957 1.08 0.0010708 0.000979503 0.0602796 0.0552202 30 1969 21 6.65987e+06 367662 526063. 1820.29 1.22 0.194145 0.174292 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0402884 0.036201 114 65 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.44 vpr 55.44 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30184 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 17.2 MiB 0.39 1002 18711 5900 10256 2555 55.8 MiB 0.28 0.00 3.50686 -122.446 -3.50686 3.50686 1.07 0.00125494 0.00114995 0.111504 0.102227 32 2409 24 6.65987e+06 405696 554710. 1919.41 1.30 0.276868 0.250225 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0569309 0.0512388 143 58 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.44 vpr 55.45 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 17.0 MiB 0.27 942 7973 1567 6126 280 55.5 MiB 0.15 0.00 4.02327 -135.611 -4.02327 4.02327 1.07 0.00132467 0.00121557 0.0504346 0.04628 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.42 0.226447 0.203972 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.26 0.16 0.23 -1 -1 0.26 0.0621108 0.0560387 156 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.89 vpr 54.79 MiB 0.03 6996 -1 -1 1 0.03 -1 -1 30424 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 16.2 MiB 0.16 686 7177 1709 4538 930 54.9 MiB 0.11 0.00 3.15358 -93.6229 -3.15358 3.15358 1.06 0.000937189 0.000859094 0.0426784 0.0391884 28 1802 20 6.65987e+06 228204 500653. 1732.36 1.18 0.15865 0.142203 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407115 0.0364626 107 29 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.57 vpr 55.38 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 1074 13992 4161 7846 1985 55.9 MiB 0.24 0.00 3.5141 -125.301 -3.5141 3.5141 1.07 0.00130083 0.00119329 0.103564 0.0950837 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.31 0.271227 0.245193 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530136 0.0478926 146 63 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.66 vpr 55.34 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 17.1 MiB 0.33 934 18323 6450 8556 3317 55.8 MiB 0.23 0.00 3.6343 -123.732 -3.6343 3.6343 1.05 0.0012488 0.00114415 0.105495 0.0967105 30 2475 27 6.65987e+06 431052 526063. 1820.29 6.25 0.493804 0.44283 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463459 0.0418076 142 57 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.97 vpr 55.10 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 29964 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 16.9 MiB 0.23 832 15430 4777 8349 2304 55.5 MiB 0.21 0.00 2.83964 -101.748 -2.83964 2.83964 1.04 0.00110264 0.00100972 0.0830171 0.076024 30 1919 16 6.65987e+06 380340 526063. 1820.29 1.18 0.215495 0.194221 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0387878 0.0349131 118 65 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.67 vpr 54.48 MiB 0.02 6772 -1 -1 1 0.03 -1 -1 29984 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.3 MiB 0.15 661 10835 3152 6204 1479 54.7 MiB 0.12 0.00 2.60038 -85.2282 -2.60038 2.60038 1.05 0.000791966 0.00072671 0.0548181 0.0502851 28 1412 25 6.65987e+06 190170 500653. 1732.36 1.05 0.158034 0.141339 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.028531 0.0254443 85 34 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.40 vpr 54.92 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 16.7 MiB 0.21 855 13768 4604 7573 1591 55.5 MiB 0.20 0.00 3.94338 -122.155 -3.94338 3.94338 0.95 0.000637775 0.000577947 0.0931743 0.0854171 32 1948 20 6.65987e+06 202848 554710. 1919.41 1.14 0.227972 0.205556 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401114 0.0360384 113 64 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.05 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.05 -1 -1 30008 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 17.1 MiB 0.07 1021 12248 3399 7922 927 55.8 MiB 0.21 0.00 3.9823 -134.861 -3.9823 3.9823 1.06 0.00134363 0.00122449 0.0798405 0.0731428 26 2573 27 6.65987e+06 431052 477104. 1650.88 1.53 0.251242 0.226795 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0529492 0.0478262 145 34 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.27 vpr 55.54 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30432 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 0.32 1084 15644 4587 8678 2379 55.7 MiB 0.24 0.01 3.46744 -121.209 -3.46744 3.46744 1.05 0.00142028 0.00130135 0.0994392 0.0911577 32 2893 24 6.65987e+06 456408 554710. 1919.41 1.37 0.266558 0.239569 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0465621 0.0417213 149 124 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.94 vpr 54.52 MiB 0.04 6764 -1 -1 1 0.04 -1 -1 30504 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.0 MiB 0.20 410 10345 3142 6004 1199 54.7 MiB 0.10 0.00 2.61938 -68.655 -2.61938 2.61938 1.06 0.000682999 0.000624426 0.0467985 0.0428526 30 1108 22 6.65987e+06 215526 526063. 1820.29 1.05 0.133367 0.11936 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.26 0.05 0.20 -1 -1 0.26 0.0243357 0.0217542 77 30 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.72 vpr 55.23 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1123 11064 3077 6737 1250 55.5 MiB 0.19 0.00 4.10424 -135.549 -4.10424 4.10424 1.05 0.00115418 0.00106042 0.0718984 0.0660899 32 2636 25 6.65987e+06 253560 554710. 1919.41 1.35 0.226606 0.204538 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.046815 0.0422241 137 3 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.62 vpr 54.29 MiB 0.04 6588 -1 -1 1 0.03 -1 -1 30216 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.2 MiB 0.05 594 8553 1943 6358 252 54.8 MiB 0.09 0.00 2.22607 -81.0919 -2.22607 2.22607 1.04 0.00072048 0.000658924 0.0397925 0.0364155 28 1546 23 6.65987e+06 164814 500653. 1732.36 1.18 0.13224 0.118224 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.23 0.05 0.18 -1 -1 0.23 0.0207431 0.018679 81 3 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.02 vpr 55.21 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30492 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.08 1112 19189 6002 11213 1974 55.9 MiB 0.28 0.00 4.06247 -140.472 -4.06247 4.06247 1.05 0.00124928 0.0011469 0.111177 0.101981 32 2640 23 6.65987e+06 418374 554710. 1919.41 1.34 0.272976 0.246964 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0545103 0.0491758 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.19 vpr 54.90 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 29988 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 16.9 MiB 0.14 1134 16059 4004 10217 1838 55.6 MiB 0.25 0.01 3.38184 -119.391 -3.38184 3.38184 1.05 0.00119836 0.00110321 0.0878816 0.0809264 30 2437 23 6.65987e+06 443730 526063. 1820.29 1.27 0.242715 0.219788 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0492631 0.0444222 150 3 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.31 vpr 55.35 MiB 0.05 6940 -1 -1 1 0.04 -1 -1 30544 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 16.9 MiB 0.13 1120 14463 4038 8924 1501 55.4 MiB 0.24 0.00 3.91784 -136.256 -3.91784 3.91784 1.06 0.0013076 0.00119892 0.0864023 0.07923 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.91 0.261434 0.235841 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0608918 0.0548513 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 5.05 vpr 55.02 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 29964 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 16.7 MiB 0.07 736 8191 2107 5347 737 55.2 MiB 0.12 0.00 2.8895 -100.047 -2.8895 2.8895 1.05 0.000999552 0.000916055 0.0504124 0.0461954 28 1959 23 6.65987e+06 190170 500653. 1732.36 1.17 0.179442 0.160845 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.22 0.09 0.19 -1 -1 0.22 0.0369099 0.0331445 106 34 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.05 vpr 54.87 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.09 832 12156 3666 7026 1464 55.4 MiB 0.16 0.00 3.4951 -115.55 -3.4951 3.4951 1.05 0.00100324 0.000921046 0.0726376 0.066663 32 1928 21 6.65987e+06 240882 554710. 1919.41 1.19 0.198756 0.179033 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0406313 0.036505 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.01 vpr 54.74 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30164 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 590 7820 1903 5456 461 55.1 MiB 0.12 0.00 3.4309 -99.7277 -3.4309 3.4309 1.05 0.000951808 0.000872622 0.0461646 0.0423333 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.42 0.21077 0.188607 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0402513 0.0360958 107 34 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.12 vpr 54.76 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30240 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 686 12008 2561 8162 1285 55.1 MiB 0.14 0.00 3.4859 -118.026 -3.4859 3.4859 1.05 0.000996608 0.000915557 0.0702471 0.0644983 32 2225 24 6.65987e+06 228204 554710. 1919.41 1.27 0.203609 0.183369 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0474662 0.0425585 125 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.94 vpr 55.11 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 778 11809 2809 7761 1239 55.2 MiB 0.17 0.00 3.29178 -109.233 -3.29178 3.29178 1.05 0.00102396 0.00093902 0.0596901 0.0547288 26 2453 37 6.65987e+06 393018 477104. 1650.88 2.11 0.217196 0.194865 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.21 0.11 0.18 -1 -1 0.21 0.0427751 0.0383931 119 34 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.14 vpr 54.89 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29992 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 16.7 MiB 0.23 717 8047 1725 5786 536 55.5 MiB 0.12 0.00 2.76744 -86.2128 -2.76744 2.76744 1.05 0.00102687 0.000941732 0.0434244 0.039798 32 1839 18 6.65987e+06 380340 554710. 1919.41 1.16 0.166901 0.149738 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394439 0.0354111 109 61 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.22 vpr 55.80 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30440 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1246 13117 3185 8526 1406 55.8 MiB 0.24 0.01 4.16036 -141.523 -4.16036 4.16036 1.05 0.00141727 0.00130376 0.0813696 0.0748285 26 4082 47 6.65987e+06 494442 477104. 1650.88 10.09 0.510675 0.458992 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.21 0.17 0.17 -1 -1 0.21 0.055621 0.0502959 179 29 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.15 vpr 55.59 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30292 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1041 9447 2232 6542 673 56.1 MiB 0.16 0.00 3.5061 -122.514 -3.5061 3.5061 1.05 0.00131086 0.00120108 0.0579123 0.0530226 32 2399 23 6.65987e+06 443730 554710. 1919.41 1.27 0.228087 0.205469 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.050632 0.0457516 152 65 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.20 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 16.6 MiB 0.31 709 5599 957 4403 239 55.4 MiB 0.10 0.00 3.18838 -103.883 -3.18838 3.18838 1.06 0.00110577 0.0010124 0.0336432 0.030828 26 2166 21 6.65987e+06 354984 477104. 1650.88 2.10 0.172512 0.154203 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0477704 0.0427876 113 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.42 vpr 55.55 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 17.3 MiB 0.23 1062 14541 4862 7202 2477 55.9 MiB 0.26 0.00 3.4921 -118.867 -3.4921 3.4921 1.06 0.00126588 0.00115994 0.113081 0.103974 32 2506 18 6.65987e+06 266238 554710. 1919.41 1.26 0.267305 0.242082 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0555391 0.0500245 148 64 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.58 vpr 55.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1075 7953 1851 5455 647 56.1 MiB 0.15 0.00 4.84238 -140.996 -4.84238 4.84238 1.05 0.00140591 0.00128908 0.0648333 0.0594913 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.29 0.23704 0.213258 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0519342 0.0467881 149 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.10 vpr 55.54 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 17.0 MiB 0.39 977 8868 2457 6032 379 55.8 MiB 0.16 0.00 4.78027 -132.334 -4.78027 4.78027 1.05 0.00131079 0.00120044 0.0673211 0.0617271 30 2304 21 6.65987e+06 266238 526063. 1820.29 1.23 0.236623 0.21335 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0441531 0.0399301 143 90 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.67 vpr 55.33 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30184 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1043 11922 3052 7896 974 55.5 MiB 0.20 0.00 3.40784 -114.93 -3.40784 3.40784 1.05 0.00126687 0.00115932 0.0725945 0.0664838 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.94 0.233996 0.210773 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.22 0.14 0.17 -1 -1 0.22 0.0572352 0.0516096 146 64 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.44 vpr 54.90 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30392 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1091 9903 2241 6952 710 55.4 MiB 0.17 0.00 3.91784 -134.792 -3.91784 3.91784 1.05 0.0012944 0.00118757 0.059781 0.0548311 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.40 0.235866 0.212397 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0566692 0.0510885 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.66 vpr 55.62 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30456 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.27 1177 18648 4595 11838 2215 55.9 MiB 0.35 0.01 4.0593 -137.323 -4.0593 4.0593 1.06 0.00157777 0.00144798 0.123361 0.113229 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.66 0.328598 0.297177 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0689439 0.0622355 184 96 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.17 vpr 54.77 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 30436 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.14 685 11806 2914 7153 1739 55.5 MiB 0.17 0.00 3.55518 -111.493 -3.55518 3.55518 1.07 0.00102181 0.000937291 0.0722175 0.0662841 32 2030 23 6.65987e+06 228204 554710. 1919.41 1.28 0.204646 0.18418 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.26 0.11 0.22 -1 -1 0.26 0.0413874 0.0371872 116 34 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.97 vpr 55.74 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 976 9675 2155 7053 467 55.6 MiB 0.16 0.01 4.0281 -131.561 -4.0281 4.0281 1.09 0.00128488 0.00117955 0.0578887 0.0531327 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.92 0.22461 0.202286 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0559747 0.0504675 150 64 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.71 vpr 55.23 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30416 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1040 11641 3109 7665 867 55.4 MiB 0.20 0.00 3.62624 -117.445 -3.62624 3.62624 1.05 0.00127986 0.00117393 0.0709358 0.0650205 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.41 0.237516 0.214027 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.021162 0.0189285 148 63 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.20 vpr 55.20 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 17.2 MiB 0.16 853 8685 1897 5601 1187 55.7 MiB 0.14 0.00 4.14936 -138.467 -4.14936 4.14936 1.05 0.00118917 0.00109227 0.0598665 0.0550157 32 3554 31 6.65987e+06 253560 554710. 1919.41 2.30 0.29422 0.264706 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0584658 0.0527418 150 3 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.60 vpr 55.44 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 17.2 MiB 0.33 1097 11798 3144 7589 1065 55.6 MiB 0.20 0.00 3.29555 -116.715 -3.29555 3.29555 1.05 0.00132858 0.00121774 0.0733096 0.0671949 32 2610 28 6.65987e+06 431052 554710. 1919.41 1.32 0.255434 0.230093 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0688844 0.0619885 145 96 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.96 vpr 55.37 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30100 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.32 1042 7623 1446 5778 399 55.5 MiB 0.08 0.00 3.5841 -121.365 -3.5841 3.5841 1.10 0.00047034 0.000424146 0.0183568 0.0166702 32 2739 23 6.65987e+06 443730 554710. 1919.41 1.21 0.184643 0.165459 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0516239 0.0467119 146 61 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.75 vpr 55.69 MiB 0.05 7004 -1 -1 1 0.04 -1 -1 30356 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1118 19136 5296 11671 2169 55.5 MiB 0.31 0.01 3.42984 -118.83 -3.42984 3.42984 1.07 0.00130547 0.00119566 0.111212 0.101866 32 2579 24 6.65987e+06 469086 554710. 1919.41 1.32 0.284569 0.257162 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0574366 0.0517783 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.06 vpr 55.25 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.0 MiB 0.05 1049 17883 5721 9099 3063 55.4 MiB 0.28 0.00 4.02327 -139.097 -4.02327 4.02327 1.08 0.00149342 0.00136792 0.107416 0.0985898 32 2663 21 6.65987e+06 443730 554710. 1919.41 1.42 0.275329 0.248918 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0583972 0.0526435 150 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.14 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30588 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1032 17491 4961 10150 2380 55.8 MiB 0.28 0.00 3.95704 -138.916 -3.95704 3.95704 1.07 0.001304 0.00119499 0.108657 0.0996674 32 2565 23 6.65987e+06 469086 554710. 1919.41 1.34 0.277026 0.250119 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0587593 0.05295 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.64 vpr 55.47 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 17.5 MiB 0.36 1081 15859 4297 9232 2330 55.7 MiB 0.25 0.00 4.24338 -127.817 -4.24338 4.24338 0.82 0.00140294 0.0012855 0.104525 0.0956587 28 2788 21 6.65987e+06 431052 500653. 1732.36 1.34 0.279068 0.251371 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.022439 0.0199945 145 122 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.46 vpr 55.22 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1088 15822 4733 9518 1571 55.5 MiB 0.28 0.00 4.01118 -127.976 -4.01118 4.01118 0.85 0.00136157 0.00124829 0.121888 0.111829 32 2771 23 6.65987e+06 253560 554710. 1919.41 1.33 0.275803 0.249095 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.27 0.15 0.21 -1 -1 0.27 0.0623543 0.0561593 149 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.00 vpr 54.80 MiB 0.08 6936 -1 -1 1 0.03 -1 -1 30440 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 16.8 MiB 0.07 798 8401 2034 5819 548 55.3 MiB 0.13 0.00 3.27158 -111.236 -3.27158 3.27158 1.06 0.00105251 0.000956504 0.0440923 0.0403958 30 1935 19 6.65987e+06 380340 526063. 1820.29 1.18 0.171615 0.154045 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0436546 0.0392642 124 34 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.20 vpr 55.30 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.9 MiB 0.27 912 11830 3154 7792 884 55.7 MiB 0.19 0.00 3.41618 -118.934 -3.41618 3.41618 1.05 0.00116321 0.00106443 0.0805029 0.0737111 32 2244 21 6.65987e+06 228204 554710. 1919.41 1.24 0.226891 0.204159 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.048934 0.0439708 121 94 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.73 vpr 55.45 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30640 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1362 14988 3862 9734 1392 55.8 MiB 0.26 0.01 4.6627 -159.741 -4.6627 4.6627 1.06 0.00152371 0.0014016 0.0982609 0.0903005 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.55 0.305847 0.276503 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.25 0.16 0.22 -1 -1 0.25 0.0668247 0.0603586 187 65 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.18 vpr 55.15 MiB 0.05 6988 -1 -1 1 0.04 -1 -1 30232 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 17.1 MiB 0.17 954 14567 4735 7432 2400 55.8 MiB 0.22 0.00 3.51422 -121.562 -3.51422 3.51422 1.05 0.00123366 0.00113255 0.0869937 0.0798762 32 2533 23 6.65987e+06 393018 554710. 1919.41 1.29 0.247163 0.223282 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0520615 0.046956 146 34 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.24 vpr 55.14 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30128 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 16.6 MiB 0.11 839 17066 5534 9253 2279 55.2 MiB 0.22 0.00 3.49012 -114.14 -3.49012 3.49012 1.05 0.00100282 0.000919975 0.0858074 0.0786055 32 1859 23 6.65987e+06 380340 554710. 1919.41 1.18 0.21538 0.193952 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0454808 0.040772 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.05 vpr 55.69 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30768 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 17.7 MiB 0.57 1333 18829 5161 11634 2034 55.9 MiB 0.33 0.01 4.64147 -157.361 -4.64147 4.64147 1.05 0.0016344 0.00149899 0.126121 0.115526 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.45 0.341617 0.30847 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0684025 0.0617753 186 127 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.35 vpr 55.17 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1044 16340 4500 10034 1806 55.3 MiB 0.23 0.00 4.15932 -143.209 -4.15932 4.15932 1.05 0.0012537 0.00115042 0.0916309 0.0840458 28 2433 22 6.65987e+06 456408 500653. 1732.36 1.30 0.252991 0.228684 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0445553 0.0402844 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.86 vpr 54.88 MiB 0.07 6816 -1 -1 1 0.03 -1 -1 30148 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.07 722 13703 3609 8489 1605 55.3 MiB 0.19 0.00 3.4859 -117.474 -3.4859 3.4859 1.07 0.00101868 0.000935357 0.0671784 0.0615911 28 2223 23 6.65987e+06 393018 500653. 1732.36 1.42 0.196818 0.177136 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0418917 0.0376499 123 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.37 vpr 55.27 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30764 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 17.3 MiB 0.19 1337 12702 3419 8223 1060 55.7 MiB 0.23 0.01 4.90437 -166.477 -4.90437 4.90437 1.07 0.00147841 0.00135989 0.0799468 0.0735818 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.43 0.271605 0.245531 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0616983 0.0557606 188 34 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.71 vpr 54.71 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30152 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 16.5 MiB 0.12 852 11260 3935 5447 1878 55.0 MiB 0.16 0.00 3.4749 -119.679 -3.4749 3.4749 1.05 0.00101734 0.000932727 0.0702409 0.064472 32 2124 48 6.65987e+06 202848 554710. 1919.41 1.95 0.258585 0.231886 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0378926 0.0339623 121 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.23 vpr 54.88 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30252 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 16.5 MiB 0.22 707 8073 1842 5622 609 55.1 MiB 0.12 0.00 3.47387 -110.471 -3.47387 3.47387 1.07 0.000590206 0.000534908 0.0301772 0.0274102 28 1935 20 6.65987e+06 393018 500653. 1732.36 1.18 0.15743 0.14085 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.26 0.10 0.18 -1 -1 0.26 0.0403385 0.0363816 113 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.74 vpr 55.59 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30288 -1 -1 33 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 17.1 MiB 0.30 964 15856 4550 8712 2594 55.8 MiB 0.24 0.00 3.50895 -109.722 -3.50895 3.50895 1.05 0.00124123 0.00113799 0.0960778 0.0880128 30 2020 23 6.65987e+06 418374 526063. 1820.29 1.23 0.257672 0.232465 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.28 0.09 0.20 -1 -1 0.28 0.048532 0.043803 133 88 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.19 vpr 55.49 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 0.14 1002 7770 1874 5369 527 55.8 MiB 0.15 0.00 4.0593 -140.547 -4.0593 4.0593 1.05 0.00130765 0.0011997 0.0590967 0.0542881 32 2537 20 6.65987e+06 253560 554710. 1919.41 1.35 0.222907 0.201107 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0574623 0.051806 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.34 vpr 55.39 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1039 19223 6359 10018 2846 55.6 MiB 0.29 0.00 4.06007 -140.169 -4.06007 4.06007 1.05 0.00131091 0.00120194 0.11577 0.106113 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.52 0.28657 0.259183 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0548821 0.0494993 152 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.12 vpr 55.00 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30368 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 697 8614 1900 5780 934 55.4 MiB 0.13 0.00 3.41884 -113.998 -3.41884 3.41884 1.05 0.00111543 0.00102073 0.0481406 0.0441127 32 1903 25 6.65987e+06 380340 554710. 1919.41 1.26 0.195663 0.175536 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.28 0.11 0.11 -1 -1 0.28 0.0472281 0.0424964 120 65 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.10 vpr 55.28 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.7 MiB 0.30 800 12464 4465 5577 2422 55.4 MiB 0.19 0.00 3.46898 -107.312 -3.46898 3.46898 1.07 0.00110782 0.00101461 0.0837628 0.0767233 32 1982 23 6.65987e+06 215526 554710. 1919.41 1.19 0.217613 0.195731 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0491484 0.0439889 109 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.70 vpr 55.05 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30188 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 17.2 MiB 0.22 996 12623 3384 8308 931 55.8 MiB 0.20 0.00 3.33164 -109.888 -3.33164 3.33164 1.05 0.000843648 0.000758211 0.0731578 0.0669488 26 2507 31 6.65987e+06 418374 477104. 1650.88 2.06 0.246843 0.222139 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0489028 0.0440564 137 60 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 5.77 vpr 55.14 MiB 0.17 7032 -1 -1 1 0.03 -1 -1 30244 -1 -1 31 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 17.1 MiB 0.13 995 16207 5283 8775 2149 55.7 MiB 0.24 0.00 4.24344 -123.397 -4.24344 4.24344 0.89 0.00123939 0.00114798 0.0913861 0.0838621 28 2478 21 6.65987e+06 393018 500653. 1732.36 1.25 0.23143 0.208969 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0464454 0.0418151 133 34 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.18 vpr 54.98 MiB 0.17 6964 -1 -1 1 0.03 -1 -1 30012 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.31 727 13152 3808 7208 2136 55.5 MiB 0.19 0.00 3.5343 -112.204 -3.5343 3.5343 1.05 0.00105863 0.000970189 0.0839192 0.0769484 30 1865 21 6.65987e+06 228204 526063. 1820.29 1.19 0.217533 0.195938 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0389613 0.0350177 114 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.70 vpr 55.17 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 16.7 MiB 0.29 910 8164 2057 5403 704 55.5 MiB 0.14 0.00 3.44398 -109.924 -3.44398 3.44398 1.08 0.00113907 0.00104235 0.0607099 0.0556096 30 1920 20 6.65987e+06 202848 526063. 1820.29 1.17 0.202306 0.181718 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0440113 0.0395959 113 91 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.10 vpr 55.13 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 29976 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1101 12023 3143 7728 1152 55.6 MiB 0.17 0.00 4.17558 -139.576 -4.17558 4.17558 1.06 0.0011636 0.00106942 0.0564818 0.0518326 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.88 0.202624 0.182729 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0477453 0.0431784 150 4 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.64 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30484 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1037 13598 4125 8601 872 55.5 MiB 0.23 0.01 4.1263 -141.609 -4.1263 4.1263 1.11 0.000873655 0.000792575 0.0774739 0.0708043 28 2566 22 6.65987e+06 431052 500653. 1732.36 3.89 0.45773 0.410149 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.22 0.14 0.10 -1 -1 0.22 0.0573973 0.0517514 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.56 vpr 55.50 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1033 10448 2380 7653 415 55.3 MiB 0.18 0.00 4.16458 -142.258 -4.16458 4.16458 1.04 0.00131875 0.00121063 0.0652073 0.059718 28 3079 34 6.65987e+06 431052 500653. 1732.36 4.67 0.468626 0.419615 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.27 0.14 0.17 -1 -1 0.27 0.0516249 0.0466333 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.66 vpr 55.64 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.26 982 9031 1878 6401 752 55.6 MiB 0.16 0.01 3.86706 -126.941 -3.86706 3.86706 1.11 0.00127262 0.00116405 0.0535549 0.0491288 30 2443 22 6.65987e+06 469086 526063. 1820.29 1.35 0.227853 0.205098 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0585149 0.0527482 148 65 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.19 vpr 54.88 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30184 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 16.6 MiB 0.20 656 10400 2388 7389 623 55.4 MiB 0.16 0.00 3.50927 -110.79 -3.50927 3.50927 1.06 0.00100847 0.000925097 0.0636591 0.0584392 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.56 0.230454 0.20682 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.22 0.09 0.09 -1 -1 0.22 0.0388054 0.0348692 112 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.42 vpr 55.65 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 986 11613 3437 7269 907 55.8 MiB 0.20 0.00 4.19776 -134.76 -4.19776 4.19776 1.05 0.00124528 0.00114225 0.0824482 0.0756427 32 2227 20 6.65987e+06 278916 554710. 1919.41 1.25 0.237657 0.21447 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0526956 0.0475562 145 63 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.65 vpr 55.45 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30692 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 17.3 MiB 0.32 1052 13117 2855 8842 1420 55.6 MiB 0.19 0.00 3.91498 -132.986 -3.91498 3.91498 1.05 0.00143372 0.00131436 0.0816186 0.0748052 32 2892 25 6.65987e+06 494442 554710. 1919.41 1.37 0.272402 0.245133 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.24 0.09 0.21 -1 -1 0.24 0.0290565 0.0257049 154 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.54 vpr 55.25 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30536 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1048 9679 2436 6757 486 55.7 MiB 0.09 0.00 3.91106 -131.073 -3.91106 3.91106 0.72 0.000488095 0.000441263 0.0246862 0.0223351 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.47 0.196293 0.176036 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.22 0.12 0.17 -1 -1 0.22 0.0557535 0.0502575 146 94 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.88 vpr 55.43 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30288 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 967 14375 3613 8859 1903 55.7 MiB 0.22 0.00 3.7785 -114.4 -3.7785 3.7785 1.05 0.00126862 0.00116295 0.0916913 0.0840689 30 2034 21 6.65987e+06 380340 526063. 1820.29 1.19 0.251751 0.227193 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.24 0.04 0.22 -1 -1 0.24 0.02039 0.018287 136 92 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.55 vpr 55.32 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1103 13477 4009 7448 2020 55.4 MiB 0.23 0.00 4.11944 -143.283 -4.11944 4.11944 1.05 0.00131174 0.00120264 0.0987738 0.090628 32 2896 23 6.65987e+06 266238 554710. 1919.41 1.37 0.270016 0.244044 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0593398 0.053577 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.04 vpr 55.37 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30176 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 870 10463 2796 6767 900 55.8 MiB 0.17 0.00 3.39684 -102.663 -3.39684 3.39684 1.05 0.00121937 0.00111767 0.0626764 0.0574288 32 2139 21 6.65987e+06 431052 554710. 1919.41 1.25 0.216788 0.195119 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494509 0.0445345 134 88 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.92 vpr 54.68 MiB 0.03 6676 -1 -1 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.10 838 13496 3888 8529 1079 55.5 MiB 0.19 0.00 3.5031 -123.339 -3.5031 3.5031 1.05 0.00100991 0.000927017 0.0818664 0.0752212 32 2175 23 6.65987e+06 202848 554710. 1919.41 1.29 0.212205 0.191276 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0422587 0.0379979 116 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.63 vpr 55.52 MiB 0.05 7164 -1 -1 1 0.03 -1 -1 30268 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1015 16525 5345 8784 2396 55.3 MiB 0.27 0.00 4.18856 -142.192 -4.18856 4.18856 1.05 0.00134058 0.00123027 0.103247 0.0947805 32 2598 23 6.65987e+06 418374 554710. 1919.41 1.39 0.2775 0.250996 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.26 0.14 0.23 -1 -1 0.26 0.0600287 0.0541523 150 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.56 vpr 55.40 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 17.1 MiB 0.28 1026 16081 4881 8736 2464 56.0 MiB 0.27 0.00 4.23393 -146.239 -4.23393 4.23393 1.05 0.00131243 0.00120385 0.11726 0.107585 32 2633 23 6.65987e+06 266238 554710. 1919.41 1.38 0.289853 0.262226 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0579346 0.0522599 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.89 vpr 55.13 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 16.6 MiB 0.24 688 16683 5557 7719 3407 55.4 MiB 0.19 0.00 3.44878 -105.048 -3.44878 3.44878 1.07 0.00103133 0.000943465 0.0852974 0.0781031 30 2275 33 6.65987e+06 367662 526063. 1820.29 2.20 0.238733 0.214419 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.22 0.05 0.10 -1 -1 0.22 0.0188386 0.0167004 111 55 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.86 vpr 54.87 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30180 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.4 MiB 0.12 746 13556 4162 7429 1965 55.0 MiB 0.19 0.00 3.4529 -114.38 -3.4529 3.4529 1.05 0.0009728 0.000893544 0.0782122 0.0718342 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.20 0.203294 0.18303 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0363688 0.0327232 118 4 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.57 vpr 55.73 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30180 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 17.0 MiB 0.25 900 5133 854 4121 158 55.6 MiB 0.05 0.00 4.0123 -128.007 -4.0123 4.0123 0.72 0.000456586 0.00041277 0.0129582 0.0117831 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.78 0.073741 0.0649619 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0500288 0.0450954 138 59 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.99 vpr 55.59 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30120 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 17.2 MiB 0.25 879 9892 2434 7009 449 55.6 MiB 0.17 0.00 4.11224 -123.302 -4.11224 4.11224 1.06 0.00128392 0.00117682 0.0632022 0.0579443 28 2733 50 6.65987e+06 380340 500653. 1732.36 2.64 0.286612 0.257401 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.23 0.13 0.24 -1 -1 0.23 0.0567883 0.0510591 134 88 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 7.23 vpr 55.71 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 17.4 MiB 0.08 1224 16515 4921 9863 1731 55.7 MiB 0.27 0.01 4.82096 -159.28 -4.82096 4.82096 1.05 0.00136352 0.00125336 0.0938587 0.0863167 34 3026 21 6.65987e+06 443730 585099. 2024.56 4.25 0.476647 0.42935 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0576425 0.0522035 177 3 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.11 vpr 55.00 MiB 0.03 7052 -1 -1 1 0.04 -1 -1 30416 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1012 13726 3606 8436 1684 55.8 MiB 0.21 0.00 3.638 -113.448 -3.638 3.638 1.05 0.00120191 0.00110245 0.0808583 0.0741212 32 2171 21 6.65987e+06 405696 554710. 1919.41 1.23 0.232421 0.209564 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0483774 0.0435884 136 59 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.88 vpr 54.83 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 16.4 MiB 0.09 768 12754 4322 6521 1911 55.1 MiB 0.16 0.00 3.3979 -99.6122 -3.3979 3.3979 1.06 0.000917602 0.000841722 0.0718876 0.0659659 32 1581 21 6.65987e+06 253560 554710. 1919.41 1.17 0.187071 0.168178 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0412988 0.0369326 107 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.99 vpr 55.55 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.21 1366 15232 4128 9656 1448 56.0 MiB 0.27 0.01 4.15924 -136.806 -4.15924 4.15924 1.06 0.00154997 0.0014231 0.101586 0.0932061 32 3584 25 6.65987e+06 507120 554710. 1919.41 1.45 0.311142 0.280993 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.25 0.21 0.21 -1 -1 0.25 0.078368 0.0705949 184 95 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.87 vpr 55.27 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 16.9 MiB 0.38 999 12894 3350 8149 1395 55.8 MiB 0.23 0.00 4.3007 -134.868 -4.3007 4.3007 1.10 0.00140465 0.00128829 0.102443 0.0939897 32 2741 23 6.65987e+06 266238 554710. 1919.41 1.36 0.28026 0.252617 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.065022 0.0583907 144 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.84 vpr 55.38 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 16.7 MiB 0.32 739 9540 2469 6056 1015 55.4 MiB 0.15 0.00 3.43298 -108.977 -3.43298 3.43298 1.06 0.0011319 0.00103271 0.0657736 0.0602985 28 1956 23 6.65987e+06 202848 500653. 1732.36 1.17 0.202433 0.18181 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.25 0.11 0.18 -1 -1 0.25 0.0547076 0.0493275 109 89 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.99 vpr 55.39 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1126 15645 4217 9584 1844 55.7 MiB 0.24 0.00 4.2677 -137.429 -4.2677 4.2677 1.05 0.00123286 0.00112252 0.0906959 0.0831897 28 2607 21 6.65987e+06 405696 500653. 1732.36 1.21 0.223137 0.201832 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.23 0.10 0.14 -1 -1 0.23 0.0456851 0.0413739 146 34 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.08 vpr 55.75 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30536 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1167 13551 3218 9177 1156 55.7 MiB 0.24 0.00 4.22766 -133.836 -4.22766 4.22766 1.05 0.00145523 0.00133792 0.0900014 0.0826726 32 2713 24 6.65987e+06 456408 554710. 1919.41 1.32 0.279899 0.252798 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0583063 0.0526311 171 64 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.13 vpr 55.27 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30408 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 16.9 MiB 0.12 1070 11111 2802 7426 883 55.6 MiB 0.09 0.00 3.62941 -110.797 -3.62941 3.62941 0.72 0.000442846 0.00039888 0.0249129 0.0225263 26 2917 46 6.65987e+06 418374 477104. 1650.88 3.75 0.340996 0.30367 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.050615 0.0456627 134 61 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.44 vpr 55.68 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30516 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1074 12606 3053 8336 1217 55.4 MiB 0.21 0.01 4.0783 -140.694 -4.0783 4.0783 1.07 0.0013173 0.00120761 0.0703135 0.0645219 30 2464 23 6.65987e+06 532476 526063. 1820.29 1.37 0.245591 0.221507 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0608115 0.0547949 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 6.15 vpr 55.33 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 985 6766 1235 5165 366 55.6 MiB 0.13 0.01 3.41884 -116.445 -3.41884 3.41884 1.06 0.00131369 0.00120562 0.0412665 0.0378716 28 2716 20 6.65987e+06 481764 500653. 1732.36 1.32 0.205694 0.185022 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.23 0.14 0.21 -1 -1 0.23 0.0637753 0.0574237 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.02 vpr 54.93 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 16.6 MiB 0.13 502 12791 3342 7797 1652 55.1 MiB 0.14 0.00 3.7595 -104.343 -3.7595 3.7595 1.05 0.000970831 0.00089018 0.0789557 0.0724566 32 1548 18 6.65987e+06 202848 554710. 1919.41 1.15 0.197213 0.177697 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394657 0.0354004 93 34 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.10 vpr 54.95 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 29928 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.30 872 14431 4553 8297 1581 55.4 MiB 0.19 0.00 3.69338 -109.525 -3.69338 3.69338 1.05 0.00106595 0.000975245 0.0907082 0.0830455 32 1973 19 6.65987e+06 215526 554710. 1919.41 1.20 0.220808 0.198767 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0426629 0.0381982 111 82 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.39 vpr 55.51 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 973 15876 4279 9893 1704 55.8 MiB 0.25 0.00 4.55701 -136.44 -4.55701 4.55701 1.04 0.00122417 0.0011216 0.0871514 0.079945 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.51 0.264177 0.238348 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0536916 0.0484511 150 34 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.94 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.8 MiB 0.28 621 11063 2736 7707 620 55.3 MiB 0.15 0.00 3.58224 -95.8028 -3.58224 3.58224 1.06 0.000976863 0.000894339 0.0552985 0.0506382 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.90 0.201479 0.180238 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.22 0.09 0.18 -1 -1 0.22 0.0360556 0.0323147 108 56 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.84 vpr 54.84 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 823 7992 1920 5681 391 55.5 MiB 0.14 0.00 3.5141 -118.56 -3.5141 3.5141 1.06 0.00106435 0.000977064 0.0533687 0.0489943 34 2038 19 6.65987e+06 202848 585099. 2024.56 3.54 0.283508 0.253073 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.27 0.10 0.22 -1 -1 0.27 0.0433173 0.0389559 119 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.44 vpr 55.56 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30240 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1001 11955 3102 7859 994 55.7 MiB 0.10 0.00 3.4951 -117.77 -3.4951 3.4951 0.72 0.000461088 0.000416717 0.026651 0.0240479 26 2363 24 6.65987e+06 456408 477104. 1650.88 1.05 0.157982 0.141119 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0507114 0.0457146 142 64 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.05 vpr 55.00 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 16.4 MiB 0.30 876 12923 4161 7145 1617 55.2 MiB 0.17 0.00 3.11304 -101.32 -3.11304 3.11304 1.05 0.00101361 0.000928338 0.0803814 0.0737018 32 1966 17 6.65987e+06 202848 554710. 1919.41 1.16 0.20121 0.181203 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.28 0.10 0.21 -1 -1 0.28 0.0423481 0.0382106 105 55 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.00 vpr 55.49 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 17.1 MiB 0.24 929 17616 5738 7949 3929 55.7 MiB 0.22 0.00 3.3979 -111.1 -3.3979 3.3979 1.05 0.00123593 0.00113283 0.103591 0.0949763 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.62 0.355957 0.320116 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.28 0.12 0.24 -1 -1 0.28 0.0522675 0.0471528 136 65 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 6.01 vpr 55.35 MiB 0.07 7244 -1 -1 1 0.03 -1 -1 30348 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 16.9 MiB 0.60 965 17427 4981 9867 2579 55.4 MiB 0.26 0.00 3.7445 -120.758 -3.7445 3.7445 1.07 0.00133251 0.0012195 0.106558 0.0975124 28 2286 21 6.65987e+06 456408 500653. 1732.36 1.26 0.275656 0.248874 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.05369 0.0484326 148 93 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.19 vpr 55.08 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.8 MiB 0.18 861 11652 3522 6006 2124 55.5 MiB 0.17 0.00 2.81844 -100.349 -2.81844 2.81844 1.05 0.00108749 0.000996076 0.073925 0.0677835 32 2079 23 6.65987e+06 228204 554710. 1919.41 1.24 0.214728 0.1932 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0452347 0.0406077 115 61 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.08 vpr 55.03 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.29 667 7380 1595 4913 872 55.6 MiB 0.11 0.00 3.38184 -112.707 -3.38184 3.38184 1.06 0.0011026 0.00101006 0.0487385 0.0447191 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.70 0.224949 0.201475 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.26 0.11 0.21 -1 -1 0.26 0.0461537 0.0414299 121 63 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.57 vpr 55.33 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30584 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 17.1 MiB 0.17 1042 12164 2979 8000 1185 55.5 MiB 0.19 0.00 4.02524 -139.262 -4.02524 4.02524 1.05 0.00130052 0.00119293 0.0718199 0.0657845 28 2653 23 6.65987e+06 456408 500653. 1732.36 1.35 0.239815 0.216093 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0496852 0.044856 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.21 vpr 55.09 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 16.8 MiB 0.23 968 17313 5602 9212 2499 55.5 MiB 0.24 0.00 3.57304 -105.57 -3.57304 3.57304 1.05 0.00118879 0.00109006 0.101565 0.0930569 32 2179 18 6.65987e+06 405696 554710. 1919.41 1.20 0.246401 0.222493 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0518417 0.0466315 133 62 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.42 vpr 55.48 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 17.2 MiB 0.37 1004 11616 2968 7911 737 55.6 MiB 0.20 0.00 3.97241 -135.454 -3.97241 3.97241 1.05 0.00146143 0.00134013 0.07749 0.0709592 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.91 0.149774 0.134191 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0641464 0.0576209 156 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.90 vpr 54.66 MiB 0.06 6848 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 16.4 MiB 0.11 715 5825 1215 4401 209 55.1 MiB 0.10 0.00 2.9397 -97.4988 -2.9397 2.9397 1.07 0.000931858 0.000855881 0.0350821 0.0322905 30 1705 18 6.65987e+06 202848 526063. 1820.29 1.12 0.147857 0.132686 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0374246 0.0335811 105 4 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.54 vpr 55.40 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 17.0 MiB 0.19 948 20077 6167 11074 2836 55.8 MiB 0.27 0.00 4.10497 -133.778 -4.10497 4.10497 1.01 0.00132385 0.00120582 0.107607 0.0983664 32 2340 22 6.65987e+06 418374 554710. 1919.41 1.25 0.275431 0.248435 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0509649 0.0459877 142 92 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.35 vpr 55.09 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 29984 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.8 MiB 0.25 805 9196 3450 4876 870 55.7 MiB 0.14 0.00 3.54047 -120.422 -3.54047 3.54047 1.09 0.00118155 0.00108041 0.066736 0.0611469 30 2070 21 6.65987e+06 202848 526063. 1820.29 4.21 0.401562 0.359142 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0428527 0.0385564 115 96 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.37 vpr 55.38 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30264 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1002 18111 5520 9663 2928 55.4 MiB 0.26 0.00 3.45184 -118.995 -3.45184 3.45184 1.05 0.0012912 0.00118132 0.106443 0.0975463 32 2572 22 6.65987e+06 443730 554710. 1919.41 1.29 0.272394 0.246116 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0588671 0.0530782 149 65 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.22 vpr 55.54 MiB 0.09 7264 -1 -1 1 0.03 -1 -1 30620 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 17.9 MiB 0.36 1201 15034 3694 9653 1687 56.1 MiB 0.26 0.01 4.6905 -158.567 -4.6905 4.6905 1.05 0.0015764 0.00144672 0.0981723 0.0901973 26 3501 45 6.65987e+06 545154 477104. 1650.88 3.92 0.358494 0.323052 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.22 0.20 0.17 -1 -1 0.22 0.0822624 0.0741769 186 96 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.93 vpr 54.62 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.21 532 10509 2640 7460 409 54.9 MiB 0.12 0.00 2.61752 -80.0454 -2.61752 2.61752 1.05 0.000826678 0.000757258 0.0553374 0.0506648 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.42 0.158197 0.141379 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.032265 0.0287016 83 56 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 5.21 vpr 55.12 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30328 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 16.7 MiB 0.10 758 10536 3415 5493 1628 55.1 MiB 0.15 0.00 3.52904 -110.224 -3.52904 3.52904 1.08 0.00100569 0.00092227 0.0669074 0.0614531 32 1744 20 6.65987e+06 202848 554710. 1919.41 1.19 0.192567 0.17332 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0390442 0.035106 96 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.10 vpr 54.89 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.7 MiB 0.12 856 9872 2316 7018 538 55.5 MiB 0.16 0.00 3.4859 -122.574 -3.4859 3.4859 1.07 0.00106035 0.000972327 0.0619939 0.0569285 32 2373 21 6.65987e+06 228204 554710. 1919.41 1.32 0.197944 0.178117 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0445619 0.0400533 126 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 5.85 vpr 54.72 MiB 0.10 6904 -1 -1 1 0.03 -1 -1 30200 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.2 MiB 0.09 696 13351 3608 8032 1711 54.8 MiB 0.15 0.00 3.32684 -88.9535 -3.32684 3.32684 1.08 0.000857613 0.000787376 0.0582343 0.0534455 26 1641 17 6.65987e+06 431052 477104. 1650.88 1.08 0.160181 0.143841 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0342023 0.0305555 103 34 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.33 vpr 55.30 MiB 0.06 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 0.23 877 14541 4608 7775 2158 55.5 MiB 0.26 0.00 4.02035 -125.217 -4.02035 4.02035 1.05 0.00136171 0.00124728 0.113251 0.10381 32 2783 25 6.65987e+06 253560 554710. 1919.41 1.39 0.294306 0.265727 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0601149 0.0541638 147 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.46 vpr 55.63 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30208 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 17.0 MiB 0.22 938 18660 5414 10450 2796 55.5 MiB 0.28 0.00 3.4903 -116.326 -3.4903 3.4903 1.07 0.00133237 0.00122092 0.111665 0.102344 32 2461 21 6.65987e+06 469086 554710. 1919.41 1.30 0.279514 0.252419 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.28 0.11 0.21 -1 -1 0.28 0.037618 0.0334571 146 94 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.32 vpr 56.10 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58184 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 18.1 MiB 0.98 758 13949 4789 6835 2325 56.8 MiB 0.19 0.00 3.74419 -135.496 -3.74419 3.74419 1.09 0.00137008 0.00125651 0.100178 0.0918235 58 1960 26 6.95648e+06 361892 997811. 3452.63 7.63 0.634014 0.567665 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.41 0.13 0.44 -1 -1 0.41 0.056823 0.0511585 84 96 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.44 vpr 56.07 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30460 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 17.6 MiB 2.31 807 12716 4975 6082 1659 56.5 MiB 0.18 0.00 3.9478 -130.518 -3.9478 3.9478 1.10 0.00127975 0.00117323 0.107006 0.0981254 48 2407 29 6.95648e+06 202660 865456. 2994.66 20.11 0.741826 0.663405 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.39 0.20 0.34 -1 -1 0.39 0.0635829 0.0573219 76 91 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 9.02 vpr 56.09 MiB 0.10 7140 -1 -1 1 0.03 -1 -1 30436 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 17.8 MiB 0.84 1022 7103 1835 4569 699 56.6 MiB 0.11 0.00 3.60914 -132.635 -3.60914 3.60914 1.09 0.00123963 0.00113757 0.0529541 0.0486293 44 2666 29 6.95648e+06 275038 787024. 2723.27 2.80 0.283192 0.254258 27778 195446 -1 2250 23 1533 2295 200856 39573 3.61236 3.61236 -138.488 -3.61236 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0564311 0.0507589 77 65 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 7.59 vpr 55.86 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30320 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 17.6 MiB 0.41 752 10672 3799 5216 1657 56.1 MiB 0.15 0.00 4.001 -128.21 -4.001 4.001 1.15 0.00114472 0.00105057 0.0785126 0.0721531 44 2696 27 6.95648e+06 231611 787024. 2723.27 6.24 0.459148 0.4116 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.054131 0.0486959 75 34 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 10.05 vpr 55.93 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30264 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 17.6 MiB 0.76 716 9857 3295 4764 1798 56.5 MiB 0.15 0.00 3.66789 -133.791 -3.66789 3.66789 1.09 0.00125313 0.00115036 0.0793378 0.0728746 56 2163 40 6.95648e+06 188184 973134. 3367.25 4.54 0.394529 0.354816 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.40 0.15 0.41 -1 -1 0.40 0.0573497 0.0518198 78 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.04 vpr 56.18 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30324 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58092 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 17.8 MiB 0.43 727 15003 5272 7155 2576 56.7 MiB 0.18 0.00 3.0985 -114.166 -3.0985 3.0985 1.08 0.00129876 0.00118948 0.0965033 0.0884806 46 2435 46 6.95648e+06 419795 828058. 2865.25 4.51 0.43736 0.393829 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.32 0.13 0.17 -1 -1 0.32 0.0525061 0.0474012 89 64 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.42 vpr 55.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30392 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 17.0 MiB 3.40 451 8433 2993 4087 1353 55.6 MiB 0.10 0.00 3.26916 -93.4177 -3.26916 3.26916 1.09 0.000921653 0.000845959 0.0538676 0.0494935 40 1397 46 6.95648e+06 202660 706193. 2443.58 3.43 0.289261 0.258172 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.037006 0.0331411 54 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.66 vpr 55.78 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.5 MiB 0.51 722 11088 4563 6076 449 56.0 MiB 0.15 0.00 3.0394 -105.493 -3.0394 3.0394 1.10 0.00111173 0.00102104 0.0753461 0.0693071 46 2382 26 6.95648e+06 246087 828058. 2865.25 3.74 0.318468 0.286166 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0501625 0.0451182 77 4 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 8.82 vpr 56.07 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 29976 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 1.76 523 9994 2759 5612 1623 56.0 MiB 0.13 0.00 3.10275 -98.727 -3.10275 3.10275 1.11 0.00107127 0.000979356 0.0724902 0.0664483 40 1829 42 6.95648e+06 159232 706193. 2443.58 3.73 0.33807 0.30191 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0572823 0.0511815 57 85 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 7.69 vpr 55.88 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.71 638 10614 4216 4843 1555 56.0 MiB 0.14 0.00 2.95005 -114.898 -2.95005 2.95005 1.09 0.000977005 0.000888142 0.0752835 0.0690908 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.69 0.275765 0.247564 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.29 0.12 0.14 -1 -1 0.29 0.0443805 0.0398939 62 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.85 vpr 55.76 MiB 0.06 7000 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 1.70 651 11079 4648 6085 346 55.9 MiB 0.15 0.00 3.1095 -111.937 -3.1095 3.1095 1.10 0.00105748 0.000969002 0.0789684 0.0724571 38 1744 25 6.95648e+06 173708 678818. 2348.85 5.27 0.437354 0.390275 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0427749 0.0384129 60 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.75 vpr 55.79 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30316 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 17.2 MiB 0.95 540 10476 4331 5741 404 56.1 MiB 0.14 0.00 2.9793 -106.716 -2.9793 2.9793 1.14 0.00123881 0.00112774 0.0783514 0.0717282 50 1707 47 6.95648e+06 173708 902133. 3121.57 6.69 0.542564 0.484091 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.35 0.10 0.37 -1 -1 0.35 0.0413329 0.0371069 60 65 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.59 vpr 56.04 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 17.6 MiB 1.53 751 11803 3277 6504 2022 56.5 MiB 0.17 0.00 3.1024 -116.565 -3.1024 3.1024 1.08 0.00125565 0.00115123 0.0832591 0.0764367 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.95 0.336126 0.302029 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0497819 0.0448748 79 58 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 8.12 vpr 56.12 MiB 0.07 7020 -1 -1 1 0.03 -1 -1 30420 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 17.6 MiB 1.26 832 16371 6652 7990 1729 56.5 MiB 0.23 0.00 3.72719 -138.885 -3.72719 3.72719 1.11 0.00131754 0.00120845 0.111158 0.101936 44 2523 32 6.95648e+06 376368 787024. 2723.27 6.67 0.589108 0.528456 27778 195446 -1 1993 25 2157 3068 280465 63460 4.23576 4.23576 -153.24 -4.23576 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0644037 0.0580945 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 8.12 vpr 55.41 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 17.1 MiB 1.13 465 11234 4544 5569 1121 55.6 MiB 0.13 0.00 3.14676 -95.8879 -3.14676 3.14676 1.13 0.000935914 0.000858037 0.0700007 0.0642224 46 1613 28 6.95648e+06 188184 828058. 2865.25 5.82 0.36928 0.329287 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0479787 0.0428575 58 29 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.47 vpr 55.92 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57912 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 17.7 MiB 1.73 807 11813 5009 6533 271 56.6 MiB 0.18 0.00 3.1505 -120.688 -3.1505 3.1505 1.09 0.00130398 0.00119677 0.0980353 0.0899709 46 2437 23 6.95648e+06 188184 828058. 2865.25 3.11 0.379928 0.342259 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.33 0.16 0.36 -1 -1 0.33 0.0642713 0.0578504 77 63 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 10.27 vpr 56.00 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30108 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 17.4 MiB 1.65 707 11064 3419 5711 1934 56.3 MiB 0.18 0.00 3.0804 -113.837 -3.0804 3.0804 1.14 0.00126528 0.00115895 0.0929678 0.085307 46 2393 47 6.95648e+06 289514 828058. 2865.25 3.42 0.39009 0.350106 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.34 0.13 0.33 -1 -1 0.34 0.0615775 0.0559192 78 57 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 9.20 vpr 55.69 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 29964 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 17.4 MiB 1.00 574 10698 2981 5511 2206 56.4 MiB 0.13 0.00 2.43656 -93.1005 -2.43656 2.43656 1.11 0.00111095 0.00101726 0.0684111 0.0627337 48 1509 24 6.95648e+06 289514 865456. 2994.66 6.18 0.482443 0.429997 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0458271 0.0411188 67 65 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.45 vpr 55.25 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30004 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 16.7 MiB 0.34 450 11098 4789 5936 373 55.3 MiB 0.11 0.00 2.21746 -80.6728 -2.21746 2.21746 1.08 0.000778791 0.000712911 0.0602434 0.0551878 36 1377 32 6.95648e+06 144757 648988. 2245.63 2.36 0.236366 0.21024 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.29 0.07 0.25 -1 -1 0.29 0.031074 0.0276552 45 34 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 8.91 vpr 55.96 MiB 0.06 6924 -1 -1 1 0.03 -1 -1 30296 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 1.14 525 9374 3845 5090 439 56.3 MiB 0.13 0.00 3.8254 -127.041 -3.8254 3.8254 1.10 0.0010907 0.000999647 0.068889 0.0631966 46 1860 48 6.95648e+06 159232 828058. 2865.25 4.48 0.35424 0.316689 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.35 0.11 0.33 -1 -1 0.35 0.0543192 0.0487476 61 64 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.75 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30012 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 17.6 MiB 0.44 664 13663 4054 7770 1839 56.4 MiB 0.19 0.00 3.70954 -128.174 -3.70954 3.70954 1.10 0.00121834 0.00111771 0.0936137 0.0859832 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.35 0.323518 0.291434 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0514083 0.0463616 81 34 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 10.36 vpr 56.22 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30600 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 1.38 791 14779 5223 7361 2195 56.6 MiB 0.21 0.00 3.66119 -126.81 -3.66119 3.66119 1.05 0.00141539 0.00129729 0.106701 0.0978509 48 2442 23 6.95648e+06 390843 865456. 2994.66 6.50 0.559313 0.50063 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.066004 0.059319 85 124 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.45 vpr 55.14 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30412 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 16.9 MiB 0.95 348 7809 2770 3912 1127 55.4 MiB 0.07 0.00 2.19726 -66.8557 -2.19726 2.19726 1.11 0.000682143 0.000623316 0.038416 0.0351841 46 937 48 6.95648e+06 188184 828058. 2865.25 2.40 0.190209 0.168928 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.33 0.05 0.33 -1 -1 0.33 0.0229495 0.0205223 44 30 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.98 vpr 55.57 MiB 0.06 6840 -1 -1 1 0.03 -1 -1 30028 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 17.4 MiB 0.85 737 10316 4241 5568 507 56.2 MiB 0.14 0.00 4.02534 -135.509 -4.02534 4.02534 1.09 0.00114748 0.00105309 0.0777136 0.0714011 54 2026 41 6.95648e+06 173708 949917. 3286.91 8.17 0.535166 0.479747 29506 232905 -1 1641 22 1840 2844 317217 104806 3.76887 3.76887 -137.001 -3.76887 0 0 1.17392e+06 4061.99 0.37 0.16 0.40 -1 -1 0.37 0.0507955 0.0457669 74 3 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.39 vpr 55.34 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30372 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 17.0 MiB 0.24 731 9906 3689 5081 1136 55.6 MiB 0.10 0.00 2.15326 -87.6492 -2.15326 2.15326 0.93 0.00072053 0.000658428 0.0499973 0.0457607 34 1791 46 6.95648e+06 115805 618332. 2139.56 2.18 0.21102 0.187768 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0228622 0.0204879 44 3 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 14.02 vpr 55.91 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58004 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 17.8 MiB 0.54 827 16371 5667 8716 1988 56.6 MiB 0.22 0.00 3.67409 -135.23 -3.67409 3.67409 1.12 0.00124679 0.00114306 0.105666 0.0967833 40 2687 28 6.95648e+06 376368 706193. 2443.58 18.88 0.670912 0.60115 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.32 0.27 0.29 -1 -1 0.32 0.0667233 0.0599961 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.80 vpr 55.87 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30000 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.5 MiB 0.34 985 13754 4254 7657 1843 56.4 MiB 0.18 0.00 3.0955 -119.852 -3.0955 3.0955 1.11 0.00118181 0.00108518 0.0824311 0.0756701 36 2880 44 6.95648e+06 405319 648988. 2245.63 6.48 0.35081 0.314865 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0453874 0.0410165 87 3 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.43 vpr 55.95 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58188 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 17.9 MiB 0.46 789 18308 6099 10070 2139 56.8 MiB 0.25 0.00 3.69663 -134.61 -3.69663 3.69663 1.09 0.00130698 0.00119854 0.119895 0.10981 46 2780 28 6.95648e+06 405319 828058. 2865.25 4.23 0.415008 0.373453 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0569073 0.0513107 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.14 vpr 55.77 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 0.82 541 9374 3087 4731 1556 55.9 MiB 0.12 0.00 2.8982 -102.358 -2.8982 2.8982 1.04 0.000997602 0.000914097 0.0634656 0.0582116 38 2009 38 6.95648e+06 144757 678818. 2348.85 4.54 0.305537 0.272824 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.045479 0.0407919 57 34 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.53 vpr 55.60 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 0.65 571 8444 3466 4635 343 55.8 MiB 0.13 0.00 3.1175 -112.058 -3.1175 3.1175 1.09 0.00100524 0.000917792 0.0678176 0.0622788 40 1947 30 6.95648e+06 173708 706193. 2443.58 2.81 0.289667 0.259122 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0439755 0.0394459 60 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 7.78 vpr 55.64 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 17.0 MiB 0.58 505 10257 3681 4972 1604 55.7 MiB 0.14 0.00 3.0435 -97.9378 -3.0435 3.0435 1.03 0.000944777 0.000866727 0.0765075 0.0703025 44 1727 27 6.95648e+06 188184 787024. 2723.27 3.11 0.284837 0.254818 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.33 0.08 0.27 -1 -1 0.33 0.0369724 0.0332213 61 34 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.67 vpr 55.69 MiB 0.04 6708 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 0.28 703 9374 3895 5319 160 55.8 MiB 0.13 0.00 2.93285 -116.414 -2.93285 2.93285 0.86 0.0010048 0.000916232 0.0647637 0.0595546 44 2101 25 6.95648e+06 144757 787024. 2723.27 3.18 0.283162 0.253823 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.045166 0.0406153 64 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.36 vpr 55.59 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 17.6 MiB 0.26 623 13443 5605 7395 443 56.0 MiB 0.16 0.00 3.0955 -111.973 -3.0955 3.0955 1.09 0.00102412 0.000938457 0.0778022 0.0713537 44 2077 38 6.95648e+06 303989 787024. 2723.27 3.31 0.3187 0.2853 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.044477 0.0400519 68 34 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.68 vpr 55.87 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 17.1 MiB 0.84 508 10219 3550 4648 2021 55.8 MiB 0.12 0.00 2.43392 -85.0275 -2.43392 2.43392 1.09 0.00101841 0.000932803 0.0648626 0.0594797 46 1411 35 6.95648e+06 260562 828058. 2865.25 3.05 0.305081 0.27295 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0434913 0.0389733 64 61 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.41 vpr 56.06 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30364 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58168 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 18.0 MiB 0.86 944 14375 4687 7097 2591 56.8 MiB 0.21 0.00 3.95585 -140.771 -3.95585 3.95585 1.12 0.00142896 0.00131172 0.103704 0.0953187 54 2725 29 6.95648e+06 405319 949917. 3286.91 5.30 0.381034 0.339845 29506 232905 -1 2082 21 1977 3135 234047 51401 4.37502 4.37502 -152.214 -4.37502 0 0 1.17392e+06 4061.99 0.38 0.14 0.36 -1 -1 0.38 0.0607904 0.0550503 100 29 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 9.02 vpr 56.06 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30332 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 17.8 MiB 1.15 786 12739 3070 7853 1816 56.7 MiB 0.18 0.00 3.0804 -115.407 -3.0804 3.0804 1.08 0.00130452 0.00119429 0.085153 0.078142 40 2423 28 6.95648e+06 390843 706193. 2443.58 15.07 0.678754 0.60775 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.27 0.11 0.15 -1 -1 0.27 0.029328 0.0260261 87 65 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.61 vpr 55.88 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30360 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 17.2 MiB 1.31 525 12362 5188 6715 459 56.1 MiB 0.15 0.00 3.26916 -109.722 -3.26916 3.26916 1.08 0.00110248 0.00100863 0.0852293 0.0780413 50 1653 27 6.95648e+06 217135 902133. 3121.57 6.18 0.417734 0.372831 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.35 0.08 0.35 -1 -1 0.35 0.0350221 0.0315134 62 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.77 vpr 56.03 MiB 0.05 7024 -1 -1 1 0.05 -1 -1 30228 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.75 965 12791 5492 6957 342 56.4 MiB 0.18 0.00 3.0625 -116.847 -3.0625 3.0625 1.09 0.00126189 0.00115793 0.102764 0.0943064 38 2599 23 6.95648e+06 202660 678818. 2348.85 5.43 0.498503 0.447379 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0491479 0.0443674 79 64 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 9.82 vpr 56.54 MiB 0.08 7228 -1 -1 1 0.03 -1 -1 30344 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58032 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 18.0 MiB 2.69 778 10998 4559 6059 380 56.7 MiB 0.17 0.00 4.63397 -149.774 -4.63397 4.63397 1.08 0.00140799 0.00129191 0.0989475 0.0908412 44 2926 36 6.95648e+06 202660 787024. 2723.27 7.82 0.655136 0.585083 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.33 0.15 0.26 -1 -1 0.33 0.0639882 0.0575411 78 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.82 vpr 55.98 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 17.7 MiB 1.23 775 10476 3672 5136 1668 56.6 MiB 0.17 0.00 4.49354 -135.009 -4.49354 4.49354 1.09 0.00130239 0.00119234 0.0894755 0.08203 44 2669 43 6.95648e+06 188184 787024. 2723.27 6.52 0.611164 0.547006 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0652764 0.0587279 76 90 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.14 vpr 56.01 MiB 0.06 7136 -1 -1 1 0.03 -1 -1 30184 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 17.6 MiB 1.01 864 15493 5631 7761 2101 56.5 MiB 0.21 0.00 3.1285 -114.829 -3.1285 3.1285 1.09 0.00126075 0.00115657 0.103344 0.0947559 38 2848 26 6.95648e+06 361892 678818. 2348.85 4.66 0.387088 0.34763 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0241034 0.0215718 85 64 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 9.30 vpr 55.66 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 17.7 MiB 0.61 956 10743 3793 5013 1937 56.6 MiB 0.15 0.00 3.77119 -139.239 -3.77119 3.77119 1.08 0.00128445 0.00117695 0.0721906 0.0661995 44 2711 27 6.95648e+06 376368 787024. 2723.27 7.14 0.591248 0.529153 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0593414 0.0534828 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.31 vpr 56.73 MiB 0.05 7240 -1 -1 1 0.04 -1 -1 30476 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58148 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 18.5 MiB 1.29 1078 14999 4071 8495 2433 56.8 MiB 0.22 0.00 3.84845 -142.865 -3.84845 3.84845 1.09 0.00157872 0.00144892 0.113614 0.104184 40 2955 26 6.95648e+06 448746 706193. 2443.58 4.17 0.468156 0.421393 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.27 0.08 0.15 -1 -1 0.27 0.0268109 0.0240174 104 96 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.14 vpr 55.73 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30424 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 0.72 721 10304 4339 5695 270 56.0 MiB 0.13 0.00 3.34916 -121.065 -3.34916 3.34916 1.12 0.00102344 0.000937883 0.0713091 0.0654265 36 2215 27 6.95648e+06 159232 648988. 2245.63 4.70 0.303669 0.271809 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0433552 0.0389899 62 34 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 9.93 vpr 56.04 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 17.5 MiB 0.49 784 13959 3819 8017 2123 56.6 MiB 0.20 0.00 4.0519 -136.516 -4.0519 4.0519 1.09 0.00127608 0.00116959 0.0924189 0.0847955 48 2294 26 6.95648e+06 390843 865456. 2994.66 6.41 0.51146 0.45866 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.35 0.13 0.36 -1 -1 0.35 0.0517193 0.0466739 86 64 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.07 vpr 56.14 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30344 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 17.6 MiB 0.93 863 13557 4887 6407 2263 56.6 MiB 0.17 0.00 3.29596 -116.543 -3.29596 3.29596 1.09 0.0012779 0.00117143 0.0903202 0.0828532 54 2269 23 6.95648e+06 376368 949917. 3286.91 6.96 0.501498 0.450167 29506 232905 -1 1764 21 1634 2724 193460 42892 3.13397 3.13397 -112.027 -3.13397 0 0 1.17392e+06 4061.99 0.38 0.13 0.40 -1 -1 0.38 0.0554592 0.0499474 85 63 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.49 vpr 55.96 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 17.8 MiB 0.85 760 7738 3134 4374 230 56.3 MiB 0.12 0.00 3.65689 -135.736 -3.65689 3.65689 1.08 0.00119038 0.00109296 0.0599785 0.0551661 44 3266 47 6.95648e+06 188184 787024. 2723.27 28.50 0.635676 0.568637 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0545204 0.0491509 78 3 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.40 vpr 56.03 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58120 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.92 808 11991 3810 6067 2114 56.8 MiB 0.16 0.00 3.1768 -117.392 -3.1768 3.1768 1.09 0.00131485 0.00120425 0.0859013 0.0787649 46 2159 29 6.95648e+06 332941 828058. 2865.25 6.14 0.524741 0.4698 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.35 0.10 0.33 -1 -1 0.35 0.0526985 0.0475051 81 96 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 12.28 vpr 56.18 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30160 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.98 845 12926 3665 7173 2088 56.6 MiB 0.18 0.00 3.1214 -116.244 -3.1214 3.1214 1.09 0.00128239 0.0011765 0.0844104 0.077487 46 2291 24 6.95648e+06 405319 828058. 2865.25 6.11 0.490128 0.439342 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0579681 0.0522279 85 61 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.68 vpr 56.29 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 17.7 MiB 0.69 803 14996 4547 7782 2667 56.6 MiB 0.21 0.00 3.09676 -115.471 -3.09676 3.09676 1.12 0.0013123 0.00120114 0.0990352 0.0907497 46 2386 25 6.95648e+06 405319 828058. 2865.25 3.71 0.386455 0.347396 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053174 0.0480234 88 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 7.94 vpr 55.81 MiB 0.05 7016 -1 -1 1 0.04 -1 -1 30484 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.57 938 15617 5888 7604 2125 56.4 MiB 0.21 0.00 3.66789 -137.042 -3.66789 3.66789 1.09 0.00124251 0.00114049 0.098879 0.0908026 44 2729 48 6.95648e+06 405319 787024. 2723.27 3.92 0.364238 0.327933 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0565426 0.0509175 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 10.19 vpr 56.11 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30560 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 17.8 MiB 1.15 799 12448 3955 5788 2705 56.5 MiB 0.16 0.00 3.78219 -138.337 -3.78219 3.78219 1.09 0.00129422 0.00118519 0.0797554 0.0731428 44 2633 42 6.95648e+06 434271 787024. 2723.27 3.34 0.356732 0.320245 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.32 0.13 0.16 -1 -1 0.32 0.0574067 0.051861 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 11.76 vpr 56.19 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 17.8 MiB 1.64 822 11983 4768 6508 707 56.6 MiB 0.18 0.00 4.19045 -134.89 -4.19045 4.19045 1.09 0.00138265 0.00126248 0.0887663 0.0813681 48 2637 22 6.95648e+06 361892 865456. 2994.66 6.44 0.558409 0.497903 28354 207349 -1 2137 24 1540 2402 225363 46826 4.04142 4.04142 -139.672 -4.04142 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0647566 0.0581982 84 122 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 11.04 vpr 56.54 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58200 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 18.1 MiB 1.22 840 10346 3694 5398 1254 56.8 MiB 0.17 0.00 3.7688 -130.649 -3.7688 3.7688 1.09 0.00138091 0.00126765 0.0910123 0.0835746 40 2535 24 6.95648e+06 188184 706193. 2443.58 4.10 0.387616 0.348294 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0613399 0.0552047 78 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 17.04 vpr 55.59 MiB 0.06 6868 -1 -1 1 0.03 -1 -1 30580 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 17.2 MiB 0.21 594 10647 4341 5910 396 55.9 MiB 0.13 0.00 3.12656 -113.614 -3.12656 3.12656 1.09 0.00104218 0.000955614 0.0610739 0.0559171 56 1741 22 6.95648e+06 332941 973134. 3367.25 6.96 0.422414 0.376318 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.38 0.10 0.41 -1 -1 0.38 0.0416823 0.0374251 71 34 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.77 vpr 55.86 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30248 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57656 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 17.8 MiB 1.35 610 8444 3495 4676 273 56.3 MiB 0.12 0.00 3.0405 -112.422 -3.0405 3.0405 1.13 0.00116613 0.00106699 0.0681808 0.0624177 52 1849 26 6.95648e+06 144757 926341. 3205.33 2.76 0.279919 0.250763 29218 227130 -1 1370 23 1369 2031 153581 37136 3.03252 3.03252 -119.471 -3.03252 0 0 1.14541e+06 3963.36 0.37 0.11 0.39 -1 -1 0.37 0.0526518 0.0472736 63 94 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.50 vpr 56.41 MiB 0.06 7212 -1 -1 1 0.03 -1 -1 30728 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 18.1 MiB 0.75 1000 14152 3772 8188 2192 56.4 MiB 0.23 0.00 4.46224 -157.711 -4.46224 4.46224 1.10 0.00153169 0.00140856 0.106715 0.098133 54 3033 30 6.95648e+06 434271 949917. 3286.91 7.64 0.613701 0.550968 29506 232905 -1 2329 24 2607 4128 362524 74061 4.97191 4.97191 -169.58 -4.97191 0 0 1.17392e+06 4061.99 0.38 0.19 0.40 -1 -1 0.38 0.071073 0.0640762 103 65 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 8.74 vpr 56.11 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57684 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 17.4 MiB 1.09 717 11983 4638 6220 1125 56.3 MiB 0.15 0.00 3.1457 -117.079 -3.1457 3.1457 1.09 0.00124566 0.00114373 0.0801177 0.0736451 52 1977 32 6.95648e+06 347416 926341. 3205.33 2.85 0.312388 0.281064 29218 227130 -1 1529 23 1474 1953 166020 38664 3.18617 3.18617 -120.879 -3.18617 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.055696 0.0501995 83 34 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 8.23 vpr 55.86 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30248 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 17.1 MiB 0.36 571 10581 4367 5776 438 55.9 MiB 0.13 0.00 3.0735 -108.432 -3.0735 3.0735 1.09 0.00101199 0.000928311 0.0645638 0.0593128 38 2214 32 6.95648e+06 275038 678818. 2348.85 4.85 0.304862 0.272714 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0405936 0.0364505 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 12.69 vpr 56.50 MiB 0.08 7404 -1 -1 1 0.04 -1 -1 30920 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 18.3 MiB 2.45 1126 15215 3732 10105 1378 56.6 MiB 0.25 0.00 4.49524 -160.999 -4.49524 4.49524 1.09 0.00170037 0.00156543 0.124871 0.115065 48 3031 35 6.95648e+06 448746 865456. 2994.66 20.87 0.817149 0.735661 28354 207349 -1 2801 53 4379 6142 1660922 828010 5.02371 5.02371 -179.054 -5.02371 0 0 1.05005e+06 3633.38 0.35 0.77 0.35 -1 -1 0.35 0.158086 0.141814 103 127 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.38 vpr 56.26 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30312 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 17.6 MiB 1.34 804 14375 4842 7223 2310 56.3 MiB 0.19 0.00 3.73321 -136.441 -3.73321 3.73321 1.08 0.000854505 0.000767794 0.0695557 0.0629002 40 2325 28 6.95648e+06 405319 706193. 2443.58 3.80 0.334096 0.298714 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.054673 0.0492998 86 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.82 vpr 55.50 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.3 MiB 0.36 740 12763 4452 6451 1860 55.8 MiB 0.15 0.00 3.05815 -117.559 -3.05815 3.05815 1.09 0.00100968 0.00092642 0.0687585 0.0631934 44 2104 25 6.95648e+06 347416 787024. 2723.27 3.30 0.285377 0.255817 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.041819 0.0375886 70 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 14.02 vpr 55.96 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30664 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 18.2 MiB 0.63 924 14567 5045 6877 2645 56.5 MiB 0.21 0.00 4.52824 -159.979 -4.52824 4.52824 1.09 0.00145719 0.00133898 0.103177 0.0948078 54 3003 36 6.95648e+06 448746 949917. 3286.91 6.94 0.518235 0.465768 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.41 0.20 0.40 -1 -1 0.41 0.0738998 0.066636 105 34 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.41 vpr 55.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30244 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.40 618 10614 4475 5915 224 55.9 MiB 0.14 0.00 2.92185 -113.699 -2.92185 2.92185 1.10 0.000997586 0.000915108 0.071427 0.0655363 46 1828 25 6.95648e+06 144757 828058. 2865.25 6.27 0.451092 0.402636 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0470208 0.0421897 62 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.08 vpr 55.61 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 17.4 MiB 0.89 601 10163 2708 5873 1582 55.8 MiB 0.12 0.00 3.10776 -107.419 -3.10776 3.10776 1.09 0.00100863 0.000924981 0.0600311 0.0551339 52 1508 25 6.95648e+06 303989 926341. 3205.33 2.69 0.232747 0.208755 29218 227130 -1 1108 22 1138 1745 119544 29707 3.03987 3.03987 -107.252 -3.03987 0 0 1.14541e+06 3963.36 0.40 0.10 0.38 -1 -1 0.40 0.0452438 0.0406662 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.64 vpr 56.23 MiB 0.04 7132 -1 -1 1 0.27 -1 -1 30136 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 705 12856 4698 6070 2088 56.5 MiB 0.18 0.00 3.39446 -107.671 -3.39446 3.39446 1.14 0.00124212 0.00113772 0.0957051 0.0878096 48 2602 41 6.95648e+06 289514 865456. 2994.66 7.15 0.57247 0.512412 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.34 0.13 0.35 -1 -1 0.34 0.0501713 0.0452156 77 88 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.45 vpr 56.04 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 17.4 MiB 1.02 807 13117 5264 6347 1506 56.4 MiB 0.19 0.00 3.65689 -136.729 -3.65689 3.65689 1.09 0.00130474 0.00119745 0.108878 0.0999617 46 2061 24 6.95648e+06 188184 828058. 2865.25 5.31 0.529209 0.475139 28066 200906 -1 1777 22 2020 2624 211029 44669 3.92996 3.92996 -145.52 -3.92996 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0574376 0.0517901 78 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.39 vpr 56.07 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30520 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 17.5 MiB 1.87 890 14345 5510 6931 1904 56.4 MiB 0.19 0.00 3.74419 -138.408 -3.74419 3.74419 1.09 0.00130485 0.00119721 0.0984535 0.090346 48 2618 24 6.95648e+06 361892 865456. 2994.66 3.60 0.375018 0.337101 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.34 0.19 0.35 -1 -1 0.34 0.0615794 0.055449 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 10.21 vpr 55.85 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 1.38 685 10813 4185 5763 865 56.2 MiB 0.13 0.00 3.05815 -117.015 -3.05815 3.05815 1.09 0.00111879 0.00102402 0.0646507 0.0592316 44 2023 47 6.95648e+06 347416 787024. 2723.27 6.54 0.518452 0.462204 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0461188 0.0413834 69 65 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 9.16 vpr 55.79 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 17.5 MiB 1.62 684 10105 3894 4557 1654 56.1 MiB 0.14 0.00 3.30215 -110.841 -3.30215 3.30215 1.08 0.00110796 0.00101439 0.0768358 0.0704031 36 2232 46 6.95648e+06 144757 648988. 2245.63 5.37 0.475583 0.423763 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.29 0.11 0.27 -1 -1 0.29 0.0464687 0.0416674 59 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 9.19 vpr 56.01 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 17.4 MiB 1.01 949 12711 4087 6844 1780 56.3 MiB 0.18 0.00 3.1285 -115.995 -3.1285 3.1285 1.09 0.00122023 0.00111919 0.0883109 0.0810975 40 2353 22 6.95648e+06 318465 706193. 2443.58 2.97 0.348513 0.31322 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0545814 0.0490875 79 60 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.93 vpr 55.92 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30288 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 17.5 MiB 0.79 684 10156 4202 5354 600 56.2 MiB 0.14 0.00 4.24545 -126.653 -4.24545 4.24545 1.10 0.00110432 0.00101392 0.0728848 0.0669703 38 2620 28 6.95648e+06 231611 678818. 2348.85 7.19 0.322981 0.289914 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0498232 0.0447942 74 34 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.16 vpr 55.97 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30012 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 17.3 MiB 0.92 607 9374 3879 5147 348 56.2 MiB 0.12 0.00 3.0545 -108.859 -3.0545 3.0545 1.08 0.0010673 0.000978325 0.0672428 0.0616541 38 1982 33 6.95648e+06 173708 678818. 2348.85 4.42 0.316059 0.282704 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0480865 0.0431235 61 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.01 vpr 55.95 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 17.5 MiB 1.46 777 7669 3175 4304 190 56.5 MiB 0.11 0.00 3.0765 -113.072 -3.0765 3.0765 1.09 0.00113701 0.0010405 0.0595326 0.0545845 36 2390 29 6.95648e+06 144757 648988. 2245.63 4.30 0.290183 0.258937 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0512541 0.0459159 60 91 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 10.62 vpr 55.82 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30096 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.3 MiB 0.20 795 9448 3333 4743 1372 56.2 MiB 0.13 0.00 3.89245 -136.332 -3.89245 3.89245 1.09 0.0011447 0.00104929 0.0600089 0.0552093 50 2553 48 6.95648e+06 361892 902133. 3121.57 7.97 0.533607 0.47717 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.35 0.17 0.36 -1 -1 0.35 0.0528653 0.0476886 86 4 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 10.59 vpr 56.03 MiB 0.05 7072 -1 -1 1 0.05 -1 -1 30596 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 17.6 MiB 0.98 926 10495 2590 6894 1011 56.5 MiB 0.17 0.00 3.78219 -140.482 -3.78219 3.78219 1.13 0.00132488 0.00121557 0.0716802 0.0657643 44 2797 31 6.95648e+06 390843 787024. 2723.27 7.54 0.548921 0.491493 27778 195446 -1 2243 24 2072 3440 271776 53627 4.11966 4.11966 -151.056 -4.11966 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.061397 0.0553399 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 12.32 vpr 56.02 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30400 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 17.8 MiB 1.90 831 9336 3198 4890 1248 56.3 MiB 0.14 0.00 3.70819 -135.715 -3.70819 3.70819 0.98 0.00131555 0.00120568 0.0650884 0.0597001 46 2950 33 6.95648e+06 376368 828058. 2865.25 5.71 0.370042 0.332118 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.33 0.15 0.32 -1 -1 0.33 0.0591856 0.0533197 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.29 vpr 56.12 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 17.4 MiB 1.19 822 13351 4683 6743 1925 56.4 MiB 0.19 0.00 3.75544 -130.593 -3.75544 3.75544 1.08 0.0013088 0.00119325 0.0889987 0.0816368 48 3144 32 6.95648e+06 390843 865456. 2994.66 4.14 0.381536 0.342844 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0590308 0.0531983 86 65 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 7.75 vpr 55.61 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30196 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 17.1 MiB 0.83 551 9064 3696 4990 378 55.8 MiB 0.12 0.00 3.29416 -111.889 -3.29416 3.29416 1.09 0.00100274 0.000918791 0.061351 0.0563046 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.99 0.283432 0.253427 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0421474 0.0377961 62 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.13 vpr 56.06 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30272 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 17.8 MiB 0.87 751 12465 5336 6622 507 56.6 MiB 0.18 0.00 4.015 -133.992 -4.015 4.015 1.09 0.00124832 0.00114481 0.0991475 0.0910144 50 2020 39 6.95648e+06 217135 902133. 3121.57 10.80 0.681876 0.609696 28642 213929 -1 1643 20 1664 2248 177098 40098 3.95216 3.95216 -137.304 -3.95216 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0502919 0.0453904 78 63 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.10 vpr 55.99 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30716 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58140 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 17.9 MiB 1.83 807 14351 4061 7900 2390 56.8 MiB 0.22 0.00 3.71619 -135.355 -3.71619 3.71619 1.09 0.0014392 0.00131911 0.108473 0.099264 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.48 0.389336 0.349462 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0641582 0.057644 88 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 10.92 vpr 55.97 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30264 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57816 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 17.5 MiB 1.03 718 14035 5965 7479 591 56.5 MiB 0.23 0.00 3.9948 -135.983 -3.9948 3.9948 1.08 0.00132719 0.00121536 0.124816 0.114244 46 2454 32 6.95648e+06 318465 828058. 2865.25 5.81 0.437389 0.393278 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053108 0.0478893 81 94 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.68 vpr 56.14 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 17.5 MiB 1.63 700 13668 5834 7221 613 56.4 MiB 0.19 0.00 3.27591 -109.838 -3.27591 3.27591 1.10 0.00127604 0.00116329 0.104398 0.0956517 46 2600 45 6.95648e+06 260562 828058. 2865.25 4.19 0.426489 0.38233 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0593692 0.0534036 75 92 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.27 vpr 55.97 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58068 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.8 MiB 1.92 782 12628 3922 6830 1876 56.7 MiB 0.19 0.00 3.65989 -133.508 -3.65989 3.65989 1.09 0.00131076 0.0012018 0.102702 0.0942152 48 2610 29 6.95648e+06 188184 865456. 2994.66 4.84 0.407081 0.366043 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.35 0.25 0.35 -1 -1 0.35 0.0771882 0.0696211 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 8.91 vpr 56.02 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30184 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 17.7 MiB 1.11 662 10163 3749 4795 1619 56.5 MiB 0.13 0.00 3.14182 -102.393 -3.14182 3.14182 1.09 0.00122041 0.00111795 0.072063 0.0660747 48 1906 29 6.95648e+06 318465 865456. 2994.66 3.93 0.346316 0.310461 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.35 0.15 0.35 -1 -1 0.35 0.054278 0.0488649 77 88 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 8.27 vpr 55.64 MiB 0.05 6812 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.84 574 9219 3815 5040 364 56.0 MiB 0.12 0.00 2.94595 -112.182 -2.94595 2.94595 1.09 0.00100073 0.000919158 0.0622626 0.0572147 62 1582 28 6.95648e+06 144757 1.05005e+06 3633.38 7.19 0.427956 0.382799 30946 263737 -1 1177 19 1240 1905 137799 33305 3.13582 3.13582 -113.41 -3.13582 0 0 1.30136e+06 4502.97 0.42 0.10 0.46 -1 -1 0.42 0.0364767 0.0328469 61 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.61 vpr 56.20 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 17.6 MiB 3.79 749 15688 6578 8529 581 56.5 MiB 0.21 0.00 3.77419 -136.605 -3.77419 3.77419 1.09 0.00131676 0.0012077 0.110005 0.10091 54 2315 29 6.95648e+06 347416 949917. 3286.91 4.13 0.404609 0.364168 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.38 0.14 0.40 -1 -1 0.38 0.0597107 0.0538828 84 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 8.88 vpr 56.28 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30400 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 0.77 800 13117 5732 6986 399 56.4 MiB 0.19 0.00 3.79019 -142.199 -3.79019 3.79019 1.09 0.0013207 0.00121117 0.10921 0.100253 44 2724 46 6.95648e+06 188184 787024. 2723.27 3.10 0.442527 0.398192 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0545276 0.04912 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.04 vpr 55.65 MiB 0.03 6920 -1 -1 1 0.04 -1 -1 30196 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 17.1 MiB 1.21 575 11609 4562 5941 1106 56.1 MiB 0.15 0.00 3.25495 -109.238 -3.25495 3.25495 1.08 0.00103206 0.000945267 0.0788817 0.0723099 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.43 0.294303 0.263751 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0430239 0.0385979 60 55 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.65 vpr 55.37 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30196 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.30 835 9529 3959 5371 199 55.9 MiB 0.12 0.00 3.0815 -119.168 -3.0815 3.0815 1.09 0.000971747 0.000891309 0.0624392 0.0573784 38 2078 34 6.95648e+06 159232 678818. 2348.85 5.58 0.40656 0.362846 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.29 0.10 0.31 -1 -1 0.29 0.0386929 0.0348551 63 4 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.46 vpr 56.21 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 17.6 MiB 1.35 782 14483 5692 6794 1997 56.2 MiB 0.20 0.00 3.70334 -129.205 -3.70334 3.70334 1.09 0.0012514 0.00114867 0.104303 0.0956314 38 2558 24 6.95648e+06 275038 678818. 2348.85 4.66 0.373069 0.335377 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0469186 0.0424536 78 59 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 10.81 vpr 56.06 MiB 0.05 7160 -1 -1 1 0.41 -1 -1 30108 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 17.5 MiB 0.75 793 11474 4768 6294 412 56.4 MiB 0.17 0.00 3.90986 -132.869 -3.90986 3.90986 1.08 0.00127496 0.00116789 0.0872254 0.0799913 40 2890 43 6.95648e+06 260562 706193. 2443.58 8.27 0.414406 0.371951 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0555461 0.0499961 78 88 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 9.23 vpr 56.20 MiB 0.10 7032 -1 -1 1 0.41 -1 -1 30408 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58028 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.9 MiB 0.43 1152 4375 861 3334 180 56.7 MiB 0.09 0.00 4.48239 -161.071 -4.48239 4.48239 1.08 0.00136817 0.00125747 0.0332239 0.0306376 46 3119 32 6.95648e+06 390843 828058. 2865.25 6.66 0.354917 0.319322 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.34 0.16 0.33 -1 -1 0.34 0.0563478 0.0511067 100 3 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.72 vpr 56.07 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 17.8 MiB 1.05 698 14528 6104 7488 936 56.6 MiB 0.20 0.00 3.34296 -113.702 -3.34296 3.34296 1.08 0.00119821 0.00109831 0.104718 0.0960619 44 2314 27 6.95648e+06 260562 787024. 2723.27 3.10 0.37127 0.333854 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0591834 0.0531779 77 59 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.96 vpr 55.59 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 17.3 MiB 0.54 465 10459 4157 5359 943 55.9 MiB 0.14 0.00 3.15776 -95.8334 -3.15776 3.15776 1.10 0.000917356 0.000841296 0.0740647 0.0678907 38 1652 25 6.95648e+06 217135 678818. 2348.85 5.04 0.384385 0.342494 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0342114 0.0307177 57 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 9.29 vpr 56.30 MiB 0.05 7292 -1 -1 1 0.05 -1 -1 30472 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 18.2 MiB 0.90 956 13513 4288 6425 2800 56.6 MiB 0.20 0.00 4.037 -139.704 -4.037 4.037 1.09 0.00155869 0.00142942 0.103566 0.0950383 54 3228 47 6.95648e+06 434271 949917. 3286.91 8.84 0.701419 0.628858 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.38 0.18 0.39 -1 -1 0.38 0.070541 0.0636286 103 95 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 14.62 vpr 55.92 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30380 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58172 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 18.0 MiB 3.62 899 8716 2535 4990 1191 56.8 MiB 0.14 0.00 4.57784 -152.287 -4.57784 4.57784 1.09 0.00139742 0.00128222 0.0783709 0.0719727 40 2620 26 6.95648e+06 202660 706193. 2443.58 3.61 0.380083 0.340722 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0560166 0.0503962 79 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 11.53 vpr 55.83 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 17.5 MiB 3.12 500 11389 4353 5738 1298 56.5 MiB 0.15 0.00 3.0346 -106.135 -3.0346 3.0346 1.09 0.00113202 0.00103664 0.0867382 0.0795135 42 2142 50 6.95648e+06 144757 744469. 2576.02 13.20 0.6367 0.56685 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.31 0.10 0.30 -1 -1 0.31 0.0484561 0.0434722 58 89 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 7.92 vpr 55.93 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.43 819 12938 5293 7361 284 56.3 MiB 0.18 0.00 4.12326 -140.658 -4.12326 4.12326 1.10 0.00121508 0.00111393 0.0870922 0.0799583 46 2429 24 6.95648e+06 318465 828058. 2865.25 6.38 0.482164 0.432371 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0531962 0.0479402 83 34 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 9.21 vpr 56.12 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30548 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58012 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 17.8 MiB 0.96 852 12560 4728 5964 1868 56.7 MiB 0.19 0.00 4.1192 -140.393 -4.1192 4.1192 1.09 0.00143535 0.00131808 0.0995828 0.0915308 44 3193 49 6.95648e+06 332941 787024. 2723.27 3.68 0.482635 0.434046 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.34 0.15 0.23 -1 -1 0.34 0.0665179 0.0599931 95 64 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 11.17 vpr 55.81 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30236 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 17.8 MiB 0.96 739 10762 4429 5782 551 56.7 MiB 0.14 0.00 3.27396 -108.751 -3.27396 3.27396 1.09 0.00120667 0.00110443 0.0763097 0.0700094 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.84 0.293249 0.263612 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.35 0.12 0.37 -1 -1 0.35 0.0527813 0.0475011 78 61 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 10.82 vpr 56.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58016 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 17.9 MiB 0.64 907 15848 6161 8045 1642 56.7 MiB 0.20 0.00 3.79319 -139.401 -3.79319 3.79319 1.11 0.00133992 0.00122802 0.0969903 0.0888647 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.59 0.369418 0.332065 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.18 0.34 -1 -1 0.35 0.0573937 0.0517312 91 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.20 vpr 56.14 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58060 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 17.8 MiB 0.39 794 15215 5485 7366 2364 56.7 MiB 0.20 0.00 3.05335 -116.88 -3.05335 3.05335 1.10 0.00131332 0.00120301 0.0964503 0.0883512 38 2664 32 6.95648e+06 448746 678818. 2348.85 14.31 0.660166 0.591052 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0592563 0.0533417 90 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.40 vpr 55.59 MiB 0.08 6928 -1 -1 1 0.27 -1 -1 30108 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 17.3 MiB 3.33 577 8599 3570 4706 323 55.9 MiB 0.10 0.00 3.17976 -103.796 -3.17976 3.17976 1.09 0.000977423 0.000893891 0.0570353 0.0522728 34 1710 33 6.95648e+06 188184 618332. 2139.56 2.00 0.240217 0.214804 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0393341 0.0352805 56 34 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 8.19 vpr 55.81 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 17.4 MiB 0.89 584 9839 4132 5456 251 56.2 MiB 0.13 0.00 2.9814 -102.92 -2.9814 2.9814 1.11 0.00106727 0.000976717 0.0709454 0.0650059 42 1955 38 6.95648e+06 144757 744469. 2576.02 6.25 0.488447 0.434321 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0389154 0.0349064 58 82 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 9.02 vpr 55.84 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 0.53 743 12331 4128 5906 2297 56.5 MiB 0.15 0.00 4.24545 -140.476 -4.24545 4.24545 1.09 0.00121649 0.00111607 0.0771041 0.0708042 52 2318 48 6.95648e+06 405319 926341. 3205.33 8.18 0.622738 0.557407 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.37 0.13 0.38 -1 -1 0.37 0.0513301 0.0462667 86 34 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.01 vpr 55.67 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30212 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 17.3 MiB 1.23 494 12399 5297 6440 662 55.9 MiB 0.14 0.00 3.26295 -100.502 -3.26295 3.26295 1.08 0.000983031 0.000901478 0.0801406 0.07352 40 2019 35 6.95648e+06 202660 706193. 2443.58 3.74 0.322594 0.288738 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.041729 0.037302 59 56 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.82 vpr 55.50 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 17.2 MiB 0.87 698 10149 3910 5225 1014 55.8 MiB 0.14 0.00 3.05815 -118.306 -3.05815 3.05815 0.91 0.00105823 0.000970693 0.0726988 0.0667482 38 2191 39 6.95648e+06 144757 678818. 2348.85 11.66 0.504448 0.449993 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0447559 0.0401844 61 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.86 vpr 56.08 MiB 0.03 7016 -1 -1 1 0.03 -1 -1 30248 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 17.5 MiB 0.76 717 11607 3761 5813 2033 56.4 MiB 0.08 0.00 3.1175 -113.433 -3.1175 3.1175 0.74 0.000459665 0.000414213 0.0301033 0.0272558 44 1996 23 6.95648e+06 347416 787024. 2723.27 4.51 0.361136 0.321778 27778 195446 -1 1542 18 1591 2057 137516 32127 3.20637 3.20637 -119.126 -3.20637 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0465852 0.0420409 82 64 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 9.41 vpr 55.72 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30260 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 2.21 682 10459 3058 6921 480 55.9 MiB 0.13 0.00 3.13575 -104.344 -3.13575 3.13575 1.08 0.00101945 0.000934856 0.0711642 0.0652532 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.21 0.192026 0.171298 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0460906 0.0413256 57 55 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 9.00 vpr 56.17 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 17.6 MiB 1.78 710 12323 5117 6727 479 56.4 MiB 0.16 0.00 3.0155 -107.222 -3.0155 3.0155 1.10 0.00123051 0.00112843 0.0878957 0.0805773 48 2125 29 6.95648e+06 275038 865456. 2994.66 3.35 0.365621 0.328441 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0509388 0.045856 76 65 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.77 vpr 56.15 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30192 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 17.7 MiB 1.57 717 15298 5325 7460 2513 56.6 MiB 0.21 0.00 3.41641 -118.296 -3.41641 3.41641 1.09 0.00132789 0.00121668 0.104679 0.0958412 44 2443 41 6.95648e+06 361892 787024. 2723.27 6.51 0.563776 0.50584 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0557462 0.0502268 85 93 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 8.67 vpr 55.81 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30216 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 0.91 564 10149 3066 5426 1657 56.3 MiB 0.15 0.00 2.9023 -103.177 -2.9023 2.9023 1.10 0.00108818 0.000997353 0.0746445 0.0684847 44 2002 28 6.95648e+06 144757 787024. 2723.27 5.88 0.465708 0.415587 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.048056 0.0430679 61 61 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.62 vpr 55.68 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 17.5 MiB 0.76 611 8289 3413 4626 250 56.4 MiB 0.11 0.00 3.0515 -113.367 -3.0515 3.0515 0.83 0.00110348 0.00101041 0.062218 0.0570542 52 1978 31 6.95648e+06 144757 926341. 3205.33 6.89 0.451101 0.402349 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.37 0.11 0.40 -1 -1 0.37 0.046306 0.0415836 63 63 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 10.67 vpr 55.98 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30584 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 17.6 MiB 1.08 951 8283 1857 5834 592 56.5 MiB 0.13 0.00 3.78219 -143.123 -3.78219 3.78219 1.09 0.00129864 0.00119118 0.0549675 0.0504641 40 2477 25 6.95648e+06 419795 706193. 2443.58 4.82 0.341606 0.306189 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0690988 0.0621809 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.13 vpr 55.98 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 739 8336 2662 4258 1416 56.2 MiB 0.12 0.00 3.1065 -104.923 -3.1065 3.1065 1.08 0.00118927 0.00109002 0.0609616 0.0559909 38 2387 48 6.95648e+06 275038 678818. 2348.85 11.88 0.615736 0.549976 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0488341 0.0440831 77 62 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.51 vpr 56.27 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30672 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58152 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 18.0 MiB 1.90 819 16473 6066 7302 3105 56.8 MiB 0.21 0.00 3.81039 -138.347 -3.81039 3.81039 1.09 0.0014429 0.00132167 0.11745 0.107634 48 2605 47 6.95648e+06 419795 865456. 2994.66 7.28 0.487999 0.437685 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.36 0.21 0.34 -1 -1 0.36 0.0791086 0.0709628 89 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 8.21 vpr 55.51 MiB 0.04 6760 -1 -1 1 0.03 -1 -1 30128 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 17.1 MiB 1.25 588 9529 3953 5280 296 55.7 MiB 0.11 0.00 3.02776 -101.68 -3.02776 3.02776 1.09 0.000920775 0.000845309 0.0593258 0.0544919 38 2072 26 6.95648e+06 159232 678818. 2348.85 3.30 0.262979 0.235006 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0417613 0.0373795 58 4 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.96 vpr 56.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58044 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.09 751 13335 4844 6817 1674 56.7 MiB 0.18 0.00 3.74945 -128.098 -3.74945 3.74945 1.11 0.00131829 0.00120736 0.0956107 0.0875067 50 2285 32 6.95648e+06 332941 902133. 3121.57 4.64 0.399594 0.358957 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0570136 0.051306 81 92 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.38 vpr 55.97 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30076 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.5 MiB 2.95 613 11854 5235 6332 287 56.2 MiB 0.16 0.00 2.96105 -113.67 -2.96105 2.96105 1.09 0.00118941 0.0010895 0.0939151 0.086067 40 2066 46 6.95648e+06 144757 706193. 2443.58 13.27 0.665482 0.593469 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0568819 0.0510321 61 96 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 8.92 vpr 55.98 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 1.30 784 11983 4223 5778 1982 56.4 MiB 0.17 0.00 3.13882 -116.487 -3.13882 3.13882 1.12 0.0012929 0.00118454 0.0817383 0.0748738 48 2212 28 6.95648e+06 347416 865456. 2994.66 2.95 0.371644 0.333828 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0572075 0.0516248 84 65 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 12.83 vpr 56.21 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30624 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 18.4 MiB 1.60 961 18301 6218 9454 2629 56.7 MiB 0.26 0.00 4.52824 -160.34 -4.52824 4.52824 1.09 0.00157359 0.00144406 0.134368 0.123321 46 3150 41 6.95648e+06 477698 828058. 2865.25 6.37 0.44243 0.39771 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0660315 0.0596009 104 96 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 8.89 vpr 55.48 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30068 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 16.9 MiB 0.51 395 8267 2975 4043 1249 55.5 MiB 0.09 0.00 2.20646 -76.6701 -2.20646 2.20646 1.09 0.000820752 0.000750585 0.048116 0.0440817 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.95 0.251038 0.222604 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0354479 0.0315251 45 56 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 8.82 vpr 55.71 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30280 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 1.64 505 9994 3801 4923 1270 55.9 MiB 0.13 0.00 3.20866 -106.336 -3.20866 3.20866 1.10 0.00100772 0.000925015 0.0683057 0.0627268 40 1597 24 6.95648e+06 173708 706193. 2443.58 2.44 0.283172 0.253512 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0474906 0.0424626 58 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.09 vpr 55.71 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 17.4 MiB 0.28 594 9219 3126 4706 1387 56.0 MiB 0.13 0.00 2.93285 -111.664 -2.93285 2.93285 1.09 0.0010611 0.000972688 0.0677214 0.0621498 52 1888 25 6.95648e+06 144757 926341. 3205.33 6.74 0.420574 0.375381 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0501063 0.0450145 65 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.40 vpr 55.47 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30276 -1 -1 15 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 17.3 MiB 0.51 415 9310 3976 4598 736 55.8 MiB 0.10 0.00 3.24096 -89.6096 -3.24096 3.24096 1.09 0.000857735 0.000786565 0.0563127 0.0517129 40 1641 47 6.95648e+06 217135 706193. 2443.58 2.95 0.273201 0.243229 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.30 0.08 0.28 -1 -1 0.30 0.0356654 0.0318837 56 34 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 14.36 vpr 56.05 MiB 0.05 7136 -1 -1 1 0.05 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 17.8 MiB 1.31 849 10835 4559 6029 247 56.3 MiB 0.18 0.00 3.79924 -134.385 -3.79924 3.79924 1.18 0.00135307 0.00123981 0.0960042 0.0881023 48 3013 23 6.95648e+06 188184 865456. 2994.66 6.85 0.561782 0.503515 28354 207349 -1 2586 21 1951 3485 346305 68574 4.33406 4.33406 -153.19 -4.33406 0 0 1.05005e+06 3633.38 0.35 0.18 0.36 -1 -1 0.35 0.0626458 0.0561033 77 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 9.79 vpr 56.24 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30212 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 17.9 MiB 1.05 742 12512 4241 5927 2344 56.6 MiB 0.17 0.00 3.1116 -112.527 -3.1116 3.1116 1.09 0.0013258 0.00121388 0.0840633 0.0769803 40 2297 45 6.95648e+06 419795 706193. 2443.58 3.75 0.417533 0.374817 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.34 0.18 0.28 -1 -1 0.34 0.0737225 0.0662994 87 94 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.89 vpr 55.84 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 17.9 MiB 0.73 1062 15584 5717 7278 2589 56.5 MiB 0.23 0.00 4.46104 -158.567 -4.46104 4.46104 1.10 0.00137337 0.00125931 0.117262 0.107455 50 2979 31 6.99608e+06 323745 902133. 3121.57 3.60 0.431744 0.388178 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0412321 0.0367847 130 96 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 9.78 vpr 55.82 MiB 0.06 7264 -1 -1 1 0.03 -1 -1 30596 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 17.8 MiB 1.39 1018 13610 5732 7207 671 56.5 MiB 0.20 0.00 4.50158 -148.332 -4.50158 4.50158 1.08 0.00128938 0.00118143 0.102219 0.093741 54 3118 36 6.99608e+06 294314 949917. 3286.91 7.08 0.554204 0.496926 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.36 0.15 0.21 -1 -1 0.36 0.0527242 0.0476024 117 91 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 8.21 vpr 55.84 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30268 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 17.3 MiB 1.01 1040 13610 5701 7488 421 56.2 MiB 0.19 0.00 3.59279 -128.627 -3.59279 3.59279 1.14 0.0012387 0.00113636 0.0987332 0.0906087 46 2926 28 6.99608e+06 264882 828058. 2865.25 6.02 0.497392 0.446337 28066 200906 -1 2312 22 1747 2063 162737 34627 4.13566 4.13566 -142.913 -4.13566 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0542072 0.0488594 106 65 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 8.33 vpr 55.64 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 17.4 MiB 0.71 806 14444 6101 7602 741 56.0 MiB 0.20 0.00 3.79615 -125.537 -3.79615 3.79615 1.09 0.00114872 0.00105499 0.101306 0.0930462 40 2767 26 6.99608e+06 264882 706193. 2443.58 4.36 0.364531 0.328143 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0504752 0.0454288 89 34 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.67 vpr 55.84 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 17.7 MiB 0.61 871 12416 4669 6393 1354 56.5 MiB 0.19 0.00 4.27644 -154.345 -4.27644 4.27644 1.12 0.00126178 0.0011576 0.0966609 0.0887407 56 2565 50 6.99608e+06 220735 973134. 3367.25 4.24 0.433776 0.389246 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.38 0.16 0.42 -1 -1 0.38 0.0615922 0.0555374 93 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 10.99 vpr 56.23 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30200 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 17.7 MiB 0.61 1298 16069 5589 8587 1893 56.4 MiB 0.23 0.00 3.60699 -134.626 -3.60699 3.60699 1.11 0.00129625 0.00118866 0.102142 0.0936983 48 3162 26 6.99608e+06 441471 865456. 2994.66 7.35 0.590646 0.529705 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.34 0.16 0.34 -1 -1 0.34 0.0571622 0.0515038 117 64 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 9.94 vpr 55.44 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 17.0 MiB 1.27 620 8289 3348 4414 527 55.6 MiB 0.10 0.00 3.30124 -103.988 -3.30124 3.30124 1.09 0.000919508 0.000843935 0.0521139 0.0478907 44 2016 40 6.99608e+06 220735 787024. 2723.27 5.97 0.411271 0.365865 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0402531 0.0360636 68 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.75 vpr 55.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30056 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.0 MiB 0.48 708 9368 3795 5080 493 55.7 MiB 0.12 0.00 2.88485 -101.173 -2.88485 2.88485 1.09 0.00110469 0.00101433 0.0633039 0.0581989 46 2433 35 6.99608e+06 250167 828058. 2865.25 6.43 0.331858 0.297795 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0587588 0.0528301 77 4 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 9.94 vpr 55.56 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 17.4 MiB 2.64 865 11366 4429 5807 1130 56.0 MiB 0.15 0.00 3.3156 -116.953 -3.3156 3.3156 1.09 0.00107791 0.000986815 0.0767401 0.070279 44 2856 40 6.99608e+06 220735 787024. 2723.27 3.98 0.346343 0.309451 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0488772 0.0438366 96 85 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.78 vpr 55.75 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30188 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 0.71 668 10346 4043 5155 1148 55.9 MiB 0.09 0.00 3.58059 -133.895 -3.58059 3.58059 1.09 0.000390684 0.000352615 0.0267628 0.0242459 46 2113 26 6.99608e+06 191304 828058. 2865.25 6.47 0.412839 0.367365 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.047881 0.0430039 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 7.44 vpr 55.97 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 17.6 MiB 2.26 858 10835 4264 5113 1458 56.3 MiB 0.15 0.00 3.85932 -133.017 -3.85932 3.85932 1.11 0.00106629 0.000977287 0.0739569 0.0677759 44 2584 26 6.99608e+06 220735 787024. 2723.27 2.79 0.259398 0.232732 27778 195446 -1 2084 20 1700 2299 199472 41488 3.792 3.792 -141.165 -3.792 0 0 997811. 3452.63 0.34 0.11 0.32 -1 -1 0.34 0.042807 0.0384646 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.85 vpr 55.64 MiB 0.11 6808 -1 -1 1 0.58 -1 -1 30140 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 17.6 MiB 0.78 1078 12030 4277 6214 1539 56.4 MiB 0.16 0.00 3.0712 -121.401 -3.0712 3.0712 1.03 0.00107108 0.000980409 0.0809159 0.0741417 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.17 0.283352 0.252944 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0501693 0.0449205 91 65 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.38 vpr 55.75 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30476 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 17.5 MiB 0.93 883 7132 1837 4428 867 56.2 MiB 0.13 0.00 3.50359 -126.552 -3.50359 3.50359 0.97 0.00125687 0.00115256 0.0564183 0.0518336 50 2388 31 6.99608e+06 235451 902133. 3121.57 3.13 0.329659 0.296043 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.35 0.13 0.35 -1 -1 0.35 0.0588242 0.0529547 101 58 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 12.05 vpr 56.18 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30508 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1134 14123 4441 7724 1958 56.5 MiB 0.21 0.00 4.28564 -153.93 -4.28564 4.28564 1.08 0.00132139 0.00121219 0.107746 0.0989315 48 3127 38 6.99608e+06 279598 865456. 2994.66 20.10 0.772486 0.692246 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0641816 0.0578181 112 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.92 vpr 55.31 MiB 0.06 6980 -1 -1 1 0.03 -1 -1 30708 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 17.1 MiB 2.14 572 11293 4723 5996 574 55.7 MiB 0.13 0.00 2.92195 -96.6009 -2.92195 2.92195 1.09 0.000935853 0.000858475 0.069851 0.064104 40 1775 30 6.99608e+06 206020 706193. 2443.58 13.31 0.518779 0.460699 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0389886 0.0349457 67 29 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.84 vpr 56.14 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 17.9 MiB 2.08 1040 13324 4763 6768 1793 56.6 MiB 0.20 0.00 3.68279 -132.173 -3.68279 3.68279 1.11 0.0013045 0.00119517 0.104538 0.0958138 50 2876 28 6.99608e+06 235451 902133. 3121.57 19.10 0.604371 0.540796 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0630874 0.0567631 106 63 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.84 vpr 55.86 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1122 6731 1649 4394 688 56.2 MiB 0.11 0.00 3.32994 -131.897 -3.32994 3.32994 1.11 0.00126208 0.00115824 0.0518488 0.0476198 38 3062 22 6.99608e+06 250167 678818. 2348.85 4.98 0.322564 0.289342 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0504062 0.0454715 99 57 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 9.19 vpr 55.89 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30292 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 17.6 MiB 0.67 871 13856 5887 7726 243 56.4 MiB 0.20 0.00 3.39034 -128.572 -3.39034 3.39034 1.12 0.00111472 0.00102214 0.0972887 0.0892205 44 3195 31 6.99608e+06 206020 787024. 2723.27 3.03 0.34649 0.310362 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0446146 0.0401006 91 65 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.80 vpr 55.17 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30172 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 16.6 MiB 2.07 536 9041 3932 4796 313 55.2 MiB 0.10 0.00 2.34646 -88.6787 -2.34646 2.34646 1.10 0.000790368 0.000724261 0.049027 0.0449334 36 1652 38 6.99608e+06 161872 648988. 2245.63 2.63 0.231471 0.205412 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.30 0.07 0.25 -1 -1 0.30 0.0319045 0.0285327 56 34 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.12 vpr 55.82 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 1018 11532 3380 6660 1492 56.2 MiB 0.16 0.00 3.58639 -133.629 -3.58639 3.58639 1.11 0.00108586 0.000994843 0.0773672 0.0708984 40 2527 22 6.99608e+06 220735 706193. 2443.58 3.18 0.309191 0.276912 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.32 0.14 0.30 -1 -1 0.32 0.0520569 0.0467271 91 64 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.33 vpr 55.84 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 17.5 MiB 0.51 1089 12759 4547 6573 1639 56.4 MiB 0.17 0.00 4.04748 -146.851 -4.04748 4.04748 1.11 0.00122108 0.00112036 0.0862787 0.0793035 46 2738 33 6.99608e+06 338461 828058. 2865.25 6.30 0.498576 0.44751 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.33 0.13 0.34 -1 -1 0.33 0.0536176 0.0483271 97 34 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 12.98 vpr 55.88 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30636 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 18.0 MiB 1.30 1280 15206 4884 7262 3060 56.5 MiB 0.23 0.00 4.01908 -141.768 -4.01908 4.01908 1.09 0.00143224 0.00130991 0.119131 0.109406 46 3184 26 6.99608e+06 323745 828058. 2865.25 6.35 0.603976 0.541522 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.35 0.14 0.33 -1 -1 0.35 0.0620097 0.0557058 138 124 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.85 vpr 55.32 MiB 0.03 6776 -1 -1 1 0.04 -1 -1 30572 -1 -1 15 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 16.8 MiB 0.72 401 7217 2934 3827 456 55.4 MiB 0.07 0.00 2.7074 -79.2163 -2.7074 2.7074 1.09 0.000686446 0.000627258 0.0346819 0.0317254 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.72 0.166708 0.147935 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.28 0.06 0.25 -1 -1 0.28 0.023085 0.0206384 52 30 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.98 vpr 55.57 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 17.1 MiB 0.81 698 9036 3669 4978 389 55.8 MiB 0.13 0.00 3.97238 -133.231 -3.97238 3.97238 1.10 0.00117027 0.00107565 0.0687781 0.0632065 54 2240 31 6.99608e+06 176588 949917. 3286.91 3.56 0.333423 0.299671 29506 232905 -1 1677 21 1598 2534 192423 45363 3.87582 3.87582 -138.421 -3.87582 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0484017 0.0436273 75 3 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 6.31 vpr 54.91 MiB 0.04 6732 -1 -1 1 0.03 -1 -1 30376 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.8 MiB 0.23 736 9906 3603 5031 1272 55.3 MiB 0.10 0.00 2.06111 -84.6894 -2.06111 2.06111 1.09 0.000723153 0.000661638 0.050482 0.0462583 34 1682 40 6.99608e+06 117725 618332. 2139.56 2.10 0.222681 0.198317 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.27 0.08 0.26 -1 -1 0.27 0.0325348 0.0290661 44 3 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.47 vpr 55.55 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 17.4 MiB 1.25 836 12681 5269 6945 467 56.4 MiB 0.20 0.00 3.87925 -141.78 -3.87925 3.87925 1.08 0.00125456 0.00115165 0.103862 0.0955911 44 3391 42 6.99608e+06 250167 787024. 2723.27 3.48 0.36852 0.332156 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.33 0.15 0.34 -1 -1 0.33 0.0566662 0.0511474 95 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.62 vpr 55.82 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30104 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.4 MiB 0.30 1064 14375 4737 7721 1917 56.2 MiB 0.17 0.00 2.93295 -116.62 -2.93295 2.93295 1.11 0.00116536 0.00106972 0.084381 0.0775432 40 2476 21 6.99608e+06 412039 706193. 2443.58 6.32 0.580802 0.520929 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0566841 0.0515721 87 3 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 11.97 vpr 56.00 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30592 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58020 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1077 13105 3562 8179 1364 56.7 MiB 0.20 0.00 3.82425 -139.818 -3.82425 3.82425 1.08 0.00131552 0.00120708 0.0966411 0.0887209 46 3235 48 6.99608e+06 309029 828058. 2865.25 7.05 0.599409 0.537701 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0517736 0.0467441 115 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.38 vpr 55.73 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30164 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 17.2 MiB 1.23 701 9397 3869 5271 257 55.9 MiB 0.13 0.00 2.9841 -107.493 -2.9841 2.9841 1.11 0.00100161 0.000918746 0.0628261 0.057695 40 2056 26 6.99608e+06 161872 706193. 2443.58 5.37 0.390453 0.348049 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0420966 0.0377777 72 34 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 10.09 vpr 55.45 MiB 0.05 6872 -1 -1 1 0.03 -1 -1 30236 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 17.3 MiB 7.13 650 7975 2399 4401 1175 56.0 MiB 0.12 0.00 3.55679 -118.022 -3.55679 3.55679 1.12 0.0010031 0.000915706 0.0591108 0.0543738 46 2056 46 6.99608e+06 191304 828058. 2865.25 4.99 0.311063 0.278063 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0439002 0.0393745 73 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.89 vpr 55.70 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30312 -1 -1 15 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 16.8 MiB 1.12 739 7975 3247 4371 357 55.5 MiB 0.10 0.00 3.69125 -116.127 -3.69125 3.69125 1.09 0.000948807 0.000870271 0.0507994 0.0465874 38 2264 33 6.99608e+06 220735 678818. 2348.85 5.12 0.336816 0.299227 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.038303 0.0343625 72 34 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.70 vpr 55.54 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30404 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.9 MiB 0.25 696 7204 2957 4121 126 55.6 MiB 0.10 0.00 2.86245 -113.51 -2.86245 2.86245 1.09 0.00100592 0.000923228 0.049861 0.0458494 42 2358 35 6.99608e+06 147157 744469. 2576.02 5.71 0.396965 0.354561 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.33 0.11 0.30 -1 -1 0.33 0.0389132 0.0350312 64 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.52 vpr 55.63 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 17.3 MiB 0.71 709 9540 3934 5278 328 55.8 MiB 0.12 0.00 2.94395 -107.519 -2.94395 2.94395 1.09 0.00102557 0.000939593 0.0619531 0.0568492 46 2091 24 6.99608e+06 220735 828058. 2865.25 3.55 0.251558 0.224996 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.35 0.09 0.33 -1 -1 0.35 0.0414756 0.0373035 77 34 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 9.60 vpr 55.51 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30148 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 17.3 MiB 2.91 930 10835 4554 5858 423 56.2 MiB 0.14 0.00 2.88685 -103.645 -2.88685 2.88685 1.09 0.00102129 0.000935776 0.0712239 0.0652874 36 2556 47 6.99608e+06 235451 648988. 2245.63 2.94 0.282334 0.252721 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0415524 0.0373117 86 61 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.90 vpr 55.91 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30444 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 17.8 MiB 1.05 1138 15273 6065 7495 1713 56.5 MiB 0.26 0.00 3.90815 -143.373 -3.90815 3.90815 1.10 0.00141808 0.00130268 0.132468 0.121854 46 3798 44 6.99608e+06 294314 828058. 2865.25 32.17 0.806265 0.724084 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0622822 0.0562618 106 29 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 10.58 vpr 56.20 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 1.05 999 10762 3395 5388 1979 56.3 MiB 0.17 0.00 4.20458 -152.083 -4.20458 4.20458 1.13 0.00130309 0.00119431 0.0830164 0.0761784 54 3189 47 6.99608e+06 264882 949917. 3286.91 4.68 0.406678 0.36491 29506 232905 -1 2202 20 2117 2841 248515 55676 3.94235 3.94235 -153.962 -3.94235 0 0 1.17392e+06 4061.99 0.37 0.14 0.39 -1 -1 0.37 0.052728 0.0476284 110 65 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.40 vpr 55.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30468 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 0.85 1070 8867 2185 5933 749 56.1 MiB 0.12 0.00 3.49385 -125.494 -3.49385 3.49385 1.08 0.00110703 0.00101456 0.0618238 0.0566638 38 2592 37 6.99608e+06 235451 678818. 2348.85 3.62 0.322592 0.288187 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.30 0.11 0.27 -1 -1 0.30 0.0498874 0.0448488 99 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 9.72 vpr 56.02 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 17.8 MiB 0.88 1182 9006 2249 6265 492 56.4 MiB 0.14 0.00 3.66135 -134.693 -3.66135 3.66135 1.10 0.00126327 0.00115836 0.0685946 0.0629774 40 2955 30 6.99608e+06 264882 706193. 2443.58 3.12 0.357525 0.321082 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.051408 0.0463459 105 64 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 10.99 vpr 56.19 MiB 0.06 7320 -1 -1 1 0.03 -1 -1 30456 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58000 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 18.3 MiB 1.14 1281 17663 7641 9474 548 56.6 MiB 0.26 0.00 4.62587 -160.146 -4.62587 4.62587 1.11 0.00140858 0.00129033 0.135493 0.124153 48 3305 25 6.99608e+06 338461 865456. 2994.66 6.76 0.624617 0.559363 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0655247 0.0588948 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 11.57 vpr 56.24 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 17.5 MiB 3.19 1159 10762 4075 5172 1515 56.2 MiB 0.19 0.00 4.92973 -159.817 -4.92973 4.92973 1.09 0.00131395 0.00120503 0.0908716 0.0836392 44 3431 27 6.99608e+06 279598 787024. 2723.27 3.15 0.321781 0.289974 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0599656 0.0540845 117 90 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.75 vpr 56.12 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30352 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57920 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 17.9 MiB 2.16 1059 13763 5785 7510 468 56.6 MiB 0.20 0.00 3.58185 -130.714 -3.58185 3.58185 1.10 0.00125597 0.0011451 0.0909089 0.0831004 46 2920 39 6.99608e+06 294314 828058. 2865.25 4.30 0.399842 0.358923 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0559714 0.0504833 107 64 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 9.59 vpr 55.60 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.8 MiB 0.92 1271 6556 1686 3783 1087 56.5 MiB 0.11 0.00 3.81927 -146.587 -3.81927 3.81927 1.08 0.00130702 0.00120018 0.0524386 0.0482024 40 3290 49 6.99608e+06 250167 706193. 2443.58 5.70 0.388172 0.347709 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.30 0.22 0.28 -1 -1 0.30 0.06687 0.0601346 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.15 vpr 56.40 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58052 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 18.2 MiB 1.93 1530 16529 5778 8459 2292 56.7 MiB 0.28 0.00 4.81093 -174.639 -4.81093 4.81093 1.08 0.00157935 0.00144733 0.142753 0.130935 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.72 0.459862 0.414571 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.33 0.21 0.33 -1 -1 0.33 0.0772453 0.069724 139 96 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.49 vpr 55.42 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 0.87 802 9996 3771 4383 1842 55.6 MiB 0.13 0.00 3.1395 -118.304 -3.1395 3.1395 1.09 0.00102956 0.000944636 0.0674647 0.0619769 44 2051 29 6.99608e+06 191304 787024. 2723.27 4.89 0.401166 0.358123 27778 195446 -1 1628 20 1398 1706 120876 25222 3.03987 3.03987 -121.096 -3.03987 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0417615 0.0375525 75 34 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 8.61 vpr 55.93 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30316 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 17.5 MiB 0.69 1237 14606 4845 8003 1758 56.2 MiB 0.23 0.00 4.54014 -162.571 -4.54014 4.54014 1.13 0.0012797 0.00117452 0.11096 0.101883 44 3549 35 6.99608e+06 264882 787024. 2723.27 5.20 0.415929 0.374329 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0582224 0.0525379 106 64 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.22 vpr 55.81 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30712 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 17.6 MiB 1.17 1279 13077 3808 7089 2180 56.4 MiB 0.20 0.00 3.54953 -133.609 -3.54953 3.54953 1.10 0.00127799 0.00117197 0.0958621 0.0880649 46 3226 21 6.99608e+06 294314 828058. 2865.25 6.15 0.473528 0.424907 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.051663 0.0466231 108 63 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 9.38 vpr 55.78 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.82 797 9368 3826 5299 243 56.0 MiB 0.15 0.00 3.54729 -133.832 -3.54729 3.54729 1.09 0.00120343 0.0010955 0.0718829 0.0660808 46 2734 24 6.99608e+06 191304 828058. 2865.25 6.55 0.467082 0.418585 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.34 0.11 0.33 -1 -1 0.34 0.0434728 0.0391414 77 3 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 8.83 vpr 56.04 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30332 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 17.8 MiB 1.28 1139 10883 2905 7208 770 56.5 MiB 0.17 0.00 3.32994 -127.882 -3.32994 3.32994 1.09 0.0013209 0.00120489 0.084156 0.0771482 46 3143 36 6.99608e+06 279598 828058. 2865.25 6.11 0.505078 0.451281 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0513786 0.0460928 120 96 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.76 vpr 55.85 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 17.5 MiB 0.79 1139 12528 3436 7246 1846 56.2 MiB 0.09 0.00 3.59669 -136.453 -3.59669 3.59669 0.74 0.000478201 0.00043323 0.0350698 0.0317967 40 3651 35 6.99608e+06 294314 706193. 2443.58 5.81 0.341654 0.305533 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0566059 0.0510656 106 61 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 12.42 vpr 56.17 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58008 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1314 14431 4781 7561 2089 56.6 MiB 0.22 0.00 3.61639 -141.899 -3.61639 3.61639 1.09 0.00132587 0.00121602 0.110256 0.101117 40 3393 43 6.99608e+06 250167 706193. 2443.58 20.56 0.740471 0.663852 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0597878 0.0539029 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.76 vpr 55.55 MiB 0.06 6996 -1 -1 1 0.03 -1 -1 30564 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 17.5 MiB 0.97 813 11432 3614 6147 1671 56.4 MiB 0.17 0.00 3.93015 -141.517 -3.93015 3.93015 1.09 0.00124684 0.00114438 0.086312 0.0793313 48 3063 38 6.99608e+06 235451 865456. 2994.66 5.09 0.385488 0.346589 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.34 0.17 0.35 -1 -1 0.34 0.0587326 0.0529157 94 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.72 vpr 55.68 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30672 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.94 930 14500 5516 6956 2028 56.4 MiB 0.21 0.00 3.81585 -138.808 -3.81585 3.81585 1.08 0.00130401 0.00119614 0.110078 0.101014 44 3517 47 6.99608e+06 264882 787024. 2723.27 4.33 0.440197 0.395985 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.33 0.14 0.33 -1 -1 0.33 0.0575743 0.0519804 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 11.05 vpr 56.06 MiB 0.06 7296 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 18.1 MiB 1.44 1399 14035 5589 6713 1733 56.4 MiB 0.22 0.00 3.97768 -141.845 -3.97768 3.97768 1.11 0.00138125 0.00126713 0.109254 0.100099 44 3778 32 6.99608e+06 323745 787024. 2723.27 3.87 0.406637 0.364578 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0559858 0.0504197 132 122 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 10.01 vpr 56.21 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.9 MiB 1.13 1318 15273 5215 8174 1884 56.4 MiB 0.24 0.00 3.73195 -141.182 -3.73195 3.73195 1.09 0.00138991 0.00127386 0.119416 0.109421 40 3892 28 6.99608e+06 294314 706193. 2443.58 6.08 0.428633 0.385263 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.30 0.26 0.29 -1 -1 0.30 0.0798056 0.0716808 126 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.93 vpr 55.21 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30700 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 17.3 MiB 0.57 921 12528 4814 6023 1691 56.0 MiB 0.17 0.00 2.98795 -120.412 -2.98795 2.98795 1.12 0.00103956 0.000953572 0.0818745 0.0751365 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.97 0.271892 0.244388 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0467548 0.0420776 80 34 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 8.59 vpr 55.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 17.8 MiB 0.87 1095 11776 4100 5415 2261 56.4 MiB 0.17 0.00 3.80663 -140.003 -3.80663 3.80663 1.09 0.00116145 0.00106237 0.0829914 0.0760441 46 2887 24 6.99608e+06 235451 828058. 2865.25 6.47 0.461377 0.412195 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.048829 0.0439049 108 94 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.37 vpr 56.22 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30868 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 18.2 MiB 0.89 1231 15273 6501 8321 451 56.6 MiB 0.25 0.00 4.57343 -162.846 -4.57343 4.57343 1.08 0.00151537 0.00139149 0.130643 0.120088 54 3744 47 6.99608e+06 294314 949917. 3286.91 7.99 0.755733 0.678759 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.37 0.21 0.41 -1 -1 0.37 0.0764211 0.0689724 126 65 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 9.70 vpr 56.07 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.64 1100 10916 2969 6188 1759 56.4 MiB 0.17 0.00 3.58059 -138.842 -3.58059 3.58059 1.14 0.00123678 0.00113522 0.0824364 0.0757937 40 2715 36 6.99608e+06 235451 706193. 2443.58 3.60 0.371054 0.33376 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0559143 0.050395 93 34 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 9.60 vpr 55.47 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 17.5 MiB 0.75 716 11804 3687 5992 2125 55.9 MiB 0.14 0.00 3.75245 -123.293 -3.75245 3.75245 1.08 0.00100318 0.000919479 0.0655237 0.06013 44 2072 24 6.99608e+06 353176 787024. 2723.27 5.38 0.384206 0.343123 27778 195446 -1 1643 19 1404 2036 156733 34754 3.38681 3.38681 -125.581 -3.38681 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0391843 0.0352479 80 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 13.62 vpr 56.39 MiB 0.03 7460 -1 -1 1 0.04 -1 -1 30916 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58256 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 18.6 MiB 0.92 1504 15883 5797 7858 2228 56.9 MiB 0.28 0.00 5.34997 -188.353 -5.34997 5.34997 1.11 0.00162711 0.00149377 0.137737 0.126475 48 4489 33 6.99608e+06 353176 865456. 2994.66 4.57 0.519448 0.468031 28354 207349 -1 3556 27 4154 5142 574739 139988 6.44269 6.44269 -224.607 -6.44269 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0844685 0.07608 159 127 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 9.25 vpr 55.96 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30440 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.72 938 15044 6550 8115 379 56.4 MiB 0.23 0.00 4.27644 -157.663 -4.27644 4.27644 0.81 0.00125476 0.00115106 0.122022 0.111893 48 2674 27 6.99608e+06 235451 865456. 2994.66 6.58 0.555158 0.498799 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0545958 0.0492722 92 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.28 vpr 55.27 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 660 12763 5275 7138 350 55.8 MiB 0.15 0.00 2.98775 -114.509 -2.98775 2.98775 1.09 0.00100004 0.000917958 0.0681153 0.0625514 46 2129 35 6.99608e+06 353176 828058. 2865.25 18.65 0.597141 0.532343 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0468107 0.0419938 70 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.67 vpr 55.95 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58024 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 17.7 MiB 0.74 1143 13432 5563 7207 662 56.7 MiB 0.22 0.00 4.46895 -161.038 -4.46895 4.46895 1.10 0.0014555 0.00133685 0.114117 0.104925 46 4011 41 6.99608e+06 264882 828058. 2865.25 7.68 0.46624 0.419987 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0639506 0.0577985 112 34 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 8.11 vpr 55.32 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30296 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.9 MiB 0.35 625 10614 4416 5947 251 55.6 MiB 0.14 0.00 2.85145 -111.794 -2.85145 2.85145 1.13 0.00100256 0.000920622 0.0713912 0.0655599 40 2195 42 6.99608e+06 147157 706193. 2443.58 3.76 0.316194 0.283253 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.32 0.12 0.29 -1 -1 0.32 0.0447992 0.0402007 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 9.23 vpr 55.49 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30056 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 17.1 MiB 0.72 755 9857 4076 5498 283 55.6 MiB 0.13 0.00 3.30794 -118.735 -3.30794 3.30794 1.11 0.00100483 0.000921768 0.0651403 0.0598114 44 2377 21 6.99608e+06 220735 787024. 2723.27 2.97 0.281302 0.252129 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0435416 0.0390516 74 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 12.15 vpr 56.07 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30328 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57860 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 17.8 MiB 1.71 1003 15481 6003 6865 2613 56.5 MiB 0.22 0.00 3.85703 -126.704 -3.85703 3.85703 1.13 0.00124658 0.00114234 0.113877 0.104432 46 3294 37 6.99608e+06 294314 828058. 2865.25 4.86 0.415269 0.372947 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0584932 0.0525913 113 88 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.53 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 1.02 1068 14144 5407 6800 1937 56.5 MiB 0.21 0.00 4.29664 -157.784 -4.29664 4.29664 1.09 0.0013267 0.00121802 0.108824 0.099966 48 2789 28 6.99608e+06 264882 865456. 2994.66 6.66 0.552943 0.496249 28354 207349 -1 2360 21 2516 3352 291577 61875 4.53561 4.53561 -172.239 -4.53561 0 0 1.05005e+06 3633.38 0.34 0.15 0.34 -1 -1 0.34 0.0563529 0.0509667 109 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 11.99 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30600 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 0.83 1151 6846 1472 4993 381 56.5 MiB 0.12 0.00 4.30354 -157.84 -4.30354 4.30354 1.08 0.00131959 0.00121202 0.0546038 0.0502083 44 3666 26 6.99608e+06 264882 787024. 2723.27 3.23 0.283229 0.254667 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.34 0.17 0.32 -1 -1 0.34 0.0569675 0.0513519 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.03 vpr 55.67 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30524 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 17.6 MiB 0.67 792 12585 5306 6906 373 56.5 MiB 0.17 0.00 3.44424 -128.433 -3.44424 3.44424 1.08 0.00111815 0.00102471 0.0868191 0.0795222 46 2594 31 6.99608e+06 220735 828058. 2865.25 4.73 0.346702 0.310678 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.36 0.13 0.33 -1 -1 0.36 0.0501909 0.0450386 92 65 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.85 vpr 55.74 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30456 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 17.5 MiB 2.35 885 11260 4668 6241 351 56.3 MiB 0.15 0.00 3.46644 -123.995 -3.46644 3.46644 1.09 0.00111357 0.00101939 0.0763824 0.0699881 44 3163 36 6.99608e+06 250167 787024. 2723.27 19.18 0.582993 0.519382 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.34 0.12 0.32 -1 -1 0.34 0.0452512 0.0406548 102 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.96 vpr 55.78 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 17.6 MiB 1.22 904 12506 5230 6653 623 56.6 MiB 0.19 0.00 3.42074 -117.96 -3.42074 3.42074 1.08 0.00121419 0.00111346 0.100462 0.092175 44 3198 37 6.99608e+06 279598 787024. 2723.27 4.39 0.389974 0.350521 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0527695 0.047621 101 60 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.13 vpr 55.68 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 17.2 MiB 0.67 824 9872 4064 5274 534 55.8 MiB 0.15 0.00 3.73195 -121.956 -3.73195 3.73195 1.08 0.0011094 0.00101838 0.076309 0.0701894 44 2539 27 6.99608e+06 264882 787024. 2723.27 6.18 0.503467 0.450379 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0518272 0.0465847 87 34 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 9.61 vpr 55.75 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 17.3 MiB 1.77 814 10672 3702 5165 1805 55.8 MiB 0.14 0.00 4.51934 -148.35 -4.51934 4.51934 1.09 0.00106162 0.000972754 0.0726021 0.066594 44 2874 44 6.99608e+06 220735 787024. 2723.27 4.09 0.338652 0.302641 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.044399 0.0398231 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 10.34 vpr 56.03 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1000 12585 4720 5647 2218 56.5 MiB 0.18 0.00 3.77345 -134.122 -3.77345 3.77345 1.08 0.00114121 0.00104451 0.0885777 0.0810978 46 3110 45 6.99608e+06 220735 828058. 2865.25 4.48 0.373038 0.333892 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0497567 0.0446605 104 91 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.86 vpr 55.84 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.6 MiB 0.18 808 15688 5217 8110 2361 56.2 MiB 0.21 0.00 3.76925 -134.079 -3.76925 3.76925 1.12 0.00116532 0.00107085 0.0965693 0.0887259 46 3039 46 6.99608e+06 367892 828058. 2865.25 6.02 0.40061 0.360064 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.29 0.07 0.17 -1 -1 0.29 0.0212761 0.0190044 86 4 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.46 vpr 56.08 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30728 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57972 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 17.8 MiB 0.69 1209 11281 3120 7720 441 56.6 MiB 0.18 0.00 4.19534 -154.628 -4.19534 4.19534 1.09 0.00131433 0.00120653 0.0884265 0.0811596 44 3513 23 6.99608e+06 250167 787024. 2723.27 3.90 0.353964 0.318661 27778 195446 -1 2754 24 2419 3189 274672 55034 4.82351 4.82351 -173.98 -4.82351 0 0 997811. 3452.63 0.34 0.16 0.32 -1 -1 0.34 0.0613436 0.0553035 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 12.90 vpr 56.00 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 17.8 MiB 0.65 1142 12364 5175 6807 382 56.7 MiB 0.19 0.00 5.12678 -171.348 -5.12678 5.12678 1.10 0.00131725 0.00120362 0.0950269 0.0871336 54 3283 29 6.99608e+06 264882 949917. 3286.91 5.41 0.473326 0.424988 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.38 0.15 0.42 -1 -1 0.38 0.0539089 0.0487243 108 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.81 vpr 56.07 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 17.8 MiB 0.68 1089 13788 4649 7550 1589 56.6 MiB 0.22 0.00 4.15408 -148.064 -4.15408 4.15408 1.11 0.00129245 0.00118469 0.104224 0.0955964 44 3953 47 6.99608e+06 264882 787024. 2723.27 30.00 0.71597 0.640939 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0545575 0.049231 107 65 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.42 vpr 55.51 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 17.3 MiB 0.77 692 12241 5462 6300 479 55.8 MiB 0.15 0.00 3.58339 -124.571 -3.58339 3.58339 1.09 0.00101181 0.000928751 0.0811137 0.0744342 48 2391 37 6.99608e+06 191304 865456. 2994.66 6.51 0.444323 0.396368 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.39 0.12 0.34 -1 -1 0.39 0.0405935 0.0364534 76 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.94 vpr 55.98 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 17.7 MiB 2.28 1070 13152 5486 7187 479 56.4 MiB 0.20 0.00 4.68713 -157.481 -4.68713 4.68713 1.11 0.00124908 0.00114657 0.0994205 0.0912977 46 3476 35 6.99608e+06 264882 828058. 2865.25 4.68 0.396501 0.356379 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0504418 0.0455439 105 63 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 10.06 vpr 55.89 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30916 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57876 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1372 11615 4190 5568 1857 56.5 MiB 0.18 0.00 4.17744 -155.5 -4.17744 4.17744 1.10 0.00143088 0.00131256 0.0915556 0.0839811 46 3391 25 6.99608e+06 323745 828058. 2865.25 4.33 0.406355 0.364614 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.33 0.14 0.36 -1 -1 0.33 0.0665943 0.0598407 139 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 12.96 vpr 55.93 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 17.7 MiB 1.44 1101 12733 5285 6817 631 56.3 MiB 0.18 0.00 4.35899 -150.667 -4.35899 4.35899 1.10 0.00132659 0.00121539 0.0948747 0.0869667 54 2946 36 6.99608e+06 323745 949917. 3286.91 7.38 0.637945 0.571876 29506 232905 -1 2087 21 2106 2410 180381 43349 4.43961 4.43961 -155.342 -4.43961 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0560547 0.0505797 125 94 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 12.87 vpr 56.23 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 17.8 MiB 2.64 1072 15456 6595 7994 867 56.5 MiB 0.22 0.00 4.1343 -135.415 -4.1343 4.1343 1.09 0.00126838 0.00116219 0.111079 0.101794 48 3698 50 6.99608e+06 323745 865456. 2994.66 7.07 0.447566 0.401982 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.37 0.19 0.34 -1 -1 0.37 0.0559297 0.0503455 114 92 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.22 vpr 55.96 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30624 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.8 MiB 1.02 1174 14500 5592 7226 1682 56.5 MiB 0.22 0.00 4.33244 -160.384 -4.33244 4.33244 1.10 0.00133302 0.00122438 0.111233 0.102043 46 3851 34 6.99608e+06 264882 828058. 2865.25 3.39 0.363667 0.327685 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.35 0.18 0.33 -1 -1 0.35 0.0576232 0.0520209 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.64 vpr 56.28 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30360 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57940 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 17.8 MiB 1.69 1070 11106 4662 5983 461 56.6 MiB 0.17 0.00 3.53179 -119.754 -3.53179 3.53179 1.09 0.00122326 0.00112113 0.0816893 0.0749196 38 3405 45 6.99608e+06 294314 678818. 2348.85 8.11 0.39088 0.350384 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.31 0.16 0.27 -1 -1 0.31 0.0561256 0.0505238 112 88 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.77 vpr 55.43 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 17.0 MiB 0.64 592 9684 3186 4658 1840 55.6 MiB 0.12 0.00 2.86245 -110.719 -2.86245 2.86245 1.08 0.00100016 0.000917325 0.0650541 0.0597612 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.80 0.288409 0.258378 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0450758 0.0404158 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 10.75 vpr 56.19 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.69 999 9872 3990 5501 381 56.5 MiB 0.15 0.00 4.9054 -173.166 -4.9054 4.9054 1.09 0.00131522 0.00120579 0.0767015 0.0704061 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 3.55 0.356097 0.319714 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.42 0.15 0.46 -1 -1 0.42 0.0622881 0.0561889 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 11.85 vpr 56.06 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 17.6 MiB 0.90 1203 7431 1958 4126 1347 56.4 MiB 0.12 0.00 4.63877 -167.295 -4.63877 4.63877 1.09 0.00131692 0.00120715 0.059911 0.0550389 44 3706 30 6.99608e+06 250167 787024. 2723.27 3.70 0.31488 0.283153 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.34 0.17 0.25 -1 -1 0.34 0.0600825 0.0541473 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.44 vpr 55.61 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 17.4 MiB 1.92 766 11324 4293 5664 1367 55.9 MiB 0.15 0.00 3.24452 -112.954 -3.24452 3.24452 1.09 0.00104213 0.000955185 0.0759857 0.0697207 52 2311 46 6.99608e+06 191304 926341. 3205.33 3.14 0.294294 0.263557 29218 227130 -1 1681 29 1656 1972 307039 128679 3.27646 3.27646 -116.799 -3.27646 0 0 1.14541e+06 3963.36 0.40 0.18 0.35 -1 -1 0.40 0.0562104 0.0502841 85 55 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.33 vpr 55.43 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30380 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 0.27 592 7514 3020 4270 224 55.4 MiB 0.10 0.00 3.0031 -111.146 -3.0031 3.0031 1.09 0.000972276 0.000891852 0.0502228 0.0461683 44 2109 28 6.99608e+06 161872 787024. 2723.27 5.59 0.380504 0.338464 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0440716 0.0395247 63 4 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.97 vpr 55.77 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 17.5 MiB 0.92 1014 12331 5131 6918 282 56.3 MiB 0.17 0.00 4.03648 -138.539 -4.03648 4.03648 1.09 0.00124537 0.00114292 0.0910826 0.0835815 40 2840 45 6.99608e+06 250167 706193. 2443.58 16.30 0.670272 0.599559 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.30 0.23 0.29 -1 -1 0.30 0.0728882 0.0655127 102 59 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 10.26 vpr 56.09 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 17.5 MiB 1.35 1077 13043 5447 7262 334 56.3 MiB 0.19 0.00 4.38874 -150.527 -4.38874 4.38874 1.08 0.00128167 0.00117433 0.096665 0.0885951 48 2878 41 6.99608e+06 279598 865456. 2994.66 3.85 0.411309 0.368999 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.39 0.22 0.36 -1 -1 0.39 0.0733195 0.0658584 115 88 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.71 vpr 55.93 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30520 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57712 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.7 MiB 0.41 981 8047 1739 5489 819 56.4 MiB 0.13 0.00 4.28063 -149.977 -4.28063 4.28063 1.09 0.00136992 0.00125958 0.057814 0.0531722 48 3128 28 6.99608e+06 397324 865456. 2994.66 6.93 0.523267 0.470595 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.36 0.18 0.34 -1 -1 0.36 0.0600127 0.0539861 100 3 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.43 vpr 55.66 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 17.6 MiB 0.98 884 14431 6074 7798 559 56.5 MiB 0.20 0.00 3.66815 -119.86 -3.66815 3.66815 1.09 0.00120224 0.00110295 0.102723 0.094263 40 3422 29 6.99608e+06 279598 706193. 2443.58 19.39 0.675763 0.604857 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0529506 0.0477304 101 59 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 8.93 vpr 55.25 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30596 -1 -1 16 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 17.0 MiB 1.25 589 11925 5033 6263 629 55.6 MiB 0.15 0.00 3.68305 -110.555 -3.68305 3.68305 1.09 0.000895784 0.000827925 0.0753146 0.0689761 40 1692 28 6.99608e+06 235451 706193. 2443.58 5.49 0.387982 0.345639 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0354722 0.0317432 67 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 13.92 vpr 56.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 18.1 MiB 0.85 1512 15151 5383 7381 2387 56.6 MiB 0.27 0.00 4.46404 -157.207 -4.46404 4.46404 1.09 0.00156463 0.0014367 0.132123 0.121326 54 3932 27 6.99608e+06 309029 949917. 3286.91 4.53 0.480224 0.432708 29506 232905 -1 3228 23 2653 3708 434053 80854 4.60891 4.60891 -163.196 -4.60891 0 0 1.17392e+06 4061.99 0.37 0.20 0.39 -1 -1 0.37 0.0705774 0.0636551 141 95 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 11.72 vpr 56.09 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 17.8 MiB 2.49 1389 9013 2681 4820 1512 56.3 MiB 0.15 0.00 4.97674 -167.764 -4.97674 4.97674 1.11 0.00139692 0.00128051 0.073319 0.0673562 42 3808 25 6.99608e+06 323745 744469. 2576.02 22.70 0.702382 0.626776 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.32 0.17 0.30 -1 -1 0.32 0.0617448 0.0556171 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.98 vpr 55.81 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 17.3 MiB 2.78 1031 11233 4729 6294 210 56.1 MiB 0.16 0.00 3.87693 -140.03 -3.87693 3.87693 1.08 0.0011251 0.00103005 0.0784349 0.0718619 46 3029 25 6.99608e+06 220735 828058. 2865.25 3.68 0.322219 0.288467 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0474342 0.042602 102 89 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.85 vpr 55.77 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 0.95 1034 14184 5996 7912 276 56.2 MiB 0.20 0.00 3.78975 -136.67 -3.78975 3.78975 1.09 0.00123141 0.0011307 0.10432 0.0958127 46 3037 39 6.99608e+06 235451 828058. 2865.25 6.50 0.540444 0.484988 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0551747 0.0497356 92 34 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.65 vpr 56.35 MiB 0.05 7216 -1 -1 1 0.04 -1 -1 30664 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 17.7 MiB 1.56 1068 13943 4857 7191 1895 56.6 MiB 0.22 0.00 3.9689 -135.877 -3.9689 3.9689 1.11 0.00145629 0.00133459 0.115502 0.106086 44 3217 23 6.99608e+06 294314 787024. 2723.27 5.72 0.477594 0.428077 27778 195446 -1 2448 21 2374 3214 252324 52621 3.92082 3.92082 -146.029 -3.92082 0 0 997811. 3452.63 0.34 0.08 0.32 -1 -1 0.34 0.0316143 0.0283813 117 64 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 9.07 vpr 55.92 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30436 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 17.6 MiB 1.12 1088 13788 5313 5928 2547 56.5 MiB 0.19 0.00 3.56069 -123.887 -3.56069 3.56069 1.09 0.00120931 0.00110905 0.0968444 0.0888445 36 3765 43 6.99608e+06 294314 648988. 2245.63 10.33 0.397195 0.356311 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.28 0.17 0.25 -1 -1 0.28 0.0568075 0.0511266 101 61 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.86 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30664 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1034 13906 5203 6656 2047 56.3 MiB 0.22 0.00 4.17744 -150.809 -4.17744 4.17744 1.10 0.00131173 0.0012033 0.108543 0.0996265 46 3490 34 6.99608e+06 250167 828058. 2865.25 6.53 0.42099 0.378431 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0532231 0.048072 107 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 12.68 vpr 56.23 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 17.7 MiB 0.78 1295 11830 3708 6867 1255 56.6 MiB 0.19 0.00 3.61179 -138.351 -3.61179 3.61179 1.09 0.00131497 0.00119858 0.0908284 0.0829396 44 3300 26 6.99608e+06 264882 787024. 2723.27 3.75 0.382391 0.343675 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0534193 0.0482926 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.71 vpr 55.50 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 17.0 MiB 1.10 714 7817 3113 4376 328 55.7 MiB 0.10 0.00 3.29694 -113.946 -3.29694 3.29694 1.08 0.000974812 0.000894743 0.0508927 0.0467315 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.19 0.237151 0.212087 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0410487 0.0368481 73 34 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.56 vpr 55.88 MiB 0.06 6944 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 17.4 MiB 2.38 796 13192 4518 6301 2373 56.1 MiB 0.17 0.00 3.75163 -124.237 -3.75163 3.75163 1.09 0.00106486 0.000974075 0.088051 0.0806093 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.96 0.298667 0.267226 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0491895 0.0441805 91 82 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 9.61 vpr 55.55 MiB 0.06 6956 -1 -1 1 0.04 -1 -1 30476 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 17.4 MiB 0.63 1104 8164 1792 5984 388 56.3 MiB 0.13 0.00 3.79614 -138.31 -3.79614 3.79614 1.13 0.00126084 0.00116182 0.0634551 0.0585239 38 3147 50 6.99608e+06 250167 678818. 2348.85 5.53 0.367907 0.330352 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.30 0.14 0.27 -1 -1 0.30 0.0572325 0.0515628 92 34 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 8.08 vpr 55.55 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 17.1 MiB 1.54 924 11813 4851 6237 725 55.7 MiB 0.15 0.00 3.23604 -112.025 -3.23604 3.23604 1.14 0.000969957 0.000887119 0.0732954 0.0671676 38 2436 26 6.99608e+06 235451 678818. 2348.85 3.79 0.273534 0.244306 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0458066 0.0409725 81 56 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 8.78 vpr 55.50 MiB 0.05 6832 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 17.4 MiB 0.71 800 12628 5339 6973 316 56.0 MiB 0.16 0.00 3.56959 -131.903 -3.56959 3.56959 1.08 0.00106811 0.000980425 0.0856997 0.0786217 44 2487 30 6.99608e+06 191304 787024. 2723.27 3.48 0.323283 0.289865 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0374563 0.033755 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 8.65 vpr 55.95 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30580 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57948 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 17.6 MiB 1.20 964 11296 3574 5293 2429 56.6 MiB 0.17 0.00 4.06828 -143.162 -4.06828 4.06828 1.09 0.00126817 0.00116073 0.0840498 0.0770325 40 3214 32 6.99608e+06 279598 706193. 2443.58 4.83 0.372558 0.334568 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.055115 0.0497059 105 64 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.68 vpr 55.47 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30448 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 2.24 694 11756 4613 5996 1147 55.7 MiB 0.15 0.00 3.23724 -109.795 -3.23724 3.23724 1.11 0.00102562 0.000939892 0.0782487 0.0716974 48 2270 42 6.99608e+06 191304 865456. 2994.66 4.09 0.330206 0.29531 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0421999 0.0378294 81 55 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.12 vpr 56.08 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 17.7 MiB 1.53 911 15034 6476 7971 587 56.6 MiB 0.20 0.00 3.61105 -126.923 -3.61105 3.61105 1.08 0.0012541 0.00115098 0.108868 0.0999116 52 2649 36 6.99608e+06 264882 926341. 3205.33 19.31 0.662975 0.593472 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.37 0.13 0.39 -1 -1 0.37 0.0530494 0.0478806 103 65 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 12.63 vpr 56.36 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 17.9 MiB 0.89 1135 16081 6006 7648 2427 56.4 MiB 0.12 0.00 4.67827 -157.924 -4.67827 4.67827 1.09 0.000504862 0.000457017 0.0462976 0.0419877 44 3513 45 6.99608e+06 323745 787024. 2723.27 4.33 0.345067 0.308621 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.33 0.14 0.35 -1 -1 0.33 0.0568765 0.0517319 123 93 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 11.01 vpr 55.96 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 17.5 MiB 2.45 1185 10050 2506 6241 1303 56.3 MiB 0.13 0.00 3.59004 -135.268 -3.59004 3.59004 1.09 0.00108283 0.000992064 0.067544 0.0619543 38 3007 50 6.99608e+06 220735 678818. 2348.85 16.21 0.531274 0.473341 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0438396 0.0394054 88 61 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.84 vpr 55.55 MiB 0.06 6864 -1 -1 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 17.5 MiB 0.72 844 13856 5698 7170 988 56.0 MiB 0.18 0.00 3.30794 -123.058 -3.30794 3.30794 1.08 0.00110124 0.00100834 0.0952684 0.087315 46 2571 29 6.99608e+06 206020 828058. 2865.25 6.34 0.447426 0.400056 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.049885 0.044756 91 63 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.42 vpr 55.48 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30720 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1239 11118 3579 5407 2132 56.4 MiB 0.17 0.00 3.81515 -143.501 -3.81515 3.81515 1.11 0.00130439 0.00119748 0.0853355 0.0783935 46 2851 29 6.99608e+06 264882 828058. 2865.25 6.24 0.550503 0.493564 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0566725 0.0511179 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.85 vpr 55.98 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 17.4 MiB 1.52 913 9160 3758 4976 426 56.4 MiB 0.14 0.00 3.41124 -117.262 -3.41124 3.41124 1.09 0.00119741 0.00109744 0.0655974 0.0602333 38 3163 50 6.99608e+06 309029 678818. 2348.85 6.72 0.380948 0.341376 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0520233 0.0467929 101 62 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 13.15 vpr 56.34 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57980 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.2 MiB 0.78 1399 13316 4006 7788 1522 56.6 MiB 0.22 0.00 4.54237 -164.626 -4.54237 4.54237 1.09 0.00144941 0.0013279 0.106215 0.0973627 38 4423 46 6.99608e+06 323745 678818. 2348.85 4.02 0.419894 0.376876 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0626403 0.0564506 140 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.64 vpr 55.46 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 17.1 MiB 0.89 486 10149 3821 5138 1190 55.6 MiB 0.12 0.00 2.81885 -95.7056 -2.81885 2.81885 1.09 0.000921198 0.000844854 0.0636403 0.0584464 48 1604 38 6.99608e+06 161872 865456. 2994.66 12.73 0.483724 0.429932 28354 207349 -1 1346 20 1093 1651 144110 34639 3.02157 3.02157 -111.693 -3.02157 0 0 1.05005e+06 3633.38 0.36 0.09 0.34 -1 -1 0.36 0.0372911 0.0334475 57 4 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 10.08 vpr 56.43 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 17.7 MiB 2.59 1299 14303 5218 6688 2397 56.2 MiB 0.21 0.00 4.76923 -166.635 -4.76923 4.76923 1.11 0.0013275 0.00121754 0.109685 0.100627 46 3535 24 6.99608e+06 279598 828058. 2865.25 6.32 0.569835 0.511168 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0538762 0.0486808 118 92 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 10.74 vpr 56.22 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1244 15216 5143 8703 1370 56.6 MiB 0.24 0.00 4.66407 -173.875 -4.66407 4.66407 1.11 0.00119444 0.00109347 0.117626 0.107891 44 3377 41 6.99608e+06 235451 787024. 2723.27 3.47 0.34527 0.310512 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0536323 0.0481815 110 96 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 10.02 vpr 55.92 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57924 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 17.8 MiB 0.81 1129 13403 5326 6238 1839 56.6 MiB 0.20 0.00 3.33684 -128.417 -3.33684 3.33684 1.10 0.00130031 0.0011926 0.100638 0.0923657 38 3758 46 6.99608e+06 279598 678818. 2348.85 19.47 0.722978 0.647976 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.30 0.27 0.28 -1 -1 0.30 0.0822478 0.0738117 106 65 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 11.51 vpr 56.23 MiB 0.05 7272 -1 -1 1 0.04 -1 -1 30780 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 18.1 MiB 0.73 1500 14261 4373 7976 1912 56.6 MiB 0.23 0.00 4.89654 -177.942 -4.89654 4.89654 1.09 0.00157061 0.00144169 0.123023 0.112988 44 4144 38 6.99608e+06 323745 787024. 2723.27 6.14 0.688876 0.618846 27778 195446 -1 3101 23 2911 3336 281290 56419 5.48635 5.48635 -193.082 -5.48635 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0718545 0.0648849 140 96 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.73 vpr 55.17 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30120 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 16.9 MiB 1.95 577 8449 3482 4728 239 55.5 MiB 0.09 0.00 2.75275 -95.2487 -2.75275 2.75275 1.08 0.000820825 0.000750605 0.0459407 0.0420302 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.45 0.224324 0.198957 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.29 0.08 0.25 -1 -1 0.29 0.034375 0.0306165 65 56 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.42 vpr 55.72 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 17.0 MiB 2.87 870 9516 3877 5353 286 55.8 MiB 0.12 0.00 3.41559 -121.499 -3.41559 3.41559 1.09 0.00101691 0.000932178 0.0649211 0.0596276 34 2262 25 6.99608e+06 206020 618332. 2139.56 3.04 0.284882 0.254656 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0355179 0.0319476 72 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 8.79 vpr 55.56 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 0.30 764 10316 3722 4683 1911 55.8 MiB 0.15 0.00 3.37904 -128.379 -3.37904 3.37904 1.10 0.00107167 0.000982807 0.0745767 0.0683008 44 3301 35 6.99608e+06 176588 787024. 2723.27 4.92 0.327754 0.293414 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0476313 0.0427693 80 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 8.28 vpr 55.16 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 16.8 MiB 0.68 497 10819 4307 4933 1579 55.4 MiB 0.12 0.00 3.31386 -89.9377 -3.31386 3.31386 1.09 0.000861816 0.000790982 0.061479 0.0564812 38 1712 31 6.99608e+06 264882 678818. 2348.85 5.06 0.339258 0.301953 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0377031 0.0337203 68 34 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.56 vpr 56.21 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.7 MiB 0.99 1423 14358 4574 7658 2126 56.3 MiB 0.22 0.00 3.77875 -143.667 -3.77875 3.77875 1.09 0.0013508 0.00123873 0.110126 0.101021 46 3969 25 6.99608e+06 294314 828058. 2865.25 4.90 0.413955 0.371989 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.34 0.17 0.33 -1 -1 0.34 0.056049 0.0505443 125 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 10.88 vpr 56.50 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 17.8 MiB 0.94 1182 13663 4698 6384 2581 56.6 MiB 0.21 0.00 4.16978 -143.827 -4.16978 4.16978 1.08 0.00132256 0.00121189 0.10241 0.0939363 40 3516 38 6.99608e+06 323745 706193. 2443.58 4.41 0.421469 0.379033 26914 176310 -1 2935 22 2946 3843 357357 76076 4.3072 4.3072 -160.219 -4.3072 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0584809 0.0527307 121 94 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 13.53 vpr 55.61 MiB 0.05 6824 -1 -1 14 0.26 -1 -1 32880 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1265 9263 2276 5364 1623 55.8 MiB 0.16 0.00 8.4853 -170.751 -8.4853 8.4853 1.06 0.00159218 0.00144876 0.0885916 0.0810983 44 3187 47 6.79088e+06 255968 787024. 2723.27 3.97 0.427778 0.38536 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.33 0.24 0.32 -1 -1 0.33 0.0869215 0.0785367 134 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 11.39 vpr 55.69 MiB 0.05 6800 -1 -1 14 0.28 -1 -1 32744 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1228 8270 2008 5297 965 55.7 MiB 0.14 0.00 7.98833 -161.421 -7.98833 7.98833 1.09 0.00156715 0.00143783 0.0779809 0.0715855 38 3303 16 6.79088e+06 269440 678818. 2348.85 4.78 0.40701 0.366143 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.054866 0.0498565 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 13.40 vpr 55.68 MiB 0.05 6876 -1 -1 11 0.21 -1 -1 32760 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1125 11613 3520 5862 2231 55.9 MiB 0.19 0.00 7.03202 -141.666 -7.03202 7.03202 1.08 0.00155124 0.00142139 0.103011 0.0944246 38 3591 44 6.79088e+06 269440 678818. 2348.85 7.33 0.502122 0.451545 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0493531 0.044854 138 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 10.60 vpr 55.38 MiB 0.02 6704 -1 -1 12 0.33 -1 -1 32784 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 17.2 MiB 1.39 1021 7643 1879 4700 1064 55.8 MiB 0.12 0.00 7.24011 -138.658 -7.24011 7.24011 1.12 0.00107108 0.000965395 0.0556292 0.0505647 38 2805 20 6.79088e+06 296384 678818. 2348.85 5.51 0.568335 0.508986 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0572676 0.0519541 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 9.51 vpr 55.77 MiB 0.05 6656 -1 -1 13 0.31 -1 -1 33072 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 17.3 MiB 2.02 1463 12568 3276 7023 2269 55.9 MiB 0.22 0.00 8.02445 -169.708 -8.02445 8.02445 1.09 0.00182868 0.00167632 0.12334 0.113098 46 3660 20 6.79088e+06 323328 828058. 2865.25 5.80 0.696166 0.627516 27406 200422 -1 2903 15 1384 3728 182895 41588 7.21431 7.21431 -161.115 -7.21431 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0604389 0.0550799 160 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 11.02 vpr 55.64 MiB 0.06 6672 -1 -1 12 0.27 -1 -1 32736 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 17.4 MiB 2.23 1344 4768 918 3685 165 56.0 MiB 0.09 0.00 7.61832 -163.245 -7.61832 7.61832 1.08 0.0016823 0.00154207 0.0464961 0.0427257 44 3529 23 6.79088e+06 323328 787024. 2723.27 3.41 0.314195 0.282714 27118 194962 -1 2985 17 1359 4066 236003 51425 6.72076 6.72076 -157.449 -6.72076 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0613868 0.0557602 150 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 9.09 vpr 55.06 MiB 0.05 6552 -1 -1 12 0.18 -1 -1 32292 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 16.6 MiB 1.37 1000 7177 1656 4753 768 55.2 MiB 0.10 0.00 7.28149 -137.47 -7.28149 7.28149 1.13 0.0011978 0.0010983 0.0546217 0.0501608 36 2895 37 6.79088e+06 269440 648988. 2245.63 2.73 0.272468 0.245207 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0428948 0.0388204 101 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 9.79 vpr 55.39 MiB 0.04 6792 -1 -1 11 0.18 -1 -1 32856 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 1.39 1129 9531 2421 6090 1020 55.5 MiB 0.15 0.00 6.82017 -140.384 -6.82017 6.82017 1.09 0.00147135 0.00133821 0.084373 0.0771799 38 3033 23 6.79088e+06 242496 678818. 2348.85 6.04 0.565103 0.506614 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0509133 0.0461715 118 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 11.06 vpr 55.22 MiB 0.05 6704 -1 -1 12 0.17 -1 -1 32652 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 2.34 1115 11631 3187 7135 1309 55.5 MiB 0.16 0.00 6.73244 -139.285 -6.73244 6.73244 1.09 0.00128831 0.00117934 0.089563 0.0820481 36 2986 40 6.79088e+06 242496 648988. 2245.63 5.47 0.411578 0.369725 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0449253 0.0407504 111 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 11.37 vpr 55.32 MiB 0.04 6536 -1 -1 13 0.19 -1 -1 32816 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1011 5412 1090 4064 258 55.4 MiB 0.09 0.00 7.30367 -163.797 -7.30367 7.30367 1.16 0.00139971 0.00128367 0.0483172 0.0443574 34 3575 46 6.79088e+06 215552 618332. 2139.56 14.26 0.590801 0.528122 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.050573 0.0457909 107 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 7.29 vpr 55.21 MiB 0.04 6680 -1 -1 12 0.17 -1 -1 32780 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 16.7 MiB 1.35 838 6386 1352 4871 163 55.3 MiB 0.09 0.00 7.31171 -145.298 -7.31171 7.31171 1.11 0.00119109 0.00109041 0.0492951 0.045177 38 2306 22 6.79088e+06 215552 678818. 2348.85 5.12 0.372214 0.333394 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0376856 0.0341939 93 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 11.76 vpr 55.24 MiB 0.06 6784 -1 -1 12 0.14 -1 -1 32864 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 16.6 MiB 1.81 1055 4560 1014 3240 306 55.2 MiB 0.08 0.00 6.46989 -155.558 -6.46989 6.46989 1.09 0.00121383 0.00111103 0.0368792 0.0337846 40 2500 20 6.79088e+06 188608 706193. 2443.58 15.26 0.539308 0.481678 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0461453 0.0417325 94 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 9.02 vpr 55.52 MiB 0.05 6760 -1 -1 13 0.26 -1 -1 32896 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 17.2 MiB 1.44 1239 11431 3102 6258 2071 55.7 MiB 0.20 0.00 7.91359 -165.523 -7.91359 7.91359 1.08 0.0017309 0.00158605 0.112432 0.103108 36 3864 39 6.79088e+06 282912 648988. 2245.63 24.13 0.791113 0.710257 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0720657 0.0653878 148 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 11.24 vpr 55.70 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33088 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1366 11245 3016 6173 2056 55.9 MiB 0.20 0.00 9.12295 -182.881 -9.12295 9.12295 1.08 0.00173002 0.00158414 0.1101 0.100858 40 3379 26 6.79088e+06 282912 706193. 2443.58 3.64 0.497332 0.448111 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.30 0.27 0.28 -1 -1 0.30 0.0906031 0.0819358 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 10.94 vpr 55.35 MiB 0.05 6596 -1 -1 11 0.17 -1 -1 32556 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 16.8 MiB 1.42 857 12681 3929 6469 2283 55.5 MiB 0.17 0.00 6.92892 -133.02 -6.92892 6.92892 1.09 0.00128857 0.00117927 0.0973478 0.0891997 44 2366 27 6.79088e+06 269440 787024. 2723.27 2.63 0.318867 0.287235 27118 194962 -1 1895 17 1033 2535 134756 31487 5.95428 5.95428 -123.689 -5.95428 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0468221 0.0424391 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 10.52 vpr 55.70 MiB 0.05 6764 -1 -1 12 0.27 -1 -1 32876 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 17.4 MiB 2.36 1420 13992 4103 7703 2186 56.2 MiB 0.25 0.00 7.6046 -160.271 -7.6046 7.6046 1.10 0.00174978 0.00160541 0.139625 0.127973 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.62 0.458507 0.413407 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0792836 0.0717498 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 13.10 vpr 55.60 MiB 0.04 6768 -1 -1 13 0.26 -1 -1 32684 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 17.5 MiB 1.47 1236 10687 3174 5565 1948 56.2 MiB 0.19 0.00 8.28661 -168.45 -8.28661 8.28661 1.09 0.00170522 0.00155667 0.106552 0.0976191 44 3216 47 6.79088e+06 282912 787024. 2723.27 6.52 0.76384 0.686402 27118 194962 -1 2637 18 1231 3745 198363 45004 7.17085 7.17085 -157.888 -7.17085 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.082128 0.0745819 144 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 10.66 vpr 55.25 MiB 0.04 6580 -1 -1 12 0.15 -1 -1 32504 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 945 7992 1779 4650 1563 55.3 MiB 0.12 0.00 6.70943 -154.61 -6.70943 6.70943 1.09 0.00128287 0.0011735 0.0635709 0.0582129 36 2644 29 6.79088e+06 215552 648988. 2245.63 3.16 0.359209 0.32278 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0409593 0.03724 104 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 8.09 vpr 54.79 MiB 0.04 6432 -1 -1 10 0.10 -1 -1 32088 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 16.4 MiB 2.45 878 7049 1926 4350 773 54.8 MiB 0.09 0.00 5.18321 -124.627 -5.18321 5.18321 1.09 0.000923085 0.000845274 0.0447416 0.0409876 38 2075 46 6.79088e+06 161664 678818. 2348.85 5.79 0.393047 0.349446 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0299975 0.0270007 67 88 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 9.83 vpr 55.04 MiB 0.05 6644 -1 -1 13 0.16 -1 -1 32708 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 17.0 MiB 1.82 974 6332 1469 4570 293 55.5 MiB 0.10 0.00 7.59608 -163.359 -7.59608 7.59608 1.09 0.00125023 0.00114428 0.0518902 0.0475006 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.93 0.313184 0.281007 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0416725 0.0377831 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 16.57 vpr 55.68 MiB 0.05 6740 -1 -1 13 0.28 -1 -1 32752 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 17.4 MiB 1.17 1254 12371 3408 7445 1518 55.8 MiB 0.20 0.00 7.46133 -157.73 -7.46133 7.46133 1.10 0.00170288 0.00156167 0.115983 0.106197 38 3224 45 6.79088e+06 296384 678818. 2348.85 18.44 0.828961 0.744701 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0645444 0.058576 143 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 13.19 vpr 55.84 MiB 0.05 6828 -1 -1 13 0.29 -1 -1 33176 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 17.2 MiB 1.88 1425 10883 2960 6054 1869 56.0 MiB 0.18 0.00 8.13867 -171.504 -8.13867 8.13867 1.13 0.00167609 0.00153539 0.103648 0.0951004 44 3504 27 6.79088e+06 255968 787024. 2723.27 6.70 0.64191 0.577516 27118 194962 -1 2782 17 1335 3719 207746 45749 7.06211 7.06211 -160.813 -7.06211 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0677973 0.0614807 141 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 7.05 vpr 54.76 MiB 0.04 6492 -1 -1 9 0.09 -1 -1 32140 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 16.1 MiB 1.51 588 10149 2859 5591 1699 54.7 MiB 0.10 0.00 4.97273 -93.6629 -4.97273 4.97273 1.09 0.000788594 0.000722745 0.0544685 0.0499623 30 1736 26 6.79088e+06 215552 556674. 1926.21 1.30 0.153057 0.13716 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0267761 0.0239965 64 73 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 10.53 vpr 55.59 MiB 0.04 6704 -1 -1 13 0.30 -1 -1 32696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 17.2 MiB 2.10 1289 7268 1575 5261 432 55.9 MiB 0.13 0.00 8.3813 -168.316 -8.3813 8.3813 1.08 0.00169311 0.00155139 0.070197 0.0643322 38 3745 37 6.79088e+06 296384 678818. 2348.85 4.27 0.350962 0.314607 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.30 0.15 0.27 -1 -1 0.30 0.0758249 0.0686973 137 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 7.93 vpr 54.60 MiB 0.04 6396 -1 -1 8 0.09 -1 -1 31068 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 16.1 MiB 2.32 737 11631 4246 5219 2166 54.7 MiB 0.11 0.00 4.77835 -104.906 -4.77835 4.77835 1.08 0.000800262 0.000731575 0.0554518 0.0507218 30 1930 29 6.79088e+06 229024 556674. 1926.21 1.45 0.165342 0.147786 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0299797 0.0268311 64 61 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 16.57 vpr 55.48 MiB 0.04 6708 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1155 10581 3115 6097 1369 55.6 MiB 0.17 0.00 8.86251 -178.17 -8.86251 8.86251 0.88 0.00144752 0.00132843 0.092117 0.0845073 46 2717 18 6.79088e+06 229024 828058. 2865.25 5.86 0.472451 0.424685 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0479807 0.0435638 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 14.60 vpr 55.56 MiB 0.05 6740 -1 -1 12 0.25 -1 -1 32884 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 17.4 MiB 1.55 1241 4433 817 3477 139 56.2 MiB 0.09 0.00 7.21583 -155.808 -7.21583 7.21583 1.10 0.00172501 0.00158005 0.0465585 0.0428087 36 4047 49 6.79088e+06 296384 648988. 2245.63 4.21 0.429366 0.385383 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.24 0.26 0.13 -1 -1 0.24 0.0990771 0.0894635 145 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 12.17 vpr 55.55 MiB 0.05 6844 -1 -1 13 0.27 -1 -1 32844 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 17.0 MiB 1.32 1284 4659 748 3690 221 55.7 MiB 0.09 0.00 8.13835 -165.274 -8.13835 8.13835 1.09 0.00161568 0.00147989 0.0476202 0.0436878 38 3292 49 6.79088e+06 269440 678818. 2348.85 13.99 0.774092 0.693381 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.061657 0.0558979 136 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 9.55 vpr 55.28 MiB 0.04 6552 -1 -1 12 0.17 -1 -1 32340 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 16.7 MiB 2.01 1045 5303 1002 3952 349 55.1 MiB 0.09 0.00 6.60115 -147.873 -6.60115 6.60115 1.09 0.00130345 0.00119331 0.0423632 0.038834 38 2622 19 6.79088e+06 255968 678818. 2348.85 5.01 0.400628 0.35881 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.29 0.09 0.28 -1 -1 0.29 0.0411652 0.0374249 106 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 10.56 vpr 55.00 MiB 0.05 6520 -1 -1 11 0.15 -1 -1 32684 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 1.95 954 11652 3379 7115 1158 55.2 MiB 0.17 0.00 6.23714 -130.615 -6.23714 6.23714 1.08 0.00116386 0.00106484 0.0901099 0.0825003 38 2452 30 6.79088e+06 269440 678818. 2348.85 4.07 0.357707 0.321047 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0404284 0.0365908 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 8.10 vpr 55.13 MiB 0.05 6568 -1 -1 11 0.16 -1 -1 32468 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 16.6 MiB 1.17 1013 7346 1810 4929 607 55.3 MiB 0.11 0.00 6.76313 -133.919 -6.76313 6.76313 1.10 0.00117314 0.00106743 0.058298 0.0534294 36 2839 26 6.79088e+06 255968 648988. 2245.63 5.50 0.421012 0.378406 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.28 0.11 0.26 -1 -1 0.28 0.0455233 0.0412418 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 11.40 vpr 55.41 MiB 0.04 6604 -1 -1 12 0.19 -1 -1 32576 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 17.2 MiB 1.94 1274 9443 2812 5690 941 55.8 MiB 0.15 0.00 6.88424 -161.28 -6.88424 6.88424 1.09 0.00148507 0.00136035 0.082787 0.0759088 38 3239 49 6.79088e+06 255968 678818. 2348.85 4.23 0.464447 0.416908 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.30 0.06 0.28 -1 -1 0.30 0.0276616 0.0251072 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 11.72 vpr 55.00 MiB 0.04 6528 -1 -1 11 0.17 -1 -1 32692 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 908 10056 3226 4794 2036 55.3 MiB 0.15 0.00 6.39517 -140.882 -6.39517 6.39517 1.09 0.00132558 0.0012135 0.0812903 0.07446 36 2970 31 6.79088e+06 229024 648988. 2245.63 2.91 0.343048 0.308604 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0482026 0.0436747 107 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 8.75 vpr 55.16 MiB 0.04 6640 -1 -1 10 0.14 -1 -1 32800 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 16.4 MiB 1.38 870 8022 2297 4713 1012 55.1 MiB 0.12 0.00 6.19022 -129.37 -6.19022 6.19022 1.11 0.00124339 0.00113982 0.0649817 0.0596001 34 2314 24 6.79088e+06 242496 618332. 2139.56 2.35 0.275107 0.247753 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0494659 0.0446573 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 10.17 vpr 55.66 MiB 0.05 6936 -1 -1 13 0.33 -1 -1 33296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 17.5 MiB 1.51 1352 10103 2504 6636 963 56.3 MiB 0.20 0.00 7.85531 -169.709 -7.85531 7.85531 1.09 0.00252838 0.00231634 0.100583 0.0916888 38 3914 48 6.79088e+06 296384 678818. 2348.85 29.23 0.921052 0.827368 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0784983 0.0712614 162 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 11.29 vpr 55.69 MiB 0.04 6628 -1 -1 13 0.30 -1 -1 33160 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 17.4 MiB 1.76 1274 13849 4315 6877 2657 56.1 MiB 0.24 0.00 7.85526 -169.716 -7.85526 7.85526 1.11 0.00174078 0.00159705 0.135482 0.124164 36 4447 42 6.79088e+06 282912 648988. 2245.63 10.68 0.57053 0.513895 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.28 0.20 0.25 -1 -1 0.28 0.0751429 0.0681171 152 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 10.05 vpr 55.18 MiB 0.07 6560 -1 -1 12 0.15 -1 -1 32780 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 16.8 MiB 1.32 851 11631 4796 6628 207 55.5 MiB 0.16 0.00 7.11438 -152.359 -7.11438 7.11438 1.08 0.00126361 0.0011554 0.0880781 0.0806282 36 2928 40 6.79088e+06 242496 648988. 2245.63 8.98 0.400146 0.359132 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0459639 0.0416454 102 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 10.59 vpr 55.78 MiB 0.05 6724 -1 -1 12 0.25 -1 -1 33260 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1154 12749 3915 6368 2466 56.0 MiB 0.22 0.00 7.84323 -159.621 -7.84323 7.84323 1.10 0.00172692 0.00158318 0.12239 0.112261 40 3413 28 6.79088e+06 309856 706193. 2443.58 3.86 0.503026 0.45344 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0808612 0.073159 148 219 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 10.06 vpr 55.84 MiB 0.05 6772 -1 -1 14 0.34 -1 -1 33212 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 17.3 MiB 1.13 1375 11247 2864 6672 1711 55.8 MiB 0.19 0.00 8.18012 -172.817 -8.18012 8.18012 1.08 0.00166456 0.00152697 0.107964 0.099095 36 4160 47 6.79088e+06 282912 648988. 2245.63 15.01 0.762909 0.685264 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0691592 0.0627378 146 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 10.18 vpr 55.66 MiB 0.05 6920 -1 -1 13 0.26 -1 -1 32840 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 2.11 1310 10149 2655 5632 1862 55.7 MiB 0.17 0.00 7.78561 -164.423 -7.78561 7.78561 1.09 0.0015367 0.00140817 0.0900196 0.082673 44 3315 33 6.79088e+06 282912 787024. 2723.27 6.20 0.587687 0.527699 27118 194962 -1 2744 16 1312 3521 196631 43857 6.87069 6.87069 -154.962 -6.87069 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0429408 0.0388714 126 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 10.44 vpr 55.53 MiB 0.05 6776 -1 -1 12 0.25 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 0.96 1267 10859 2857 6722 1280 56.0 MiB 0.18 0.00 7.65156 -158.395 -7.65156 7.65156 1.09 0.00159754 0.00146466 0.0965478 0.0884712 40 3210 25 6.79088e+06 309856 706193. 2443.58 4.10 0.455424 0.410259 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.32 0.14 0.28 -1 -1 0.32 0.0583351 0.0529836 135 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 11.40 vpr 55.60 MiB 0.05 6796 -1 -1 12 0.19 -1 -1 32844 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1093 11106 3659 5731 1716 55.4 MiB 0.17 0.00 7.11863 -144.901 -7.11863 7.11863 1.12 0.0014466 0.00132675 0.0965867 0.0886042 36 3341 42 6.79088e+06 229024 648988. 2245.63 6.36 0.4512 0.405059 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.056779 0.0512753 113 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 11.07 vpr 55.88 MiB 0.05 7024 -1 -1 14 0.44 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 17.6 MiB 1.33 1406 13355 3498 8147 1710 56.4 MiB 0.25 0.00 8.18038 -175.8 -8.18038 8.18038 1.09 0.00181552 0.00165698 0.145591 0.133262 38 4021 47 6.79088e+06 336800 678818. 2348.85 32.13 1.14653 1.03339 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0353397 0.0323622 169 245 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 9.93 vpr 55.21 MiB 0.04 6648 -1 -1 11 0.19 -1 -1 32392 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1088 9006 2212 5478 1316 55.5 MiB 0.14 0.00 6.58747 -141.672 -6.58747 6.58747 1.09 0.00139211 0.00127716 0.0758288 0.0695641 36 3313 23 6.79088e+06 242496 648988. 2245.63 3.13 0.311154 0.279529 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.31 0.13 0.27 -1 -1 0.31 0.0529224 0.0477937 113 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 12.12 vpr 55.74 MiB 0.05 6788 -1 -1 13 0.27 -1 -1 32744 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 17.1 MiB 1.53 1133 5422 1123 3954 345 55.8 MiB 0.10 0.00 7.76692 -152.212 -7.76692 7.76692 1.09 0.00156181 0.0014323 0.0524823 0.0482083 36 3213 29 6.79088e+06 255968 648988. 2245.63 14.01 0.660764 0.59235 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0572987 0.0519821 132 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 11.16 vpr 55.64 MiB 0.02 6760 -1 -1 12 0.29 -1 -1 32812 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1437 6967 1505 4666 796 55.8 MiB 0.13 0.00 7.30746 -159.645 -7.30746 7.30746 1.05 0.00178641 0.00163582 0.0720291 0.0660266 38 3828 35 6.79088e+06 282912 678818. 2348.85 4.69 0.442377 0.398423 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0740088 0.0671376 153 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 8.97 vpr 55.47 MiB 0.04 6640 -1 -1 13 0.24 -1 -1 32808 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 16.9 MiB 1.30 1157 7823 1835 4914 1074 55.7 MiB 0.13 0.00 7.47708 -158.746 -7.47708 7.47708 1.09 0.00155774 0.00142802 0.0716002 0.0656892 36 3541 41 6.79088e+06 255968 648988. 2245.63 3.67 0.392381 0.352989 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0546255 0.0495985 131 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 14.84 vpr 55.30 MiB 0.04 6780 -1 -1 13 0.22 -1 -1 32744 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.8 MiB 1.89 1097 11106 3753 5771 1582 55.8 MiB 0.18 0.00 7.69072 -162.222 -7.69072 7.69072 1.13 0.00151072 0.00138468 0.100849 0.0923982 34 3515 39 6.79088e+06 229024 618332. 2139.56 11.84 0.675848 0.606368 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.27 0.19 0.24 -1 -1 0.27 0.0730548 0.0659421 118 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 17.34 vpr 55.77 MiB 0.05 6824 -1 -1 12 0.28 -1 -1 33012 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1359 8151 1869 5680 602 56.0 MiB 0.14 0.00 7.62073 -165.231 -7.62073 7.62073 1.06 0.00171005 0.00156627 0.0783365 0.0718696 36 3806 40 6.79088e+06 309856 648988. 2245.63 18.51 0.808485 0.725502 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0684737 0.0621441 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 16.18 vpr 55.87 MiB 0.05 6784 -1 -1 13 0.27 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 17.5 MiB 1.97 1315 9051 2036 5908 1107 55.9 MiB 0.16 0.00 7.55776 -165.084 -7.55776 7.55776 1.09 0.0017114 0.00156379 0.0896596 0.0819868 40 3325 24 6.79088e+06 269440 706193. 2443.58 3.62 0.469811 0.423463 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.30 0.26 0.28 -1 -1 0.30 0.0939307 0.0849468 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 9.99 vpr 55.66 MiB 0.04 6728 -1 -1 14 0.30 -1 -1 32988 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1139 8270 1889 5806 575 55.6 MiB 0.14 0.00 8.36252 -172.285 -8.36252 8.36252 1.09 0.00148345 0.00135996 0.0736205 0.0675564 44 3128 32 6.79088e+06 242496 787024. 2723.27 5.98 0.524949 0.471514 27118 194962 -1 2534 14 1111 3223 182733 40388 7.46496 7.46496 -165.503 -7.46496 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466977 0.0424677 123 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 15.57 vpr 55.80 MiB 0.04 6716 -1 -1 13 0.27 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 17.2 MiB 3.03 1159 8868 1881 6136 851 56.1 MiB 0.15 0.00 8.02321 -165.348 -8.02321 8.02321 1.08 0.00160877 0.00147371 0.083827 0.0768505 36 3689 32 6.79088e+06 269440 648988. 2245.63 5.83 0.623775 0.559789 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0645585 0.0585127 134 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 11.62 vpr 55.89 MiB 0.05 6876 -1 -1 13 0.28 -1 -1 33028 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1323 8591 2185 5991 415 56.0 MiB 0.16 0.00 8.19403 -174.315 -8.19403 8.19403 1.09 0.0017649 0.00161813 0.0855473 0.0784529 44 3534 38 6.79088e+06 309856 787024. 2723.27 6.64 0.677722 0.609105 27118 194962 -1 2784 18 1402 4191 225375 49843 7.17168 7.17168 -164.218 -7.17168 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0754542 0.0683844 154 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 12.12 vpr 55.73 MiB 0.04 6788 -1 -1 12 0.30 -1 -1 32672 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 17.5 MiB 1.29 1325 11983 3288 6841 1854 56.0 MiB 0.21 0.00 7.62163 -166.383 -7.62163 7.62163 1.08 0.00178066 0.00163181 0.115679 0.10598 44 3682 36 6.79088e+06 323328 787024. 2723.27 3.63 0.495 0.446358 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0762841 0.0694562 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 8.67 vpr 55.06 MiB 0.05 6540 -1 -1 11 0.13 -1 -1 32444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 16.6 MiB 1.37 956 7249 1855 4884 510 55.2 MiB 0.11 0.00 6.10061 -138.097 -6.10061 6.10061 1.11 0.00115674 0.0010581 0.0553602 0.0507117 44 2204 16 6.79088e+06 175136 787024. 2723.27 2.63 0.248158 0.222995 27118 194962 -1 1994 14 890 2260 140178 30612 5.5245 5.5245 -131.032 -5.5245 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0365418 0.0331232 90 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 10.40 vpr 55.25 MiB 0.04 6724 -1 -1 13 0.19 -1 -1 32784 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 16.7 MiB 2.31 1073 11631 3861 5991 1779 55.2 MiB 0.18 0.00 7.81611 -170.556 -7.81611 7.81611 1.12 0.0013789 0.00126294 0.0973971 0.0892058 38 2825 21 6.79088e+06 229024 678818. 2348.85 3.78 0.397936 0.357886 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0569406 0.05182 113 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 11.68 vpr 56.13 MiB 0.06 6856 -1 -1 14 0.41 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 17.4 MiB 1.05 1399 15493 4561 8338 2594 56.3 MiB 0.29 0.00 8.67312 -179.019 -8.67312 8.67312 1.09 0.00204253 0.00186714 0.167787 0.153743 40 4316 49 6.79088e+06 323328 706193. 2443.58 28.32 1.21727 1.09715 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.30 0.45 0.29 -1 -1 0.30 0.145245 0.131443 180 267 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 11.67 vpr 55.51 MiB 0.05 6680 -1 -1 13 0.32 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 17.5 MiB 2.22 1244 13849 3731 7364 2754 56.1 MiB 0.24 0.00 8.43396 -178.911 -8.43396 8.43396 1.08 0.00184203 0.00168795 0.143496 0.13154 44 3465 21 6.79088e+06 282912 787024. 2723.27 5.93 0.709202 0.63922 27118 194962 -1 2596 16 1299 3668 191666 43847 7.34737 7.34737 -162.196 -7.34737 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0652609 0.0594908 154 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 8.76 vpr 55.07 MiB 0.04 6556 -1 -1 11 0.16 -1 -1 32704 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 16.6 MiB 0.68 899 5994 1459 3795 740 55.2 MiB 0.10 0.00 6.69493 -140.456 -6.69493 6.69493 1.09 0.00123228 0.00112748 0.0479994 0.043943 30 2669 49 6.79088e+06 229024 556674. 1926.21 2.52 0.266429 0.23909 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451775 0.0409328 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 19.79 vpr 56.10 MiB 0.05 7036 -1 -1 15 0.43 -1 -1 32888 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 17.4 MiB 1.37 1572 8083 1890 5078 1115 56.1 MiB 0.16 0.00 9.61575 -193.644 -9.61575 9.61575 1.10 0.00197882 0.00180914 0.0882107 0.0809074 48 3812 19 6.79088e+06 323328 865456. 2994.66 7.12 0.69722 0.627553 27694 206865 -1 3449 20 1718 5055 320010 69240 8.25951 8.25951 -179.124 -8.25951 0 0 1.05005e+06 3633.38 0.34 0.18 0.34 -1 -1 0.34 0.0814053 0.0740548 172 241 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 8.90 vpr 55.80 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 33076 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 17.4 MiB 1.10 1447 9914 2954 6315 645 56.1 MiB 0.17 0.00 8.38843 -181.197 -8.38843 8.38843 1.09 0.00171857 0.00157526 0.0955125 0.0875975 38 3572 19 6.79088e+06 296384 678818. 2348.85 5.94 0.634475 0.570969 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0663303 0.060266 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 7.00 vpr 55.15 MiB 0.05 6632 -1 -1 11 0.13 -1 -1 32856 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 16.7 MiB 1.54 1043 11604 3704 5973 1927 55.3 MiB 0.16 0.00 6.83225 -151.19 -6.83225 6.83225 1.11 0.00123737 0.00113051 0.0868521 0.0793882 30 2701 43 6.79088e+06 215552 556674. 1926.21 2.14 0.286229 0.257515 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0472644 0.042746 97 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 10.14 vpr 55.65 MiB 0.05 6900 -1 -1 12 0.29 -1 -1 32856 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 17.4 MiB 1.53 1321 11989 3057 7272 1660 56.1 MiB 0.20 0.00 7.80487 -167.158 -7.80487 7.80487 1.12 0.00175088 0.00159161 0.117994 0.107949 44 3363 21 6.79088e+06 282912 787024. 2723.27 6.39 0.645089 0.580794 27118 194962 -1 2768 18 1318 3944 204921 46349 6.74877 6.74877 -155.072 -6.74877 0 0 997811. 3452.63 0.34 0.14 0.32 -1 -1 0.34 0.0673402 0.061208 152 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 9.04 vpr 55.49 MiB 0.04 6604 -1 -1 12 0.20 -1 -1 32364 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1076 11776 3996 5804 1976 55.3 MiB 0.18 0.00 7.20737 -155.525 -7.20737 7.20737 1.08 0.00142739 0.00130837 0.102074 0.093602 38 3023 28 6.79088e+06 215552 678818. 2348.85 3.50 0.367225 0.330658 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0713584 0.0644299 115 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 7.65 vpr 55.26 MiB 0.04 6556 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 16.7 MiB 1.29 861 12331 3461 6927 1943 55.4 MiB 0.16 0.00 7.68992 -150.206 -7.68992 7.68992 1.12 0.00128057 0.00117245 0.0939145 0.0860828 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.52 0.270144 0.244086 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0403674 0.0366949 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 9.86 vpr 55.62 MiB 0.05 6872 -1 -1 12 0.30 -1 -1 32796 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1109 13105 4321 6403 2381 55.9 MiB 0.23 0.00 7.73882 -148.46 -7.73882 7.73882 1.09 0.00169138 0.00154987 0.124502 0.114092 36 3249 25 6.79088e+06 323328 648988. 2245.63 17.54 0.80353 0.722779 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.06219 0.0565301 144 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 16.99 vpr 55.86 MiB 0.05 6712 -1 -1 14 0.31 -1 -1 33040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 17.2 MiB 2.29 1442 8024 2021 5399 604 56.0 MiB 0.15 0.00 8.63126 -174.325 -8.63126 8.63126 1.08 0.00181165 0.00166068 0.082512 0.0757084 46 3512 20 6.79088e+06 296384 828058. 2865.25 6.97 0.696006 0.625899 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0665163 0.0605328 155 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 11.36 vpr 55.72 MiB 0.06 6788 -1 -1 12 0.23 -1 -1 32752 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.36 1323 12503 3954 6429 2120 55.6 MiB 0.21 0.00 7.68002 -164.527 -7.68002 7.68002 1.08 0.0016347 0.00149338 0.118605 0.10835 38 3480 45 6.79088e+06 255968 678818. 2348.85 5.38 0.54223 0.488157 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.31 0.27 0.27 -1 -1 0.31 0.0953231 0.0862922 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 10.58 vpr 55.02 MiB 0.04 6640 -1 -1 12 0.12 -1 -1 32628 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 16.4 MiB 1.25 883 6839 1546 5160 133 55.1 MiB 0.11 0.00 7.22527 -147.319 -7.22527 7.22527 1.08 0.00120599 0.00109567 0.0531648 0.0486015 34 2749 47 6.79088e+06 202080 618332. 2139.56 4.32 0.311467 0.279317 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.28 0.20 0.26 -1 -1 0.28 0.0677826 0.0609752 95 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 11.57 vpr 55.20 MiB 0.02 6764 -1 -1 12 0.26 -1 -1 32292 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1016 11806 3829 5905 2072 55.7 MiB 0.17 0.00 7.21239 -153.602 -7.21239 7.21239 1.13 0.00144237 0.00132161 0.101392 0.092953 46 2377 20 6.79088e+06 242496 828058. 2865.25 5.82 0.476134 0.427751 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.34 0.10 0.33 -1 -1 0.34 0.0524151 0.0475029 114 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 10.06 vpr 55.45 MiB 0.05 6760 -1 -1 11 0.19 -1 -1 32704 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 2.38 1192 7587 1799 4901 887 55.5 MiB 0.06 0.00 6.65573 -139.172 -6.65573 6.65573 0.74 0.000567113 0.000512286 0.0265175 0.0240042 38 3199 19 6.79088e+06 296384 678818. 2348.85 4.44 0.355918 0.31876 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0559776 0.050778 129 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 11.03 vpr 55.38 MiB 0.05 6848 -1 -1 11 0.20 -1 -1 32628 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 16.8 MiB 1.30 990 12156 4943 6412 801 55.4 MiB 0.19 0.00 6.59863 -125.892 -6.59863 6.59863 1.09 0.00145278 0.001334 0.106052 0.0973852 40 3108 38 6.79088e+06 282912 706193. 2443.58 4.23 0.445547 0.400345 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0670324 0.0604644 125 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 8.95 vpr 55.50 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32712 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 16.7 MiB 2.68 1023 6220 1452 4481 287 55.3 MiB 0.10 0.00 7.37394 -146.255 -7.37394 7.37394 1.08 0.00123931 0.001135 0.0506218 0.046364 36 2646 31 6.79088e+06 215552 648988. 2245.63 5.08 0.420679 0.377149 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.29 0.09 0.25 -1 -1 0.29 0.0397273 0.0361409 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 9.73 vpr 55.58 MiB 0.02 6716 -1 -1 12 0.19 -1 -1 32524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.90 1239 4476 858 3235 383 55.6 MiB 0.08 0.00 7.13568 -159.479 -7.13568 7.13568 1.09 0.00151419 0.0013861 0.0435725 0.0400377 36 3048 33 6.79088e+06 269440 648988. 2245.63 4.28 0.403516 0.361627 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0524743 0.0476178 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 9.43 vpr 55.46 MiB 0.05 6776 -1 -1 13 0.29 -1 -1 32796 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 17.0 MiB 1.79 1176 7283 1697 4959 627 55.7 MiB 0.13 0.00 7.98183 -162.706 -7.98183 7.98183 1.09 0.00161089 0.00147678 0.0702416 0.0644774 44 2649 18 6.79088e+06 269440 787024. 2723.27 5.43 0.5729 0.514551 27118 194962 -1 2319 17 1093 3339 161697 38241 6.80691 6.80691 -150.674 -6.80691 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0596048 0.0540516 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 11.86 vpr 55.68 MiB 0.04 6748 -1 -1 14 0.28 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 17.1 MiB 1.47 1408 9013 2325 5592 1096 55.9 MiB 0.17 0.00 8.8032 -181.521 -8.8032 8.8032 1.09 0.00177432 0.00162753 0.0923745 0.0847867 36 3712 28 6.79088e+06 282912 648988. 2245.63 4.99 0.494786 0.44587 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0631218 0.0575108 149 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 11.71 vpr 55.59 MiB 0.05 6704 -1 -1 14 0.28 -1 -1 32820 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 17.0 MiB 2.18 1168 12528 4001 6466 2061 55.7 MiB 0.20 0.00 8.11366 -160.164 -8.11366 8.11366 1.08 0.00159894 0.00146539 0.114539 0.104981 38 3448 46 6.79088e+06 269440 678818. 2348.85 22.01 0.773028 0.694 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0659827 0.0598034 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 10.37 vpr 55.60 MiB 0.05 6628 -1 -1 13 0.33 -1 -1 33320 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 17.4 MiB 1.93 1266 7823 1896 4973 954 55.9 MiB 0.14 0.00 7.98865 -167.696 -7.98865 7.98865 1.11 0.00166795 0.00152914 0.0777178 0.0712967 44 3303 29 6.79088e+06 255968 787024. 2723.27 6.86 0.651417 0.585089 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0617537 0.0561913 139 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 9.68 vpr 55.14 MiB 0.04 6616 -1 -1 13 0.18 -1 -1 32776 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 16.7 MiB 1.49 955 5888 1275 4387 226 55.4 MiB 0.12 0.00 7.30909 -151.711 -7.30909 7.30909 1.09 0.00128426 0.00117362 0.062149 0.0570063 44 2529 26 6.79088e+06 215552 787024. 2723.27 5.16 0.446842 0.400589 27118 194962 -1 1987 15 914 2239 123722 28021 6.20837 6.20837 -138.38 -6.20837 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0538479 0.0496016 106 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 12.63 vpr 55.85 MiB 0.05 6648 -1 -1 13 0.43 -1 -1 32768 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 17.4 MiB 1.38 1281 12175 3045 7735 1395 55.8 MiB 0.20 0.00 8.2401 -167.978 -8.2401 8.2401 1.09 0.00171331 0.00157237 0.118064 0.108379 36 3566 29 6.79088e+06 309856 648988. 2245.63 6.62 0.517005 0.466251 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.27 0.21 0.25 -1 -1 0.27 0.0802089 0.0726895 144 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 9.57 vpr 55.58 MiB 0.04 6936 -1 -1 14 0.28 -1 -1 31480 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1252 6306 1410 4478 418 55.7 MiB 0.13 0.00 8.1933 -176.786 -8.1933 8.1933 1.10 0.00159403 0.00145964 0.0622259 0.0570844 46 3049 24 6.79088e+06 269440 828058. 2865.25 6.12 0.498681 0.447814 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0610221 0.0553973 133 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 10.31 vpr 55.46 MiB 0.02 6716 -1 -1 12 0.25 -1 -1 32912 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1214 6855 1626 4139 1090 55.6 MiB 0.13 0.00 7.87232 -159.238 -7.87232 7.87232 1.10 0.00149546 0.0013852 0.066402 0.0609309 38 3142 49 6.79088e+06 282912 678818. 2348.85 4.47 0.503026 0.452409 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0258022 0.0234878 143 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 10.25 vpr 55.56 MiB 0.05 6944 -1 -1 13 0.24 -1 -1 32732 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1166 13583 4513 7114 1956 55.7 MiB 0.21 0.00 8.05477 -151.514 -8.05477 8.05477 1.08 0.001526 0.00139828 0.120071 0.109983 38 3283 21 6.79088e+06 282912 678818. 2348.85 5.80 0.455648 0.410302 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0533732 0.0484464 126 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 10.24 vpr 55.82 MiB 0.02 6724 -1 -1 14 0.35 -1 -1 32928 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1356 6595 1328 4700 567 56.0 MiB 0.13 0.00 8.2637 -174.994 -8.2637 8.2637 1.08 0.00178985 0.00164402 0.0701034 0.0644743 38 3897 30 6.79088e+06 282912 678818. 2348.85 6.27 0.485232 0.437128 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0803394 0.0728742 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 13.58 vpr 55.39 MiB 0.06 6724 -1 -1 11 0.28 -1 -1 32888 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1061 13403 4351 6899 2153 55.5 MiB 0.20 0.00 6.99502 -136.053 -6.99502 6.99502 1.09 0.00152601 0.00140052 0.117514 0.107835 36 3032 43 6.79088e+06 296384 648988. 2245.63 6.22 0.646794 0.581175 25390 158009 -1 2540 33 1686 5540 506000 190003 6.00456 6.00456 -131.545 -6.00456 0 0 828058. 2865.25 0.29 0.28 0.25 -1 -1 0.29 0.0987324 0.0893083 130 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 9.92 vpr 54.98 MiB 0.04 6560 -1 -1 13 0.16 -1 -1 32728 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.88 995 4062 701 3272 89 55.1 MiB 0.07 0.00 6.9771 -161.617 -6.9771 6.9771 1.09 0.00125184 0.00114693 0.0343159 0.0315005 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.02 0.280988 0.251967 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.27 0.11 0.27 -1 -1 0.27 0.043515 0.0393799 99 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 11.85 vpr 55.48 MiB 0.05 6852 -1 -1 14 0.23 -1 -1 32800 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1302 5483 1117 4002 364 55.5 MiB 0.10 0.00 8.68565 -176.783 -8.68565 8.68565 1.10 0.00153478 0.00140736 0.0517198 0.0474994 36 3263 26 6.79088e+06 255968 648988. 2245.63 5.94 0.395744 0.35544 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0538029 0.0488563 129 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 10.78 vpr 56.09 MiB 0.05 6636 -1 -1 15 0.36 -1 -1 33168 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 17.4 MiB 1.82 1292 9914 2574 6184 1156 56.2 MiB 0.21 0.00 9.1052 -186.475 -9.1052 9.1052 1.11 0.00243611 0.00224347 0.110612 0.101534 40 3560 37 6.79088e+06 296384 706193. 2443.58 3.34 0.556291 0.502173 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0964495 0.0877099 153 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 7.58 vpr 55.19 MiB 0.04 6676 -1 -1 11 0.16 -1 -1 32380 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.94 829 6054 1305 4663 86 55.1 MiB 0.10 0.00 6.63906 -133.693 -6.63906 6.63906 1.09 0.00117838 0.00107793 0.0466732 0.0427186 34 2844 35 6.79088e+06 188608 618332. 2139.56 3.70 0.272449 0.244185 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429477 0.0388291 91 124 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 9.88 vpr 55.27 MiB 0.04 6592 -1 -1 12 0.18 -1 -1 32592 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 16.8 MiB 1.53 1045 8360 2472 4444 1444 55.4 MiB 0.13 0.00 7.09988 -155.106 -7.09988 7.09988 1.11 0.00137085 0.00125717 0.072884 0.0668813 36 3087 23 6.79088e+06 215552 648988. 2245.63 4.05 0.370826 0.333216 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0547694 0.0495957 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 9.16 vpr 55.76 MiB 0.04 6680 -1 -1 12 0.32 -1 -1 33132 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1231 6306 1337 4274 695 56.0 MiB 0.12 0.00 7.48442 -156.804 -7.48442 7.48442 0.97 0.00174805 0.00160418 0.0653655 0.0599992 36 3798 37 6.79088e+06 269440 648988. 2245.63 4.91 0.474481 0.42665 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0722878 0.0655854 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 13.31 vpr 55.51 MiB 0.04 6900 -1 -1 12 0.24 -1 -1 32832 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 17.0 MiB 1.61 1313 9443 2521 5826 1096 55.7 MiB 0.16 0.00 7.56551 -160.745 -7.56551 7.56551 1.09 0.0015584 0.00142834 0.0866941 0.0795438 36 3623 36 6.79088e+06 255968 648988. 2245.63 5.81 0.45629 0.410373 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.27 0.14 0.26 -1 -1 0.27 0.060047 0.0543583 133 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 10.72 vpr 56.03 MiB 0.05 6940 -1 -1 14 0.44 -1 -1 33280 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 17.4 MiB 1.31 1284 5079 907 4069 103 56.4 MiB 0.12 0.00 8.77515 -179.37 -8.77515 8.77515 1.11 0.00193498 0.00177158 0.0593918 0.0545337 38 4131 35 6.79088e+06 309856 678818. 2348.85 21.55 0.899289 0.808256 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0785107 0.0715319 170 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 14.34 vpr 55.38 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32496 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1159 11963 3648 6429 1886 55.9 MiB 0.19 0.00 7.06667 -142.983 -7.06667 7.06667 1.10 0.00151041 0.00138539 0.103651 0.0950782 44 2874 16 6.79088e+06 282912 787024. 2723.27 5.06 0.543245 0.488207 27118 194962 -1 2495 13 1107 3189 172215 38308 6.29442 6.29442 -134.943 -6.29442 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0453343 0.0413 128 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 7.31 vpr 55.21 MiB 0.03 6564 -1 -1 11 0.17 -1 -1 32380 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 16.5 MiB 1.13 770 7714 1883 5409 422 55.2 MiB 0.12 0.00 6.64923 -122.654 -6.64923 6.64923 1.10 0.00122072 0.00111821 0.0608273 0.0557515 38 2218 30 6.79088e+06 255968 678818. 2348.85 5.09 0.535511 0.479306 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.050418 0.0455395 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 12.54 vpr 56.51 MiB 0.05 6904 -1 -1 13 0.41 -1 -1 32828 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 17.9 MiB 1.68 1654 14793 4090 8037 2666 56.7 MiB 0.28 0.00 8.15219 -167.23 -8.15219 8.15219 1.08 0.00217119 0.00197864 0.15942 0.145927 40 4464 26 6.79088e+06 390688 706193. 2443.58 6.27 0.657025 0.594125 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.30 0.59 0.28 -1 -1 0.30 0.177203 0.16035 191 279 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 8.79 vpr 55.60 MiB 0.05 6804 -1 -1 14 0.27 -1 -1 33476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1216 6923 1704 4584 635 55.7 MiB 0.12 0.00 8.60637 -173.25 -8.60637 8.60637 1.08 0.00151816 0.0013917 0.0630732 0.057863 30 3569 30 6.79088e+06 269440 556674. 1926.21 3.01 0.291014 0.262265 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0581551 0.0527304 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 9.53 vpr 55.21 MiB 0.04 6604 -1 -1 12 0.16 -1 -1 32344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 16.7 MiB 2.16 1144 8723 2365 5890 468 55.4 MiB 0.13 0.00 7.40683 -169.316 -7.40683 7.40683 1.09 0.00128581 0.00117735 0.0660614 0.060486 44 3005 29 6.79088e+06 255968 787024. 2723.27 5.77 0.456562 0.409639 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0466657 0.0423125 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 11.80 vpr 55.64 MiB 0.04 6732 -1 -1 13 0.28 -1 -1 32736 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 16.9 MiB 2.67 1115 5066 1001 3852 213 55.7 MiB 0.09 0.00 8.33866 -169.136 -8.33866 8.33866 1.09 0.00151881 0.00139241 0.0480774 0.0441555 48 2783 21 6.79088e+06 242496 865456. 2994.66 6.41 0.518909 0.465398 27694 206865 -1 2457 17 1071 3000 181658 40341 7.04987 7.04987 -154.557 -7.04987 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.0556896 0.0505282 125 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 10.80 vpr 55.96 MiB 0.04 6904 -1 -1 13 0.32 -1 -1 33364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1490 8083 1681 5214 1188 56.3 MiB 0.15 0.00 7.4732 -162.473 -7.4732 7.4732 1.13 0.00184146 0.00168782 0.0811408 0.0743978 38 4261 31 6.79088e+06 336800 678818. 2348.85 6.56 0.519391 0.467521 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.29 0.30 0.27 -1 -1 0.29 0.110545 0.100054 159 234 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 11.71 vpr 55.73 MiB 0.04 6744 -1 -1 11 0.23 -1 -1 32884 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 17.0 MiB 1.54 1209 11059 2877 6113 2069 55.7 MiB 0.18 0.00 7.11391 -144.84 -7.11391 7.11391 1.08 0.00162249 0.00148787 0.101421 0.0930155 44 3241 20 6.79088e+06 309856 787024. 2723.27 6.28 0.593065 0.533481 27118 194962 -1 2589 15 1040 3335 178109 39730 6.29442 6.29442 -136.088 -6.29442 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0622453 0.0572758 140 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 10.22 vpr 55.78 MiB 0.04 6712 -1 -1 15 0.32 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1211 12503 3460 7559 1484 55.8 MiB 0.21 0.00 9.11536 -184.558 -9.11536 9.11536 1.09 0.00168114 0.00154043 0.122704 0.11216 46 2840 19 6.79088e+06 255968 828058. 2865.25 6.22 0.691761 0.62166 27406 200422 -1 2555 17 1279 3537 187100 43561 7.59386 7.59386 -164.648 -7.59386 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0627921 0.0570557 142 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 9.15 vpr 55.84 MiB 0.06 6644 -1 -1 13 0.31 -1 -1 32964 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 17.5 MiB 1.94 1357 5463 1001 4200 262 56.1 MiB 0.11 0.00 8.32676 -176.58 -8.32676 8.32676 1.08 0.00183262 0.00167552 0.057417 0.0526657 36 4143 34 6.79088e+06 309856 648988. 2245.63 12.84 0.494099 0.444582 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0601923 0.0547952 154 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 10.62 vpr 55.14 MiB 0.05 6600 -1 -1 12 0.19 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 16.9 MiB 1.92 941 10557 3755 4946 1856 55.5 MiB 0.15 0.00 7.68137 -155.362 -7.68137 7.68137 1.11 0.00129045 0.0011818 0.0846873 0.0776442 36 2695 26 6.79088e+06 242496 648988. 2245.63 4.92 0.456054 0.409724 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0491854 0.0445361 109 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 10.56 vpr 55.25 MiB 0.04 6612 -1 -1 11 0.15 -1 -1 32488 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 16.4 MiB 1.39 1148 5224 1190 3763 271 55.2 MiB 0.09 0.00 6.84847 -147.97 -6.84847 6.84847 1.12 0.00124315 0.00113753 0.043097 0.0394918 48 2763 18 6.79088e+06 188608 865456. 2994.66 5.60 0.479885 0.429876 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0424171 0.0384451 98 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 9.15 vpr 55.73 MiB 0.04 6776 -1 -1 13 0.30 -1 -1 32820 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 17.5 MiB 1.07 1115 8455 2194 4906 1355 56.0 MiB 0.15 0.00 7.89179 -153.02 -7.89179 7.89179 1.08 0.00170023 0.00155719 0.0824694 0.0756079 38 3369 23 6.79088e+06 296384 678818. 2348.85 6.32 0.464107 0.418041 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0679929 0.0617157 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 7.74 vpr 55.06 MiB 0.05 6600 -1 -1 10 0.17 -1 -1 32784 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 16.6 MiB 1.63 851 10204 2504 7246 454 55.2 MiB 0.14 0.00 6.11518 -125.484 -6.11518 6.11518 1.09 0.00122729 0.00112298 0.0785806 0.0720156 38 2368 25 6.79088e+06 229024 678818. 2348.85 5.33 0.45229 0.405506 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0503646 0.0454995 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 13.04 vpr 55.29 MiB 0.04 6512 -1 -1 14 0.18 -1 -1 32652 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 16.9 MiB 2.65 1049 6312 1330 4556 426 55.2 MiB 0.10 0.00 7.76918 -161.081 -7.76918 7.76918 1.09 0.00131616 0.00120603 0.0509297 0.0466835 36 3203 45 6.79088e+06 242496 648988. 2245.63 17.36 0.596302 0.533541 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.29 0.31 0.25 -1 -1 0.29 0.0983194 0.0886059 110 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 10.51 vpr 55.81 MiB 0.05 6776 -1 -1 12 0.30 -1 -1 32888 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1262 12919 3620 7000 2299 55.7 MiB 0.21 0.00 7.60154 -161.988 -7.60154 7.60154 1.09 0.00167876 0.00153978 0.121798 0.111728 36 3634 39 6.79088e+06 296384 648988. 2245.63 7.00 0.540211 0.486894 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0613179 0.0556916 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 10.19 vpr 55.28 MiB 0.04 6592 -1 -1 12 0.17 -1 -1 32284 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 16.8 MiB 2.02 992 10726 2823 7181 722 55.2 MiB 0.15 0.00 6.58069 -144.507 -6.58069 6.58069 1.11 0.00122821 0.00112362 0.0823296 0.075382 34 3214 45 6.79088e+06 215552 618332. 2139.56 4.94 0.391161 0.351059 25102 150614 -1 2531 19 1106 2577 182354 39807 6.0649 6.0649 -143.904 -6.0649 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0487346 0.0440227 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 9.31 vpr 55.61 MiB 0.05 6828 -1 -1 12 0.19 -1 -1 32924 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1163 7736 1889 5402 445 55.9 MiB 0.13 0.00 7.51176 -154.757 -7.51176 7.51176 1.09 0.00155894 0.00142764 0.0728061 0.0667371 38 3181 29 6.79088e+06 242496 678818. 2348.85 5.95 0.435254 0.391077 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.29 0.12 0.26 -1 -1 0.29 0.0570543 0.0517385 123 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 10.13 vpr 55.70 MiB 0.05 6732 -1 -1 13 0.27 -1 -1 32928 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 17.1 MiB 1.41 1250 11296 2557 6849 1890 55.8 MiB 0.18 0.00 7.49717 -162.624 -7.49717 7.49717 1.09 0.00155927 0.00142897 0.103647 0.0950912 40 2968 20 6.79088e+06 255968 706193. 2443.58 17.78 0.777085 0.696912 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0595625 0.0539694 134 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 10.44 vpr 55.05 MiB 0.02 6516 -1 -1 11 0.16 -1 -1 32364 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 1.25 937 7515 1724 5667 124 55.3 MiB 0.12 0.00 7.16165 -142.405 -7.16165 7.16165 1.08 0.00129089 0.00118037 0.0613696 0.0561617 46 2683 20 6.79088e+06 202080 828058. 2865.25 3.10 0.345772 0.31054 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0450549 0.0408704 105 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 11.86 vpr 55.35 MiB 0.04 6584 -1 -1 13 0.19 -1 -1 32560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 17.1 MiB 1.80 1005 13381 4639 6392 2350 55.7 MiB 0.21 0.00 7.38301 -157.601 -7.38301 7.38301 1.14 0.00146407 0.00134128 0.116175 0.106518 38 2883 22 6.79088e+06 229024 678818. 2348.85 2.78 0.365452 0.329444 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0528697 0.0479131 116 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 9.12 vpr 55.60 MiB 0.04 6840 -1 -1 13 0.25 -1 -1 32816 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 17.2 MiB 1.56 1327 8092 2018 5457 617 55.9 MiB 0.14 0.00 7.14878 -159.209 -7.14878 7.14878 1.10 0.0015734 0.00144238 0.0764217 0.0701609 46 3203 25 6.79088e+06 242496 828058. 2865.25 3.47 0.424066 0.381373 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0600511 0.0543872 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 15.07 vpr 55.41 MiB 0.02 6748 -1 -1 11 0.19 -1 -1 32692 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.49 925 13403 4743 6446 2214 55.4 MiB 0.19 0.00 6.69836 -125.024 -6.69836 6.69836 1.09 0.00137507 0.00125986 0.106677 0.0977589 36 2760 29 6.79088e+06 296384 648988. 2245.63 4.99 0.425493 0.382345 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0501484 0.0454119 115 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 9.57 vpr 55.68 MiB 0.05 6928 -1 -1 14 0.31 -1 -1 33316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 17.4 MiB 1.43 1410 8213 2036 5597 580 56.2 MiB 0.16 0.00 9.10514 -189.548 -9.10514 9.10514 1.09 0.00182237 0.00167031 0.0848684 0.0777673 44 3396 25 6.79088e+06 296384 787024. 2723.27 3.56 0.489354 0.440712 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.34 0.13 0.31 -1 -1 0.34 0.0644074 0.0587052 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 10.40 vpr 55.16 MiB 0.04 6704 -1 -1 12 0.16 -1 -1 32672 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 16.8 MiB 2.69 1093 11281 2937 6811 1533 55.3 MiB 0.16 0.00 6.61653 -142.296 -6.61653 6.61653 1.13 0.00127176 0.00116408 0.0861753 0.0789958 38 2817 19 6.79088e+06 242496 678818. 2348.85 2.44 0.308539 0.278261 25966 169698 -1 2363 14 1024 2534 149076 32586 5.57833 5.57833 -133.159 -5.57833 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0401526 0.0365282 108 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 10.43 vpr 55.61 MiB 0.05 6752 -1 -1 13 0.27 -1 -1 32848 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1323 14123 4442 7710 1971 55.8 MiB 0.23 0.00 7.64293 -157.325 -7.64293 7.64293 1.09 0.0015873 0.00145469 0.129904 0.119111 44 3212 24 6.79088e+06 255968 787024. 2723.27 3.73 0.406555 0.366976 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.34 0.14 0.31 -1 -1 0.34 0.0615014 0.0557958 132 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 8.49 vpr 55.20 MiB 0.05 6716 -1 -1 13 0.18 -1 -1 32732 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 16.5 MiB 1.96 1020 12120 3554 6383 2183 55.3 MiB 0.17 0.00 7.35402 -164.423 -7.35402 7.35402 1.08 0.00127735 0.00116918 0.0938643 0.0859486 36 3009 44 6.79088e+06 215552 648988. 2245.63 5.83 0.548757 0.493039 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0511829 0.0463496 104 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 8.56 vpr 55.55 MiB 0.05 6856 -1 -1 12 0.21 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 17.2 MiB 1.87 1030 11783 4465 6036 1282 56.0 MiB 0.19 0.00 7.13827 -153.033 -7.13827 7.13827 1.10 0.00148852 0.00135887 0.104482 0.0957714 44 2856 22 6.79088e+06 255968 787024. 2723.27 3.21 0.387416 0.349117 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0506526 0.0460055 121 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 10.48 vpr 56.24 MiB 0.04 6992 -1 -1 15 0.51 -1 -1 32784 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1457 12373 3076 6798 2499 56.3 MiB 0.25 0.00 9.48621 -188.88 -9.48621 9.48621 1.08 0.00201907 0.00185073 0.146159 0.134178 46 4011 21 6.79088e+06 323328 828058. 2865.25 6.94 0.781261 0.704699 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0844498 0.0767716 176 250 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 7.33 vpr 54.59 MiB 0.04 6508 -1 -1 10 0.10 -1 -1 32092 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55964 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 16.0 MiB 1.53 678 9345 2965 4615 1765 54.7 MiB 0.10 0.00 5.03415 -115.492 -5.03415 5.03415 1.09 0.00089601 0.000819572 0.0574963 0.0526502 36 1722 23 6.79088e+06 148192 648988. 2245.63 2.63 0.250018 0.223084 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0346783 0.0310799 63 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 10.41 vpr 55.35 MiB 0.05 6552 -1 -1 13 0.19 -1 -1 32484 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 16.7 MiB 1.68 930 9881 2975 5177 1729 55.4 MiB 0.14 0.00 7.15369 -149.901 -7.15369 7.15369 1.11 0.00127116 0.00115217 0.0762483 0.0698864 36 2757 44 6.79088e+06 255968 648988. 2245.63 4.65 0.402687 0.361546 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0505652 0.0457746 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 10.07 vpr 55.52 MiB 0.05 6464 -1 -1 12 0.19 -1 -1 32548 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1026 12331 4984 6774 573 55.6 MiB 0.19 0.00 7.35057 -161.147 -7.35057 7.35057 1.11 0.00143768 0.00131737 0.10623 0.0974066 38 3211 42 6.79088e+06 229024 678818. 2348.85 19.20 0.738941 0.662186 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0579799 0.0525428 115 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 6.32 vpr 54.70 MiB 0.05 6716 -1 -1 9 0.13 -1 -1 32360 -1 -1 20 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 16.7 MiB 1.07 772 8553 2593 4994 966 55.2 MiB 0.10 0.00 5.4216 -101.246 -5.4216 5.4216 1.08 0.00101816 0.000932745 0.0563404 0.0516462 32 2040 31 6.79088e+06 269440 586450. 2029.24 1.37 0.201784 0.181199 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0336201 0.030372 86 111 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 12.47 vpr 55.68 MiB 0.05 6836 -1 -1 12 0.26 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 17.2 MiB 2.35 1475 10263 2607 5842 1814 55.9 MiB 0.18 0.00 7.81518 -176.908 -7.81518 7.81518 1.11 0.00168186 0.00154133 0.0954285 0.0875118 38 4034 49 6.79088e+06 309856 678818. 2348.85 8.27 0.547144 0.492408 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0619064 0.0562804 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 16.59 vpr 55.84 MiB 0.07 6912 -1 -1 14 0.53 -1 -1 32872 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 17.3 MiB 1.21 1195 12733 3723 6434 2576 55.8 MiB 0.22 0.00 9.14434 -182.838 -9.14434 9.14434 1.12 0.00172674 0.00158239 0.125546 0.114919 38 3451 34 6.79088e+06 296384 678818. 2348.85 5.82 0.547953 0.494015 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0658858 0.059868 151 204 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 9.51 vpr 55.98 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30840 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 1.20 895 12321 3076 8292 953 56.4 MiB 0.21 0.00 4.3249 -144.349 -4.3249 4.3249 1.09 0.00138045 0.00126734 0.0751919 0.0689254 34 2773 31 6.87369e+06 517032 618332. 2139.56 5.15 0.466586 0.417978 25762 151098 -1 2211 24 2181 3652 275045 65194 4.0397 4.0397 -150.952 -4.0397 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0619853 0.0556486 155 96 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.39 vpr 55.88 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 17.4 MiB 3.40 889 13477 4603 6656 2218 56.2 MiB 0.22 0.00 4.22285 -135.326 -4.22285 4.22285 1.09 0.00128085 0.0011742 0.0957769 0.0878281 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.50 0.272422 0.245926 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.25 0.15 0.23 -1 -1 0.25 0.0563612 0.0506087 141 91 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.47 vpr 55.72 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 17.5 MiB 1.69 953 18428 5979 9684 2765 56.3 MiB 0.32 0.01 3.74716 -129.333 -3.74716 3.74716 1.10 0.0013443 0.00123288 0.117037 0.108362 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.50 0.275006 0.249542 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0529511 0.0475925 145 65 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 7.14 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30340 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 17.3 MiB 1.28 922 15090 5352 7218 2520 56.1 MiB 0.24 0.00 4.1666 -130.205 -4.1666 4.1666 1.08 0.00114721 0.00105349 0.0975709 0.0896496 34 2444 21 6.87369e+06 321398 618332. 2139.56 2.42 0.344122 0.310203 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0511668 0.0459524 136 34 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.88 vpr 55.66 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 1.63 1047 14965 5078 8038 1849 56.3 MiB 0.25 0.00 4.2175 -149.421 -4.2175 4.2175 1.08 0.00125216 0.00114933 0.104176 0.0956822 34 2922 24 6.87369e+06 293451 618332. 2139.56 2.47 0.353206 0.317581 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.26 0.17 0.24 -1 -1 0.26 0.056184 0.0505928 147 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.48 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30192 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 17.4 MiB 1.14 1041 20588 6432 11323 2833 56.3 MiB 0.29 0.00 3.55395 -124.862 -3.55395 3.55395 1.08 0.00130532 0.00119515 0.114781 0.105119 32 2871 28 6.87369e+06 544980 586450. 2029.24 1.37 0.291561 0.2632 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.25 0.13 0.22 -1 -1 0.25 0.0494854 0.0445523 154 64 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.70 vpr 55.27 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30480 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 17.1 MiB 2.02 640 10388 2730 6621 1037 55.8 MiB 0.15 0.00 3.6994 -105.15 -3.6994 3.6994 1.10 0.000917334 0.000841967 0.0590561 0.0542244 28 1921 25 6.87369e+06 279477 531479. 1839.03 1.33 0.180741 0.162114 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0426857 0.0381241 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.64 vpr 55.48 MiB 0.06 7008 -1 -1 1 0.03 -1 -1 30064 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.4 MiB 0.85 969 14273 4212 7662 2399 56.1 MiB 0.19 0.00 3.61131 -114.549 -3.61131 3.61131 1.08 0.00110868 0.00101846 0.0729663 0.0669548 30 2496 28 6.87369e+06 489084 556674. 1926.21 1.35 0.232493 0.209463 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0454954 0.0409143 141 4 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 8.25 vpr 55.67 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30044 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 17.1 MiB 2.47 735 9712 2823 5738 1151 55.7 MiB 0.14 0.00 3.24697 -108.666 -3.24697 3.24697 1.09 0.00106756 0.000975843 0.0641353 0.0586852 28 1915 21 6.87369e+06 223581 531479. 1839.03 1.22 0.206528 0.184789 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.23 0.08 0.20 -1 -1 0.23 0.0370375 0.0331946 103 85 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.35 vpr 55.42 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.2 MiB 3.66 706 12808 2978 8428 1402 55.8 MiB 0.16 0.00 3.8076 -131.302 -3.8076 3.8076 1.09 0.00107211 0.000984526 0.0823629 0.0756313 34 2315 45 6.87369e+06 223581 618332. 2139.56 2.17 0.296384 0.265999 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.0472277 0.0423147 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.47 vpr 55.53 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30056 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 17.0 MiB 2.84 860 11776 3165 7564 1047 55.9 MiB 0.17 0.00 3.7375 -122.128 -3.7375 3.7375 1.10 0.00106557 0.000977364 0.0758828 0.0695494 32 2014 21 6.87369e+06 251529 586450. 2029.24 1.81 0.246694 0.221449 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0381974 0.0342175 109 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 8.17 vpr 55.33 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30496 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 17.2 MiB 1.31 881 15207 4108 9975 1124 56.1 MiB 0.20 0.00 3.45001 -118.108 -3.45001 3.45001 1.08 0.00108076 0.000981251 0.0772711 0.0706157 34 2251 27 6.87369e+06 447163 618332. 2139.56 2.10 0.303197 0.271195 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.28 0.10 0.22 -1 -1 0.28 0.0418483 0.0374409 116 65 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.90 vpr 55.86 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30164 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 17.5 MiB 4.27 958 19935 5624 11872 2439 56.3 MiB 0.30 0.00 3.64005 -125.972 -3.64005 3.64005 1.10 0.00126759 0.00115968 0.114099 0.104427 34 2786 25 6.87369e+06 489084 618332. 2139.56 2.33 0.386098 0.347284 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0457507 0.0412162 147 58 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.68 vpr 55.86 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30436 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 2.07 1059 21016 6637 11817 2562 56.3 MiB 0.30 0.00 4.34584 -150.842 -4.34584 4.34584 1.09 0.00131981 0.00121017 0.121196 0.110962 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.41 0.293422 0.264923 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0257981 0.0229535 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.55 vpr 55.14 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 17.0 MiB 1.72 791 11776 3380 6895 1501 55.5 MiB 0.15 0.00 3.6364 -112.843 -3.6364 3.6364 1.09 0.000936288 0.000859241 0.0666323 0.0611836 32 2110 22 6.87369e+06 265503 586450. 2029.24 1.27 0.185238 0.166472 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0367869 0.0328828 102 29 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.13 vpr 55.87 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 17.4 MiB 2.40 930 14221 5969 7807 445 56.2 MiB 0.24 0.00 3.52575 -124.171 -3.52575 3.52575 1.09 0.0012662 0.00115733 0.101711 0.093189 36 2582 25 6.87369e+06 293451 648988. 2245.63 2.71 0.385768 0.346627 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.057556 0.05188 145 63 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.91 vpr 55.80 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30136 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 17.2 MiB 4.21 1056 17238 4537 10962 1739 56.1 MiB 0.24 0.00 3.55695 -127.024 -3.55695 3.55695 1.11 0.001255 0.00115171 0.0948652 0.0869606 28 2543 24 6.87369e+06 531006 531479. 1839.03 1.36 0.256654 0.231473 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0575021 0.0516681 148 57 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 8.23 vpr 55.59 MiB 0.10 6992 -1 -1 1 0.03 -1 -1 30060 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 17.0 MiB 2.31 836 17103 4501 10697 1905 55.8 MiB 0.22 0.00 3.09156 -112.02 -3.09156 3.09156 1.09 0.000710133 0.000637189 0.0889999 0.0814541 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.98 0.236503 0.212547 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0455307 0.0407705 117 65 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.64 vpr 55.11 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30064 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 16.6 MiB 0.50 560 9036 3714 4978 344 55.1 MiB 0.10 0.00 2.94056 -94.1681 -2.94056 2.94056 1.09 0.000783026 0.000716865 0.0460634 0.0421699 28 1745 31 6.87369e+06 195634 531479. 1839.03 1.29 0.156846 0.139739 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0279256 0.024847 73 34 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.53 vpr 55.57 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 17.2 MiB 1.00 944 12636 3568 7641 1427 56.0 MiB 0.09 0.00 4.39847 -135.821 -4.39847 4.39847 0.75 0.000405514 0.000366426 0.0312764 0.0282871 32 2277 24 6.87369e+06 237555 586450. 2029.24 1.27 0.17212 0.153687 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0470684 0.0422254 113 64 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.50 vpr 55.74 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 17.5 MiB 0.87 894 19124 5624 10425 3075 56.3 MiB 0.27 0.00 4.20059 -139.885 -4.20059 4.20059 1.09 0.00124239 0.00114166 0.10577 0.0969904 34 2709 23 6.87369e+06 503058 618332. 2139.56 2.33 0.367874 0.330948 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0548456 0.0489475 150 34 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.82 vpr 55.68 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 30436 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 17.9 MiB 2.90 951 19380 5821 10599 2960 56.6 MiB 0.30 0.01 3.81248 -128.436 -3.81248 3.81248 1.09 0.00141379 0.00129372 0.116407 0.106372 30 2850 21 6.87369e+06 558954 556674. 1926.21 5.99 0.483878 0.433257 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0575257 0.0516163 154 124 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.63 vpr 54.97 MiB 0.04 6784 -1 -1 1 0.02 -1 -1 30384 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 16.6 MiB 1.76 600 9219 3759 4898 562 55.1 MiB 0.10 0.00 2.91856 -82.7442 -2.91856 2.91856 1.09 0.000682525 0.000624172 0.0423464 0.0387248 28 1359 19 6.87369e+06 223581 531479. 1839.03 1.17 0.125077 0.111698 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.030344 0.0269479 69 30 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.51 vpr 55.49 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 29980 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.3 MiB 1.26 1038 9757 2635 6591 531 56.1 MiB 0.17 0.00 4.1666 -141.416 -4.1666 4.1666 1.12 0.00115667 0.00106006 0.0639539 0.0586677 36 2506 23 6.87369e+06 293451 648988. 2245.63 5.11 0.440574 0.394699 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0497226 0.044724 141 3 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.38 vpr 54.88 MiB 0.04 6600 -1 -1 1 0.02 -1 -1 30368 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.6 MiB 0.40 506 9516 2238 6770 508 55.1 MiB 0.10 0.00 2.55523 -88.1124 -2.55523 2.55523 1.09 0.000723082 0.000661298 0.0448602 0.0410295 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.74 0.19556 0.174288 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.26 0.06 0.25 -1 -1 0.26 0.0284507 0.0253709 71 3 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.09 vpr 55.37 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30380 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 17.4 MiB 0.73 1092 17964 4627 11625 1712 56.3 MiB 0.27 0.01 4.26205 -149.131 -4.26205 4.26205 1.07 0.00125626 0.00114219 0.101033 0.0926362 32 3060 24 6.87369e+06 503058 586450. 2029.24 2.17 0.316911 0.285577 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0493113 0.0443827 155 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.37 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29904 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 17.2 MiB 0.81 964 9612 2267 6482 863 56.1 MiB 0.18 0.00 3.55269 -121.215 -3.55269 3.55269 1.16 0.00117055 0.00107369 0.0602206 0.0553088 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.47 0.229188 0.206277 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464303 0.0417717 151 3 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.90 vpr 55.73 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 17.4 MiB 0.92 1088 13358 3512 8899 947 56.3 MiB 0.22 0.00 4.2809 -148.724 -4.2809 4.2809 1.15 0.00130508 0.0011942 0.0771661 0.070623 26 3507 43 6.87369e+06 544980 503264. 1741.40 7.81 0.505299 0.452498 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.22 0.20 0.19 -1 -1 0.22 0.0631934 0.0568103 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.53 vpr 55.33 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30004 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 16.7 MiB 0.89 734 6839 1724 4743 372 55.3 MiB 0.11 0.00 3.07332 -108.035 -3.07332 3.07332 1.09 0.000999544 0.000915699 0.0445472 0.0409618 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.99 0.262656 0.234405 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0346242 0.0310576 104 34 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.90 vpr 55.41 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29980 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.97 856 11260 3834 5392 2034 55.4 MiB 0.15 0.00 3.7936 -125.971 -3.7936 3.7936 1.09 0.00100214 0.000918803 0.0682975 0.0626669 32 2233 22 6.87369e+06 251529 586450. 2029.24 1.33 0.196412 0.176629 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.26 0.09 0.23 -1 -1 0.26 0.0365838 0.0328238 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.97 vpr 55.37 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 16.9 MiB 0.99 743 13092 5209 6121 1762 55.5 MiB 0.18 0.00 3.48175 -108.034 -3.48175 3.48175 1.08 0.000945866 0.000867401 0.0758317 0.0695926 28 2217 26 6.87369e+06 265503 531479. 1839.03 1.40 0.202137 0.181724 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0375191 0.033587 104 34 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.87 vpr 55.48 MiB 0.05 6816 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 1.16 861 14700 5460 6955 2285 55.4 MiB 0.20 0.00 3.58201 -129.205 -3.58201 3.58201 1.09 0.00100771 0.000925357 0.0882431 0.0810329 34 2321 22 6.87369e+06 223581 618332. 2139.56 2.10 0.300656 0.270111 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.041105 0.0368557 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 7.11 vpr 55.50 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30064 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 17.3 MiB 0.75 924 11975 3064 7554 1357 55.8 MiB 0.16 0.00 3.50375 -121.402 -3.50375 3.50375 1.09 0.0010336 0.000947459 0.0603185 0.0552863 32 2375 25 6.87369e+06 447163 586450. 2029.24 1.31 0.193541 0.17377 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.046852 0.0418938 119 34 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.60 vpr 55.31 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 29992 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 17.0 MiB 2.62 824 15003 4455 7859 2689 55.7 MiB 0.19 0.00 2.90021 -94.838 -2.90021 2.90021 1.09 0.00102391 0.000936161 0.0761459 0.0696741 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.89 0.288384 0.258102 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0418046 0.0373747 113 61 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.64 vpr 55.81 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30472 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57844 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 17.6 MiB 3.67 1315 20411 5511 12546 2354 56.5 MiB 0.35 0.01 4.25391 -147.758 -4.25391 4.25391 1.11 0.000994086 0.00089225 0.11315 0.103377 28 3619 31 6.87369e+06 614849 531479. 1839.03 3.34 0.317653 0.286604 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.23 0.18 0.20 -1 -1 0.23 0.0631457 0.0569627 184 29 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 8.24 vpr 55.91 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 17.8 MiB 2.78 1049 18419 4848 10881 2690 56.5 MiB 0.26 0.00 3.66825 -130.624 -3.66825 3.66825 1.09 0.0013016 0.00119368 0.103103 0.0944725 32 2652 21 6.87369e+06 544980 586450. 2029.24 1.38 0.267886 0.241812 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.23 0.05 0.12 -1 -1 0.23 0.0192419 0.0172037 154 65 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.37 vpr 55.46 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30344 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 17.0 MiB 3.28 881 17134 5393 9307 2434 55.9 MiB 0.12 0.00 3.56305 -119.83 -3.56305 3.56305 1.13 0.000427417 0.000385003 0.0357597 0.0321821 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.70 0.182776 0.161452 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0180912 0.0159927 116 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.59 vpr 55.79 MiB 0.03 7136 -1 -1 1 0.06 -1 -1 30240 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 17.6 MiB 1.86 1019 8641 2131 5612 898 56.4 MiB 0.17 0.00 3.59121 -120.774 -3.59121 3.59121 1.09 0.00126852 0.00116354 0.0624269 0.0573386 34 2671 24 6.87369e+06 307425 618332. 2139.56 2.23 0.333225 0.299092 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0567265 0.0510417 141 64 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.92 vpr 55.85 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 30376 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 17.6 MiB 4.80 1071 16825 7101 8757 967 56.3 MiB 0.29 0.00 4.97069 -151.888 -4.97069 4.97069 1.09 0.00139951 0.00128299 0.130549 0.119715 34 2813 21 6.87369e+06 307425 618332. 2139.56 2.51 0.423885 0.380841 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0553983 0.0497537 145 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.46 vpr 55.79 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30268 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 17.5 MiB 1.76 980 12175 3299 8119 757 56.4 MiB 0.21 0.00 4.75154 -140.36 -4.75154 4.75154 1.09 0.00132183 0.00121201 0.0894524 0.0820483 34 2589 22 6.87369e+06 307425 618332. 2139.56 2.31 0.353967 0.317724 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0388269 0.034496 141 90 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.43 vpr 55.65 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 17.4 MiB 2.40 1053 19023 5653 10954 2416 56.3 MiB 0.28 0.00 3.64005 -125.414 -3.64005 3.64005 1.09 0.00126159 0.00115487 0.109144 0.0999379 34 2453 25 6.87369e+06 503058 618332. 2139.56 2.21 0.382945 0.34433 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.26 0.12 0.23 -1 -1 0.26 0.0467467 0.0418863 148 64 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.89 vpr 55.62 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30364 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.4 MiB 1.68 1150 19618 5466 12522 1630 56.3 MiB 0.29 0.01 4.1996 -145.707 -4.1996 4.1996 1.09 0.0012939 0.00118752 0.110188 0.100899 34 2754 24 6.87369e+06 531006 618332. 2139.56 4.73 0.533585 0.47835 25762 151098 -1 2446 23 2018 3153 285501 61588 3.6528 3.6528 -145.952 -3.6528 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.042155 0.0375938 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.96 vpr 56.37 MiB 0.04 7308 -1 -1 1 0.03 -1 -1 30416 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 17.9 MiB 3.22 1303 13356 3327 8820 1209 56.5 MiB 0.25 0.01 4.31511 -149.42 -4.31511 4.31511 1.10 0.00157739 0.00143701 0.0893383 0.0817784 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.76 0.292025 0.263153 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.064505 0.0580583 186 96 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.79 vpr 55.19 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.82 908 12636 4255 7048 1333 55.4 MiB 0.20 0.00 3.7654 -130.371 -3.7654 3.7654 1.11 0.00104134 0.000956929 0.0850832 0.0782039 34 2191 32 6.87369e+06 237555 618332. 2139.56 4.23 0.3738 0.334486 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0387821 0.0347372 112 34 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.80 vpr 55.62 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30264 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 17.5 MiB 2.51 1036 19820 6398 10981 2441 56.3 MiB 0.29 0.00 4.25889 -142.345 -4.25889 4.25889 1.10 0.00128943 0.00118258 0.115337 0.105729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.82 0.313251 0.282488 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0564187 0.0507129 152 64 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.56 vpr 55.70 MiB 0.04 7012 -1 -1 1 0.04 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1118 16515 4839 10227 1449 56.2 MiB 0.25 0.01 3.56001 -125.702 -3.56001 3.56001 1.09 0.00127774 0.00117121 0.0965794 0.0885017 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.72 0.225066 0.202782 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0544757 0.0489526 150 63 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.64 vpr 55.59 MiB 0.05 6980 -1 -1 1 0.05 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 1.39 942 16081 4088 11306 687 56.2 MiB 0.25 0.00 4.1996 -144.758 -4.1996 4.1996 1.08 0.00119567 0.00109465 0.105949 0.0973951 34 3051 25 6.87369e+06 293451 618332. 2139.56 5.10 0.434607 0.390707 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0552121 0.0496552 147 3 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.92 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.57 1066 20980 7180 11264 2536 56.4 MiB 0.30 0.00 3.54349 -125.696 -3.54349 3.54349 1.09 0.00131527 0.00120455 0.12241 0.111968 34 2404 23 6.87369e+06 503058 618332. 2139.56 2.26 0.405655 0.364603 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0536573 0.0482127 148 96 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.84 vpr 55.60 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30248 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 17.4 MiB 3.54 1032 19142 4987 12020 2135 56.3 MiB 0.15 0.00 3.61805 -127.505 -3.61805 3.61805 1.07 0.000469101 0.000421996 0.0394933 0.035634 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.21 0.120024 0.105932 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.058743 0.0527504 152 61 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 10.68 vpr 55.95 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 17.6 MiB 2.71 1111 18648 5184 11229 2235 56.5 MiB 0.27 0.01 3.58025 -126.995 -3.58025 3.58025 1.10 0.00130896 0.00119985 0.103603 0.0947876 32 2918 26 6.87369e+06 558954 586450. 2029.24 1.43 0.279397 0.251941 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.25 0.14 0.23 -1 -1 0.25 0.0532971 0.0479126 156 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.05 vpr 55.73 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57744 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 17.5 MiB 0.81 973 12876 3455 7707 1714 56.4 MiB 0.17 0.00 4.3249 -147.802 -4.3249 4.3249 1.09 0.00124571 0.00114332 0.0697132 0.0639375 34 2850 24 6.87369e+06 544980 618332. 2139.56 2.97 0.3407 0.306136 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0502954 0.0452486 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.08 vpr 55.69 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30468 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 17.6 MiB 2.68 1087 15172 3966 9854 1352 56.4 MiB 0.23 0.01 4.1996 -143.047 -4.1996 4.1996 1.10 0.00130014 0.00119103 0.0833329 0.076236 34 2680 28 6.87369e+06 572927 618332. 2139.56 2.46 0.373261 0.335166 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.057636 0.0517813 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 12.59 vpr 55.73 MiB 0.05 7276 -1 -1 1 0.05 -1 -1 30344 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57832 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.89 988 19356 5396 10906 3054 56.5 MiB 0.30 0.01 4.16785 -135.645 -4.16785 4.16785 1.08 0.00135647 0.00123529 0.118891 0.108776 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.47 0.295678 0.266328 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0582534 0.0522297 150 122 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.08 vpr 55.63 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1079 15709 4633 9421 1655 56.4 MiB 0.27 0.00 4.13359 -143.515 -4.13359 4.13359 1.10 0.00136847 0.00125572 0.118955 0.109192 34 3228 24 6.87369e+06 293451 618332. 2139.56 2.52 0.415309 0.373641 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.056652 0.0507683 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.71 vpr 55.23 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 17.0 MiB 0.87 919 15426 4260 9754 1412 55.8 MiB 0.20 0.00 3.51475 -125.544 -3.51475 3.51475 1.09 0.00104438 0.00095742 0.0758532 0.069447 32 2428 31 6.87369e+06 447163 586450. 2029.24 1.25 0.178995 0.159835 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.35 0.13 0.21 -1 -1 0.35 0.0474397 0.0425683 121 34 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.55 vpr 55.68 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.87 953 12980 4579 7047 1354 55.9 MiB 0.21 0.00 3.6884 -132.193 -3.6884 3.6884 1.10 0.00116066 0.00106251 0.092584 0.0847199 32 2548 27 6.87369e+06 223581 586450. 2029.24 1.45 0.243565 0.21887 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0508874 0.045564 112 94 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 9.48 vpr 55.90 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30660 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57672 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1419 16556 4403 10830 1323 56.3 MiB 0.28 0.01 4.99284 -170.715 -4.99284 4.99284 1.09 0.0015163 0.00139071 0.101822 0.0933611 28 3950 45 6.87369e+06 614849 531479. 1839.03 3.80 0.361489 0.325926 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.32 0.17 0.19 -1 -1 0.32 0.0548735 0.0493475 189 65 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 8.58 vpr 55.57 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30268 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 2.52 1069 15831 4027 10006 1798 56.2 MiB 0.24 0.00 3.59121 -127.943 -3.59121 3.59121 1.09 0.0012387 0.00113609 0.0891017 0.0815533 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.67 0.248666 0.224236 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.22 0.16 0.19 -1 -1 0.22 0.0729201 0.0654806 150 34 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 6.41 vpr 55.17 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30312 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 16.9 MiB 0.66 823 15633 5297 7776 2560 55.9 MiB 0.20 0.00 3.51601 -116.196 -3.51601 3.51601 0.97 0.00101503 0.000930347 0.0784269 0.0717989 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.45 0.208534 0.187477 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0425954 0.0380978 116 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.67 vpr 56.05 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30780 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 18.2 MiB 5.50 1193 22455 6528 13018 2909 56.6 MiB 0.35 0.01 4.91264 -167.151 -4.91264 4.91264 1.11 0.00163181 0.00149606 0.141731 0.129909 32 3593 50 6.87369e+06 656770 586450. 2029.24 3.08 0.494372 0.445269 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.25 0.21 0.23 -1 -1 0.25 0.0774819 0.0696756 190 127 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.33 vpr 55.78 MiB 0.07 6992 -1 -1 1 0.03 -1 -1 30324 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 17.5 MiB 2.89 975 19868 5843 10688 3337 56.1 MiB 0.26 0.00 4.28153 -144.516 -4.28153 4.28153 1.09 0.001252 0.00114858 0.105196 0.0964606 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.85 0.320779 0.28915 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0494228 0.04448 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.14 vpr 55.06 MiB 0.05 6700 -1 -1 1 0.03 -1 -1 30248 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.8 MiB 0.60 857 11197 2857 7409 931 55.5 MiB 0.16 0.00 3.64005 -128.736 -3.64005 3.64005 1.08 0.00101226 0.000930229 0.0536142 0.0492483 30 2290 23 6.87369e+06 461137 556674. 1926.21 1.27 0.18241 0.164049 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0392635 0.0352122 123 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.85 vpr 55.84 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30608 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 17.7 MiB 2.45 1249 21169 5887 12519 2763 56.4 MiB 0.33 0.01 4.9297 -168.732 -4.9297 4.9297 1.09 0.00145751 0.00134042 0.122853 0.11284 28 3487 31 6.87369e+06 628823 531479. 1839.03 2.27 0.333037 0.300399 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.20 0.11 0.10 -1 -1 0.20 0.0270354 0.0239863 189 34 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.56 vpr 55.43 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.88 806 12292 2857 8871 564 55.4 MiB 0.18 0.00 3.7764 -134.344 -3.7764 3.7764 1.09 0.00100204 0.000919886 0.0740699 0.0679893 34 2200 24 6.87369e+06 223581 618332. 2139.56 2.03 0.288329 0.258602 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442734 0.0396596 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.70 vpr 55.35 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30260 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 17.0 MiB 2.17 719 10463 2628 6946 889 55.7 MiB 0.15 0.00 3.56001 -114.458 -3.56001 3.56001 1.09 0.00101289 0.000929414 0.0514505 0.0471392 28 2094 21 6.87369e+06 461137 531479. 1839.03 1.35 0.177602 0.159309 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0445794 0.0398789 118 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.87 vpr 55.88 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30300 -1 -1 35 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 17.3 MiB 3.13 1008 14550 3923 8443 2184 56.2 MiB 0.22 0.00 3.54707 -114.227 -3.54707 3.54707 1.09 0.00124764 0.00114373 0.0860133 0.0788152 34 2543 22 6.87369e+06 489084 618332. 2139.56 2.16 0.348064 0.312387 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0506559 0.04548 141 88 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.96 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.6 MiB 2.01 854 12175 2685 7576 1914 56.4 MiB 0.17 0.00 4.2388 -146.065 -4.2388 4.2388 1.08 0.00130557 0.00119751 0.088378 0.0810944 34 2806 28 6.87369e+06 293451 618332. 2139.56 2.72 0.3845 0.345708 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0624378 0.056084 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.62 vpr 55.56 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.8 MiB 3.66 1100 18901 5336 11603 1962 56.5 MiB 0.28 0.01 4.27679 -150.534 -4.27679 4.27679 1.13 0.00133257 0.00121361 0.109351 0.100212 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.49 0.275835 0.248934 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.25 0.13 0.22 -1 -1 0.25 0.0577267 0.0519657 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 9.00 vpr 55.22 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30304 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 17.5 MiB 2.87 825 17191 6233 8742 2216 56.2 MiB 0.22 0.00 3.60705 -126.657 -3.60705 3.60705 1.09 0.00112453 0.00102156 0.0892121 0.0815829 36 2048 23 6.87369e+06 461137 648988. 2245.63 2.19 0.327152 0.293305 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0455333 0.040803 123 65 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.56 vpr 55.48 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 17.2 MiB 3.65 738 4456 873 3135 448 55.8 MiB 0.09 0.00 3.6994 -119.902 -3.6994 3.6994 1.11 0.00111945 0.00102554 0.0312417 0.0286211 34 2217 18 6.87369e+06 251529 618332. 2139.56 2.18 0.257052 0.228718 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0473432 0.0423573 108 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.76 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 17.4 MiB 2.81 914 16740 4391 9932 2417 56.2 MiB 0.25 0.00 3.59605 -116.379 -3.59605 3.59605 1.09 0.0012127 0.00111184 0.0962897 0.0883068 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.93 0.294224 0.265012 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0456676 0.0410751 143 60 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.24 vpr 55.54 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30236 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 17.4 MiB 1.51 905 12191 3346 7959 886 56.1 MiB 0.18 0.00 4.19891 -125.962 -4.19891 4.19891 1.08 0.00107909 0.0009876 0.0656185 0.0601336 26 2593 24 6.87369e+06 489084 503264. 1741.40 5.06 0.356639 0.319114 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.22 0.17 0.19 -1 -1 0.22 0.0581896 0.0521135 139 34 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 8.02 vpr 55.38 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30008 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 16.9 MiB 2.30 882 11432 3518 6484 1430 55.9 MiB 0.17 0.00 3.7324 -126.153 -3.7324 3.7324 1.09 0.00106159 0.00096851 0.0732226 0.0671212 30 2191 20 6.87369e+06 251529 556674. 1926.21 1.27 0.204554 0.183942 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.24 0.10 0.22 -1 -1 0.24 0.0434814 0.0389239 110 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.81 vpr 55.64 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30248 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 17.0 MiB 3.00 904 14256 4718 7453 2085 55.7 MiB 0.21 0.00 3.6144 -123.374 -3.6144 3.6144 1.09 0.00113787 0.00104103 0.0955617 0.0874761 34 2227 20 6.87369e+06 237555 618332. 2139.56 2.01 0.329273 0.295005 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0474534 0.0424574 110 91 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.15 vpr 55.70 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30092 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.80 962 16804 5215 8614 2975 55.7 MiB 0.24 0.00 4.24789 -140.354 -4.24789 4.24789 1.09 0.00116145 0.00106722 0.0873249 0.0801762 28 3199 26 6.87369e+06 517032 531479. 1839.03 2.28 0.250761 0.22665 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.23 0.13 0.19 -1 -1 0.23 0.0437922 0.039451 151 4 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.36 vpr 55.75 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30600 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.6 MiB 3.79 1093 19380 5712 11198 2470 56.4 MiB 0.28 0.00 4.29189 -149.386 -4.29189 4.29189 1.10 0.00130819 0.00119912 0.110505 0.101271 28 2995 25 6.87369e+06 531006 531479. 1839.03 2.01 0.285741 0.25811 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.23 0.17 0.20 -1 -1 0.23 0.061956 0.0556043 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 10.38 vpr 55.95 MiB 0.06 7120 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57868 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 3.49 1146 17256 4889 10338 2029 56.5 MiB 0.25 0.01 4.30289 -150.744 -4.30289 4.30289 1.13 0.00131452 0.00120538 0.10021 0.0917902 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.49 0.271869 0.245314 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0539159 0.0485512 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.93 vpr 55.87 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1114 16491 4519 10066 1906 56.4 MiB 0.24 0.00 4.16249 -142.489 -4.16249 4.16249 1.09 0.00128902 0.001182 0.0919472 0.0842052 28 3159 33 6.87369e+06 544980 531479. 1839.03 2.22 0.279039 0.251149 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0551732 0.049603 152 65 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 9.14 vpr 55.57 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30320 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 17.0 MiB 2.33 746 10406 2932 6420 1054 55.6 MiB 0.08 0.00 3.7324 -121.378 -3.7324 3.7324 0.85 0.000372419 0.000336969 0.0239254 0.0216664 32 2264 21 6.87369e+06 265503 586450. 2029.24 1.06 0.127374 0.113439 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0379553 0.0340229 110 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.47 vpr 55.76 MiB 0.09 7120 -1 -1 1 0.03 -1 -1 30244 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 17.6 MiB 2.86 980 15709 4819 8970 1920 56.2 MiB 0.24 0.00 4.23999 -140.261 -4.23999 4.23999 1.09 0.00123933 0.00113657 0.108104 0.0991652 30 2357 25 6.87369e+06 321398 556674. 1926.21 1.40 0.273552 0.247045 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.048876 0.0439815 140 63 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.80 vpr 55.66 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30704 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 17.8 MiB 4.94 1155 15540 3963 10188 1389 56.4 MiB 0.25 0.01 4.23385 -146.284 -4.23385 4.23385 1.10 0.00143231 0.00131125 0.0918142 0.0839438 36 2614 23 6.87369e+06 600875 648988. 2245.63 5.31 0.553709 0.495023 26050 158493 -1 2236 22 1922 3310 238312 53285 3.7984 3.7984 -145.312 -3.7984 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0606896 0.0544609 158 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 8.54 vpr 55.84 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30672 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 17.5 MiB 1.13 1029 18273 5989 9373 2911 56.4 MiB 0.28 0.00 4.26989 -143.564 -4.26989 4.26989 1.10 0.0013292 0.00121843 0.115224 0.105399 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.96 0.29021 0.261855 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0587209 0.0527411 149 94 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.68 vpr 55.72 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30296 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 17.4 MiB 2.13 942 16921 5030 8706 3185 56.3 MiB 0.26 0.00 3.63595 -118.056 -3.63595 3.63595 1.11 0.00129147 0.0011745 0.104866 0.0959652 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.43 0.26805 0.241618 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0544816 0.0490122 141 92 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.33 vpr 55.72 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 4.20 1087 14593 4252 9147 1194 56.4 MiB 0.25 0.00 4.1996 -148.308 -4.1996 4.1996 1.09 0.00131185 0.00119979 0.104756 0.0960073 34 3260 29 6.87369e+06 293451 618332. 2139.56 2.76 0.405476 0.3646 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.27 0.17 0.25 -1 -1 0.27 0.0585466 0.0526476 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.52 vpr 55.64 MiB 0.05 7192 -1 -1 1 0.05 -1 -1 30256 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 17.5 MiB 2.06 943 12751 3363 8405 983 56.3 MiB 0.19 0.00 3.54105 -112.818 -3.54105 3.54105 1.09 0.00123142 0.00112562 0.0748271 0.0684231 26 2618 24 6.87369e+06 503058 503264. 1741.40 1.38 0.234725 0.211018 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0545144 0.0487992 138 88 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.53 vpr 55.13 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.57 862 12292 3174 7904 1214 55.4 MiB 0.18 0.00 3.7104 -131.958 -3.7104 3.7104 1.12 0.00100362 0.000922219 0.0746089 0.0685757 34 2313 18 6.87369e+06 223581 618332. 2139.56 2.03 0.28088 0.25212 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.03976 0.0356894 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.39 vpr 55.92 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 4.26 1088 19841 5443 12522 1876 56.2 MiB 0.29 0.00 4.3249 -149.309 -4.3249 4.3249 0.97 0.00131232 0.00120317 0.114438 0.104874 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.47 0.28609 0.258578 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0608695 0.0547121 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.36 vpr 55.89 MiB 0.06 7144 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 3.73 1071 15151 5130 8107 1914 56.2 MiB 0.25 0.00 4.2388 -148.068 -4.2388 4.2388 1.11 0.00132256 0.00121264 0.110844 0.101689 36 2570 23 6.87369e+06 293451 648988. 2245.63 2.42 0.386212 0.348119 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0568759 0.051179 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.72 vpr 55.30 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30408 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 3.30 885 16708 4981 9424 2303 55.7 MiB 0.21 0.00 3.50501 -121.209 -3.50501 3.50501 1.09 0.00103825 0.000950236 0.08374 0.0765164 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.96 0.300484 0.268971 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0441301 0.0394684 112 55 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.58 vpr 55.52 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.1 MiB 0.81 723 6960 1528 4773 659 55.7 MiB 0.11 0.00 3.7434 -125.643 -3.7434 3.7434 1.09 0.000977327 0.000897497 0.0418375 0.0384254 32 2245 24 6.87369e+06 237555 586450. 2029.24 1.29 0.168793 0.151451 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.26 0.10 0.22 -1 -1 0.26 0.0377807 0.0338349 112 4 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.25 vpr 55.90 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30144 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1023 18795 5447 10788 2560 56.2 MiB 0.27 0.00 4.30799 -144.78 -4.30799 4.30799 1.09 0.00125949 0.00115511 0.107386 0.0984442 28 2603 22 6.87369e+06 489084 531479. 1839.03 1.36 0.26606 0.240151 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0483096 0.0434119 144 59 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 8.97 vpr 55.94 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 17.5 MiB 1.11 1094 18745 5603 10775 2367 56.4 MiB 0.29 0.00 4.21185 -141.009 -4.21185 4.21185 1.11 0.00128774 0.00117989 0.11907 0.109052 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.84 0.314912 0.284099 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0590969 0.0530692 142 88 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.58 vpr 55.80 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.7 MiB 0.82 1329 17642 5677 9392 2573 56.4 MiB 0.30 0.01 4.98719 -165.596 -4.98719 4.98719 1.09 0.00136193 0.00125091 0.100963 0.0927292 34 3730 48 6.87369e+06 572927 618332. 2139.56 4.55 0.458307 0.413016 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0607563 0.0548514 183 3 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.65 vpr 55.59 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 17.3 MiB 2.48 1005 13300 3782 8501 1017 56.1 MiB 0.20 0.00 3.59605 -120.715 -3.59605 3.59605 1.09 0.000850777 0.000752712 0.0744596 0.067962 34 2294 27 6.87369e+06 447163 618332. 2139.56 2.19 0.350218 0.313814 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0455673 0.0409405 141 59 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 6.02 vpr 55.20 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30552 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 16.7 MiB 0.71 735 12247 4571 5926 1750 55.2 MiB 0.15 0.00 3.6866 -109.378 -3.6866 3.6866 1.10 0.000920412 0.000844213 0.0691612 0.0634772 32 1771 18 6.87369e+06 279477 586450. 2029.24 1.22 0.180616 0.162515 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0360551 0.0322131 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 11.40 vpr 56.18 MiB 0.03 7320 -1 -1 1 0.04 -1 -1 30500 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 18.0 MiB 2.43 1290 11856 2585 8478 793 56.7 MiB 0.22 0.01 4.1886 -144.868 -4.1886 4.1886 1.09 0.00155832 0.00142839 0.0795426 0.0728919 30 3626 23 6.87369e+06 586901 556674. 1926.21 2.08 0.280669 0.252705 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.24 0.15 0.21 -1 -1 0.24 0.0685829 0.0616929 184 95 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 10.85 vpr 55.87 MiB 0.07 7372 -1 -1 1 0.03 -1 -1 30360 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 17.6 MiB 3.37 874 9914 2276 6234 1404 56.4 MiB 0.17 0.00 4.91157 -150.663 -4.91157 4.91157 1.09 0.00139285 0.00127718 0.0768254 0.0704378 34 2604 24 6.87369e+06 321398 618332. 2139.56 3.12 0.379643 0.340289 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0593029 0.0531926 144 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.20 vpr 55.56 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 17.1 MiB 3.07 802 14356 5267 6628 2461 56.0 MiB 0.23 0.00 4.598 -126.496 -4.598 4.598 1.09 0.00119132 0.0010923 0.102433 0.0938666 34 2153 24 6.87369e+06 223581 618332. 2139.56 2.11 0.341766 0.306251 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03469 0.0311654 107 89 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 6.72 vpr 55.86 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 17.4 MiB 0.91 1114 14723 4652 8968 1103 56.3 MiB 0.23 0.00 4.1955 -143.003 -4.1955 4.1955 1.09 0.00121566 0.00111521 0.0828473 0.0759451 28 2955 24 6.87369e+06 475111 531479. 1839.03 2.21 0.24866 0.224311 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.31 0.15 0.17 -1 -1 0.31 0.0463086 0.0416025 147 34 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.14 vpr 55.91 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30488 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 17.8 MiB 1.86 1006 19865 6118 9930 3817 56.6 MiB 0.30 0.01 4.28153 -140.004 -4.28153 4.28153 1.08 0.00145131 0.00132535 0.122994 0.112698 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.85 0.448514 0.403318 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0699357 0.063202 176 64 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.81 vpr 55.66 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 17.4 MiB 1.78 1085 17873 5357 10009 2507 56.3 MiB 0.26 0.00 3.50639 -115.998 -3.50639 3.50639 1.03 0.00120742 0.00110619 0.0991312 0.0906683 34 2647 22 6.87369e+06 503058 618332. 2139.56 2.39 0.360665 0.324009 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0508431 0.0456254 144 61 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 10.80 vpr 55.95 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30428 -1 -1 46 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57760 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 17.6 MiB 2.50 1127 20887 5685 13197 2005 56.4 MiB 0.30 0.01 4.26133 -148.826 -4.26133 4.26133 1.13 0.00132608 0.00121627 0.108511 0.0993462 28 2839 24 6.87369e+06 642796 531479. 1839.03 4.62 0.48434 0.434526 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0604467 0.0542994 160 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.92 vpr 56.01 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 17.5 MiB 2.72 1115 19606 5308 11826 2472 56.4 MiB 0.22 0.00 3.52575 -126.542 -3.52575 3.52575 1.09 0.00130927 0.00120004 0.0773502 0.0705829 26 2952 46 6.87369e+06 586901 503264. 1741.40 5.33 0.489945 0.438441 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0604928 0.0544232 157 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.85 vpr 55.21 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30244 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 16.8 MiB 1.59 669 12808 5105 6141 1562 55.3 MiB 0.17 0.00 3.73366 -117.212 -3.73366 3.73366 1.09 0.000986938 0.000905567 0.075913 0.0696974 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.88 0.283186 0.253465 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0384609 0.0343803 107 34 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.66 vpr 55.68 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 29896 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 2.15 808 7256 1653 5365 238 55.8 MiB 0.12 0.00 4.2805 -117.484 -4.2805 4.2805 1.08 0.00106351 0.000973242 0.0469331 0.0429648 34 2056 25 6.87369e+06 237555 618332. 2139.56 2.16 0.27409 0.244396 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0278174 0.0250143 102 82 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.91 vpr 55.51 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 17.4 MiB 1.51 1136 19618 6151 11073 2394 56.3 MiB 0.16 0.00 4.1886 -141.394 -4.1886 4.1886 0.74 0.00044562 0.000402307 0.0387907 0.0349967 28 2901 39 6.87369e+06 544980 531479. 1839.03 7.23 0.449361 0.401422 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0507999 0.0457325 152 34 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.13 vpr 55.48 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30256 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 16.8 MiB 3.01 794 17103 5256 9538 2309 55.5 MiB 0.20 0.00 3.45975 -106.144 -3.45975 3.45975 1.09 0.000979672 0.000896522 0.08238 0.0754043 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.88 0.228654 0.204946 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.21 0.15 0.18 -1 -1 0.21 0.0463009 0.0412794 108 56 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.77 vpr 55.31 MiB 0.03 6876 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.9 MiB 3.03 809 12464 3077 8852 535 55.6 MiB 0.18 0.00 3.7104 -131.395 -3.7104 3.7104 1.09 0.00105807 0.000969767 0.0795555 0.0729274 34 2309 26 6.87369e+06 223581 618332. 2139.56 2.09 0.310146 0.27807 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0454597 0.0407274 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.81 vpr 55.83 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30248 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 2.40 1003 13598 3664 8482 1452 56.1 MiB 0.21 0.00 3.61625 -124.489 -3.61625 3.61625 1.10 0.00126571 0.00115235 0.0810274 0.074193 34 2208 22 6.87369e+06 489084 618332. 2139.56 2.04 0.343567 0.308435 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.25 0.11 0.12 -1 -1 0.25 0.0499151 0.0449128 146 64 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.54 vpr 55.40 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 16.9 MiB 2.72 698 11402 3727 5924 1751 55.5 MiB 0.16 0.00 3.33623 -109.833 -3.33623 3.33623 1.09 0.00101284 0.000927695 0.0709334 0.0650056 26 2239 28 6.87369e+06 223581 503264. 1741.40 1.39 0.210077 0.188495 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0414317 0.0370302 103 55 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 8.03 vpr 55.85 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30336 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1019 17256 4700 9815 2741 56.3 MiB 0.27 0.00 3.59195 -122.625 -3.59195 3.59195 1.12 0.00127267 0.00117015 0.103855 0.0954727 32 2782 36 6.87369e+06 517032 586450. 2029.24 1.50 0.29674 0.268021 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.26 0.12 0.23 -1 -1 0.26 0.052765 0.0473424 143 65 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.71 vpr 55.93 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30184 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 17.4 MiB 3.20 929 10336 2368 6764 1204 56.3 MiB 0.17 0.00 3.59605 -120.102 -3.59605 3.59605 1.09 0.00133545 0.00122132 0.0616196 0.0564357 32 2620 21 6.87369e+06 544980 586450. 2029.24 1.37 0.234426 0.211059 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0590926 0.0530465 151 93 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.88 vpr 55.40 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 17.1 MiB 2.45 812 13206 3975 7418 1813 56.0 MiB 0.19 0.00 3.26897 -114.681 -3.26897 3.26897 1.10 0.00108392 0.000993278 0.0850913 0.078055 34 2174 27 6.87369e+06 237555 618332. 2139.56 2.02 0.321308 0.287997 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0448786 0.0401443 110 61 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.76 vpr 55.59 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 923 10056 2840 6443 773 55.9 MiB 0.15 0.00 3.6884 -128.712 -3.6884 3.6884 1.13 0.000405948 0.000366752 0.0511513 0.0463937 32 2547 22 6.87369e+06 223581 586450. 2029.24 1.26 0.191901 0.171803 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.26 0.13 0.23 -1 -1 0.26 0.0483064 0.0432727 112 63 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.35 vpr 55.73 MiB 0.07 7076 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 17.4 MiB 2.74 1032 14988 3846 9829 1313 56.1 MiB 0.22 0.00 4.29009 -147.998 -4.29009 4.29009 1.09 0.00130278 0.00119408 0.0834234 0.0763957 34 2540 20 6.87369e+06 558954 618332. 2139.56 4.29 0.428636 0.38496 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0571672 0.0512904 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 8.48 vpr 55.82 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 17.5 MiB 2.21 880 11759 2826 8215 718 56.3 MiB 0.18 0.00 3.59605 -112.745 -3.59605 3.59605 1.08 0.00119842 0.00109756 0.0680043 0.0622394 26 2672 41 6.87369e+06 475111 503264. 1741.40 2.51 0.259521 0.232995 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.22 0.14 0.19 -1 -1 0.22 0.0530434 0.0476059 140 62 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.66 vpr 56.02 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58116 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 17.8 MiB 4.91 930 19136 5654 10352 3130 56.8 MiB 0.29 0.00 4.25669 -144.754 -4.25669 4.25669 1.09 0.00145576 0.00132467 0.117157 0.107151 34 2868 25 6.87369e+06 558954 618332. 2139.56 2.66 0.430571 0.386365 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0642893 0.0576968 157 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.28 vpr 55.14 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 0.66 801 6501 1452 4525 524 55.3 MiB 0.10 0.00 3.09052 -106.923 -3.09052 3.09052 1.10 0.000927716 0.000847719 0.0378828 0.0348177 32 2327 32 6.87369e+06 223581 586450. 2029.24 1.28 0.170328 0.15258 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.25 0.09 0.24 -1 -1 0.25 0.0368146 0.0329258 104 4 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.28 vpr 55.93 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30404 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 17.4 MiB 1.56 977 17961 5555 9821 2585 56.3 MiB 0.27 0.00 4.24789 -140.827 -4.24789 4.24789 1.07 0.00131904 0.00120688 0.106961 0.0978882 34 2366 23 6.87369e+06 517032 618332. 2139.56 2.23 0.38647 0.347304 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0455769 0.0410556 147 92 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.11 vpr 55.75 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.3 MiB 3.97 961 12808 4157 6979 1672 56.1 MiB 0.19 0.00 3.7416 -135.274 -3.7416 3.7416 1.08 0.00118931 0.00108583 0.0914608 0.0837769 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.99 0.330419 0.296459 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0505681 0.0453162 114 96 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.59 vpr 55.62 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30140 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 17.7 MiB 2.67 1013 13117 3136 9263 718 56.4 MiB 0.20 0.00 3.62407 -127.528 -3.62407 3.62407 1.12 0.00129711 0.00118762 0.0743217 0.0680471 28 2551 39 6.87369e+06 544980 531479. 1839.03 4.91 0.492159 0.440991 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0586254 0.0526483 153 65 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.36 vpr 56.08 MiB 0.05 7344 -1 -1 1 0.04 -1 -1 30636 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 18.0 MiB 4.25 1138 14475 3597 10051 827 56.5 MiB 0.24 0.01 4.97494 -166.026 -4.97494 4.97494 1.11 0.00157429 0.00144372 0.0902171 0.0826053 32 3530 43 6.87369e+06 656770 586450. 2029.24 3.19 0.449144 0.403601 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.25 0.18 0.23 -1 -1 0.25 0.0697728 0.0627571 190 96 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.19 vpr 55.13 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30060 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 16.5 MiB 1.88 613 9036 2242 6211 583 55.1 MiB 0.10 0.00 2.94746 -92.2629 -2.94746 2.94746 1.08 0.000826164 0.000756074 0.0485089 0.0443973 32 1520 24 6.87369e+06 195634 586450. 2029.24 1.18 0.154719 0.137871 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.27 0.06 0.23 -1 -1 0.27 0.0270632 0.0241373 72 56 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 6.80 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30400 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 17.0 MiB 0.88 764 12120 4745 5717 1658 55.6 MiB 0.17 0.00 3.7196 -120.247 -3.7196 3.7196 1.08 0.00100245 0.000919293 0.073641 0.0676216 32 2131 23 6.87369e+06 251529 586450. 2029.24 1.32 0.208901 0.187767 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0417964 0.0374989 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.36 vpr 55.49 MiB 0.06 6788 -1 -1 1 0.03 -1 -1 29972 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 1.20 884 12464 4265 6183 2016 55.8 MiB 0.19 0.00 3.52575 -127.584 -3.52575 3.52575 1.12 0.00105951 0.000971489 0.0798827 0.0732865 34 2591 20 6.87369e+06 223581 618332. 2139.56 2.20 0.302826 0.271749 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0454407 0.040734 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.55 vpr 55.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30220 -1 -1 37 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 16.8 MiB 0.70 742 15004 4316 8330 2358 55.4 MiB 0.16 0.00 3.44875 -93.4127 -3.44875 3.44875 1.09 0.000854018 0.000783927 0.0607647 0.0557098 30 1638 20 6.87369e+06 517032 556674. 1926.21 1.16 0.166854 0.149702 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0363373 0.0323751 105 34 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 9.00 vpr 55.77 MiB 0.05 7084 -1 -1 1 0.04 -1 -1 30456 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.59 1035 11989 3061 8035 893 56.4 MiB 0.22 0.00 4.14459 -143.245 -4.14459 4.14459 1.09 0.0013562 0.001244 0.0907648 0.0832284 34 2922 23 6.87369e+06 293451 618332. 2139.56 2.47 0.381062 0.342383 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0540051 0.0485936 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.25 vpr 56.01 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30368 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 17.5 MiB 2.48 969 12394 3038 8536 820 56.4 MiB 0.22 0.00 3.62425 -121.977 -3.62425 3.62425 1.09 0.0013258 0.00121371 0.0731911 0.0669092 34 2208 23 6.87369e+06 558954 618332. 2139.56 2.12 0.348828 0.313058 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0563087 0.050581 151 94 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.98 vpr 55.70 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30696 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 17.7 MiB 1.51 1383 18363 6134 9531 2698 56.5 MiB 0.29 0.00 5.11247 -173.262 -5.11247 5.11247 1.11 0.00136889 0.00125589 0.123562 0.113312 36 3373 46 6.89349e+06 408721 648988. 2245.63 2.32 0.406356 0.365566 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0544409 0.0490083 192 96 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 8.04 vpr 55.62 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 17.3 MiB 1.40 1338 16411 5641 8181 2589 56.2 MiB 0.27 0.00 5.22297 -160.634 -5.22297 5.22297 1.10 0.00128627 0.001179 0.107 0.0981205 36 3246 31 6.89349e+06 408721 648988. 2245.63 3.18 0.406578 0.365169 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.059088 0.0531184 177 91 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.84 vpr 55.46 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1277 15533 4267 9018 2248 56.2 MiB 0.25 0.00 4.0146 -140.879 -4.0146 4.0146 1.11 0.00124275 0.00114037 0.101139 0.0928326 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.72 0.344117 0.309048 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0543935 0.0488254 167 65 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.58 vpr 55.38 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1071 16718 5447 9404 1867 55.8 MiB 0.26 0.00 4.53305 -141.516 -4.53305 4.53305 1.09 0.00115246 0.00105837 0.104988 0.0964274 34 2586 28 6.89349e+06 352346 618332. 2139.56 2.31 0.360871 0.324595 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.25 0.12 0.12 -1 -1 0.25 0.0544238 0.0491291 148 34 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.81 vpr 55.50 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30176 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.80 1361 14518 4265 8140 2113 56.1 MiB 0.25 0.00 5.03124 -172.909 -5.03124 5.03124 1.09 0.0012536 0.00115063 0.096697 0.088769 36 3336 26 6.89349e+06 338252 648988. 2245.63 3.02 0.368821 0.331917 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.051755 0.0466229 163 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.74 vpr 55.73 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30272 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 17.3 MiB 1.67 1499 20359 6047 11800 2512 56.2 MiB 0.31 0.00 4.44565 -148.532 -4.44565 4.44565 1.11 0.00130863 0.00119477 0.111076 0.101693 34 3677 25 6.89349e+06 577847 618332. 2139.56 2.42 0.394564 0.354635 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0602492 0.0541408 179 64 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 7.07 vpr 55.34 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.40 730 14528 4147 9388 993 55.4 MiB 0.18 0.00 3.83226 -109.129 -3.83226 3.83226 1.09 0.00092199 0.000846013 0.080196 0.073594 30 2039 26 6.89349e+06 295971 556674. 1926.21 1.26 0.203473 0.183027 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.0348895 0.0312113 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.95 vpr 55.32 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30068 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.0 MiB 0.71 921 14273 4335 7347 2591 55.9 MiB 0.19 0.00 3.53335 -112.01 -3.53335 3.53335 1.12 0.00110927 0.00101633 0.0732409 0.067169 34 2397 23 6.89349e+06 493284 618332. 2139.56 2.27 0.310785 0.278997 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0435769 0.0392277 141 4 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.91 vpr 55.37 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30036 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 16.9 MiB 1.45 1141 14358 3961 8348 2049 55.8 MiB 0.21 0.00 3.63141 -123.531 -3.63141 3.63141 1.08 0.00108759 0.00099754 0.0883532 0.0809961 34 2852 46 6.89349e+06 295971 618332. 2139.56 2.15 0.358428 0.320911 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0178254 0.0158153 140 85 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 8.38 vpr 55.60 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30172 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 16.8 MiB 1.54 873 6923 1573 5100 250 55.4 MiB 0.13 0.00 3.71245 -131.003 -3.71245 3.71245 1.12 0.00106001 0.000971926 0.0437538 0.0401808 34 2505 33 6.89349e+06 267783 618332. 2139.56 2.19 0.287155 0.256707 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.043448 0.038937 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 8.12 vpr 55.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 29956 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.85 942 6923 1677 4944 302 55.8 MiB 0.12 0.00 4.3965 -138.695 -4.3965 4.3965 1.09 0.00105606 0.000968547 0.0434979 0.0398943 34 2532 21 6.89349e+06 295971 618332. 2139.56 2.02 0.265101 0.236665 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0404029 0.0362732 135 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.70 vpr 55.42 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 17.1 MiB 1.46 883 15822 6326 7340 2156 56.0 MiB 0.21 0.00 3.8129 -121.35 -3.8129 3.8129 1.09 0.00107698 0.000986947 0.0956625 0.0876655 36 2401 21 6.89349e+06 281877 648988. 2245.63 2.21 0.208253 0.185991 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.28 0.08 0.26 -1 -1 0.28 0.0349059 0.0313245 135 65 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.61 vpr 55.43 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30156 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 17.3 MiB 1.18 987 17513 5731 7853 3929 56.2 MiB 0.24 0.00 4.23419 -140.25 -4.23419 4.23419 1.09 0.00125968 0.0011549 0.114865 0.105364 38 3008 43 6.89349e+06 352346 678818. 2348.85 5.66 0.434431 0.390421 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0517175 0.0465408 161 58 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.25 vpr 55.73 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30324 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1162 11063 2970 6995 1098 56.2 MiB 0.20 0.00 5.02024 -166.562 -5.02024 5.02024 1.09 0.00130709 0.00119856 0.0738583 0.0677701 36 3019 23 6.89349e+06 394628 648988. 2245.63 5.11 0.513472 0.460421 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0524035 0.0472601 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.28 vpr 55.11 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 16.9 MiB 1.28 754 11296 2879 7697 720 55.4 MiB 0.14 0.00 3.61645 -112 -3.61645 3.61645 1.09 0.000927892 0.000851206 0.061432 0.056349 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.56 0.168444 0.149699 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0382689 0.0342084 112 29 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.65 vpr 55.64 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1259 17315 5682 9212 2421 56.0 MiB 0.30 0.00 4.31019 -146.5 -4.31019 4.31019 1.08 0.00130856 0.00119838 0.118818 0.108724 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.93 0.421214 0.378867 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.26 0.16 0.25 -1 -1 0.26 0.0559457 0.0503326 174 63 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 8.15 vpr 55.36 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30088 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 17.5 MiB 1.12 1183 12365 3291 7811 1263 56.2 MiB 0.21 0.00 3.69045 -130.871 -3.69045 3.69045 1.09 0.00124759 0.00114426 0.0812765 0.0745712 34 2840 24 6.89349e+06 352346 618332. 2139.56 2.09 0.350162 0.314537 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0430797 0.0387803 160 57 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 8.81 vpr 55.70 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 29980 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1015 15395 4903 8010 2482 55.8 MiB 0.23 0.00 3.61051 -123.557 -3.61051 3.61051 1.09 0.00110378 0.00101189 0.0930561 0.0852333 38 2435 45 6.89349e+06 310065 678818. 2348.85 2.16 0.329983 0.295801 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0436179 0.0391263 139 65 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.15 vpr 54.88 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30008 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 16.6 MiB 0.91 569 8227 1998 5670 559 55.2 MiB 0.09 0.00 3.06366 -95.1937 -3.06366 3.06366 1.08 0.000785957 0.000719875 0.0417056 0.0382333 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.72 0.19894 0.176349 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0306987 0.0272957 85 34 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 8.29 vpr 55.26 MiB 0.07 7028 -1 -1 1 0.03 -1 -1 30204 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.25 1101 13663 4048 7780 1835 55.9 MiB 0.20 0.00 4.32835 -147.32 -4.32835 4.32835 1.09 0.00108544 0.000994356 0.0826283 0.075713 34 2756 25 6.89349e+06 310065 618332. 2139.56 2.20 0.31735 0.28424 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0428532 0.0383767 141 64 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 7.61 vpr 55.39 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30128 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 17.2 MiB 0.88 1052 20112 6009 11047 3056 56.0 MiB 0.28 0.00 4.67003 -155.404 -4.67003 4.67003 1.09 0.00122759 0.00112697 0.104547 0.0958651 34 2792 26 6.89349e+06 563754 618332. 2139.56 2.25 0.372358 0.335067 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0482795 0.0434386 166 34 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.24 vpr 55.65 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30424 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 17.7 MiB 1.19 1507 16511 4972 9774 1765 56.6 MiB 0.28 0.00 4.34661 -147.62 -4.34661 4.34661 1.09 0.00141635 0.00129871 0.11316 0.103747 36 3423 27 6.89349e+06 436909 648988. 2245.63 2.45 0.425235 0.381742 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0604197 0.0542048 201 124 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 7.23 vpr 54.97 MiB 0.04 6844 -1 -1 1 0.02 -1 -1 30416 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 16.4 MiB 1.24 692 10476 3888 5359 1229 55.0 MiB 0.11 0.00 2.84541 -81.5212 -2.84541 2.84541 1.08 0.000681952 0.000623278 0.0465168 0.0425616 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.11 0.142382 0.127156 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0200953 0.0179743 77 30 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.81 vpr 55.14 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30068 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.0 MiB 1.04 1016 9571 2543 6414 614 55.6 MiB 0.16 0.00 4.12784 -139.243 -4.12784 4.12784 1.09 0.00116065 0.0010666 0.0625346 0.0574674 30 2786 37 6.89349e+06 295971 556674. 1926.21 6.83 0.390306 0.34993 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.25 0.12 0.21 -1 -1 0.25 0.0535346 0.0481575 141 3 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.13 vpr 54.64 MiB 0.04 6604 -1 -1 1 0.03 -1 -1 30372 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.4 MiB 0.32 514 9356 2285 6456 615 54.8 MiB 0.10 0.00 2.43188 -86.7872 -2.43188 2.43188 1.09 0.000727314 0.000665536 0.0442692 0.0405313 28 1509 16 6.89349e+06 169126 531479. 1839.03 1.17 0.12814 0.114784 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.23 0.07 0.21 -1 -1 0.23 0.0271462 0.0242241 71 3 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 7.56 vpr 55.33 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 17.1 MiB 1.25 1097 15929 4551 10101 1277 55.9 MiB 0.27 0.00 4.62958 -159.64 -4.62958 4.62958 1.11 0.00124584 0.00114369 0.103313 0.0949122 30 2755 25 6.89349e+06 352346 556674. 1926.21 1.40 0.270652 0.245017 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451724 0.0407672 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.35 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29992 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.9 MiB 0.67 885 10772 2583 7345 844 56.0 MiB 0.17 0.00 3.4709 -116.935 -3.4709 3.4709 1.09 0.00118467 0.00108796 0.0576658 0.0529116 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.44 0.244892 0.220432 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0479959 0.0431734 151 3 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.86 vpr 55.67 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30384 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.64 1365 8130 1863 5269 998 56.2 MiB 0.16 0.00 4.69935 -162.091 -4.69935 4.69935 1.10 0.00132339 0.00121653 0.0569596 0.0523617 34 3698 26 6.89349e+06 366440 618332. 2139.56 2.79 0.346041 0.310608 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0564116 0.0508141 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.29 vpr 55.23 MiB 0.16 6920 -1 -1 1 0.03 -1 -1 29932 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.68 863 14256 5690 7135 1431 55.4 MiB 0.19 0.00 3.57625 -122.952 -3.57625 3.57625 1.08 0.000996731 0.00091434 0.0839661 0.0769847 36 2395 27 6.89349e+06 239595 648988. 2245.63 4.94 0.395944 0.353557 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0429802 0.0384585 118 34 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.81 vpr 55.27 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30168 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1065 12331 4460 6746 1125 55.6 MiB 0.18 0.00 4.27029 -139.911 -4.27029 4.27029 1.08 0.00100928 0.000926212 0.0737705 0.0677089 34 2653 21 6.89349e+06 267783 618332. 2139.56 2.25 0.285551 0.255699 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0396524 0.0355326 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.82 vpr 55.13 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 16.7 MiB 1.87 839 10231 2827 6777 627 55.4 MiB 0.16 0.00 4.26535 -126.926 -4.26535 4.26535 1.09 0.00094951 0.000870116 0.0578418 0.0530903 34 2258 25 6.89349e+06 295971 618332. 2139.56 4.11 0.359073 0.319933 25762 151098 -1 1828 19 1146 1838 127720 29375 3.55595 3.55595 -122.712 -3.55595 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0362229 0.0324125 115 34 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.03 vpr 55.11 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.96 860 14700 5342 7547 1811 55.3 MiB 0.20 0.00 3.60535 -129.612 -3.60535 3.60535 1.09 0.000998987 0.000916923 0.0880782 0.0809076 34 2261 23 6.89349e+06 225501 618332. 2139.56 2.07 0.302199 0.271587 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0408594 0.0368003 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.52 vpr 55.23 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 16.7 MiB 1.28 985 14322 4727 7440 2155 55.3 MiB 0.21 0.00 3.69435 -127.028 -3.69435 3.69435 1.08 0.00101964 0.00093562 0.0847504 0.077734 30 2355 32 6.89349e+06 267783 556674. 1926.21 1.32 0.233376 0.210042 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0367137 0.0329514 121 34 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.87 vpr 55.33 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30016 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 16.8 MiB 1.35 1052 14724 4760 7779 2185 55.5 MiB 0.21 0.00 3.57215 -115.596 -3.57215 3.57215 1.10 0.00102399 0.00093978 0.0856234 0.0785513 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.98 0.344654 0.308479 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.036882 0.0330607 130 61 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.53 vpr 55.48 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30420 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1199 18247 5521 9891 2835 56.3 MiB 0.31 0.00 4.73855 -160.484 -4.73855 4.73855 1.09 0.00142695 0.00131267 0.130958 0.120403 34 3612 43 6.89349e+06 380534 618332. 2139.56 3.02 0.414774 0.374503 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0562537 0.0506776 184 29 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.68 vpr 55.85 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30272 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1143 14147 4354 7296 2497 56.2 MiB 0.24 0.00 4.17974 -143.168 -4.17974 4.17974 1.09 0.00130275 0.00119484 0.0966987 0.0887025 34 3686 37 6.89349e+06 352346 618332. 2139.56 2.80 0.399366 0.358303 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0599371 0.0538992 173 65 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.49 vpr 55.17 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 17.4 MiB 0.82 1094 14965 4562 8063 2340 56.1 MiB 0.22 0.00 3.67235 -123.222 -3.67235 3.67235 1.09 0.00110506 0.0010105 0.0923466 0.0845122 34 2583 23 6.89349e+06 310065 618332. 2139.56 2.04 0.326399 0.292242 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0434878 0.0389408 143 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.43 vpr 55.97 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30332 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 17.6 MiB 2.14 1244 16523 4277 10843 1403 56.2 MiB 0.29 0.00 4.45875 -146.616 -4.45875 4.45875 1.09 0.00126648 0.0011629 0.109036 0.100069 34 3212 33 6.89349e+06 366440 618332. 2139.56 2.39 0.399783 0.359577 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0542891 0.0487985 170 64 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.85 vpr 55.89 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 17.7 MiB 1.75 1489 17560 4957 10293 2310 56.5 MiB 0.31 0.01 5.02254 -165.43 -5.02254 5.02254 1.09 0.00140753 0.00129067 0.119443 0.109551 34 3603 25 6.89349e+06 436909 618332. 2139.56 2.44 0.359887 0.323515 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0533741 0.0479794 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 10.73 vpr 55.73 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30260 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 17.5 MiB 2.15 1401 11923 3470 7236 1217 56.4 MiB 0.22 0.00 5.49816 -175.294 -5.49816 5.49816 1.09 0.00130556 0.00119659 0.0797054 0.0730851 34 3760 29 6.89349e+06 394628 618332. 2139.56 8.65 0.605303 0.541596 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.28 0.14 0.24 -1 -1 0.28 0.0541885 0.0487864 181 90 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 8.62 vpr 55.59 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30208 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 17.2 MiB 1.53 1340 14763 4284 8311 2168 56.1 MiB 0.26 0.00 3.76655 -130.012 -3.76655 3.76655 1.09 0.00127831 0.00116647 0.0973254 0.0888877 34 3258 47 6.89349e+06 380534 618332. 2139.56 2.27 0.366235 0.328236 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.25 0.13 0.12 -1 -1 0.25 0.0543267 0.0488639 168 64 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.92 vpr 55.23 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1284 16207 4365 9844 1998 56.1 MiB 0.27 0.00 4.62085 -160.706 -4.62085 4.62085 1.08 0.00128894 0.00118268 0.105784 0.0971168 38 2889 43 6.89349e+06 380534 678818. 2348.85 2.56 0.307527 0.27659 26626 170182 -1 2536 20 1893 2539 183204 39509 4.03796 4.03796 -157.104 -4.03796 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0476485 0.0427974 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.19 vpr 56.18 MiB 0.06 7228 -1 -1 1 0.03 -1 -1 30496 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 17.8 MiB 1.99 1764 15215 4236 8627 2352 56.2 MiB 0.30 0.01 5.15348 -175.341 -5.15348 5.15348 1.09 0.00157225 0.00144247 0.115243 0.105877 34 4947 37 6.89349e+06 436909 618332. 2139.56 4.58 0.495876 0.445826 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.30 0.20 0.18 -1 -1 0.30 0.0654914 0.0590466 220 96 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.35 vpr 55.24 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30420 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 822 6743 1455 4759 529 55.5 MiB 0.12 0.00 3.853 -129.297 -3.853 3.853 1.09 0.00103596 0.000951174 0.0422376 0.0388394 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.98 0.285488 0.255118 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0422428 0.0378346 127 34 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.98 vpr 55.50 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30228 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 17.2 MiB 1.50 1294 17376 6419 8627 2330 56.0 MiB 0.29 0.01 5.00234 -161.335 -5.00234 5.00234 1.09 0.00128033 0.00117244 0.114493 0.105011 34 3454 30 6.89349e+06 380534 618332. 2139.56 3.18 0.40471 0.363917 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0551427 0.0496345 168 64 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 9.20 vpr 55.67 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1356 15391 5368 7626 2397 56.1 MiB 0.26 0.00 4.39449 -148.549 -4.39449 4.39449 1.09 0.00128612 0.00117975 0.0996391 0.0912512 36 3343 28 6.89349e+06 380534 648988. 2245.63 3.06 0.387 0.347517 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0486113 0.0437863 172 63 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.01 vpr 55.45 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 1.16 953 14407 3720 10033 654 55.7 MiB 0.23 0.00 4.3344 -147.594 -4.3344 4.3344 1.08 0.00119106 0.00109412 0.0950427 0.0872857 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.86 0.354269 0.318805 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0503135 0.0452521 147 3 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.25 vpr 55.76 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 17.7 MiB 1.42 1279 18101 5797 9598 2706 56.4 MiB 0.30 0.00 4.41459 -148.068 -4.41459 4.41459 1.09 0.00131683 0.00120707 0.118971 0.109103 34 3456 36 6.89349e+06 394628 618332. 2139.56 2.54 0.429009 0.385815 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0459154 0.0413705 184 96 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.82 vpr 55.71 MiB 0.06 7016 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1221 17635 5673 8836 3126 56.3 MiB 0.26 0.00 4.28929 -146.442 -4.28929 4.28929 1.11 0.00128457 0.00117812 0.114266 0.104817 36 3258 26 6.89349e+06 380534 648988. 2245.63 2.43 0.313952 0.28247 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0613249 0.0551254 169 61 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.42 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.3 MiB 1.54 1303 7027 1560 5110 357 56.2 MiB 0.15 0.00 3.72045 -130.455 -3.72045 3.72045 1.09 0.00130943 0.00120185 0.048371 0.0443903 34 3432 32 6.89349e+06 380534 618332. 2139.56 2.40 0.351655 0.315636 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0498393 0.0449185 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.25 vpr 55.33 MiB 0.05 7020 -1 -1 1 0.04 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.48 1190 14518 4171 8562 1785 56.1 MiB 0.24 0.00 4.63815 -161.109 -4.63815 4.63815 1.09 0.00124974 0.00114671 0.0956139 0.0877817 34 2867 24 6.89349e+06 338252 618332. 2139.56 2.30 0.362923 0.326283 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0491654 0.0443053 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.86 vpr 55.58 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.18 1201 13351 3240 8446 1665 56.2 MiB 0.22 0.00 4.60525 -158.398 -4.60525 4.60525 1.08 0.00130803 0.0012003 0.0889713 0.081623 36 3088 18 6.89349e+06 380534 648988. 2245.63 4.98 0.491722 0.441103 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.28 0.13 0.27 -1 -1 0.28 0.0556249 0.050024 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.88 vpr 55.80 MiB 0.07 7292 -1 -1 1 0.03 -1 -1 30276 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 17.5 MiB 1.17 1470 18625 5270 10765 2590 56.2 MiB 0.31 0.01 5.00359 -155.604 -5.00359 5.00359 1.08 0.00139104 0.00127576 0.124965 0.114594 34 3523 29 6.89349e+06 436909 618332. 2139.56 2.38 0.434487 0.390182 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0600898 0.0541227 195 122 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.20 vpr 55.93 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 17.5 MiB 2.41 1648 15391 4130 9133 2128 56.3 MiB 0.28 0.01 4.77885 -161.828 -4.77885 4.77885 1.09 0.00136045 0.00124719 0.106623 0.0977718 36 3608 22 6.89349e+06 380534 648988. 2245.63 4.75 0.466559 0.41752 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0585695 0.0526883 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.73 vpr 55.03 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1067 16081 5068 9178 1835 55.6 MiB 0.23 0.00 3.68745 -131.866 -3.68745 3.68745 1.10 0.00105294 0.00096593 0.093125 0.0854001 34 2400 20 6.89349e+06 295971 618332. 2139.56 2.08 0.309355 0.277793 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0376215 0.0337705 127 34 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.10 vpr 55.59 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1122 7711 1541 6020 150 55.9 MiB 0.14 0.00 4.29439 -143.523 -4.29439 4.29439 1.12 0.00116796 0.00106959 0.0514201 0.0470992 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.06 0.304549 0.271604 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.044221 0.0397047 154 94 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.87 vpr 55.89 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30788 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 17.7 MiB 1.60 1537 17347 5978 9037 2332 56.6 MiB 0.36 0.01 5.35709 -181.872 -5.35709 5.35709 1.12 0.00152315 0.00139855 0.127188 0.116848 38 3731 22 6.89349e+06 422815 678818. 2348.85 2.37 0.37723 0.340825 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0627866 0.0566334 209 65 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 9.12 vpr 55.66 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.63 1176 14295 4272 7910 2113 56.1 MiB 0.24 0.00 3.7808 -134.415 -3.7808 3.7808 1.09 0.00123057 0.00112515 0.0947122 0.0869107 34 2997 45 6.89349e+06 324158 618332. 2139.56 3.00 0.402892 0.361698 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.26 0.15 0.25 -1 -1 0.26 0.0575797 0.0517842 156 34 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 7.85 vpr 55.17 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 17.0 MiB 1.01 932 11809 3108 7963 738 55.6 MiB 0.17 0.00 4.33203 -134.423 -4.33203 4.33203 1.09 0.00100618 0.000923045 0.0586693 0.0537704 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.92 0.266286 0.238039 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.040118 0.0359259 129 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 11.33 vpr 56.06 MiB 0.05 7380 -1 -1 1 0.04 -1 -1 30940 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 18.0 MiB 1.63 1787 18111 5206 10704 2201 56.3 MiB 0.36 0.01 5.73258 -193.193 -5.73258 5.73258 1.09 0.00162988 0.00149502 0.133375 0.12236 36 4099 45 6.89349e+06 493284 648988. 2245.63 3.85 0.455695 0.408907 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0701517 0.0631746 239 127 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.61 vpr 55.50 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.25 1091 13143 3864 7923 1356 56.2 MiB 0.23 0.00 4.41749 -154.465 -4.41749 4.41749 1.09 0.00126244 0.00115915 0.0921316 0.0845973 34 2892 26 6.89349e+06 324158 618332. 2139.56 2.33 0.365643 0.32913 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.051862 0.0467176 159 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.85 vpr 55.09 MiB 0.05 6700 -1 -1 1 0.04 -1 -1 30164 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.6 MiB 0.52 849 10087 2557 6780 750 55.2 MiB 0.15 0.00 3.73565 -131.011 -3.73565 3.73565 1.11 0.00102424 0.000940448 0.0484455 0.0444971 30 2269 22 6.89349e+06 465097 556674. 1926.21 1.31 0.175297 0.157406 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.037593 0.0337028 123 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 9.46 vpr 55.50 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30816 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 17.7 MiB 1.74 1275 12273 3390 7733 1150 56.4 MiB 0.24 0.00 5.39711 -179.414 -5.39711 5.39711 1.09 0.0014575 0.00134056 0.089363 0.0822349 34 3822 27 6.89349e+06 408721 618332. 2139.56 3.26 0.343587 0.309359 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0631185 0.0568883 194 34 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 6.44 vpr 55.20 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 0.74 787 10056 2193 7590 273 55.5 MiB 0.15 0.00 3.8468 -135.678 -3.8468 3.8468 1.09 0.000999332 0.000917136 0.0603931 0.0554682 34 2224 26 6.89349e+06 225501 618332. 2139.56 2.16 0.276526 0.247677 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0439163 0.0394186 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.99 vpr 55.29 MiB 0.06 6920 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.7 MiB 1.08 801 8131 1824 5536 771 55.3 MiB 0.12 0.00 3.71635 -120.03 -3.71635 3.71635 1.09 0.00101184 0.000927559 0.0494515 0.0454071 36 2120 22 6.89349e+06 267783 648988. 2245.63 4.76 0.349204 0.31149 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0379791 0.0340425 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.30 vpr 55.68 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30164 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1254 15203 3953 9019 2231 56.3 MiB 0.24 0.00 4.1318 -129.307 -4.1318 4.1318 1.12 0.00124063 0.00113748 0.0945359 0.0866537 34 2921 25 6.89349e+06 436909 618332. 2139.56 2.20 0.366711 0.329456 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0212634 0.018888 171 88 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.69 vpr 55.78 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30496 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1381 16974 4929 9664 2381 56.1 MiB 0.25 0.00 5.29596 -177.687 -5.29596 5.29596 1.09 0.00130373 0.00119607 0.114648 0.105129 36 3381 23 6.89349e+06 366440 648988. 2245.63 2.68 0.394291 0.354428 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0563627 0.0507202 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.72 vpr 55.70 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30600 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.5 MiB 1.50 1376 18180 6112 9250 2818 56.5 MiB 0.28 0.01 5.13064 -174.448 -5.13064 5.13064 1.07 0.00131112 0.00120263 0.0947669 0.0865421 34 3618 39 6.89349e+06 366440 618332. 2139.56 2.80 0.405032 0.363419 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.053927 0.0485617 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.73 vpr 55.24 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 17.0 MiB 1.12 1013 14221 3579 9597 1045 56.0 MiB 0.21 0.00 4.30029 -147.314 -4.30029 4.30029 1.09 0.00111044 0.00101824 0.0881833 0.0808069 34 2793 24 6.89349e+06 295971 618332. 2139.56 2.35 0.323991 0.290391 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419937 0.0376607 141 65 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.44 vpr 55.58 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 17.1 MiB 1.50 1168 10501 2617 6825 1059 55.9 MiB 0.18 0.00 4.23729 -139.76 -4.23729 4.23729 1.11 0.00137437 0.00127647 0.0708424 0.0650004 34 2811 21 6.89349e+06 310065 618332. 2139.56 2.10 0.269718 0.240718 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456469 0.0408783 146 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 8.35 vpr 55.36 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30256 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 17.0 MiB 1.70 1158 18043 5948 9235 2860 55.9 MiB 0.27 0.00 3.9471 -130.183 -3.9471 3.9471 1.08 0.00122519 0.00112439 0.11169 0.102532 36 2742 19 6.89349e+06 408721 648988. 2245.63 2.37 0.362352 0.326176 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.28 0.10 0.26 -1 -1 0.28 0.0413773 0.0369874 164 60 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 7.08 vpr 55.29 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30336 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 17.0 MiB 1.11 970 11031 2869 6600 1562 55.9 MiB 0.16 0.00 4.51585 -132.654 -4.51585 4.51585 1.11 0.00111305 0.00102216 0.0667786 0.0613647 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.41 0.209629 0.188964 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0458097 0.041161 145 34 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.56 vpr 55.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 29948 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 16.9 MiB 1.78 1087 9083 2557 5800 726 55.8 MiB 0.15 0.00 4.36859 -139.508 -4.36859 4.36859 1.09 0.00106209 0.000973869 0.0563589 0.051678 36 2461 21 6.89349e+06 295971 648988. 2245.63 2.12 0.228674 0.204922 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0385918 0.0346276 136 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.96 vpr 55.76 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 17.2 MiB 1.55 1180 8827 2269 5871 687 56.0 MiB 0.16 0.01 3.8008 -130.21 -3.8008 3.8008 1.07 0.00158299 0.00142968 0.0579837 0.0530433 34 2947 27 6.89349e+06 295971 618332. 2139.56 2.31 0.264166 0.236237 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0432588 0.0387779 150 91 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.79 vpr 55.23 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.66 1032 15180 4497 8229 2454 55.8 MiB 0.22 0.00 4.35445 -144.691 -4.35445 4.35445 1.09 0.00117601 0.00108136 0.0795239 0.0730612 28 3116 24 6.89349e+06 521472 531479. 1839.03 2.63 0.222983 0.201123 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0514867 0.046279 151 4 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.37 vpr 55.52 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30536 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1263 12351 3110 8140 1101 56.1 MiB 0.22 0.00 4.78058 -162.367 -4.78058 4.78058 1.09 0.00131769 0.0012077 0.0840691 0.0770435 34 3370 34 6.89349e+06 366440 618332. 2139.56 2.56 0.388503 0.348521 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.27 0.10 0.21 -1 -1 0.27 0.0389661 0.0348911 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.13 vpr 55.86 MiB 0.07 7176 -1 -1 1 0.03 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1405 10743 3107 6650 986 56.2 MiB 0.20 0.01 4.9601 -169.723 -4.9601 4.9601 1.11 0.00131492 0.00120643 0.0720409 0.065997 36 3352 21 6.89349e+06 366440 648988. 2245.63 3.60 0.358137 0.322067 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.30 0.16 0.25 -1 -1 0.30 0.0608626 0.054749 171 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.15 vpr 55.64 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 17.5 MiB 1.61 1306 10087 2279 7315 493 56.3 MiB 0.19 0.01 4.3224 -145.723 -4.3224 4.3224 1.08 0.00129052 0.00118486 0.0668803 0.0614013 34 4019 38 6.89349e+06 380534 618332. 2139.56 3.47 0.371649 0.333465 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0554955 0.0499365 172 65 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.73 vpr 55.37 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30232 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.51 814 9181 2458 5686 1037 55.5 MiB 0.15 0.00 3.809 -121.257 -3.809 3.809 1.08 0.00100824 0.000924304 0.0557543 0.0511823 34 2414 23 6.89349e+06 267783 618332. 2139.56 2.16 0.269852 0.241306 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0365064 0.0327872 122 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 8.79 vpr 56.03 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30300 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 17.5 MiB 2.06 1287 12568 3293 7724 1551 56.2 MiB 0.21 0.00 5.05854 -160.711 -5.05854 5.05854 1.09 0.00125387 0.00115149 0.0843199 0.0774406 34 3215 23 6.89349e+06 366440 618332. 2139.56 2.50 0.340498 0.306093 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.0222602 0.0197516 165 63 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.25 vpr 55.67 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30764 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57884 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 17.7 MiB 1.06 1479 11383 3062 7492 829 56.5 MiB 0.21 0.00 4.57601 -155.587 -4.57601 4.57601 1.09 0.00143785 0.00131832 0.080564 0.0738535 36 3485 21 6.89349e+06 422815 648988. 2245.63 4.99 0.520318 0.465343 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0610931 0.0546763 204 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.41 vpr 55.45 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30696 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1301 16445 5093 9336 2016 56.2 MiB 0.28 0.00 5.17904 -171.173 -5.17904 5.17904 1.08 0.00132261 0.00121214 0.108678 0.0996245 36 3067 22 6.89349e+06 408721 648988. 2245.63 4.95 0.508678 0.456582 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0546629 0.0492368 186 94 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.88 vpr 56.05 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 17.3 MiB 1.90 1252 12351 3368 8179 804 56.2 MiB 0.22 0.00 4.25135 -136.296 -4.25135 4.25135 1.08 0.00127 0.00116465 0.081697 0.0748844 34 3685 43 6.89349e+06 394628 618332. 2139.56 3.15 0.346071 0.310579 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0500565 0.0450053 175 92 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.52 vpr 55.81 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30440 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.1 MiB 1.62 1349 14160 4180 8412 1568 56.1 MiB 0.25 0.00 5.11687 -171.214 -5.11687 5.11687 1.08 0.001269 0.00116058 0.0954561 0.087521 34 3581 27 6.89349e+06 366440 618332. 2139.56 2.91 0.385601 0.34695 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0522007 0.047049 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 8.00 vpr 55.58 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30184 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1337 17431 5595 9274 2562 56.0 MiB 0.20 0.00 4.49555 -136.793 -4.49555 4.49555 1.10 0.00122769 0.00112596 0.066125 0.0603478 34 3073 24 6.89349e+06 422815 618332. 2139.56 2.20 0.331232 0.296619 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0506274 0.0454793 170 88 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.67 vpr 55.18 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.49 851 10744 3065 7267 412 55.3 MiB 0.16 0.00 3.7888 -133.854 -3.7888 3.7888 1.08 0.000996222 0.000914601 0.0649002 0.0595895 34 2305 21 6.89349e+06 225501 618332. 2139.56 2.05 0.2735 0.245129 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0378247 0.0339311 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 9.06 vpr 55.76 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 17.3 MiB 1.42 1266 16411 5685 8276 2450 56.3 MiB 0.28 0.00 5.17997 -174.972 -5.17997 5.17997 1.09 0.00132604 0.00121422 0.109804 0.100525 34 3964 24 6.89349e+06 380534 618332. 2139.56 3.37 0.398108 0.357985 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0563244 0.0507129 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 10.05 vpr 55.77 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 17.6 MiB 2.37 1294 9791 2343 6863 585 56.2 MiB 0.19 0.00 5.01095 -168.663 -5.01095 5.01095 1.08 0.00132154 0.00121336 0.066427 0.0609533 34 3734 27 6.89349e+06 352346 618332. 2139.56 3.10 0.355716 0.319354 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.28 0.16 0.24 -1 -1 0.28 0.0554544 0.0499788 176 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.71 vpr 55.19 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30304 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 971 13043 4021 6975 2047 55.7 MiB 0.19 0.00 3.51612 -116.281 -3.51612 3.51612 1.09 0.001033 0.000946224 0.0801956 0.0734596 34 2366 21 6.89349e+06 267783 618332. 2139.56 2.07 0.301933 0.269661 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405084 0.0363058 128 55 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.57 vpr 55.08 MiB 0.05 6776 -1 -1 1 0.03 -1 -1 30260 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.0 MiB 0.67 734 11604 2641 7381 1582 55.5 MiB 0.16 0.00 3.8218 -128.161 -3.8218 3.8218 1.09 0.000980043 0.000900155 0.0685767 0.0630281 32 2249 20 6.89349e+06 239595 586450. 2029.24 1.28 0.189069 0.170303 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0397498 0.0355595 112 4 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 8.38 vpr 55.54 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 17.4 MiB 1.29 1234 14147 4178 8444 1525 56.2 MiB 0.23 0.00 4.31849 -141.833 -4.31849 4.31849 1.08 0.00124301 0.0011412 0.0920639 0.0844442 34 3001 25 6.89349e+06 352346 618332. 2139.56 2.25 0.362835 0.326393 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0551296 0.0495841 158 59 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.14 vpr 55.73 MiB 0.06 7104 -1 -1 1 0.03 -1 -1 30216 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1314 10341 2747 6842 752 56.0 MiB 0.19 0.01 5.10864 -160.907 -5.10864 5.10864 1.09 0.00128119 0.00117403 0.0705993 0.0646762 34 3382 28 6.89349e+06 366440 618332. 2139.56 2.66 0.361719 0.324473 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0528448 0.0476058 170 88 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.63 vpr 55.45 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.3 MiB 0.73 1292 15419 3797 10101 1521 56.2 MiB 0.25 0.01 4.85078 -164.688 -4.85078 4.85078 1.11 0.00136602 0.00125634 0.0893361 0.082034 34 3291 24 6.89349e+06 577847 618332. 2139.56 2.67 0.382748 0.345095 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0586736 0.0529735 183 3 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.27 vpr 55.33 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30356 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1124 9395 2323 6078 994 56.2 MiB 0.16 0.00 3.8961 -125.22 -3.8961 3.8961 1.09 0.00120379 0.00110474 0.0602169 0.0552565 34 2687 35 6.89349e+06 380534 618332. 2139.56 2.29 0.338951 0.303629 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051632 0.0463934 160 59 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.42 vpr 55.05 MiB 0.06 6960 -1 -1 1 0.03 -1 -1 30424 -1 -1 22 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 915 13031 5095 6351 1585 55.1 MiB 0.17 0.00 4.34539 -126.288 -4.34539 4.34539 1.09 0.00092097 0.000844866 0.0714774 0.0656212 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.94 0.260402 0.233169 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0360837 0.0322635 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.25 vpr 56.22 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30416 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 17.8 MiB 1.58 1748 16302 4126 10044 2132 56.4 MiB 0.34 0.01 5.09354 -170.611 -5.09354 5.09354 1.09 0.00156689 0.00143787 0.115255 0.105667 34 4285 25 6.89349e+06 451003 618332. 2139.56 3.18 0.45793 0.412026 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0672702 0.0606111 219 95 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.65 vpr 55.59 MiB 0.04 7276 -1 -1 1 0.03 -1 -1 30436 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 17.6 MiB 1.95 1467 12661 2948 8528 1185 56.5 MiB 0.25 0.00 5.14784 -166.315 -5.14784 5.14784 1.15 0.00140194 0.00128578 0.0926005 0.0850475 36 3334 29 6.89349e+06 436909 648988. 2245.63 5.38 0.571313 0.511139 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0556775 0.0501013 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.16 vpr 55.40 MiB 0.02 7036 -1 -1 1 0.02 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 17.3 MiB 1.79 1133 9914 2313 7132 469 56.1 MiB 0.16 0.00 4.28535 -139.234 -4.28535 4.28535 1.09 0.00112622 0.00103138 0.0620172 0.0567627 34 3076 43 6.89349e+06 310065 618332. 2139.56 2.56 0.338411 0.302184 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0426553 0.0382436 150 89 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.25 vpr 55.34 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30224 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.56 1114 12951 3612 7720 1619 56.1 MiB 0.22 0.00 4.53785 -150.754 -4.53785 4.53785 1.09 0.00121587 0.00111611 0.0853887 0.0784129 34 2799 24 6.89349e+06 324158 618332. 2139.56 2.14 0.350699 0.315667 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0482091 0.0434212 151 34 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 8.12 vpr 55.82 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30572 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 17.6 MiB 1.42 1475 19413 5609 11709 2095 56.4 MiB 0.35 0.01 4.64537 -154.979 -4.64537 4.64537 1.09 0.00144552 0.00131788 0.136575 0.125321 34 3553 32 6.89349e+06 422815 618332. 2139.56 2.53 0.467214 0.420492 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0662385 0.0597017 193 64 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.06 vpr 55.57 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30356 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 17.2 MiB 1.70 1223 16773 5429 8542 2802 56.0 MiB 0.26 0.00 4.28025 -135.791 -4.28025 4.28025 1.09 0.00120646 0.00110665 0.104019 0.0953862 36 2894 24 6.89349e+06 394628 648988. 2245.63 2.48 0.362663 0.325817 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0455944 0.0409159 162 61 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 9.03 vpr 55.77 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 17.2 MiB 1.34 1373 17066 5393 8866 2807 56.2 MiB 0.32 0.00 5.03124 -168.563 -5.03124 5.03124 1.11 0.00130489 0.00119569 0.114383 0.104809 34 3693 35 6.89349e+06 394628 618332. 2139.56 3.08 0.423254 0.380489 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.26 0.14 0.26 -1 -1 0.26 0.0565055 0.0508795 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 9.65 vpr 55.79 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30256 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57644 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.4 MiB 1.69 1418 13147 3928 7969 1250 56.3 MiB 0.23 0.01 3.78872 -134.171 -3.78872 3.78872 1.10 0.00165544 0.00153095 0.0894017 0.0820227 34 3370 23 6.89349e+06 380534 618332. 2139.56 2.33 0.364967 0.327888 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.26 0.13 0.26 -1 -1 0.26 0.054382 0.0489921 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 7.07 vpr 55.32 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 1.16 802 14322 5252 6511 2559 55.3 MiB 0.19 0.00 3.809 -119.785 -3.809 3.809 0.76 0.000982051 0.000901084 0.0815792 0.0749142 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.91 0.288328 0.25819 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0368065 0.0329674 118 34 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.91 vpr 55.52 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 17.0 MiB 1.06 1059 7038 1561 5080 397 55.5 MiB 0.12 0.00 4.31213 -129.707 -4.31213 4.31213 1.09 0.00106543 0.000975409 0.0437521 0.0400533 34 2689 32 6.89349e+06 281877 618332. 2139.56 2.38 0.28569 0.254486 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0373944 0.033602 136 82 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.00 vpr 55.47 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30460 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 17.1 MiB 1.26 1144 15255 6301 7544 1410 55.9 MiB 0.24 0.00 4.60015 -151.135 -4.60015 4.60015 1.08 0.00122223 0.00112177 0.0968273 0.0887116 36 2816 23 6.89349e+06 338252 648988. 2245.63 5.06 0.471461 0.423082 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0463702 0.0417816 154 34 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.47 vpr 55.15 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30332 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 16.7 MiB 1.12 955 13610 4945 6467 2198 55.3 MiB 0.19 0.00 3.4839 -106.878 -3.4839 3.4839 1.09 0.000975979 0.000894182 0.0791014 0.0724981 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.95 0.287517 0.257116 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0349151 0.0312405 123 56 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 8.27 vpr 55.07 MiB 0.04 6752 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 16.8 MiB 1.65 1000 12186 3922 6390 1874 55.4 MiB 0.20 0.00 3.839 -135.657 -3.839 3.839 1.11 0.00106518 0.00097665 0.0836756 0.0767115 34 2613 22 6.89349e+06 253689 618332. 2139.56 2.30 0.308519 0.276612 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.046297 0.0414268 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 8.09 vpr 55.59 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 17.3 MiB 1.51 1201 16773 5048 9300 2425 56.1 MiB 0.27 0.00 4.20938 -143.511 -4.20938 4.20938 1.09 0.00126058 0.00115708 0.110245 0.101123 36 2859 23 6.89349e+06 380534 648988. 2245.63 2.78 0.378429 0.340299 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0537475 0.048345 164 64 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.80 vpr 55.02 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 1.31 877 7953 1966 5579 408 55.4 MiB 0.12 0.00 3.31212 -108.619 -3.31212 3.31212 1.09 0.00101911 0.000930005 0.0467043 0.0428072 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.96 0.260412 0.232318 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0366874 0.032865 125 55 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.79 vpr 55.64 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 17.3 MiB 1.46 1287 17711 6388 9306 2017 56.0 MiB 0.31 0.00 4.20729 -140.905 -4.20729 4.20729 1.11 0.00123482 0.00113152 0.118512 0.108567 34 3044 21 6.89349e+06 352346 618332. 2139.56 2.60 0.378875 0.340952 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0493652 0.044415 162 65 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.06 vpr 55.88 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30184 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 17.6 MiB 1.64 1441 16921 4862 9627 2432 56.3 MiB 0.30 0.00 5.00842 -163.951 -5.00842 5.00842 1.10 0.00133268 0.00121993 0.109683 0.100391 36 3492 23 6.89349e+06 436909 648988. 2245.63 3.27 0.395273 0.355127 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.30 0.14 0.26 -1 -1 0.30 0.0440489 0.0392221 185 93 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.33 vpr 55.62 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.29 1150 11245 3095 6987 1163 55.8 MiB 0.17 0.00 3.53115 -123.245 -3.53115 3.53115 1.08 0.00105584 0.000966267 0.068317 0.0625923 34 2943 19 6.89349e+06 295971 618332. 2139.56 2.39 0.290938 0.26024 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0374803 0.0336655 137 61 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.96 vpr 55.12 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.18 1121 13443 3684 8167 1592 56.1 MiB 0.21 0.00 3.817 -131.483 -3.817 3.817 1.12 0.00110775 0.00101467 0.0839381 0.076901 34 2949 27 6.89349e+06 281877 618332. 2139.56 2.44 0.327997 0.293909 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456433 0.0409209 139 63 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.65 vpr 55.34 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30620 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.30 1272 13147 3375 7731 2041 56.2 MiB 0.22 0.00 4.61515 -160.202 -4.61515 4.61515 1.11 0.00130029 0.00119203 0.0876541 0.0803849 36 3093 23 6.89349e+06 380534 648988. 2245.63 2.69 0.372583 0.335185 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.24 0.07 0.13 -1 -1 0.24 0.029553 0.0264522 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 8.30 vpr 55.59 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30428 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 17.2 MiB 1.46 1161 15639 4794 8641 2204 55.9 MiB 0.25 0.00 3.67945 -117.378 -3.67945 3.67945 1.10 0.00119996 0.00110142 0.100791 0.0924976 30 2520 23 6.89349e+06 366440 556674. 1926.21 1.33 0.254983 0.230021 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0452376 0.0406706 157 62 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.42 vpr 55.81 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30540 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 17.8 MiB 1.24 1517 16893 4857 9388 2648 56.5 MiB 0.29 0.00 4.97404 -168.093 -4.97404 4.97404 1.08 0.00144341 0.00132428 0.119725 0.109751 36 3623 47 6.89349e+06 408721 648988. 2245.63 2.89 0.482717 0.432985 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0622312 0.0558943 203 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.93 vpr 55.14 MiB 0.04 6816 -1 -1 1 0.03 -1 -1 30164 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.7 MiB 0.53 803 5149 1186 3599 364 55.4 MiB 0.08 0.00 2.99217 -104.791 -2.99217 2.99217 1.08 0.000928555 0.000852928 0.030521 0.0280694 30 2012 19 6.89349e+06 225501 556674. 1926.21 1.21 0.142973 0.128065 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0395679 0.0353567 104 4 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.82 vpr 56.04 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30252 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 17.2 MiB 1.45 1396 18101 5815 9868 2418 56.2 MiB 0.29 0.00 5.41163 -177.078 -5.41163 5.41163 1.09 0.0013281 0.0012184 0.11985 0.109888 34 3746 48 6.89349e+06 394628 618332. 2139.56 2.72 0.458309 0.411863 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0566334 0.0509007 179 92 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.60 vpr 55.97 MiB 0.05 6876 -1 -1 1 0.04 -1 -1 29992 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1193 17248 5142 9796 2310 56.0 MiB 0.27 0.00 4.89074 -162.672 -4.89074 4.89074 1.08 0.00118909 0.00108889 0.108382 0.0992639 36 3213 26 6.89349e+06 338252 648988. 2245.63 5.41 0.485078 0.434278 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0511288 0.0458688 161 96 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 8.40 vpr 55.50 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.60 1163 10187 2742 6187 1258 56.2 MiB 0.18 0.00 3.75965 -128.904 -3.75965 3.75965 1.10 0.0012926 0.00118584 0.0699471 0.0641767 34 3025 27 6.89349e+06 352346 618332. 2139.56 2.23 0.355152 0.318879 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0488732 0.0440051 170 65 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.90 vpr 56.08 MiB 0.05 7292 -1 -1 1 0.04 -1 -1 30636 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1578 21409 7235 11132 3042 56.0 MiB 0.36 0.01 5.18464 -176.869 -5.18464 5.18464 1.12 0.00157643 0.00144788 0.128716 0.117997 36 3817 25 6.89349e+06 465097 648988. 2245.63 3.87 0.48275 0.43468 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0695126 0.062584 224 96 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.52 vpr 54.93 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 29948 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 0.97 774 12860 4018 7384 1458 55.2 MiB 0.14 0.00 3.08706 -94.2237 -3.08706 3.08706 1.09 0.000820142 0.000750211 0.0660086 0.0604088 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.74 0.233137 0.207128 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.26 0.05 0.25 -1 -1 0.26 0.0255526 0.0227796 93 56 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 7.07 vpr 55.38 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30312 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 16.7 MiB 1.04 936 13763 4663 7110 1990 55.4 MiB 0.19 0.00 4.23979 -138.497 -4.23979 4.23979 1.09 0.00100287 0.000919115 0.0793302 0.0727941 34 2090 22 6.89349e+06 295971 618332. 2139.56 2.00 0.290228 0.259714 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442889 0.0396072 124 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.45 vpr 55.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 29920 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 16.8 MiB 1.93 1009 8448 2021 6048 379 55.4 MiB 0.15 0.00 4.33609 -148.866 -4.33609 4.33609 1.13 0.00106811 0.000979928 0.052345 0.0479884 36 2726 23 6.89349e+06 253689 648988. 2245.63 3.09 0.275449 0.246391 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0472281 0.0422791 129 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.80 vpr 55.16 MiB 0.07 6936 -1 -1 1 0.03 -1 -1 30280 -1 -1 24 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 16.7 MiB 1.12 636 10231 2621 6138 1472 55.1 MiB 0.14 0.00 3.787 -96.2626 -3.787 3.787 1.09 0.000858878 0.000788419 0.0526702 0.0483437 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.90 0.23155 0.206486 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.28 0.08 0.24 -1 -1 0.28 0.035311 0.0314398 107 34 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.79 vpr 55.65 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30308 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 17.5 MiB 2.33 1453 17273 5845 8574 2854 56.2 MiB 0.31 0.01 4.55715 -154.068 -4.55715 4.55715 1.09 0.00135973 0.00124667 0.11696 0.107233 38 3543 25 6.89349e+06 394628 678818. 2348.85 5.56 0.518162 0.464115 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.29 0.15 0.29 -1 -1 0.29 0.0623778 0.056352 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 9.15 vpr 56.19 MiB 0.11 7080 -1 -1 1 0.64 -1 -1 30056 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1285 13758 3623 8223 1912 56.2 MiB 0.24 0.00 4.84654 -156.987 -4.84654 4.84654 0.94 0.00133329 0.00122224 0.0946318 0.0867577 34 3577 46 6.89349e+06 380534 618332. 2139.56 2.58 0.376091 0.337973 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.26 0.18 0.24 -1 -1 0.26 0.0702979 0.063149 183 94 29 29 93 31 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 7.95 vpr 55.27 MiB 0.04 6676 -1 -1 14 0.26 -1 -1 32876 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1354 8532 2094 5512 926 55.6 MiB 0.14 0.00 8.19013 -165.934 -8.19013 8.19013 1.05 0.00158061 0.00145029 0.0717353 0.065761 28 3693 28 6.55708e+06 313430 500653. 1732.36 5.28 0.53329 0.478568 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0646335 0.0584114 186 186 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 8.13 vpr 55.40 MiB 0.02 6852 -1 -1 14 0.28 -1 -1 32752 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.41 1292 15824 4267 9033 2524 55.5 MiB 0.23 0.00 8.12966 -162.719 -8.12966 8.12966 1.05 0.00156893 0.00143869 0.124562 0.114222 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.81 0.345944 0.31248 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0590807 0.053456 189 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 8.11 vpr 55.46 MiB 0.05 6648 -1 -1 11 0.21 -1 -1 32868 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 17.1 MiB 0.34 1266 13157 3416 7667 2074 55.6 MiB 0.20 0.00 6.4728 -136.716 -6.4728 6.4728 1.07 0.00155511 0.00142484 0.10819 0.0990878 36 3746 35 6.55708e+06 301375 612192. 2118.31 20.01 0.73914 0.663365 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0666209 0.0602227 180 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.29 vpr 55.38 MiB 0.02 6828 -1 -1 12 0.33 -1 -1 32788 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1320 8130 2002 5291 837 55.5 MiB 0.13 0.00 7.77357 -147.192 -7.77357 7.77357 1.06 0.0015693 0.00143952 0.068828 0.0631923 36 3542 23 6.55708e+06 349595 612192. 2118.31 5.81 0.520222 0.467177 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0568462 0.051505 185 184 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 8.23 vpr 55.54 MiB 0.06 6780 -1 -1 13 0.31 -1 -1 32904 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57504 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 17.5 MiB 0.42 1568 9951 2486 6481 984 56.2 MiB 0.17 0.00 7.68511 -161.036 -7.68511 7.68511 1.05 0.00182242 0.00167093 0.0887681 0.0814162 30 4458 47 6.55708e+06 385760 526063. 1820.29 2.80 0.40244 0.363148 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0723155 0.0655736 223 223 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.87 vpr 55.42 MiB 0.04 6836 -1 -1 12 0.27 -1 -1 32804 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 16.9 MiB 0.46 1500 9773 2280 6498 995 55.8 MiB 0.15 0.00 7.53766 -152.093 -7.53766 7.53766 1.10 0.00168294 0.00154249 0.07802 0.0714763 36 3688 23 6.55708e+06 409870 612192. 2118.31 3.42 0.443701 0.399337 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0557222 0.0506649 209 205 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.44 vpr 55.06 MiB 0.04 6600 -1 -1 12 0.20 -1 -1 32292 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 16.4 MiB 0.27 1024 5945 1385 4013 547 54.9 MiB 0.11 0.00 7.15274 -128.455 -7.15274 7.15274 1.07 0.00119071 0.00109273 0.0512681 0.0471054 28 3014 27 6.55708e+06 325485 500653. 1732.36 2.60 0.218082 0.196302 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0428581 0.0387766 136 131 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 8.79 vpr 55.01 MiB 0.05 6668 -1 -1 11 0.18 -1 -1 32868 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1220 9679 2547 5973 1159 55.4 MiB 0.14 0.00 6.45772 -132.139 -6.45772 6.45772 1.05 0.00145854 0.00133623 0.0732423 0.0670701 36 3012 18 6.55708e+06 337540 612192. 2118.31 5.63 0.601053 0.538043 22750 144809 -1 2688 17 1131 3571 200803 45790 5.46178 5.46178 -126.123 -5.46178 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0527168 0.0477184 175 173 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.15 vpr 55.25 MiB 0.04 6496 -1 -1 12 0.17 -1 -1 32452 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1146 12373 3633 6385 2355 55.1 MiB 0.16 0.00 7.00181 -148.703 -7.00181 7.00181 1.04 0.00129771 0.00118859 0.086291 0.0790342 28 3391 24 6.55708e+06 301375 500653. 1732.36 2.36 0.258475 0.233153 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.22 0.12 0.15 -1 -1 0.22 0.0496111 0.0449457 145 143 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.85 vpr 55.20 MiB 0.04 6472 -1 -1 13 0.19 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1098 10979 3065 6306 1608 55.1 MiB 0.16 0.00 7.23855 -159.771 -7.23855 7.23855 1.05 0.00139452 0.00127789 0.0810209 0.0741114 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.66 0.270877 0.243859 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0506487 0.0458149 162 159 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.58 vpr 54.81 MiB 0.04 6528 -1 -1 12 0.17 -1 -1 32632 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 16.5 MiB 0.36 1073 8868 2309 4974 1585 54.9 MiB 0.12 0.00 7.23424 -146.32 -7.23424 7.23424 0.79 0.00118902 0.00108846 0.061107 0.055947 28 2862 44 6.55708e+06 265210 500653. 1732.36 2.17 0.259268 0.23296 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0408665 0.0369637 132 129 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.14 vpr 55.05 MiB 0.03 6580 -1 -1 12 0.15 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 971 12175 3572 6038 2565 54.9 MiB 0.16 0.00 6.75009 -143.946 -6.75009 6.75009 1.05 0.00121301 0.00111019 0.0828367 0.0757274 36 2632 22 6.55708e+06 253155 612192. 2118.31 4.88 0.417425 0.374254 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0375322 0.0339784 138 133 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.45 vpr 55.28 MiB 0.04 6668 -1 -1 13 0.28 -1 -1 32828 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1456 5419 862 4216 341 55.7 MiB 0.10 0.00 7.90792 -162.801 -7.90792 7.90792 1.04 0.00169128 0.00154591 0.0491411 0.0450844 28 4018 41 6.55708e+06 361650 500653. 1732.36 9.66 0.66259 0.594509 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0658684 0.0597542 212 212 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.84 vpr 55.36 MiB 0.05 6720 -1 -1 14 0.31 -1 -1 33244 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 17.1 MiB 0.48 1487 7653 1685 5037 931 55.8 MiB 0.13 0.00 8.67599 -179.222 -8.67599 8.67599 1.05 0.00172626 0.00158108 0.068036 0.0623941 34 4030 26 6.55708e+06 349595 585099. 2024.56 2.53 0.367208 0.330782 22462 138074 -1 3285 20 1626 4702 256491 60555 7.53782 7.53782 -169.858 -7.53782 0 0 742403. 2568.87 0.26 0.17 0.22 -1 -1 0.26 0.0749868 0.0681645 208 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.96 vpr 54.97 MiB 0.04 6508 -1 -1 11 0.17 -1 -1 32488 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1095 15366 4454 8585 2327 55.2 MiB 0.19 0.00 6.42654 -129.9 -6.42654 6.42654 1.06 0.0012954 0.00118776 0.102823 0.0942001 36 2830 20 6.55708e+06 349595 612192. 2118.31 2.20 0.320956 0.289531 22750 144809 -1 2387 14 976 2696 166897 37529 5.60952 5.60952 -124.13 -5.60952 0 0 782063. 2706.10 0.36 0.10 0.23 -1 -1 0.36 0.0414205 0.0376803 160 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.77 vpr 55.51 MiB 0.05 6668 -1 -1 12 0.27 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 16.8 MiB 0.51 1497 7523 1547 5261 715 55.8 MiB 0.13 0.00 7.78498 -159.33 -7.78498 7.78498 1.07 0.00175619 0.00160731 0.0659455 0.0604299 36 3844 37 6.55708e+06 409870 612192. 2118.31 16.38 0.737808 0.6622 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.063637 0.0578131 213 212 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.83 vpr 55.27 MiB 0.03 6744 -1 -1 13 0.26 -1 -1 32756 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.28 1448 9075 2050 5697 1328 55.9 MiB 0.15 0.00 8.28129 -168.719 -8.28129 8.28129 1.07 0.0017541 0.00160687 0.0779001 0.0713393 30 3798 28 6.55708e+06 385760 526063. 1820.29 2.44 0.327316 0.295523 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.07 0.19 -1 -1 0.22 0.0288488 0.0261221 217 217 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.84 vpr 54.79 MiB 0.06 6560 -1 -1 12 0.15 -1 -1 32644 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 16.5 MiB 0.50 1089 8402 1864 6112 426 55.0 MiB 0.12 0.00 7.26292 -158.375 -7.26292 7.26292 1.05 0.00129452 0.00118558 0.0616027 0.0565106 28 3024 19 6.55708e+06 265210 500653. 1732.36 2.07 0.222108 0.200329 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0440985 0.0399784 139 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.87 vpr 54.22 MiB 0.04 6396 -1 -1 10 0.10 -1 -1 32300 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 16.1 MiB 0.13 786 5244 1130 3909 205 54.6 MiB 0.07 0.00 5.1986 -117.15 -5.1986 5.1986 1.05 0.00107964 0.00100519 0.0323955 0.029672 34 2066 32 6.55708e+06 241100 585099. 2024.56 2.18 0.197464 0.175957 22462 138074 -1 1763 15 662 1690 102174 24087 4.711 4.711 -115.001 -4.711 0 0 742403. 2568.87 0.26 0.07 0.22 -1 -1 0.26 0.0297451 0.0267504 96 88 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.57 vpr 54.89 MiB 0.05 6572 -1 -1 13 0.16 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1123 5079 946 3658 475 55.2 MiB 0.08 0.00 7.44701 -156.373 -7.44701 7.44701 1.11 0.00125172 0.00114618 0.0383243 0.0350854 26 3256 40 6.55708e+06 289320 477104. 1650.88 6.85 0.397369 0.355926 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.23 0.11 0.17 -1 -1 0.23 0.0495813 0.0448564 139 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.35 vpr 55.64 MiB 0.05 6784 -1 -1 13 0.30 -1 -1 32992 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1494 10031 2522 6626 883 55.5 MiB 0.16 0.00 7.77584 -154.394 -7.77584 7.77584 1.05 0.00169368 0.00155236 0.0838518 0.0767855 28 4288 44 6.55708e+06 373705 500653. 1732.36 3.52 0.37137 0.334867 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0731536 0.0661888 208 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 13.77 vpr 55.22 MiB 0.05 6776 -1 -1 13 0.28 -1 -1 33268 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 17.0 MiB 0.42 1626 7973 1601 5735 637 55.8 MiB 0.13 0.00 7.9648 -163.763 -7.9648 7.9648 1.05 0.00168163 0.00154207 0.0645773 0.0591789 34 4543 38 6.55708e+06 409870 585099. 2024.56 13.37 0.687735 0.616575 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.27 0.29 0.23 -1 -1 0.27 0.0932029 0.0842865 207 205 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.36 vpr 54.27 MiB 0.02 6500 -1 -1 9 0.09 -1 -1 32228 -1 -1 21 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 15.8 MiB 0.28 710 10557 2762 6888 907 54.5 MiB 0.10 0.00 4.66154 -94.5374 -4.66154 4.66154 1.05 0.000794834 0.000728345 0.0514945 0.0471739 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.47 0.167994 0.15026 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0240516 0.0215726 83 73 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 7.31 vpr 55.36 MiB 0.05 6568 -1 -1 13 0.30 -1 -1 32732 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1530 4780 793 3650 337 55.9 MiB 0.09 0.00 7.84695 -156.636 -7.84695 7.84695 1.04 0.00169359 0.00155103 0.0445193 0.0408285 26 4457 46 6.55708e+06 361650 477104. 1650.88 9.40 0.580959 0.52066 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.21 0.99 0.17 -1 -1 0.21 0.230626 0.207067 211 210 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.91 vpr 54.23 MiB 0.04 6380 -1 -1 8 0.09 -1 -1 31196 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55496 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 15.6 MiB 0.20 436 8831 2193 4716 1922 54.2 MiB 0.09 0.00 4.66158 -87.3613 -4.66158 4.66158 1.09 0.000805986 0.000737532 0.0431038 0.0395112 30 1374 37 6.55708e+06 204935 526063. 1820.29 4.39 0.292614 0.25928 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.25 0.05 0.20 -1 -1 0.25 0.023032 0.0206286 77 61 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.53 vpr 55.39 MiB 0.05 6804 -1 -1 15 0.24 -1 -1 33024 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.19 1127 8999 2110 5455 1434 55.0 MiB 0.14 0.00 8.78748 -168.447 -8.78748 8.78748 1.05 0.00143957 0.00132107 0.070012 0.0642632 30 3036 31 6.55708e+06 301375 526063. 1820.29 8.21 0.489584 0.439016 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0568623 0.0513379 161 159 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.87 vpr 55.17 MiB 0.04 6788 -1 -1 12 0.25 -1 -1 32784 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 16.9 MiB 0.23 1426 7871 1871 5355 645 55.7 MiB 0.14 0.00 6.97141 -150.212 -6.97141 6.97141 1.09 0.00172873 0.00158362 0.0703352 0.064457 30 3857 27 6.55708e+06 373705 526063. 1820.29 13.16 0.575593 0.516835 21886 126133 -1 3289 24 1509 4913 363335 114600 6.49978 6.49978 -148.902 -6.49978 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0840065 0.0758888 218 215 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 6.15 vpr 55.17 MiB 0.05 6776 -1 -1 13 0.27 -1 -1 32692 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1403 8993 2077 6178 738 55.7 MiB 0.15 0.00 7.73601 -160.617 -7.73601 7.73601 1.06 0.00161024 0.00147568 0.0747439 0.0684968 30 3593 32 6.55708e+06 337540 526063. 1820.29 2.28 0.313714 0.2829 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0610573 0.0553391 196 195 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 8.42 vpr 54.87 MiB 0.04 6484 -1 -1 12 0.16 -1 -1 32308 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1093 9158 2327 6239 592 55.0 MiB 0.13 0.00 6.471 -143.803 -6.471 6.471 1.07 0.00129791 0.00118399 0.0668344 0.061086 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.96 0.285103 0.256331 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0509788 0.0460288 146 145 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.63 vpr 54.66 MiB 0.04 6636 -1 -1 11 0.15 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1045 6781 1469 4387 925 55.1 MiB 0.09 0.00 6.28146 -130.954 -6.28146 6.28146 1.05 0.00116036 0.00106273 0.0407445 0.0371836 30 2354 17 6.55708e+06 277265 526063. 1820.29 3.57 0.309003 0.276124 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0326225 0.0296412 128 125 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.48 vpr 55.14 MiB 0.05 6516 -1 -1 11 0.16 -1 -1 32408 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1079 8535 1915 5707 913 55.0 MiB 0.12 0.00 6.57292 -128.193 -6.57292 6.57292 1.07 0.00123926 0.00113506 0.0589558 0.0540407 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.89 0.27648 0.248847 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.24 0.17 0.21 -1 -1 0.24 0.0636049 0.0573838 142 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.89 vpr 55.09 MiB 0.02 6484 -1 -1 12 0.17 -1 -1 32576 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 16.7 MiB 0.20 1327 6716 1263 5020 433 55.4 MiB 0.11 0.00 7.20375 -160.021 -7.20375 7.20375 1.06 0.00149369 0.00137023 0.0533185 0.0489103 30 3050 19 6.55708e+06 337540 526063. 1820.29 4.13 0.463944 0.41578 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0564782 0.0508866 180 179 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.15 vpr 55.05 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32644 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1072 4244 722 3315 207 55.1 MiB 0.07 0.00 6.41894 -136.128 -6.41894 6.41894 1.06 0.00133016 0.00121814 0.0350244 0.0321211 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.62 0.217672 0.195604 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0584813 0.0527037 147 147 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 5.38 vpr 54.95 MiB 0.04 6576 -1 -1 10 0.14 -1 -1 32656 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 16.6 MiB 0.22 967 12733 4051 6442 2240 55.1 MiB 0.16 0.00 6.08886 -123.876 -6.08886 6.08886 1.05 0.00123814 0.00113338 0.0884426 0.0809489 32 2471 22 6.55708e+06 289320 554710. 1919.41 1.27 0.249715 0.225451 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.27 0.09 0.19 -1 -1 0.27 0.0378687 0.034373 138 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.88 vpr 55.84 MiB 0.05 6972 -1 -1 13 0.32 -1 -1 33208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 17.4 MiB 0.31 1621 5869 1104 4212 553 56.0 MiB 0.11 0.00 7.46683 -155.207 -7.46683 7.46683 1.07 0.00190053 0.00174227 0.0561222 0.0515117 30 3995 44 6.55708e+06 397815 526063. 1820.29 4.01 0.373151 0.336324 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.25 0.15 0.20 -1 -1 0.25 0.0694714 0.0631385 239 239 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 7.11 vpr 55.43 MiB 0.05 6840 -1 -1 13 0.31 -1 -1 33072 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1508 8283 1888 5355 1040 55.5 MiB 0.14 0.00 8.09706 -175.077 -8.09706 8.09706 1.05 0.00172376 0.00157927 0.073143 0.0670206 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.31 0.391396 0.352633 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0658884 0.0598027 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.12 vpr 54.86 MiB 0.04 6656 -1 -1 12 0.15 -1 -1 32712 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1096 12568 3446 6926 2196 55.0 MiB 0.16 0.00 6.66868 -144.132 -6.66868 6.66868 1.05 0.00126561 0.00115766 0.0850329 0.0776615 36 2895 29 6.55708e+06 301375 612192. 2118.31 5.07 0.486318 0.435683 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.29 0.10 0.23 -1 -1 0.29 0.0394496 0.0357878 150 143 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.95 vpr 55.47 MiB 0.05 6756 -1 -1 12 0.28 -1 -1 33128 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1489 8977 2020 5913 1044 55.8 MiB 0.15 0.00 8.10558 -165.766 -8.10558 8.10558 1.07 0.00173681 0.00159288 0.0751733 0.06891 36 3566 22 6.55708e+06 409870 612192. 2118.31 3.77 0.456193 0.410946 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0576066 0.0524406 219 219 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 6.77 vpr 55.67 MiB 0.05 6768 -1 -1 14 0.34 -1 -1 33092 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1460 6211 1289 4295 627 55.7 MiB 0.11 0.00 8.35283 -161.679 -8.35283 8.35283 1.06 0.00168193 0.00154283 0.0561068 0.0515012 30 3894 50 6.55708e+06 337540 526063. 1820.29 3.13 0.355242 0.31986 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0602465 0.0547082 194 193 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 7.58 vpr 55.23 MiB 0.05 6832 -1 -1 13 0.25 -1 -1 32968 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1364 9271 2151 5683 1437 55.4 MiB 0.15 0.00 7.40806 -157.551 -7.40806 7.40806 1.05 0.00152886 0.00139873 0.0760096 0.0694878 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.73 0.292682 0.263514 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.24 0.13 0.21 -1 -1 0.24 0.0555454 0.0503008 181 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.44 vpr 55.41 MiB 0.05 6772 -1 -1 12 0.25 -1 -1 32924 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 17.1 MiB 0.50 1374 13743 3666 8130 1947 55.6 MiB 0.22 0.00 6.76701 -143.203 -6.76701 6.76701 1.06 0.00160907 0.00147604 0.118125 0.108134 34 4200 50 6.55708e+06 361650 585099. 2024.56 5.02 0.530496 0.477192 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0681219 0.0616402 189 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 6.20 vpr 55.38 MiB 0.05 6852 -1 -1 12 0.19 -1 -1 32680 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.26 1252 8278 1977 5044 1257 55.2 MiB 0.13 0.00 7.19338 -143.847 -7.19338 7.19338 1.05 0.00145062 0.00133006 0.0653242 0.05988 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.36 0.239667 0.215853 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0514732 0.0465681 172 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.73 vpr 55.70 MiB 0.05 6824 -1 -1 14 0.43 -1 -1 32512 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.35 1757 10673 2583 7118 972 55.7 MiB 0.19 0.00 8.08019 -170.094 -8.08019 8.08019 1.07 0.00195504 0.00179308 0.0980598 0.0899095 38 4328 19 6.55708e+06 409870 638502. 2209.35 26.22 0.873873 0.786495 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.29 0.17 0.25 -1 -1 0.29 0.0744361 0.0676232 245 245 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 6.07 vpr 54.97 MiB 0.04 6612 -1 -1 11 0.18 -1 -1 32372 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1212 8009 2047 5116 846 55.2 MiB 0.12 0.00 6.43815 -136.573 -6.43815 6.43815 1.05 0.00139448 0.00127896 0.0605636 0.0555217 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.87 0.267 0.240119 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524819 0.0474584 160 155 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.19 vpr 55.34 MiB 0.05 6924 -1 -1 13 0.27 -1 -1 32904 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1339 4512 785 3381 346 55.4 MiB 0.09 0.00 8.23298 -156.44 -8.23298 8.23298 1.07 0.00157959 0.00143598 0.0410936 0.0378409 36 3361 29 6.55708e+06 325485 612192. 2118.31 4.60 0.406861 0.365593 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.27 0.12 0.25 -1 -1 0.27 0.054486 0.0494655 177 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.51 vpr 55.52 MiB 0.02 6744 -1 -1 12 0.28 -1 -1 32912 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1513 7973 1697 5548 728 55.6 MiB 0.15 0.00 7.05697 -153.444 -7.05697 7.05697 1.07 0.0017887 0.00163897 0.0691471 0.0634731 34 4231 45 6.55708e+06 409870 585099. 2024.56 4.11 0.475307 0.427004 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.26 0.29 0.22 -1 -1 0.26 0.0996208 0.0902505 227 224 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.98 vpr 55.26 MiB 0.04 6636 -1 -1 13 0.24 -1 -1 32884 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1286 13340 3362 8056 1922 55.3 MiB 0.21 0.00 7.57452 -156.038 -7.57452 7.57452 1.05 0.0015646 0.0014345 0.115043 0.105414 28 3767 45 6.55708e+06 337540 500653. 1732.36 10.52 0.636032 0.571323 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.22 0.22 0.18 -1 -1 0.22 0.0845574 0.0762556 184 179 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.97 vpr 55.26 MiB 0.05 6744 -1 -1 13 0.22 -1 -1 32792 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1203 12563 3367 6823 2373 55.5 MiB 0.18 0.00 7.77281 -162.033 -7.77281 7.77281 0.81 0.00150769 0.00138154 0.100441 0.0918099 30 2961 38 6.55708e+06 301375 526063. 1820.29 2.00 0.340434 0.306861 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0471758 0.0428135 175 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.77 vpr 55.30 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 32928 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 17.0 MiB 0.63 1416 10679 2747 6565 1367 55.8 MiB 0.17 0.00 6.86528 -151.049 -6.86528 6.86528 1.05 0.00171815 0.00157454 0.0902988 0.0826979 36 3519 46 6.55708e+06 373705 612192. 2118.31 6.27 0.672632 0.604984 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0600395 0.0546031 205 204 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.19 vpr 55.50 MiB 0.05 6872 -1 -1 13 0.28 -1 -1 32776 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1584 11223 2635 7117 1471 55.4 MiB 0.18 0.00 7.96921 -159.229 -7.96921 7.96921 1.05 0.00170389 0.00156205 0.0965322 0.088456 36 3876 21 6.55708e+06 349595 612192. 2118.31 5.38 0.461336 0.415327 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0620256 0.0563331 205 205 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.86 vpr 55.18 MiB 0.05 6716 -1 -1 14 0.29 -1 -1 32992 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 16.8 MiB 0.38 1228 9197 2464 5958 775 55.3 MiB 0.14 0.00 7.91369 -163.421 -7.91369 7.91369 1.09 0.00149985 0.00136412 0.0750989 0.0687248 28 3563 32 6.55708e+06 301375 500653. 1732.36 3.18 0.299666 0.269764 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0634698 0.0573009 167 165 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 8.33 vpr 55.39 MiB 0.04 6808 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 16.7 MiB 0.49 1537 7336 1683 5066 587 55.3 MiB 0.12 0.00 8.38432 -170.174 -8.38432 8.38432 1.06 0.00161444 0.00147957 0.062049 0.0568194 38 3362 32 6.55708e+06 361650 638502. 2209.35 5.58 0.582894 0.522708 23326 155178 -1 2978 15 1374 3965 188691 44200 7.21136 7.21136 -157.114 -7.21136 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0534632 0.0485525 199 199 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 8.32 vpr 55.71 MiB 0.03 6836 -1 -1 13 0.28 -1 -1 33120 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1531 8951 1993 6087 871 55.8 MiB 0.15 0.00 8.45326 -176.134 -8.45326 8.45326 1.09 0.00195245 0.00178634 0.0775527 0.0709209 38 3461 21 6.55708e+06 385760 638502. 2209.35 6.01 0.662124 0.594815 23326 155178 -1 2972 14 1250 4091 193064 44497 7.36616 7.36616 -162.608 -7.36616 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0565557 0.0515565 221 220 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.35 vpr 55.52 MiB 0.04 6780 -1 -1 12 0.33 -1 -1 32684 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1599 7323 1463 5208 652 55.7 MiB 0.15 0.00 7.47193 -159.786 -7.47193 7.47193 1.05 0.00160762 0.00150533 0.074181 0.0680498 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.25 0.41036 0.369942 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0647682 0.0588088 231 230 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.10 vpr 54.85 MiB 0.04 6616 -1 -1 11 0.13 -1 -1 32524 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 16.1 MiB 0.20 1043 10883 2916 6057 1910 54.8 MiB 0.14 0.00 5.95009 -133.303 -5.95009 5.95009 1.06 0.00115558 0.0010567 0.0734671 0.0671415 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.40 0.242775 0.218237 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0422223 0.0381188 127 122 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 6.80 vpr 55.13 MiB 0.04 6592 -1 -1 13 0.21 -1 -1 32792 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 16.6 MiB 0.45 1281 6211 1217 4524 470 55.3 MiB 0.10 0.00 7.73937 -166.104 -7.73937 7.73937 1.05 0.00138912 0.00127382 0.0473656 0.0434408 28 3459 26 6.55708e+06 325485 500653. 1732.36 2.44 0.236523 0.212649 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.23 0.15 0.21 -1 -1 0.23 0.0664926 0.0599691 156 151 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.44 vpr 55.89 MiB 0.05 6892 -1 -1 14 0.44 -1 -1 33080 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 17.7 MiB 0.37 1818 9380 1999 6471 910 56.0 MiB 0.17 0.00 8.82888 -183.788 -8.82888 8.82888 1.04 0.00203461 0.00186364 0.0885432 0.0811599 36 4579 30 6.55708e+06 433980 612192. 2118.31 5.45 0.566356 0.51094 22750 144809 -1 3780 17 1639 5179 293117 66152 7.76595 7.76595 -173.279 -7.76595 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0758363 0.0691542 267 267 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.82 vpr 55.12 MiB 0.04 6788 -1 -1 13 0.32 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 17.0 MiB 0.49 1477 8735 1981 6002 752 55.8 MiB 0.15 0.00 7.79483 -168.531 -7.79483 7.79483 1.05 0.00184633 0.00169238 0.0820304 0.0750558 26 4757 42 6.55708e+06 373705 477104. 1650.88 8.19 0.634428 0.570565 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.22 0.31 0.17 -1 -1 0.22 0.131845 0.119113 224 224 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.85 vpr 54.79 MiB 0.05 6540 -1 -1 11 0.16 -1 -1 32716 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 16.4 MiB 0.20 916 9943 3248 5072 1623 54.9 MiB 0.14 0.00 6.47975 -131.851 -6.47975 6.47975 1.07 0.00123955 0.00113508 0.0700747 0.0640659 36 2386 24 6.55708e+06 277265 612192. 2118.31 4.93 0.439965 0.394161 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.042569 0.0385803 137 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.65 vpr 55.66 MiB 0.05 7116 -1 -1 15 0.45 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1670 7867 1614 5465 788 56.0 MiB 0.15 0.00 8.70958 -179.837 -8.70958 8.70958 1.06 0.00195493 0.00179145 0.075405 0.0691463 36 4552 44 6.55708e+06 397815 612192. 2118.31 5.86 0.570721 0.514333 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.27 0.20 0.23 -1 -1 0.27 0.082099 0.0744768 241 241 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.44 vpr 55.55 MiB 0.04 6660 -1 -1 13 0.31 -1 -1 32980 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1370 12483 3068 7076 2339 55.6 MiB 0.21 0.00 7.72925 -154.988 -7.72925 7.72925 1.05 0.00172318 0.00157928 0.111599 0.10226 38 3720 24 6.55708e+06 349595 638502. 2209.35 19.56 0.821044 0.737552 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0626732 0.056938 207 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.78 vpr 55.03 MiB 0.04 6628 -1 -1 11 0.13 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1161 6718 1477 4583 658 54.9 MiB 0.10 0.00 6.62468 -135.028 -6.62468 6.62468 1.04 0.00123663 0.00113166 0.0462763 0.0423545 28 3179 30 6.55708e+06 289320 500653. 1732.36 8.01 0.383186 0.34288 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0506809 0.0457874 149 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.35 vpr 55.80 MiB 0.04 6876 -1 -1 12 0.33 -1 -1 32704 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1540 8735 2140 5810 785 55.6 MiB 0.15 0.00 7.17512 -150.872 -7.17512 7.17512 1.06 0.00174545 0.00159804 0.0757152 0.0693652 38 3444 21 6.55708e+06 373705 638502. 2209.35 5.63 0.621913 0.558859 23326 155178 -1 2888 15 1226 3932 189527 43326 6.31224 6.31224 -142.735 -6.31224 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0581905 0.0528705 217 214 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.22 vpr 55.22 MiB 0.04 6584 -1 -1 12 0.20 -1 -1 32532 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1252 5517 962 4221 334 55.1 MiB 0.09 0.00 7.41221 -152.744 -7.41221 7.41221 1.11 0.00143357 0.00131379 0.0426852 0.0391467 30 2953 20 6.55708e+06 313430 526063. 1820.29 4.35 0.477066 0.427262 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0513219 0.0464698 164 159 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 7.05 vpr 54.96 MiB 0.04 6584 -1 -1 12 0.18 -1 -1 32736 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 998 6383 1524 4361 498 55.0 MiB 0.12 0.00 7.15324 -144.822 -7.15324 7.15324 1.06 0.00088075 0.000790294 0.0582231 0.0533159 28 2443 17 6.55708e+06 253155 500653. 1732.36 3.52 0.338269 0.302736 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0547264 0.0494445 139 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.75 vpr 55.58 MiB 0.05 6760 -1 -1 12 0.28 -1 -1 32864 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1315 14583 4048 7926 2609 55.6 MiB 0.22 0.00 7.005 -132.757 -7.005 7.005 1.04 0.00170066 0.00155946 0.122325 0.112031 30 3666 44 6.55708e+06 385760 526063. 1820.29 3.21 0.415895 0.375978 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0620603 0.0563467 208 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 7.80 vpr 55.73 MiB 0.05 6744 -1 -1 14 0.32 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 17.3 MiB 0.51 1622 11046 2782 7202 1062 55.9 MiB 0.19 0.00 8.27143 -173.321 -8.27143 8.27143 1.06 0.00182707 0.00167659 0.0974203 0.0892994 30 4187 27 6.55708e+06 385760 526063. 1820.29 2.03 0.348656 0.314945 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.24 0.15 0.16 -1 -1 0.24 0.0680064 0.0617131 227 222 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.93 vpr 55.43 MiB 0.05 6716 -1 -1 12 0.23 -1 -1 32776 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1318 5191 912 3744 535 55.6 MiB 0.09 0.00 7.44045 -154.388 -7.44045 7.44045 0.88 0.0016361 0.00149899 0.0463444 0.042548 28 3868 27 6.55708e+06 325485 500653. 1732.36 2.58 0.272133 0.245118 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0616719 0.0559177 192 192 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.70 vpr 54.79 MiB 0.04 6700 -1 -1 12 0.14 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1100 6615 1512 4600 503 54.8 MiB 0.11 0.01 6.69922 -140.427 -6.69922 6.69922 1.06 0.0038875 0.00355745 0.0512008 0.0468729 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.57 0.198098 0.178185 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0425031 0.0383707 133 127 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 6.88 vpr 54.93 MiB 0.02 6644 -1 -1 12 0.23 -1 -1 32364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1148 11398 2849 6739 1810 55.1 MiB 0.17 0.00 7.39043 -143.264 -7.39043 7.39043 1.07 0.00144854 0.00132977 0.0892775 0.0819758 28 3477 38 6.55708e+06 301375 500653. 1732.36 9.16 0.596773 0.534736 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.22 0.14 0.20 -1 -1 0.22 0.0593155 0.0535855 170 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 9.64 vpr 55.30 MiB 0.05 6748 -1 -1 11 0.19 -1 -1 32940 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1267 6723 1289 4852 582 55.4 MiB 0.11 0.00 6.0378 -125.718 -6.0378 6.0378 1.12 0.00154 0.00141266 0.0538567 0.0492871 28 3807 32 6.55708e+06 337540 500653. 1732.36 3.40 0.285816 0.257143 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.24 0.18 0.18 -1 -1 0.24 0.0658058 0.0594448 189 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.26 vpr 55.27 MiB 0.04 6752 -1 -1 11 0.20 -1 -1 32736 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 16.7 MiB 0.32 1153 14128 4158 7800 2170 55.4 MiB 0.20 0.00 6.59995 -118.466 -6.59995 6.59995 1.05 0.00144559 0.00132516 0.109007 0.0999831 38 2640 22 6.55708e+06 337540 638502. 2209.35 5.11 0.501641 0.450767 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.29 0.11 0.27 -1 -1 0.29 0.0501783 0.0455059 171 169 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.11 vpr 54.96 MiB 0.04 6548 -1 -1 13 0.18 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 16.6 MiB 0.43 1112 5463 1180 3669 614 55.1 MiB 0.08 0.00 7.87624 -151.634 -7.87624 7.87624 1.05 0.00126564 0.0011607 0.0395405 0.0362924 30 2565 19 6.55708e+06 301375 526063. 1820.29 3.99 0.358572 0.321662 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0384435 0.0348995 142 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.15 vpr 55.11 MiB 0.04 6656 -1 -1 12 0.22 -1 -1 32412 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1245 6211 1266 4515 430 55.4 MiB 0.11 0.00 7.2362 -155.292 -7.2362 7.2362 1.07 0.00150813 0.00138215 0.0505199 0.046341 34 3145 23 6.55708e+06 325485 585099. 2024.56 4.20 0.493695 0.442309 22462 138074 -1 2771 14 1227 3252 178140 42327 6.38924 6.38924 -148.221 -6.38924 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0469171 0.0425693 180 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.00 vpr 55.37 MiB 0.05 6668 -1 -1 13 0.28 -1 -1 32804 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 16.8 MiB 0.37 1187 15843 5382 8046 2415 55.4 MiB 0.23 0.00 7.69912 -151.004 -7.69912 7.69912 1.05 0.00161306 0.0014785 0.127334 0.116699 32 3890 40 6.55708e+06 361650 554710. 1919.41 14.73 0.745445 0.669192 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.25 0.18 0.16 -1 -1 0.25 0.0717666 0.0648554 195 192 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.83 vpr 55.25 MiB 0.05 6736 -1 -1 14 0.31 -1 -1 32924 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.28 1371 16295 4299 9326 2670 55.4 MiB 0.25 0.00 7.90558 -162.398 -7.90558 7.90558 1.07 0.00176261 0.00161567 0.138288 0.126695 30 3631 37 6.55708e+06 373705 526063. 1820.29 10.06 0.655133 0.589794 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.26 0.13 0.20 -1 -1 0.26 0.0668355 0.0606901 215 214 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.89 vpr 55.24 MiB 0.04 6768 -1 -1 14 0.26 -1 -1 32852 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1364 9067 2106 6307 654 55.6 MiB 0.15 0.00 7.8859 -150.917 -7.8859 7.8859 1.05 0.00159805 0.0014633 0.0753546 0.0689786 36 3364 28 6.55708e+06 325485 612192. 2118.31 5.07 0.44437 0.399836 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.060476 0.0548419 183 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.79 vpr 55.55 MiB 0.04 6844 -1 -1 13 0.33 -1 -1 33252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1350 6211 1219 4577 415 55.5 MiB 0.11 0.00 7.98147 -162.621 -7.98147 7.98147 1.04 0.0016792 0.0015403 0.0577606 0.0530184 36 3253 20 6.55708e+06 325485 612192. 2118.31 3.40 0.416727 0.374837 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.24 0.08 0.21 -1 -1 0.24 0.0283175 0.0256211 195 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.93 vpr 54.79 MiB 0.04 6696 -1 -1 13 0.18 -1 -1 32704 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1092 10670 2647 6412 1611 54.9 MiB 0.14 0.00 7.9674 -161.443 -7.9674 7.9674 1.10 0.00128282 0.0011753 0.0776175 0.0711099 32 2870 34 6.55708e+06 289320 554710. 1919.41 2.73 0.389309 0.349985 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.26 0.10 0.21 -1 -1 0.26 0.0426228 0.0386276 146 142 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 8.72 vpr 55.48 MiB 0.05 6824 -1 -1 13 0.43 -1 -1 32920 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1304 7653 1748 5033 872 55.7 MiB 0.14 0.00 8.34953 -161.953 -8.34953 8.34953 1.05 0.0017132 0.00157123 0.0695901 0.0639062 30 3707 24 6.55708e+06 373705 526063. 1820.29 2.44 0.302563 0.273375 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0681447 0.0618533 208 206 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 7.19 vpr 55.24 MiB 0.05 6892 -1 -1 14 0.28 -1 -1 31488 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1332 7336 1480 5450 406 55.3 MiB 0.12 0.00 7.42283 -159.831 -7.42283 7.42283 1.04 0.00159275 0.00145987 0.0610949 0.0559217 28 3869 50 6.55708e+06 361650 500653. 1732.36 11.57 0.687715 0.617283 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.22 0.68 0.18 -1 -1 0.22 0.170927 0.153341 184 182 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.37 vpr 55.40 MiB 0.05 6788 -1 -1 12 0.25 -1 -1 33016 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1420 6575 1256 4964 355 55.5 MiB 0.11 0.00 8.28906 -160.635 -8.28906 8.28906 1.05 0.00164982 0.00151379 0.0552008 0.0506724 34 3727 35 6.55708e+06 385760 585099. 2024.56 5.74 0.613486 0.550755 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0595078 0.0541626 203 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 9.68 vpr 55.27 MiB 0.05 6772 -1 -1 13 0.23 -1 -1 32904 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1315 6522 1420 4675 427 55.6 MiB 0.11 0.00 7.42898 -137.517 -7.42898 7.42898 1.05 0.00154167 0.00141503 0.0561738 0.0515267 30 3356 18 6.55708e+06 337540 526063. 1820.29 2.56 0.249606 0.225272 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0553616 0.0502198 186 185 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.44 vpr 55.70 MiB 0.02 6756 -1 -1 14 0.34 -1 -1 32892 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.48 1483 8199 1652 5918 629 55.9 MiB 0.14 0.00 8.85275 -170.114 -8.85275 8.85275 1.05 0.00178525 0.00163153 0.0721702 0.0661061 28 4521 37 6.55708e+06 385760 500653. 1732.36 12.88 0.588764 0.529368 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0764262 0.0692793 220 216 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.88 vpr 55.46 MiB 0.04 6776 -1 -1 11 0.28 -1 -1 32756 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 16.8 MiB 0.31 1183 4512 917 3199 396 55.3 MiB 0.08 0.00 6.95549 -133.856 -6.95549 6.95549 1.04 0.00150902 0.00138555 0.0383013 0.0351444 28 3440 40 6.55708e+06 349595 500653. 1732.36 8.98 0.607915 0.543597 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0748488 0.0674849 174 174 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 7.87 vpr 55.05 MiB 0.04 6480 -1 -1 13 0.16 -1 -1 32572 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1098 6999 1531 4700 768 55.1 MiB 0.10 0.00 7.85907 -167.622 -7.85907 7.85907 1.04 0.00124672 0.00114118 0.0492086 0.0450668 26 3154 29 6.55708e+06 277265 477104. 1650.88 2.68 0.226191 0.2033 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.23 0.12 0.17 -1 -1 0.23 0.0491871 0.0444309 142 131 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 10.19 vpr 55.24 MiB 0.05 6832 -1 -1 14 0.23 -1 -1 32736 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1308 7027 1497 5027 503 55.4 MiB 0.12 0.00 8.02087 -160.438 -8.02087 8.02087 1.04 0.00155512 0.00141697 0.057695 0.0528692 28 3737 36 6.55708e+06 325485 500653. 1732.36 8.59 0.570896 0.511661 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.065383 0.0590323 183 179 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.89 vpr 55.90 MiB 0.05 6732 -1 -1 15 0.36 -1 -1 33280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 17.2 MiB 0.54 1579 7323 1484 5148 691 55.8 MiB 0.13 0.00 9.31018 -193.267 -9.31018 9.31018 1.08 0.00182715 0.00167535 0.0667704 0.0612093 28 4344 42 6.55708e+06 385760 500653. 1732.36 2.49 0.366017 0.33018 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0694484 0.0630225 228 228 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.93 vpr 54.74 MiB 0.04 6548 -1 -1 11 0.16 -1 -1 32476 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 16.4 MiB 0.57 1088 7079 1594 5001 484 54.8 MiB 0.10 0.00 6.82798 -137.917 -6.82798 6.82798 1.11 0.00118489 0.00108007 0.0478437 0.0437565 28 2912 30 6.55708e+06 265210 500653. 1732.36 3.27 0.228674 0.205567 21310 115450 -1 2481 64 1445 5105 1045472 613892 5.86358 5.86358 -137.858 -5.86358 0 0 612192. 2118.31 0.22 0.53 0.18 -1 -1 0.22 0.133271 0.119236 126 124 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.70 vpr 55.17 MiB 0.04 6528 -1 -1 12 0.18 -1 -1 32488 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1155 8207 1978 5141 1088 55.1 MiB 0.12 0.00 7.38032 -154.384 -7.38032 7.38032 1.05 0.0013655 0.00125107 0.0610134 0.0559849 46 2574 16 6.55708e+06 313430 782063. 2706.10 4.87 0.43912 0.393126 24766 183262 -1 2168 17 929 2778 124629 29449 6.47024 6.47024 -143.196 -6.47024 0 0 958460. 3316.47 0.33 0.10 0.30 -1 -1 0.33 0.0494643 0.0447796 157 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 7.16 vpr 55.40 MiB 0.05 6704 -1 -1 12 0.30 -1 -1 33000 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 17.0 MiB 0.34 1424 7439 1505 5396 538 55.8 MiB 0.13 0.00 7.41461 -164.576 -7.41461 7.41461 1.05 0.00173532 0.00158803 0.0666674 0.0610506 34 3820 24 6.55708e+06 373705 585099. 2024.56 4.55 0.493087 0.442952 22462 138074 -1 3126 15 1357 3877 209257 49419 6.7229 6.7229 -159.681 -6.7229 0 0 742403. 2568.87 0.26 0.13 0.19 -1 -1 0.26 0.0572853 0.0520771 209 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.62 vpr 55.12 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32868 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.47 1429 8579 2186 5781 612 55.7 MiB 0.14 0.00 7.42022 -157.463 -7.42022 7.42022 1.05 0.00154368 0.00141304 0.0694416 0.0636671 30 3708 20 6.55708e+06 337540 526063. 1820.29 2.05 0.266346 0.240173 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.22 0.07 0.10 -1 -1 0.22 0.0262101 0.0237065 186 184 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 11.30 vpr 55.76 MiB 0.05 6864 -1 -1 14 0.46 -1 -1 33324 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1656 14691 3485 9017 2189 55.8 MiB 0.24 0.00 8.55829 -177.042 -8.55829 8.55829 1.04 0.00193157 0.00177069 0.129995 0.11918 38 3905 20 6.55708e+06 421925 638502. 2209.35 5.79 0.692246 0.624088 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.28 0.15 0.25 -1 -1 0.28 0.0703929 0.0640838 241 239 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 7.23 vpr 55.20 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32532 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1210 13157 4017 6643 2497 55.3 MiB 0.19 0.00 6.86503 -131.636 -6.86503 6.86503 1.05 0.00150857 0.00138312 0.104338 0.0956301 30 3211 36 6.55708e+06 325485 526063. 1820.29 2.10 0.335543 0.302607 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.051727 0.0469074 176 173 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 5.57 vpr 54.85 MiB 0.04 6592 -1 -1 11 0.17 -1 -1 32356 -1 -1 25 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 16.4 MiB 0.22 858 9234 2019 6554 661 54.9 MiB 0.16 0.00 6.39815 -115.858 -6.39815 6.39815 1.07 0.00122167 0.00111864 0.090794 0.0831485 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.57 0.254516 0.229707 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0566443 0.0508183 138 138 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 11.85 vpr 55.96 MiB 0.05 7028 -1 -1 13 0.41 -1 -1 33036 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 17.8 MiB 0.27 1915 8888 1943 6342 603 56.0 MiB 0.17 0.00 7.96961 -161.89 -7.96961 7.96961 1.05 0.00215819 0.00197941 0.0851364 0.0780885 36 5494 32 6.55708e+06 482200 612192. 2118.31 7.40 0.746579 0.673031 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.27 0.19 0.23 -1 -1 0.27 0.07906 0.0720521 280 279 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.71 vpr 55.28 MiB 0.05 6844 -1 -1 14 0.26 -1 -1 33128 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 17.0 MiB 0.27 1307 6821 1398 4713 710 55.5 MiB 0.11 0.00 8.63003 -171.716 -8.63003 8.63003 1.04 0.00153037 0.00140356 0.0586958 0.0538591 28 3653 27 6.55708e+06 313430 500653. 1732.36 10.55 0.534767 0.4793 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547028 0.0495538 178 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.68 vpr 55.00 MiB 0.04 6580 -1 -1 12 0.16 -1 -1 32292 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1197 8251 1803 5271 1177 54.9 MiB 0.11 0.00 7.37817 -162.484 -7.37817 7.37817 1.05 0.00129686 0.00118844 0.05599 0.0513393 28 3416 42 6.55708e+06 325485 500653. 1732.36 2.68 0.26409 0.237519 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0445335 0.0403685 144 134 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.40 vpr 55.25 MiB 0.04 6592 -1 -1 13 0.29 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1296 6623 1420 4442 761 55.3 MiB 0.12 0.00 7.83929 -154.667 -7.83929 7.83929 1.05 0.00152501 0.00139922 0.0574432 0.0526812 30 3458 27 6.55708e+06 301375 526063. 1820.29 9.47 0.48898 0.438491 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0529112 0.0480454 172 171 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 8.35 vpr 55.82 MiB 0.03 6812 -1 -1 13 0.31 -1 -1 33516 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1675 5723 977 4473 273 55.9 MiB 0.11 0.00 7.72485 -162.113 -7.72485 7.72485 1.06 0.00184348 0.00169113 0.0526985 0.0484279 30 4421 42 6.55708e+06 421925 526063. 1820.29 3.19 0.358461 0.323176 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0665945 0.0605167 235 234 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.74 vpr 55.51 MiB 0.05 6740 -1 -1 11 0.23 -1 -1 32892 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1363 8827 2077 5986 764 55.6 MiB 0.14 0.00 7.0834 -142.912 -7.0834 7.0834 1.06 0.00162525 0.00148949 0.0739497 0.0677753 30 3732 37 6.55708e+06 385760 526063. 1820.29 2.95 0.333311 0.300675 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0593074 0.0537365 199 199 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 8.27 vpr 55.58 MiB 0.03 6748 -1 -1 15 0.32 -1 -1 32856 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1473 9543 2499 5737 1307 55.7 MiB 0.16 0.00 9.02492 -182.614 -9.02492 9.02492 1.07 0.00170425 0.00155937 0.0834121 0.0762538 36 3930 43 6.55708e+06 349595 612192. 2118.31 5.96 0.64415 0.578972 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610698 0.0553805 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 6.80 vpr 55.38 MiB 0.05 6676 -1 -1 13 0.31 -1 -1 32944 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 17.1 MiB 0.22 1528 11922 3138 7505 1279 55.7 MiB 0.20 0.00 8.01701 -168.403 -8.01701 8.01701 1.05 0.00136382 0.00124055 0.103502 0.0947721 34 4013 32 6.55708e+06 385760 585099. 2024.56 3.25 0.428402 0.386334 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.29 0.15 0.16 -1 -1 0.29 0.0676822 0.0615819 217 217 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.05 vpr 55.28 MiB 0.04 6544 -1 -1 12 0.20 -1 -1 32288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.47 1144 6321 1459 4287 575 55.0 MiB 0.10 0.00 6.98904 -150.776 -6.98904 6.98904 1.05 0.0012962 0.00118838 0.0448126 0.0411148 30 2863 42 6.55708e+06 349595 526063. 1820.29 2.00 0.255304 0.22938 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0441448 0.0400114 159 151 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.43 vpr 54.96 MiB 0.03 6512 -1 -1 11 0.15 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 16.6 MiB 0.39 1041 8402 1813 6153 436 55.1 MiB 0.12 0.00 6.97021 -142.93 -6.97021 6.97021 1.05 0.0012389 0.00113424 0.0588392 0.0538441 30 2905 24 6.55708e+06 265210 526063. 1820.29 2.30 0.232955 0.209659 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0449475 0.0406488 138 137 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 9.48 vpr 55.54 MiB 0.05 6840 -1 -1 13 0.32 -1 -1 32896 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 17.0 MiB 0.38 1528 7975 1701 5466 808 55.7 MiB 0.13 0.00 8.19329 -167.366 -8.19329 8.19329 1.08 0.00170237 0.00155868 0.0691094 0.0633781 28 4213 29 6.55708e+06 373705 500653. 1732.36 9.31 0.619605 0.556544 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0610316 0.0553164 204 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.20 vpr 54.84 MiB 0.02 6616 -1 -1 10 0.15 -1 -1 32856 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1030 5107 1053 3581 473 55.1 MiB 0.10 0.00 6.08471 -123.999 -6.08471 6.08471 1.05 0.00121626 0.00111315 0.0475233 0.0434209 30 2309 29 6.55708e+06 289320 526063. 1820.29 3.80 0.39355 0.352358 21886 126133 -1 1984 35 866 2657 373349 213628 5.25032 5.25032 -118.026 -5.25032 0 0 666494. 2306.21 0.26 0.24 0.20 -1 -1 0.26 0.0802863 0.072171 138 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 6.78 vpr 55.10 MiB 0.04 6668 -1 -1 14 0.19 -1 -1 32780 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 16.4 MiB 0.42 1019 11203 3089 5915 2199 55.0 MiB 0.15 0.00 7.69221 -156.392 -7.69221 7.69221 1.05 0.00132736 0.00121554 0.0791989 0.0724887 34 2803 37 6.55708e+06 289320 585099. 2024.56 2.54 0.333525 0.299941 22462 138074 -1 2326 18 1079 3249 175189 43266 6.7601 6.7601 -147.192 -6.7601 0 0 742403. 2568.87 0.28 0.12 0.23 -1 -1 0.28 0.0503284 0.0453972 149 146 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 6.40 vpr 55.41 MiB 0.05 6684 -1 -1 12 0.30 -1 -1 32908 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1351 11891 3061 6959 1871 55.6 MiB 0.19 0.00 7.58423 -159.03 -7.58423 7.58423 1.08 0.00167668 0.00153839 0.103121 0.094297 36 3367 18 6.55708e+06 349595 612192. 2118.31 3.62 0.451807 0.406828 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610964 0.0554537 201 201 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 8.33 vpr 54.74 MiB 0.05 6552 -1 -1 12 0.16 -1 -1 32292 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 16.2 MiB 0.30 1079 5567 1026 4331 210 54.8 MiB 0.08 0.00 6.95154 -149.121 -6.95154 6.95154 1.04 0.00122763 0.00112318 0.039747 0.0364123 28 3150 46 6.55708e+06 277265 500653. 1732.36 7.03 0.438707 0.391887 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.20 0.11 0.09 -1 -1 0.20 0.0469118 0.042471 141 138 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 9.18 vpr 55.19 MiB 0.05 6716 -1 -1 12 0.19 -1 -1 32856 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1263 7843 1830 5405 608 55.4 MiB 0.13 0.00 7.086 -151.926 -7.086 7.086 1.05 0.00155138 0.00142046 0.0659666 0.060399 28 3643 19 6.55708e+06 325485 500653. 1732.36 2.50 0.266154 0.239664 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.23 0.22 0.18 -1 -1 0.23 0.0750401 0.0676982 188 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 6.67 vpr 55.32 MiB 0.05 6748 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1349 6509 1390 4237 882 55.5 MiB 0.11 0.00 7.60996 -160.091 -7.60996 7.60996 1.07 0.00156315 0.00143197 0.0540348 0.0495299 34 3758 47 6.55708e+06 349595 585099. 2024.56 2.93 0.419411 0.376743 22462 138074 -1 3187 19 1257 3833 298777 77572 6.5197 6.5197 -154.677 -6.5197 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0623382 0.0564277 179 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.03 vpr 55.03 MiB 0.04 6620 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1256 8251 2031 5471 749 55.2 MiB 0.12 0.00 6.67834 -143.715 -6.67834 6.67834 1.07 0.00128913 0.00118107 0.0564648 0.0516941 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.79 0.230362 0.207374 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0516899 0.0467213 148 143 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.14 vpr 54.96 MiB 0.04 6568 -1 -1 13 0.19 -1 -1 32508 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1339 8047 1963 5261 823 55.1 MiB 0.10 0.00 7.72555 -161.807 -7.72555 7.72555 1.06 0.000546167 0.000493652 0.0368678 0.0332272 28 3857 33 6.55708e+06 325485 500653. 1732.36 9.24 0.56761 0.507103 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.23 0.24 0.18 -1 -1 0.23 0.0843968 0.0758925 167 165 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.44 vpr 55.53 MiB 0.05 6840 -1 -1 13 0.25 -1 -1 32928 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 16.8 MiB 0.20 1276 15187 4382 8407 2398 55.6 MiB 0.23 0.00 7.99583 -160.474 -7.99583 7.99583 1.07 0.00156065 0.00143128 0.121243 0.111127 40 2881 19 6.55708e+06 325485 666494. 2306.21 5.02 0.578971 0.520822 23614 160646 -1 2859 15 1242 3716 205051 47781 7.09316 7.09316 -151.569 -7.09316 0 0 872365. 3018.56 0.30 0.12 0.27 -1 -1 0.30 0.0518574 0.0470708 184 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 6.67 vpr 55.12 MiB 0.05 6880 -1 -1 11 0.19 -1 -1 32740 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1142 12761 3414 7382 1965 55.1 MiB 0.19 0.00 6.37111 -124.414 -6.37111 6.37111 1.05 0.00137673 0.00125894 0.103842 0.0949386 36 2747 19 6.55708e+06 337540 612192. 2118.31 4.87 0.481412 0.431847 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0477242 0.043124 162 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.44 vpr 55.93 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33456 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 17.3 MiB 0.39 1569 9951 2260 6812 879 55.9 MiB 0.18 0.00 8.3634 -177.338 -8.3634 8.3634 1.00 0.00084219 0.000760871 0.0916238 0.0838099 34 4532 35 6.55708e+06 385760 585099. 2024.56 3.43 0.463318 0.417773 22462 138074 -1 3580 16 1687 4869 264649 62027 7.41056 7.41056 -172.227 -7.41056 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0642241 0.0584273 225 222 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.16 vpr 55.05 MiB 0.04 6612 -1 -1 12 0.20 -1 -1 32476 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 16.5 MiB 0.45 1144 6619 1429 4488 702 55.0 MiB 0.10 0.00 6.81857 -143.271 -6.81857 6.81857 1.05 0.00126147 0.00115514 0.04513 0.0413824 36 2680 25 6.55708e+06 337540 612192. 2118.31 2.70 0.328613 0.294904 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0394137 0.0358377 145 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.30 vpr 55.35 MiB 0.04 6744 -1 -1 13 0.29 -1 -1 32992 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1396 7843 1736 5120 987 55.4 MiB 0.12 0.00 7.69421 -153.973 -7.69421 7.69421 1.08 0.0015876 0.00145072 0.0658667 0.0603216 28 3900 43 6.55708e+06 325485 500653. 1732.36 3.26 0.308391 0.277594 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.22 0.19 0.18 -1 -1 0.22 0.0681866 0.0616621 189 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.66 vpr 55.04 MiB 0.04 6620 -1 -1 13 0.18 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1076 10583 2933 6087 1563 54.9 MiB 0.14 0.00 7.44215 -162.135 -7.44215 7.44215 1.05 0.00128006 0.0011715 0.0721755 0.0660637 28 3369 28 6.55708e+06 301375 500653. 1732.36 2.87 0.261323 0.235436 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0569187 0.0513276 146 141 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.70 vpr 55.46 MiB 0.05 6660 -1 -1 12 0.21 -1 -1 32812 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1148 5517 1034 4096 387 55.2 MiB 0.09 0.00 7.36755 -151.17 -7.36755 7.36755 1.05 0.00152259 0.0013947 0.0463069 0.0424714 34 3150 21 6.55708e+06 313430 585099. 2024.56 4.31 0.495371 0.443919 22462 138074 -1 2544 17 1051 3386 187761 43277 6.5237 6.5237 -142.576 -6.5237 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0554314 0.0502404 172 171 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.82 vpr 55.96 MiB 0.05 6976 -1 -1 15 0.50 -1 -1 32832 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1759 9998 2422 6696 880 55.8 MiB 0.18 0.00 8.78932 -180.299 -8.78932 8.78932 1.07 0.00202495 0.00186002 0.0969755 0.0888388 36 4483 32 6.55708e+06 409870 612192. 2118.31 6.18 0.569647 0.514341 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.27 0.21 0.25 -1 -1 0.27 0.0841946 0.0764979 250 250 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.15 vpr 54.30 MiB 0.04 6412 -1 -1 10 0.10 -1 -1 32068 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 16.0 MiB 0.29 757 9042 2084 6396 562 54.4 MiB 0.10 0.00 5.22063 -120.025 -5.22063 5.22063 1.07 0.000893745 0.00081805 0.051473 0.0469983 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.55 0.160243 0.143452 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.23 0.08 0.18 -1 -1 0.23 0.0301454 0.0270752 92 85 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 6.71 vpr 54.79 MiB 0.03 6612 -1 -1 13 0.15 -1 -1 32592 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1069 6415 1411 4237 767 55.1 MiB 0.09 0.00 7.77311 -151.473 -7.77311 7.77311 1.07 0.00128432 0.00117689 0.0442048 0.0404886 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.87 0.265755 0.238888 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0710206 0.0639536 150 141 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.24 vpr 55.18 MiB 0.05 6636 -1 -1 12 0.19 -1 -1 32624 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1241 11223 2642 6703 1878 55.1 MiB 0.17 0.00 6.72746 -150.964 -6.72746 6.72746 1.05 0.001451 0.00133137 0.0894805 0.0821083 34 3118 16 6.55708e+06 277265 585099. 2024.56 2.50 0.313877 0.283085 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0545664 0.0493467 167 167 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.53 vpr 54.68 MiB 0.05 6580 -1 -1 9 0.13 -1 -1 32424 -1 -1 25 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 16.1 MiB 0.17 840 9694 2571 5897 1226 54.7 MiB 0.12 0.00 5.60806 -104.508 -5.60806 5.60806 1.07 0.0010197 0.00093416 0.058698 0.0538446 26 2429 32 6.55708e+06 301375 477104. 1650.88 3.47 0.209499 0.188176 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0433009 0.0389052 112 111 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 9.64 vpr 55.72 MiB 0.05 6716 -1 -1 12 0.26 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 17.1 MiB 0.57 1640 5273 863 4118 292 55.7 MiB 0.09 0.00 7.59969 -165.851 -7.59969 7.59969 1.05 0.00168915 0.00153707 0.0443563 0.0406678 36 4101 31 6.55708e+06 409870 612192. 2118.31 16.35 0.683667 0.612659 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.100153 0.0904891 209 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.78 vpr 55.60 MiB 0.07 6804 -1 -1 14 0.65 -1 -1 32856 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1228 13340 3394 7367 2579 55.9 MiB 0.22 0.00 8.33716 -163.889 -8.33716 8.33716 1.05 0.00171935 0.00157379 0.116386 0.106507 38 3334 33 6.55708e+06 349595 638502. 2209.35 15.36 0.799747 0.718221 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0570099 0.0518879 204 204 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.01 vpr 55.59 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30656 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 929 17268 4565 10218 2485 56.0 MiB 0.27 0.00 4.24756 -141.398 -4.24756 4.24756 1.07 0.00137294 0.00125818 0.106057 0.0969715 32 2653 22 6.64007e+06 452088 554710. 1919.41 1.38 0.280755 0.253215 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.055258 0.0498254 153 96 32 32 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.45 vpr 55.61 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 17.4 MiB 0.24 873 12919 4129 6395 2395 56.0 MiB 0.21 0.00 4.44716 -130.844 -4.44716 4.44716 1.03 0.00128814 0.00118101 0.0918461 0.0841975 32 2348 20 6.64007e+06 288834 554710. 1919.41 1.32 0.263396 0.237783 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0552136 0.0496668 142 91 30 30 89 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.64 vpr 55.29 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30192 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1003 9675 2005 7104 566 55.7 MiB 0.15 0.00 3.83457 -129.818 -3.83457 3.83457 1.05 0.00128652 0.00118285 0.0582171 0.0534792 30 2305 22 6.64007e+06 439530 526063. 1820.29 1.24 0.220376 0.198559 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.32 0.07 0.18 -1 -1 0.32 0.0307765 0.0275688 142 65 54 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.05 vpr 55.21 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30368 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 17.1 MiB 0.09 990 11245 3461 6773 1011 55.9 MiB 0.20 0.00 4.46418 -132.921 -4.46418 4.46418 1.05 0.00117595 0.00108149 0.0741681 0.0682493 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.46 0.219108 0.197959 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.22 0.14 0.18 -1 -1 0.22 0.060055 0.0542688 138 34 87 29 29 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.79 vpr 55.36 MiB 0.03 7032 -1 -1 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 17.3 MiB 0.12 849 15017 4515 8552 1950 55.9 MiB 0.26 0.00 4.14936 -139.21 -4.14936 4.14936 1.05 0.00125237 0.00114944 0.103123 0.0947044 32 2360 21 6.64007e+06 276276 554710. 1919.41 1.33 0.261821 0.236873 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0550582 0.0496775 153 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.92 vpr 55.45 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 17.4 MiB 0.13 1024 19142 5848 10342 2952 56.1 MiB 0.28 0.01 3.5603 -122.153 -3.5603 3.5603 1.06 0.00137015 0.00125922 0.10756 0.0985194 32 2260 24 6.64007e+06 489762 554710. 1919.41 1.28 0.277724 0.2508 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0541696 0.0488047 156 64 63 32 63 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.99 vpr 54.93 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30460 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 16.3 MiB 0.12 722 12923 4015 7171 1737 55.0 MiB 0.17 0.00 3.7987 -103.375 -3.7987 3.7987 0.80 0.000915725 0.000840192 0.07377 0.0670434 32 1657 16 6.64007e+06 251160 554710. 1919.41 1.15 0.181756 0.163032 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0336964 0.0302072 96 34 54 27 27 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.97 vpr 55.18 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30004 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 16.7 MiB 0.09 948 16081 4441 8879 2761 55.6 MiB 0.20 0.00 3.49449 -109.504 -3.49449 3.49449 1.06 0.00110375 0.00101491 0.0689728 0.0632262 28 2371 22 6.64007e+06 426972 500653. 1732.36 1.35 0.210871 0.190021 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0448822 0.040489 140 4 115 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.11 vpr 55.33 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30040 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 16.7 MiB 0.18 706 7820 1805 5417 598 55.6 MiB 0.12 0.00 3.31336 -101.862 -3.31336 3.31336 1.06 0.00107676 0.000986984 0.0519688 0.0476378 28 1873 21 6.64007e+06 213486 500653. 1732.36 1.07 0.186327 0.167111 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0407442 0.0365137 106 85 0 0 84 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.18 vpr 55.15 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 16.9 MiB 0.18 890 10756 2975 5928 1853 55.6 MiB 0.08 0.00 3.5061 -124.869 -3.5061 3.5061 1.04 0.000387342 0.000350169 0.0257644 0.023324 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.77 0.0768339 0.0678766 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.26 0.09 0.21 -1 -1 0.26 0.0392327 0.0352998 121 34 64 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.97 vpr 55.25 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 29992 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 16.9 MiB 0.17 822 14012 5060 7295 1657 55.6 MiB 0.20 0.00 3.4841 -115.834 -3.4841 3.4841 1.05 0.00106519 0.000977506 0.0897426 0.0823383 28 1767 16 6.64007e+06 226044 500653. 1732.36 1.12 0.216138 0.194887 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0388869 0.0349265 110 63 30 30 60 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.99 vpr 55.02 MiB 0.02 6904 -1 -1 1 0.02 -1 -1 30328 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.8 MiB 0.13 840 9753 2297 6936 520 55.5 MiB 0.14 0.00 3.52209 -114.564 -3.52209 3.52209 1.05 0.00107733 0.000986628 0.0522698 0.0478189 30 1922 21 6.64007e+06 364182 526063. 1820.29 1.19 0.186412 0.167135 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.24 0.08 0.22 -1 -1 0.24 0.0374285 0.0336356 114 65 25 25 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.51 vpr 55.32 MiB 0.07 7104 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 17.2 MiB 0.24 893 19448 6133 10048 3267 55.8 MiB 0.28 0.00 3.56129 -122.026 -3.56129 3.56129 1.05 0.00125396 0.00114913 0.111689 0.102377 32 2222 23 6.64007e+06 426972 554710. 1919.41 1.33 0.274374 0.247935 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.27 0.14 0.21 -1 -1 0.27 0.0548642 0.0494335 145 58 64 32 57 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.69 vpr 55.42 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30344 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1031 17036 4693 9820 2523 56.0 MiB 0.26 0.00 4.31123 -147.759 -4.31123 4.31123 1.12 0.00131247 0.00120392 0.100211 0.0918588 26 2990 23 6.64007e+06 452088 477104. 1650.88 2.33 0.272916 0.246206 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0549128 0.0494706 158 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.85 vpr 55.11 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30628 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 800 8852 2481 5509 862 55.2 MiB 0.07 0.00 3.4261 -103.793 -3.4261 3.4261 0.86 0.000348744 0.000315524 0.0197965 0.0179423 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.73 0.0656575 0.0577674 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.27 0.08 0.23 -1 -1 0.27 0.0348072 0.0309915 108 29 58 29 24 24 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.28 vpr 55.57 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1068 13316 3890 7652 1774 56.0 MiB 0.22 0.00 3.5141 -124.724 -3.5141 3.5141 1.03 0.00130096 0.00119221 0.0948447 0.0869652 32 2326 21 6.64007e+06 276276 554710. 1919.41 1.29 0.258662 0.233591 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.31 0.06 0.14 -1 -1 0.31 0.0231827 0.02072 147 63 64 32 62 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.44 vpr 55.54 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 17.3 MiB 0.20 964 16340 5208 8057 3075 55.9 MiB 0.20 0.00 3.6263 -123.14 -3.6263 3.6263 1.05 0.00124994 0.00114594 0.0909267 0.0833106 34 2358 39 6.64007e+06 452088 585099. 2024.56 2.88 0.387948 0.348479 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.31 0.12 0.22 -1 -1 0.31 0.0370198 0.0331174 144 57 64 32 56 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.23 vpr 55.34 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30044 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 919 13487 3473 7992 2022 55.7 MiB 0.18 0.00 2.83964 -105.375 -2.83964 2.83964 1.05 0.00109892 0.00100631 0.0721393 0.066111 26 2137 22 6.64007e+06 389298 477104. 1650.88 1.13 0.213442 0.192014 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0407777 0.036702 119 65 29 29 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.81 vpr 54.88 MiB 0.04 6700 -1 -1 1 0.03 -1 -1 30032 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56004 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.1 MiB 0.06 670 10835 3352 6011 1472 54.7 MiB 0.12 0.00 2.72344 -89.4054 -2.72344 2.72344 0.94 0.000781874 0.000715656 0.0540326 0.0494786 32 1416 19 6.64007e+06 188370 554710. 1919.41 1.13 0.14952 0.133831 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.27 0.07 0.23 -1 -1 0.27 0.0311481 0.0277317 85 34 24 24 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 6.59 vpr 55.31 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30328 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 16.8 MiB 0.14 727 12120 4439 5930 1751 55.6 MiB 0.18 0.00 4.19115 -121.049 -4.19115 4.19115 1.05 0.00109019 0.000998833 0.0801954 0.0735341 32 2029 16 6.64007e+06 213486 554710. 1919.41 1.19 0.207352 0.186821 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.25 0.07 0.22 -1 -1 0.25 0.0363707 0.0327424 113 64 31 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.02 vpr 55.54 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30056 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 16.7 MiB 0.10 885 17732 4998 9545 3189 55.7 MiB 0.26 0.00 4.22193 -138.344 -4.22193 4.22193 1.05 0.00122416 0.00112453 0.101095 0.0927748 32 2479 24 6.64007e+06 452088 554710. 1919.41 1.29 0.26267 0.237339 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0514446 0.0463942 147 34 91 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 6.66 vpr 55.86 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 960 11288 2842 7087 1359 56.1 MiB 0.21 0.01 3.74425 -123.858 -3.74425 3.74425 1.05 0.00141823 0.00130013 0.0795518 0.072765 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.35 0.261477 0.235141 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.060895 0.054662 150 124 0 0 125 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.74 vpr 54.80 MiB 0.02 6696 -1 -1 1 0.02 -1 -1 30352 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.1 MiB 0.11 395 10503 3120 6151 1232 54.6 MiB 0.10 0.00 2.74064 -71.156 -2.74064 2.74064 1.05 0.000682856 0.000624286 0.0472801 0.0432418 28 1145 19 6.64007e+06 213486 500653. 1732.36 1.06 0.130664 0.116942 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0260333 0.0231926 77 30 26 26 22 22 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.55 vpr 55.25 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 29976 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 16.9 MiB 0.09 990 12749 4130 6257 2362 55.6 MiB 0.21 0.00 4.45633 -140.507 -4.45633 4.45633 1.07 0.00115288 0.00105971 0.0823503 0.0756772 32 2561 21 6.64007e+06 276276 554710. 1919.41 1.31 0.228995 0.207016 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0449407 0.0405688 138 3 122 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.60 vpr 54.55 MiB 0.04 6704 -1 -1 1 0.03 -1 -1 30148 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.3 MiB 0.05 603 10672 2424 7898 350 54.8 MiB 0.12 0.00 2.3583 -83.9313 -2.3583 2.3583 1.14 0.000723994 0.000662986 0.0495188 0.045349 28 1546 20 6.64007e+06 163254 500653. 1732.36 1.25 0.145628 0.13058 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.22 0.06 0.20 -1 -1 0.22 0.0266707 0.0238664 81 3 53 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.95 vpr 55.24 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30384 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.09 956 14691 4376 8904 1411 55.8 MiB 0.23 0.00 4.18856 -140.856 -4.18856 4.18856 1.06 0.00125527 0.00115302 0.0839117 0.0769085 32 2560 22 6.64007e+06 439530 554710. 1919.41 1.33 0.243605 0.219756 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0541553 0.0486609 153 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.99 vpr 55.28 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30064 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1019 8796 1857 6524 415 55.9 MiB 0.15 0.00 3.60659 -123.354 -3.60659 3.60659 1.05 0.00119146 0.00109593 0.0475793 0.0436458 26 3249 33 6.64007e+06 464646 477104. 1650.88 7.03 0.372195 0.3336 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0493401 0.0444749 152 3 124 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.09 vpr 55.49 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30368 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1069 18901 5689 10576 2636 56.0 MiB 0.28 0.01 4.16036 -141.868 -4.16036 4.16036 1.05 0.00131411 0.00120484 0.108774 0.0996816 32 2736 22 6.64007e+06 464646 554710. 1919.41 1.34 0.275853 0.249275 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0568292 0.051201 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.92 vpr 54.97 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 16.7 MiB 0.08 857 10572 2555 6423 1594 55.6 MiB 0.15 0.00 3.07196 -107.422 -3.07196 3.07196 1.08 0.00099784 0.000914248 0.0640299 0.0587363 32 1869 19 6.64007e+06 200928 554710. 1919.41 1.19 0.195673 0.175925 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.25 0.09 0.23 -1 -1 0.25 0.0385831 0.0346183 107 34 54 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.81 vpr 55.11 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30000 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.9 MiB 0.09 824 11806 3275 6761 1770 55.3 MiB 0.16 0.00 3.4951 -114.009 -3.4951 3.4951 1.05 0.00100574 0.000922809 0.0707527 0.0649754 32 1835 21 6.64007e+06 238602 554710. 1919.41 1.19 0.196985 0.177293 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0456569 0.0409146 115 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.15 vpr 54.90 MiB 0.02 6884 -1 -1 1 0.02 -1 -1 30176 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 658 7132 1686 4570 876 55.1 MiB 0.11 0.00 3.4309 -100.483 -3.4309 3.4309 1.05 0.00094543 0.000867205 0.0418195 0.0383956 32 1851 20 6.64007e+06 251160 554710. 1919.41 1.21 0.160148 0.143671 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0365116 0.0327435 107 34 56 28 28 28 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.27 vpr 55.09 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30140 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.7 MiB 0.09 802 15390 5648 7380 2362 55.4 MiB 0.22 0.00 3.5251 -121.985 -3.5251 3.5251 1.06 0.00100168 0.000919428 0.089409 0.0820991 32 2003 23 6.64007e+06 226044 554710. 1919.41 1.23 0.219109 0.197617 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0533375 0.0477763 125 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 5.14 vpr 54.94 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 772 9679 2262 6618 799 55.5 MiB 0.14 0.00 3.47387 -114.287 -3.47387 3.47387 1.05 0.00103043 0.000945764 0.0496711 0.0455735 28 2025 20 6.64007e+06 389298 500653. 1732.36 1.16 0.177364 0.159354 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0388123 0.034891 119 34 61 31 31 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.06 vpr 55.23 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 16.9 MiB 0.16 877 15824 4460 9332 2032 55.6 MiB 0.20 0.00 2.80466 -91.9047 -2.80466 2.80466 1.07 0.00101723 0.000931474 0.0810886 0.0742085 26 2073 22 6.64007e+06 389298 477104. 1650.88 1.18 0.204935 0.184146 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0432509 0.0386193 110 61 29 29 57 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.34 vpr 55.59 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30420 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 17.5 MiB 0.21 1234 17889 5288 10109 2492 55.9 MiB 0.32 0.01 4.16036 -142.499 -4.16036 4.16036 1.06 0.00142439 0.00130997 0.106172 0.0974593 28 3347 24 6.64007e+06 514878 500653. 1732.36 2.67 0.293882 0.265546 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0575938 0.052059 181 29 128 32 27 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.69 vpr 55.79 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30328 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 996 11616 2636 8022 958 56.1 MiB 0.23 0.00 3.5823 -125.213 -3.5823 3.5823 1.10 0.0013311 0.00121219 0.0647492 0.0590421 30 2080 20 6.64007e+06 464646 526063. 1820.29 1.27 0.228138 0.20539 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510926 0.046132 154 65 62 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.19 vpr 55.27 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30424 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 17.0 MiB 0.23 803 9407 2189 6388 830 55.7 MiB 0.14 0.00 3.6833 -114.43 -3.6833 3.6833 1.04 0.00110479 0.00101058 0.0530788 0.0485902 30 1852 20 6.64007e+06 364182 526063. 1820.29 1.17 0.190169 0.170442 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0401364 0.0360176 114 90 0 0 89 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.39 vpr 55.38 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1052 11799 3060 6831 1908 55.9 MiB 0.20 0.00 3.64847 -119.816 -3.64847 3.64847 1.05 0.00127223 0.00116732 0.0815481 0.074865 32 2372 21 6.64007e+06 301392 554710. 1919.41 1.28 0.241194 0.217691 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.26 0.13 0.11 -1 -1 0.26 0.0546795 0.049459 149 64 60 30 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.42 vpr 55.51 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30336 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 17.4 MiB 0.42 953 7835 1760 5704 371 56.1 MiB 0.15 0.00 5.23812 -147.937 -5.23812 5.23812 1.05 0.0014085 0.00129296 0.062018 0.056929 32 2549 24 6.64007e+06 288834 554710. 1919.41 1.33 0.255594 0.229826 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.28 0.12 0.24 -1 -1 0.28 0.0546275 0.0490509 150 124 0 0 124 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.63 vpr 55.71 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30248 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.21 955 10859 3044 7047 768 56.1 MiB 0.20 0.00 5.02279 -136.574 -5.02279 5.02279 1.06 0.00130854 0.00119897 0.0790271 0.0725077 30 2107 21 6.64007e+06 288834 526063. 1820.29 1.24 0.244696 0.220718 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0459545 0.0415279 144 90 31 31 89 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.16 vpr 55.34 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 0.11 1046 15623 4332 9609 1682 55.8 MiB 0.13 0.00 3.5621 -120.379 -3.5621 3.5621 0.72 0.000471116 0.00042694 0.0351109 0.0316882 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.81 0.0988372 0.0876969 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0449083 0.040528 148 64 60 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.70 vpr 55.43 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30416 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 17.0 MiB 0.13 865 10206 2264 6941 1001 55.9 MiB 0.18 0.00 4.23656 -140.329 -4.23656 4.23656 1.05 0.00129043 0.00118296 0.061301 0.0562135 32 2829 21 6.64007e+06 464646 554710. 1919.41 1.36 0.223724 0.201453 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.25 0.12 0.23 -1 -1 0.25 0.0539649 0.048595 156 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.78 vpr 55.86 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30640 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 17.7 MiB 0.22 1205 17356 4219 10649 2488 56.1 MiB 0.29 0.01 4.21478 -145.938 -4.21478 4.21478 1.05 0.00157943 0.00145058 0.114258 0.104985 32 2779 22 6.64007e+06 527436 554710. 1919.41 1.33 0.315288 0.284995 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0651661 0.0588169 186 96 62 32 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.08 vpr 55.19 MiB 0.03 6776 -1 -1 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.12 655 13731 5030 6417 2284 55.4 MiB 0.20 0.00 3.7665 -117.146 -3.7665 3.7665 1.05 0.00102124 0.00093564 0.0920338 0.0843554 32 1931 27 6.64007e+06 226044 554710. 1919.41 1.31 0.232142 0.20908 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0442073 0.0398636 116 34 62 31 31 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.67 vpr 55.79 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 30416 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 17.1 MiB 0.17 910 7386 1527 5477 382 55.9 MiB 0.13 0.00 4.20356 -136.322 -4.20356 4.20356 1.05 0.00128572 0.00117999 0.0439211 0.0402868 32 2713 25 6.64007e+06 477204 554710. 1919.41 1.27 0.199558 0.179353 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.053345 0.0480808 152 64 62 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 6.87 vpr 55.37 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 17.1 MiB 0.13 994 14048 3500 8468 2080 55.9 MiB 0.23 0.00 3.7163 -119.726 -3.7163 3.7163 0.91 0.00127945 0.00117418 0.0836927 0.0768458 32 2435 23 6.64007e+06 426972 554710. 1919.41 1.27 0.250008 0.225677 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0517773 0.0467113 149 63 62 32 62 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.95 vpr 55.33 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 16.9 MiB 0.10 1080 15017 4624 8554 1839 55.8 MiB 0.26 0.00 4.14936 -144.892 -4.14936 4.14936 1.04 0.00120402 0.00110683 0.105899 0.0974313 32 2624 22 6.64007e+06 276276 554710. 1919.41 1.33 0.260787 0.236348 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.22 0.07 0.11 -1 -1 0.22 0.0220454 0.0197173 151 3 128 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 6.30 vpr 55.66 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30308 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 17.3 MiB 0.22 1044 15603 4218 9336 2049 56.0 MiB 0.24 0.00 3.55822 -125.535 -3.55822 3.55822 1.05 0.00132349 0.00121278 0.0938649 0.0859795 32 2394 19 6.64007e+06 439530 554710. 1919.41 1.28 0.255419 0.230498 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0526038 0.0473171 146 96 25 25 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.81 vpr 55.63 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30188 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 17.2 MiB 0.21 1017 12791 3286 8285 1220 55.8 MiB 0.11 0.00 3.47912 -120.914 -3.47912 3.47912 1.07 0.000475577 0.000430279 0.0284306 0.0256573 26 2568 45 6.64007e+06 464646 477104. 1650.88 2.08 0.233211 0.208745 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0473752 0.0427138 148 61 64 32 60 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.18 vpr 55.88 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30372 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1102 19142 5372 11310 2460 56.1 MiB 0.27 0.01 3.5243 -123.608 -3.5243 3.5243 1.05 0.00130918 0.0012003 0.107637 0.0986642 32 2414 19 6.64007e+06 489762 554710. 1919.41 1.28 0.268777 0.243038 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.25 0.11 0.25 -1 -1 0.25 0.0504312 0.0455428 157 65 63 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.99 vpr 55.16 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 17.3 MiB 0.09 1032 14906 4320 9186 1400 56.0 MiB 0.24 0.00 4.18856 -144.112 -4.18856 4.18856 1.05 0.00124988 0.00114811 0.0837632 0.0769465 30 2290 20 6.64007e+06 464646 526063. 1820.29 1.29 0.241242 0.217994 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0497973 0.0449443 152 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1016 12153 3010 8355 788 56.1 MiB 0.19 0.00 4.23153 -146.068 -4.23153 4.23153 1.06 0.00129772 0.00118939 0.0693798 0.0635831 26 2842 35 6.64007e+06 489762 477104. 1650.88 5.50 0.425951 0.381787 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.22 0.15 0.20 -1 -1 0.22 0.057821 0.0521731 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.97 vpr 55.82 MiB 0.02 7328 -1 -1 1 0.04 -1 -1 30320 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1141 13095 3356 8753 986 56.2 MiB 0.23 0.00 4.67535 -137.171 -4.67535 4.67535 1.05 0.00139126 0.0012751 0.0832999 0.0763313 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.87 0.260623 0.234497 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0526128 0.047255 147 122 0 0 122 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.44 vpr 55.80 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1069 15584 4992 8664 1928 55.9 MiB 0.26 0.00 4.34993 -137.194 -4.34993 4.34993 1.05 0.00136046 0.00124846 0.11558 0.106028 32 2657 20 6.64007e+06 276276 554710. 1919.41 1.30 0.284601 0.25722 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.25 0.13 0.23 -1 -1 0.25 0.0550126 0.0496451 151 94 32 32 94 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.09 vpr 54.96 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30428 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.08 928 8735 1852 5986 897 55.2 MiB 0.13 0.00 3.50687 -122.364 -3.50687 3.50687 1.05 0.00104763 0.000960412 0.0455496 0.0417699 28 2197 22 6.64007e+06 389298 500653. 1732.36 1.13 0.179099 0.160504 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.25 0.10 0.18 -1 -1 0.25 0.043659 0.0391901 125 34 63 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.08 vpr 55.19 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30208 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 17.0 MiB 0.21 885 10406 2864 6861 681 55.7 MiB 0.17 0.00 3.5031 -121.505 -3.5031 3.5031 1.05 0.00116393 0.00106615 0.0709577 0.0650521 26 2358 26 6.64007e+06 226044 477104. 1650.88 1.28 0.226995 0.204097 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.23 0.11 0.20 -1 -1 0.23 0.0447618 0.0402069 121 94 0 0 94 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.08 vpr 55.66 MiB 0.02 7144 -1 -1 1 0.05 -1 -1 30660 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 17.7 MiB 0.08 1352 17606 4821 10688 2097 56.1 MiB 0.32 0.01 4.98622 -168.741 -4.98622 4.98622 1.04 0.0015383 0.00141405 0.111872 0.102807 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.43 0.309191 0.279613 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.26 0.18 0.21 -1 -1 0.26 0.0751814 0.06769 189 65 96 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.19 vpr 55.49 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30368 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1055 17857 5354 10411 2092 55.9 MiB 0.15 0.00 3.51607 -123.396 -3.51607 3.51607 0.81 0.00045669 0.000410582 0.0394075 0.0354883 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.74 0.0985556 0.0873011 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0475492 0.042949 148 34 92 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.89 vpr 54.98 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 16.7 MiB 0.08 853 17523 5443 9889 2191 55.2 MiB 0.22 0.00 3.4529 -114.711 -3.4529 3.4529 1.05 0.00100337 0.000920183 0.0865702 0.0793253 30 1885 20 6.64007e+06 389298 526063. 1820.29 1.14 0.211139 0.190215 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.32 0.08 0.18 -1 -1 0.32 0.043582 0.0390159 116 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.89 vpr 55.67 MiB 0.03 7240 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.36 1192 13629 3357 8864 1408 56.2 MiB 0.24 0.01 4.97469 -167.233 -4.97469 4.97469 1.05 0.00163103 0.00149636 0.0899147 0.0824168 32 2825 26 6.64007e+06 565110 554710. 1919.41 1.44 0.313272 0.282593 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.062573 0.0564454 188 127 32 32 128 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.52 vpr 55.44 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30456 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 17.1 MiB 0.16 1027 16762 4357 10483 1922 55.9 MiB 0.24 0.00 4.27488 -146.847 -4.27488 4.27488 1.06 0.0012577 0.00115473 0.0921762 0.0845069 28 2563 23 6.64007e+06 477204 500653. 1732.36 1.29 0.255355 0.230595 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0460567 0.0416201 153 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.87 vpr 54.93 MiB 0.04 6688 -1 -1 1 0.03 -1 -1 30096 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 17.0 MiB 0.09 882 11046 2802 6952 1292 55.5 MiB 0.16 0.00 3.5621 -124.172 -3.5621 3.5621 1.07 0.00100748 0.000924811 0.054147 0.0496189 30 1857 21 6.64007e+06 401856 526063. 1820.29 1.25 0.185361 0.16656 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.34 0.09 0.15 -1 -1 0.34 0.0428854 0.0387424 124 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.49 vpr 55.32 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30700 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 17.5 MiB 0.09 1334 20347 5362 13158 1827 55.9 MiB 0.18 0.00 4.95502 -168.119 -4.95502 4.95502 0.72 0.000528865 0.000478496 0.0452319 0.040935 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.00 0.11712 0.103994 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0676236 0.0611178 190 34 128 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.81 vpr 54.84 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30132 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 16.6 MiB 0.10 623 13731 4925 6406 2400 55.1 MiB 0.19 0.00 3.5061 -118.666 -3.5061 3.5061 1.05 0.00099857 0.000917096 0.081639 0.0750215 32 2131 28 6.64007e+06 213486 554710. 1919.41 1.28 0.222841 0.200702 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0396032 0.035452 121 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.08 vpr 55.04 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30052 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 17.0 MiB 0.09 855 13939 4099 8667 1173 55.7 MiB 0.18 0.00 3.47387 -112.968 -3.47387 3.47387 1.06 0.00100564 0.000922618 0.0689214 0.0631201 28 1888 22 6.64007e+06 401856 500653. 1732.36 1.15 0.196859 0.176979 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0402767 0.0361234 114 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.46 vpr 55.39 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30284 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1003 12839 3224 8329 1286 55.9 MiB 0.20 0.00 3.6803 -109.03 -3.6803 3.6803 1.05 0.00124513 0.00114069 0.0772871 0.0708789 26 2529 22 6.64007e+06 426972 477104. 1650.88 1.27 0.235788 0.212555 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.049759 0.044791 134 88 29 29 85 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.17 vpr 55.44 MiB 0.05 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 17.1 MiB 0.09 937 11048 2797 7564 687 55.9 MiB 0.10 0.00 4.21976 -143.232 -4.21976 4.21976 0.72 0.000477426 0.000430346 0.0301697 0.027283 32 2378 24 6.64007e+06 276276 554710. 1919.41 1.29 0.199789 0.179065 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0527214 0.0475618 152 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.26 vpr 55.30 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30500 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1070 15876 4480 9346 2050 56.0 MiB 0.26 0.01 4.25856 -146.098 -4.25856 4.25856 1.05 0.00132236 0.00121333 0.0942745 0.0864867 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.46 0.29616 0.26703 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.059244 0.0534081 154 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.22 vpr 55.38 MiB 0.04 6984 -1 -1 1 0.05 -1 -1 30372 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 16.7 MiB 0.18 863 8856 1892 6516 448 55.5 MiB 0.14 0.00 3.4749 -121.747 -3.4749 3.4749 1.06 0.00112036 0.00102685 0.0485605 0.0444489 32 2048 21 6.64007e+06 401856 554710. 1919.41 1.23 0.191595 0.172026 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0462755 0.0415336 122 65 32 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.64 vpr 55.49 MiB 0.05 6916 -1 -1 1 0.04 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 821 8336 2395 4162 1779 55.8 MiB 0.13 0.00 3.72326 -116.749 -3.72326 3.72326 1.04 0.00110859 0.00101531 0.0566862 0.0519478 32 1980 18 6.64007e+06 213486 554710. 1919.41 1.21 0.190514 0.1711 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0441328 0.0395571 109 90 0 0 89 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 6.06 vpr 55.20 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 16.9 MiB 0.17 985 17635 4923 10695 2017 55.8 MiB 0.27 0.00 3.4529 -110.073 -3.4529 3.4529 1.05 0.00121317 0.00111362 0.100009 0.0917748 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.69 0.266048 0.23999 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0468873 0.0422569 139 60 60 30 57 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.56 vpr 55.11 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 16.9 MiB 0.10 939 14996 4215 8524 2257 55.7 MiB 0.21 0.00 4.39198 -124.88 -4.39198 4.39198 1.05 0.0011054 0.00101461 0.0833251 0.0764293 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.87 0.239375 0.2159 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.20 0.05 0.09 -1 -1 0.20 0.0202394 0.018137 134 34 84 28 28 28 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.29 vpr 55.23 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30008 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 16.7 MiB 0.20 846 13731 4520 7348 1863 55.4 MiB 0.20 0.00 3.5343 -117.296 -3.5343 3.5343 1.05 0.00105949 0.000970617 0.0860166 0.0788566 32 1980 19 6.64007e+06 238602 554710. 1919.41 1.23 0.221041 0.198949 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.27 0.10 0.21 -1 -1 0.27 0.0410077 0.0367911 114 63 30 30 60 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.28 vpr 55.31 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 17.0 MiB 0.14 892 11281 2807 6986 1488 55.7 MiB 0.17 0.00 3.6865 -117.315 -3.6865 3.6865 1.04 0.00114211 0.00104597 0.0766431 0.0702538 30 1846 19 6.64007e+06 213486 526063. 1820.29 1.13 0.215415 0.193931 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0318038 0.0282908 114 91 0 0 91 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.42 vpr 55.18 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30352 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1121 19124 6194 10224 2706 55.9 MiB 0.27 0.00 4.18856 -139.706 -4.18856 4.18856 1.05 0.00115981 0.00106592 0.0990031 0.0909037 32 2557 23 6.64007e+06 464646 554710. 1919.41 1.27 0.250534 0.226351 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0507878 0.0457501 152 4 124 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.89 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1037 18660 5257 10625 2778 56.0 MiB 0.28 0.00 4.17032 -143.358 -4.17032 4.17032 1.05 0.00131033 0.00120238 0.10928 0.100132 32 2589 21 6.64007e+06 452088 554710. 1919.41 1.31 0.275482 0.249069 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.25 0.13 0.24 -1 -1 0.25 0.0534406 0.0482574 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.43 vpr 55.35 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30332 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 17.4 MiB 0.21 1085 15876 4268 10377 1231 56.2 MiB 0.24 0.00 4.15553 -144.194 -4.15553 4.15553 1.05 0.00133427 0.00122529 0.0950285 0.0871671 32 2670 22 6.64007e+06 452088 554710. 1919.41 1.35 0.267194 0.241568 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547757 0.0494116 153 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.65 vpr 55.54 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30280 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 17.0 MiB 0.17 963 9146 1745 6045 1356 55.8 MiB 0.13 0.00 4.17056 -135.219 -4.17056 4.17056 1.06 0.00129923 0.00119146 0.0534929 0.0490784 30 3028 24 6.64007e+06 477204 526063. 1820.29 4.11 0.41421 0.371418 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.25 0.12 0.20 -1 -1 0.25 0.0588011 0.0529675 149 65 60 30 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.92 vpr 55.16 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.11 840 12856 4254 6466 2136 55.5 MiB 0.18 0.00 3.4921 -115.538 -3.4921 3.4921 0.93 0.00100641 0.000923602 0.0770531 0.0707705 32 2099 22 6.64007e+06 238602 554710. 1919.41 1.22 0.204681 0.184357 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403359 0.0362079 113 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.32 vpr 55.61 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 17.0 MiB 0.19 996 13127 3599 7422 2106 55.9 MiB 0.21 0.00 4.20393 -135.69 -4.20393 4.20393 1.08 0.00123952 0.00113419 0.08993 0.0824502 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.66 0.284503 0.256489 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0480125 0.0433434 146 63 60 30 60 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.86 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30700 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1061 10232 2187 7405 640 55.9 MiB 0.17 0.00 4.16036 -143.59 -4.16036 4.16036 0.85 0.00143536 0.00131582 0.0631531 0.0578799 26 3037 26 6.64007e+06 514878 477104. 1650.88 2.62 0.258853 0.232303 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586937 0.0526751 156 127 0 0 128 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.55 vpr 55.47 MiB 0.08 7156 -1 -1 1 0.03 -1 -1 30684 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 924 14769 3776 9247 1746 55.9 MiB 0.23 0.00 4.18868 -135.93 -4.18868 4.18868 1.07 0.00132272 0.00121148 0.0929273 0.0851 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.29 0.26409 0.23814 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0554051 0.049948 148 94 31 31 93 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.22 vpr 55.72 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30352 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 973 15004 4033 8498 2473 55.8 MiB 0.23 0.00 3.6693 -113.052 -3.6693 3.6693 1.07 0.00127053 0.00116374 0.0930932 0.0852981 32 2183 19 6.64007e+06 401856 554710. 1919.41 1.25 0.249909 0.225552 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.27 0.10 0.24 -1 -1 0.27 0.050113 0.0451349 138 92 26 26 90 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.30 vpr 55.61 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1125 9725 2385 6614 726 56.0 MiB 0.19 0.00 4.21673 -144.443 -4.21673 4.21673 1.05 0.00132533 0.00121222 0.0714439 0.0656261 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.41 0.249974 0.225404 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0540025 0.0487296 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.29 vpr 55.42 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30140 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 964 18079 5189 10710 2180 55.8 MiB 0.25 0.01 3.5353 -109.312 -3.5353 3.5353 1.05 0.00177736 0.00162604 0.104007 0.0951663 32 2101 19 6.64007e+06 452088 554710. 1919.41 1.23 0.253839 0.228985 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0490144 0.0440913 136 88 26 26 85 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.98 vpr 54.81 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.07 799 9356 2113 6168 1075 55.4 MiB 0.14 0.00 3.4921 -122.483 -3.4921 3.4921 1.07 0.00100403 0.000920974 0.0561914 0.0516319 32 1948 20 6.64007e+06 213486 554710. 1919.41 1.22 0.188725 0.169856 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0386589 0.034755 115 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.59 vpr 55.64 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30280 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 992 16743 5741 8435 2567 56.1 MiB 0.25 0.00 4.25856 -144.485 -4.25856 4.25856 1.06 0.00131985 0.00121018 0.100311 0.0919532 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.55 0.277531 0.250419 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.24 0.13 0.18 -1 -1 0.24 0.0550652 0.049651 152 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.57 vpr 55.67 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 17.3 MiB 0.12 1054 17367 5167 10302 1898 56.1 MiB 0.28 0.00 4.21976 -145.962 -4.21976 4.21976 1.06 0.00131734 0.00120908 0.122301 0.11223 32 2466 19 6.64007e+06 288834 554710. 1919.41 1.27 0.285232 0.258216 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0623077 0.0562074 158 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.44 vpr 55.05 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30356 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 0.19 691 7975 1531 6145 299 55.5 MiB 0.12 0.00 3.6913 -111.241 -3.6913 3.6913 1.07 0.00103186 0.000944444 0.0414361 0.0379303 26 2376 30 6.64007e+06 376740 477104. 1650.88 2.00 0.193813 0.17318 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0349786 0.031347 112 55 32 32 54 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.87 vpr 54.85 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.7 MiB 0.09 653 13381 4684 6039 2658 55.1 MiB 0.19 0.00 3.5533 -116.629 -3.5533 3.5533 1.08 0.000971299 0.000891432 0.0774471 0.0711454 32 1990 24 6.64007e+06 226044 554710. 1919.41 1.26 0.206711 0.186341 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0421946 0.0378353 118 4 93 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.22 vpr 55.64 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30176 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 17.2 MiB 0.17 927 16303 4785 8793 2725 55.9 MiB 0.24 0.00 4.16476 -135.871 -4.16476 4.16476 1.03 0.00124156 0.0011387 0.0949523 0.0870547 32 2289 21 6.64007e+06 414414 554710. 1919.41 1.23 0.251172 0.226712 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0518616 0.0466519 139 59 60 32 58 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.40 vpr 55.64 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30136 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1051 17397 5163 9750 2484 56.0 MiB 0.26 0.00 4.41596 -136.112 -4.41596 4.41596 1.05 0.00128196 0.00117435 0.102702 0.0941093 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.73 0.231706 0.208878 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.24 0.13 0.17 -1 -1 0.24 0.0547931 0.0491792 136 88 28 28 88 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.99 vpr 55.75 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 17.4 MiB 0.10 1159 10441 2545 7247 649 55.7 MiB 0.19 0.00 4.95022 -163.094 -4.95022 4.95022 1.08 0.00136854 0.00125791 0.0656561 0.0604157 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.56 0.247047 0.22344 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0599087 0.0542162 179 3 156 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.06 vpr 55.28 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 16.9 MiB 0.17 813 9732 2096 6039 1597 55.8 MiB 0.13 0.00 3.7815 -111.41 -3.7815 3.7815 1.05 0.00120679 0.0011059 0.0567784 0.0520472 28 2429 27 6.64007e+06 426972 500653. 1732.36 2.09 0.221123 0.198589 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0402802 0.0363366 138 59 60 30 56 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.61 vpr 54.95 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30460 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 529 12292 5081 5761 1450 55.0 MiB 0.14 0.00 3.54427 -98.353 -3.54427 3.54427 1.05 0.000919665 0.000843569 0.0684978 0.0628783 32 1668 31 6.64007e+06 263718 554710. 1919.41 1.29 0.198856 0.178471 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0400883 0.0358249 107 34 54 27 27 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.55 vpr 55.62 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30448 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 17.5 MiB 0.18 1462 20856 5895 12562 2399 55.9 MiB 0.37 0.01 4.52196 -148.077 -4.52196 4.52196 1.05 0.00155719 0.00142831 0.134225 0.123203 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.53 0.335947 0.304042 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630288 0.0567112 186 95 62 31 95 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.54 vpr 55.65 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 17.3 MiB 0.29 998 12919 3192 8538 1189 56.0 MiB 0.22 0.00 4.42996 -140.975 -4.42996 4.42996 1.05 0.00139901 0.00128311 0.101053 0.0927489 32 2535 22 6.64007e+06 276276 554710. 1919.41 1.36 0.287761 0.259014 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0621537 0.0557817 145 124 0 0 124 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.41 vpr 55.36 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 17.0 MiB 0.25 894 11948 3681 7128 1139 55.8 MiB 0.18 0.00 3.6755 -115.703 -3.6755 3.6755 1.07 0.00112512 0.00103048 0.0813656 0.0745713 32 1930 19 6.64007e+06 200928 554710. 1919.41 1.20 0.221576 0.199614 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0393538 0.0353591 108 89 0 0 89 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.76 vpr 55.22 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30252 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.08 1023 18745 6322 9498 2925 56.0 MiB 0.28 0.00 4.46396 -140.121 -4.46396 4.46396 1.05 0.00120869 0.0011085 0.106129 0.0973526 28 3262 26 6.64007e+06 414414 500653. 1732.36 2.10 0.270364 0.244185 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0528788 0.0475995 147 34 90 30 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.01 vpr 55.77 MiB 0.04 7304 -1 -1 1 0.03 -1 -1 30612 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1135 20076 5790 11566 2720 55.8 MiB 0.17 0.00 4.51716 -144.659 -4.51716 4.51716 1.05 0.000525179 0.000475606 0.0477573 0.0432607 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.81 0.11755 0.10446 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0598704 0.0538754 173 64 87 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.32 vpr 55.12 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30264 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 923 11484 2608 8162 714 55.8 MiB 0.18 0.00 3.73061 -110.59 -3.73061 3.73061 1.05 0.00120162 0.0011009 0.0660836 0.0604918 26 3004 29 6.64007e+06 426972 477104. 1650.88 2.48 0.239797 0.215707 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.21 0.13 0.18 -1 -1 0.21 0.0540627 0.0485842 135 61 58 30 58 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.96 vpr 56.00 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30368 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 17.2 MiB 0.16 1008 13516 3637 9135 744 55.7 MiB 0.24 0.01 4.19956 -142.899 -4.19956 4.19956 1.05 0.00131852 0.0012095 0.0803168 0.0734207 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.59 0.290275 0.261208 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0593716 0.0535246 158 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.36 vpr 55.56 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30336 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 17.1 MiB 0.17 988 17184 5218 8807 3159 56.0 MiB 0.25 0.00 3.62559 -123.648 -3.62559 3.62559 1.05 0.00131302 0.00120449 0.0959092 0.0879898 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.95 0.269417 0.24312 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.22 0.17 0.20 -1 -1 0.22 0.0696533 0.062653 157 65 63 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.88 vpr 54.99 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30200 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 16.6 MiB 0.09 573 13430 5649 6739 1042 55.3 MiB 0.16 0.00 3.6785 -105.931 -3.6785 3.6785 1.07 0.000976675 0.000895559 0.0796449 0.0730907 28 1653 18 6.64007e+06 226044 500653. 1732.36 1.05 0.131489 0.118321 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0398437 0.0356805 95 34 58 29 29 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.08 vpr 55.26 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30112 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 16.5 MiB 0.19 857 11783 4174 5528 2081 55.5 MiB 0.19 0.00 4.00656 -110.848 -4.00656 4.00656 1.08 0.00106401 0.000973802 0.0820563 0.0751292 30 1873 19 6.64007e+06 238602 526063. 1820.29 1.19 0.194732 0.174684 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0335728 0.0301894 112 82 0 0 82 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.18 vpr 55.47 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30284 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.12 1100 13261 3564 8068 1629 55.8 MiB 0.18 0.00 4.80256 -145.153 -4.80256 4.80256 1.06 0.00121894 0.00111877 0.072291 0.0663308 28 2902 24 6.64007e+06 477204 500653. 1732.36 3.90 0.40015 0.358551 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0510047 0.0459481 151 34 93 31 31 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.35 vpr 55.04 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30360 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.9 MiB 0.21 620 10442 2502 7352 588 55.7 MiB 0.14 0.00 3.6803 -100.526 -3.6803 3.6803 1.05 0.000975395 0.000893918 0.0519281 0.0475534 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.51 0.167866 0.149882 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.037361 0.0333843 108 56 29 29 52 26 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.09 vpr 55.07 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 16.6 MiB 0.16 691 13906 4599 7385 1922 55.5 MiB 0.20 0.00 3.53127 -120.288 -3.53127 3.53127 1.05 0.00106677 0.00097929 0.087393 0.08024 32 2039 20 6.64007e+06 213486 554710. 1919.41 1.28 0.213479 0.192513 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.25 0.11 0.23 -1 -1 0.25 0.044617 0.0400972 118 34 64 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.33 vpr 55.61 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30256 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 17.2 MiB 0.18 999 13261 3446 8635 1180 55.8 MiB 0.19 0.00 3.5665 -119.865 -3.5665 3.5665 1.04 0.00125855 0.00115397 0.0744826 0.0681984 30 2030 20 6.64007e+06 477204 526063. 1820.29 1.20 0.2306 0.2079 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0483865 0.0434082 144 64 58 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.00 vpr 55.06 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 869 9368 2508 6076 784 55.5 MiB 0.14 0.00 3.34153 -105.882 -3.34153 3.34153 1.05 0.00100174 0.00091668 0.0581428 0.0533356 32 1935 19 6.64007e+06 213486 554710. 1919.41 1.17 0.182319 0.16378 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0355479 0.0318938 106 55 31 31 53 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.34 vpr 55.33 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 879 9865 2512 6573 780 55.9 MiB 0.15 0.00 3.57229 -117.612 -3.57229 3.57229 1.03 0.00123995 0.00113653 0.0587771 0.0538537 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.75 0.231702 0.208362 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.047711 0.0430243 137 65 52 26 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.36 vpr 55.57 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 17.2 MiB 0.29 875 10540 2287 7686 567 55.9 MiB 0.19 0.00 3.79366 -119.555 -3.79366 3.79366 1.09 0.00133896 0.00122676 0.0729341 0.0669137 30 2033 25 6.64007e+06 464646 526063. 1820.29 1.28 0.24985 0.224903 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510956 0.0460656 149 93 31 31 92 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.21 vpr 55.20 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30204 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 17.0 MiB 0.17 816 8626 2345 5890 391 55.7 MiB 0.14 0.00 3.06096 -106.925 -3.06096 3.06096 1.05 0.00108683 0.000995915 0.0553231 0.0507273 32 2043 18 6.64007e+06 226044 554710. 1919.41 1.23 0.188004 0.169097 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0449396 0.0403321 115 61 32 32 60 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.26 vpr 55.21 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.20 920 11296 3024 7326 946 55.6 MiB 0.17 0.00 3.5031 -121.121 -3.5031 3.5031 1.05 0.00111123 0.00101844 0.0732044 0.0671231 30 2197 20 6.64007e+06 226044 526063. 1820.29 1.12 0.181123 0.162508 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0450467 0.0404539 121 63 32 32 62 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.29 vpr 55.54 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30580 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1027 12240 2965 8371 904 56.0 MiB 0.19 0.00 4.25676 -144.495 -4.25676 4.25676 1.13 0.00130301 0.00119484 0.0704251 0.0645493 32 2501 30 6.64007e+06 477204 554710. 1919.41 1.44 0.262847 0.236714 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.058365 0.0525856 156 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.23 vpr 55.45 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30512 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1021 16079 4076 10280 1723 55.8 MiB 0.16 0.00 3.7925 -111.563 -3.7925 3.7925 1.03 0.000437226 0.000394134 0.0478999 0.0434832 32 2199 23 6.64007e+06 426972 554710. 1919.41 1.14 0.20129 0.180465 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.045776 0.0412528 135 62 56 29 58 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.71 vpr 55.96 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.30 937 9020 1835 6701 484 55.9 MiB 0.16 0.01 4.29776 -145.038 -4.29776 4.29776 1.06 0.00145479 0.00133386 0.0581837 0.0533538 32 2670 31 6.64007e+06 489762 554710. 1919.41 1.40 0.263477 0.23657 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0618353 0.0555575 158 127 0 0 128 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.80 vpr 54.87 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30164 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 16.2 MiB 0.08 804 11948 3966 6404 1578 54.9 MiB 0.15 0.00 3.08296 -103.61 -3.08296 3.08296 1.04 0.000921943 0.00084658 0.0669025 0.0614338 32 1812 20 6.64007e+06 213486 554710. 1919.41 1.18 0.191357 0.172369 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0347888 0.0310368 106 4 85 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.27 vpr 55.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 17.1 MiB 0.10 998 18111 4956 10747 2408 55.7 MiB 0.14 0.00 4.26296 -139.632 -4.26296 4.26296 1.06 0.000479012 0.000431854 0.0404269 0.0364651 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.76 0.229125 0.20518 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0572017 0.0515105 144 92 28 28 92 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.42 vpr 55.55 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30028 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.9 MiB 0.32 734 13381 4309 7077 1995 55.7 MiB 0.20 0.00 3.54047 -121.881 -3.54047 3.54047 1.06 0.00137499 0.00126292 0.0962368 0.088278 28 2004 19 6.64007e+06 213486 500653. 1732.36 1.20 0.241626 0.217943 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0488515 0.0438367 114 96 0 0 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.47 vpr 55.46 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30244 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1102 9501 2041 6911 549 56.2 MiB 0.16 0.01 3.5841 -124.322 -3.5841 3.5841 1.05 0.00129492 0.00118817 0.0554789 0.050903 30 2381 21 6.64007e+06 464646 526063. 1820.29 1.26 0.219561 0.197791 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0476442 0.0430128 151 65 61 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.93 vpr 55.43 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30664 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.26 1244 16489 4012 10933 1544 56.3 MiB 0.28 0.01 4.96651 -168.366 -4.96651 4.96651 1.05 0.001615 0.00147831 0.106904 0.098176 26 3486 28 6.64007e+06 565110 477104. 1650.88 3.19 0.324512 0.293038 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0630546 0.0569107 188 96 64 32 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.90 vpr 54.70 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30096 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.10 483 10509 2545 7262 702 55.0 MiB 0.11 0.00 2.73878 -81.5531 -2.73878 2.73878 1.06 0.00081907 0.000749193 0.0555462 0.0508053 28 1397 23 6.64007e+06 188370 500653. 1732.36 1.12 0.162415 0.145 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0338227 0.0300703 83 56 0 0 53 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.96 vpr 55.02 MiB 0.05 6892 -1 -1 1 0.03 -1 -1 30324 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 16.4 MiB 0.08 793 10388 3558 5136 1694 55.0 MiB 0.14 0.00 3.6815 -114.291 -3.6815 3.6815 1.05 0.00100083 0.000917528 0.064177 0.0588883 32 1615 19 6.64007e+06 213486 554710. 1919.41 1.15 0.187007 0.168235 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0403113 0.0361639 97 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.96 vpr 55.17 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.9 MiB 0.11 798 13966 5020 6560 2386 55.6 MiB 0.21 0.00 3.4859 -119.604 -3.4859 3.4859 1.06 0.00106125 0.000973399 0.0861333 0.0790485 32 2382 23 6.64007e+06 226044 554710. 1919.41 1.38 0.223093 0.201109 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0457113 0.0410063 126 34 64 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.86 vpr 54.74 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30372 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.4 MiB 0.06 678 12127 3168 7672 1287 55.0 MiB 0.14 0.00 3.4089 -91.215 -3.4089 3.4089 1.04 0.00117672 0.00107809 0.0538512 0.0494329 26 1687 20 6.64007e+06 426972 477104. 1650.88 1.28 0.159814 0.143333 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0442308 0.0393992 103 34 50 25 25 25 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.42 vpr 55.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1064 14828 5337 7470 2021 55.8 MiB 0.24 0.00 4.34676 -140.278 -4.34676 4.34676 1.06 0.000807085 0.000734388 0.0883533 0.0805688 32 2475 24 6.64007e+06 276276 554710. 1919.41 1.26 0.266315 0.239407 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.24 0.12 0.11 -1 -1 0.24 0.0566516 0.0510199 149 94 32 32 94 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.54 vpr 55.86 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30344 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 17.3 MiB 0.19 786 10336 2273 7345 718 56.0 MiB 0.09 0.00 3.53327 -114.261 -3.53327 3.53327 1.07 0.000498228 0.000443033 0.0243597 0.0219332 28 2510 49 6.64007e+06 489762 500653. 1732.36 2.36 0.240548 0.214758 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.22 0.13 0.20 -1 -1 0.22 0.0546721 0.0493793 148 94 29 29 93 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.66 vpr 55.34 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 17.3 MiB 0.20 984 7523 1506 5708 309 55.8 MiB 0.14 0.00 3.92206 -133.487 -3.92206 3.92206 1.05 0.00137067 0.00125757 0.0497852 0.0456441 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.84 0.248154 0.222431 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.27 0.17 0.22 -1 -1 0.27 0.0642352 0.057744 151 96 32 32 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.51 vpr 55.31 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 17.1 MiB 0.34 986 12323 4513 6271 1539 55.8 MiB 0.21 0.00 4.33507 -129.747 -4.33507 4.33507 1.05 0.00127901 0.00117203 0.0910724 0.0835554 32 2540 23 6.65987e+06 266238 554710. 1919.41 1.30 0.257887 0.232747 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0536876 0.0483671 140 91 30 30 89 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.88 vpr 55.04 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 17.3 MiB 0.14 1040 16523 4439 10256 1828 55.9 MiB 0.24 0.00 3.41879 -119.689 -3.41879 3.41879 1.06 0.00125118 0.00114677 0.0952753 0.0874299 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.58 0.257862 0.232788 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0571844 0.0515881 141 65 54 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.33 vpr 55.06 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30492 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 16.6 MiB 0.13 793 11603 2857 6819 1927 55.5 MiB 0.16 0.00 4.2977 -123.649 -4.2977 4.2977 1.05 0.00114653 0.00105196 0.0772747 0.0709645 34 2278 23 6.65987e+06 278916 585099. 2024.56 2.16 0.269989 0.242956 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.05252 0.0472835 138 34 87 29 29 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 6.12 vpr 55.04 MiB 0.05 7056 -1 -1 1 0.05 -1 -1 30168 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1026 15456 4961 8586 1909 55.5 MiB 0.26 0.00 4.14936 -143.085 -4.14936 4.14936 1.09 0.00125067 0.00114695 0.109707 0.100689 32 2926 21 6.65987e+06 253560 554710. 1919.41 1.41 0.274933 0.248726 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0574555 0.0518716 151 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.08 vpr 55.28 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1029 9501 1978 7135 388 55.4 MiB 0.16 0.00 3.43623 -117.882 -3.43623 3.43623 1.07 0.00131834 0.00120651 0.0565238 0.051835 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.93 0.124558 0.111381 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0548377 0.049448 154 64 63 32 63 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.93 vpr 54.68 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 16.1 MiB 0.20 580 13026 4344 6329 2353 54.9 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 1.06 0.000955119 0.000876981 0.0746351 0.0685204 30 1363 17 6.65987e+06 240882 526063. 1820.29 1.06 0.185149 0.166772 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0327821 0.0294105 96 34 54 27 27 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.02 vpr 55.14 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30052 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1006 10170 2426 6636 1108 55.5 MiB 0.15 0.00 3.27903 -106.33 -3.27903 3.27903 1.03 0.00110905 0.00101816 0.054649 0.050174 28 2449 18 6.65987e+06 418374 500653. 1732.36 1.31 0.193834 0.174623 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0445708 0.0401505 139 4 115 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.16 vpr 55.31 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 16.7 MiB 0.27 870 11571 3268 6617 1686 55.5 MiB 0.15 0.00 3.07084 -101.313 -3.07084 3.07084 1.07 0.00108156 0.000990332 0.0653262 0.0596821 32 1812 21 6.65987e+06 202848 554710. 1919.41 1.16 0.201471 0.180874 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0431414 0.0386952 105 85 0 0 84 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.31 vpr 55.02 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 16.7 MiB 0.19 642 11432 4032 4649 2751 55.4 MiB 0.15 0.00 3.56921 -118.924 -3.56921 3.56921 0.92 0.00106261 0.000970312 0.0734364 0.0673744 36 2032 39 6.65987e+06 202848 612192. 2118.31 3.24 0.329633 0.294558 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.27 0.10 0.24 -1 -1 0.27 0.0411531 0.0369138 121 34 64 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.02 vpr 55.04 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30032 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 16.6 MiB 0.24 784 11571 3060 7609 902 55.4 MiB 0.17 0.00 3.4841 -113.76 -3.4841 3.4841 1.07 0.00106762 0.000978702 0.0759783 0.0696433 32 1689 20 6.65987e+06 215526 554710. 1919.41 1.19 0.195798 0.175748 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0479643 0.0429902 110 63 30 30 60 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 5.14 vpr 55.15 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30476 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.9 MiB 0.22 841 11223 2602 8034 587 55.5 MiB 0.16 0.00 3.27957 -108.894 -3.27957 3.27957 1.08 0.0010708 0.000979503 0.0602796 0.0552202 30 1969 21 6.65987e+06 367662 526063. 1820.29 1.22 0.194145 0.174292 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0402884 0.036201 114 65 25 25 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.44 vpr 55.44 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30184 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 17.2 MiB 0.39 1002 18711 5900 10256 2555 55.8 MiB 0.28 0.00 3.50686 -122.446 -3.50686 3.50686 1.07 0.00125494 0.00114995 0.111504 0.102227 32 2409 24 6.65987e+06 405696 554710. 1919.41 1.30 0.276868 0.250225 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0569309 0.0512388 143 58 64 32 57 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.44 vpr 55.45 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 17.0 MiB 0.27 942 7973 1567 6126 280 55.5 MiB 0.15 0.00 4.02327 -135.611 -4.02327 4.02327 1.07 0.00132467 0.00121557 0.0504346 0.04628 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.42 0.226447 0.203972 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.26 0.16 0.23 -1 -1 0.26 0.0621108 0.0560387 156 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.89 vpr 54.79 MiB 0.03 6996 -1 -1 1 0.03 -1 -1 30424 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 16.2 MiB 0.16 686 7177 1709 4538 930 54.9 MiB 0.11 0.00 3.15358 -93.6229 -3.15358 3.15358 1.06 0.000937189 0.000859094 0.0426784 0.0391884 28 1802 20 6.65987e+06 228204 500653. 1732.36 1.18 0.15865 0.142203 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407115 0.0364626 107 29 58 29 24 24 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.57 vpr 55.38 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 1074 13992 4161 7846 1985 55.9 MiB 0.24 0.00 3.5141 -125.301 -3.5141 3.5141 1.07 0.00130083 0.00119329 0.103564 0.0950837 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.31 0.271227 0.245193 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530136 0.0478926 146 63 64 32 62 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.66 vpr 55.34 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 17.1 MiB 0.33 934 18323 6450 8556 3317 55.8 MiB 0.23 0.00 3.6343 -123.732 -3.6343 3.6343 1.05 0.0012488 0.00114415 0.105495 0.0967105 30 2475 27 6.65987e+06 431052 526063. 1820.29 6.25 0.493804 0.44283 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463459 0.0418076 142 57 64 32 56 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.97 vpr 55.10 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 29964 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 16.9 MiB 0.23 832 15430 4777 8349 2304 55.5 MiB 0.21 0.00 2.83964 -101.748 -2.83964 2.83964 1.04 0.00110264 0.00100972 0.0830171 0.076024 30 1919 16 6.65987e+06 380340 526063. 1820.29 1.18 0.215495 0.194221 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0387878 0.0349131 118 65 29 29 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.67 vpr 54.48 MiB 0.02 6772 -1 -1 1 0.03 -1 -1 29984 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.3 MiB 0.15 661 10835 3152 6204 1479 54.7 MiB 0.12 0.00 2.60038 -85.2282 -2.60038 2.60038 1.05 0.000791966 0.00072671 0.0548181 0.0502851 28 1412 25 6.65987e+06 190170 500653. 1732.36 1.05 0.158034 0.141339 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.028531 0.0254443 85 34 24 24 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.40 vpr 54.92 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 16.7 MiB 0.21 855 13768 4604 7573 1591 55.5 MiB 0.20 0.00 3.94338 -122.155 -3.94338 3.94338 0.95 0.000637775 0.000577947 0.0931743 0.0854171 32 1948 20 6.65987e+06 202848 554710. 1919.41 1.14 0.227972 0.205556 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401114 0.0360384 113 64 31 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.05 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.05 -1 -1 30008 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 17.1 MiB 0.07 1021 12248 3399 7922 927 55.8 MiB 0.21 0.00 3.9823 -134.861 -3.9823 3.9823 1.06 0.00134363 0.00122449 0.0798405 0.0731428 26 2573 27 6.65987e+06 431052 477104. 1650.88 1.53 0.251242 0.226795 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0529492 0.0478262 145 34 91 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.27 vpr 55.54 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30432 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 0.32 1084 15644 4587 8678 2379 55.7 MiB 0.24 0.01 3.46744 -121.209 -3.46744 3.46744 1.05 0.00142028 0.00130135 0.0994392 0.0911577 32 2893 24 6.65987e+06 456408 554710. 1919.41 1.37 0.266558 0.239569 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0465621 0.0417213 149 124 0 0 125 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.94 vpr 54.52 MiB 0.04 6764 -1 -1 1 0.04 -1 -1 30504 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.0 MiB 0.20 410 10345 3142 6004 1199 54.7 MiB 0.10 0.00 2.61938 -68.655 -2.61938 2.61938 1.06 0.000682999 0.000624426 0.0467985 0.0428526 30 1108 22 6.65987e+06 215526 526063. 1820.29 1.05 0.133367 0.11936 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.26 0.05 0.20 -1 -1 0.26 0.0243357 0.0217542 77 30 26 26 22 22 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.72 vpr 55.23 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1123 11064 3077 6737 1250 55.5 MiB 0.19 0.00 4.10424 -135.549 -4.10424 4.10424 1.05 0.00115418 0.00106042 0.0718984 0.0660899 32 2636 25 6.65987e+06 253560 554710. 1919.41 1.35 0.226606 0.204538 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.046815 0.0422241 137 3 122 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.62 vpr 54.29 MiB 0.04 6588 -1 -1 1 0.03 -1 -1 30216 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.2 MiB 0.05 594 8553 1943 6358 252 54.8 MiB 0.09 0.00 2.22607 -81.0919 -2.22607 2.22607 1.04 0.00072048 0.000658924 0.0397925 0.0364155 28 1546 23 6.65987e+06 164814 500653. 1732.36 1.18 0.13224 0.118224 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.23 0.05 0.18 -1 -1 0.23 0.0207431 0.018679 81 3 53 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.02 vpr 55.21 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30492 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.08 1112 19189 6002 11213 1974 55.9 MiB 0.28 0.00 4.06247 -140.472 -4.06247 4.06247 1.05 0.00124928 0.0011469 0.111177 0.101981 32 2640 23 6.65987e+06 418374 554710. 1919.41 1.34 0.272976 0.246964 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0545103 0.0491758 151 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.19 vpr 54.90 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 29988 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 16.9 MiB 0.14 1134 16059 4004 10217 1838 55.6 MiB 0.25 0.01 3.38184 -119.391 -3.38184 3.38184 1.05 0.00119836 0.00110321 0.0878816 0.0809264 30 2437 23 6.65987e+06 443730 526063. 1820.29 1.27 0.242715 0.219788 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0492631 0.0444222 150 3 124 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.31 vpr 55.35 MiB 0.05 6940 -1 -1 1 0.04 -1 -1 30544 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 16.9 MiB 0.13 1120 14463 4038 8924 1501 55.4 MiB 0.24 0.00 3.91784 -136.256 -3.91784 3.91784 1.06 0.0013076 0.00119892 0.0864023 0.07923 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.91 0.261434 0.235841 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0608918 0.0548513 153 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 5.05 vpr 55.02 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 29964 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 16.7 MiB 0.07 736 8191 2107 5347 737 55.2 MiB 0.12 0.00 2.8895 -100.047 -2.8895 2.8895 1.05 0.000999552 0.000916055 0.0504124 0.0461954 28 1959 23 6.65987e+06 190170 500653. 1732.36 1.17 0.179442 0.160845 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.22 0.09 0.19 -1 -1 0.22 0.0369099 0.0331445 106 34 54 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.05 vpr 54.87 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.09 832 12156 3666 7026 1464 55.4 MiB 0.16 0.00 3.4951 -115.55 -3.4951 3.4951 1.05 0.00100324 0.000921046 0.0726376 0.066663 32 1928 21 6.65987e+06 240882 554710. 1919.41 1.19 0.198756 0.179033 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0406313 0.036505 115 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.01 vpr 54.74 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30164 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 590 7820 1903 5456 461 55.1 MiB 0.12 0.00 3.4309 -99.7277 -3.4309 3.4309 1.05 0.000951808 0.000872622 0.0461646 0.0423333 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.42 0.21077 0.188607 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0402513 0.0360958 107 34 56 28 28 28 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.12 vpr 54.76 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30240 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 686 12008 2561 8162 1285 55.1 MiB 0.14 0.00 3.4859 -118.026 -3.4859 3.4859 1.05 0.000996608 0.000915557 0.0702471 0.0644983 32 2225 24 6.65987e+06 228204 554710. 1919.41 1.27 0.203609 0.183369 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0474662 0.0425585 125 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.94 vpr 55.11 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 778 11809 2809 7761 1239 55.2 MiB 0.17 0.00 3.29178 -109.233 -3.29178 3.29178 1.05 0.00102396 0.00093902 0.0596901 0.0547288 26 2453 37 6.65987e+06 393018 477104. 1650.88 2.11 0.217196 0.194865 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.21 0.11 0.18 -1 -1 0.21 0.0427751 0.0383931 119 34 61 31 31 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.14 vpr 54.89 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29992 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 16.7 MiB 0.23 717 8047 1725 5786 536 55.5 MiB 0.12 0.00 2.76744 -86.2128 -2.76744 2.76744 1.05 0.00102687 0.000941732 0.0434244 0.039798 32 1839 18 6.65987e+06 380340 554710. 1919.41 1.16 0.166901 0.149738 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394439 0.0354111 109 61 29 29 57 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.22 vpr 55.80 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30440 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1246 13117 3185 8526 1406 55.8 MiB 0.24 0.01 4.16036 -141.523 -4.16036 4.16036 1.05 0.00141727 0.00130376 0.0813696 0.0748285 26 4082 47 6.65987e+06 494442 477104. 1650.88 10.09 0.510675 0.458992 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.21 0.17 0.17 -1 -1 0.21 0.055621 0.0502959 179 29 128 32 27 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.15 vpr 55.59 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30292 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1041 9447 2232 6542 673 56.1 MiB 0.16 0.00 3.5061 -122.514 -3.5061 3.5061 1.05 0.00131086 0.00120108 0.0579123 0.0530226 32 2399 23 6.65987e+06 443730 554710. 1919.41 1.27 0.228087 0.205469 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.050632 0.0457516 152 65 62 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.20 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 16.6 MiB 0.31 709 5599 957 4403 239 55.4 MiB 0.10 0.00 3.18838 -103.883 -3.18838 3.18838 1.06 0.00110577 0.0010124 0.0336432 0.030828 26 2166 21 6.65987e+06 354984 477104. 1650.88 2.10 0.172512 0.154203 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0477704 0.0427876 113 90 0 0 89 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.42 vpr 55.55 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 17.3 MiB 0.23 1062 14541 4862 7202 2477 55.9 MiB 0.26 0.00 3.4921 -118.867 -3.4921 3.4921 1.06 0.00126588 0.00115994 0.113081 0.103974 32 2506 18 6.65987e+06 266238 554710. 1919.41 1.26 0.267305 0.242082 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0555391 0.0500245 148 64 60 30 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.58 vpr 55.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1075 7953 1851 5455 647 56.1 MiB 0.15 0.00 4.84238 -140.996 -4.84238 4.84238 1.05 0.00140591 0.00128908 0.0648333 0.0594913 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.29 0.23704 0.213258 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0519342 0.0467881 149 124 0 0 124 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.10 vpr 55.54 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 17.0 MiB 0.39 977 8868 2457 6032 379 55.8 MiB 0.16 0.00 4.78027 -132.334 -4.78027 4.78027 1.05 0.00131079 0.00120044 0.0673211 0.0617271 30 2304 21 6.65987e+06 266238 526063. 1820.29 1.23 0.236623 0.21335 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0441531 0.0399301 143 90 31 31 89 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.67 vpr 55.33 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30184 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1043 11922 3052 7896 974 55.5 MiB 0.20 0.00 3.40784 -114.93 -3.40784 3.40784 1.05 0.00126687 0.00115932 0.0725945 0.0664838 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.94 0.233996 0.210773 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.22 0.14 0.17 -1 -1 0.22 0.0572352 0.0516096 146 64 60 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.44 vpr 54.90 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30392 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1091 9903 2241 6952 710 55.4 MiB 0.17 0.00 3.91784 -134.792 -3.91784 3.91784 1.05 0.0012944 0.00118757 0.059781 0.0548311 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.40 0.235866 0.212397 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0566692 0.0510885 154 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.66 vpr 55.62 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30456 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.27 1177 18648 4595 11838 2215 55.9 MiB 0.35 0.01 4.0593 -137.323 -4.0593 4.0593 1.06 0.00157777 0.00144798 0.123361 0.113229 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.66 0.328598 0.297177 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0689439 0.0622355 184 96 62 32 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.17 vpr 54.77 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 30436 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.14 685 11806 2914 7153 1739 55.5 MiB 0.17 0.00 3.55518 -111.493 -3.55518 3.55518 1.07 0.00102181 0.000937291 0.0722175 0.0662841 32 2030 23 6.65987e+06 228204 554710. 1919.41 1.28 0.204646 0.18418 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.26 0.11 0.22 -1 -1 0.26 0.0413874 0.0371872 116 34 62 31 31 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.97 vpr 55.74 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 976 9675 2155 7053 467 55.6 MiB 0.16 0.01 4.0281 -131.561 -4.0281 4.0281 1.09 0.00128488 0.00117955 0.0578887 0.0531327 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.92 0.22461 0.202286 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0559747 0.0504675 150 64 62 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.71 vpr 55.23 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30416 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1040 11641 3109 7665 867 55.4 MiB 0.20 0.00 3.62624 -117.445 -3.62624 3.62624 1.05 0.00127986 0.00117393 0.0709358 0.0650205 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.41 0.237516 0.214027 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.021162 0.0189285 148 63 62 32 62 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.20 vpr 55.20 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 17.2 MiB 0.16 853 8685 1897 5601 1187 55.7 MiB 0.14 0.00 4.14936 -138.467 -4.14936 4.14936 1.05 0.00118917 0.00109227 0.0598665 0.0550157 32 3554 31 6.65987e+06 253560 554710. 1919.41 2.30 0.29422 0.264706 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0584658 0.0527418 150 3 128 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.60 vpr 55.44 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 17.2 MiB 0.33 1097 11798 3144 7589 1065 55.6 MiB 0.20 0.00 3.29555 -116.715 -3.29555 3.29555 1.05 0.00132858 0.00121774 0.0733096 0.0671949 32 2610 28 6.65987e+06 431052 554710. 1919.41 1.32 0.255434 0.230093 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0688844 0.0619885 145 96 25 25 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.96 vpr 55.37 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30100 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.32 1042 7623 1446 5778 399 55.5 MiB 0.08 0.00 3.5841 -121.365 -3.5841 3.5841 1.10 0.00047034 0.000424146 0.0183568 0.0166702 32 2739 23 6.65987e+06 443730 554710. 1919.41 1.21 0.184643 0.165459 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0516239 0.0467119 146 61 64 32 60 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.75 vpr 55.69 MiB 0.05 7004 -1 -1 1 0.04 -1 -1 30356 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1118 19136 5296 11671 2169 55.5 MiB 0.31 0.01 3.42984 -118.83 -3.42984 3.42984 1.07 0.00130547 0.00119566 0.111212 0.101866 32 2579 24 6.65987e+06 469086 554710. 1919.41 1.32 0.284569 0.257162 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0574366 0.0517783 155 65 63 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.06 vpr 55.25 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.0 MiB 0.05 1049 17883 5721 9099 3063 55.4 MiB 0.28 0.00 4.02327 -139.097 -4.02327 4.02327 1.08 0.00149342 0.00136792 0.107416 0.0985898 32 2663 21 6.65987e+06 443730 554710. 1919.41 1.42 0.275329 0.248918 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0583972 0.0526435 150 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.14 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30588 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1032 17491 4961 10150 2380 55.8 MiB 0.28 0.00 3.95704 -138.916 -3.95704 3.95704 1.07 0.001304 0.00119499 0.108657 0.0996674 32 2565 23 6.65987e+06 469086 554710. 1919.41 1.34 0.277026 0.250119 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0587593 0.05295 153 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.64 vpr 55.47 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 17.5 MiB 0.36 1081 15859 4297 9232 2330 55.7 MiB 0.25 0.00 4.24338 -127.817 -4.24338 4.24338 0.82 0.00140294 0.0012855 0.104525 0.0956587 28 2788 21 6.65987e+06 431052 500653. 1732.36 1.34 0.279068 0.251371 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.022439 0.0199945 145 122 0 0 122 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.46 vpr 55.22 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1088 15822 4733 9518 1571 55.5 MiB 0.28 0.00 4.01118 -127.976 -4.01118 4.01118 0.85 0.00136157 0.00124829 0.121888 0.111829 32 2771 23 6.65987e+06 253560 554710. 1919.41 1.33 0.275803 0.249095 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.27 0.15 0.21 -1 -1 0.27 0.0623543 0.0561593 149 94 32 32 94 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.00 vpr 54.80 MiB 0.08 6936 -1 -1 1 0.03 -1 -1 30440 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 16.8 MiB 0.07 798 8401 2034 5819 548 55.3 MiB 0.13 0.00 3.27158 -111.236 -3.27158 3.27158 1.06 0.00105251 0.000956504 0.0440923 0.0403958 30 1935 19 6.65987e+06 380340 526063. 1820.29 1.18 0.171615 0.154045 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0436546 0.0392642 124 34 63 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.20 vpr 55.30 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.9 MiB 0.27 912 11830 3154 7792 884 55.7 MiB 0.19 0.00 3.41618 -118.934 -3.41618 3.41618 1.05 0.00116321 0.00106443 0.0805029 0.0737111 32 2244 21 6.65987e+06 228204 554710. 1919.41 1.24 0.226891 0.204159 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.048934 0.0439708 121 94 0 0 94 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.73 vpr 55.45 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30640 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1362 14988 3862 9734 1392 55.8 MiB 0.26 0.01 4.6627 -159.741 -4.6627 4.6627 1.06 0.00152371 0.0014016 0.0982609 0.0903005 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.55 0.305847 0.276503 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.25 0.16 0.22 -1 -1 0.25 0.0668247 0.0603586 187 65 96 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.18 vpr 55.15 MiB 0.05 6988 -1 -1 1 0.04 -1 -1 30232 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 17.1 MiB 0.17 954 14567 4735 7432 2400 55.8 MiB 0.22 0.00 3.51422 -121.562 -3.51422 3.51422 1.05 0.00123366 0.00113255 0.0869937 0.0798762 32 2533 23 6.65987e+06 393018 554710. 1919.41 1.29 0.247163 0.223282 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0520615 0.046956 146 34 92 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.24 vpr 55.14 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30128 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 16.6 MiB 0.11 839 17066 5534 9253 2279 55.2 MiB 0.22 0.00 3.49012 -114.14 -3.49012 3.49012 1.05 0.00100282 0.000919975 0.0858074 0.0786055 32 1859 23 6.65987e+06 380340 554710. 1919.41 1.18 0.21538 0.193952 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0454808 0.040772 115 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.05 vpr 55.69 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30768 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 17.7 MiB 0.57 1333 18829 5161 11634 2034 55.9 MiB 0.33 0.01 4.64147 -157.361 -4.64147 4.64147 1.05 0.0016344 0.00149899 0.126121 0.115526 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.45 0.341617 0.30847 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0684025 0.0617753 186 127 32 32 128 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.35 vpr 55.17 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1044 16340 4500 10034 1806 55.3 MiB 0.23 0.00 4.15932 -143.209 -4.15932 4.15932 1.05 0.0012537 0.00115042 0.0916309 0.0840458 28 2433 22 6.65987e+06 456408 500653. 1732.36 1.30 0.252991 0.228684 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0445553 0.0402844 151 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.86 vpr 54.88 MiB 0.07 6816 -1 -1 1 0.03 -1 -1 30148 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.07 722 13703 3609 8489 1605 55.3 MiB 0.19 0.00 3.4859 -117.474 -3.4859 3.4859 1.07 0.00101868 0.000935357 0.0671784 0.0615911 28 2223 23 6.65987e+06 393018 500653. 1732.36 1.42 0.196818 0.177136 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0418917 0.0376499 123 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.37 vpr 55.27 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30764 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 17.3 MiB 0.19 1337 12702 3419 8223 1060 55.7 MiB 0.23 0.01 4.90437 -166.477 -4.90437 4.90437 1.07 0.00147841 0.00135989 0.0799468 0.0735818 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.43 0.271605 0.245531 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0616983 0.0557606 188 34 128 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.71 vpr 54.71 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30152 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 16.5 MiB 0.12 852 11260 3935 5447 1878 55.0 MiB 0.16 0.00 3.4749 -119.679 -3.4749 3.4749 1.05 0.00101734 0.000932727 0.0702409 0.064472 32 2124 48 6.65987e+06 202848 554710. 1919.41 1.95 0.258585 0.231886 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0378926 0.0339623 121 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.23 vpr 54.88 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30252 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 16.5 MiB 0.22 707 8073 1842 5622 609 55.1 MiB 0.12 0.00 3.47387 -110.471 -3.47387 3.47387 1.07 0.000590206 0.000534908 0.0301772 0.0274102 28 1935 20 6.65987e+06 393018 500653. 1732.36 1.18 0.15743 0.14085 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.26 0.10 0.18 -1 -1 0.26 0.0403385 0.0363816 113 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.74 vpr 55.59 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30288 -1 -1 33 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 17.1 MiB 0.30 964 15856 4550 8712 2594 55.8 MiB 0.24 0.00 3.50895 -109.722 -3.50895 3.50895 1.05 0.00124123 0.00113799 0.0960778 0.0880128 30 2020 23 6.65987e+06 418374 526063. 1820.29 1.23 0.257672 0.232465 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.28 0.09 0.20 -1 -1 0.28 0.048532 0.043803 133 88 29 29 85 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.19 vpr 55.49 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 0.14 1002 7770 1874 5369 527 55.8 MiB 0.15 0.00 4.0593 -140.547 -4.0593 4.0593 1.05 0.00130765 0.0011997 0.0590967 0.0542881 32 2537 20 6.65987e+06 253560 554710. 1919.41 1.35 0.222907 0.201107 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0574623 0.051806 151 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.34 vpr 55.39 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1039 19223 6359 10018 2846 55.6 MiB 0.29 0.00 4.06007 -140.169 -4.06007 4.06007 1.05 0.00131091 0.00120194 0.11577 0.106113 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.52 0.28657 0.259183 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0548821 0.0494993 152 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.12 vpr 55.00 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30368 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 697 8614 1900 5780 934 55.4 MiB 0.13 0.00 3.41884 -113.998 -3.41884 3.41884 1.05 0.00111543 0.00102073 0.0481406 0.0441127 32 1903 25 6.65987e+06 380340 554710. 1919.41 1.26 0.195663 0.175536 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.28 0.11 0.11 -1 -1 0.28 0.0472281 0.0424964 120 65 32 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.10 vpr 55.28 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.7 MiB 0.30 800 12464 4465 5577 2422 55.4 MiB 0.19 0.00 3.46898 -107.312 -3.46898 3.46898 1.07 0.00110782 0.00101461 0.0837628 0.0767233 32 1982 23 6.65987e+06 215526 554710. 1919.41 1.19 0.217613 0.195731 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0491484 0.0439889 109 90 0 0 89 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.70 vpr 55.05 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30188 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 17.2 MiB 0.22 996 12623 3384 8308 931 55.8 MiB 0.20 0.00 3.33164 -109.888 -3.33164 3.33164 1.05 0.000843648 0.000758211 0.0731578 0.0669488 26 2507 31 6.65987e+06 418374 477104. 1650.88 2.06 0.246843 0.222139 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0489028 0.0440564 137 60 60 30 57 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 5.77 vpr 55.14 MiB 0.17 7032 -1 -1 1 0.03 -1 -1 30244 -1 -1 31 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 17.1 MiB 0.13 995 16207 5283 8775 2149 55.7 MiB 0.24 0.00 4.24344 -123.397 -4.24344 4.24344 0.89 0.00123939 0.00114798 0.0913861 0.0838621 28 2478 21 6.65987e+06 393018 500653. 1732.36 1.25 0.23143 0.208969 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0464454 0.0418151 133 34 84 28 28 28 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.18 vpr 54.98 MiB 0.17 6964 -1 -1 1 0.03 -1 -1 30012 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.31 727 13152 3808 7208 2136 55.5 MiB 0.19 0.00 3.5343 -112.204 -3.5343 3.5343 1.05 0.00105863 0.000970189 0.0839192 0.0769484 30 1865 21 6.65987e+06 228204 526063. 1820.29 1.19 0.217533 0.195938 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0389613 0.0350177 114 63 30 30 60 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.70 vpr 55.17 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 16.7 MiB 0.29 910 8164 2057 5403 704 55.5 MiB 0.14 0.00 3.44398 -109.924 -3.44398 3.44398 1.08 0.00113907 0.00104235 0.0607099 0.0556096 30 1920 20 6.65987e+06 202848 526063. 1820.29 1.17 0.202306 0.181718 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0440113 0.0395959 113 91 0 0 91 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.10 vpr 55.13 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 29976 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1101 12023 3143 7728 1152 55.6 MiB 0.17 0.00 4.17558 -139.576 -4.17558 4.17558 1.06 0.0011636 0.00106942 0.0564818 0.0518326 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.88 0.202624 0.182729 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0477453 0.0431784 150 4 124 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.64 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30484 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1037 13598 4125 8601 872 55.5 MiB 0.23 0.01 4.1263 -141.609 -4.1263 4.1263 1.11 0.000873655 0.000792575 0.0774739 0.0708043 28 2566 22 6.65987e+06 431052 500653. 1732.36 3.89 0.45773 0.410149 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.22 0.14 0.10 -1 -1 0.22 0.0573973 0.0517514 153 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.56 vpr 55.50 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1033 10448 2380 7653 415 55.3 MiB 0.18 0.00 4.16458 -142.258 -4.16458 4.16458 1.04 0.00131875 0.00121063 0.0652073 0.059718 28 3079 34 6.65987e+06 431052 500653. 1732.36 4.67 0.468626 0.419615 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.27 0.14 0.17 -1 -1 0.27 0.0516249 0.0466333 151 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.66 vpr 55.64 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.26 982 9031 1878 6401 752 55.6 MiB 0.16 0.01 3.86706 -126.941 -3.86706 3.86706 1.11 0.00127262 0.00116405 0.0535549 0.0491288 30 2443 22 6.65987e+06 469086 526063. 1820.29 1.35 0.227853 0.205098 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0585149 0.0527482 148 65 60 30 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.19 vpr 54.88 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30184 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 16.6 MiB 0.20 656 10400 2388 7389 623 55.4 MiB 0.16 0.00 3.50927 -110.79 -3.50927 3.50927 1.06 0.00100847 0.000925097 0.0636591 0.0584392 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.56 0.230454 0.20682 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.22 0.09 0.09 -1 -1 0.22 0.0388054 0.0348692 112 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.42 vpr 55.65 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 986 11613 3437 7269 907 55.8 MiB 0.20 0.00 4.19776 -134.76 -4.19776 4.19776 1.05 0.00124528 0.00114225 0.0824482 0.0756427 32 2227 20 6.65987e+06 278916 554710. 1919.41 1.25 0.237657 0.21447 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0526956 0.0475562 145 63 60 30 60 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.65 vpr 55.45 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30692 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 17.3 MiB 0.32 1052 13117 2855 8842 1420 55.6 MiB 0.19 0.00 3.91498 -132.986 -3.91498 3.91498 1.05 0.00143372 0.00131436 0.0816186 0.0748052 32 2892 25 6.65987e+06 494442 554710. 1919.41 1.37 0.272402 0.245133 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.24 0.09 0.21 -1 -1 0.24 0.0290565 0.0257049 154 127 0 0 128 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.54 vpr 55.25 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30536 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1048 9679 2436 6757 486 55.7 MiB 0.09 0.00 3.91106 -131.073 -3.91106 3.91106 0.72 0.000488095 0.000441263 0.0246862 0.0223351 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.47 0.196293 0.176036 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.22 0.12 0.17 -1 -1 0.22 0.0557535 0.0502575 146 94 31 31 93 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.88 vpr 55.43 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30288 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 967 14375 3613 8859 1903 55.7 MiB 0.22 0.00 3.7785 -114.4 -3.7785 3.7785 1.05 0.00126862 0.00116295 0.0916913 0.0840689 30 2034 21 6.65987e+06 380340 526063. 1820.29 1.19 0.251751 0.227193 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.24 0.04 0.22 -1 -1 0.24 0.02039 0.018287 136 92 26 26 90 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.55 vpr 55.32 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1103 13477 4009 7448 2020 55.4 MiB 0.23 0.00 4.11944 -143.283 -4.11944 4.11944 1.05 0.00131174 0.00120264 0.0987738 0.090628 32 2896 23 6.65987e+06 266238 554710. 1919.41 1.37 0.270016 0.244044 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0593398 0.053577 154 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.04 vpr 55.37 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30176 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 870 10463 2796 6767 900 55.8 MiB 0.17 0.00 3.39684 -102.663 -3.39684 3.39684 1.05 0.00121937 0.00111767 0.0626764 0.0574288 32 2139 21 6.65987e+06 431052 554710. 1919.41 1.25 0.216788 0.195119 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494509 0.0445345 134 88 26 26 85 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.92 vpr 54.68 MiB 0.03 6676 -1 -1 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.10 838 13496 3888 8529 1079 55.5 MiB 0.19 0.00 3.5031 -123.339 -3.5031 3.5031 1.05 0.00100991 0.000927017 0.0818664 0.0752212 32 2175 23 6.65987e+06 202848 554710. 1919.41 1.29 0.212205 0.191276 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0422587 0.0379979 116 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.63 vpr 55.52 MiB 0.05 7164 -1 -1 1 0.03 -1 -1 30268 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1015 16525 5345 8784 2396 55.3 MiB 0.27 0.00 4.18856 -142.192 -4.18856 4.18856 1.05 0.00134058 0.00123027 0.103247 0.0947805 32 2598 23 6.65987e+06 418374 554710. 1919.41 1.39 0.2775 0.250996 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.26 0.14 0.23 -1 -1 0.26 0.0600287 0.0541523 150 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.56 vpr 55.40 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 17.1 MiB 0.28 1026 16081 4881 8736 2464 56.0 MiB 0.27 0.00 4.23393 -146.239 -4.23393 4.23393 1.05 0.00131243 0.00120385 0.11726 0.107585 32 2633 23 6.65987e+06 266238 554710. 1919.41 1.38 0.289853 0.262226 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0579346 0.0522599 157 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.89 vpr 55.13 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 16.6 MiB 0.24 688 16683 5557 7719 3407 55.4 MiB 0.19 0.00 3.44878 -105.048 -3.44878 3.44878 1.07 0.00103133 0.000943465 0.0852974 0.0781031 30 2275 33 6.65987e+06 367662 526063. 1820.29 2.20 0.238733 0.214419 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.22 0.05 0.10 -1 -1 0.22 0.0188386 0.0167004 111 55 32 32 54 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.86 vpr 54.87 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30180 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.4 MiB 0.12 746 13556 4162 7429 1965 55.0 MiB 0.19 0.00 3.4529 -114.38 -3.4529 3.4529 1.05 0.0009728 0.000893544 0.0782122 0.0718342 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.20 0.203294 0.18303 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0363688 0.0327232 118 4 93 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.57 vpr 55.73 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30180 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 17.0 MiB 0.25 900 5133 854 4121 158 55.6 MiB 0.05 0.00 4.0123 -128.007 -4.0123 4.0123 0.72 0.000456586 0.00041277 0.0129582 0.0117831 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.78 0.073741 0.0649619 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0500288 0.0450954 138 59 60 32 58 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.99 vpr 55.59 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30120 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 17.2 MiB 0.25 879 9892 2434 7009 449 55.6 MiB 0.17 0.00 4.11224 -123.302 -4.11224 4.11224 1.06 0.00128392 0.00117682 0.0632022 0.0579443 28 2733 50 6.65987e+06 380340 500653. 1732.36 2.64 0.286612 0.257401 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.23 0.13 0.24 -1 -1 0.23 0.0567883 0.0510591 134 88 28 28 88 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 7.23 vpr 55.71 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 17.4 MiB 0.08 1224 16515 4921 9863 1731 55.7 MiB 0.27 0.01 4.82096 -159.28 -4.82096 4.82096 1.05 0.00136352 0.00125336 0.0938587 0.0863167 34 3026 21 6.65987e+06 443730 585099. 2024.56 4.25 0.476647 0.42935 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0576425 0.0522035 177 3 156 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.11 vpr 55.00 MiB 0.03 7052 -1 -1 1 0.04 -1 -1 30416 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1012 13726 3606 8436 1684 55.8 MiB 0.21 0.00 3.638 -113.448 -3.638 3.638 1.05 0.00120191 0.00110245 0.0808583 0.0741212 32 2171 21 6.65987e+06 405696 554710. 1919.41 1.23 0.232421 0.209564 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0483774 0.0435884 136 59 60 30 56 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.88 vpr 54.83 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 16.4 MiB 0.09 768 12754 4322 6521 1911 55.1 MiB 0.16 0.00 3.3979 -99.6122 -3.3979 3.3979 1.06 0.000917602 0.000841722 0.0718876 0.0659659 32 1581 21 6.65987e+06 253560 554710. 1919.41 1.17 0.187071 0.168178 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0412988 0.0369326 107 34 54 27 27 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.99 vpr 55.55 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.21 1366 15232 4128 9656 1448 56.0 MiB 0.27 0.01 4.15924 -136.806 -4.15924 4.15924 1.06 0.00154997 0.0014231 0.101586 0.0932061 32 3584 25 6.65987e+06 507120 554710. 1919.41 1.45 0.311142 0.280993 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.25 0.21 0.21 -1 -1 0.25 0.078368 0.0705949 184 95 62 31 95 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.87 vpr 55.27 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 16.9 MiB 0.38 999 12894 3350 8149 1395 55.8 MiB 0.23 0.00 4.3007 -134.868 -4.3007 4.3007 1.10 0.00140465 0.00128829 0.102443 0.0939897 32 2741 23 6.65987e+06 266238 554710. 1919.41 1.36 0.28026 0.252617 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.065022 0.0583907 144 124 0 0 124 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.84 vpr 55.38 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 16.7 MiB 0.32 739 9540 2469 6056 1015 55.4 MiB 0.15 0.00 3.43298 -108.977 -3.43298 3.43298 1.06 0.0011319 0.00103271 0.0657736 0.0602985 28 1956 23 6.65987e+06 202848 500653. 1732.36 1.17 0.202433 0.18181 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.25 0.11 0.18 -1 -1 0.25 0.0547076 0.0493275 109 89 0 0 89 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.99 vpr 55.39 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1126 15645 4217 9584 1844 55.7 MiB 0.24 0.00 4.2677 -137.429 -4.2677 4.2677 1.05 0.00123286 0.00112252 0.0906959 0.0831897 28 2607 21 6.65987e+06 405696 500653. 1732.36 1.21 0.223137 0.201832 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.23 0.10 0.14 -1 -1 0.23 0.0456851 0.0413739 146 34 90 30 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.08 vpr 55.75 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30536 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1167 13551 3218 9177 1156 55.7 MiB 0.24 0.00 4.22766 -133.836 -4.22766 4.22766 1.05 0.00145523 0.00133792 0.0900014 0.0826726 32 2713 24 6.65987e+06 456408 554710. 1919.41 1.32 0.279899 0.252798 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0583063 0.0526311 171 64 87 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.13 vpr 55.27 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30408 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 16.9 MiB 0.12 1070 11111 2802 7426 883 55.6 MiB 0.09 0.00 3.62941 -110.797 -3.62941 3.62941 0.72 0.000442846 0.00039888 0.0249129 0.0225263 26 2917 46 6.65987e+06 418374 477104. 1650.88 3.75 0.340996 0.30367 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.050615 0.0456627 134 61 58 30 58 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.44 vpr 55.68 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30516 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1074 12606 3053 8336 1217 55.4 MiB 0.21 0.01 4.0783 -140.694 -4.0783 4.0783 1.07 0.0013173 0.00120761 0.0703135 0.0645219 30 2464 23 6.65987e+06 532476 526063. 1820.29 1.37 0.245591 0.221507 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0608115 0.0547949 157 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 6.15 vpr 55.33 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 985 6766 1235 5165 366 55.6 MiB 0.13 0.01 3.41884 -116.445 -3.41884 3.41884 1.06 0.00131369 0.00120562 0.0412665 0.0378716 28 2716 20 6.65987e+06 481764 500653. 1732.36 1.32 0.205694 0.185022 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.23 0.14 0.21 -1 -1 0.23 0.0637753 0.0574237 155 65 63 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.02 vpr 54.93 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 16.6 MiB 0.13 502 12791 3342 7797 1652 55.1 MiB 0.14 0.00 3.7595 -104.343 -3.7595 3.7595 1.05 0.000970831 0.00089018 0.0789557 0.0724566 32 1548 18 6.65987e+06 202848 554710. 1919.41 1.15 0.197213 0.177697 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394657 0.0354004 93 34 58 29 29 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.10 vpr 54.95 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 29928 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.30 872 14431 4553 8297 1581 55.4 MiB 0.19 0.00 3.69338 -109.525 -3.69338 3.69338 1.05 0.00106595 0.000975245 0.0907082 0.0830455 32 1973 19 6.65987e+06 215526 554710. 1919.41 1.20 0.220808 0.198767 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0426629 0.0381982 111 82 0 0 82 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.39 vpr 55.51 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 973 15876 4279 9893 1704 55.8 MiB 0.25 0.00 4.55701 -136.44 -4.55701 4.55701 1.04 0.00122417 0.0011216 0.0871514 0.079945 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.51 0.264177 0.238348 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0536916 0.0484511 150 34 93 31 31 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.94 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.8 MiB 0.28 621 11063 2736 7707 620 55.3 MiB 0.15 0.00 3.58224 -95.8028 -3.58224 3.58224 1.06 0.000976863 0.000894339 0.0552985 0.0506382 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.90 0.201479 0.180238 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.22 0.09 0.18 -1 -1 0.22 0.0360556 0.0323147 108 56 29 29 52 26 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.84 vpr 54.84 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 823 7992 1920 5681 391 55.5 MiB 0.14 0.00 3.5141 -118.56 -3.5141 3.5141 1.06 0.00106435 0.000977064 0.0533687 0.0489943 34 2038 19 6.65987e+06 202848 585099. 2024.56 3.54 0.283508 0.253073 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.27 0.10 0.22 -1 -1 0.27 0.0433173 0.0389559 119 34 64 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.44 vpr 55.56 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30240 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1001 11955 3102 7859 994 55.7 MiB 0.10 0.00 3.4951 -117.77 -3.4951 3.4951 0.72 0.000461088 0.000416717 0.026651 0.0240479 26 2363 24 6.65987e+06 456408 477104. 1650.88 1.05 0.157982 0.141119 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0507114 0.0457146 142 64 58 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.05 vpr 55.00 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 16.4 MiB 0.30 876 12923 4161 7145 1617 55.2 MiB 0.17 0.00 3.11304 -101.32 -3.11304 3.11304 1.05 0.00101361 0.000928338 0.0803814 0.0737018 32 1966 17 6.65987e+06 202848 554710. 1919.41 1.16 0.20121 0.181203 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.28 0.10 0.21 -1 -1 0.28 0.0423481 0.0382106 105 55 31 31 53 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.00 vpr 55.49 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 17.1 MiB 0.24 929 17616 5738 7949 3929 55.7 MiB 0.22 0.00 3.3979 -111.1 -3.3979 3.3979 1.05 0.00123593 0.00113283 0.103591 0.0949763 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.62 0.355957 0.320116 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.28 0.12 0.24 -1 -1 0.28 0.0522675 0.0471528 136 65 52 26 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 6.01 vpr 55.35 MiB 0.07 7244 -1 -1 1 0.03 -1 -1 30348 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 16.9 MiB 0.60 965 17427 4981 9867 2579 55.4 MiB 0.26 0.00 3.7445 -120.758 -3.7445 3.7445 1.07 0.00133251 0.0012195 0.106558 0.0975124 28 2286 21 6.65987e+06 456408 500653. 1732.36 1.26 0.275656 0.248874 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.05369 0.0484326 148 93 31 31 92 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.19 vpr 55.08 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.8 MiB 0.18 861 11652 3522 6006 2124 55.5 MiB 0.17 0.00 2.81844 -100.349 -2.81844 2.81844 1.05 0.00108749 0.000996076 0.073925 0.0677835 32 2079 23 6.65987e+06 228204 554710. 1919.41 1.24 0.214728 0.1932 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0452347 0.0406077 115 61 32 32 60 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.08 vpr 55.03 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.29 667 7380 1595 4913 872 55.6 MiB 0.11 0.00 3.38184 -112.707 -3.38184 3.38184 1.06 0.0011026 0.00101006 0.0487385 0.0447191 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.70 0.224949 0.201475 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.26 0.11 0.21 -1 -1 0.26 0.0461537 0.0414299 121 63 32 32 62 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.57 vpr 55.33 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30584 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 17.1 MiB 0.17 1042 12164 2979 8000 1185 55.5 MiB 0.19 0.00 4.02524 -139.262 -4.02524 4.02524 1.05 0.00130052 0.00119293 0.0718199 0.0657845 28 2653 23 6.65987e+06 456408 500653. 1732.36 1.35 0.239815 0.216093 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0496852 0.044856 154 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.21 vpr 55.09 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 16.8 MiB 0.23 968 17313 5602 9212 2499 55.5 MiB 0.24 0.00 3.57304 -105.57 -3.57304 3.57304 1.05 0.00118879 0.00109006 0.101565 0.0930569 32 2179 18 6.65987e+06 405696 554710. 1919.41 1.20 0.246401 0.222493 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0518417 0.0466315 133 62 56 29 58 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.42 vpr 55.48 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 17.2 MiB 0.37 1004 11616 2968 7911 737 55.6 MiB 0.20 0.00 3.97241 -135.454 -3.97241 3.97241 1.05 0.00146143 0.00134013 0.07749 0.0709592 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.91 0.149774 0.134191 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0641464 0.0576209 156 127 0 0 128 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.90 vpr 54.66 MiB 0.06 6848 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 16.4 MiB 0.11 715 5825 1215 4401 209 55.1 MiB 0.10 0.00 2.9397 -97.4988 -2.9397 2.9397 1.07 0.000931858 0.000855881 0.0350821 0.0322905 30 1705 18 6.65987e+06 202848 526063. 1820.29 1.12 0.147857 0.132686 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0374246 0.0335811 105 4 85 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.54 vpr 55.40 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 17.0 MiB 0.19 948 20077 6167 11074 2836 55.8 MiB 0.27 0.00 4.10497 -133.778 -4.10497 4.10497 1.01 0.00132385 0.00120582 0.107607 0.0983664 32 2340 22 6.65987e+06 418374 554710. 1919.41 1.25 0.275431 0.248435 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0509649 0.0459877 142 92 28 28 92 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.35 vpr 55.09 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 29984 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.8 MiB 0.25 805 9196 3450 4876 870 55.7 MiB 0.14 0.00 3.54047 -120.422 -3.54047 3.54047 1.09 0.00118155 0.00108041 0.066736 0.0611469 30 2070 21 6.65987e+06 202848 526063. 1820.29 4.21 0.401562 0.359142 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0428527 0.0385564 115 96 0 0 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.37 vpr 55.38 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30264 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1002 18111 5520 9663 2928 55.4 MiB 0.26 0.00 3.45184 -118.995 -3.45184 3.45184 1.05 0.0012912 0.00118132 0.106443 0.0975463 32 2572 22 6.65987e+06 443730 554710. 1919.41 1.29 0.272394 0.246116 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0588671 0.0530782 149 65 61 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.22 vpr 55.54 MiB 0.09 7264 -1 -1 1 0.03 -1 -1 30620 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 17.9 MiB 0.36 1201 15034 3694 9653 1687 56.1 MiB 0.26 0.01 4.6905 -158.567 -4.6905 4.6905 1.05 0.0015764 0.00144672 0.0981723 0.0901973 26 3501 45 6.65987e+06 545154 477104. 1650.88 3.92 0.358494 0.323052 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.22 0.20 0.17 -1 -1 0.22 0.0822624 0.0741769 186 96 64 32 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.93 vpr 54.62 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.21 532 10509 2640 7460 409 54.9 MiB 0.12 0.00 2.61752 -80.0454 -2.61752 2.61752 1.05 0.000826678 0.000757258 0.0553374 0.0506648 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.42 0.158197 0.141379 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.032265 0.0287016 83 56 0 0 53 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 5.21 vpr 55.12 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30328 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 16.7 MiB 0.10 758 10536 3415 5493 1628 55.1 MiB 0.15 0.00 3.52904 -110.224 -3.52904 3.52904 1.08 0.00100569 0.00092227 0.0669074 0.0614531 32 1744 20 6.65987e+06 202848 554710. 1919.41 1.19 0.192567 0.17332 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0390442 0.035106 96 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.10 vpr 54.89 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.7 MiB 0.12 856 9872 2316 7018 538 55.5 MiB 0.16 0.00 3.4859 -122.574 -3.4859 3.4859 1.07 0.00106035 0.000972327 0.0619939 0.0569285 32 2373 21 6.65987e+06 228204 554710. 1919.41 1.32 0.197944 0.178117 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0445619 0.0400533 126 34 64 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 5.85 vpr 54.72 MiB 0.10 6904 -1 -1 1 0.03 -1 -1 30200 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.2 MiB 0.09 696 13351 3608 8032 1711 54.8 MiB 0.15 0.00 3.32684 -88.9535 -3.32684 3.32684 1.08 0.000857613 0.000787376 0.0582343 0.0534455 26 1641 17 6.65987e+06 431052 477104. 1650.88 1.08 0.160181 0.143841 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0342023 0.0305555 103 34 50 25 25 25 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.33 vpr 55.30 MiB 0.06 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 0.23 877 14541 4608 7775 2158 55.5 MiB 0.26 0.00 4.02035 -125.217 -4.02035 4.02035 1.05 0.00136171 0.00124728 0.113251 0.10381 32 2783 25 6.65987e+06 253560 554710. 1919.41 1.39 0.294306 0.265727 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0601149 0.0541638 147 94 32 32 94 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.46 vpr 55.63 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30208 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 17.0 MiB 0.22 938 18660 5414 10450 2796 55.5 MiB 0.28 0.00 3.4903 -116.326 -3.4903 3.4903 1.07 0.00133237 0.00122092 0.111665 0.102344 32 2461 21 6.65987e+06 469086 554710. 1919.41 1.30 0.279514 0.252419 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.28 0.11 0.21 -1 -1 0.28 0.037618 0.0334571 146 94 29 29 93 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.32 vpr 56.10 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58184 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 18.1 MiB 0.98 758 13949 4789 6835 2325 56.8 MiB 0.19 0.00 3.74419 -135.496 -3.74419 3.74419 1.09 0.00137008 0.00125651 0.100178 0.0918235 58 1960 26 6.95648e+06 361892 997811. 3452.63 7.63 0.634014 0.567665 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.41 0.13 0.44 -1 -1 0.41 0.056823 0.0511585 84 96 32 32 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.44 vpr 56.07 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30460 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 17.6 MiB 2.31 807 12716 4975 6082 1659 56.5 MiB 0.18 0.00 3.9478 -130.518 -3.9478 3.9478 1.10 0.00127975 0.00117323 0.107006 0.0981254 48 2407 29 6.95648e+06 202660 865456. 2994.66 20.11 0.741826 0.663405 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.39 0.20 0.34 -1 -1 0.39 0.0635829 0.0573219 76 91 30 30 89 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 9.02 vpr 56.09 MiB 0.10 7140 -1 -1 1 0.03 -1 -1 30436 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 17.8 MiB 0.84 1022 7103 1835 4569 699 56.6 MiB 0.11 0.00 3.60914 -132.635 -3.60914 3.60914 1.09 0.00123963 0.00113757 0.0529541 0.0486293 44 2666 29 6.95648e+06 275038 787024. 2723.27 2.80 0.283192 0.254258 27778 195446 -1 2250 23 1533 2295 200856 39573 3.61236 3.61236 -138.488 -3.61236 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0564311 0.0507589 77 65 54 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 7.59 vpr 55.86 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30320 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 17.6 MiB 0.41 752 10672 3799 5216 1657 56.1 MiB 0.15 0.00 4.001 -128.21 -4.001 4.001 1.15 0.00114472 0.00105057 0.0785126 0.0721531 44 2696 27 6.95648e+06 231611 787024. 2723.27 6.24 0.459148 0.4116 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.054131 0.0486959 75 34 87 29 29 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 10.05 vpr 55.93 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30264 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 17.6 MiB 0.76 716 9857 3295 4764 1798 56.5 MiB 0.15 0.00 3.66789 -133.791 -3.66789 3.66789 1.09 0.00125313 0.00115036 0.0793378 0.0728746 56 2163 40 6.95648e+06 188184 973134. 3367.25 4.54 0.394529 0.354816 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.40 0.15 0.41 -1 -1 0.40 0.0573497 0.0518198 78 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.04 vpr 56.18 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30324 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58092 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 17.8 MiB 0.43 727 15003 5272 7155 2576 56.7 MiB 0.18 0.00 3.0985 -114.166 -3.0985 3.0985 1.08 0.00129876 0.00118948 0.0965033 0.0884806 46 2435 46 6.95648e+06 419795 828058. 2865.25 4.51 0.43736 0.393829 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.32 0.13 0.17 -1 -1 0.32 0.0525061 0.0474012 89 64 63 32 63 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.42 vpr 55.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30392 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 17.0 MiB 3.40 451 8433 2993 4087 1353 55.6 MiB 0.10 0.00 3.26916 -93.4177 -3.26916 3.26916 1.09 0.000921653 0.000845959 0.0538676 0.0494935 40 1397 46 6.95648e+06 202660 706193. 2443.58 3.43 0.289261 0.258172 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.037006 0.0331411 54 34 54 27 27 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.66 vpr 55.78 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.5 MiB 0.51 722 11088 4563 6076 449 56.0 MiB 0.15 0.00 3.0394 -105.493 -3.0394 3.0394 1.10 0.00111173 0.00102104 0.0753461 0.0693071 46 2382 26 6.95648e+06 246087 828058. 2865.25 3.74 0.318468 0.286166 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0501625 0.0451182 77 4 115 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 8.82 vpr 56.07 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 29976 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 1.76 523 9994 2759 5612 1623 56.0 MiB 0.13 0.00 3.10275 -98.727 -3.10275 3.10275 1.11 0.00107127 0.000979356 0.0724902 0.0664483 40 1829 42 6.95648e+06 159232 706193. 2443.58 3.73 0.33807 0.30191 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0572823 0.0511815 57 85 0 0 84 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 7.69 vpr 55.88 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.71 638 10614 4216 4843 1555 56.0 MiB 0.14 0.00 2.95005 -114.898 -2.95005 2.95005 1.09 0.000977005 0.000888142 0.0752835 0.0690908 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.69 0.275765 0.247564 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.29 0.12 0.14 -1 -1 0.29 0.0443805 0.0398939 62 34 64 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.85 vpr 55.76 MiB 0.06 7000 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 1.70 651 11079 4648 6085 346 55.9 MiB 0.15 0.00 3.1095 -111.937 -3.1095 3.1095 1.10 0.00105748 0.000969002 0.0789684 0.0724571 38 1744 25 6.95648e+06 173708 678818. 2348.85 5.27 0.437354 0.390275 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0427749 0.0384129 60 63 30 30 60 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.75 vpr 55.79 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30316 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 17.2 MiB 0.95 540 10476 4331 5741 404 56.1 MiB 0.14 0.00 2.9793 -106.716 -2.9793 2.9793 1.14 0.00123881 0.00112774 0.0783514 0.0717282 50 1707 47 6.95648e+06 173708 902133. 3121.57 6.69 0.542564 0.484091 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.35 0.10 0.37 -1 -1 0.35 0.0413329 0.0371069 60 65 25 25 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.59 vpr 56.04 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 17.6 MiB 1.53 751 11803 3277 6504 2022 56.5 MiB 0.17 0.00 3.1024 -116.565 -3.1024 3.1024 1.08 0.00125565 0.00115123 0.0832591 0.0764367 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.95 0.336126 0.302029 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0497819 0.0448748 79 58 64 32 57 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 8.12 vpr 56.12 MiB 0.07 7020 -1 -1 1 0.03 -1 -1 30420 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 17.6 MiB 1.26 832 16371 6652 7990 1729 56.5 MiB 0.23 0.00 3.72719 -138.885 -3.72719 3.72719 1.11 0.00131754 0.00120845 0.111158 0.101936 44 2523 32 6.95648e+06 376368 787024. 2723.27 6.67 0.589108 0.528456 27778 195446 -1 1993 25 2157 3068 280465 63460 4.23576 4.23576 -153.24 -4.23576 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0644037 0.0580945 87 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 8.12 vpr 55.41 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 17.1 MiB 1.13 465 11234 4544 5569 1121 55.6 MiB 0.13 0.00 3.14676 -95.8879 -3.14676 3.14676 1.13 0.000935914 0.000858037 0.0700007 0.0642224 46 1613 28 6.95648e+06 188184 828058. 2865.25 5.82 0.36928 0.329287 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0479787 0.0428575 58 29 58 29 24 24 + fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.47 vpr 55.92 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57912 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 17.7 MiB 1.73 807 11813 5009 6533 271 56.6 MiB 0.18 0.00 3.1505 -120.688 -3.1505 3.1505 1.09 0.00130398 0.00119677 0.0980353 0.0899709 46 2437 23 6.95648e+06 188184 828058. 2865.25 3.11 0.379928 0.342259 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.33 0.16 0.36 -1 -1 0.33 0.0642713 0.0578504 77 63 64 32 62 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 10.27 vpr 56.00 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30108 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 17.4 MiB 1.65 707 11064 3419 5711 1934 56.3 MiB 0.18 0.00 3.0804 -113.837 -3.0804 3.0804 1.14 0.00126528 0.00115895 0.0929678 0.085307 46 2393 47 6.95648e+06 289514 828058. 2865.25 3.42 0.39009 0.350106 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.34 0.13 0.33 -1 -1 0.34 0.0615775 0.0559192 78 57 64 32 56 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 9.20 vpr 55.69 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 29964 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 17.4 MiB 1.00 574 10698 2981 5511 2206 56.4 MiB 0.13 0.00 2.43656 -93.1005 -2.43656 2.43656 1.11 0.00111095 0.00101726 0.0684111 0.0627337 48 1509 24 6.95648e+06 289514 865456. 2994.66 6.18 0.482443 0.429997 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0458271 0.0411188 67 65 29 29 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.45 vpr 55.25 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30004 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 16.7 MiB 0.34 450 11098 4789 5936 373 55.3 MiB 0.11 0.00 2.21746 -80.6728 -2.21746 2.21746 1.08 0.000778791 0.000712911 0.0602434 0.0551878 36 1377 32 6.95648e+06 144757 648988. 2245.63 2.36 0.236366 0.21024 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.29 0.07 0.25 -1 -1 0.29 0.031074 0.0276552 45 34 24 24 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 8.91 vpr 55.96 MiB 0.06 6924 -1 -1 1 0.03 -1 -1 30296 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 1.14 525 9374 3845 5090 439 56.3 MiB 0.13 0.00 3.8254 -127.041 -3.8254 3.8254 1.10 0.0010907 0.000999647 0.068889 0.0631966 46 1860 48 6.95648e+06 159232 828058. 2865.25 4.48 0.35424 0.316689 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.35 0.11 0.33 -1 -1 0.35 0.0543192 0.0487476 61 64 31 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.75 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30012 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 17.6 MiB 0.44 664 13663 4054 7770 1839 56.4 MiB 0.19 0.00 3.70954 -128.174 -3.70954 3.70954 1.10 0.00121834 0.00111771 0.0936137 0.0859832 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.35 0.323518 0.291434 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0514083 0.0463616 81 34 91 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 10.36 vpr 56.22 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30600 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 1.38 791 14779 5223 7361 2195 56.6 MiB 0.21 0.00 3.66119 -126.81 -3.66119 3.66119 1.05 0.00141539 0.00129729 0.106701 0.0978509 48 2442 23 6.95648e+06 390843 865456. 2994.66 6.50 0.559313 0.50063 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.066004 0.059319 85 124 0 0 125 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.45 vpr 55.14 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30412 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 16.9 MiB 0.95 348 7809 2770 3912 1127 55.4 MiB 0.07 0.00 2.19726 -66.8557 -2.19726 2.19726 1.11 0.000682143 0.000623316 0.038416 0.0351841 46 937 48 6.95648e+06 188184 828058. 2865.25 2.40 0.190209 0.168928 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.33 0.05 0.33 -1 -1 0.33 0.0229495 0.0205223 44 30 26 26 22 22 + fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.98 vpr 55.57 MiB 0.06 6840 -1 -1 1 0.03 -1 -1 30028 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 17.4 MiB 0.85 737 10316 4241 5568 507 56.2 MiB 0.14 0.00 4.02534 -135.509 -4.02534 4.02534 1.09 0.00114748 0.00105309 0.0777136 0.0714011 54 2026 41 6.95648e+06 173708 949917. 3286.91 8.17 0.535166 0.479747 29506 232905 -1 1641 22 1840 2844 317217 104806 3.76887 3.76887 -137.001 -3.76887 0 0 1.17392e+06 4061.99 0.37 0.16 0.40 -1 -1 0.37 0.0507955 0.0457669 74 3 122 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.39 vpr 55.34 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30372 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 17.0 MiB 0.24 731 9906 3689 5081 1136 55.6 MiB 0.10 0.00 2.15326 -87.6492 -2.15326 2.15326 0.93 0.00072053 0.000658428 0.0499973 0.0457607 34 1791 46 6.95648e+06 115805 618332. 2139.56 2.18 0.21102 0.187768 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0228622 0.0204879 44 3 53 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 14.02 vpr 55.91 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58004 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 17.8 MiB 0.54 827 16371 5667 8716 1988 56.6 MiB 0.22 0.00 3.67409 -135.23 -3.67409 3.67409 1.12 0.00124679 0.00114306 0.105666 0.0967833 40 2687 28 6.95648e+06 376368 706193. 2443.58 18.88 0.670912 0.60115 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.32 0.27 0.29 -1 -1 0.32 0.0667233 0.0599961 85 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.80 vpr 55.87 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30000 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.5 MiB 0.34 985 13754 4254 7657 1843 56.4 MiB 0.18 0.00 3.0955 -119.852 -3.0955 3.0955 1.11 0.00118181 0.00108518 0.0824311 0.0756701 36 2880 44 6.95648e+06 405319 648988. 2245.63 6.48 0.35081 0.314865 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0453874 0.0410165 87 3 124 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.43 vpr 55.95 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58188 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 17.9 MiB 0.46 789 18308 6099 10070 2139 56.8 MiB 0.25 0.00 3.69663 -134.61 -3.69663 3.69663 1.09 0.00130698 0.00119854 0.119895 0.10981 46 2780 28 6.95648e+06 405319 828058. 2865.25 4.23 0.415008 0.373453 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0569073 0.0513107 87 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.14 vpr 55.77 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 0.82 541 9374 3087 4731 1556 55.9 MiB 0.12 0.00 2.8982 -102.358 -2.8982 2.8982 1.04 0.000997602 0.000914097 0.0634656 0.0582116 38 2009 38 6.95648e+06 144757 678818. 2348.85 4.54 0.305537 0.272824 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.045479 0.0407919 57 34 54 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.53 vpr 55.60 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 0.65 571 8444 3466 4635 343 55.8 MiB 0.13 0.00 3.1175 -112.058 -3.1175 3.1175 1.09 0.00100524 0.000917792 0.0678176 0.0622788 40 1947 30 6.95648e+06 173708 706193. 2443.58 2.81 0.289667 0.259122 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0439755 0.0394459 60 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 7.78 vpr 55.64 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 17.0 MiB 0.58 505 10257 3681 4972 1604 55.7 MiB 0.14 0.00 3.0435 -97.9378 -3.0435 3.0435 1.03 0.000944777 0.000866727 0.0765075 0.0703025 44 1727 27 6.95648e+06 188184 787024. 2723.27 3.11 0.284837 0.254818 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.33 0.08 0.27 -1 -1 0.33 0.0369724 0.0332213 61 34 56 28 28 28 + fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.67 vpr 55.69 MiB 0.04 6708 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 0.28 703 9374 3895 5319 160 55.8 MiB 0.13 0.00 2.93285 -116.414 -2.93285 2.93285 0.86 0.0010048 0.000916232 0.0647637 0.0595546 44 2101 25 6.95648e+06 144757 787024. 2723.27 3.18 0.283162 0.253823 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.045166 0.0406153 64 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.36 vpr 55.59 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 17.6 MiB 0.26 623 13443 5605 7395 443 56.0 MiB 0.16 0.00 3.0955 -111.973 -3.0955 3.0955 1.09 0.00102412 0.000938457 0.0778022 0.0713537 44 2077 38 6.95648e+06 303989 787024. 2723.27 3.31 0.3187 0.2853 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.044477 0.0400519 68 34 61 31 31 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.68 vpr 55.87 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 17.1 MiB 0.84 508 10219 3550 4648 2021 55.8 MiB 0.12 0.00 2.43392 -85.0275 -2.43392 2.43392 1.09 0.00101841 0.000932803 0.0648626 0.0594797 46 1411 35 6.95648e+06 260562 828058. 2865.25 3.05 0.305081 0.27295 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0434913 0.0389733 64 61 29 29 57 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.41 vpr 56.06 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30364 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58168 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 18.0 MiB 0.86 944 14375 4687 7097 2591 56.8 MiB 0.21 0.00 3.95585 -140.771 -3.95585 3.95585 1.12 0.00142896 0.00131172 0.103704 0.0953187 54 2725 29 6.95648e+06 405319 949917. 3286.91 5.30 0.381034 0.339845 29506 232905 -1 2082 21 1977 3135 234047 51401 4.37502 4.37502 -152.214 -4.37502 0 0 1.17392e+06 4061.99 0.38 0.14 0.36 -1 -1 0.38 0.0607904 0.0550503 100 29 128 32 27 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 9.02 vpr 56.06 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30332 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 17.8 MiB 1.15 786 12739 3070 7853 1816 56.7 MiB 0.18 0.00 3.0804 -115.407 -3.0804 3.0804 1.08 0.00130452 0.00119429 0.085153 0.078142 40 2423 28 6.95648e+06 390843 706193. 2443.58 15.07 0.678754 0.60775 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.27 0.11 0.15 -1 -1 0.27 0.029328 0.0260261 87 65 62 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.61 vpr 55.88 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30360 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 17.2 MiB 1.31 525 12362 5188 6715 459 56.1 MiB 0.15 0.00 3.26916 -109.722 -3.26916 3.26916 1.08 0.00110248 0.00100863 0.0852293 0.0780413 50 1653 27 6.95648e+06 217135 902133. 3121.57 6.18 0.417734 0.372831 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.35 0.08 0.35 -1 -1 0.35 0.0350221 0.0315134 62 90 0 0 89 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.77 vpr 56.03 MiB 0.05 7024 -1 -1 1 0.05 -1 -1 30228 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.75 965 12791 5492 6957 342 56.4 MiB 0.18 0.00 3.0625 -116.847 -3.0625 3.0625 1.09 0.00126189 0.00115793 0.102764 0.0943064 38 2599 23 6.95648e+06 202660 678818. 2348.85 5.43 0.498503 0.447379 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0491479 0.0443674 79 64 60 30 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 9.82 vpr 56.54 MiB 0.08 7228 -1 -1 1 0.03 -1 -1 30344 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58032 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 18.0 MiB 2.69 778 10998 4559 6059 380 56.7 MiB 0.17 0.00 4.63397 -149.774 -4.63397 4.63397 1.08 0.00140799 0.00129191 0.0989475 0.0908412 44 2926 36 6.95648e+06 202660 787024. 2723.27 7.82 0.655136 0.585083 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.33 0.15 0.26 -1 -1 0.33 0.0639882 0.0575411 78 124 0 0 124 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.82 vpr 55.98 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 17.7 MiB 1.23 775 10476 3672 5136 1668 56.6 MiB 0.17 0.00 4.49354 -135.009 -4.49354 4.49354 1.09 0.00130239 0.00119234 0.0894755 0.08203 44 2669 43 6.95648e+06 188184 787024. 2723.27 6.52 0.611164 0.547006 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0652764 0.0587279 76 90 31 31 89 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.14 vpr 56.01 MiB 0.06 7136 -1 -1 1 0.03 -1 -1 30184 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 17.6 MiB 1.01 864 15493 5631 7761 2101 56.5 MiB 0.21 0.00 3.1285 -114.829 -3.1285 3.1285 1.09 0.00126075 0.00115657 0.103344 0.0947559 38 2848 26 6.95648e+06 361892 678818. 2348.85 4.66 0.387088 0.34763 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0241034 0.0215718 85 64 60 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 9.30 vpr 55.66 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 17.7 MiB 0.61 956 10743 3793 5013 1937 56.6 MiB 0.15 0.00 3.77119 -139.239 -3.77119 3.77119 1.08 0.00128445 0.00117695 0.0721906 0.0661995 44 2711 27 6.95648e+06 376368 787024. 2723.27 7.14 0.591248 0.529153 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0593414 0.0534828 86 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.31 vpr 56.73 MiB 0.05 7240 -1 -1 1 0.04 -1 -1 30476 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58148 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 18.5 MiB 1.29 1078 14999 4071 8495 2433 56.8 MiB 0.22 0.00 3.84845 -142.865 -3.84845 3.84845 1.09 0.00157872 0.00144892 0.113614 0.104184 40 2955 26 6.95648e+06 448746 706193. 2443.58 4.17 0.468156 0.421393 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.27 0.08 0.15 -1 -1 0.27 0.0268109 0.0240174 104 96 62 32 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.14 vpr 55.73 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30424 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 0.72 721 10304 4339 5695 270 56.0 MiB 0.13 0.00 3.34916 -121.065 -3.34916 3.34916 1.12 0.00102344 0.000937883 0.0713091 0.0654265 36 2215 27 6.95648e+06 159232 648988. 2245.63 4.70 0.303669 0.271809 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0433552 0.0389899 62 34 62 31 31 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 9.93 vpr 56.04 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 17.5 MiB 0.49 784 13959 3819 8017 2123 56.6 MiB 0.20 0.00 4.0519 -136.516 -4.0519 4.0519 1.09 0.00127608 0.00116959 0.0924189 0.0847955 48 2294 26 6.95648e+06 390843 865456. 2994.66 6.41 0.51146 0.45866 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.35 0.13 0.36 -1 -1 0.35 0.0517193 0.0466739 86 64 62 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.07 vpr 56.14 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30344 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 17.6 MiB 0.93 863 13557 4887 6407 2263 56.6 MiB 0.17 0.00 3.29596 -116.543 -3.29596 3.29596 1.09 0.0012779 0.00117143 0.0903202 0.0828532 54 2269 23 6.95648e+06 376368 949917. 3286.91 6.96 0.501498 0.450167 29506 232905 -1 1764 21 1634 2724 193460 42892 3.13397 3.13397 -112.027 -3.13397 0 0 1.17392e+06 4061.99 0.38 0.13 0.40 -1 -1 0.38 0.0554592 0.0499474 85 63 62 32 62 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.49 vpr 55.96 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 17.8 MiB 0.85 760 7738 3134 4374 230 56.3 MiB 0.12 0.00 3.65689 -135.736 -3.65689 3.65689 1.08 0.00119038 0.00109296 0.0599785 0.0551661 44 3266 47 6.95648e+06 188184 787024. 2723.27 28.50 0.635676 0.568637 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0545204 0.0491509 78 3 128 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.40 vpr 56.03 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58120 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.92 808 11991 3810 6067 2114 56.8 MiB 0.16 0.00 3.1768 -117.392 -3.1768 3.1768 1.09 0.00131485 0.00120425 0.0859013 0.0787649 46 2159 29 6.95648e+06 332941 828058. 2865.25 6.14 0.524741 0.4698 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.35 0.10 0.33 -1 -1 0.35 0.0526985 0.0475051 81 96 25 25 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 12.28 vpr 56.18 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30160 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.98 845 12926 3665 7173 2088 56.6 MiB 0.18 0.00 3.1214 -116.244 -3.1214 3.1214 1.09 0.00128239 0.0011765 0.0844104 0.077487 46 2291 24 6.95648e+06 405319 828058. 2865.25 6.11 0.490128 0.439342 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0579681 0.0522279 85 61 64 32 60 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.68 vpr 56.29 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 17.7 MiB 0.69 803 14996 4547 7782 2667 56.6 MiB 0.21 0.00 3.09676 -115.471 -3.09676 3.09676 1.12 0.0013123 0.00120114 0.0990352 0.0907497 46 2386 25 6.95648e+06 405319 828058. 2865.25 3.71 0.386455 0.347396 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053174 0.0480234 88 65 63 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 7.94 vpr 55.81 MiB 0.05 7016 -1 -1 1 0.04 -1 -1 30484 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.57 938 15617 5888 7604 2125 56.4 MiB 0.21 0.00 3.66789 -137.042 -3.66789 3.66789 1.09 0.00124251 0.00114049 0.098879 0.0908026 44 2729 48 6.95648e+06 405319 787024. 2723.27 3.92 0.364238 0.327933 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0565426 0.0509175 85 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 10.19 vpr 56.11 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30560 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 17.8 MiB 1.15 799 12448 3955 5788 2705 56.5 MiB 0.16 0.00 3.78219 -138.337 -3.78219 3.78219 1.09 0.00129422 0.00118519 0.0797554 0.0731428 44 2633 42 6.95648e+06 434271 787024. 2723.27 3.34 0.356732 0.320245 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.32 0.13 0.16 -1 -1 0.32 0.0574067 0.051861 88 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 11.76 vpr 56.19 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 17.8 MiB 1.64 822 11983 4768 6508 707 56.6 MiB 0.18 0.00 4.19045 -134.89 -4.19045 4.19045 1.09 0.00138265 0.00126248 0.0887663 0.0813681 48 2637 22 6.95648e+06 361892 865456. 2994.66 6.44 0.558409 0.497903 28354 207349 -1 2137 24 1540 2402 225363 46826 4.04142 4.04142 -139.672 -4.04142 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0647566 0.0581982 84 122 0 0 122 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 11.04 vpr 56.54 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58200 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 18.1 MiB 1.22 840 10346 3694 5398 1254 56.8 MiB 0.17 0.00 3.7688 -130.649 -3.7688 3.7688 1.09 0.00138091 0.00126765 0.0910123 0.0835746 40 2535 24 6.95648e+06 188184 706193. 2443.58 4.10 0.387616 0.348294 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0613399 0.0552047 78 94 32 32 94 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 17.04 vpr 55.59 MiB 0.06 6868 -1 -1 1 0.03 -1 -1 30580 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 17.2 MiB 0.21 594 10647 4341 5910 396 55.9 MiB 0.13 0.00 3.12656 -113.614 -3.12656 3.12656 1.09 0.00104218 0.000955614 0.0610739 0.0559171 56 1741 22 6.95648e+06 332941 973134. 3367.25 6.96 0.422414 0.376318 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.38 0.10 0.41 -1 -1 0.38 0.0416823 0.0374251 71 34 63 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.77 vpr 55.86 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30248 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57656 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 17.8 MiB 1.35 610 8444 3495 4676 273 56.3 MiB 0.12 0.00 3.0405 -112.422 -3.0405 3.0405 1.13 0.00116613 0.00106699 0.0681808 0.0624177 52 1849 26 6.95648e+06 144757 926341. 3205.33 2.76 0.279919 0.250763 29218 227130 -1 1370 23 1369 2031 153581 37136 3.03252 3.03252 -119.471 -3.03252 0 0 1.14541e+06 3963.36 0.37 0.11 0.39 -1 -1 0.37 0.0526518 0.0472736 63 94 0 0 94 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.50 vpr 56.41 MiB 0.06 7212 -1 -1 1 0.03 -1 -1 30728 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 18.1 MiB 0.75 1000 14152 3772 8188 2192 56.4 MiB 0.23 0.00 4.46224 -157.711 -4.46224 4.46224 1.10 0.00153169 0.00140856 0.106715 0.098133 54 3033 30 6.95648e+06 434271 949917. 3286.91 7.64 0.613701 0.550968 29506 232905 -1 2329 24 2607 4128 362524 74061 4.97191 4.97191 -169.58 -4.97191 0 0 1.17392e+06 4061.99 0.38 0.19 0.40 -1 -1 0.38 0.071073 0.0640762 103 65 96 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 8.74 vpr 56.11 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57684 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 17.4 MiB 1.09 717 11983 4638 6220 1125 56.3 MiB 0.15 0.00 3.1457 -117.079 -3.1457 3.1457 1.09 0.00124566 0.00114373 0.0801177 0.0736451 52 1977 32 6.95648e+06 347416 926341. 3205.33 2.85 0.312388 0.281064 29218 227130 -1 1529 23 1474 1953 166020 38664 3.18617 3.18617 -120.879 -3.18617 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.055696 0.0501995 83 34 92 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 8.23 vpr 55.86 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30248 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 17.1 MiB 0.36 571 10581 4367 5776 438 55.9 MiB 0.13 0.00 3.0735 -108.432 -3.0735 3.0735 1.09 0.00101199 0.000928311 0.0645638 0.0593128 38 2214 32 6.95648e+06 275038 678818. 2348.85 4.85 0.304862 0.272714 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0405936 0.0364505 65 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 12.69 vpr 56.50 MiB 0.08 7404 -1 -1 1 0.04 -1 -1 30920 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 18.3 MiB 2.45 1126 15215 3732 10105 1378 56.6 MiB 0.25 0.00 4.49524 -160.999 -4.49524 4.49524 1.09 0.00170037 0.00156543 0.124871 0.115065 48 3031 35 6.95648e+06 448746 865456. 2994.66 20.87 0.817149 0.735661 28354 207349 -1 2801 53 4379 6142 1660922 828010 5.02371 5.02371 -179.054 -5.02371 0 0 1.05005e+06 3633.38 0.35 0.77 0.35 -1 -1 0.35 0.158086 0.141814 103 127 32 32 128 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.38 vpr 56.26 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30312 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 17.6 MiB 1.34 804 14375 4842 7223 2310 56.3 MiB 0.19 0.00 3.73321 -136.441 -3.73321 3.73321 1.08 0.000854505 0.000767794 0.0695557 0.0629002 40 2325 28 6.95648e+06 405319 706193. 2443.58 3.80 0.334096 0.298714 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.054673 0.0492998 86 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.82 vpr 55.50 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.3 MiB 0.36 740 12763 4452 6451 1860 55.8 MiB 0.15 0.00 3.05815 -117.559 -3.05815 3.05815 1.09 0.00100968 0.00092642 0.0687585 0.0631934 44 2104 25 6.95648e+06 347416 787024. 2723.27 3.30 0.285377 0.255817 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.041819 0.0375886 70 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 14.02 vpr 55.96 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30664 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 18.2 MiB 0.63 924 14567 5045 6877 2645 56.5 MiB 0.21 0.00 4.52824 -159.979 -4.52824 4.52824 1.09 0.00145719 0.00133898 0.103177 0.0948078 54 3003 36 6.95648e+06 448746 949917. 3286.91 6.94 0.518235 0.465768 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.41 0.20 0.40 -1 -1 0.41 0.0738998 0.066636 105 34 128 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.41 vpr 55.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30244 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.40 618 10614 4475 5915 224 55.9 MiB 0.14 0.00 2.92185 -113.699 -2.92185 2.92185 1.10 0.000997586 0.000915108 0.071427 0.0655363 46 1828 25 6.95648e+06 144757 828058. 2865.25 6.27 0.451092 0.402636 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0470208 0.0421897 62 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.08 vpr 55.61 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 17.4 MiB 0.89 601 10163 2708 5873 1582 55.8 MiB 0.12 0.00 3.10776 -107.419 -3.10776 3.10776 1.09 0.00100863 0.000924981 0.0600311 0.0551339 52 1508 25 6.95648e+06 303989 926341. 3205.33 2.69 0.232747 0.208755 29218 227130 -1 1108 22 1138 1745 119544 29707 3.03987 3.03987 -107.252 -3.03987 0 0 1.14541e+06 3963.36 0.40 0.10 0.38 -1 -1 0.40 0.0452438 0.0406662 65 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.64 vpr 56.23 MiB 0.04 7132 -1 -1 1 0.27 -1 -1 30136 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 705 12856 4698 6070 2088 56.5 MiB 0.18 0.00 3.39446 -107.671 -3.39446 3.39446 1.14 0.00124212 0.00113772 0.0957051 0.0878096 48 2602 41 6.95648e+06 289514 865456. 2994.66 7.15 0.57247 0.512412 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.34 0.13 0.35 -1 -1 0.34 0.0501713 0.0452156 77 88 29 29 85 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.45 vpr 56.04 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 17.4 MiB 1.02 807 13117 5264 6347 1506 56.4 MiB 0.19 0.00 3.65689 -136.729 -3.65689 3.65689 1.09 0.00130474 0.00119745 0.108878 0.0999617 46 2061 24 6.95648e+06 188184 828058. 2865.25 5.31 0.529209 0.475139 28066 200906 -1 1777 22 2020 2624 211029 44669 3.92996 3.92996 -145.52 -3.92996 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0574376 0.0517901 78 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.39 vpr 56.07 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30520 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 17.5 MiB 1.87 890 14345 5510 6931 1904 56.4 MiB 0.19 0.00 3.74419 -138.408 -3.74419 3.74419 1.09 0.00130485 0.00119721 0.0984535 0.090346 48 2618 24 6.95648e+06 361892 865456. 2994.66 3.60 0.375018 0.337101 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.34 0.19 0.35 -1 -1 0.34 0.0615794 0.055449 85 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 10.21 vpr 55.85 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 1.38 685 10813 4185 5763 865 56.2 MiB 0.13 0.00 3.05815 -117.015 -3.05815 3.05815 1.09 0.00111879 0.00102402 0.0646507 0.0592316 44 2023 47 6.95648e+06 347416 787024. 2723.27 6.54 0.518452 0.462204 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0461188 0.0413834 69 65 32 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 9.16 vpr 55.79 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 17.5 MiB 1.62 684 10105 3894 4557 1654 56.1 MiB 0.14 0.00 3.30215 -110.841 -3.30215 3.30215 1.08 0.00110796 0.00101439 0.0768358 0.0704031 36 2232 46 6.95648e+06 144757 648988. 2245.63 5.37 0.475583 0.423763 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.29 0.11 0.27 -1 -1 0.29 0.0464687 0.0416674 59 90 0 0 89 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 9.19 vpr 56.01 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 17.4 MiB 1.01 949 12711 4087 6844 1780 56.3 MiB 0.18 0.00 3.1285 -115.995 -3.1285 3.1285 1.09 0.00122023 0.00111919 0.0883109 0.0810975 40 2353 22 6.95648e+06 318465 706193. 2443.58 2.97 0.348513 0.31322 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0545814 0.0490875 79 60 60 30 57 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.93 vpr 55.92 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30288 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 17.5 MiB 0.79 684 10156 4202 5354 600 56.2 MiB 0.14 0.00 4.24545 -126.653 -4.24545 4.24545 1.10 0.00110432 0.00101392 0.0728848 0.0669703 38 2620 28 6.95648e+06 231611 678818. 2348.85 7.19 0.322981 0.289914 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0498232 0.0447942 74 34 84 28 28 28 + fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.16 vpr 55.97 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30012 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 17.3 MiB 0.92 607 9374 3879 5147 348 56.2 MiB 0.12 0.00 3.0545 -108.859 -3.0545 3.0545 1.08 0.0010673 0.000978325 0.0672428 0.0616541 38 1982 33 6.95648e+06 173708 678818. 2348.85 4.42 0.316059 0.282704 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0480865 0.0431235 61 63 30 30 60 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.01 vpr 55.95 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 17.5 MiB 1.46 777 7669 3175 4304 190 56.5 MiB 0.11 0.00 3.0765 -113.072 -3.0765 3.0765 1.09 0.00113701 0.0010405 0.0595326 0.0545845 36 2390 29 6.95648e+06 144757 648988. 2245.63 4.30 0.290183 0.258937 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0512541 0.0459159 60 91 0 0 91 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 10.62 vpr 55.82 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30096 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.3 MiB 0.20 795 9448 3333 4743 1372 56.2 MiB 0.13 0.00 3.89245 -136.332 -3.89245 3.89245 1.09 0.0011447 0.00104929 0.0600089 0.0552093 50 2553 48 6.95648e+06 361892 902133. 3121.57 7.97 0.533607 0.47717 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.35 0.17 0.36 -1 -1 0.35 0.0528653 0.0476886 86 4 124 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 10.59 vpr 56.03 MiB 0.05 7072 -1 -1 1 0.05 -1 -1 30596 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 17.6 MiB 0.98 926 10495 2590 6894 1011 56.5 MiB 0.17 0.00 3.78219 -140.482 -3.78219 3.78219 1.13 0.00132488 0.00121557 0.0716802 0.0657643 44 2797 31 6.95648e+06 390843 787024. 2723.27 7.54 0.548921 0.491493 27778 195446 -1 2243 24 2072 3440 271776 53627 4.11966 4.11966 -151.056 -4.11966 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.061397 0.0553399 86 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 12.32 vpr 56.02 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30400 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 17.8 MiB 1.90 831 9336 3198 4890 1248 56.3 MiB 0.14 0.00 3.70819 -135.715 -3.70819 3.70819 0.98 0.00131555 0.00120568 0.0650884 0.0597001 46 2950 33 6.95648e+06 376368 828058. 2865.25 5.71 0.370042 0.332118 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.33 0.15 0.32 -1 -1 0.33 0.0591856 0.0533197 85 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.29 vpr 56.12 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 17.4 MiB 1.19 822 13351 4683 6743 1925 56.4 MiB 0.19 0.00 3.75544 -130.593 -3.75544 3.75544 1.08 0.0013088 0.00119325 0.0889987 0.0816368 48 3144 32 6.95648e+06 390843 865456. 2994.66 4.14 0.381536 0.342844 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0590308 0.0531983 86 65 60 30 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 7.75 vpr 55.61 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30196 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 17.1 MiB 0.83 551 9064 3696 4990 378 55.8 MiB 0.12 0.00 3.29416 -111.889 -3.29416 3.29416 1.09 0.00100274 0.000918791 0.061351 0.0563046 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.99 0.283432 0.253427 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0421474 0.0377961 62 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.13 vpr 56.06 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30272 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 17.8 MiB 0.87 751 12465 5336 6622 507 56.6 MiB 0.18 0.00 4.015 -133.992 -4.015 4.015 1.09 0.00124832 0.00114481 0.0991475 0.0910144 50 2020 39 6.95648e+06 217135 902133. 3121.57 10.80 0.681876 0.609696 28642 213929 -1 1643 20 1664 2248 177098 40098 3.95216 3.95216 -137.304 -3.95216 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0502919 0.0453904 78 63 60 30 60 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.10 vpr 55.99 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30716 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58140 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 17.9 MiB 1.83 807 14351 4061 7900 2390 56.8 MiB 0.22 0.00 3.71619 -135.355 -3.71619 3.71619 1.09 0.0014392 0.00131911 0.108473 0.099264 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.48 0.389336 0.349462 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0641582 0.057644 88 127 0 0 128 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 10.92 vpr 55.97 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30264 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57816 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 17.5 MiB 1.03 718 14035 5965 7479 591 56.5 MiB 0.23 0.00 3.9948 -135.983 -3.9948 3.9948 1.08 0.00132719 0.00121536 0.124816 0.114244 46 2454 32 6.95648e+06 318465 828058. 2865.25 5.81 0.437389 0.393278 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053108 0.0478893 81 94 31 31 93 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.68 vpr 56.14 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 17.5 MiB 1.63 700 13668 5834 7221 613 56.4 MiB 0.19 0.00 3.27591 -109.838 -3.27591 3.27591 1.10 0.00127604 0.00116329 0.104398 0.0956517 46 2600 45 6.95648e+06 260562 828058. 2865.25 4.19 0.426489 0.38233 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0593692 0.0534036 75 92 26 26 90 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.27 vpr 55.97 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58068 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.8 MiB 1.92 782 12628 3922 6830 1876 56.7 MiB 0.19 0.00 3.65989 -133.508 -3.65989 3.65989 1.09 0.00131076 0.0012018 0.102702 0.0942152 48 2610 29 6.95648e+06 188184 865456. 2994.66 4.84 0.407081 0.366043 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.35 0.25 0.35 -1 -1 0.35 0.0771882 0.0696211 81 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 8.91 vpr 56.02 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30184 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 17.7 MiB 1.11 662 10163 3749 4795 1619 56.5 MiB 0.13 0.00 3.14182 -102.393 -3.14182 3.14182 1.09 0.00122041 0.00111795 0.072063 0.0660747 48 1906 29 6.95648e+06 318465 865456. 2994.66 3.93 0.346316 0.310461 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.35 0.15 0.35 -1 -1 0.35 0.054278 0.0488649 77 88 26 26 85 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 8.27 vpr 55.64 MiB 0.05 6812 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.84 574 9219 3815 5040 364 56.0 MiB 0.12 0.00 2.94595 -112.182 -2.94595 2.94595 1.09 0.00100073 0.000919158 0.0622626 0.0572147 62 1582 28 6.95648e+06 144757 1.05005e+06 3633.38 7.19 0.427956 0.382799 30946 263737 -1 1177 19 1240 1905 137799 33305 3.13582 3.13582 -113.41 -3.13582 0 0 1.30136e+06 4502.97 0.42 0.10 0.46 -1 -1 0.42 0.0364767 0.0328469 61 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.61 vpr 56.20 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 17.6 MiB 3.79 749 15688 6578 8529 581 56.5 MiB 0.21 0.00 3.77419 -136.605 -3.77419 3.77419 1.09 0.00131676 0.0012077 0.110005 0.10091 54 2315 29 6.95648e+06 347416 949917. 3286.91 4.13 0.404609 0.364168 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.38 0.14 0.40 -1 -1 0.38 0.0597107 0.0538828 84 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 8.88 vpr 56.28 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30400 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 0.77 800 13117 5732 6986 399 56.4 MiB 0.19 0.00 3.79019 -142.199 -3.79019 3.79019 1.09 0.0013207 0.00121117 0.10921 0.100253 44 2724 46 6.95648e+06 188184 787024. 2723.27 3.10 0.442527 0.398192 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0545276 0.04912 81 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.04 vpr 55.65 MiB 0.03 6920 -1 -1 1 0.04 -1 -1 30196 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 17.1 MiB 1.21 575 11609 4562 5941 1106 56.1 MiB 0.15 0.00 3.25495 -109.238 -3.25495 3.25495 1.08 0.00103206 0.000945267 0.0788817 0.0723099 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.43 0.294303 0.263751 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0430239 0.0385979 60 55 32 32 54 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.65 vpr 55.37 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30196 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.30 835 9529 3959 5371 199 55.9 MiB 0.12 0.00 3.0815 -119.168 -3.0815 3.0815 1.09 0.000971747 0.000891309 0.0624392 0.0573784 38 2078 34 6.95648e+06 159232 678818. 2348.85 5.58 0.40656 0.362846 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.29 0.10 0.31 -1 -1 0.29 0.0386929 0.0348551 63 4 93 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.46 vpr 56.21 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 17.6 MiB 1.35 782 14483 5692 6794 1997 56.2 MiB 0.20 0.00 3.70334 -129.205 -3.70334 3.70334 1.09 0.0012514 0.00114867 0.104303 0.0956314 38 2558 24 6.95648e+06 275038 678818. 2348.85 4.66 0.373069 0.335377 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0469186 0.0424536 78 59 60 32 58 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 10.81 vpr 56.06 MiB 0.05 7160 -1 -1 1 0.41 -1 -1 30108 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 17.5 MiB 0.75 793 11474 4768 6294 412 56.4 MiB 0.17 0.00 3.90986 -132.869 -3.90986 3.90986 1.08 0.00127496 0.00116789 0.0872254 0.0799913 40 2890 43 6.95648e+06 260562 706193. 2443.58 8.27 0.414406 0.371951 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0555461 0.0499961 78 88 28 28 88 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 9.23 vpr 56.20 MiB 0.10 7032 -1 -1 1 0.41 -1 -1 30408 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58028 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.9 MiB 0.43 1152 4375 861 3334 180 56.7 MiB 0.09 0.00 4.48239 -161.071 -4.48239 4.48239 1.08 0.00136817 0.00125747 0.0332239 0.0306376 46 3119 32 6.95648e+06 390843 828058. 2865.25 6.66 0.354917 0.319322 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.34 0.16 0.33 -1 -1 0.34 0.0563478 0.0511067 100 3 156 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.72 vpr 56.07 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 17.8 MiB 1.05 698 14528 6104 7488 936 56.6 MiB 0.20 0.00 3.34296 -113.702 -3.34296 3.34296 1.08 0.00119821 0.00109831 0.104718 0.0960619 44 2314 27 6.95648e+06 260562 787024. 2723.27 3.10 0.37127 0.333854 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0591834 0.0531779 77 59 60 30 56 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.96 vpr 55.59 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 17.3 MiB 0.54 465 10459 4157 5359 943 55.9 MiB 0.14 0.00 3.15776 -95.8334 -3.15776 3.15776 1.10 0.000917356 0.000841296 0.0740647 0.0678907 38 1652 25 6.95648e+06 217135 678818. 2348.85 5.04 0.384385 0.342494 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0342114 0.0307177 57 34 54 27 27 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 9.29 vpr 56.30 MiB 0.05 7292 -1 -1 1 0.05 -1 -1 30472 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 18.2 MiB 0.90 956 13513 4288 6425 2800 56.6 MiB 0.20 0.00 4.037 -139.704 -4.037 4.037 1.09 0.00155869 0.00142942 0.103566 0.0950383 54 3228 47 6.95648e+06 434271 949917. 3286.91 8.84 0.701419 0.628858 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.38 0.18 0.39 -1 -1 0.38 0.070541 0.0636286 103 95 62 31 95 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 14.62 vpr 55.92 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30380 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58172 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 18.0 MiB 3.62 899 8716 2535 4990 1191 56.8 MiB 0.14 0.00 4.57784 -152.287 -4.57784 4.57784 1.09 0.00139742 0.00128222 0.0783709 0.0719727 40 2620 26 6.95648e+06 202660 706193. 2443.58 3.61 0.380083 0.340722 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0560166 0.0503962 79 124 0 0 124 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 11.53 vpr 55.83 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 17.5 MiB 3.12 500 11389 4353 5738 1298 56.5 MiB 0.15 0.00 3.0346 -106.135 -3.0346 3.0346 1.09 0.00113202 0.00103664 0.0867382 0.0795135 42 2142 50 6.95648e+06 144757 744469. 2576.02 13.20 0.6367 0.56685 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.31 0.10 0.30 -1 -1 0.31 0.0484561 0.0434722 58 89 0 0 89 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 7.92 vpr 55.93 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.43 819 12938 5293 7361 284 56.3 MiB 0.18 0.00 4.12326 -140.658 -4.12326 4.12326 1.10 0.00121508 0.00111393 0.0870922 0.0799583 46 2429 24 6.95648e+06 318465 828058. 2865.25 6.38 0.482164 0.432371 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0531962 0.0479402 83 34 90 30 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 9.21 vpr 56.12 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30548 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58012 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 17.8 MiB 0.96 852 12560 4728 5964 1868 56.7 MiB 0.19 0.00 4.1192 -140.393 -4.1192 4.1192 1.09 0.00143535 0.00131808 0.0995828 0.0915308 44 3193 49 6.95648e+06 332941 787024. 2723.27 3.68 0.482635 0.434046 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.34 0.15 0.23 -1 -1 0.34 0.0665179 0.0599931 95 64 87 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 11.17 vpr 55.81 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30236 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 17.8 MiB 0.96 739 10762 4429 5782 551 56.7 MiB 0.14 0.00 3.27396 -108.751 -3.27396 3.27396 1.09 0.00120667 0.00110443 0.0763097 0.0700094 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.84 0.293249 0.263612 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.35 0.12 0.37 -1 -1 0.35 0.0527813 0.0475011 78 61 58 30 58 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 10.82 vpr 56.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58016 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 17.9 MiB 0.64 907 15848 6161 8045 1642 56.7 MiB 0.20 0.00 3.79319 -139.401 -3.79319 3.79319 1.11 0.00133992 0.00122802 0.0969903 0.0888647 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.59 0.369418 0.332065 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.18 0.34 -1 -1 0.35 0.0573937 0.0517312 91 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.20 vpr 56.14 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58060 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 17.8 MiB 0.39 794 15215 5485 7366 2364 56.7 MiB 0.20 0.00 3.05335 -116.88 -3.05335 3.05335 1.10 0.00131332 0.00120301 0.0964503 0.0883512 38 2664 32 6.95648e+06 448746 678818. 2348.85 14.31 0.660166 0.591052 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0592563 0.0533417 90 65 63 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.40 vpr 55.59 MiB 0.08 6928 -1 -1 1 0.27 -1 -1 30108 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 17.3 MiB 3.33 577 8599 3570 4706 323 55.9 MiB 0.10 0.00 3.17976 -103.796 -3.17976 3.17976 1.09 0.000977423 0.000893891 0.0570353 0.0522728 34 1710 33 6.95648e+06 188184 618332. 2139.56 2.00 0.240217 0.214804 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0393341 0.0352805 56 34 58 29 29 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 8.19 vpr 55.81 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 17.4 MiB 0.89 584 9839 4132 5456 251 56.2 MiB 0.13 0.00 2.9814 -102.92 -2.9814 2.9814 1.11 0.00106727 0.000976717 0.0709454 0.0650059 42 1955 38 6.95648e+06 144757 744469. 2576.02 6.25 0.488447 0.434321 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0389154 0.0349064 58 82 0 0 82 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 9.02 vpr 55.84 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 0.53 743 12331 4128 5906 2297 56.5 MiB 0.15 0.00 4.24545 -140.476 -4.24545 4.24545 1.09 0.00121649 0.00111607 0.0771041 0.0708042 52 2318 48 6.95648e+06 405319 926341. 3205.33 8.18 0.622738 0.557407 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.37 0.13 0.38 -1 -1 0.37 0.0513301 0.0462667 86 34 93 31 31 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.01 vpr 55.67 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30212 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 17.3 MiB 1.23 494 12399 5297 6440 662 55.9 MiB 0.14 0.00 3.26295 -100.502 -3.26295 3.26295 1.08 0.000983031 0.000901478 0.0801406 0.07352 40 2019 35 6.95648e+06 202660 706193. 2443.58 3.74 0.322594 0.288738 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.041729 0.037302 59 56 29 29 52 26 + fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.82 vpr 55.50 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 17.2 MiB 0.87 698 10149 3910 5225 1014 55.8 MiB 0.14 0.00 3.05815 -118.306 -3.05815 3.05815 0.91 0.00105823 0.000970693 0.0726988 0.0667482 38 2191 39 6.95648e+06 144757 678818. 2348.85 11.66 0.504448 0.449993 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0447559 0.0401844 61 34 64 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.86 vpr 56.08 MiB 0.03 7016 -1 -1 1 0.03 -1 -1 30248 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 17.5 MiB 0.76 717 11607 3761 5813 2033 56.4 MiB 0.08 0.00 3.1175 -113.433 -3.1175 3.1175 0.74 0.000459665 0.000414213 0.0301033 0.0272558 44 1996 23 6.95648e+06 347416 787024. 2723.27 4.51 0.361136 0.321778 27778 195446 -1 1542 18 1591 2057 137516 32127 3.20637 3.20637 -119.126 -3.20637 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0465852 0.0420409 82 64 58 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 9.41 vpr 55.72 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30260 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 2.21 682 10459 3058 6921 480 55.9 MiB 0.13 0.00 3.13575 -104.344 -3.13575 3.13575 1.08 0.00101945 0.000934856 0.0711642 0.0652532 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.21 0.192026 0.171298 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0460906 0.0413256 57 55 31 31 53 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 9.00 vpr 56.17 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 17.6 MiB 1.78 710 12323 5117 6727 479 56.4 MiB 0.16 0.00 3.0155 -107.222 -3.0155 3.0155 1.10 0.00123051 0.00112843 0.0878957 0.0805773 48 2125 29 6.95648e+06 275038 865456. 2994.66 3.35 0.365621 0.328441 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0509388 0.045856 76 65 52 26 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.77 vpr 56.15 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30192 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 17.7 MiB 1.57 717 15298 5325 7460 2513 56.6 MiB 0.21 0.00 3.41641 -118.296 -3.41641 3.41641 1.09 0.00132789 0.00121668 0.104679 0.0958412 44 2443 41 6.95648e+06 361892 787024. 2723.27 6.51 0.563776 0.50584 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0557462 0.0502268 85 93 31 31 92 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 8.67 vpr 55.81 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30216 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 0.91 564 10149 3066 5426 1657 56.3 MiB 0.15 0.00 2.9023 -103.177 -2.9023 2.9023 1.10 0.00108818 0.000997353 0.0746445 0.0684847 44 2002 28 6.95648e+06 144757 787024. 2723.27 5.88 0.465708 0.415587 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.048056 0.0430679 61 61 32 32 60 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.62 vpr 55.68 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 17.5 MiB 0.76 611 8289 3413 4626 250 56.4 MiB 0.11 0.00 3.0515 -113.367 -3.0515 3.0515 0.83 0.00110348 0.00101041 0.062218 0.0570542 52 1978 31 6.95648e+06 144757 926341. 3205.33 6.89 0.451101 0.402349 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.37 0.11 0.40 -1 -1 0.37 0.046306 0.0415836 63 63 32 32 62 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 10.67 vpr 55.98 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30584 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 17.6 MiB 1.08 951 8283 1857 5834 592 56.5 MiB 0.13 0.00 3.78219 -143.123 -3.78219 3.78219 1.09 0.00129864 0.00119118 0.0549675 0.0504641 40 2477 25 6.95648e+06 419795 706193. 2443.58 4.82 0.341606 0.306189 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0690988 0.0621809 88 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.13 vpr 55.98 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 739 8336 2662 4258 1416 56.2 MiB 0.12 0.00 3.1065 -104.923 -3.1065 3.1065 1.08 0.00118927 0.00109002 0.0609616 0.0559909 38 2387 48 6.95648e+06 275038 678818. 2348.85 11.88 0.615736 0.549976 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0488341 0.0440831 77 62 56 29 58 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.51 vpr 56.27 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30672 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58152 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 18.0 MiB 1.90 819 16473 6066 7302 3105 56.8 MiB 0.21 0.00 3.81039 -138.347 -3.81039 3.81039 1.09 0.0014429 0.00132167 0.11745 0.107634 48 2605 47 6.95648e+06 419795 865456. 2994.66 7.28 0.487999 0.437685 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.36 0.21 0.34 -1 -1 0.36 0.0791086 0.0709628 89 127 0 0 128 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 8.21 vpr 55.51 MiB 0.04 6760 -1 -1 1 0.03 -1 -1 30128 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 17.1 MiB 1.25 588 9529 3953 5280 296 55.7 MiB 0.11 0.00 3.02776 -101.68 -3.02776 3.02776 1.09 0.000920775 0.000845309 0.0593258 0.0544919 38 2072 26 6.95648e+06 159232 678818. 2348.85 3.30 0.262979 0.235006 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0417613 0.0373795 58 4 85 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.96 vpr 56.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58044 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.09 751 13335 4844 6817 1674 56.7 MiB 0.18 0.00 3.74945 -128.098 -3.74945 3.74945 1.11 0.00131829 0.00120736 0.0956107 0.0875067 50 2285 32 6.95648e+06 332941 902133. 3121.57 4.64 0.399594 0.358957 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0570136 0.051306 81 92 28 28 92 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.38 vpr 55.97 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30076 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.5 MiB 2.95 613 11854 5235 6332 287 56.2 MiB 0.16 0.00 2.96105 -113.67 -2.96105 2.96105 1.09 0.00118941 0.0010895 0.0939151 0.086067 40 2066 46 6.95648e+06 144757 706193. 2443.58 13.27 0.665482 0.593469 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0568819 0.0510321 61 96 0 0 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 8.92 vpr 55.98 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 1.30 784 11983 4223 5778 1982 56.4 MiB 0.17 0.00 3.13882 -116.487 -3.13882 3.13882 1.12 0.0012929 0.00118454 0.0817383 0.0748738 48 2212 28 6.95648e+06 347416 865456. 2994.66 2.95 0.371644 0.333828 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0572075 0.0516248 84 65 61 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 12.83 vpr 56.21 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30624 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 18.4 MiB 1.60 961 18301 6218 9454 2629 56.7 MiB 0.26 0.00 4.52824 -160.34 -4.52824 4.52824 1.09 0.00157359 0.00144406 0.134368 0.123321 46 3150 41 6.95648e+06 477698 828058. 2865.25 6.37 0.44243 0.39771 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0660315 0.0596009 104 96 64 32 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 8.89 vpr 55.48 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30068 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 16.9 MiB 0.51 395 8267 2975 4043 1249 55.5 MiB 0.09 0.00 2.20646 -76.6701 -2.20646 2.20646 1.09 0.000820752 0.000750585 0.048116 0.0440817 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.95 0.251038 0.222604 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0354479 0.0315251 45 56 0 0 53 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 8.82 vpr 55.71 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30280 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 1.64 505 9994 3801 4923 1270 55.9 MiB 0.13 0.00 3.20866 -106.336 -3.20866 3.20866 1.10 0.00100772 0.000925015 0.0683057 0.0627268 40 1597 24 6.95648e+06 173708 706193. 2443.58 2.44 0.283172 0.253512 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0474906 0.0424626 58 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.09 vpr 55.71 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 17.4 MiB 0.28 594 9219 3126 4706 1387 56.0 MiB 0.13 0.00 2.93285 -111.664 -2.93285 2.93285 1.09 0.0010611 0.000972688 0.0677214 0.0621498 52 1888 25 6.95648e+06 144757 926341. 3205.33 6.74 0.420574 0.375381 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0501063 0.0450145 65 34 64 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.40 vpr 55.47 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30276 -1 -1 15 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 17.3 MiB 0.51 415 9310 3976 4598 736 55.8 MiB 0.10 0.00 3.24096 -89.6096 -3.24096 3.24096 1.09 0.000857735 0.000786565 0.0563127 0.0517129 40 1641 47 6.95648e+06 217135 706193. 2443.58 2.95 0.273201 0.243229 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.30 0.08 0.28 -1 -1 0.30 0.0356654 0.0318837 56 34 50 25 25 25 + fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 14.36 vpr 56.05 MiB 0.05 7136 -1 -1 1 0.05 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 17.8 MiB 1.31 849 10835 4559 6029 247 56.3 MiB 0.18 0.00 3.79924 -134.385 -3.79924 3.79924 1.18 0.00135307 0.00123981 0.0960042 0.0881023 48 3013 23 6.95648e+06 188184 865456. 2994.66 6.85 0.561782 0.503515 28354 207349 -1 2586 21 1951 3485 346305 68574 4.33406 4.33406 -153.19 -4.33406 0 0 1.05005e+06 3633.38 0.35 0.18 0.36 -1 -1 0.35 0.0626458 0.0561033 77 94 32 32 94 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 9.79 vpr 56.24 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30212 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 17.9 MiB 1.05 742 12512 4241 5927 2344 56.6 MiB 0.17 0.00 3.1116 -112.527 -3.1116 3.1116 1.09 0.0013258 0.00121388 0.0840633 0.0769803 40 2297 45 6.95648e+06 419795 706193. 2443.58 3.75 0.417533 0.374817 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.34 0.18 0.28 -1 -1 0.34 0.0737225 0.0662994 87 94 29 29 93 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.89 vpr 55.84 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 17.9 MiB 0.73 1062 15584 5717 7278 2589 56.5 MiB 0.23 0.00 4.46104 -158.567 -4.46104 4.46104 1.10 0.00137337 0.00125931 0.117262 0.107455 50 2979 31 6.99608e+06 323745 902133. 3121.57 3.60 0.431744 0.388178 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0412321 0.0367847 130 96 32 32 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 9.78 vpr 55.82 MiB 0.06 7264 -1 -1 1 0.03 -1 -1 30596 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 17.8 MiB 1.39 1018 13610 5732 7207 671 56.5 MiB 0.20 0.00 4.50158 -148.332 -4.50158 4.50158 1.08 0.00128938 0.00118143 0.102219 0.093741 54 3118 36 6.99608e+06 294314 949917. 3286.91 7.08 0.554204 0.496926 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.36 0.15 0.21 -1 -1 0.36 0.0527242 0.0476024 117 91 30 30 89 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 8.21 vpr 55.84 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30268 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 17.3 MiB 1.01 1040 13610 5701 7488 421 56.2 MiB 0.19 0.00 3.59279 -128.627 -3.59279 3.59279 1.14 0.0012387 0.00113636 0.0987332 0.0906087 46 2926 28 6.99608e+06 264882 828058. 2865.25 6.02 0.497392 0.446337 28066 200906 -1 2312 22 1747 2063 162737 34627 4.13566 4.13566 -142.913 -4.13566 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0542072 0.0488594 106 65 54 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 8.33 vpr 55.64 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 17.4 MiB 0.71 806 14444 6101 7602 741 56.0 MiB 0.20 0.00 3.79615 -125.537 -3.79615 3.79615 1.09 0.00114872 0.00105499 0.101306 0.0930462 40 2767 26 6.99608e+06 264882 706193. 2443.58 4.36 0.364531 0.328143 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0504752 0.0454288 89 34 87 29 29 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.67 vpr 55.84 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 17.7 MiB 0.61 871 12416 4669 6393 1354 56.5 MiB 0.19 0.00 4.27644 -154.345 -4.27644 4.27644 1.12 0.00126178 0.0011576 0.0966609 0.0887407 56 2565 50 6.99608e+06 220735 973134. 3367.25 4.24 0.433776 0.389246 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.38 0.16 0.42 -1 -1 0.38 0.0615922 0.0555374 93 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 10.99 vpr 56.23 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30200 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 17.7 MiB 0.61 1298 16069 5589 8587 1893 56.4 MiB 0.23 0.00 3.60699 -134.626 -3.60699 3.60699 1.11 0.00129625 0.00118866 0.102142 0.0936983 48 3162 26 6.99608e+06 441471 865456. 2994.66 7.35 0.590646 0.529705 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.34 0.16 0.34 -1 -1 0.34 0.0571622 0.0515038 117 64 63 32 63 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 9.94 vpr 55.44 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 17.0 MiB 1.27 620 8289 3348 4414 527 55.6 MiB 0.10 0.00 3.30124 -103.988 -3.30124 3.30124 1.09 0.000919508 0.000843935 0.0521139 0.0478907 44 2016 40 6.99608e+06 220735 787024. 2723.27 5.97 0.411271 0.365865 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0402531 0.0360636 68 34 54 27 27 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.75 vpr 55.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30056 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.0 MiB 0.48 708 9368 3795 5080 493 55.7 MiB 0.12 0.00 2.88485 -101.173 -2.88485 2.88485 1.09 0.00110469 0.00101433 0.0633039 0.0581989 46 2433 35 6.99608e+06 250167 828058. 2865.25 6.43 0.331858 0.297795 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0587588 0.0528301 77 4 115 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 9.94 vpr 55.56 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 17.4 MiB 2.64 865 11366 4429 5807 1130 56.0 MiB 0.15 0.00 3.3156 -116.953 -3.3156 3.3156 1.09 0.00107791 0.000986815 0.0767401 0.070279 44 2856 40 6.99608e+06 220735 787024. 2723.27 3.98 0.346343 0.309451 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0488772 0.0438366 96 85 0 0 84 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.78 vpr 55.75 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30188 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 0.71 668 10346 4043 5155 1148 55.9 MiB 0.09 0.00 3.58059 -133.895 -3.58059 3.58059 1.09 0.000390684 0.000352615 0.0267628 0.0242459 46 2113 26 6.99608e+06 191304 828058. 2865.25 6.47 0.412839 0.367365 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.047881 0.0430039 79 34 64 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 7.44 vpr 55.97 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 17.6 MiB 2.26 858 10835 4264 5113 1458 56.3 MiB 0.15 0.00 3.85932 -133.017 -3.85932 3.85932 1.11 0.00106629 0.000977287 0.0739569 0.0677759 44 2584 26 6.99608e+06 220735 787024. 2723.27 2.79 0.259398 0.232732 27778 195446 -1 2084 20 1700 2299 199472 41488 3.792 3.792 -141.165 -3.792 0 0 997811. 3452.63 0.34 0.11 0.32 -1 -1 0.34 0.042807 0.0384646 88 63 30 30 60 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.85 vpr 55.64 MiB 0.11 6808 -1 -1 1 0.58 -1 -1 30140 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 17.6 MiB 0.78 1078 12030 4277 6214 1539 56.4 MiB 0.16 0.00 3.0712 -121.401 -3.0712 3.0712 1.03 0.00107108 0.000980409 0.0809159 0.0741417 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.17 0.283352 0.252944 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0501693 0.0449205 91 65 25 25 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.38 vpr 55.75 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30476 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 17.5 MiB 0.93 883 7132 1837 4428 867 56.2 MiB 0.13 0.00 3.50359 -126.552 -3.50359 3.50359 0.97 0.00125687 0.00115256 0.0564183 0.0518336 50 2388 31 6.99608e+06 235451 902133. 3121.57 3.13 0.329659 0.296043 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.35 0.13 0.35 -1 -1 0.35 0.0588242 0.0529547 101 58 64 32 57 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 12.05 vpr 56.18 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30508 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1134 14123 4441 7724 1958 56.5 MiB 0.21 0.00 4.28564 -153.93 -4.28564 4.28564 1.08 0.00132139 0.00121219 0.107746 0.0989315 48 3127 38 6.99608e+06 279598 865456. 2994.66 20.10 0.772486 0.692246 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0641816 0.0578181 112 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.92 vpr 55.31 MiB 0.06 6980 -1 -1 1 0.03 -1 -1 30708 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 17.1 MiB 2.14 572 11293 4723 5996 574 55.7 MiB 0.13 0.00 2.92195 -96.6009 -2.92195 2.92195 1.09 0.000935853 0.000858475 0.069851 0.064104 40 1775 30 6.99608e+06 206020 706193. 2443.58 13.31 0.518779 0.460699 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0389886 0.0349457 67 29 58 29 24 24 + fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.84 vpr 56.14 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 17.9 MiB 2.08 1040 13324 4763 6768 1793 56.6 MiB 0.20 0.00 3.68279 -132.173 -3.68279 3.68279 1.11 0.0013045 0.00119517 0.104538 0.0958138 50 2876 28 6.99608e+06 235451 902133. 3121.57 19.10 0.604371 0.540796 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0630874 0.0567631 106 63 64 32 62 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.84 vpr 55.86 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1122 6731 1649 4394 688 56.2 MiB 0.11 0.00 3.32994 -131.897 -3.32994 3.32994 1.11 0.00126208 0.00115824 0.0518488 0.0476198 38 3062 22 6.99608e+06 250167 678818. 2348.85 4.98 0.322564 0.289342 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0504062 0.0454715 99 57 64 32 56 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 9.19 vpr 55.89 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30292 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 17.6 MiB 0.67 871 13856 5887 7726 243 56.4 MiB 0.20 0.00 3.39034 -128.572 -3.39034 3.39034 1.12 0.00111472 0.00102214 0.0972887 0.0892205 44 3195 31 6.99608e+06 206020 787024. 2723.27 3.03 0.34649 0.310362 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0446146 0.0401006 91 65 29 29 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.80 vpr 55.17 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30172 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 16.6 MiB 2.07 536 9041 3932 4796 313 55.2 MiB 0.10 0.00 2.34646 -88.6787 -2.34646 2.34646 1.10 0.000790368 0.000724261 0.049027 0.0449334 36 1652 38 6.99608e+06 161872 648988. 2245.63 2.63 0.231471 0.205412 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.30 0.07 0.25 -1 -1 0.30 0.0319045 0.0285327 56 34 24 24 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.12 vpr 55.82 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 1018 11532 3380 6660 1492 56.2 MiB 0.16 0.00 3.58639 -133.629 -3.58639 3.58639 1.11 0.00108586 0.000994843 0.0773672 0.0708984 40 2527 22 6.99608e+06 220735 706193. 2443.58 3.18 0.309191 0.276912 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.32 0.14 0.30 -1 -1 0.32 0.0520569 0.0467271 91 64 31 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.33 vpr 55.84 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 17.5 MiB 0.51 1089 12759 4547 6573 1639 56.4 MiB 0.17 0.00 4.04748 -146.851 -4.04748 4.04748 1.11 0.00122108 0.00112036 0.0862787 0.0793035 46 2738 33 6.99608e+06 338461 828058. 2865.25 6.30 0.498576 0.44751 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.33 0.13 0.34 -1 -1 0.33 0.0536176 0.0483271 97 34 91 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 12.98 vpr 55.88 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30636 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 18.0 MiB 1.30 1280 15206 4884 7262 3060 56.5 MiB 0.23 0.00 4.01908 -141.768 -4.01908 4.01908 1.09 0.00143224 0.00130991 0.119131 0.109406 46 3184 26 6.99608e+06 323745 828058. 2865.25 6.35 0.603976 0.541522 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.35 0.14 0.33 -1 -1 0.35 0.0620097 0.0557058 138 124 0 0 125 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.85 vpr 55.32 MiB 0.03 6776 -1 -1 1 0.04 -1 -1 30572 -1 -1 15 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 16.8 MiB 0.72 401 7217 2934 3827 456 55.4 MiB 0.07 0.00 2.7074 -79.2163 -2.7074 2.7074 1.09 0.000686446 0.000627258 0.0346819 0.0317254 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.72 0.166708 0.147935 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.28 0.06 0.25 -1 -1 0.28 0.023085 0.0206384 52 30 26 26 22 22 + fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.98 vpr 55.57 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 17.1 MiB 0.81 698 9036 3669 4978 389 55.8 MiB 0.13 0.00 3.97238 -133.231 -3.97238 3.97238 1.10 0.00117027 0.00107565 0.0687781 0.0632065 54 2240 31 6.99608e+06 176588 949917. 3286.91 3.56 0.333423 0.299671 29506 232905 -1 1677 21 1598 2534 192423 45363 3.87582 3.87582 -138.421 -3.87582 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0484017 0.0436273 75 3 122 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 6.31 vpr 54.91 MiB 0.04 6732 -1 -1 1 0.03 -1 -1 30376 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.8 MiB 0.23 736 9906 3603 5031 1272 55.3 MiB 0.10 0.00 2.06111 -84.6894 -2.06111 2.06111 1.09 0.000723153 0.000661638 0.050482 0.0462583 34 1682 40 6.99608e+06 117725 618332. 2139.56 2.10 0.222681 0.198317 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.27 0.08 0.26 -1 -1 0.27 0.0325348 0.0290661 44 3 53 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.47 vpr 55.55 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 17.4 MiB 1.25 836 12681 5269 6945 467 56.4 MiB 0.20 0.00 3.87925 -141.78 -3.87925 3.87925 1.08 0.00125456 0.00115165 0.103862 0.0955911 44 3391 42 6.99608e+06 250167 787024. 2723.27 3.48 0.36852 0.332156 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.33 0.15 0.34 -1 -1 0.33 0.0566662 0.0511474 95 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.62 vpr 55.82 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30104 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.4 MiB 0.30 1064 14375 4737 7721 1917 56.2 MiB 0.17 0.00 2.93295 -116.62 -2.93295 2.93295 1.11 0.00116536 0.00106972 0.084381 0.0775432 40 2476 21 6.99608e+06 412039 706193. 2443.58 6.32 0.580802 0.520929 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0566841 0.0515721 87 3 124 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 11.97 vpr 56.00 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30592 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58020 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1077 13105 3562 8179 1364 56.7 MiB 0.20 0.00 3.82425 -139.818 -3.82425 3.82425 1.08 0.00131552 0.00120708 0.0966411 0.0887209 46 3235 48 6.99608e+06 309029 828058. 2865.25 7.05 0.599409 0.537701 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0517736 0.0467441 115 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.38 vpr 55.73 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30164 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 17.2 MiB 1.23 701 9397 3869 5271 257 55.9 MiB 0.13 0.00 2.9841 -107.493 -2.9841 2.9841 1.11 0.00100161 0.000918746 0.0628261 0.057695 40 2056 26 6.99608e+06 161872 706193. 2443.58 5.37 0.390453 0.348049 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0420966 0.0377777 72 34 54 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 10.09 vpr 55.45 MiB 0.05 6872 -1 -1 1 0.03 -1 -1 30236 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 17.3 MiB 7.13 650 7975 2399 4401 1175 56.0 MiB 0.12 0.00 3.55679 -118.022 -3.55679 3.55679 1.12 0.0010031 0.000915706 0.0591108 0.0543738 46 2056 46 6.99608e+06 191304 828058. 2865.25 4.99 0.311063 0.278063 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0439002 0.0393745 73 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.89 vpr 55.70 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30312 -1 -1 15 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 16.8 MiB 1.12 739 7975 3247 4371 357 55.5 MiB 0.10 0.00 3.69125 -116.127 -3.69125 3.69125 1.09 0.000948807 0.000870271 0.0507994 0.0465874 38 2264 33 6.99608e+06 220735 678818. 2348.85 5.12 0.336816 0.299227 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.038303 0.0343625 72 34 56 28 28 28 + fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.70 vpr 55.54 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30404 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.9 MiB 0.25 696 7204 2957 4121 126 55.6 MiB 0.10 0.00 2.86245 -113.51 -2.86245 2.86245 1.09 0.00100592 0.000923228 0.049861 0.0458494 42 2358 35 6.99608e+06 147157 744469. 2576.02 5.71 0.396965 0.354561 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.33 0.11 0.30 -1 -1 0.33 0.0389132 0.0350312 64 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.52 vpr 55.63 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 17.3 MiB 0.71 709 9540 3934 5278 328 55.8 MiB 0.12 0.00 2.94395 -107.519 -2.94395 2.94395 1.09 0.00102557 0.000939593 0.0619531 0.0568492 46 2091 24 6.99608e+06 220735 828058. 2865.25 3.55 0.251558 0.224996 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.35 0.09 0.33 -1 -1 0.35 0.0414756 0.0373035 77 34 61 31 31 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 9.60 vpr 55.51 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30148 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 17.3 MiB 2.91 930 10835 4554 5858 423 56.2 MiB 0.14 0.00 2.88685 -103.645 -2.88685 2.88685 1.09 0.00102129 0.000935776 0.0712239 0.0652874 36 2556 47 6.99608e+06 235451 648988. 2245.63 2.94 0.282334 0.252721 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0415524 0.0373117 86 61 29 29 57 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.90 vpr 55.91 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30444 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 17.8 MiB 1.05 1138 15273 6065 7495 1713 56.5 MiB 0.26 0.00 3.90815 -143.373 -3.90815 3.90815 1.10 0.00141808 0.00130268 0.132468 0.121854 46 3798 44 6.99608e+06 294314 828058. 2865.25 32.17 0.806265 0.724084 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0622822 0.0562618 106 29 128 32 27 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 10.58 vpr 56.20 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 1.05 999 10762 3395 5388 1979 56.3 MiB 0.17 0.00 4.20458 -152.083 -4.20458 4.20458 1.13 0.00130309 0.00119431 0.0830164 0.0761784 54 3189 47 6.99608e+06 264882 949917. 3286.91 4.68 0.406678 0.36491 29506 232905 -1 2202 20 2117 2841 248515 55676 3.94235 3.94235 -153.962 -3.94235 0 0 1.17392e+06 4061.99 0.37 0.14 0.39 -1 -1 0.37 0.052728 0.0476284 110 65 62 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.40 vpr 55.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30468 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 0.85 1070 8867 2185 5933 749 56.1 MiB 0.12 0.00 3.49385 -125.494 -3.49385 3.49385 1.08 0.00110703 0.00101456 0.0618238 0.0566638 38 2592 37 6.99608e+06 235451 678818. 2348.85 3.62 0.322592 0.288187 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.30 0.11 0.27 -1 -1 0.30 0.0498874 0.0448488 99 90 0 0 89 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 9.72 vpr 56.02 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 17.8 MiB 0.88 1182 9006 2249 6265 492 56.4 MiB 0.14 0.00 3.66135 -134.693 -3.66135 3.66135 1.10 0.00126327 0.00115836 0.0685946 0.0629774 40 2955 30 6.99608e+06 264882 706193. 2443.58 3.12 0.357525 0.321082 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.051408 0.0463459 105 64 60 30 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 10.99 vpr 56.19 MiB 0.06 7320 -1 -1 1 0.03 -1 -1 30456 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58000 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 18.3 MiB 1.14 1281 17663 7641 9474 548 56.6 MiB 0.26 0.00 4.62587 -160.146 -4.62587 4.62587 1.11 0.00140858 0.00129033 0.135493 0.124153 48 3305 25 6.99608e+06 338461 865456. 2994.66 6.76 0.624617 0.559363 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0655247 0.0588948 138 124 0 0 124 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 11.57 vpr 56.24 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 17.5 MiB 3.19 1159 10762 4075 5172 1515 56.2 MiB 0.19 0.00 4.92973 -159.817 -4.92973 4.92973 1.09 0.00131395 0.00120503 0.0908716 0.0836392 44 3431 27 6.99608e+06 279598 787024. 2723.27 3.15 0.321781 0.289974 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0599656 0.0540845 117 90 31 31 89 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.75 vpr 56.12 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30352 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57920 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 17.9 MiB 2.16 1059 13763 5785 7510 468 56.6 MiB 0.20 0.00 3.58185 -130.714 -3.58185 3.58185 1.10 0.00125597 0.0011451 0.0909089 0.0831004 46 2920 39 6.99608e+06 294314 828058. 2865.25 4.30 0.399842 0.358923 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0559714 0.0504833 107 64 60 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 9.59 vpr 55.60 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.8 MiB 0.92 1271 6556 1686 3783 1087 56.5 MiB 0.11 0.00 3.81927 -146.587 -3.81927 3.81927 1.08 0.00130702 0.00120018 0.0524386 0.0482024 40 3290 49 6.99608e+06 250167 706193. 2443.58 5.70 0.388172 0.347709 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.30 0.22 0.28 -1 -1 0.30 0.06687 0.0601346 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.15 vpr 56.40 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58052 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 18.2 MiB 1.93 1530 16529 5778 8459 2292 56.7 MiB 0.28 0.00 4.81093 -174.639 -4.81093 4.81093 1.08 0.00157935 0.00144733 0.142753 0.130935 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.72 0.459862 0.414571 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.33 0.21 0.33 -1 -1 0.33 0.0772453 0.069724 139 96 62 32 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.49 vpr 55.42 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 0.87 802 9996 3771 4383 1842 55.6 MiB 0.13 0.00 3.1395 -118.304 -3.1395 3.1395 1.09 0.00102956 0.000944636 0.0674647 0.0619769 44 2051 29 6.99608e+06 191304 787024. 2723.27 4.89 0.401166 0.358123 27778 195446 -1 1628 20 1398 1706 120876 25222 3.03987 3.03987 -121.096 -3.03987 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0417615 0.0375525 75 34 62 31 31 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 8.61 vpr 55.93 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30316 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 17.5 MiB 0.69 1237 14606 4845 8003 1758 56.2 MiB 0.23 0.00 4.54014 -162.571 -4.54014 4.54014 1.13 0.0012797 0.00117452 0.11096 0.101883 44 3549 35 6.99608e+06 264882 787024. 2723.27 5.20 0.415929 0.374329 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0582224 0.0525379 106 64 62 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.22 vpr 55.81 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30712 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 17.6 MiB 1.17 1279 13077 3808 7089 2180 56.4 MiB 0.20 0.00 3.54953 -133.609 -3.54953 3.54953 1.10 0.00127799 0.00117197 0.0958621 0.0880649 46 3226 21 6.99608e+06 294314 828058. 2865.25 6.15 0.473528 0.424907 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.051663 0.0466231 108 63 62 32 62 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 9.38 vpr 55.78 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.82 797 9368 3826 5299 243 56.0 MiB 0.15 0.00 3.54729 -133.832 -3.54729 3.54729 1.09 0.00120343 0.0010955 0.0718829 0.0660808 46 2734 24 6.99608e+06 191304 828058. 2865.25 6.55 0.467082 0.418585 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.34 0.11 0.33 -1 -1 0.34 0.0434728 0.0391414 77 3 128 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 8.83 vpr 56.04 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30332 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 17.8 MiB 1.28 1139 10883 2905 7208 770 56.5 MiB 0.17 0.00 3.32994 -127.882 -3.32994 3.32994 1.09 0.0013209 0.00120489 0.084156 0.0771482 46 3143 36 6.99608e+06 279598 828058. 2865.25 6.11 0.505078 0.451281 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0513786 0.0460928 120 96 25 25 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.76 vpr 55.85 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 17.5 MiB 0.79 1139 12528 3436 7246 1846 56.2 MiB 0.09 0.00 3.59669 -136.453 -3.59669 3.59669 0.74 0.000478201 0.00043323 0.0350698 0.0317967 40 3651 35 6.99608e+06 294314 706193. 2443.58 5.81 0.341654 0.305533 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0566059 0.0510656 106 61 64 32 60 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 12.42 vpr 56.17 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58008 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1314 14431 4781 7561 2089 56.6 MiB 0.22 0.00 3.61639 -141.899 -3.61639 3.61639 1.09 0.00132587 0.00121602 0.110256 0.101117 40 3393 43 6.99608e+06 250167 706193. 2443.58 20.56 0.740471 0.663852 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0597878 0.0539029 108 65 63 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.76 vpr 55.55 MiB 0.06 6996 -1 -1 1 0.03 -1 -1 30564 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 17.5 MiB 0.97 813 11432 3614 6147 1671 56.4 MiB 0.17 0.00 3.93015 -141.517 -3.93015 3.93015 1.09 0.00124684 0.00114438 0.086312 0.0793313 48 3063 38 6.99608e+06 235451 865456. 2994.66 5.09 0.385488 0.346589 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.34 0.17 0.35 -1 -1 0.34 0.0587326 0.0529157 94 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.72 vpr 55.68 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30672 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.94 930 14500 5516 6956 2028 56.4 MiB 0.21 0.00 3.81585 -138.808 -3.81585 3.81585 1.08 0.00130401 0.00119614 0.110078 0.101014 44 3517 47 6.99608e+06 264882 787024. 2723.27 4.33 0.440197 0.395985 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.33 0.14 0.33 -1 -1 0.33 0.0575743 0.0519804 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 11.05 vpr 56.06 MiB 0.06 7296 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 18.1 MiB 1.44 1399 14035 5589 6713 1733 56.4 MiB 0.22 0.00 3.97768 -141.845 -3.97768 3.97768 1.11 0.00138125 0.00126713 0.109254 0.100099 44 3778 32 6.99608e+06 323745 787024. 2723.27 3.87 0.406637 0.364578 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0559858 0.0504197 132 122 0 0 122 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 10.01 vpr 56.21 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.9 MiB 1.13 1318 15273 5215 8174 1884 56.4 MiB 0.24 0.00 3.73195 -141.182 -3.73195 3.73195 1.09 0.00138991 0.00127386 0.119416 0.109421 40 3892 28 6.99608e+06 294314 706193. 2443.58 6.08 0.428633 0.385263 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.30 0.26 0.29 -1 -1 0.30 0.0798056 0.0716808 126 94 32 32 94 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.93 vpr 55.21 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30700 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 17.3 MiB 0.57 921 12528 4814 6023 1691 56.0 MiB 0.17 0.00 2.98795 -120.412 -2.98795 2.98795 1.12 0.00103956 0.000953572 0.0818745 0.0751365 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.97 0.271892 0.244388 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0467548 0.0420776 80 34 63 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 8.59 vpr 55.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 17.8 MiB 0.87 1095 11776 4100 5415 2261 56.4 MiB 0.17 0.00 3.80663 -140.003 -3.80663 3.80663 1.09 0.00116145 0.00106237 0.0829914 0.0760441 46 2887 24 6.99608e+06 235451 828058. 2865.25 6.47 0.461377 0.412195 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.048829 0.0439049 108 94 0 0 94 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.37 vpr 56.22 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30868 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 18.2 MiB 0.89 1231 15273 6501 8321 451 56.6 MiB 0.25 0.00 4.57343 -162.846 -4.57343 4.57343 1.08 0.00151537 0.00139149 0.130643 0.120088 54 3744 47 6.99608e+06 294314 949917. 3286.91 7.99 0.755733 0.678759 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.37 0.21 0.41 -1 -1 0.37 0.0764211 0.0689724 126 65 96 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 9.70 vpr 56.07 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.64 1100 10916 2969 6188 1759 56.4 MiB 0.17 0.00 3.58059 -138.842 -3.58059 3.58059 1.14 0.00123678 0.00113522 0.0824364 0.0757937 40 2715 36 6.99608e+06 235451 706193. 2443.58 3.60 0.371054 0.33376 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0559143 0.050395 93 34 92 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 9.60 vpr 55.47 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 17.5 MiB 0.75 716 11804 3687 5992 2125 55.9 MiB 0.14 0.00 3.75245 -123.293 -3.75245 3.75245 1.08 0.00100318 0.000919479 0.0655237 0.06013 44 2072 24 6.99608e+06 353176 787024. 2723.27 5.38 0.384206 0.343123 27778 195446 -1 1643 19 1404 2036 156733 34754 3.38681 3.38681 -125.581 -3.38681 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0391843 0.0352479 80 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 13.62 vpr 56.39 MiB 0.03 7460 -1 -1 1 0.04 -1 -1 30916 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58256 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 18.6 MiB 0.92 1504 15883 5797 7858 2228 56.9 MiB 0.28 0.00 5.34997 -188.353 -5.34997 5.34997 1.11 0.00162711 0.00149377 0.137737 0.126475 48 4489 33 6.99608e+06 353176 865456. 2994.66 4.57 0.519448 0.468031 28354 207349 -1 3556 27 4154 5142 574739 139988 6.44269 6.44269 -224.607 -6.44269 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0844685 0.07608 159 127 32 32 128 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 9.25 vpr 55.96 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30440 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.72 938 15044 6550 8115 379 56.4 MiB 0.23 0.00 4.27644 -157.663 -4.27644 4.27644 0.81 0.00125476 0.00115106 0.122022 0.111893 48 2674 27 6.99608e+06 235451 865456. 2994.66 6.58 0.555158 0.498799 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0545958 0.0492722 92 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.28 vpr 55.27 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 660 12763 5275 7138 350 55.8 MiB 0.15 0.00 2.98775 -114.509 -2.98775 2.98775 1.09 0.00100004 0.000917958 0.0681153 0.0625514 46 2129 35 6.99608e+06 353176 828058. 2865.25 18.65 0.597141 0.532343 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0468107 0.0419938 70 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.67 vpr 55.95 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58024 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 17.7 MiB 0.74 1143 13432 5563 7207 662 56.7 MiB 0.22 0.00 4.46895 -161.038 -4.46895 4.46895 1.10 0.0014555 0.00133685 0.114117 0.104925 46 4011 41 6.99608e+06 264882 828058. 2865.25 7.68 0.46624 0.419987 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0639506 0.0577985 112 34 128 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 8.11 vpr 55.32 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30296 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.9 MiB 0.35 625 10614 4416 5947 251 55.6 MiB 0.14 0.00 2.85145 -111.794 -2.85145 2.85145 1.13 0.00100256 0.000920622 0.0713912 0.0655599 40 2195 42 6.99608e+06 147157 706193. 2443.58 3.76 0.316194 0.283253 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.32 0.12 0.29 -1 -1 0.32 0.0447992 0.0402007 62 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 9.23 vpr 55.49 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30056 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 17.1 MiB 0.72 755 9857 4076 5498 283 55.6 MiB 0.13 0.00 3.30794 -118.735 -3.30794 3.30794 1.11 0.00100483 0.000921768 0.0651403 0.0598114 44 2377 21 6.99608e+06 220735 787024. 2723.27 2.97 0.281302 0.252129 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0435416 0.0390516 74 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 12.15 vpr 56.07 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30328 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57860 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 17.8 MiB 1.71 1003 15481 6003 6865 2613 56.5 MiB 0.22 0.00 3.85703 -126.704 -3.85703 3.85703 1.13 0.00124658 0.00114234 0.113877 0.104432 46 3294 37 6.99608e+06 294314 828058. 2865.25 4.86 0.415269 0.372947 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0584932 0.0525913 113 88 29 29 85 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.53 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 1.02 1068 14144 5407 6800 1937 56.5 MiB 0.21 0.00 4.29664 -157.784 -4.29664 4.29664 1.09 0.0013267 0.00121802 0.108824 0.099966 48 2789 28 6.99608e+06 264882 865456. 2994.66 6.66 0.552943 0.496249 28354 207349 -1 2360 21 2516 3352 291577 61875 4.53561 4.53561 -172.239 -4.53561 0 0 1.05005e+06 3633.38 0.34 0.15 0.34 -1 -1 0.34 0.0563529 0.0509667 109 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 11.99 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30600 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 0.83 1151 6846 1472 4993 381 56.5 MiB 0.12 0.00 4.30354 -157.84 -4.30354 4.30354 1.08 0.00131959 0.00121202 0.0546038 0.0502083 44 3666 26 6.99608e+06 264882 787024. 2723.27 3.23 0.283229 0.254667 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.34 0.17 0.32 -1 -1 0.34 0.0569675 0.0513519 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.03 vpr 55.67 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30524 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 17.6 MiB 0.67 792 12585 5306 6906 373 56.5 MiB 0.17 0.00 3.44424 -128.433 -3.44424 3.44424 1.08 0.00111815 0.00102471 0.0868191 0.0795222 46 2594 31 6.99608e+06 220735 828058. 2865.25 4.73 0.346702 0.310678 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.36 0.13 0.33 -1 -1 0.36 0.0501909 0.0450386 92 65 32 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.85 vpr 55.74 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30456 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 17.5 MiB 2.35 885 11260 4668 6241 351 56.3 MiB 0.15 0.00 3.46644 -123.995 -3.46644 3.46644 1.09 0.00111357 0.00101939 0.0763824 0.0699881 44 3163 36 6.99608e+06 250167 787024. 2723.27 19.18 0.582993 0.519382 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.34 0.12 0.32 -1 -1 0.34 0.0452512 0.0406548 102 90 0 0 89 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.96 vpr 55.78 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 17.6 MiB 1.22 904 12506 5230 6653 623 56.6 MiB 0.19 0.00 3.42074 -117.96 -3.42074 3.42074 1.08 0.00121419 0.00111346 0.100462 0.092175 44 3198 37 6.99608e+06 279598 787024. 2723.27 4.39 0.389974 0.350521 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0527695 0.047621 101 60 60 30 57 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.13 vpr 55.68 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 17.2 MiB 0.67 824 9872 4064 5274 534 55.8 MiB 0.15 0.00 3.73195 -121.956 -3.73195 3.73195 1.08 0.0011094 0.00101838 0.076309 0.0701894 44 2539 27 6.99608e+06 264882 787024. 2723.27 6.18 0.503467 0.450379 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0518272 0.0465847 87 34 84 28 28 28 + fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 9.61 vpr 55.75 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 17.3 MiB 1.77 814 10672 3702 5165 1805 55.8 MiB 0.14 0.00 4.51934 -148.35 -4.51934 4.51934 1.09 0.00106162 0.000972754 0.0726021 0.066594 44 2874 44 6.99608e+06 220735 787024. 2723.27 4.09 0.338652 0.302641 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.044399 0.0398231 88 63 30 30 60 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 10.34 vpr 56.03 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1000 12585 4720 5647 2218 56.5 MiB 0.18 0.00 3.77345 -134.122 -3.77345 3.77345 1.08 0.00114121 0.00104451 0.0885777 0.0810978 46 3110 45 6.99608e+06 220735 828058. 2865.25 4.48 0.373038 0.333892 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0497567 0.0446605 104 91 0 0 91 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.86 vpr 55.84 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.6 MiB 0.18 808 15688 5217 8110 2361 56.2 MiB 0.21 0.00 3.76925 -134.079 -3.76925 3.76925 1.12 0.00116532 0.00107085 0.0965693 0.0887259 46 3039 46 6.99608e+06 367892 828058. 2865.25 6.02 0.40061 0.360064 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.29 0.07 0.17 -1 -1 0.29 0.0212761 0.0190044 86 4 124 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.46 vpr 56.08 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30728 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57972 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 17.8 MiB 0.69 1209 11281 3120 7720 441 56.6 MiB 0.18 0.00 4.19534 -154.628 -4.19534 4.19534 1.09 0.00131433 0.00120653 0.0884265 0.0811596 44 3513 23 6.99608e+06 250167 787024. 2723.27 3.90 0.353964 0.318661 27778 195446 -1 2754 24 2419 3189 274672 55034 4.82351 4.82351 -173.98 -4.82351 0 0 997811. 3452.63 0.34 0.16 0.32 -1 -1 0.34 0.0613436 0.0553035 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 12.90 vpr 56.00 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 17.8 MiB 0.65 1142 12364 5175 6807 382 56.7 MiB 0.19 0.00 5.12678 -171.348 -5.12678 5.12678 1.10 0.00131725 0.00120362 0.0950269 0.0871336 54 3283 29 6.99608e+06 264882 949917. 3286.91 5.41 0.473326 0.424988 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.38 0.15 0.42 -1 -1 0.38 0.0539089 0.0487243 108 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.81 vpr 56.07 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 17.8 MiB 0.68 1089 13788 4649 7550 1589 56.6 MiB 0.22 0.00 4.15408 -148.064 -4.15408 4.15408 1.11 0.00129245 0.00118469 0.104224 0.0955964 44 3953 47 6.99608e+06 264882 787024. 2723.27 30.00 0.71597 0.640939 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0545575 0.049231 107 65 60 30 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.42 vpr 55.51 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 17.3 MiB 0.77 692 12241 5462 6300 479 55.8 MiB 0.15 0.00 3.58339 -124.571 -3.58339 3.58339 1.09 0.00101181 0.000928751 0.0811137 0.0744342 48 2391 37 6.99608e+06 191304 865456. 2994.66 6.51 0.444323 0.396368 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.39 0.12 0.34 -1 -1 0.39 0.0405935 0.0364534 76 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.94 vpr 55.98 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 17.7 MiB 2.28 1070 13152 5486 7187 479 56.4 MiB 0.20 0.00 4.68713 -157.481 -4.68713 4.68713 1.11 0.00124908 0.00114657 0.0994205 0.0912977 46 3476 35 6.99608e+06 264882 828058. 2865.25 4.68 0.396501 0.356379 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0504418 0.0455439 105 63 60 30 60 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 10.06 vpr 55.89 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30916 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57876 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1372 11615 4190 5568 1857 56.5 MiB 0.18 0.00 4.17744 -155.5 -4.17744 4.17744 1.10 0.00143088 0.00131256 0.0915556 0.0839811 46 3391 25 6.99608e+06 323745 828058. 2865.25 4.33 0.406355 0.364614 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.33 0.14 0.36 -1 -1 0.33 0.0665943 0.0598407 139 127 0 0 128 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 12.96 vpr 55.93 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 17.7 MiB 1.44 1101 12733 5285 6817 631 56.3 MiB 0.18 0.00 4.35899 -150.667 -4.35899 4.35899 1.10 0.00132659 0.00121539 0.0948747 0.0869667 54 2946 36 6.99608e+06 323745 949917. 3286.91 7.38 0.637945 0.571876 29506 232905 -1 2087 21 2106 2410 180381 43349 4.43961 4.43961 -155.342 -4.43961 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0560547 0.0505797 125 94 31 31 93 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 12.87 vpr 56.23 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 17.8 MiB 2.64 1072 15456 6595 7994 867 56.5 MiB 0.22 0.00 4.1343 -135.415 -4.1343 4.1343 1.09 0.00126838 0.00116219 0.111079 0.101794 48 3698 50 6.99608e+06 323745 865456. 2994.66 7.07 0.447566 0.401982 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.37 0.19 0.34 -1 -1 0.37 0.0559297 0.0503455 114 92 26 26 90 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.22 vpr 55.96 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30624 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.8 MiB 1.02 1174 14500 5592 7226 1682 56.5 MiB 0.22 0.00 4.33244 -160.384 -4.33244 4.33244 1.10 0.00133302 0.00122438 0.111233 0.102043 46 3851 34 6.99608e+06 264882 828058. 2865.25 3.39 0.363667 0.327685 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.35 0.18 0.33 -1 -1 0.35 0.0576232 0.0520209 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.64 vpr 56.28 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30360 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57940 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 17.8 MiB 1.69 1070 11106 4662 5983 461 56.6 MiB 0.17 0.00 3.53179 -119.754 -3.53179 3.53179 1.09 0.00122326 0.00112113 0.0816893 0.0749196 38 3405 45 6.99608e+06 294314 678818. 2348.85 8.11 0.39088 0.350384 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.31 0.16 0.27 -1 -1 0.31 0.0561256 0.0505238 112 88 26 26 85 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.77 vpr 55.43 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 17.0 MiB 0.64 592 9684 3186 4658 1840 55.6 MiB 0.12 0.00 2.86245 -110.719 -2.86245 2.86245 1.08 0.00100016 0.000917325 0.0650541 0.0597612 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.80 0.288409 0.258378 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0450758 0.0404158 62 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 10.75 vpr 56.19 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.69 999 9872 3990 5501 381 56.5 MiB 0.15 0.00 4.9054 -173.166 -4.9054 4.9054 1.09 0.00131522 0.00120579 0.0767015 0.0704061 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 3.55 0.356097 0.319714 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.42 0.15 0.46 -1 -1 0.42 0.0622881 0.0561889 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 11.85 vpr 56.06 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 17.6 MiB 0.90 1203 7431 1958 4126 1347 56.4 MiB 0.12 0.00 4.63877 -167.295 -4.63877 4.63877 1.09 0.00131692 0.00120715 0.059911 0.0550389 44 3706 30 6.99608e+06 250167 787024. 2723.27 3.70 0.31488 0.283153 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.34 0.17 0.25 -1 -1 0.34 0.0600825 0.0541473 111 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.44 vpr 55.61 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 17.4 MiB 1.92 766 11324 4293 5664 1367 55.9 MiB 0.15 0.00 3.24452 -112.954 -3.24452 3.24452 1.09 0.00104213 0.000955185 0.0759857 0.0697207 52 2311 46 6.99608e+06 191304 926341. 3205.33 3.14 0.294294 0.263557 29218 227130 -1 1681 29 1656 1972 307039 128679 3.27646 3.27646 -116.799 -3.27646 0 0 1.14541e+06 3963.36 0.40 0.18 0.35 -1 -1 0.40 0.0562104 0.0502841 85 55 32 32 54 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.33 vpr 55.43 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30380 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 0.27 592 7514 3020 4270 224 55.4 MiB 0.10 0.00 3.0031 -111.146 -3.0031 3.0031 1.09 0.000972276 0.000891852 0.0502228 0.0461683 44 2109 28 6.99608e+06 161872 787024. 2723.27 5.59 0.380504 0.338464 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0440716 0.0395247 63 4 93 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.97 vpr 55.77 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 17.5 MiB 0.92 1014 12331 5131 6918 282 56.3 MiB 0.17 0.00 4.03648 -138.539 -4.03648 4.03648 1.09 0.00124537 0.00114292 0.0910826 0.0835815 40 2840 45 6.99608e+06 250167 706193. 2443.58 16.30 0.670272 0.599559 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.30 0.23 0.29 -1 -1 0.30 0.0728882 0.0655127 102 59 60 32 58 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 10.26 vpr 56.09 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 17.5 MiB 1.35 1077 13043 5447 7262 334 56.3 MiB 0.19 0.00 4.38874 -150.527 -4.38874 4.38874 1.08 0.00128167 0.00117433 0.096665 0.0885951 48 2878 41 6.99608e+06 279598 865456. 2994.66 3.85 0.411309 0.368999 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.39 0.22 0.36 -1 -1 0.39 0.0733195 0.0658584 115 88 28 28 88 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.71 vpr 55.93 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30520 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57712 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.7 MiB 0.41 981 8047 1739 5489 819 56.4 MiB 0.13 0.00 4.28063 -149.977 -4.28063 4.28063 1.09 0.00136992 0.00125958 0.057814 0.0531722 48 3128 28 6.99608e+06 397324 865456. 2994.66 6.93 0.523267 0.470595 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.36 0.18 0.34 -1 -1 0.36 0.0600127 0.0539861 100 3 156 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.43 vpr 55.66 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 17.6 MiB 0.98 884 14431 6074 7798 559 56.5 MiB 0.20 0.00 3.66815 -119.86 -3.66815 3.66815 1.09 0.00120224 0.00110295 0.102723 0.094263 40 3422 29 6.99608e+06 279598 706193. 2443.58 19.39 0.675763 0.604857 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0529506 0.0477304 101 59 60 30 56 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 8.93 vpr 55.25 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30596 -1 -1 16 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 17.0 MiB 1.25 589 11925 5033 6263 629 55.6 MiB 0.15 0.00 3.68305 -110.555 -3.68305 3.68305 1.09 0.000895784 0.000827925 0.0753146 0.0689761 40 1692 28 6.99608e+06 235451 706193. 2443.58 5.49 0.387982 0.345639 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0354722 0.0317432 67 34 54 27 27 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 13.92 vpr 56.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 18.1 MiB 0.85 1512 15151 5383 7381 2387 56.6 MiB 0.27 0.00 4.46404 -157.207 -4.46404 4.46404 1.09 0.00156463 0.0014367 0.132123 0.121326 54 3932 27 6.99608e+06 309029 949917. 3286.91 4.53 0.480224 0.432708 29506 232905 -1 3228 23 2653 3708 434053 80854 4.60891 4.60891 -163.196 -4.60891 0 0 1.17392e+06 4061.99 0.37 0.20 0.39 -1 -1 0.37 0.0705774 0.0636551 141 95 62 31 95 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 11.72 vpr 56.09 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 17.8 MiB 2.49 1389 9013 2681 4820 1512 56.3 MiB 0.15 0.00 4.97674 -167.764 -4.97674 4.97674 1.11 0.00139692 0.00128051 0.073319 0.0673562 42 3808 25 6.99608e+06 323745 744469. 2576.02 22.70 0.702382 0.626776 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.32 0.17 0.30 -1 -1 0.32 0.0617448 0.0556171 138 124 0 0 124 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.98 vpr 55.81 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 17.3 MiB 2.78 1031 11233 4729 6294 210 56.1 MiB 0.16 0.00 3.87693 -140.03 -3.87693 3.87693 1.08 0.0011251 0.00103005 0.0784349 0.0718619 46 3029 25 6.99608e+06 220735 828058. 2865.25 3.68 0.322219 0.288467 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0474342 0.042602 102 89 0 0 89 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.85 vpr 55.77 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 0.95 1034 14184 5996 7912 276 56.2 MiB 0.20 0.00 3.78975 -136.67 -3.78975 3.78975 1.09 0.00123141 0.0011307 0.10432 0.0958127 46 3037 39 6.99608e+06 235451 828058. 2865.25 6.50 0.540444 0.484988 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0551747 0.0497356 92 34 90 30 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.65 vpr 56.35 MiB 0.05 7216 -1 -1 1 0.04 -1 -1 30664 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 17.7 MiB 1.56 1068 13943 4857 7191 1895 56.6 MiB 0.22 0.00 3.9689 -135.877 -3.9689 3.9689 1.11 0.00145629 0.00133459 0.115502 0.106086 44 3217 23 6.99608e+06 294314 787024. 2723.27 5.72 0.477594 0.428077 27778 195446 -1 2448 21 2374 3214 252324 52621 3.92082 3.92082 -146.029 -3.92082 0 0 997811. 3452.63 0.34 0.08 0.32 -1 -1 0.34 0.0316143 0.0283813 117 64 87 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 9.07 vpr 55.92 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30436 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 17.6 MiB 1.12 1088 13788 5313 5928 2547 56.5 MiB 0.19 0.00 3.56069 -123.887 -3.56069 3.56069 1.09 0.00120931 0.00110905 0.0968444 0.0888445 36 3765 43 6.99608e+06 294314 648988. 2245.63 10.33 0.397195 0.356311 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.28 0.17 0.25 -1 -1 0.28 0.0568075 0.0511266 101 61 58 30 58 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.86 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30664 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1034 13906 5203 6656 2047 56.3 MiB 0.22 0.00 4.17744 -150.809 -4.17744 4.17744 1.10 0.00131173 0.0012033 0.108543 0.0996265 46 3490 34 6.99608e+06 250167 828058. 2865.25 6.53 0.42099 0.378431 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0532231 0.048072 107 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 12.68 vpr 56.23 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 17.7 MiB 0.78 1295 11830 3708 6867 1255 56.6 MiB 0.19 0.00 3.61179 -138.351 -3.61179 3.61179 1.09 0.00131497 0.00119858 0.0908284 0.0829396 44 3300 26 6.99608e+06 264882 787024. 2723.27 3.75 0.382391 0.343675 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0534193 0.0482926 108 65 63 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.71 vpr 55.50 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 17.0 MiB 1.10 714 7817 3113 4376 328 55.7 MiB 0.10 0.00 3.29694 -113.946 -3.29694 3.29694 1.08 0.000974812 0.000894743 0.0508927 0.0467315 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.19 0.237151 0.212087 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0410487 0.0368481 73 34 58 29 29 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.56 vpr 55.88 MiB 0.06 6944 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 17.4 MiB 2.38 796 13192 4518 6301 2373 56.1 MiB 0.17 0.00 3.75163 -124.237 -3.75163 3.75163 1.09 0.00106486 0.000974075 0.088051 0.0806093 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.96 0.298667 0.267226 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0491895 0.0441805 91 82 0 0 82 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 9.61 vpr 55.55 MiB 0.06 6956 -1 -1 1 0.04 -1 -1 30476 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 17.4 MiB 0.63 1104 8164 1792 5984 388 56.3 MiB 0.13 0.00 3.79614 -138.31 -3.79614 3.79614 1.13 0.00126084 0.00116182 0.0634551 0.0585239 38 3147 50 6.99608e+06 250167 678818. 2348.85 5.53 0.367907 0.330352 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.30 0.14 0.27 -1 -1 0.30 0.0572325 0.0515628 92 34 93 31 31 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 8.08 vpr 55.55 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 17.1 MiB 1.54 924 11813 4851 6237 725 55.7 MiB 0.15 0.00 3.23604 -112.025 -3.23604 3.23604 1.14 0.000969957 0.000887119 0.0732954 0.0671676 38 2436 26 6.99608e+06 235451 678818. 2348.85 3.79 0.273534 0.244306 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0458066 0.0409725 81 56 29 29 52 26 + fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 8.78 vpr 55.50 MiB 0.05 6832 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 17.4 MiB 0.71 800 12628 5339 6973 316 56.0 MiB 0.16 0.00 3.56959 -131.903 -3.56959 3.56959 1.08 0.00106811 0.000980425 0.0856997 0.0786217 44 2487 30 6.99608e+06 191304 787024. 2723.27 3.48 0.323283 0.289865 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0374563 0.033755 79 34 64 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 8.65 vpr 55.95 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30580 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57948 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 17.6 MiB 1.20 964 11296 3574 5293 2429 56.6 MiB 0.17 0.00 4.06828 -143.162 -4.06828 4.06828 1.09 0.00126817 0.00116073 0.0840498 0.0770325 40 3214 32 6.99608e+06 279598 706193. 2443.58 4.83 0.372558 0.334568 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.055115 0.0497059 105 64 58 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.68 vpr 55.47 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30448 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 2.24 694 11756 4613 5996 1147 55.7 MiB 0.15 0.00 3.23724 -109.795 -3.23724 3.23724 1.11 0.00102562 0.000939892 0.0782487 0.0716974 48 2270 42 6.99608e+06 191304 865456. 2994.66 4.09 0.330206 0.29531 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0421999 0.0378294 81 55 31 31 53 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.12 vpr 56.08 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 17.7 MiB 1.53 911 15034 6476 7971 587 56.6 MiB 0.20 0.00 3.61105 -126.923 -3.61105 3.61105 1.08 0.0012541 0.00115098 0.108868 0.0999116 52 2649 36 6.99608e+06 264882 926341. 3205.33 19.31 0.662975 0.593472 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.37 0.13 0.39 -1 -1 0.37 0.0530494 0.0478806 103 65 52 26 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 12.63 vpr 56.36 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 17.9 MiB 0.89 1135 16081 6006 7648 2427 56.4 MiB 0.12 0.00 4.67827 -157.924 -4.67827 4.67827 1.09 0.000504862 0.000457017 0.0462976 0.0419877 44 3513 45 6.99608e+06 323745 787024. 2723.27 4.33 0.345067 0.308621 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.33 0.14 0.35 -1 -1 0.33 0.0568765 0.0517319 123 93 31 31 92 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 11.01 vpr 55.96 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 17.5 MiB 2.45 1185 10050 2506 6241 1303 56.3 MiB 0.13 0.00 3.59004 -135.268 -3.59004 3.59004 1.09 0.00108283 0.000992064 0.067544 0.0619543 38 3007 50 6.99608e+06 220735 678818. 2348.85 16.21 0.531274 0.473341 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0438396 0.0394054 88 61 32 32 60 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.84 vpr 55.55 MiB 0.06 6864 -1 -1 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 17.5 MiB 0.72 844 13856 5698 7170 988 56.0 MiB 0.18 0.00 3.30794 -123.058 -3.30794 3.30794 1.08 0.00110124 0.00100834 0.0952684 0.087315 46 2571 29 6.99608e+06 206020 828058. 2865.25 6.34 0.447426 0.400056 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.049885 0.044756 91 63 32 32 62 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.42 vpr 55.48 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30720 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1239 11118 3579 5407 2132 56.4 MiB 0.17 0.00 3.81515 -143.501 -3.81515 3.81515 1.11 0.00130439 0.00119748 0.0853355 0.0783935 46 2851 29 6.99608e+06 264882 828058. 2865.25 6.24 0.550503 0.493564 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0566725 0.0511179 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.85 vpr 55.98 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 17.4 MiB 1.52 913 9160 3758 4976 426 56.4 MiB 0.14 0.00 3.41124 -117.262 -3.41124 3.41124 1.09 0.00119741 0.00109744 0.0655974 0.0602333 38 3163 50 6.99608e+06 309029 678818. 2348.85 6.72 0.380948 0.341376 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0520233 0.0467929 101 62 56 29 58 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 13.15 vpr 56.34 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57980 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.2 MiB 0.78 1399 13316 4006 7788 1522 56.6 MiB 0.22 0.00 4.54237 -164.626 -4.54237 4.54237 1.09 0.00144941 0.0013279 0.106215 0.0973627 38 4423 46 6.99608e+06 323745 678818. 2348.85 4.02 0.419894 0.376876 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0626403 0.0564506 140 127 0 0 128 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.64 vpr 55.46 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 17.1 MiB 0.89 486 10149 3821 5138 1190 55.6 MiB 0.12 0.00 2.81885 -95.7056 -2.81885 2.81885 1.09 0.000921198 0.000844854 0.0636403 0.0584464 48 1604 38 6.99608e+06 161872 865456. 2994.66 12.73 0.483724 0.429932 28354 207349 -1 1346 20 1093 1651 144110 34639 3.02157 3.02157 -111.693 -3.02157 0 0 1.05005e+06 3633.38 0.36 0.09 0.34 -1 -1 0.36 0.0372911 0.0334475 57 4 85 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 10.08 vpr 56.43 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 17.7 MiB 2.59 1299 14303 5218 6688 2397 56.2 MiB 0.21 0.00 4.76923 -166.635 -4.76923 4.76923 1.11 0.0013275 0.00121754 0.109685 0.100627 46 3535 24 6.99608e+06 279598 828058. 2865.25 6.32 0.569835 0.511168 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0538762 0.0486808 118 92 28 28 92 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 10.74 vpr 56.22 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1244 15216 5143 8703 1370 56.6 MiB 0.24 0.00 4.66407 -173.875 -4.66407 4.66407 1.11 0.00119444 0.00109347 0.117626 0.107891 44 3377 41 6.99608e+06 235451 787024. 2723.27 3.47 0.34527 0.310512 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0536323 0.0481815 110 96 0 0 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 10.02 vpr 55.92 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57924 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 17.8 MiB 0.81 1129 13403 5326 6238 1839 56.6 MiB 0.20 0.00 3.33684 -128.417 -3.33684 3.33684 1.10 0.00130031 0.0011926 0.100638 0.0923657 38 3758 46 6.99608e+06 279598 678818. 2348.85 19.47 0.722978 0.647976 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.30 0.27 0.28 -1 -1 0.30 0.0822478 0.0738117 106 65 61 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 11.51 vpr 56.23 MiB 0.05 7272 -1 -1 1 0.04 -1 -1 30780 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 18.1 MiB 0.73 1500 14261 4373 7976 1912 56.6 MiB 0.23 0.00 4.89654 -177.942 -4.89654 4.89654 1.09 0.00157061 0.00144169 0.123023 0.112988 44 4144 38 6.99608e+06 323745 787024. 2723.27 6.14 0.688876 0.618846 27778 195446 -1 3101 23 2911 3336 281290 56419 5.48635 5.48635 -193.082 -5.48635 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0718545 0.0648849 140 96 64 32 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.73 vpr 55.17 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30120 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 16.9 MiB 1.95 577 8449 3482 4728 239 55.5 MiB 0.09 0.00 2.75275 -95.2487 -2.75275 2.75275 1.08 0.000820825 0.000750605 0.0459407 0.0420302 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.45 0.224324 0.198957 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.29 0.08 0.25 -1 -1 0.29 0.034375 0.0306165 65 56 0 0 53 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.42 vpr 55.72 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 17.0 MiB 2.87 870 9516 3877 5353 286 55.8 MiB 0.12 0.00 3.41559 -121.499 -3.41559 3.41559 1.09 0.00101691 0.000932178 0.0649211 0.0596276 34 2262 25 6.99608e+06 206020 618332. 2139.56 3.04 0.284882 0.254656 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0355179 0.0319476 72 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 8.79 vpr 55.56 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 0.30 764 10316 3722 4683 1911 55.8 MiB 0.15 0.00 3.37904 -128.379 -3.37904 3.37904 1.10 0.00107167 0.000982807 0.0745767 0.0683008 44 3301 35 6.99608e+06 176588 787024. 2723.27 4.92 0.327754 0.293414 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0476313 0.0427693 80 34 64 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 8.28 vpr 55.16 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 16.8 MiB 0.68 497 10819 4307 4933 1579 55.4 MiB 0.12 0.00 3.31386 -89.9377 -3.31386 3.31386 1.09 0.000861816 0.000790982 0.061479 0.0564812 38 1712 31 6.99608e+06 264882 678818. 2348.85 5.06 0.339258 0.301953 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0377031 0.0337203 68 34 50 25 25 25 + fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.56 vpr 56.21 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.7 MiB 0.99 1423 14358 4574 7658 2126 56.3 MiB 0.22 0.00 3.77875 -143.667 -3.77875 3.77875 1.09 0.0013508 0.00123873 0.110126 0.101021 46 3969 25 6.99608e+06 294314 828058. 2865.25 4.90 0.413955 0.371989 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.34 0.17 0.33 -1 -1 0.34 0.056049 0.0505443 125 94 32 32 94 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 10.88 vpr 56.50 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 17.8 MiB 0.94 1182 13663 4698 6384 2581 56.6 MiB 0.21 0.00 4.16978 -143.827 -4.16978 4.16978 1.08 0.00132256 0.00121189 0.10241 0.0939363 40 3516 38 6.99608e+06 323745 706193. 2443.58 4.41 0.421469 0.379033 26914 176310 -1 2935 22 2946 3843 357357 76076 4.3072 4.3072 -160.219 -4.3072 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0584809 0.0527307 121 94 29 29 93 31 + fixed_k6_frac_N8_22nm.xml mult_001.v common 13.53 vpr 55.61 MiB 0.05 6824 -1 -1 14 0.26 -1 -1 32880 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1265 9263 2276 5364 1623 55.8 MiB 0.16 0.00 8.4853 -170.751 -8.4853 8.4853 1.06 0.00159218 0.00144876 0.0885916 0.0810983 44 3187 47 6.79088e+06 255968 787024. 2723.27 3.97 0.427778 0.38536 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.33 0.24 0.32 -1 -1 0.33 0.0869215 0.0785367 134 186 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_002.v common 11.39 vpr 55.69 MiB 0.05 6800 -1 -1 14 0.28 -1 -1 32744 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1228 8270 2008 5297 965 55.7 MiB 0.14 0.00 7.98833 -161.421 -7.98833 7.98833 1.09 0.00156715 0.00143783 0.0779809 0.0715855 38 3303 16 6.79088e+06 269440 678818. 2348.85 4.78 0.40701 0.366143 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.054866 0.0498565 132 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_003.v common 13.40 vpr 55.68 MiB 0.05 6876 -1 -1 11 0.21 -1 -1 32760 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1125 11613 3520 5862 2231 55.9 MiB 0.19 0.00 7.03202 -141.666 -7.03202 7.03202 1.08 0.00155124 0.00142139 0.103011 0.0944246 38 3591 44 6.79088e+06 269440 678818. 2348.85 7.33 0.502122 0.451545 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0493531 0.044854 138 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_004.v common 10.60 vpr 55.38 MiB 0.02 6704 -1 -1 12 0.33 -1 -1 32784 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 17.2 MiB 1.39 1021 7643 1879 4700 1064 55.8 MiB 0.12 0.00 7.24011 -138.658 -7.24011 7.24011 1.12 0.00107108 0.000965395 0.0556292 0.0505647 38 2805 20 6.79088e+06 296384 678818. 2348.85 5.51 0.568335 0.508986 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0572676 0.0519541 136 184 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_005.v common 9.51 vpr 55.77 MiB 0.05 6656 -1 -1 13 0.31 -1 -1 33072 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 17.3 MiB 2.02 1463 12568 3276 7023 2269 55.9 MiB 0.22 0.00 8.02445 -169.708 -8.02445 8.02445 1.09 0.00182868 0.00167632 0.12334 0.113098 46 3660 20 6.79088e+06 323328 828058. 2865.25 5.80 0.696166 0.627516 27406 200422 -1 2903 15 1384 3728 182895 41588 7.21431 7.21431 -161.115 -7.21431 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0604389 0.0550799 160 223 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_006.v common 11.02 vpr 55.64 MiB 0.06 6672 -1 -1 12 0.27 -1 -1 32736 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 17.4 MiB 2.23 1344 4768 918 3685 165 56.0 MiB 0.09 0.00 7.61832 -163.245 -7.61832 7.61832 1.08 0.0016823 0.00154207 0.0464961 0.0427257 44 3529 23 6.79088e+06 323328 787024. 2723.27 3.41 0.314195 0.282714 27118 194962 -1 2985 17 1359 4066 236003 51425 6.72076 6.72076 -157.449 -6.72076 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0613868 0.0557602 150 205 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_007.v common 9.09 vpr 55.06 MiB 0.05 6552 -1 -1 12 0.18 -1 -1 32292 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 16.6 MiB 1.37 1000 7177 1656 4753 768 55.2 MiB 0.10 0.00 7.28149 -137.47 -7.28149 7.28149 1.13 0.0011978 0.0010983 0.0546217 0.0501608 36 2895 37 6.79088e+06 269440 648988. 2245.63 2.73 0.272468 0.245207 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0428948 0.0388204 101 131 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_008.v common 9.79 vpr 55.39 MiB 0.04 6792 -1 -1 11 0.18 -1 -1 32856 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 1.39 1129 9531 2421 6090 1020 55.5 MiB 0.15 0.00 6.82017 -140.384 -6.82017 6.82017 1.09 0.00147135 0.00133821 0.084373 0.0771799 38 3033 23 6.79088e+06 242496 678818. 2348.85 6.04 0.565103 0.506614 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0509133 0.0461715 118 173 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_009.v common 11.06 vpr 55.22 MiB 0.05 6704 -1 -1 12 0.17 -1 -1 32652 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 2.34 1115 11631 3187 7135 1309 55.5 MiB 0.16 0.00 6.73244 -139.285 -6.73244 6.73244 1.09 0.00128831 0.00117934 0.089563 0.0820481 36 2986 40 6.79088e+06 242496 648988. 2245.63 5.47 0.411578 0.369725 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0449253 0.0407504 111 143 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_010.v common 11.37 vpr 55.32 MiB 0.04 6536 -1 -1 13 0.19 -1 -1 32816 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1011 5412 1090 4064 258 55.4 MiB 0.09 0.00 7.30367 -163.797 -7.30367 7.30367 1.16 0.00139971 0.00128367 0.0483172 0.0443574 34 3575 46 6.79088e+06 215552 618332. 2139.56 14.26 0.590801 0.528122 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.050573 0.0457909 107 159 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_011.v common 7.29 vpr 55.21 MiB 0.04 6680 -1 -1 12 0.17 -1 -1 32780 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 16.7 MiB 1.35 838 6386 1352 4871 163 55.3 MiB 0.09 0.00 7.31171 -145.298 -7.31171 7.31171 1.11 0.00119109 0.00109041 0.0492951 0.045177 38 2306 22 6.79088e+06 215552 678818. 2348.85 5.12 0.372214 0.333394 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0376856 0.0341939 93 129 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_012.v common 11.76 vpr 55.24 MiB 0.06 6784 -1 -1 12 0.14 -1 -1 32864 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 16.6 MiB 1.81 1055 4560 1014 3240 306 55.2 MiB 0.08 0.00 6.46989 -155.558 -6.46989 6.46989 1.09 0.00121383 0.00111103 0.0368792 0.0337846 40 2500 20 6.79088e+06 188608 706193. 2443.58 15.26 0.539308 0.481678 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0461453 0.0417325 94 133 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_013.v common 9.02 vpr 55.52 MiB 0.05 6760 -1 -1 13 0.26 -1 -1 32896 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 17.2 MiB 1.44 1239 11431 3102 6258 2071 55.7 MiB 0.20 0.00 7.91359 -165.523 -7.91359 7.91359 1.08 0.0017309 0.00158605 0.112432 0.103108 36 3864 39 6.79088e+06 282912 648988. 2245.63 24.13 0.791113 0.710257 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0720657 0.0653878 148 212 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_014.v common 11.24 vpr 55.70 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33088 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1366 11245 3016 6173 2056 55.9 MiB 0.20 0.00 9.12295 -182.881 -9.12295 9.12295 1.08 0.00173002 0.00158414 0.1101 0.100858 40 3379 26 6.79088e+06 282912 706193. 2443.58 3.64 0.497332 0.448111 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.30 0.27 0.28 -1 -1 0.30 0.0906031 0.0819358 149 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_015.v common 10.94 vpr 55.35 MiB 0.05 6596 -1 -1 11 0.17 -1 -1 32556 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 16.8 MiB 1.42 857 12681 3929 6469 2283 55.5 MiB 0.17 0.00 6.92892 -133.02 -6.92892 6.92892 1.09 0.00128857 0.00117927 0.0973478 0.0891997 44 2366 27 6.79088e+06 269440 787024. 2723.27 2.63 0.318867 0.287235 27118 194962 -1 1895 17 1033 2535 134756 31487 5.95428 5.95428 -123.689 -5.95428 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0468221 0.0424391 111 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_016.v common 10.52 vpr 55.70 MiB 0.05 6764 -1 -1 12 0.27 -1 -1 32876 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 17.4 MiB 2.36 1420 13992 4103 7703 2186 56.2 MiB 0.25 0.00 7.6046 -160.271 -7.6046 7.6046 1.10 0.00174978 0.00160541 0.139625 0.127973 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.62 0.458507 0.413407 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0792836 0.0717498 146 212 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_017.v common 13.10 vpr 55.60 MiB 0.04 6768 -1 -1 13 0.26 -1 -1 32684 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 17.5 MiB 1.47 1236 10687 3174 5565 1948 56.2 MiB 0.19 0.00 8.28661 -168.45 -8.28661 8.28661 1.09 0.00170522 0.00155667 0.106552 0.0976191 44 3216 47 6.79088e+06 282912 787024. 2723.27 6.52 0.76384 0.686402 27118 194962 -1 2637 18 1231 3745 198363 45004 7.17085 7.17085 -157.888 -7.17085 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.082128 0.0745819 144 217 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_018.v common 10.66 vpr 55.25 MiB 0.04 6580 -1 -1 12 0.15 -1 -1 32504 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 945 7992 1779 4650 1563 55.3 MiB 0.12 0.00 6.70943 -154.61 -6.70943 6.70943 1.09 0.00128287 0.0011735 0.0635709 0.0582129 36 2644 29 6.79088e+06 215552 648988. 2245.63 3.16 0.359209 0.32278 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0409593 0.03724 104 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_019.v common 8.09 vpr 54.79 MiB 0.04 6432 -1 -1 10 0.10 -1 -1 32088 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 16.4 MiB 2.45 878 7049 1926 4350 773 54.8 MiB 0.09 0.00 5.18321 -124.627 -5.18321 5.18321 1.09 0.000923085 0.000845274 0.0447416 0.0409876 38 2075 46 6.79088e+06 161664 678818. 2348.85 5.79 0.393047 0.349446 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0299975 0.0270007 67 88 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_020.v common 9.83 vpr 55.04 MiB 0.05 6644 -1 -1 13 0.16 -1 -1 32708 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 17.0 MiB 1.82 974 6332 1469 4570 293 55.5 MiB 0.10 0.00 7.59608 -163.359 -7.59608 7.59608 1.09 0.00125023 0.00114428 0.0518902 0.0475006 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.93 0.313184 0.281007 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0416725 0.0377831 99 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_021.v common 16.57 vpr 55.68 MiB 0.05 6740 -1 -1 13 0.28 -1 -1 32752 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 17.4 MiB 1.17 1254 12371 3408 7445 1518 55.8 MiB 0.20 0.00 7.46133 -157.73 -7.46133 7.46133 1.10 0.00170288 0.00156167 0.115983 0.106197 38 3224 45 6.79088e+06 296384 678818. 2348.85 18.44 0.828961 0.744701 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0645444 0.058576 143 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_022.v common 13.19 vpr 55.84 MiB 0.05 6828 -1 -1 13 0.29 -1 -1 33176 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 17.2 MiB 1.88 1425 10883 2960 6054 1869 56.0 MiB 0.18 0.00 8.13867 -171.504 -8.13867 8.13867 1.13 0.00167609 0.00153539 0.103648 0.0951004 44 3504 27 6.79088e+06 255968 787024. 2723.27 6.70 0.64191 0.577516 27118 194962 -1 2782 17 1335 3719 207746 45749 7.06211 7.06211 -160.813 -7.06211 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0677973 0.0614807 141 205 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_023.v common 7.05 vpr 54.76 MiB 0.04 6492 -1 -1 9 0.09 -1 -1 32140 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 16.1 MiB 1.51 588 10149 2859 5591 1699 54.7 MiB 0.10 0.00 4.97273 -93.6629 -4.97273 4.97273 1.09 0.000788594 0.000722745 0.0544685 0.0499623 30 1736 26 6.79088e+06 215552 556674. 1926.21 1.30 0.153057 0.13716 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0267761 0.0239965 64 73 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_024.v common 10.53 vpr 55.59 MiB 0.04 6704 -1 -1 13 0.30 -1 -1 32696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 17.2 MiB 2.10 1289 7268 1575 5261 432 55.9 MiB 0.13 0.00 8.3813 -168.316 -8.3813 8.3813 1.08 0.00169311 0.00155139 0.070197 0.0643322 38 3745 37 6.79088e+06 296384 678818. 2348.85 4.27 0.350962 0.314607 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.30 0.15 0.27 -1 -1 0.30 0.0758249 0.0686973 137 210 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_025.v common 7.93 vpr 54.60 MiB 0.04 6396 -1 -1 8 0.09 -1 -1 31068 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 16.1 MiB 2.32 737 11631 4246 5219 2166 54.7 MiB 0.11 0.00 4.77835 -104.906 -4.77835 4.77835 1.08 0.000800262 0.000731575 0.0554518 0.0507218 30 1930 29 6.79088e+06 229024 556674. 1926.21 1.45 0.165342 0.147786 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0299797 0.0268311 64 61 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_026.v common 16.57 vpr 55.48 MiB 0.04 6708 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1155 10581 3115 6097 1369 55.6 MiB 0.17 0.00 8.86251 -178.17 -8.86251 8.86251 0.88 0.00144752 0.00132843 0.092117 0.0845073 46 2717 18 6.79088e+06 229024 828058. 2865.25 5.86 0.472451 0.424685 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0479807 0.0435638 118 159 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_027.v common 14.60 vpr 55.56 MiB 0.05 6740 -1 -1 12 0.25 -1 -1 32884 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 17.4 MiB 1.55 1241 4433 817 3477 139 56.2 MiB 0.09 0.00 7.21583 -155.808 -7.21583 7.21583 1.10 0.00172501 0.00158005 0.0465585 0.0428087 36 4047 49 6.79088e+06 296384 648988. 2245.63 4.21 0.429366 0.385383 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.24 0.26 0.13 -1 -1 0.24 0.0990771 0.0894635 145 215 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_028.v common 12.17 vpr 55.55 MiB 0.05 6844 -1 -1 13 0.27 -1 -1 32844 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 17.0 MiB 1.32 1284 4659 748 3690 221 55.7 MiB 0.09 0.00 8.13835 -165.274 -8.13835 8.13835 1.09 0.00161568 0.00147989 0.0476202 0.0436878 38 3292 49 6.79088e+06 269440 678818. 2348.85 13.99 0.774092 0.693381 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.061657 0.0558979 136 195 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_029.v common 9.55 vpr 55.28 MiB 0.04 6552 -1 -1 12 0.17 -1 -1 32340 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 16.7 MiB 2.01 1045 5303 1002 3952 349 55.1 MiB 0.09 0.00 6.60115 -147.873 -6.60115 6.60115 1.09 0.00130345 0.00119331 0.0423632 0.038834 38 2622 19 6.79088e+06 255968 678818. 2348.85 5.01 0.400628 0.35881 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.29 0.09 0.28 -1 -1 0.29 0.0411652 0.0374249 106 145 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_030.v common 10.56 vpr 55.00 MiB 0.05 6520 -1 -1 11 0.15 -1 -1 32684 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 1.95 954 11652 3379 7115 1158 55.2 MiB 0.17 0.00 6.23714 -130.615 -6.23714 6.23714 1.08 0.00116386 0.00106484 0.0901099 0.0825003 38 2452 30 6.79088e+06 269440 678818. 2348.85 4.07 0.357707 0.321047 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0404284 0.0365908 97 125 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_031.v common 8.10 vpr 55.13 MiB 0.05 6568 -1 -1 11 0.16 -1 -1 32468 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 16.6 MiB 1.17 1013 7346 1810 4929 607 55.3 MiB 0.11 0.00 6.76313 -133.919 -6.76313 6.76313 1.10 0.00117314 0.00106743 0.058298 0.0534294 36 2839 26 6.79088e+06 255968 648988. 2245.63 5.50 0.421012 0.378406 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.28 0.11 0.26 -1 -1 0.28 0.0455233 0.0412418 107 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_032.v common 11.40 vpr 55.41 MiB 0.04 6604 -1 -1 12 0.19 -1 -1 32576 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 17.2 MiB 1.94 1274 9443 2812 5690 941 55.8 MiB 0.15 0.00 6.88424 -161.28 -6.88424 6.88424 1.09 0.00148507 0.00136035 0.082787 0.0759088 38 3239 49 6.79088e+06 255968 678818. 2348.85 4.23 0.464447 0.416908 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.30 0.06 0.28 -1 -1 0.30 0.0276616 0.0251072 119 179 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_033.v common 11.72 vpr 55.00 MiB 0.04 6528 -1 -1 11 0.17 -1 -1 32692 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 908 10056 3226 4794 2036 55.3 MiB 0.15 0.00 6.39517 -140.882 -6.39517 6.39517 1.09 0.00132558 0.0012135 0.0812903 0.07446 36 2970 31 6.79088e+06 229024 648988. 2245.63 2.91 0.343048 0.308604 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0482026 0.0436747 107 147 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_034.v common 8.75 vpr 55.16 MiB 0.04 6640 -1 -1 10 0.14 -1 -1 32800 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 16.4 MiB 1.38 870 8022 2297 4713 1012 55.1 MiB 0.12 0.00 6.19022 -129.37 -6.19022 6.19022 1.11 0.00124339 0.00113982 0.0649817 0.0596001 34 2314 24 6.79088e+06 242496 618332. 2139.56 2.35 0.275107 0.247753 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0494659 0.0446573 103 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_035.v common 10.17 vpr 55.66 MiB 0.05 6936 -1 -1 13 0.33 -1 -1 33296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 17.5 MiB 1.51 1352 10103 2504 6636 963 56.3 MiB 0.20 0.00 7.85531 -169.709 -7.85531 7.85531 1.09 0.00252838 0.00231634 0.100583 0.0916888 38 3914 48 6.79088e+06 296384 678818. 2348.85 29.23 0.921052 0.827368 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0784983 0.0712614 162 239 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_036.v common 11.29 vpr 55.69 MiB 0.04 6628 -1 -1 13 0.30 -1 -1 33160 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 17.4 MiB 1.76 1274 13849 4315 6877 2657 56.1 MiB 0.24 0.00 7.85526 -169.716 -7.85526 7.85526 1.11 0.00174078 0.00159705 0.135482 0.124164 36 4447 42 6.79088e+06 282912 648988. 2245.63 10.68 0.57053 0.513895 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.28 0.20 0.25 -1 -1 0.28 0.0751429 0.0681171 152 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_037.v common 10.05 vpr 55.18 MiB 0.07 6560 -1 -1 12 0.15 -1 -1 32780 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 16.8 MiB 1.32 851 11631 4796 6628 207 55.5 MiB 0.16 0.00 7.11438 -152.359 -7.11438 7.11438 1.08 0.00126361 0.0011554 0.0880781 0.0806282 36 2928 40 6.79088e+06 242496 648988. 2245.63 8.98 0.400146 0.359132 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0459639 0.0416454 102 143 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_038.v common 10.59 vpr 55.78 MiB 0.05 6724 -1 -1 12 0.25 -1 -1 33260 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1154 12749 3915 6368 2466 56.0 MiB 0.22 0.00 7.84323 -159.621 -7.84323 7.84323 1.10 0.00172692 0.00158318 0.12239 0.112261 40 3413 28 6.79088e+06 309856 706193. 2443.58 3.86 0.503026 0.45344 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0808612 0.073159 148 219 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_039.v common 10.06 vpr 55.84 MiB 0.05 6772 -1 -1 14 0.34 -1 -1 33212 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 17.3 MiB 1.13 1375 11247 2864 6672 1711 55.8 MiB 0.19 0.00 8.18012 -172.817 -8.18012 8.18012 1.08 0.00166456 0.00152697 0.107964 0.099095 36 4160 47 6.79088e+06 282912 648988. 2245.63 15.01 0.762909 0.685264 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0691592 0.0627378 146 193 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_040.v common 10.18 vpr 55.66 MiB 0.05 6920 -1 -1 13 0.26 -1 -1 32840 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 2.11 1310 10149 2655 5632 1862 55.7 MiB 0.17 0.00 7.78561 -164.423 -7.78561 7.78561 1.09 0.0015367 0.00140817 0.0900196 0.082673 44 3315 33 6.79088e+06 282912 787024. 2723.27 6.20 0.587687 0.527699 27118 194962 -1 2744 16 1312 3521 196631 43857 6.87069 6.87069 -154.962 -6.87069 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0429408 0.0388714 126 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_041.v common 10.44 vpr 55.53 MiB 0.05 6776 -1 -1 12 0.25 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 0.96 1267 10859 2857 6722 1280 56.0 MiB 0.18 0.00 7.65156 -158.395 -7.65156 7.65156 1.09 0.00159754 0.00146466 0.0965478 0.0884712 40 3210 25 6.79088e+06 309856 706193. 2443.58 4.10 0.455424 0.410259 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.32 0.14 0.28 -1 -1 0.32 0.0583351 0.0529836 135 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_042.v common 11.40 vpr 55.60 MiB 0.05 6796 -1 -1 12 0.19 -1 -1 32844 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1093 11106 3659 5731 1716 55.4 MiB 0.17 0.00 7.11863 -144.901 -7.11863 7.11863 1.12 0.0014466 0.00132675 0.0965867 0.0886042 36 3341 42 6.79088e+06 229024 648988. 2245.63 6.36 0.4512 0.405059 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.056779 0.0512753 113 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_043.v common 11.07 vpr 55.88 MiB 0.05 7024 -1 -1 14 0.44 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 17.6 MiB 1.33 1406 13355 3498 8147 1710 56.4 MiB 0.25 0.00 8.18038 -175.8 -8.18038 8.18038 1.09 0.00181552 0.00165698 0.145591 0.133262 38 4021 47 6.79088e+06 336800 678818. 2348.85 32.13 1.14653 1.03339 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0353397 0.0323622 169 245 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_044.v common 9.93 vpr 55.21 MiB 0.04 6648 -1 -1 11 0.19 -1 -1 32392 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1088 9006 2212 5478 1316 55.5 MiB 0.14 0.00 6.58747 -141.672 -6.58747 6.58747 1.09 0.00139211 0.00127716 0.0758288 0.0695641 36 3313 23 6.79088e+06 242496 648988. 2245.63 3.13 0.311154 0.279529 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.31 0.13 0.27 -1 -1 0.31 0.0529224 0.0477937 113 155 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_045.v common 12.12 vpr 55.74 MiB 0.05 6788 -1 -1 13 0.27 -1 -1 32744 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 17.1 MiB 1.53 1133 5422 1123 3954 345 55.8 MiB 0.10 0.00 7.76692 -152.212 -7.76692 7.76692 1.09 0.00156181 0.0014323 0.0524823 0.0482083 36 3213 29 6.79088e+06 255968 648988. 2245.63 14.01 0.660764 0.59235 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0572987 0.0519821 132 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_046.v common 11.16 vpr 55.64 MiB 0.02 6760 -1 -1 12 0.29 -1 -1 32812 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1437 6967 1505 4666 796 55.8 MiB 0.13 0.00 7.30746 -159.645 -7.30746 7.30746 1.05 0.00178641 0.00163582 0.0720291 0.0660266 38 3828 35 6.79088e+06 282912 678818. 2348.85 4.69 0.442377 0.398423 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0740088 0.0671376 153 224 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_047.v common 8.97 vpr 55.47 MiB 0.04 6640 -1 -1 13 0.24 -1 -1 32808 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 16.9 MiB 1.30 1157 7823 1835 4914 1074 55.7 MiB 0.13 0.00 7.47708 -158.746 -7.47708 7.47708 1.09 0.00155774 0.00142802 0.0716002 0.0656892 36 3541 41 6.79088e+06 255968 648988. 2245.63 3.67 0.392381 0.352989 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0546255 0.0495985 131 179 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_048.v common 14.84 vpr 55.30 MiB 0.04 6780 -1 -1 13 0.22 -1 -1 32744 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.8 MiB 1.89 1097 11106 3753 5771 1582 55.8 MiB 0.18 0.00 7.69072 -162.222 -7.69072 7.69072 1.13 0.00151072 0.00138468 0.100849 0.0923982 34 3515 39 6.79088e+06 229024 618332. 2139.56 11.84 0.675848 0.606368 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.27 0.19 0.24 -1 -1 0.27 0.0730548 0.0659421 118 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_049.v common 17.34 vpr 55.77 MiB 0.05 6824 -1 -1 12 0.28 -1 -1 33012 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1359 8151 1869 5680 602 56.0 MiB 0.14 0.00 7.62073 -165.231 -7.62073 7.62073 1.06 0.00171005 0.00156627 0.0783365 0.0718696 36 3806 40 6.79088e+06 309856 648988. 2245.63 18.51 0.808485 0.725502 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0684737 0.0621441 150 204 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_050.v common 16.18 vpr 55.87 MiB 0.05 6784 -1 -1 13 0.27 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 17.5 MiB 1.97 1315 9051 2036 5908 1107 55.9 MiB 0.16 0.00 7.55776 -165.084 -7.55776 7.55776 1.09 0.0017114 0.00156379 0.0896596 0.0819868 40 3325 24 6.79088e+06 269440 706193. 2443.58 3.62 0.469811 0.423463 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.30 0.26 0.28 -1 -1 0.30 0.0939307 0.0849468 143 205 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_051.v common 9.99 vpr 55.66 MiB 0.04 6728 -1 -1 14 0.30 -1 -1 32988 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1139 8270 1889 5806 575 55.6 MiB 0.14 0.00 8.36252 -172.285 -8.36252 8.36252 1.09 0.00148345 0.00135996 0.0736205 0.0675564 44 3128 32 6.79088e+06 242496 787024. 2723.27 5.98 0.524949 0.471514 27118 194962 -1 2534 14 1111 3223 182733 40388 7.46496 7.46496 -165.503 -7.46496 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466977 0.0424677 123 165 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_052.v common 15.57 vpr 55.80 MiB 0.04 6716 -1 -1 13 0.27 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 17.2 MiB 3.03 1159 8868 1881 6136 851 56.1 MiB 0.15 0.00 8.02321 -165.348 -8.02321 8.02321 1.08 0.00160877 0.00147371 0.083827 0.0768505 36 3689 32 6.79088e+06 269440 648988. 2245.63 5.83 0.623775 0.559789 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0645585 0.0585127 134 199 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_053.v common 11.62 vpr 55.89 MiB 0.05 6876 -1 -1 13 0.28 -1 -1 33028 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1323 8591 2185 5991 415 56.0 MiB 0.16 0.00 8.19403 -174.315 -8.19403 8.19403 1.09 0.0017649 0.00161813 0.0855473 0.0784529 44 3534 38 6.79088e+06 309856 787024. 2723.27 6.64 0.677722 0.609105 27118 194962 -1 2784 18 1402 4191 225375 49843 7.17168 7.17168 -164.218 -7.17168 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0754542 0.0683844 154 220 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_054.v common 12.12 vpr 55.73 MiB 0.04 6788 -1 -1 12 0.30 -1 -1 32672 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 17.5 MiB 1.29 1325 11983 3288 6841 1854 56.0 MiB 0.21 0.00 7.62163 -166.383 -7.62163 7.62163 1.08 0.00178066 0.00163181 0.115679 0.10598 44 3682 36 6.79088e+06 323328 787024. 2723.27 3.63 0.495 0.446358 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0762841 0.0694562 157 230 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_055.v common 8.67 vpr 55.06 MiB 0.05 6540 -1 -1 11 0.13 -1 -1 32444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 16.6 MiB 1.37 956 7249 1855 4884 510 55.2 MiB 0.11 0.00 6.10061 -138.097 -6.10061 6.10061 1.11 0.00115674 0.0010581 0.0553602 0.0507117 44 2204 16 6.79088e+06 175136 787024. 2723.27 2.63 0.248158 0.222995 27118 194962 -1 1994 14 890 2260 140178 30612 5.5245 5.5245 -131.032 -5.5245 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0365418 0.0331232 90 122 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_056.v common 10.40 vpr 55.25 MiB 0.04 6724 -1 -1 13 0.19 -1 -1 32784 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 16.7 MiB 2.31 1073 11631 3861 5991 1779 55.2 MiB 0.18 0.00 7.81611 -170.556 -7.81611 7.81611 1.12 0.0013789 0.00126294 0.0973971 0.0892058 38 2825 21 6.79088e+06 229024 678818. 2348.85 3.78 0.397936 0.357886 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0569406 0.05182 113 151 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_057.v common 11.68 vpr 56.13 MiB 0.06 6856 -1 -1 14 0.41 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 17.4 MiB 1.05 1399 15493 4561 8338 2594 56.3 MiB 0.29 0.00 8.67312 -179.019 -8.67312 8.67312 1.09 0.00204253 0.00186714 0.167787 0.153743 40 4316 49 6.79088e+06 323328 706193. 2443.58 28.32 1.21727 1.09715 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.30 0.45 0.29 -1 -1 0.30 0.145245 0.131443 180 267 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_058.v common 11.67 vpr 55.51 MiB 0.05 6680 -1 -1 13 0.32 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 17.5 MiB 2.22 1244 13849 3731 7364 2754 56.1 MiB 0.24 0.00 8.43396 -178.911 -8.43396 8.43396 1.08 0.00184203 0.00168795 0.143496 0.13154 44 3465 21 6.79088e+06 282912 787024. 2723.27 5.93 0.709202 0.63922 27118 194962 -1 2596 16 1299 3668 191666 43847 7.34737 7.34737 -162.196 -7.34737 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0652609 0.0594908 154 224 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_059.v common 8.76 vpr 55.07 MiB 0.04 6556 -1 -1 11 0.16 -1 -1 32704 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 16.6 MiB 0.68 899 5994 1459 3795 740 55.2 MiB 0.10 0.00 6.69493 -140.456 -6.69493 6.69493 1.09 0.00123228 0.00112748 0.0479994 0.043943 30 2669 49 6.79088e+06 229024 556674. 1926.21 2.52 0.266429 0.23909 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451775 0.0409328 99 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_060.v common 19.79 vpr 56.10 MiB 0.05 7036 -1 -1 15 0.43 -1 -1 32888 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 17.4 MiB 1.37 1572 8083 1890 5078 1115 56.1 MiB 0.16 0.00 9.61575 -193.644 -9.61575 9.61575 1.10 0.00197882 0.00180914 0.0882107 0.0809074 48 3812 19 6.79088e+06 323328 865456. 2994.66 7.12 0.69722 0.627553 27694 206865 -1 3449 20 1718 5055 320010 69240 8.25951 8.25951 -179.124 -8.25951 0 0 1.05005e+06 3633.38 0.34 0.18 0.34 -1 -1 0.34 0.0814053 0.0740548 172 241 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_061.v common 8.90 vpr 55.80 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 33076 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 17.4 MiB 1.10 1447 9914 2954 6315 645 56.1 MiB 0.17 0.00 8.38843 -181.197 -8.38843 8.38843 1.09 0.00171857 0.00157526 0.0955125 0.0875975 38 3572 19 6.79088e+06 296384 678818. 2348.85 5.94 0.634475 0.570969 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0663303 0.060266 149 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_062.v common 7.00 vpr 55.15 MiB 0.05 6632 -1 -1 11 0.13 -1 -1 32856 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 16.7 MiB 1.54 1043 11604 3704 5973 1927 55.3 MiB 0.16 0.00 6.83225 -151.19 -6.83225 6.83225 1.11 0.00123737 0.00113051 0.0868521 0.0793882 30 2701 43 6.79088e+06 215552 556674. 1926.21 2.14 0.286229 0.257515 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0472644 0.042746 97 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_063.v common 10.14 vpr 55.65 MiB 0.05 6900 -1 -1 12 0.29 -1 -1 32856 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 17.4 MiB 1.53 1321 11989 3057 7272 1660 56.1 MiB 0.20 0.00 7.80487 -167.158 -7.80487 7.80487 1.12 0.00175088 0.00159161 0.117994 0.107949 44 3363 21 6.79088e+06 282912 787024. 2723.27 6.39 0.645089 0.580794 27118 194962 -1 2768 18 1318 3944 204921 46349 6.74877 6.74877 -155.072 -6.74877 0 0 997811. 3452.63 0.34 0.14 0.32 -1 -1 0.34 0.0673402 0.061208 152 214 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_064.v common 9.04 vpr 55.49 MiB 0.04 6604 -1 -1 12 0.20 -1 -1 32364 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1076 11776 3996 5804 1976 55.3 MiB 0.18 0.00 7.20737 -155.525 -7.20737 7.20737 1.08 0.00142739 0.00130837 0.102074 0.093602 38 3023 28 6.79088e+06 215552 678818. 2348.85 3.50 0.367225 0.330658 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0713584 0.0644299 115 159 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_065.v common 7.65 vpr 55.26 MiB 0.04 6556 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 16.7 MiB 1.29 861 12331 3461 6927 1943 55.4 MiB 0.16 0.00 7.68992 -150.206 -7.68992 7.68992 1.12 0.00128057 0.00117245 0.0939145 0.0860828 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.52 0.270144 0.244086 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0403674 0.0366949 105 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_066.v common 9.86 vpr 55.62 MiB 0.05 6872 -1 -1 12 0.30 -1 -1 32796 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1109 13105 4321 6403 2381 55.9 MiB 0.23 0.00 7.73882 -148.46 -7.73882 7.73882 1.09 0.00169138 0.00154987 0.124502 0.114092 36 3249 25 6.79088e+06 323328 648988. 2245.63 17.54 0.80353 0.722779 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.06219 0.0565301 144 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_067.v common 16.99 vpr 55.86 MiB 0.05 6712 -1 -1 14 0.31 -1 -1 33040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 17.2 MiB 2.29 1442 8024 2021 5399 604 56.0 MiB 0.15 0.00 8.63126 -174.325 -8.63126 8.63126 1.08 0.00181165 0.00166068 0.082512 0.0757084 46 3512 20 6.79088e+06 296384 828058. 2865.25 6.97 0.696006 0.625899 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0665163 0.0605328 155 222 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_068.v common 11.36 vpr 55.72 MiB 0.06 6788 -1 -1 12 0.23 -1 -1 32752 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.36 1323 12503 3954 6429 2120 55.6 MiB 0.21 0.00 7.68002 -164.527 -7.68002 7.68002 1.08 0.0016347 0.00149338 0.118605 0.10835 38 3480 45 6.79088e+06 255968 678818. 2348.85 5.38 0.54223 0.488157 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.31 0.27 0.27 -1 -1 0.31 0.0953231 0.0862922 137 192 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_069.v common 10.58 vpr 55.02 MiB 0.04 6640 -1 -1 12 0.12 -1 -1 32628 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 16.4 MiB 1.25 883 6839 1546 5160 133 55.1 MiB 0.11 0.00 7.22527 -147.319 -7.22527 7.22527 1.08 0.00120599 0.00109567 0.0531648 0.0486015 34 2749 47 6.79088e+06 202080 618332. 2139.56 4.32 0.311467 0.279317 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.28 0.20 0.26 -1 -1 0.28 0.0677826 0.0609752 95 127 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_070.v common 11.57 vpr 55.20 MiB 0.02 6764 -1 -1 12 0.26 -1 -1 32292 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1016 11806 3829 5905 2072 55.7 MiB 0.17 0.00 7.21239 -153.602 -7.21239 7.21239 1.13 0.00144237 0.00132161 0.101392 0.092953 46 2377 20 6.79088e+06 242496 828058. 2865.25 5.82 0.476134 0.427751 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.34 0.10 0.33 -1 -1 0.34 0.0524151 0.0475029 114 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_071.v common 10.06 vpr 55.45 MiB 0.05 6760 -1 -1 11 0.19 -1 -1 32704 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 2.38 1192 7587 1799 4901 887 55.5 MiB 0.06 0.00 6.65573 -139.172 -6.65573 6.65573 0.74 0.000567113 0.000512286 0.0265175 0.0240042 38 3199 19 6.79088e+06 296384 678818. 2348.85 4.44 0.355918 0.31876 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0559776 0.050778 129 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_072.v common 11.03 vpr 55.38 MiB 0.05 6848 -1 -1 11 0.20 -1 -1 32628 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 16.8 MiB 1.30 990 12156 4943 6412 801 55.4 MiB 0.19 0.00 6.59863 -125.892 -6.59863 6.59863 1.09 0.00145278 0.001334 0.106052 0.0973852 40 3108 38 6.79088e+06 282912 706193. 2443.58 4.23 0.445547 0.400345 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0670324 0.0604644 125 169 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_073.v common 8.95 vpr 55.50 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32712 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 16.7 MiB 2.68 1023 6220 1452 4481 287 55.3 MiB 0.10 0.00 7.37394 -146.255 -7.37394 7.37394 1.08 0.00123931 0.001135 0.0506218 0.046364 36 2646 31 6.79088e+06 215552 648988. 2245.63 5.08 0.420679 0.377149 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.29 0.09 0.25 -1 -1 0.29 0.0397273 0.0361409 104 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_074.v common 9.73 vpr 55.58 MiB 0.02 6716 -1 -1 12 0.19 -1 -1 32524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.90 1239 4476 858 3235 383 55.6 MiB 0.08 0.00 7.13568 -159.479 -7.13568 7.13568 1.09 0.00151419 0.0013861 0.0435725 0.0400377 36 3048 33 6.79088e+06 269440 648988. 2245.63 4.28 0.403516 0.361627 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0524743 0.0476178 125 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_075.v common 9.43 vpr 55.46 MiB 0.05 6776 -1 -1 13 0.29 -1 -1 32796 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 17.0 MiB 1.79 1176 7283 1697 4959 627 55.7 MiB 0.13 0.00 7.98183 -162.706 -7.98183 7.98183 1.09 0.00161089 0.00147678 0.0702416 0.0644774 44 2649 18 6.79088e+06 269440 787024. 2723.27 5.43 0.5729 0.514551 27118 194962 -1 2319 17 1093 3339 161697 38241 6.80691 6.80691 -150.674 -6.80691 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0596048 0.0540516 137 192 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_076.v common 11.86 vpr 55.68 MiB 0.04 6748 -1 -1 14 0.28 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 17.1 MiB 1.47 1408 9013 2325 5592 1096 55.9 MiB 0.17 0.00 8.8032 -181.521 -8.8032 8.8032 1.09 0.00177432 0.00162753 0.0923745 0.0847867 36 3712 28 6.79088e+06 282912 648988. 2245.63 4.99 0.494786 0.44587 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0631218 0.0575108 149 214 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_077.v common 11.71 vpr 55.59 MiB 0.05 6704 -1 -1 14 0.28 -1 -1 32820 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 17.0 MiB 2.18 1168 12528 4001 6466 2061 55.7 MiB 0.20 0.00 8.11366 -160.164 -8.11366 8.11366 1.08 0.00159894 0.00146539 0.114539 0.104981 38 3448 46 6.79088e+06 269440 678818. 2348.85 22.01 0.773028 0.694 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0659827 0.0598034 136 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_078.v common 10.37 vpr 55.60 MiB 0.05 6628 -1 -1 13 0.33 -1 -1 33320 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 17.4 MiB 1.93 1266 7823 1896 4973 954 55.9 MiB 0.14 0.00 7.98865 -167.696 -7.98865 7.98865 1.11 0.00166795 0.00152914 0.0777178 0.0712967 44 3303 29 6.79088e+06 255968 787024. 2723.27 6.86 0.651417 0.585089 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0617537 0.0561913 139 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_079.v common 9.68 vpr 55.14 MiB 0.04 6616 -1 -1 13 0.18 -1 -1 32776 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 16.7 MiB 1.49 955 5888 1275 4387 226 55.4 MiB 0.12 0.00 7.30909 -151.711 -7.30909 7.30909 1.09 0.00128426 0.00117362 0.062149 0.0570063 44 2529 26 6.79088e+06 215552 787024. 2723.27 5.16 0.446842 0.400589 27118 194962 -1 1987 15 914 2239 123722 28021 6.20837 6.20837 -138.38 -6.20837 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0538479 0.0496016 106 142 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_080.v common 12.63 vpr 55.85 MiB 0.05 6648 -1 -1 13 0.43 -1 -1 32768 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 17.4 MiB 1.38 1281 12175 3045 7735 1395 55.8 MiB 0.20 0.00 8.2401 -167.978 -8.2401 8.2401 1.09 0.00171331 0.00157237 0.118064 0.108379 36 3566 29 6.79088e+06 309856 648988. 2245.63 6.62 0.517005 0.466251 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.27 0.21 0.25 -1 -1 0.27 0.0802089 0.0726895 144 206 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_081.v common 9.57 vpr 55.58 MiB 0.04 6936 -1 -1 14 0.28 -1 -1 31480 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1252 6306 1410 4478 418 55.7 MiB 0.13 0.00 8.1933 -176.786 -8.1933 8.1933 1.10 0.00159403 0.00145964 0.0622259 0.0570844 46 3049 24 6.79088e+06 269440 828058. 2865.25 6.12 0.498681 0.447814 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0610221 0.0553973 133 182 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_082.v common 10.31 vpr 55.46 MiB 0.02 6716 -1 -1 12 0.25 -1 -1 32912 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1214 6855 1626 4139 1090 55.6 MiB 0.13 0.00 7.87232 -159.238 -7.87232 7.87232 1.10 0.00149546 0.0013852 0.066402 0.0609309 38 3142 49 6.79088e+06 282912 678818. 2348.85 4.47 0.503026 0.452409 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0258022 0.0234878 143 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_083.v common 10.25 vpr 55.56 MiB 0.05 6944 -1 -1 13 0.24 -1 -1 32732 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1166 13583 4513 7114 1956 55.7 MiB 0.21 0.00 8.05477 -151.514 -8.05477 8.05477 1.08 0.001526 0.00139828 0.120071 0.109983 38 3283 21 6.79088e+06 282912 678818. 2348.85 5.80 0.455648 0.410302 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0533732 0.0484464 126 185 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_084.v common 10.24 vpr 55.82 MiB 0.02 6724 -1 -1 14 0.35 -1 -1 32928 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1356 6595 1328 4700 567 56.0 MiB 0.13 0.00 8.2637 -174.994 -8.2637 8.2637 1.08 0.00178985 0.00164402 0.0701034 0.0644743 38 3897 30 6.79088e+06 282912 678818. 2348.85 6.27 0.485232 0.437128 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0803394 0.0728742 154 216 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_085.v common 13.58 vpr 55.39 MiB 0.06 6724 -1 -1 11 0.28 -1 -1 32888 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1061 13403 4351 6899 2153 55.5 MiB 0.20 0.00 6.99502 -136.053 -6.99502 6.99502 1.09 0.00152601 0.00140052 0.117514 0.107835 36 3032 43 6.79088e+06 296384 648988. 2245.63 6.22 0.646794 0.581175 25390 158009 -1 2540 33 1686 5540 506000 190003 6.00456 6.00456 -131.545 -6.00456 0 0 828058. 2865.25 0.29 0.28 0.25 -1 -1 0.29 0.0987324 0.0893083 130 174 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_086.v common 9.92 vpr 54.98 MiB 0.04 6560 -1 -1 13 0.16 -1 -1 32728 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.88 995 4062 701 3272 89 55.1 MiB 0.07 0.00 6.9771 -161.617 -6.9771 6.9771 1.09 0.00125184 0.00114693 0.0343159 0.0315005 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.02 0.280988 0.251967 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.27 0.11 0.27 -1 -1 0.27 0.043515 0.0393799 99 131 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_087.v common 11.85 vpr 55.48 MiB 0.05 6852 -1 -1 14 0.23 -1 -1 32800 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1302 5483 1117 4002 364 55.5 MiB 0.10 0.00 8.68565 -176.783 -8.68565 8.68565 1.10 0.00153478 0.00140736 0.0517198 0.0474994 36 3263 26 6.79088e+06 255968 648988. 2245.63 5.94 0.395744 0.35544 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0538029 0.0488563 129 179 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_088.v common 10.78 vpr 56.09 MiB 0.05 6636 -1 -1 15 0.36 -1 -1 33168 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 17.4 MiB 1.82 1292 9914 2574 6184 1156 56.2 MiB 0.21 0.00 9.1052 -186.475 -9.1052 9.1052 1.11 0.00243611 0.00224347 0.110612 0.101534 40 3560 37 6.79088e+06 296384 706193. 2443.58 3.34 0.556291 0.502173 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0964495 0.0877099 153 228 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_089.v common 7.58 vpr 55.19 MiB 0.04 6676 -1 -1 11 0.16 -1 -1 32380 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.94 829 6054 1305 4663 86 55.1 MiB 0.10 0.00 6.63906 -133.693 -6.63906 6.63906 1.09 0.00117838 0.00107793 0.0466732 0.0427186 34 2844 35 6.79088e+06 188608 618332. 2139.56 3.70 0.272449 0.244185 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429477 0.0388291 91 124 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_090.v common 9.88 vpr 55.27 MiB 0.04 6592 -1 -1 12 0.18 -1 -1 32592 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 16.8 MiB 1.53 1045 8360 2472 4444 1444 55.4 MiB 0.13 0.00 7.09988 -155.106 -7.09988 7.09988 1.11 0.00137085 0.00125717 0.072884 0.0668813 36 3087 23 6.79088e+06 215552 648988. 2245.63 4.05 0.370826 0.333216 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0547694 0.0495957 111 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_091.v common 9.16 vpr 55.76 MiB 0.04 6680 -1 -1 12 0.32 -1 -1 33132 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1231 6306 1337 4274 695 56.0 MiB 0.12 0.00 7.48442 -156.804 -7.48442 7.48442 0.97 0.00174805 0.00160418 0.0653655 0.0599992 36 3798 37 6.79088e+06 269440 648988. 2245.63 4.91 0.474481 0.42665 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0722878 0.0655854 145 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_092.v common 13.31 vpr 55.51 MiB 0.04 6900 -1 -1 12 0.24 -1 -1 32832 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 17.0 MiB 1.61 1313 9443 2521 5826 1096 55.7 MiB 0.16 0.00 7.56551 -160.745 -7.56551 7.56551 1.09 0.0015584 0.00142834 0.0866941 0.0795438 36 3623 36 6.79088e+06 255968 648988. 2245.63 5.81 0.45629 0.410373 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.27 0.14 0.26 -1 -1 0.27 0.060047 0.0543583 133 184 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_093.v common 10.72 vpr 56.03 MiB 0.05 6940 -1 -1 14 0.44 -1 -1 33280 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 17.4 MiB 1.31 1284 5079 907 4069 103 56.4 MiB 0.12 0.00 8.77515 -179.37 -8.77515 8.77515 1.11 0.00193498 0.00177158 0.0593918 0.0545337 38 4131 35 6.79088e+06 309856 678818. 2348.85 21.55 0.899289 0.808256 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0785107 0.0715319 170 239 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_094.v common 14.34 vpr 55.38 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32496 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1159 11963 3648 6429 1886 55.9 MiB 0.19 0.00 7.06667 -142.983 -7.06667 7.06667 1.10 0.00151041 0.00138539 0.103651 0.0950782 44 2874 16 6.79088e+06 282912 787024. 2723.27 5.06 0.543245 0.488207 27118 194962 -1 2495 13 1107 3189 172215 38308 6.29442 6.29442 -134.943 -6.29442 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0453343 0.0413 128 173 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_095.v common 7.31 vpr 55.21 MiB 0.03 6564 -1 -1 11 0.17 -1 -1 32380 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 16.5 MiB 1.13 770 7714 1883 5409 422 55.2 MiB 0.12 0.00 6.64923 -122.654 -6.64923 6.64923 1.10 0.00122072 0.00111821 0.0608273 0.0557515 38 2218 30 6.79088e+06 255968 678818. 2348.85 5.09 0.535511 0.479306 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.050418 0.0455395 101 138 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_096.v common 12.54 vpr 56.51 MiB 0.05 6904 -1 -1 13 0.41 -1 -1 32828 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 17.9 MiB 1.68 1654 14793 4090 8037 2666 56.7 MiB 0.28 0.00 8.15219 -167.23 -8.15219 8.15219 1.08 0.00217119 0.00197864 0.15942 0.145927 40 4464 26 6.79088e+06 390688 706193. 2443.58 6.27 0.657025 0.594125 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.30 0.59 0.28 -1 -1 0.30 0.177203 0.16035 191 279 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_097.v common 8.79 vpr 55.60 MiB 0.05 6804 -1 -1 14 0.27 -1 -1 33476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1216 6923 1704 4584 635 55.7 MiB 0.12 0.00 8.60637 -173.25 -8.60637 8.60637 1.08 0.00151816 0.0013917 0.0630732 0.057863 30 3569 30 6.79088e+06 269440 556674. 1926.21 3.01 0.291014 0.262265 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0581551 0.0527304 128 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_098.v common 9.53 vpr 55.21 MiB 0.04 6604 -1 -1 12 0.16 -1 -1 32344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 16.7 MiB 2.16 1144 8723 2365 5890 468 55.4 MiB 0.13 0.00 7.40683 -169.316 -7.40683 7.40683 1.09 0.00128581 0.00117735 0.0660614 0.060486 44 3005 29 6.79088e+06 255968 787024. 2723.27 5.77 0.456562 0.409639 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0466657 0.0423125 109 134 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_099.v common 11.80 vpr 55.64 MiB 0.04 6732 -1 -1 13 0.28 -1 -1 32736 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 16.9 MiB 2.67 1115 5066 1001 3852 213 55.7 MiB 0.09 0.00 8.33866 -169.136 -8.33866 8.33866 1.09 0.00151881 0.00139241 0.0480774 0.0441555 48 2783 21 6.79088e+06 242496 865456. 2994.66 6.41 0.518909 0.465398 27694 206865 -1 2457 17 1071 3000 181658 40341 7.04987 7.04987 -154.557 -7.04987 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.0556896 0.0505282 125 171 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_100.v common 10.80 vpr 55.96 MiB 0.04 6904 -1 -1 13 0.32 -1 -1 33364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1490 8083 1681 5214 1188 56.3 MiB 0.15 0.00 7.4732 -162.473 -7.4732 7.4732 1.13 0.00184146 0.00168782 0.0811408 0.0743978 38 4261 31 6.79088e+06 336800 678818. 2348.85 6.56 0.519391 0.467521 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.29 0.30 0.27 -1 -1 0.29 0.110545 0.100054 159 234 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_101.v common 11.71 vpr 55.73 MiB 0.04 6744 -1 -1 11 0.23 -1 -1 32884 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 17.0 MiB 1.54 1209 11059 2877 6113 2069 55.7 MiB 0.18 0.00 7.11391 -144.84 -7.11391 7.11391 1.08 0.00162249 0.00148787 0.101421 0.0930155 44 3241 20 6.79088e+06 309856 787024. 2723.27 6.28 0.593065 0.533481 27118 194962 -1 2589 15 1040 3335 178109 39730 6.29442 6.29442 -136.088 -6.29442 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0622453 0.0572758 140 199 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_102.v common 10.22 vpr 55.78 MiB 0.04 6712 -1 -1 15 0.32 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1211 12503 3460 7559 1484 55.8 MiB 0.21 0.00 9.11536 -184.558 -9.11536 9.11536 1.09 0.00168114 0.00154043 0.122704 0.11216 46 2840 19 6.79088e+06 255968 828058. 2865.25 6.22 0.691761 0.62166 27406 200422 -1 2555 17 1279 3537 187100 43561 7.59386 7.59386 -164.648 -7.59386 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0627921 0.0570557 142 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_103.v common 9.15 vpr 55.84 MiB 0.06 6644 -1 -1 13 0.31 -1 -1 32964 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 17.5 MiB 1.94 1357 5463 1001 4200 262 56.1 MiB 0.11 0.00 8.32676 -176.58 -8.32676 8.32676 1.08 0.00183262 0.00167552 0.057417 0.0526657 36 4143 34 6.79088e+06 309856 648988. 2245.63 12.84 0.494099 0.444582 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0601923 0.0547952 154 217 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_104.v common 10.62 vpr 55.14 MiB 0.05 6600 -1 -1 12 0.19 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 16.9 MiB 1.92 941 10557 3755 4946 1856 55.5 MiB 0.15 0.00 7.68137 -155.362 -7.68137 7.68137 1.11 0.00129045 0.0011818 0.0846873 0.0776442 36 2695 26 6.79088e+06 242496 648988. 2245.63 4.92 0.456054 0.409724 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0491854 0.0445361 109 151 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_105.v common 10.56 vpr 55.25 MiB 0.04 6612 -1 -1 11 0.15 -1 -1 32488 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 16.4 MiB 1.39 1148 5224 1190 3763 271 55.2 MiB 0.09 0.00 6.84847 -147.97 -6.84847 6.84847 1.12 0.00124315 0.00113753 0.043097 0.0394918 48 2763 18 6.79088e+06 188608 865456. 2994.66 5.60 0.479885 0.429876 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0424171 0.0384451 98 137 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_106.v common 9.15 vpr 55.73 MiB 0.04 6776 -1 -1 13 0.30 -1 -1 32820 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 17.5 MiB 1.07 1115 8455 2194 4906 1355 56.0 MiB 0.15 0.00 7.89179 -153.02 -7.89179 7.89179 1.08 0.00170023 0.00155719 0.0824694 0.0756079 38 3369 23 6.79088e+06 296384 678818. 2348.85 6.32 0.464107 0.418041 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0679929 0.0617157 144 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_107.v common 7.74 vpr 55.06 MiB 0.05 6600 -1 -1 10 0.17 -1 -1 32784 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 16.6 MiB 1.63 851 10204 2504 7246 454 55.2 MiB 0.14 0.00 6.11518 -125.484 -6.11518 6.11518 1.09 0.00122729 0.00112298 0.0785806 0.0720156 38 2368 25 6.79088e+06 229024 678818. 2348.85 5.33 0.45229 0.405506 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0503646 0.0454995 98 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_108.v common 13.04 vpr 55.29 MiB 0.04 6512 -1 -1 14 0.18 -1 -1 32652 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 16.9 MiB 2.65 1049 6312 1330 4556 426 55.2 MiB 0.10 0.00 7.76918 -161.081 -7.76918 7.76918 1.09 0.00131616 0.00120603 0.0509297 0.0466835 36 3203 45 6.79088e+06 242496 648988. 2245.63 17.36 0.596302 0.533541 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.29 0.31 0.25 -1 -1 0.29 0.0983194 0.0886059 110 146 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_109.v common 10.51 vpr 55.81 MiB 0.05 6776 -1 -1 12 0.30 -1 -1 32888 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1262 12919 3620 7000 2299 55.7 MiB 0.21 0.00 7.60154 -161.988 -7.60154 7.60154 1.09 0.00167876 0.00153978 0.121798 0.111728 36 3634 39 6.79088e+06 296384 648988. 2245.63 7.00 0.540211 0.486894 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0613179 0.0556916 143 201 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_110.v common 10.19 vpr 55.28 MiB 0.04 6592 -1 -1 12 0.17 -1 -1 32284 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 16.8 MiB 2.02 992 10726 2823 7181 722 55.2 MiB 0.15 0.00 6.58069 -144.507 -6.58069 6.58069 1.11 0.00122821 0.00112362 0.0823296 0.075382 34 3214 45 6.79088e+06 215552 618332. 2139.56 4.94 0.391161 0.351059 25102 150614 -1 2531 19 1106 2577 182354 39807 6.0649 6.0649 -143.904 -6.0649 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0487346 0.0440227 101 138 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_111.v common 9.31 vpr 55.61 MiB 0.05 6828 -1 -1 12 0.19 -1 -1 32924 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1163 7736 1889 5402 445 55.9 MiB 0.13 0.00 7.51176 -154.757 -7.51176 7.51176 1.09 0.00155894 0.00142764 0.0728061 0.0667371 38 3181 29 6.79088e+06 242496 678818. 2348.85 5.95 0.435254 0.391077 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.29 0.12 0.26 -1 -1 0.29 0.0570543 0.0517385 123 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_112.v common 10.13 vpr 55.70 MiB 0.05 6732 -1 -1 13 0.27 -1 -1 32928 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 17.1 MiB 1.41 1250 11296 2557 6849 1890 55.8 MiB 0.18 0.00 7.49717 -162.624 -7.49717 7.49717 1.09 0.00155927 0.00142897 0.103647 0.0950912 40 2968 20 6.79088e+06 255968 706193. 2443.58 17.78 0.777085 0.696912 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0595625 0.0539694 134 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_113.v common 10.44 vpr 55.05 MiB 0.02 6516 -1 -1 11 0.16 -1 -1 32364 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 1.25 937 7515 1724 5667 124 55.3 MiB 0.12 0.00 7.16165 -142.405 -7.16165 7.16165 1.08 0.00129089 0.00118037 0.0613696 0.0561617 46 2683 20 6.79088e+06 202080 828058. 2865.25 3.10 0.345772 0.31054 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0450549 0.0408704 105 143 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_114.v common 11.86 vpr 55.35 MiB 0.04 6584 -1 -1 13 0.19 -1 -1 32560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 17.1 MiB 1.80 1005 13381 4639 6392 2350 55.7 MiB 0.21 0.00 7.38301 -157.601 -7.38301 7.38301 1.14 0.00146407 0.00134128 0.116175 0.106518 38 2883 22 6.79088e+06 229024 678818. 2348.85 2.78 0.365452 0.329444 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0528697 0.0479131 116 165 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_115.v common 9.12 vpr 55.60 MiB 0.04 6840 -1 -1 13 0.25 -1 -1 32816 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 17.2 MiB 1.56 1327 8092 2018 5457 617 55.9 MiB 0.14 0.00 7.14878 -159.209 -7.14878 7.14878 1.10 0.0015734 0.00144238 0.0764217 0.0701609 46 3203 25 6.79088e+06 242496 828058. 2865.25 3.47 0.424066 0.381373 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0600511 0.0543872 130 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_116.v common 15.07 vpr 55.41 MiB 0.02 6748 -1 -1 11 0.19 -1 -1 32692 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.49 925 13403 4743 6446 2214 55.4 MiB 0.19 0.00 6.69836 -125.024 -6.69836 6.69836 1.09 0.00137507 0.00125986 0.106677 0.0977589 36 2760 29 6.79088e+06 296384 648988. 2245.63 4.99 0.425493 0.382345 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0501484 0.0454119 115 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_117.v common 9.57 vpr 55.68 MiB 0.05 6928 -1 -1 14 0.31 -1 -1 33316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 17.4 MiB 1.43 1410 8213 2036 5597 580 56.2 MiB 0.16 0.00 9.10514 -189.548 -9.10514 9.10514 1.09 0.00182237 0.00167031 0.0848684 0.0777673 44 3396 25 6.79088e+06 296384 787024. 2723.27 3.56 0.489354 0.440712 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.34 0.13 0.31 -1 -1 0.34 0.0644074 0.0587052 160 222 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_118.v common 10.40 vpr 55.16 MiB 0.04 6704 -1 -1 12 0.16 -1 -1 32672 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 16.8 MiB 2.69 1093 11281 2937 6811 1533 55.3 MiB 0.16 0.00 6.61653 -142.296 -6.61653 6.61653 1.13 0.00127176 0.00116408 0.0861753 0.0789958 38 2817 19 6.79088e+06 242496 678818. 2348.85 2.44 0.308539 0.278261 25966 169698 -1 2363 14 1024 2534 149076 32586 5.57833 5.57833 -133.159 -5.57833 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0401526 0.0365282 108 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_119.v common 10.43 vpr 55.61 MiB 0.05 6752 -1 -1 13 0.27 -1 -1 32848 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1323 14123 4442 7710 1971 55.8 MiB 0.23 0.00 7.64293 -157.325 -7.64293 7.64293 1.09 0.0015873 0.00145469 0.129904 0.119111 44 3212 24 6.79088e+06 255968 787024. 2723.27 3.73 0.406555 0.366976 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.34 0.14 0.31 -1 -1 0.34 0.0615014 0.0557958 132 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_120.v common 8.49 vpr 55.20 MiB 0.05 6716 -1 -1 13 0.18 -1 -1 32732 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 16.5 MiB 1.96 1020 12120 3554 6383 2183 55.3 MiB 0.17 0.00 7.35402 -164.423 -7.35402 7.35402 1.08 0.00127735 0.00116918 0.0938643 0.0859486 36 3009 44 6.79088e+06 215552 648988. 2245.63 5.83 0.548757 0.493039 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0511829 0.0463496 104 141 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_121.v common 8.56 vpr 55.55 MiB 0.05 6856 -1 -1 12 0.21 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 17.2 MiB 1.87 1030 11783 4465 6036 1282 56.0 MiB 0.19 0.00 7.13827 -153.033 -7.13827 7.13827 1.10 0.00148852 0.00135887 0.104482 0.0957714 44 2856 22 6.79088e+06 255968 787024. 2723.27 3.21 0.387416 0.349117 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0506526 0.0460055 121 171 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_122.v common 10.48 vpr 56.24 MiB 0.04 6992 -1 -1 15 0.51 -1 -1 32784 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1457 12373 3076 6798 2499 56.3 MiB 0.25 0.00 9.48621 -188.88 -9.48621 9.48621 1.08 0.00201907 0.00185073 0.146159 0.134178 46 4011 21 6.79088e+06 323328 828058. 2865.25 6.94 0.781261 0.704699 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0844498 0.0767716 176 250 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_123.v common 7.33 vpr 54.59 MiB 0.04 6508 -1 -1 10 0.10 -1 -1 32092 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55964 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 16.0 MiB 1.53 678 9345 2965 4615 1765 54.7 MiB 0.10 0.00 5.03415 -115.492 -5.03415 5.03415 1.09 0.00089601 0.000819572 0.0574963 0.0526502 36 1722 23 6.79088e+06 148192 648988. 2245.63 2.63 0.250018 0.223084 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0346783 0.0310799 63 85 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_124.v common 10.41 vpr 55.35 MiB 0.05 6552 -1 -1 13 0.19 -1 -1 32484 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 16.7 MiB 1.68 930 9881 2975 5177 1729 55.4 MiB 0.14 0.00 7.15369 -149.901 -7.15369 7.15369 1.11 0.00127116 0.00115217 0.0762483 0.0698864 36 2757 44 6.79088e+06 255968 648988. 2245.63 4.65 0.402687 0.361546 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0505652 0.0457746 105 141 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_125.v common 10.07 vpr 55.52 MiB 0.05 6464 -1 -1 12 0.19 -1 -1 32548 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1026 12331 4984 6774 573 55.6 MiB 0.19 0.00 7.35057 -161.147 -7.35057 7.35057 1.11 0.00143768 0.00131737 0.10623 0.0974066 38 3211 42 6.79088e+06 229024 678818. 2348.85 19.20 0.738941 0.662186 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0579799 0.0525428 115 167 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_126.v common 6.32 vpr 54.70 MiB 0.05 6716 -1 -1 9 0.13 -1 -1 32360 -1 -1 20 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 16.7 MiB 1.07 772 8553 2593 4994 966 55.2 MiB 0.10 0.00 5.4216 -101.246 -5.4216 5.4216 1.08 0.00101816 0.000932745 0.0563404 0.0516462 32 2040 31 6.79088e+06 269440 586450. 2029.24 1.37 0.201784 0.181199 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0336201 0.030372 86 111 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_127.v common 12.47 vpr 55.68 MiB 0.05 6836 -1 -1 12 0.26 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 17.2 MiB 2.35 1475 10263 2607 5842 1814 55.9 MiB 0.18 0.00 7.81518 -176.908 -7.81518 7.81518 1.11 0.00168186 0.00154133 0.0954285 0.0875118 38 4034 49 6.79088e+06 309856 678818. 2348.85 8.27 0.547144 0.492408 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0619064 0.0562804 146 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_128.v common 16.59 vpr 55.84 MiB 0.07 6912 -1 -1 14 0.53 -1 -1 32872 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 17.3 MiB 1.21 1195 12733 3723 6434 2576 55.8 MiB 0.22 0.00 9.14434 -182.838 -9.14434 9.14434 1.12 0.00172674 0.00158239 0.125546 0.114919 38 3451 34 6.79088e+06 296384 678818. 2348.85 5.82 0.547953 0.494015 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0658858 0.059868 151 204 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 9.51 vpr 55.98 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30840 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 1.20 895 12321 3076 8292 953 56.4 MiB 0.21 0.00 4.3249 -144.349 -4.3249 4.3249 1.09 0.00138045 0.00126734 0.0751919 0.0689254 34 2773 31 6.87369e+06 517032 618332. 2139.56 5.15 0.466586 0.417978 25762 151098 -1 2211 24 2181 3652 275045 65194 4.0397 4.0397 -150.952 -4.0397 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0619853 0.0556486 155 96 32 32 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.39 vpr 55.88 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 17.4 MiB 3.40 889 13477 4603 6656 2218 56.2 MiB 0.22 0.00 4.22285 -135.326 -4.22285 4.22285 1.09 0.00128085 0.0011742 0.0957769 0.0878281 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.50 0.272422 0.245926 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.25 0.15 0.23 -1 -1 0.25 0.0563612 0.0506087 141 91 30 30 89 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.47 vpr 55.72 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 17.5 MiB 1.69 953 18428 5979 9684 2765 56.3 MiB 0.32 0.01 3.74716 -129.333 -3.74716 3.74716 1.10 0.0013443 0.00123288 0.117037 0.108362 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.50 0.275006 0.249542 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0529511 0.0475925 145 65 54 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 7.14 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30340 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 17.3 MiB 1.28 922 15090 5352 7218 2520 56.1 MiB 0.24 0.00 4.1666 -130.205 -4.1666 4.1666 1.08 0.00114721 0.00105349 0.0975709 0.0896496 34 2444 21 6.87369e+06 321398 618332. 2139.56 2.42 0.344122 0.310203 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0511668 0.0459524 136 34 87 29 29 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.88 vpr 55.66 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 1.63 1047 14965 5078 8038 1849 56.3 MiB 0.25 0.00 4.2175 -149.421 -4.2175 4.2175 1.08 0.00125216 0.00114933 0.104176 0.0956822 34 2922 24 6.87369e+06 293451 618332. 2139.56 2.47 0.353206 0.317581 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.26 0.17 0.24 -1 -1 0.26 0.056184 0.0505928 147 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.48 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30192 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 17.4 MiB 1.14 1041 20588 6432 11323 2833 56.3 MiB 0.29 0.00 3.55395 -124.862 -3.55395 3.55395 1.08 0.00130532 0.00119515 0.114781 0.105119 32 2871 28 6.87369e+06 544980 586450. 2029.24 1.37 0.291561 0.2632 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.25 0.13 0.22 -1 -1 0.25 0.0494854 0.0445523 154 64 63 32 63 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.70 vpr 55.27 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30480 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 17.1 MiB 2.02 640 10388 2730 6621 1037 55.8 MiB 0.15 0.00 3.6994 -105.15 -3.6994 3.6994 1.10 0.000917334 0.000841967 0.0590561 0.0542244 28 1921 25 6.87369e+06 279477 531479. 1839.03 1.33 0.180741 0.162114 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0426857 0.0381241 102 34 54 27 27 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.64 vpr 55.48 MiB 0.06 7008 -1 -1 1 0.03 -1 -1 30064 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.4 MiB 0.85 969 14273 4212 7662 2399 56.1 MiB 0.19 0.00 3.61131 -114.549 -3.61131 3.61131 1.08 0.00110868 0.00101846 0.0729663 0.0669548 30 2496 28 6.87369e+06 489084 556674. 1926.21 1.35 0.232493 0.209463 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0454954 0.0409143 141 4 115 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 8.25 vpr 55.67 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30044 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 17.1 MiB 2.47 735 9712 2823 5738 1151 55.7 MiB 0.14 0.00 3.24697 -108.666 -3.24697 3.24697 1.09 0.00106756 0.000975843 0.0641353 0.0586852 28 1915 21 6.87369e+06 223581 531479. 1839.03 1.22 0.206528 0.184789 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.23 0.08 0.20 -1 -1 0.23 0.0370375 0.0331946 103 85 0 0 84 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.35 vpr 55.42 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.2 MiB 3.66 706 12808 2978 8428 1402 55.8 MiB 0.16 0.00 3.8076 -131.302 -3.8076 3.8076 1.09 0.00107211 0.000984526 0.0823629 0.0756313 34 2315 45 6.87369e+06 223581 618332. 2139.56 2.17 0.296384 0.265999 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.0472277 0.0423147 114 34 64 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.47 vpr 55.53 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30056 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 17.0 MiB 2.84 860 11776 3165 7564 1047 55.9 MiB 0.17 0.00 3.7375 -122.128 -3.7375 3.7375 1.10 0.00106557 0.000977364 0.0758828 0.0695494 32 2014 21 6.87369e+06 251529 586450. 2029.24 1.81 0.246694 0.221449 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0381974 0.0342175 109 63 30 30 60 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 8.17 vpr 55.33 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30496 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 17.2 MiB 1.31 881 15207 4108 9975 1124 56.1 MiB 0.20 0.00 3.45001 -118.108 -3.45001 3.45001 1.08 0.00108076 0.000981251 0.0772711 0.0706157 34 2251 27 6.87369e+06 447163 618332. 2139.56 2.10 0.303197 0.271195 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.28 0.10 0.22 -1 -1 0.28 0.0418483 0.0374409 116 65 25 25 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.90 vpr 55.86 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30164 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 17.5 MiB 4.27 958 19935 5624 11872 2439 56.3 MiB 0.30 0.00 3.64005 -125.972 -3.64005 3.64005 1.10 0.00126759 0.00115968 0.114099 0.104427 34 2786 25 6.87369e+06 489084 618332. 2139.56 2.33 0.386098 0.347284 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0457507 0.0412162 147 58 64 32 57 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.68 vpr 55.86 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30436 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 2.07 1059 21016 6637 11817 2562 56.3 MiB 0.30 0.00 4.34584 -150.842 -4.34584 4.34584 1.09 0.00131981 0.00121017 0.121196 0.110962 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.41 0.293422 0.264923 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0257981 0.0229535 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.55 vpr 55.14 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 17.0 MiB 1.72 791 11776 3380 6895 1501 55.5 MiB 0.15 0.00 3.6364 -112.843 -3.6364 3.6364 1.09 0.000936288 0.000859241 0.0666323 0.0611836 32 2110 22 6.87369e+06 265503 586450. 2029.24 1.27 0.185238 0.166472 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0367869 0.0328828 102 29 58 29 24 24 + fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.13 vpr 55.87 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 17.4 MiB 2.40 930 14221 5969 7807 445 56.2 MiB 0.24 0.00 3.52575 -124.171 -3.52575 3.52575 1.09 0.0012662 0.00115733 0.101711 0.093189 36 2582 25 6.87369e+06 293451 648988. 2245.63 2.71 0.385768 0.346627 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.057556 0.05188 145 63 64 32 62 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.91 vpr 55.80 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30136 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 17.2 MiB 4.21 1056 17238 4537 10962 1739 56.1 MiB 0.24 0.00 3.55695 -127.024 -3.55695 3.55695 1.11 0.001255 0.00115171 0.0948652 0.0869606 28 2543 24 6.87369e+06 531006 531479. 1839.03 1.36 0.256654 0.231473 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0575021 0.0516681 148 57 64 32 56 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 8.23 vpr 55.59 MiB 0.10 6992 -1 -1 1 0.03 -1 -1 30060 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 17.0 MiB 2.31 836 17103 4501 10697 1905 55.8 MiB 0.22 0.00 3.09156 -112.02 -3.09156 3.09156 1.09 0.000710133 0.000637189 0.0889999 0.0814541 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.98 0.236503 0.212547 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0455307 0.0407705 117 65 29 29 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.64 vpr 55.11 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30064 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 16.6 MiB 0.50 560 9036 3714 4978 344 55.1 MiB 0.10 0.00 2.94056 -94.1681 -2.94056 2.94056 1.09 0.000783026 0.000716865 0.0460634 0.0421699 28 1745 31 6.87369e+06 195634 531479. 1839.03 1.29 0.156846 0.139739 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0279256 0.024847 73 34 24 24 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.53 vpr 55.57 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 17.2 MiB 1.00 944 12636 3568 7641 1427 56.0 MiB 0.09 0.00 4.39847 -135.821 -4.39847 4.39847 0.75 0.000405514 0.000366426 0.0312764 0.0282871 32 2277 24 6.87369e+06 237555 586450. 2029.24 1.27 0.17212 0.153687 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0470684 0.0422254 113 64 31 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.50 vpr 55.74 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 17.5 MiB 0.87 894 19124 5624 10425 3075 56.3 MiB 0.27 0.00 4.20059 -139.885 -4.20059 4.20059 1.09 0.00124239 0.00114166 0.10577 0.0969904 34 2709 23 6.87369e+06 503058 618332. 2139.56 2.33 0.367874 0.330948 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0548456 0.0489475 150 34 91 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.82 vpr 55.68 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 30436 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 17.9 MiB 2.90 951 19380 5821 10599 2960 56.6 MiB 0.30 0.01 3.81248 -128.436 -3.81248 3.81248 1.09 0.00141379 0.00129372 0.116407 0.106372 30 2850 21 6.87369e+06 558954 556674. 1926.21 5.99 0.483878 0.433257 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0575257 0.0516163 154 124 0 0 125 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.63 vpr 54.97 MiB 0.04 6784 -1 -1 1 0.02 -1 -1 30384 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 16.6 MiB 1.76 600 9219 3759 4898 562 55.1 MiB 0.10 0.00 2.91856 -82.7442 -2.91856 2.91856 1.09 0.000682525 0.000624172 0.0423464 0.0387248 28 1359 19 6.87369e+06 223581 531479. 1839.03 1.17 0.125077 0.111698 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.030344 0.0269479 69 30 26 26 22 22 + fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.51 vpr 55.49 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 29980 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.3 MiB 1.26 1038 9757 2635 6591 531 56.1 MiB 0.17 0.00 4.1666 -141.416 -4.1666 4.1666 1.12 0.00115667 0.00106006 0.0639539 0.0586677 36 2506 23 6.87369e+06 293451 648988. 2245.63 5.11 0.440574 0.394699 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0497226 0.044724 141 3 122 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.38 vpr 54.88 MiB 0.04 6600 -1 -1 1 0.02 -1 -1 30368 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.6 MiB 0.40 506 9516 2238 6770 508 55.1 MiB 0.10 0.00 2.55523 -88.1124 -2.55523 2.55523 1.09 0.000723082 0.000661298 0.0448602 0.0410295 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.74 0.19556 0.174288 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.26 0.06 0.25 -1 -1 0.26 0.0284507 0.0253709 71 3 53 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.09 vpr 55.37 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30380 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 17.4 MiB 0.73 1092 17964 4627 11625 1712 56.3 MiB 0.27 0.01 4.26205 -149.131 -4.26205 4.26205 1.07 0.00125626 0.00114219 0.101033 0.0926362 32 3060 24 6.87369e+06 503058 586450. 2029.24 2.17 0.316911 0.285577 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0493113 0.0443827 155 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.37 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29904 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 17.2 MiB 0.81 964 9612 2267 6482 863 56.1 MiB 0.18 0.00 3.55269 -121.215 -3.55269 3.55269 1.16 0.00117055 0.00107369 0.0602206 0.0553088 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.47 0.229188 0.206277 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464303 0.0417717 151 3 124 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.90 vpr 55.73 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 17.4 MiB 0.92 1088 13358 3512 8899 947 56.3 MiB 0.22 0.00 4.2809 -148.724 -4.2809 4.2809 1.15 0.00130508 0.0011942 0.0771661 0.070623 26 3507 43 6.87369e+06 544980 503264. 1741.40 7.81 0.505299 0.452498 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.22 0.20 0.19 -1 -1 0.22 0.0631934 0.0568103 156 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.53 vpr 55.33 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30004 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 16.7 MiB 0.89 734 6839 1724 4743 372 55.3 MiB 0.11 0.00 3.07332 -108.035 -3.07332 3.07332 1.09 0.000999544 0.000915699 0.0445472 0.0409618 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.99 0.262656 0.234405 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0346242 0.0310576 104 34 54 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.90 vpr 55.41 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29980 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.97 856 11260 3834 5392 2034 55.4 MiB 0.15 0.00 3.7936 -125.971 -3.7936 3.7936 1.09 0.00100214 0.000918803 0.0682975 0.0626669 32 2233 22 6.87369e+06 251529 586450. 2029.24 1.33 0.196412 0.176629 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.26 0.09 0.23 -1 -1 0.26 0.0365838 0.0328238 109 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.97 vpr 55.37 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 16.9 MiB 0.99 743 13092 5209 6121 1762 55.5 MiB 0.18 0.00 3.48175 -108.034 -3.48175 3.48175 1.08 0.000945866 0.000867401 0.0758317 0.0695926 28 2217 26 6.87369e+06 265503 531479. 1839.03 1.40 0.202137 0.181724 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0375191 0.033587 104 34 56 28 28 28 + fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.87 vpr 55.48 MiB 0.05 6816 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 1.16 861 14700 5460 6955 2285 55.4 MiB 0.20 0.00 3.58201 -129.205 -3.58201 3.58201 1.09 0.00100771 0.000925357 0.0882431 0.0810329 34 2321 22 6.87369e+06 223581 618332. 2139.56 2.10 0.300656 0.270111 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.041105 0.0368557 114 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 7.11 vpr 55.50 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30064 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 17.3 MiB 0.75 924 11975 3064 7554 1357 55.8 MiB 0.16 0.00 3.50375 -121.402 -3.50375 3.50375 1.09 0.0010336 0.000947459 0.0603185 0.0552863 32 2375 25 6.87369e+06 447163 586450. 2029.24 1.31 0.193541 0.17377 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.046852 0.0418938 119 34 61 31 31 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.60 vpr 55.31 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 29992 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 17.0 MiB 2.62 824 15003 4455 7859 2689 55.7 MiB 0.19 0.00 2.90021 -94.838 -2.90021 2.90021 1.09 0.00102391 0.000936161 0.0761459 0.0696741 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.89 0.288384 0.258102 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0418046 0.0373747 113 61 29 29 57 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.64 vpr 55.81 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30472 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57844 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 17.6 MiB 3.67 1315 20411 5511 12546 2354 56.5 MiB 0.35 0.01 4.25391 -147.758 -4.25391 4.25391 1.11 0.000994086 0.00089225 0.11315 0.103377 28 3619 31 6.87369e+06 614849 531479. 1839.03 3.34 0.317653 0.286604 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.23 0.18 0.20 -1 -1 0.23 0.0631457 0.0569627 184 29 128 32 27 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 8.24 vpr 55.91 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 17.8 MiB 2.78 1049 18419 4848 10881 2690 56.5 MiB 0.26 0.00 3.66825 -130.624 -3.66825 3.66825 1.09 0.0013016 0.00119368 0.103103 0.0944725 32 2652 21 6.87369e+06 544980 586450. 2029.24 1.38 0.267886 0.241812 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.23 0.05 0.12 -1 -1 0.23 0.0192419 0.0172037 154 65 62 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.37 vpr 55.46 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30344 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 17.0 MiB 3.28 881 17134 5393 9307 2434 55.9 MiB 0.12 0.00 3.56305 -119.83 -3.56305 3.56305 1.13 0.000427417 0.000385003 0.0357597 0.0321821 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.70 0.182776 0.161452 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0180912 0.0159927 116 90 0 0 89 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.59 vpr 55.79 MiB 0.03 7136 -1 -1 1 0.06 -1 -1 30240 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 17.6 MiB 1.86 1019 8641 2131 5612 898 56.4 MiB 0.17 0.00 3.59121 -120.774 -3.59121 3.59121 1.09 0.00126852 0.00116354 0.0624269 0.0573386 34 2671 24 6.87369e+06 307425 618332. 2139.56 2.23 0.333225 0.299092 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0567265 0.0510417 141 64 60 30 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.92 vpr 55.85 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 30376 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 17.6 MiB 4.80 1071 16825 7101 8757 967 56.3 MiB 0.29 0.00 4.97069 -151.888 -4.97069 4.97069 1.09 0.00139951 0.00128299 0.130549 0.119715 34 2813 21 6.87369e+06 307425 618332. 2139.56 2.51 0.423885 0.380841 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0553983 0.0497537 145 124 0 0 124 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.46 vpr 55.79 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30268 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 17.5 MiB 1.76 980 12175 3299 8119 757 56.4 MiB 0.21 0.00 4.75154 -140.36 -4.75154 4.75154 1.09 0.00132183 0.00121201 0.0894524 0.0820483 34 2589 22 6.87369e+06 307425 618332. 2139.56 2.31 0.353967 0.317724 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0388269 0.034496 141 90 31 31 89 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.43 vpr 55.65 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 17.4 MiB 2.40 1053 19023 5653 10954 2416 56.3 MiB 0.28 0.00 3.64005 -125.414 -3.64005 3.64005 1.09 0.00126159 0.00115487 0.109144 0.0999379 34 2453 25 6.87369e+06 503058 618332. 2139.56 2.21 0.382945 0.34433 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.26 0.12 0.23 -1 -1 0.26 0.0467467 0.0418863 148 64 60 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.89 vpr 55.62 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30364 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.4 MiB 1.68 1150 19618 5466 12522 1630 56.3 MiB 0.29 0.01 4.1996 -145.707 -4.1996 4.1996 1.09 0.0012939 0.00118752 0.110188 0.100899 34 2754 24 6.87369e+06 531006 618332. 2139.56 4.73 0.533585 0.47835 25762 151098 -1 2446 23 2018 3153 285501 61588 3.6528 3.6528 -145.952 -3.6528 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.042155 0.0375938 156 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.96 vpr 56.37 MiB 0.04 7308 -1 -1 1 0.03 -1 -1 30416 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 17.9 MiB 3.22 1303 13356 3327 8820 1209 56.5 MiB 0.25 0.01 4.31511 -149.42 -4.31511 4.31511 1.10 0.00157739 0.00143701 0.0893383 0.0817784 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.76 0.292025 0.263153 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.064505 0.0580583 186 96 62 32 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.79 vpr 55.19 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.82 908 12636 4255 7048 1333 55.4 MiB 0.20 0.00 3.7654 -130.371 -3.7654 3.7654 1.11 0.00104134 0.000956929 0.0850832 0.0782039 34 2191 32 6.87369e+06 237555 618332. 2139.56 4.23 0.3738 0.334486 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0387821 0.0347372 112 34 62 31 31 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.80 vpr 55.62 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30264 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 17.5 MiB 2.51 1036 19820 6398 10981 2441 56.3 MiB 0.29 0.00 4.25889 -142.345 -4.25889 4.25889 1.10 0.00128943 0.00118258 0.115337 0.105729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.82 0.313251 0.282488 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0564187 0.0507129 152 64 62 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.56 vpr 55.70 MiB 0.04 7012 -1 -1 1 0.04 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1118 16515 4839 10227 1449 56.2 MiB 0.25 0.01 3.56001 -125.702 -3.56001 3.56001 1.09 0.00127774 0.00117121 0.0965794 0.0885017 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.72 0.225066 0.202782 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0544757 0.0489526 150 63 62 32 62 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.64 vpr 55.59 MiB 0.05 6980 -1 -1 1 0.05 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 1.39 942 16081 4088 11306 687 56.2 MiB 0.25 0.00 4.1996 -144.758 -4.1996 4.1996 1.08 0.00119567 0.00109465 0.105949 0.0973951 34 3051 25 6.87369e+06 293451 618332. 2139.56 5.10 0.434607 0.390707 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0552121 0.0496552 147 3 128 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.92 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.57 1066 20980 7180 11264 2536 56.4 MiB 0.30 0.00 3.54349 -125.696 -3.54349 3.54349 1.09 0.00131527 0.00120455 0.12241 0.111968 34 2404 23 6.87369e+06 503058 618332. 2139.56 2.26 0.405655 0.364603 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0536573 0.0482127 148 96 25 25 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.84 vpr 55.60 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30248 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 17.4 MiB 3.54 1032 19142 4987 12020 2135 56.3 MiB 0.15 0.00 3.61805 -127.505 -3.61805 3.61805 1.07 0.000469101 0.000421996 0.0394933 0.035634 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.21 0.120024 0.105932 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.058743 0.0527504 152 61 64 32 60 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 10.68 vpr 55.95 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 17.6 MiB 2.71 1111 18648 5184 11229 2235 56.5 MiB 0.27 0.01 3.58025 -126.995 -3.58025 3.58025 1.10 0.00130896 0.00119985 0.103603 0.0947876 32 2918 26 6.87369e+06 558954 586450. 2029.24 1.43 0.279397 0.251941 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.25 0.14 0.23 -1 -1 0.25 0.0532971 0.0479126 156 65 63 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.05 vpr 55.73 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57744 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 17.5 MiB 0.81 973 12876 3455 7707 1714 56.4 MiB 0.17 0.00 4.3249 -147.802 -4.3249 4.3249 1.09 0.00124571 0.00114332 0.0697132 0.0639375 34 2850 24 6.87369e+06 544980 618332. 2139.56 2.97 0.3407 0.306136 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0502954 0.0452486 156 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.08 vpr 55.69 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30468 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 17.6 MiB 2.68 1087 15172 3966 9854 1352 56.4 MiB 0.23 0.01 4.1996 -143.047 -4.1996 4.1996 1.10 0.00130014 0.00119103 0.0833329 0.076236 34 2680 28 6.87369e+06 572927 618332. 2139.56 2.46 0.373261 0.335166 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.057636 0.0517813 157 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 12.59 vpr 55.73 MiB 0.05 7276 -1 -1 1 0.05 -1 -1 30344 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57832 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.89 988 19356 5396 10906 3054 56.5 MiB 0.30 0.01 4.16785 -135.645 -4.16785 4.16785 1.08 0.00135647 0.00123529 0.118891 0.108776 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.47 0.295678 0.266328 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0582534 0.0522297 150 122 0 0 122 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.08 vpr 55.63 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1079 15709 4633 9421 1655 56.4 MiB 0.27 0.00 4.13359 -143.515 -4.13359 4.13359 1.10 0.00136847 0.00125572 0.118955 0.109192 34 3228 24 6.87369e+06 293451 618332. 2139.56 2.52 0.415309 0.373641 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.056652 0.0507683 145 94 32 32 94 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.71 vpr 55.23 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 17.0 MiB 0.87 919 15426 4260 9754 1412 55.8 MiB 0.20 0.00 3.51475 -125.544 -3.51475 3.51475 1.09 0.00104438 0.00095742 0.0758532 0.069447 32 2428 31 6.87369e+06 447163 586450. 2029.24 1.25 0.178995 0.159835 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.35 0.13 0.21 -1 -1 0.35 0.0474397 0.0425683 121 34 63 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.55 vpr 55.68 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.87 953 12980 4579 7047 1354 55.9 MiB 0.21 0.00 3.6884 -132.193 -3.6884 3.6884 1.10 0.00116066 0.00106251 0.092584 0.0847199 32 2548 27 6.87369e+06 223581 586450. 2029.24 1.45 0.243565 0.21887 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0508874 0.045564 112 94 0 0 94 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 9.48 vpr 55.90 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30660 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57672 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1419 16556 4403 10830 1323 56.3 MiB 0.28 0.01 4.99284 -170.715 -4.99284 4.99284 1.09 0.0015163 0.00139071 0.101822 0.0933611 28 3950 45 6.87369e+06 614849 531479. 1839.03 3.80 0.361489 0.325926 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.32 0.17 0.19 -1 -1 0.32 0.0548735 0.0493475 189 65 96 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 8.58 vpr 55.57 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30268 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 2.52 1069 15831 4027 10006 1798 56.2 MiB 0.24 0.00 3.59121 -127.943 -3.59121 3.59121 1.09 0.0012387 0.00113609 0.0891017 0.0815533 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.67 0.248666 0.224236 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.22 0.16 0.19 -1 -1 0.22 0.0729201 0.0654806 150 34 92 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 6.41 vpr 55.17 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30312 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 16.9 MiB 0.66 823 15633 5297 7776 2560 55.9 MiB 0.20 0.00 3.51601 -116.196 -3.51601 3.51601 0.97 0.00101503 0.000930347 0.0784269 0.0717989 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.45 0.208534 0.187477 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0425954 0.0380978 116 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.67 vpr 56.05 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30780 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 18.2 MiB 5.50 1193 22455 6528 13018 2909 56.6 MiB 0.35 0.01 4.91264 -167.151 -4.91264 4.91264 1.11 0.00163181 0.00149606 0.141731 0.129909 32 3593 50 6.87369e+06 656770 586450. 2029.24 3.08 0.494372 0.445269 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.25 0.21 0.23 -1 -1 0.25 0.0774819 0.0696756 190 127 32 32 128 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.33 vpr 55.78 MiB 0.07 6992 -1 -1 1 0.03 -1 -1 30324 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 17.5 MiB 2.89 975 19868 5843 10688 3337 56.1 MiB 0.26 0.00 4.28153 -144.516 -4.28153 4.28153 1.09 0.001252 0.00114858 0.105196 0.0964606 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.85 0.320779 0.28915 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0494228 0.04448 156 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.14 vpr 55.06 MiB 0.05 6700 -1 -1 1 0.03 -1 -1 30248 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.8 MiB 0.60 857 11197 2857 7409 931 55.5 MiB 0.16 0.00 3.64005 -128.736 -3.64005 3.64005 1.08 0.00101226 0.000930229 0.0536142 0.0492483 30 2290 23 6.87369e+06 461137 556674. 1926.21 1.27 0.18241 0.164049 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0392635 0.0352122 123 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.85 vpr 55.84 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30608 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 17.7 MiB 2.45 1249 21169 5887 12519 2763 56.4 MiB 0.33 0.01 4.9297 -168.732 -4.9297 4.9297 1.09 0.00145751 0.00134042 0.122853 0.11284 28 3487 31 6.87369e+06 628823 531479. 1839.03 2.27 0.333037 0.300399 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.20 0.11 0.10 -1 -1 0.20 0.0270354 0.0239863 189 34 128 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.56 vpr 55.43 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.88 806 12292 2857 8871 564 55.4 MiB 0.18 0.00 3.7764 -134.344 -3.7764 3.7764 1.09 0.00100204 0.000919886 0.0740699 0.0679893 34 2200 24 6.87369e+06 223581 618332. 2139.56 2.03 0.288329 0.258602 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442734 0.0396596 114 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.70 vpr 55.35 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30260 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 17.0 MiB 2.17 719 10463 2628 6946 889 55.7 MiB 0.15 0.00 3.56001 -114.458 -3.56001 3.56001 1.09 0.00101289 0.000929414 0.0514505 0.0471392 28 2094 21 6.87369e+06 461137 531479. 1839.03 1.35 0.177602 0.159309 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0445794 0.0398789 118 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.87 vpr 55.88 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30300 -1 -1 35 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 17.3 MiB 3.13 1008 14550 3923 8443 2184 56.2 MiB 0.22 0.00 3.54707 -114.227 -3.54707 3.54707 1.09 0.00124764 0.00114373 0.0860133 0.0788152 34 2543 22 6.87369e+06 489084 618332. 2139.56 2.16 0.348064 0.312387 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0506559 0.04548 141 88 29 29 85 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.96 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.6 MiB 2.01 854 12175 2685 7576 1914 56.4 MiB 0.17 0.00 4.2388 -146.065 -4.2388 4.2388 1.08 0.00130557 0.00119751 0.088378 0.0810944 34 2806 28 6.87369e+06 293451 618332. 2139.56 2.72 0.3845 0.345708 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0624378 0.056084 147 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.62 vpr 55.56 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.8 MiB 3.66 1100 18901 5336 11603 1962 56.5 MiB 0.28 0.01 4.27679 -150.534 -4.27679 4.27679 1.13 0.00133257 0.00121361 0.109351 0.100212 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.49 0.275835 0.248934 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.25 0.13 0.22 -1 -1 0.25 0.0577267 0.0519657 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 9.00 vpr 55.22 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30304 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 17.5 MiB 2.87 825 17191 6233 8742 2216 56.2 MiB 0.22 0.00 3.60705 -126.657 -3.60705 3.60705 1.09 0.00112453 0.00102156 0.0892121 0.0815829 36 2048 23 6.87369e+06 461137 648988. 2245.63 2.19 0.327152 0.293305 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0455333 0.040803 123 65 32 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.56 vpr 55.48 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 17.2 MiB 3.65 738 4456 873 3135 448 55.8 MiB 0.09 0.00 3.6994 -119.902 -3.6994 3.6994 1.11 0.00111945 0.00102554 0.0312417 0.0286211 34 2217 18 6.87369e+06 251529 618332. 2139.56 2.18 0.257052 0.228718 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0473432 0.0423573 108 90 0 0 89 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.76 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 17.4 MiB 2.81 914 16740 4391 9932 2417 56.2 MiB 0.25 0.00 3.59605 -116.379 -3.59605 3.59605 1.09 0.0012127 0.00111184 0.0962897 0.0883068 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.93 0.294224 0.265012 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0456676 0.0410751 143 60 60 30 57 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.24 vpr 55.54 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30236 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 17.4 MiB 1.51 905 12191 3346 7959 886 56.1 MiB 0.18 0.00 4.19891 -125.962 -4.19891 4.19891 1.08 0.00107909 0.0009876 0.0656185 0.0601336 26 2593 24 6.87369e+06 489084 503264. 1741.40 5.06 0.356639 0.319114 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.22 0.17 0.19 -1 -1 0.22 0.0581896 0.0521135 139 34 84 28 28 28 + fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 8.02 vpr 55.38 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30008 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 16.9 MiB 2.30 882 11432 3518 6484 1430 55.9 MiB 0.17 0.00 3.7324 -126.153 -3.7324 3.7324 1.09 0.00106159 0.00096851 0.0732226 0.0671212 30 2191 20 6.87369e+06 251529 556674. 1926.21 1.27 0.204554 0.183942 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.24 0.10 0.22 -1 -1 0.24 0.0434814 0.0389239 110 63 30 30 60 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.81 vpr 55.64 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30248 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 17.0 MiB 3.00 904 14256 4718 7453 2085 55.7 MiB 0.21 0.00 3.6144 -123.374 -3.6144 3.6144 1.09 0.00113787 0.00104103 0.0955617 0.0874761 34 2227 20 6.87369e+06 237555 618332. 2139.56 2.01 0.329273 0.295005 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0474534 0.0424574 110 91 0 0 91 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.15 vpr 55.70 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30092 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.80 962 16804 5215 8614 2975 55.7 MiB 0.24 0.00 4.24789 -140.354 -4.24789 4.24789 1.09 0.00116145 0.00106722 0.0873249 0.0801762 28 3199 26 6.87369e+06 517032 531479. 1839.03 2.28 0.250761 0.22665 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.23 0.13 0.19 -1 -1 0.23 0.0437922 0.039451 151 4 124 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.36 vpr 55.75 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30600 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.6 MiB 3.79 1093 19380 5712 11198 2470 56.4 MiB 0.28 0.00 4.29189 -149.386 -4.29189 4.29189 1.10 0.00130819 0.00119912 0.110505 0.101271 28 2995 25 6.87369e+06 531006 531479. 1839.03 2.01 0.285741 0.25811 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.23 0.17 0.20 -1 -1 0.23 0.061956 0.0556043 156 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 10.38 vpr 55.95 MiB 0.06 7120 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57868 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 3.49 1146 17256 4889 10338 2029 56.5 MiB 0.25 0.01 4.30289 -150.744 -4.30289 4.30289 1.13 0.00131452 0.00120538 0.10021 0.0917902 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.49 0.271869 0.245314 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0539159 0.0485512 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.93 vpr 55.87 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1114 16491 4519 10066 1906 56.4 MiB 0.24 0.00 4.16249 -142.489 -4.16249 4.16249 1.09 0.00128902 0.001182 0.0919472 0.0842052 28 3159 33 6.87369e+06 544980 531479. 1839.03 2.22 0.279039 0.251149 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0551732 0.049603 152 65 60 30 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 9.14 vpr 55.57 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30320 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 17.0 MiB 2.33 746 10406 2932 6420 1054 55.6 MiB 0.08 0.00 3.7324 -121.378 -3.7324 3.7324 0.85 0.000372419 0.000336969 0.0239254 0.0216664 32 2264 21 6.87369e+06 265503 586450. 2029.24 1.06 0.127374 0.113439 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0379553 0.0340229 110 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.47 vpr 55.76 MiB 0.09 7120 -1 -1 1 0.03 -1 -1 30244 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 17.6 MiB 2.86 980 15709 4819 8970 1920 56.2 MiB 0.24 0.00 4.23999 -140.261 -4.23999 4.23999 1.09 0.00123933 0.00113657 0.108104 0.0991652 30 2357 25 6.87369e+06 321398 556674. 1926.21 1.40 0.273552 0.247045 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.048876 0.0439815 140 63 60 30 60 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.80 vpr 55.66 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30704 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 17.8 MiB 4.94 1155 15540 3963 10188 1389 56.4 MiB 0.25 0.01 4.23385 -146.284 -4.23385 4.23385 1.10 0.00143231 0.00131125 0.0918142 0.0839438 36 2614 23 6.87369e+06 600875 648988. 2245.63 5.31 0.553709 0.495023 26050 158493 -1 2236 22 1922 3310 238312 53285 3.7984 3.7984 -145.312 -3.7984 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0606896 0.0544609 158 127 0 0 128 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 8.54 vpr 55.84 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30672 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 17.5 MiB 1.13 1029 18273 5989 9373 2911 56.4 MiB 0.28 0.00 4.26989 -143.564 -4.26989 4.26989 1.10 0.0013292 0.00121843 0.115224 0.105399 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.96 0.29021 0.261855 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0587209 0.0527411 149 94 31 31 93 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.68 vpr 55.72 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30296 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 17.4 MiB 2.13 942 16921 5030 8706 3185 56.3 MiB 0.26 0.00 3.63595 -118.056 -3.63595 3.63595 1.11 0.00129147 0.0011745 0.104866 0.0959652 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.43 0.26805 0.241618 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0544816 0.0490122 141 92 26 26 90 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.33 vpr 55.72 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 4.20 1087 14593 4252 9147 1194 56.4 MiB 0.25 0.00 4.1996 -148.308 -4.1996 4.1996 1.09 0.00131185 0.00119979 0.104756 0.0960073 34 3260 29 6.87369e+06 293451 618332. 2139.56 2.76 0.405476 0.3646 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.27 0.17 0.25 -1 -1 0.27 0.0585466 0.0526476 147 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.52 vpr 55.64 MiB 0.05 7192 -1 -1 1 0.05 -1 -1 30256 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 17.5 MiB 2.06 943 12751 3363 8405 983 56.3 MiB 0.19 0.00 3.54105 -112.818 -3.54105 3.54105 1.09 0.00123142 0.00112562 0.0748271 0.0684231 26 2618 24 6.87369e+06 503058 503264. 1741.40 1.38 0.234725 0.211018 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0545144 0.0487992 138 88 26 26 85 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.53 vpr 55.13 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.57 862 12292 3174 7904 1214 55.4 MiB 0.18 0.00 3.7104 -131.958 -3.7104 3.7104 1.12 0.00100362 0.000922219 0.0746089 0.0685757 34 2313 18 6.87369e+06 223581 618332. 2139.56 2.03 0.28088 0.25212 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.03976 0.0356894 114 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.39 vpr 55.92 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 4.26 1088 19841 5443 12522 1876 56.2 MiB 0.29 0.00 4.3249 -149.309 -4.3249 4.3249 0.97 0.00131232 0.00120317 0.114438 0.104874 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.47 0.28609 0.258578 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0608695 0.0547121 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.36 vpr 55.89 MiB 0.06 7144 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 3.73 1071 15151 5130 8107 1914 56.2 MiB 0.25 0.00 4.2388 -148.068 -4.2388 4.2388 1.11 0.00132256 0.00121264 0.110844 0.101689 36 2570 23 6.87369e+06 293451 648988. 2245.63 2.42 0.386212 0.348119 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0568759 0.051179 147 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.72 vpr 55.30 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30408 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 3.30 885 16708 4981 9424 2303 55.7 MiB 0.21 0.00 3.50501 -121.209 -3.50501 3.50501 1.09 0.00103825 0.000950236 0.08374 0.0765164 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.96 0.300484 0.268971 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0441301 0.0394684 112 55 32 32 54 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.58 vpr 55.52 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.1 MiB 0.81 723 6960 1528 4773 659 55.7 MiB 0.11 0.00 3.7434 -125.643 -3.7434 3.7434 1.09 0.000977327 0.000897497 0.0418375 0.0384254 32 2245 24 6.87369e+06 237555 586450. 2029.24 1.29 0.168793 0.151451 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.26 0.10 0.22 -1 -1 0.26 0.0377807 0.0338349 112 4 93 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.25 vpr 55.90 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30144 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1023 18795 5447 10788 2560 56.2 MiB 0.27 0.00 4.30799 -144.78 -4.30799 4.30799 1.09 0.00125949 0.00115511 0.107386 0.0984442 28 2603 22 6.87369e+06 489084 531479. 1839.03 1.36 0.26606 0.240151 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0483096 0.0434119 144 59 60 32 58 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 8.97 vpr 55.94 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 17.5 MiB 1.11 1094 18745 5603 10775 2367 56.4 MiB 0.29 0.00 4.21185 -141.009 -4.21185 4.21185 1.11 0.00128774 0.00117989 0.11907 0.109052 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.84 0.314912 0.284099 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0590969 0.0530692 142 88 28 28 88 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.58 vpr 55.80 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.7 MiB 0.82 1329 17642 5677 9392 2573 56.4 MiB 0.30 0.01 4.98719 -165.596 -4.98719 4.98719 1.09 0.00136193 0.00125091 0.100963 0.0927292 34 3730 48 6.87369e+06 572927 618332. 2139.56 4.55 0.458307 0.413016 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0607563 0.0548514 183 3 156 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.65 vpr 55.59 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 17.3 MiB 2.48 1005 13300 3782 8501 1017 56.1 MiB 0.20 0.00 3.59605 -120.715 -3.59605 3.59605 1.09 0.000850777 0.000752712 0.0744596 0.067962 34 2294 27 6.87369e+06 447163 618332. 2139.56 2.19 0.350218 0.313814 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0455673 0.0409405 141 59 60 30 56 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 6.02 vpr 55.20 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30552 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 16.7 MiB 0.71 735 12247 4571 5926 1750 55.2 MiB 0.15 0.00 3.6866 -109.378 -3.6866 3.6866 1.10 0.000920412 0.000844213 0.0691612 0.0634772 32 1771 18 6.87369e+06 279477 586450. 2029.24 1.22 0.180616 0.162515 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0360551 0.0322131 102 34 54 27 27 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 11.40 vpr 56.18 MiB 0.03 7320 -1 -1 1 0.04 -1 -1 30500 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 18.0 MiB 2.43 1290 11856 2585 8478 793 56.7 MiB 0.22 0.01 4.1886 -144.868 -4.1886 4.1886 1.09 0.00155832 0.00142839 0.0795426 0.0728919 30 3626 23 6.87369e+06 586901 556674. 1926.21 2.08 0.280669 0.252705 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.24 0.15 0.21 -1 -1 0.24 0.0685829 0.0616929 184 95 62 31 95 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 10.85 vpr 55.87 MiB 0.07 7372 -1 -1 1 0.03 -1 -1 30360 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 17.6 MiB 3.37 874 9914 2276 6234 1404 56.4 MiB 0.17 0.00 4.91157 -150.663 -4.91157 4.91157 1.09 0.00139285 0.00127718 0.0768254 0.0704378 34 2604 24 6.87369e+06 321398 618332. 2139.56 3.12 0.379643 0.340289 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0593029 0.0531926 144 124 0 0 124 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.20 vpr 55.56 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 17.1 MiB 3.07 802 14356 5267 6628 2461 56.0 MiB 0.23 0.00 4.598 -126.496 -4.598 4.598 1.09 0.00119132 0.0010923 0.102433 0.0938666 34 2153 24 6.87369e+06 223581 618332. 2139.56 2.11 0.341766 0.306251 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03469 0.0311654 107 89 0 0 89 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 6.72 vpr 55.86 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 17.4 MiB 0.91 1114 14723 4652 8968 1103 56.3 MiB 0.23 0.00 4.1955 -143.003 -4.1955 4.1955 1.09 0.00121566 0.00111521 0.0828473 0.0759451 28 2955 24 6.87369e+06 475111 531479. 1839.03 2.21 0.24866 0.224311 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.31 0.15 0.17 -1 -1 0.31 0.0463086 0.0416025 147 34 90 30 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.14 vpr 55.91 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30488 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 17.8 MiB 1.86 1006 19865 6118 9930 3817 56.6 MiB 0.30 0.01 4.28153 -140.004 -4.28153 4.28153 1.08 0.00145131 0.00132535 0.122994 0.112698 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.85 0.448514 0.403318 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0699357 0.063202 176 64 87 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.81 vpr 55.66 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 17.4 MiB 1.78 1085 17873 5357 10009 2507 56.3 MiB 0.26 0.00 3.50639 -115.998 -3.50639 3.50639 1.03 0.00120742 0.00110619 0.0991312 0.0906683 34 2647 22 6.87369e+06 503058 618332. 2139.56 2.39 0.360665 0.324009 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0508431 0.0456254 144 61 58 30 58 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 10.80 vpr 55.95 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30428 -1 -1 46 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57760 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 17.6 MiB 2.50 1127 20887 5685 13197 2005 56.4 MiB 0.30 0.01 4.26133 -148.826 -4.26133 4.26133 1.13 0.00132608 0.00121627 0.108511 0.0993462 28 2839 24 6.87369e+06 642796 531479. 1839.03 4.62 0.48434 0.434526 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0604467 0.0542994 160 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.92 vpr 56.01 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 17.5 MiB 2.72 1115 19606 5308 11826 2472 56.4 MiB 0.22 0.00 3.52575 -126.542 -3.52575 3.52575 1.09 0.00130927 0.00120004 0.0773502 0.0705829 26 2952 46 6.87369e+06 586901 503264. 1741.40 5.33 0.489945 0.438441 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0604928 0.0544232 157 65 63 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.85 vpr 55.21 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30244 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 16.8 MiB 1.59 669 12808 5105 6141 1562 55.3 MiB 0.17 0.00 3.73366 -117.212 -3.73366 3.73366 1.09 0.000986938 0.000905567 0.075913 0.0696974 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.88 0.283186 0.253465 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0384609 0.0343803 107 34 58 29 29 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.66 vpr 55.68 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 29896 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 2.15 808 7256 1653 5365 238 55.8 MiB 0.12 0.00 4.2805 -117.484 -4.2805 4.2805 1.08 0.00106351 0.000973242 0.0469331 0.0429648 34 2056 25 6.87369e+06 237555 618332. 2139.56 2.16 0.27409 0.244396 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0278174 0.0250143 102 82 0 0 82 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.91 vpr 55.51 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 17.4 MiB 1.51 1136 19618 6151 11073 2394 56.3 MiB 0.16 0.00 4.1886 -141.394 -4.1886 4.1886 0.74 0.00044562 0.000402307 0.0387907 0.0349967 28 2901 39 6.87369e+06 544980 531479. 1839.03 7.23 0.449361 0.401422 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0507999 0.0457325 152 34 93 31 31 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.13 vpr 55.48 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30256 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 16.8 MiB 3.01 794 17103 5256 9538 2309 55.5 MiB 0.20 0.00 3.45975 -106.144 -3.45975 3.45975 1.09 0.000979672 0.000896522 0.08238 0.0754043 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.88 0.228654 0.204946 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.21 0.15 0.18 -1 -1 0.21 0.0463009 0.0412794 108 56 29 29 52 26 + fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.77 vpr 55.31 MiB 0.03 6876 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.9 MiB 3.03 809 12464 3077 8852 535 55.6 MiB 0.18 0.00 3.7104 -131.395 -3.7104 3.7104 1.09 0.00105807 0.000969767 0.0795555 0.0729274 34 2309 26 6.87369e+06 223581 618332. 2139.56 2.09 0.310146 0.27807 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0454597 0.0407274 114 34 64 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.81 vpr 55.83 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30248 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 2.40 1003 13598 3664 8482 1452 56.1 MiB 0.21 0.00 3.61625 -124.489 -3.61625 3.61625 1.10 0.00126571 0.00115235 0.0810274 0.074193 34 2208 22 6.87369e+06 489084 618332. 2139.56 2.04 0.343567 0.308435 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.25 0.11 0.12 -1 -1 0.25 0.0499151 0.0449128 146 64 58 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.54 vpr 55.40 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 16.9 MiB 2.72 698 11402 3727 5924 1751 55.5 MiB 0.16 0.00 3.33623 -109.833 -3.33623 3.33623 1.09 0.00101284 0.000927695 0.0709334 0.0650056 26 2239 28 6.87369e+06 223581 503264. 1741.40 1.39 0.210077 0.188495 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0414317 0.0370302 103 55 31 31 53 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 8.03 vpr 55.85 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30336 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1019 17256 4700 9815 2741 56.3 MiB 0.27 0.00 3.59195 -122.625 -3.59195 3.59195 1.12 0.00127267 0.00117015 0.103855 0.0954727 32 2782 36 6.87369e+06 517032 586450. 2029.24 1.50 0.29674 0.268021 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.26 0.12 0.23 -1 -1 0.26 0.052765 0.0473424 143 65 52 26 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.71 vpr 55.93 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30184 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 17.4 MiB 3.20 929 10336 2368 6764 1204 56.3 MiB 0.17 0.00 3.59605 -120.102 -3.59605 3.59605 1.09 0.00133545 0.00122132 0.0616196 0.0564357 32 2620 21 6.87369e+06 544980 586450. 2029.24 1.37 0.234426 0.211059 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0590926 0.0530465 151 93 31 31 92 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.88 vpr 55.40 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 17.1 MiB 2.45 812 13206 3975 7418 1813 56.0 MiB 0.19 0.00 3.26897 -114.681 -3.26897 3.26897 1.10 0.00108392 0.000993278 0.0850913 0.078055 34 2174 27 6.87369e+06 237555 618332. 2139.56 2.02 0.321308 0.287997 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0448786 0.0401443 110 61 32 32 60 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.76 vpr 55.59 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 923 10056 2840 6443 773 55.9 MiB 0.15 0.00 3.6884 -128.712 -3.6884 3.6884 1.13 0.000405948 0.000366752 0.0511513 0.0463937 32 2547 22 6.87369e+06 223581 586450. 2029.24 1.26 0.191901 0.171803 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.26 0.13 0.23 -1 -1 0.26 0.0483064 0.0432727 112 63 32 32 62 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.35 vpr 55.73 MiB 0.07 7076 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 17.4 MiB 2.74 1032 14988 3846 9829 1313 56.1 MiB 0.22 0.00 4.29009 -147.998 -4.29009 4.29009 1.09 0.00130278 0.00119408 0.0834234 0.0763957 34 2540 20 6.87369e+06 558954 618332. 2139.56 4.29 0.428636 0.38496 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0571672 0.0512904 157 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 8.48 vpr 55.82 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 17.5 MiB 2.21 880 11759 2826 8215 718 56.3 MiB 0.18 0.00 3.59605 -112.745 -3.59605 3.59605 1.08 0.00119842 0.00109756 0.0680043 0.0622394 26 2672 41 6.87369e+06 475111 503264. 1741.40 2.51 0.259521 0.232995 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.22 0.14 0.19 -1 -1 0.22 0.0530434 0.0476059 140 62 56 29 58 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.66 vpr 56.02 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58116 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 17.8 MiB 4.91 930 19136 5654 10352 3130 56.8 MiB 0.29 0.00 4.25669 -144.754 -4.25669 4.25669 1.09 0.00145576 0.00132467 0.117157 0.107151 34 2868 25 6.87369e+06 558954 618332. 2139.56 2.66 0.430571 0.386365 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0642893 0.0576968 157 127 0 0 128 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.28 vpr 55.14 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 0.66 801 6501 1452 4525 524 55.3 MiB 0.10 0.00 3.09052 -106.923 -3.09052 3.09052 1.10 0.000927716 0.000847719 0.0378828 0.0348177 32 2327 32 6.87369e+06 223581 586450. 2029.24 1.28 0.170328 0.15258 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.25 0.09 0.24 -1 -1 0.25 0.0368146 0.0329258 104 4 85 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.28 vpr 55.93 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30404 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 17.4 MiB 1.56 977 17961 5555 9821 2585 56.3 MiB 0.27 0.00 4.24789 -140.827 -4.24789 4.24789 1.07 0.00131904 0.00120688 0.106961 0.0978882 34 2366 23 6.87369e+06 517032 618332. 2139.56 2.23 0.38647 0.347304 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0455769 0.0410556 147 92 28 28 92 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.11 vpr 55.75 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.3 MiB 3.97 961 12808 4157 6979 1672 56.1 MiB 0.19 0.00 3.7416 -135.274 -3.7416 3.7416 1.08 0.00118931 0.00108583 0.0914608 0.0837769 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.99 0.330419 0.296459 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0505681 0.0453162 114 96 0 0 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.59 vpr 55.62 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30140 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 17.7 MiB 2.67 1013 13117 3136 9263 718 56.4 MiB 0.20 0.00 3.62407 -127.528 -3.62407 3.62407 1.12 0.00129711 0.00118762 0.0743217 0.0680471 28 2551 39 6.87369e+06 544980 531479. 1839.03 4.91 0.492159 0.440991 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0586254 0.0526483 153 65 61 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.36 vpr 56.08 MiB 0.05 7344 -1 -1 1 0.04 -1 -1 30636 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 18.0 MiB 4.25 1138 14475 3597 10051 827 56.5 MiB 0.24 0.01 4.97494 -166.026 -4.97494 4.97494 1.11 0.00157429 0.00144372 0.0902171 0.0826053 32 3530 43 6.87369e+06 656770 586450. 2029.24 3.19 0.449144 0.403601 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.25 0.18 0.23 -1 -1 0.25 0.0697728 0.0627571 190 96 64 32 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.19 vpr 55.13 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30060 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 16.5 MiB 1.88 613 9036 2242 6211 583 55.1 MiB 0.10 0.00 2.94746 -92.2629 -2.94746 2.94746 1.08 0.000826164 0.000756074 0.0485089 0.0443973 32 1520 24 6.87369e+06 195634 586450. 2029.24 1.18 0.154719 0.137871 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.27 0.06 0.23 -1 -1 0.27 0.0270632 0.0241373 72 56 0 0 53 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 6.80 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30400 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 17.0 MiB 0.88 764 12120 4745 5717 1658 55.6 MiB 0.17 0.00 3.7196 -120.247 -3.7196 3.7196 1.08 0.00100245 0.000919293 0.073641 0.0676216 32 2131 23 6.87369e+06 251529 586450. 2029.24 1.32 0.208901 0.187767 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0417964 0.0374989 109 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.36 vpr 55.49 MiB 0.06 6788 -1 -1 1 0.03 -1 -1 29972 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 1.20 884 12464 4265 6183 2016 55.8 MiB 0.19 0.00 3.52575 -127.584 -3.52575 3.52575 1.12 0.00105951 0.000971489 0.0798827 0.0732865 34 2591 20 6.87369e+06 223581 618332. 2139.56 2.20 0.302826 0.271749 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0454407 0.040734 114 34 64 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.55 vpr 55.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30220 -1 -1 37 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 16.8 MiB 0.70 742 15004 4316 8330 2358 55.4 MiB 0.16 0.00 3.44875 -93.4127 -3.44875 3.44875 1.09 0.000854018 0.000783927 0.0607647 0.0557098 30 1638 20 6.87369e+06 517032 556674. 1926.21 1.16 0.166854 0.149702 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0363373 0.0323751 105 34 50 25 25 25 + fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 9.00 vpr 55.77 MiB 0.05 7084 -1 -1 1 0.04 -1 -1 30456 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.59 1035 11989 3061 8035 893 56.4 MiB 0.22 0.00 4.14459 -143.245 -4.14459 4.14459 1.09 0.0013562 0.001244 0.0907648 0.0832284 34 2922 23 6.87369e+06 293451 618332. 2139.56 2.47 0.381062 0.342383 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0540051 0.0485936 145 94 32 32 94 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.25 vpr 56.01 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30368 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 17.5 MiB 2.48 969 12394 3038 8536 820 56.4 MiB 0.22 0.00 3.62425 -121.977 -3.62425 3.62425 1.09 0.0013258 0.00121371 0.0731911 0.0669092 34 2208 23 6.87369e+06 558954 618332. 2139.56 2.12 0.348828 0.313058 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0563087 0.050581 151 94 29 29 93 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.98 vpr 55.70 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30696 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 17.7 MiB 1.51 1383 18363 6134 9531 2698 56.5 MiB 0.29 0.00 5.11247 -173.262 -5.11247 5.11247 1.11 0.00136889 0.00125589 0.123562 0.113312 36 3373 46 6.89349e+06 408721 648988. 2245.63 2.32 0.406356 0.365566 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0544409 0.0490083 192 96 32 32 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 8.04 vpr 55.62 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 17.3 MiB 1.40 1338 16411 5641 8181 2589 56.2 MiB 0.27 0.00 5.22297 -160.634 -5.22297 5.22297 1.10 0.00128627 0.001179 0.107 0.0981205 36 3246 31 6.89349e+06 408721 648988. 2245.63 3.18 0.406578 0.365169 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.059088 0.0531184 177 91 30 30 89 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.84 vpr 55.46 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1277 15533 4267 9018 2248 56.2 MiB 0.25 0.00 4.0146 -140.879 -4.0146 4.0146 1.11 0.00124275 0.00114037 0.101139 0.0928326 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.72 0.344117 0.309048 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0543935 0.0488254 167 65 54 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.58 vpr 55.38 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1071 16718 5447 9404 1867 55.8 MiB 0.26 0.00 4.53305 -141.516 -4.53305 4.53305 1.09 0.00115246 0.00105837 0.104988 0.0964274 34 2586 28 6.89349e+06 352346 618332. 2139.56 2.31 0.360871 0.324595 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.25 0.12 0.12 -1 -1 0.25 0.0544238 0.0491291 148 34 87 29 29 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.81 vpr 55.50 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30176 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.80 1361 14518 4265 8140 2113 56.1 MiB 0.25 0.00 5.03124 -172.909 -5.03124 5.03124 1.09 0.0012536 0.00115063 0.096697 0.088769 36 3336 26 6.89349e+06 338252 648988. 2245.63 3.02 0.368821 0.331917 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.051755 0.0466229 163 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.74 vpr 55.73 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30272 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 17.3 MiB 1.67 1499 20359 6047 11800 2512 56.2 MiB 0.31 0.00 4.44565 -148.532 -4.44565 4.44565 1.11 0.00130863 0.00119477 0.111076 0.101693 34 3677 25 6.89349e+06 577847 618332. 2139.56 2.42 0.394564 0.354635 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0602492 0.0541408 179 64 63 32 63 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 7.07 vpr 55.34 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.40 730 14528 4147 9388 993 55.4 MiB 0.18 0.00 3.83226 -109.129 -3.83226 3.83226 1.09 0.00092199 0.000846013 0.080196 0.073594 30 2039 26 6.89349e+06 295971 556674. 1926.21 1.26 0.203473 0.183027 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.0348895 0.0312113 112 34 54 27 27 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.95 vpr 55.32 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30068 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.0 MiB 0.71 921 14273 4335 7347 2591 55.9 MiB 0.19 0.00 3.53335 -112.01 -3.53335 3.53335 1.12 0.00110927 0.00101633 0.0732409 0.067169 34 2397 23 6.89349e+06 493284 618332. 2139.56 2.27 0.310785 0.278997 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0435769 0.0392277 141 4 115 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.91 vpr 55.37 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30036 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 16.9 MiB 1.45 1141 14358 3961 8348 2049 55.8 MiB 0.21 0.00 3.63141 -123.531 -3.63141 3.63141 1.08 0.00108759 0.00099754 0.0883532 0.0809961 34 2852 46 6.89349e+06 295971 618332. 2139.56 2.15 0.358428 0.320911 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0178254 0.0158153 140 85 0 0 84 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 8.38 vpr 55.60 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30172 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 16.8 MiB 1.54 873 6923 1573 5100 250 55.4 MiB 0.13 0.00 3.71245 -131.003 -3.71245 3.71245 1.12 0.00106001 0.000971926 0.0437538 0.0401808 34 2505 33 6.89349e+06 267783 618332. 2139.56 2.19 0.287155 0.256707 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.043448 0.038937 127 34 64 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 8.12 vpr 55.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 29956 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.85 942 6923 1677 4944 302 55.8 MiB 0.12 0.00 4.3965 -138.695 -4.3965 4.3965 1.09 0.00105606 0.000968547 0.0434979 0.0398943 34 2532 21 6.89349e+06 295971 618332. 2139.56 2.02 0.265101 0.236665 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0404029 0.0362732 135 63 30 30 60 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.70 vpr 55.42 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 17.1 MiB 1.46 883 15822 6326 7340 2156 56.0 MiB 0.21 0.00 3.8129 -121.35 -3.8129 3.8129 1.09 0.00107698 0.000986947 0.0956625 0.0876655 36 2401 21 6.89349e+06 281877 648988. 2245.63 2.21 0.208253 0.185991 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.28 0.08 0.26 -1 -1 0.28 0.0349059 0.0313245 135 65 25 25 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.61 vpr 55.43 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30156 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 17.3 MiB 1.18 987 17513 5731 7853 3929 56.2 MiB 0.24 0.00 4.23419 -140.25 -4.23419 4.23419 1.09 0.00125968 0.0011549 0.114865 0.105364 38 3008 43 6.89349e+06 352346 678818. 2348.85 5.66 0.434431 0.390421 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0517175 0.0465408 161 58 64 32 57 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.25 vpr 55.73 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30324 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1162 11063 2970 6995 1098 56.2 MiB 0.20 0.00 5.02024 -166.562 -5.02024 5.02024 1.09 0.00130709 0.00119856 0.0738583 0.0677701 36 3019 23 6.89349e+06 394628 648988. 2245.63 5.11 0.513472 0.460421 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0524035 0.0472601 175 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.28 vpr 55.11 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 16.9 MiB 1.28 754 11296 2879 7697 720 55.4 MiB 0.14 0.00 3.61645 -112 -3.61645 3.61645 1.09 0.000927892 0.000851206 0.061432 0.056349 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.56 0.168444 0.149699 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0382689 0.0342084 112 29 58 29 24 24 + fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.65 vpr 55.64 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1259 17315 5682 9212 2421 56.0 MiB 0.30 0.00 4.31019 -146.5 -4.31019 4.31019 1.08 0.00130856 0.00119838 0.118818 0.108724 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.93 0.421214 0.378867 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.26 0.16 0.25 -1 -1 0.26 0.0559457 0.0503326 174 63 64 32 62 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 8.15 vpr 55.36 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30088 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 17.5 MiB 1.12 1183 12365 3291 7811 1263 56.2 MiB 0.21 0.00 3.69045 -130.871 -3.69045 3.69045 1.09 0.00124759 0.00114426 0.0812765 0.0745712 34 2840 24 6.89349e+06 352346 618332. 2139.56 2.09 0.350162 0.314537 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0430797 0.0387803 160 57 64 32 56 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 8.81 vpr 55.70 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 29980 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1015 15395 4903 8010 2482 55.8 MiB 0.23 0.00 3.61051 -123.557 -3.61051 3.61051 1.09 0.00110378 0.00101189 0.0930561 0.0852333 38 2435 45 6.89349e+06 310065 678818. 2348.85 2.16 0.329983 0.295801 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0436179 0.0391263 139 65 29 29 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.15 vpr 54.88 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30008 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 16.6 MiB 0.91 569 8227 1998 5670 559 55.2 MiB 0.09 0.00 3.06366 -95.1937 -3.06366 3.06366 1.08 0.000785957 0.000719875 0.0417056 0.0382333 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.72 0.19894 0.176349 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0306987 0.0272957 85 34 24 24 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 8.29 vpr 55.26 MiB 0.07 7028 -1 -1 1 0.03 -1 -1 30204 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.25 1101 13663 4048 7780 1835 55.9 MiB 0.20 0.00 4.32835 -147.32 -4.32835 4.32835 1.09 0.00108544 0.000994356 0.0826283 0.075713 34 2756 25 6.89349e+06 310065 618332. 2139.56 2.20 0.31735 0.28424 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0428532 0.0383767 141 64 31 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 7.61 vpr 55.39 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30128 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 17.2 MiB 0.88 1052 20112 6009 11047 3056 56.0 MiB 0.28 0.00 4.67003 -155.404 -4.67003 4.67003 1.09 0.00122759 0.00112697 0.104547 0.0958651 34 2792 26 6.89349e+06 563754 618332. 2139.56 2.25 0.372358 0.335067 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0482795 0.0434386 166 34 91 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.24 vpr 55.65 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30424 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 17.7 MiB 1.19 1507 16511 4972 9774 1765 56.6 MiB 0.28 0.00 4.34661 -147.62 -4.34661 4.34661 1.09 0.00141635 0.00129871 0.11316 0.103747 36 3423 27 6.89349e+06 436909 648988. 2245.63 2.45 0.425235 0.381742 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0604197 0.0542048 201 124 0 0 125 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 7.23 vpr 54.97 MiB 0.04 6844 -1 -1 1 0.02 -1 -1 30416 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 16.4 MiB 1.24 692 10476 3888 5359 1229 55.0 MiB 0.11 0.00 2.84541 -81.5212 -2.84541 2.84541 1.08 0.000681952 0.000623278 0.0465168 0.0425616 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.11 0.142382 0.127156 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0200953 0.0179743 77 30 26 26 22 22 + fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.81 vpr 55.14 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30068 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.0 MiB 1.04 1016 9571 2543 6414 614 55.6 MiB 0.16 0.00 4.12784 -139.243 -4.12784 4.12784 1.09 0.00116065 0.0010666 0.0625346 0.0574674 30 2786 37 6.89349e+06 295971 556674. 1926.21 6.83 0.390306 0.34993 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.25 0.12 0.21 -1 -1 0.25 0.0535346 0.0481575 141 3 122 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.13 vpr 54.64 MiB 0.04 6604 -1 -1 1 0.03 -1 -1 30372 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.4 MiB 0.32 514 9356 2285 6456 615 54.8 MiB 0.10 0.00 2.43188 -86.7872 -2.43188 2.43188 1.09 0.000727314 0.000665536 0.0442692 0.0405313 28 1509 16 6.89349e+06 169126 531479. 1839.03 1.17 0.12814 0.114784 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.23 0.07 0.21 -1 -1 0.23 0.0271462 0.0242241 71 3 53 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 7.56 vpr 55.33 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 17.1 MiB 1.25 1097 15929 4551 10101 1277 55.9 MiB 0.27 0.00 4.62958 -159.64 -4.62958 4.62958 1.11 0.00124584 0.00114369 0.103313 0.0949122 30 2755 25 6.89349e+06 352346 556674. 1926.21 1.40 0.270652 0.245017 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451724 0.0407672 161 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.35 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29992 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.9 MiB 0.67 885 10772 2583 7345 844 56.0 MiB 0.17 0.00 3.4709 -116.935 -3.4709 3.4709 1.09 0.00118467 0.00108796 0.0576658 0.0529116 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.44 0.244892 0.220432 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0479959 0.0431734 151 3 124 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.86 vpr 55.67 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30384 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.64 1365 8130 1863 5269 998 56.2 MiB 0.16 0.00 4.69935 -162.091 -4.69935 4.69935 1.10 0.00132339 0.00121653 0.0569596 0.0523617 34 3698 26 6.89349e+06 366440 618332. 2139.56 2.79 0.346041 0.310608 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0564116 0.0508141 174 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.29 vpr 55.23 MiB 0.16 6920 -1 -1 1 0.03 -1 -1 29932 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.68 863 14256 5690 7135 1431 55.4 MiB 0.19 0.00 3.57625 -122.952 -3.57625 3.57625 1.08 0.000996731 0.00091434 0.0839661 0.0769847 36 2395 27 6.89349e+06 239595 648988. 2245.63 4.94 0.395944 0.353557 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0429802 0.0384585 118 34 54 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.81 vpr 55.27 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30168 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1065 12331 4460 6746 1125 55.6 MiB 0.18 0.00 4.27029 -139.911 -4.27029 4.27029 1.08 0.00100928 0.000926212 0.0737705 0.0677089 34 2653 21 6.89349e+06 267783 618332. 2139.56 2.25 0.285551 0.255699 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0396524 0.0355326 121 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.82 vpr 55.13 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 16.7 MiB 1.87 839 10231 2827 6777 627 55.4 MiB 0.16 0.00 4.26535 -126.926 -4.26535 4.26535 1.09 0.00094951 0.000870116 0.0578418 0.0530903 34 2258 25 6.89349e+06 295971 618332. 2139.56 4.11 0.359073 0.319933 25762 151098 -1 1828 19 1146 1838 127720 29375 3.55595 3.55595 -122.712 -3.55595 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0362229 0.0324125 115 34 56 28 28 28 + fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.03 vpr 55.11 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.96 860 14700 5342 7547 1811 55.3 MiB 0.20 0.00 3.60535 -129.612 -3.60535 3.60535 1.09 0.000998987 0.000916923 0.0880782 0.0809076 34 2261 23 6.89349e+06 225501 618332. 2139.56 2.07 0.302199 0.271587 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0408594 0.0368003 114 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.52 vpr 55.23 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 16.7 MiB 1.28 985 14322 4727 7440 2155 55.3 MiB 0.21 0.00 3.69435 -127.028 -3.69435 3.69435 1.08 0.00101964 0.00093562 0.0847504 0.077734 30 2355 32 6.89349e+06 267783 556674. 1926.21 1.32 0.233376 0.210042 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0367137 0.0329514 121 34 61 31 31 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.87 vpr 55.33 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30016 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 16.8 MiB 1.35 1052 14724 4760 7779 2185 55.5 MiB 0.21 0.00 3.57215 -115.596 -3.57215 3.57215 1.10 0.00102399 0.00093978 0.0856234 0.0785513 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.98 0.344654 0.308479 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.036882 0.0330607 130 61 29 29 57 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.53 vpr 55.48 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30420 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1199 18247 5521 9891 2835 56.3 MiB 0.31 0.00 4.73855 -160.484 -4.73855 4.73855 1.09 0.00142695 0.00131267 0.130958 0.120403 34 3612 43 6.89349e+06 380534 618332. 2139.56 3.02 0.414774 0.374503 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0562537 0.0506776 184 29 128 32 27 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.68 vpr 55.85 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30272 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1143 14147 4354 7296 2497 56.2 MiB 0.24 0.00 4.17974 -143.168 -4.17974 4.17974 1.09 0.00130275 0.00119484 0.0966987 0.0887025 34 3686 37 6.89349e+06 352346 618332. 2139.56 2.80 0.399366 0.358303 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0599371 0.0538992 173 65 62 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.49 vpr 55.17 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 17.4 MiB 0.82 1094 14965 4562 8063 2340 56.1 MiB 0.22 0.00 3.67235 -123.222 -3.67235 3.67235 1.09 0.00110506 0.0010105 0.0923466 0.0845122 34 2583 23 6.89349e+06 310065 618332. 2139.56 2.04 0.326399 0.292242 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0434878 0.0389408 143 90 0 0 89 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.43 vpr 55.97 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30332 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 17.6 MiB 2.14 1244 16523 4277 10843 1403 56.2 MiB 0.29 0.00 4.45875 -146.616 -4.45875 4.45875 1.09 0.00126648 0.0011629 0.109036 0.100069 34 3212 33 6.89349e+06 366440 618332. 2139.56 2.39 0.399783 0.359577 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0542891 0.0487985 170 64 60 30 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.85 vpr 55.89 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 17.7 MiB 1.75 1489 17560 4957 10293 2310 56.5 MiB 0.31 0.01 5.02254 -165.43 -5.02254 5.02254 1.09 0.00140753 0.00129067 0.119443 0.109551 34 3603 25 6.89349e+06 436909 618332. 2139.56 2.44 0.359887 0.323515 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0533741 0.0479794 201 124 0 0 124 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 10.73 vpr 55.73 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30260 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 17.5 MiB 2.15 1401 11923 3470 7236 1217 56.4 MiB 0.22 0.00 5.49816 -175.294 -5.49816 5.49816 1.09 0.00130556 0.00119659 0.0797054 0.0730851 34 3760 29 6.89349e+06 394628 618332. 2139.56 8.65 0.605303 0.541596 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.28 0.14 0.24 -1 -1 0.28 0.0541885 0.0487864 181 90 31 31 89 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 8.62 vpr 55.59 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30208 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 17.2 MiB 1.53 1340 14763 4284 8311 2168 56.1 MiB 0.26 0.00 3.76655 -130.012 -3.76655 3.76655 1.09 0.00127831 0.00116647 0.0973254 0.0888877 34 3258 47 6.89349e+06 380534 618332. 2139.56 2.27 0.366235 0.328236 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.25 0.13 0.12 -1 -1 0.25 0.0543267 0.0488639 168 64 60 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.92 vpr 55.23 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1284 16207 4365 9844 1998 56.1 MiB 0.27 0.00 4.62085 -160.706 -4.62085 4.62085 1.08 0.00128894 0.00118268 0.105784 0.0971168 38 2889 43 6.89349e+06 380534 678818. 2348.85 2.56 0.307527 0.27659 26626 170182 -1 2536 20 1893 2539 183204 39509 4.03796 4.03796 -157.104 -4.03796 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0476485 0.0427974 178 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.19 vpr 56.18 MiB 0.06 7228 -1 -1 1 0.03 -1 -1 30496 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 17.8 MiB 1.99 1764 15215 4236 8627 2352 56.2 MiB 0.30 0.01 5.15348 -175.341 -5.15348 5.15348 1.09 0.00157225 0.00144247 0.115243 0.105877 34 4947 37 6.89349e+06 436909 618332. 2139.56 4.58 0.495876 0.445826 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.30 0.20 0.18 -1 -1 0.30 0.0654914 0.0590466 220 96 62 32 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.35 vpr 55.24 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30420 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 822 6743 1455 4759 529 55.5 MiB 0.12 0.00 3.853 -129.297 -3.853 3.853 1.09 0.00103596 0.000951174 0.0422376 0.0388394 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.98 0.285488 0.255118 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0422428 0.0378346 127 34 62 31 31 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.98 vpr 55.50 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30228 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 17.2 MiB 1.50 1294 17376 6419 8627 2330 56.0 MiB 0.29 0.01 5.00234 -161.335 -5.00234 5.00234 1.09 0.00128033 0.00117244 0.114493 0.105011 34 3454 30 6.89349e+06 380534 618332. 2139.56 3.18 0.40471 0.363917 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0551427 0.0496345 168 64 62 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 9.20 vpr 55.67 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1356 15391 5368 7626 2397 56.1 MiB 0.26 0.00 4.39449 -148.549 -4.39449 4.39449 1.09 0.00128612 0.00117975 0.0996391 0.0912512 36 3343 28 6.89349e+06 380534 648988. 2245.63 3.06 0.387 0.347517 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0486113 0.0437863 172 63 62 32 62 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.01 vpr 55.45 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 1.16 953 14407 3720 10033 654 55.7 MiB 0.23 0.00 4.3344 -147.594 -4.3344 4.3344 1.08 0.00119106 0.00109412 0.0950427 0.0872857 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.86 0.354269 0.318805 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0503135 0.0452521 147 3 128 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.25 vpr 55.76 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 17.7 MiB 1.42 1279 18101 5797 9598 2706 56.4 MiB 0.30 0.00 4.41459 -148.068 -4.41459 4.41459 1.09 0.00131683 0.00120707 0.118971 0.109103 34 3456 36 6.89349e+06 394628 618332. 2139.56 2.54 0.429009 0.385815 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0459154 0.0413705 184 96 25 25 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.82 vpr 55.71 MiB 0.06 7016 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1221 17635 5673 8836 3126 56.3 MiB 0.26 0.00 4.28929 -146.442 -4.28929 4.28929 1.11 0.00128457 0.00117812 0.114266 0.104817 36 3258 26 6.89349e+06 380534 648988. 2245.63 2.43 0.313952 0.28247 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0613249 0.0551254 169 61 64 32 60 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.42 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.3 MiB 1.54 1303 7027 1560 5110 357 56.2 MiB 0.15 0.00 3.72045 -130.455 -3.72045 3.72045 1.09 0.00130943 0.00120185 0.048371 0.0443903 34 3432 32 6.89349e+06 380534 618332. 2139.56 2.40 0.351655 0.315636 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0498393 0.0449185 175 65 63 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.25 vpr 55.33 MiB 0.05 7020 -1 -1 1 0.04 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.48 1190 14518 4171 8562 1785 56.1 MiB 0.24 0.00 4.63815 -161.109 -4.63815 4.63815 1.09 0.00124974 0.00114671 0.0956139 0.0877817 34 2867 24 6.89349e+06 338252 618332. 2139.56 2.30 0.362923 0.326283 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0491654 0.0443053 161 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.86 vpr 55.58 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.18 1201 13351 3240 8446 1665 56.2 MiB 0.22 0.00 4.60525 -158.398 -4.60525 4.60525 1.08 0.00130803 0.0012003 0.0889713 0.081623 36 3088 18 6.89349e+06 380534 648988. 2245.63 4.98 0.491722 0.441103 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.28 0.13 0.27 -1 -1 0.28 0.0556249 0.050024 177 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.88 vpr 55.80 MiB 0.07 7292 -1 -1 1 0.03 -1 -1 30276 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 17.5 MiB 1.17 1470 18625 5270 10765 2590 56.2 MiB 0.31 0.01 5.00359 -155.604 -5.00359 5.00359 1.08 0.00139104 0.00127576 0.124965 0.114594 34 3523 29 6.89349e+06 436909 618332. 2139.56 2.38 0.434487 0.390182 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0600898 0.0541227 195 122 0 0 122 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.20 vpr 55.93 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 17.5 MiB 2.41 1648 15391 4130 9133 2128 56.3 MiB 0.28 0.01 4.77885 -161.828 -4.77885 4.77885 1.09 0.00136045 0.00124719 0.106623 0.0977718 36 3608 22 6.89349e+06 380534 648988. 2245.63 4.75 0.466559 0.41752 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0585695 0.0526883 190 94 32 32 94 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.73 vpr 55.03 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1067 16081 5068 9178 1835 55.6 MiB 0.23 0.00 3.68745 -131.866 -3.68745 3.68745 1.10 0.00105294 0.00096593 0.093125 0.0854001 34 2400 20 6.89349e+06 295971 618332. 2139.56 2.08 0.309355 0.277793 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0376215 0.0337705 127 34 63 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.10 vpr 55.59 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1122 7711 1541 6020 150 55.9 MiB 0.14 0.00 4.29439 -143.523 -4.29439 4.29439 1.12 0.00116796 0.00106959 0.0514201 0.0470992 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.06 0.304549 0.271604 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.044221 0.0397047 154 94 0 0 94 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.87 vpr 55.89 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30788 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 17.7 MiB 1.60 1537 17347 5978 9037 2332 56.6 MiB 0.36 0.01 5.35709 -181.872 -5.35709 5.35709 1.12 0.00152315 0.00139855 0.127188 0.116848 38 3731 22 6.89349e+06 422815 678818. 2348.85 2.37 0.37723 0.340825 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0627866 0.0566334 209 65 96 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 9.12 vpr 55.66 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.63 1176 14295 4272 7910 2113 56.1 MiB 0.24 0.00 3.7808 -134.415 -3.7808 3.7808 1.09 0.00123057 0.00112515 0.0947122 0.0869107 34 2997 45 6.89349e+06 324158 618332. 2139.56 3.00 0.402892 0.361698 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.26 0.15 0.25 -1 -1 0.26 0.0575797 0.0517842 156 34 92 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 7.85 vpr 55.17 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 17.0 MiB 1.01 932 11809 3108 7963 738 55.6 MiB 0.17 0.00 4.33203 -134.423 -4.33203 4.33203 1.09 0.00100618 0.000923045 0.0586693 0.0537704 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.92 0.266286 0.238039 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.040118 0.0359259 129 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 11.33 vpr 56.06 MiB 0.05 7380 -1 -1 1 0.04 -1 -1 30940 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 18.0 MiB 1.63 1787 18111 5206 10704 2201 56.3 MiB 0.36 0.01 5.73258 -193.193 -5.73258 5.73258 1.09 0.00162988 0.00149502 0.133375 0.12236 36 4099 45 6.89349e+06 493284 648988. 2245.63 3.85 0.455695 0.408907 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0701517 0.0631746 239 127 32 32 128 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.61 vpr 55.50 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.25 1091 13143 3864 7923 1356 56.2 MiB 0.23 0.00 4.41749 -154.465 -4.41749 4.41749 1.09 0.00126244 0.00115915 0.0921316 0.0845973 34 2892 26 6.89349e+06 324158 618332. 2139.56 2.33 0.365643 0.32913 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.051862 0.0467176 159 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.85 vpr 55.09 MiB 0.05 6700 -1 -1 1 0.04 -1 -1 30164 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.6 MiB 0.52 849 10087 2557 6780 750 55.2 MiB 0.15 0.00 3.73565 -131.011 -3.73565 3.73565 1.11 0.00102424 0.000940448 0.0484455 0.0444971 30 2269 22 6.89349e+06 465097 556674. 1926.21 1.31 0.175297 0.157406 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.037593 0.0337028 123 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 9.46 vpr 55.50 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30816 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 17.7 MiB 1.74 1275 12273 3390 7733 1150 56.4 MiB 0.24 0.00 5.39711 -179.414 -5.39711 5.39711 1.09 0.0014575 0.00134056 0.089363 0.0822349 34 3822 27 6.89349e+06 408721 618332. 2139.56 3.26 0.343587 0.309359 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0631185 0.0568883 194 34 128 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 6.44 vpr 55.20 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 0.74 787 10056 2193 7590 273 55.5 MiB 0.15 0.00 3.8468 -135.678 -3.8468 3.8468 1.09 0.000999332 0.000917136 0.0603931 0.0554682 34 2224 26 6.89349e+06 225501 618332. 2139.56 2.16 0.276526 0.247677 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0439163 0.0394186 114 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.99 vpr 55.29 MiB 0.06 6920 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.7 MiB 1.08 801 8131 1824 5536 771 55.3 MiB 0.12 0.00 3.71635 -120.03 -3.71635 3.71635 1.09 0.00101184 0.000927559 0.0494515 0.0454071 36 2120 22 6.89349e+06 267783 648988. 2245.63 4.76 0.349204 0.31149 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0379791 0.0340425 121 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.30 vpr 55.68 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30164 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1254 15203 3953 9019 2231 56.3 MiB 0.24 0.00 4.1318 -129.307 -4.1318 4.1318 1.12 0.00124063 0.00113748 0.0945359 0.0866537 34 2921 25 6.89349e+06 436909 618332. 2139.56 2.20 0.366711 0.329456 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0212634 0.018888 171 88 29 29 85 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.69 vpr 55.78 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30496 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1381 16974 4929 9664 2381 56.1 MiB 0.25 0.00 5.29596 -177.687 -5.29596 5.29596 1.09 0.00130373 0.00119607 0.114648 0.105129 36 3381 23 6.89349e+06 366440 648988. 2245.63 2.68 0.394291 0.354428 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0563627 0.0507202 178 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.72 vpr 55.70 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30600 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.5 MiB 1.50 1376 18180 6112 9250 2818 56.5 MiB 0.28 0.01 5.13064 -174.448 -5.13064 5.13064 1.07 0.00131112 0.00120263 0.0947669 0.0865421 34 3618 39 6.89349e+06 366440 618332. 2139.56 2.80 0.405032 0.363419 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.053927 0.0485617 175 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.73 vpr 55.24 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 17.0 MiB 1.12 1013 14221 3579 9597 1045 56.0 MiB 0.21 0.00 4.30029 -147.314 -4.30029 4.30029 1.09 0.00111044 0.00101824 0.0881833 0.0808069 34 2793 24 6.89349e+06 295971 618332. 2139.56 2.35 0.323991 0.290391 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419937 0.0376607 141 65 32 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.44 vpr 55.58 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 17.1 MiB 1.50 1168 10501 2617 6825 1059 55.9 MiB 0.18 0.00 4.23729 -139.76 -4.23729 4.23729 1.11 0.00137437 0.00127647 0.0708424 0.0650004 34 2811 21 6.89349e+06 310065 618332. 2139.56 2.10 0.269718 0.240718 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456469 0.0408783 146 90 0 0 89 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 8.35 vpr 55.36 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30256 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 17.0 MiB 1.70 1158 18043 5948 9235 2860 55.9 MiB 0.27 0.00 3.9471 -130.183 -3.9471 3.9471 1.08 0.00122519 0.00112439 0.11169 0.102532 36 2742 19 6.89349e+06 408721 648988. 2245.63 2.37 0.362352 0.326176 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.28 0.10 0.26 -1 -1 0.28 0.0413773 0.0369874 164 60 60 30 57 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 7.08 vpr 55.29 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30336 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 17.0 MiB 1.11 970 11031 2869 6600 1562 55.9 MiB 0.16 0.00 4.51585 -132.654 -4.51585 4.51585 1.11 0.00111305 0.00102216 0.0667786 0.0613647 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.41 0.209629 0.188964 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0458097 0.041161 145 34 84 28 28 28 + fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.56 vpr 55.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 29948 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 16.9 MiB 1.78 1087 9083 2557 5800 726 55.8 MiB 0.15 0.00 4.36859 -139.508 -4.36859 4.36859 1.09 0.00106209 0.000973869 0.0563589 0.051678 36 2461 21 6.89349e+06 295971 648988. 2245.63 2.12 0.228674 0.204922 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0385918 0.0346276 136 63 30 30 60 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.96 vpr 55.76 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 17.2 MiB 1.55 1180 8827 2269 5871 687 56.0 MiB 0.16 0.01 3.8008 -130.21 -3.8008 3.8008 1.07 0.00158299 0.00142968 0.0579837 0.0530433 34 2947 27 6.89349e+06 295971 618332. 2139.56 2.31 0.264166 0.236237 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0432588 0.0387779 150 91 0 0 91 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.79 vpr 55.23 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.66 1032 15180 4497 8229 2454 55.8 MiB 0.22 0.00 4.35445 -144.691 -4.35445 4.35445 1.09 0.00117601 0.00108136 0.0795239 0.0730612 28 3116 24 6.89349e+06 521472 531479. 1839.03 2.63 0.222983 0.201123 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0514867 0.046279 151 4 124 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.37 vpr 55.52 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30536 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1263 12351 3110 8140 1101 56.1 MiB 0.22 0.00 4.78058 -162.367 -4.78058 4.78058 1.09 0.00131769 0.0012077 0.0840691 0.0770435 34 3370 34 6.89349e+06 366440 618332. 2139.56 2.56 0.388503 0.348521 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.27 0.10 0.21 -1 -1 0.27 0.0389661 0.0348911 173 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.13 vpr 55.86 MiB 0.07 7176 -1 -1 1 0.03 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1405 10743 3107 6650 986 56.2 MiB 0.20 0.01 4.9601 -169.723 -4.9601 4.9601 1.11 0.00131492 0.00120643 0.0720409 0.065997 36 3352 21 6.89349e+06 366440 648988. 2245.63 3.60 0.358137 0.322067 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.30 0.16 0.25 -1 -1 0.30 0.0608626 0.054749 171 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.15 vpr 55.64 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 17.5 MiB 1.61 1306 10087 2279 7315 493 56.3 MiB 0.19 0.01 4.3224 -145.723 -4.3224 4.3224 1.08 0.00129052 0.00118486 0.0668803 0.0614013 34 4019 38 6.89349e+06 380534 618332. 2139.56 3.47 0.371649 0.333465 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0554955 0.0499365 172 65 60 30 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.73 vpr 55.37 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30232 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.51 814 9181 2458 5686 1037 55.5 MiB 0.15 0.00 3.809 -121.257 -3.809 3.809 1.08 0.00100824 0.000924304 0.0557543 0.0511823 34 2414 23 6.89349e+06 267783 618332. 2139.56 2.16 0.269852 0.241306 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0365064 0.0327872 122 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 8.79 vpr 56.03 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30300 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 17.5 MiB 2.06 1287 12568 3293 7724 1551 56.2 MiB 0.21 0.00 5.05854 -160.711 -5.05854 5.05854 1.09 0.00125387 0.00115149 0.0843199 0.0774406 34 3215 23 6.89349e+06 366440 618332. 2139.56 2.50 0.340498 0.306093 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.0222602 0.0197516 165 63 60 30 60 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.25 vpr 55.67 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30764 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57884 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 17.7 MiB 1.06 1479 11383 3062 7492 829 56.5 MiB 0.21 0.00 4.57601 -155.587 -4.57601 4.57601 1.09 0.00143785 0.00131832 0.080564 0.0738535 36 3485 21 6.89349e+06 422815 648988. 2245.63 4.99 0.520318 0.465343 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0610931 0.0546763 204 127 0 0 128 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.41 vpr 55.45 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30696 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1301 16445 5093 9336 2016 56.2 MiB 0.28 0.00 5.17904 -171.173 -5.17904 5.17904 1.08 0.00132261 0.00121214 0.108678 0.0996245 36 3067 22 6.89349e+06 408721 648988. 2245.63 4.95 0.508678 0.456582 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0546629 0.0492368 186 94 31 31 93 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.88 vpr 56.05 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 17.3 MiB 1.90 1252 12351 3368 8179 804 56.2 MiB 0.22 0.00 4.25135 -136.296 -4.25135 4.25135 1.08 0.00127 0.00116465 0.081697 0.0748844 34 3685 43 6.89349e+06 394628 618332. 2139.56 3.15 0.346071 0.310579 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0500565 0.0450053 175 92 26 26 90 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.52 vpr 55.81 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30440 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.1 MiB 1.62 1349 14160 4180 8412 1568 56.1 MiB 0.25 0.00 5.11687 -171.214 -5.11687 5.11687 1.08 0.001269 0.00116058 0.0954561 0.087521 34 3581 27 6.89349e+06 366440 618332. 2139.56 2.91 0.385601 0.34695 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0522007 0.047049 177 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 8.00 vpr 55.58 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30184 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1337 17431 5595 9274 2562 56.0 MiB 0.20 0.00 4.49555 -136.793 -4.49555 4.49555 1.10 0.00122769 0.00112596 0.066125 0.0603478 34 3073 24 6.89349e+06 422815 618332. 2139.56 2.20 0.331232 0.296619 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0506274 0.0454793 170 88 26 26 85 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.67 vpr 55.18 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.49 851 10744 3065 7267 412 55.3 MiB 0.16 0.00 3.7888 -133.854 -3.7888 3.7888 1.08 0.000996222 0.000914601 0.0649002 0.0595895 34 2305 21 6.89349e+06 225501 618332. 2139.56 2.05 0.2735 0.245129 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0378247 0.0339311 114 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 9.06 vpr 55.76 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 17.3 MiB 1.42 1266 16411 5685 8276 2450 56.3 MiB 0.28 0.00 5.17997 -174.972 -5.17997 5.17997 1.09 0.00132604 0.00121422 0.109804 0.100525 34 3964 24 6.89349e+06 380534 618332. 2139.56 3.37 0.398108 0.357985 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0563244 0.0507129 174 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 10.05 vpr 55.77 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 17.6 MiB 2.37 1294 9791 2343 6863 585 56.2 MiB 0.19 0.00 5.01095 -168.663 -5.01095 5.01095 1.08 0.00132154 0.00121336 0.066427 0.0609533 34 3734 27 6.89349e+06 352346 618332. 2139.56 3.10 0.355716 0.319354 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.28 0.16 0.24 -1 -1 0.28 0.0554544 0.0499788 176 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.71 vpr 55.19 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30304 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 971 13043 4021 6975 2047 55.7 MiB 0.19 0.00 3.51612 -116.281 -3.51612 3.51612 1.09 0.001033 0.000946224 0.0801956 0.0734596 34 2366 21 6.89349e+06 267783 618332. 2139.56 2.07 0.301933 0.269661 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405084 0.0363058 128 55 32 32 54 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.57 vpr 55.08 MiB 0.05 6776 -1 -1 1 0.03 -1 -1 30260 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.0 MiB 0.67 734 11604 2641 7381 1582 55.5 MiB 0.16 0.00 3.8218 -128.161 -3.8218 3.8218 1.09 0.000980043 0.000900155 0.0685767 0.0630281 32 2249 20 6.89349e+06 239595 586450. 2029.24 1.28 0.189069 0.170303 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0397498 0.0355595 112 4 93 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 8.38 vpr 55.54 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 17.4 MiB 1.29 1234 14147 4178 8444 1525 56.2 MiB 0.23 0.00 4.31849 -141.833 -4.31849 4.31849 1.08 0.00124301 0.0011412 0.0920639 0.0844442 34 3001 25 6.89349e+06 352346 618332. 2139.56 2.25 0.362835 0.326393 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0551296 0.0495841 158 59 60 32 58 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.14 vpr 55.73 MiB 0.06 7104 -1 -1 1 0.03 -1 -1 30216 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1314 10341 2747 6842 752 56.0 MiB 0.19 0.01 5.10864 -160.907 -5.10864 5.10864 1.09 0.00128119 0.00117403 0.0705993 0.0646762 34 3382 28 6.89349e+06 366440 618332. 2139.56 2.66 0.361719 0.324473 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0528448 0.0476058 170 88 28 28 88 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.63 vpr 55.45 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.3 MiB 0.73 1292 15419 3797 10101 1521 56.2 MiB 0.25 0.01 4.85078 -164.688 -4.85078 4.85078 1.11 0.00136602 0.00125634 0.0893361 0.082034 34 3291 24 6.89349e+06 577847 618332. 2139.56 2.67 0.382748 0.345095 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0586736 0.0529735 183 3 156 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.27 vpr 55.33 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30356 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1124 9395 2323 6078 994 56.2 MiB 0.16 0.00 3.8961 -125.22 -3.8961 3.8961 1.09 0.00120379 0.00110474 0.0602169 0.0552565 34 2687 35 6.89349e+06 380534 618332. 2139.56 2.29 0.338951 0.303629 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051632 0.0463934 160 59 60 30 56 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.42 vpr 55.05 MiB 0.06 6960 -1 -1 1 0.03 -1 -1 30424 -1 -1 22 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 915 13031 5095 6351 1585 55.1 MiB 0.17 0.00 4.34539 -126.288 -4.34539 4.34539 1.09 0.00092097 0.000844866 0.0714774 0.0656212 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.94 0.260402 0.233169 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0360837 0.0322635 112 34 54 27 27 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.25 vpr 56.22 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30416 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 17.8 MiB 1.58 1748 16302 4126 10044 2132 56.4 MiB 0.34 0.01 5.09354 -170.611 -5.09354 5.09354 1.09 0.00156689 0.00143787 0.115255 0.105667 34 4285 25 6.89349e+06 451003 618332. 2139.56 3.18 0.45793 0.412026 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0672702 0.0606111 219 95 62 31 95 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.65 vpr 55.59 MiB 0.04 7276 -1 -1 1 0.03 -1 -1 30436 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 17.6 MiB 1.95 1467 12661 2948 8528 1185 56.5 MiB 0.25 0.00 5.14784 -166.315 -5.14784 5.14784 1.15 0.00140194 0.00128578 0.0926005 0.0850475 36 3334 29 6.89349e+06 436909 648988. 2245.63 5.38 0.571313 0.511139 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0556775 0.0501013 201 124 0 0 124 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.16 vpr 55.40 MiB 0.02 7036 -1 -1 1 0.02 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 17.3 MiB 1.79 1133 9914 2313 7132 469 56.1 MiB 0.16 0.00 4.28535 -139.234 -4.28535 4.28535 1.09 0.00112622 0.00103138 0.0620172 0.0567627 34 3076 43 6.89349e+06 310065 618332. 2139.56 2.56 0.338411 0.302184 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0426553 0.0382436 150 89 0 0 89 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.25 vpr 55.34 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30224 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.56 1114 12951 3612 7720 1619 56.1 MiB 0.22 0.00 4.53785 -150.754 -4.53785 4.53785 1.09 0.00121587 0.00111611 0.0853887 0.0784129 34 2799 24 6.89349e+06 324158 618332. 2139.56 2.14 0.350699 0.315667 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0482091 0.0434212 151 34 90 30 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 8.12 vpr 55.82 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30572 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 17.6 MiB 1.42 1475 19413 5609 11709 2095 56.4 MiB 0.35 0.01 4.64537 -154.979 -4.64537 4.64537 1.09 0.00144552 0.00131788 0.136575 0.125321 34 3553 32 6.89349e+06 422815 618332. 2139.56 2.53 0.467214 0.420492 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0662385 0.0597017 193 64 87 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.06 vpr 55.57 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30356 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 17.2 MiB 1.70 1223 16773 5429 8542 2802 56.0 MiB 0.26 0.00 4.28025 -135.791 -4.28025 4.28025 1.09 0.00120646 0.00110665 0.104019 0.0953862 36 2894 24 6.89349e+06 394628 648988. 2245.63 2.48 0.362663 0.325817 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0455944 0.0409159 162 61 58 30 58 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 9.03 vpr 55.77 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 17.2 MiB 1.34 1373 17066 5393 8866 2807 56.2 MiB 0.32 0.00 5.03124 -168.563 -5.03124 5.03124 1.11 0.00130489 0.00119569 0.114383 0.104809 34 3693 35 6.89349e+06 394628 618332. 2139.56 3.08 0.423254 0.380489 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.26 0.14 0.26 -1 -1 0.26 0.0565055 0.0508795 173 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 9.65 vpr 55.79 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30256 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57644 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.4 MiB 1.69 1418 13147 3928 7969 1250 56.3 MiB 0.23 0.01 3.78872 -134.171 -3.78872 3.78872 1.10 0.00165544 0.00153095 0.0894017 0.0820227 34 3370 23 6.89349e+06 380534 618332. 2139.56 2.33 0.364967 0.327888 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.26 0.13 0.26 -1 -1 0.26 0.054382 0.0489921 175 65 63 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 7.07 vpr 55.32 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 1.16 802 14322 5252 6511 2559 55.3 MiB 0.19 0.00 3.809 -119.785 -3.809 3.809 0.76 0.000982051 0.000901084 0.0815792 0.0749142 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.91 0.288328 0.25819 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0368065 0.0329674 118 34 58 29 29 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.91 vpr 55.52 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 17.0 MiB 1.06 1059 7038 1561 5080 397 55.5 MiB 0.12 0.00 4.31213 -129.707 -4.31213 4.31213 1.09 0.00106543 0.000975409 0.0437521 0.0400533 34 2689 32 6.89349e+06 281877 618332. 2139.56 2.38 0.28569 0.254486 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0373944 0.033602 136 82 0 0 82 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.00 vpr 55.47 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30460 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 17.1 MiB 1.26 1144 15255 6301 7544 1410 55.9 MiB 0.24 0.00 4.60015 -151.135 -4.60015 4.60015 1.08 0.00122223 0.00112177 0.0968273 0.0887116 36 2816 23 6.89349e+06 338252 648988. 2245.63 5.06 0.471461 0.423082 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0463702 0.0417816 154 34 93 31 31 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.47 vpr 55.15 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30332 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 16.7 MiB 1.12 955 13610 4945 6467 2198 55.3 MiB 0.19 0.00 3.4839 -106.878 -3.4839 3.4839 1.09 0.000975979 0.000894182 0.0791014 0.0724981 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.95 0.287517 0.257116 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0349151 0.0312405 123 56 29 29 52 26 + fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 8.27 vpr 55.07 MiB 0.04 6752 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 16.8 MiB 1.65 1000 12186 3922 6390 1874 55.4 MiB 0.20 0.00 3.839 -135.657 -3.839 3.839 1.11 0.00106518 0.00097665 0.0836756 0.0767115 34 2613 22 6.89349e+06 253689 618332. 2139.56 2.30 0.308519 0.276612 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.046297 0.0414268 127 34 64 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 8.09 vpr 55.59 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 17.3 MiB 1.51 1201 16773 5048 9300 2425 56.1 MiB 0.27 0.00 4.20938 -143.511 -4.20938 4.20938 1.09 0.00126058 0.00115708 0.110245 0.101123 36 2859 23 6.89349e+06 380534 648988. 2245.63 2.78 0.378429 0.340299 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0537475 0.048345 164 64 58 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.80 vpr 55.02 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 1.31 877 7953 1966 5579 408 55.4 MiB 0.12 0.00 3.31212 -108.619 -3.31212 3.31212 1.09 0.00101911 0.000930005 0.0467043 0.0428072 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.96 0.260412 0.232318 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0366874 0.032865 125 55 31 31 53 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.79 vpr 55.64 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 17.3 MiB 1.46 1287 17711 6388 9306 2017 56.0 MiB 0.31 0.00 4.20729 -140.905 -4.20729 4.20729 1.11 0.00123482 0.00113152 0.118512 0.108567 34 3044 21 6.89349e+06 352346 618332. 2139.56 2.60 0.378875 0.340952 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0493652 0.044415 162 65 52 26 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.06 vpr 55.88 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30184 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 17.6 MiB 1.64 1441 16921 4862 9627 2432 56.3 MiB 0.30 0.00 5.00842 -163.951 -5.00842 5.00842 1.10 0.00133268 0.00121993 0.109683 0.100391 36 3492 23 6.89349e+06 436909 648988. 2245.63 3.27 0.395273 0.355127 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.30 0.14 0.26 -1 -1 0.30 0.0440489 0.0392221 185 93 31 31 92 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.33 vpr 55.62 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.29 1150 11245 3095 6987 1163 55.8 MiB 0.17 0.00 3.53115 -123.245 -3.53115 3.53115 1.08 0.00105584 0.000966267 0.068317 0.0625923 34 2943 19 6.89349e+06 295971 618332. 2139.56 2.39 0.290938 0.26024 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0374803 0.0336655 137 61 32 32 60 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.96 vpr 55.12 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.18 1121 13443 3684 8167 1592 56.1 MiB 0.21 0.00 3.817 -131.483 -3.817 3.817 1.12 0.00110775 0.00101467 0.0839381 0.076901 34 2949 27 6.89349e+06 281877 618332. 2139.56 2.44 0.327997 0.293909 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456433 0.0409209 139 63 32 32 62 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.65 vpr 55.34 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30620 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.30 1272 13147 3375 7731 2041 56.2 MiB 0.22 0.00 4.61515 -160.202 -4.61515 4.61515 1.11 0.00130029 0.00119203 0.0876541 0.0803849 36 3093 23 6.89349e+06 380534 648988. 2245.63 2.69 0.372583 0.335185 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.24 0.07 0.13 -1 -1 0.24 0.029553 0.0264522 178 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 8.30 vpr 55.59 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30428 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 17.2 MiB 1.46 1161 15639 4794 8641 2204 55.9 MiB 0.25 0.00 3.67945 -117.378 -3.67945 3.67945 1.10 0.00119996 0.00110142 0.100791 0.0924976 30 2520 23 6.89349e+06 366440 556674. 1926.21 1.33 0.254983 0.230021 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0452376 0.0406706 157 62 56 29 58 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.42 vpr 55.81 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30540 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 17.8 MiB 1.24 1517 16893 4857 9388 2648 56.5 MiB 0.29 0.00 4.97404 -168.093 -4.97404 4.97404 1.08 0.00144341 0.00132428 0.119725 0.109751 36 3623 47 6.89349e+06 408721 648988. 2245.63 2.89 0.482717 0.432985 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0622312 0.0558943 203 127 0 0 128 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.93 vpr 55.14 MiB 0.04 6816 -1 -1 1 0.03 -1 -1 30164 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.7 MiB 0.53 803 5149 1186 3599 364 55.4 MiB 0.08 0.00 2.99217 -104.791 -2.99217 2.99217 1.08 0.000928555 0.000852928 0.030521 0.0280694 30 2012 19 6.89349e+06 225501 556674. 1926.21 1.21 0.142973 0.128065 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0395679 0.0353567 104 4 85 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.82 vpr 56.04 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30252 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 17.2 MiB 1.45 1396 18101 5815 9868 2418 56.2 MiB 0.29 0.00 5.41163 -177.078 -5.41163 5.41163 1.09 0.0013281 0.0012184 0.11985 0.109888 34 3746 48 6.89349e+06 394628 618332. 2139.56 2.72 0.458309 0.411863 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0566334 0.0509007 179 92 28 28 92 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.60 vpr 55.97 MiB 0.05 6876 -1 -1 1 0.04 -1 -1 29992 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1193 17248 5142 9796 2310 56.0 MiB 0.27 0.00 4.89074 -162.672 -4.89074 4.89074 1.08 0.00118909 0.00108889 0.108382 0.0992639 36 3213 26 6.89349e+06 338252 648988. 2245.63 5.41 0.485078 0.434278 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0511288 0.0458688 161 96 0 0 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 8.40 vpr 55.50 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.60 1163 10187 2742 6187 1258 56.2 MiB 0.18 0.00 3.75965 -128.904 -3.75965 3.75965 1.10 0.0012926 0.00118584 0.0699471 0.0641767 34 3025 27 6.89349e+06 352346 618332. 2139.56 2.23 0.355152 0.318879 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0488732 0.0440051 170 65 61 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.90 vpr 56.08 MiB 0.05 7292 -1 -1 1 0.04 -1 -1 30636 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1578 21409 7235 11132 3042 56.0 MiB 0.36 0.01 5.18464 -176.869 -5.18464 5.18464 1.12 0.00157643 0.00144788 0.128716 0.117997 36 3817 25 6.89349e+06 465097 648988. 2245.63 3.87 0.48275 0.43468 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0695126 0.062584 224 96 64 32 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.52 vpr 54.93 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 29948 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 0.97 774 12860 4018 7384 1458 55.2 MiB 0.14 0.00 3.08706 -94.2237 -3.08706 3.08706 1.09 0.000820142 0.000750211 0.0660086 0.0604088 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.74 0.233137 0.207128 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.26 0.05 0.25 -1 -1 0.26 0.0255526 0.0227796 93 56 0 0 53 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 7.07 vpr 55.38 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30312 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 16.7 MiB 1.04 936 13763 4663 7110 1990 55.4 MiB 0.19 0.00 4.23979 -138.497 -4.23979 4.23979 1.09 0.00100287 0.000919115 0.0793302 0.0727941 34 2090 22 6.89349e+06 295971 618332. 2139.56 2.00 0.290228 0.259714 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442889 0.0396072 124 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.45 vpr 55.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 29920 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 16.8 MiB 1.93 1009 8448 2021 6048 379 55.4 MiB 0.15 0.00 4.33609 -148.866 -4.33609 4.33609 1.13 0.00106811 0.000979928 0.052345 0.0479884 36 2726 23 6.89349e+06 253689 648988. 2245.63 3.09 0.275449 0.246391 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0472281 0.0422791 129 34 64 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.80 vpr 55.16 MiB 0.07 6936 -1 -1 1 0.03 -1 -1 30280 -1 -1 24 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 16.7 MiB 1.12 636 10231 2621 6138 1472 55.1 MiB 0.14 0.00 3.787 -96.2626 -3.787 3.787 1.09 0.000858878 0.000788419 0.0526702 0.0483437 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.90 0.23155 0.206486 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.28 0.08 0.24 -1 -1 0.28 0.035311 0.0314398 107 34 50 25 25 25 + fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.79 vpr 55.65 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30308 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 17.5 MiB 2.33 1453 17273 5845 8574 2854 56.2 MiB 0.31 0.01 4.55715 -154.068 -4.55715 4.55715 1.09 0.00135973 0.00124667 0.11696 0.107233 38 3543 25 6.89349e+06 394628 678818. 2348.85 5.56 0.518162 0.464115 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.29 0.15 0.29 -1 -1 0.29 0.0623778 0.056352 190 94 32 32 94 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 9.15 vpr 56.19 MiB 0.11 7080 -1 -1 1 0.64 -1 -1 30056 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1285 13758 3623 8223 1912 56.2 MiB 0.24 0.00 4.84654 -156.987 -4.84654 4.84654 0.94 0.00133329 0.00122224 0.0946318 0.0867577 34 3577 46 6.89349e+06 380534 618332. 2139.56 2.58 0.376091 0.337973 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.26 0.18 0.24 -1 -1 0.26 0.0702979 0.063149 183 94 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt index 2bb30eae419..233cfb38979 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt @@ -1,41 +1,41 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k4_n4_v7_bidir.xml alu4.blif common 17.97 vpr 69.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70788 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.6 MiB 0.29 14174 69.1 MiB 1.05 0.01 13.4464 -91.906 -13.4464 nan 1.36 0.00347385 0.00290782 0.247999 0.211234 28 20910 32 1.452e+07 1.425e+07 -1 -1 10.82 1.44391 1.22437 21174 279108 -1 19878 20 7201 27995 2276505 212795 0 0 2276505 212795 16951 11554 0 0 31392 28016 0 0 50562 32519 0 0 53034 24138 0 0 1089394 57817 0 0 1035172 58751 0 0 16951 0 0 12554 113703 115472 357504 11933 2267 18 nan -109.749 -18 0 0 -1 -1 0.57 0.72 0.17 -1 -1 0.57 0.18904 0.168713 -k4_n4_v7_bidir.xml apex2.blif common 22.29 vpr 72.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74632 38 3 1916 1919 0 1509 641 27 27 729 clb auto 35.0 MiB 0.38 19839 72.9 MiB 1.44 0.02 14.9286 -44.0658 -14.9286 nan 1.71 0.00447423 0.0037738 0.318034 0.271255 31 29152 43 1.875e+07 1.8e+07 -1 -1 13.08 1.89132 1.61731 28210 394495 -1 28088 18 10308 35327 3215747 279851 0 0 3215747 279851 29720 16267 0 0 39742 35335 0 0 61341 40948 0 0 80107 33828 0 0 1543669 76168 0 0 1461168 77305 0 0 29720 0 0 24742 194098 209672 870568 6388 201 17.3073 nan -51.5022 -17.3073 0 0 -1 -1 0.80 0.88 0.22 -1 -1 0.80 0.204316 0.178519 -k4_n4_v7_bidir.xml apex4.blif common 20.47 vpr 67.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68812 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.6 MiB 0.24 13522 67.2 MiB 0.88 0.01 12.9459 -210.249 -12.9459 nan 1.31 0.00304529 0.00263188 0.202833 0.176455 31 21733 44 1.323e+07 1.224e+07 -1 -1 13.75 1.2743 1.09421 20514 283063 -1 19523 24 8011 29398 3111419 256159 0 0 3111419 256159 27108 14933 0 0 33129 29452 0 0 53736 33902 0 0 81514 31763 0 0 1464504 74767 0 0 1451428 71342 0 0 27108 0 0 31372 225582 235236 1191218 2710 504 24.98505 nan -264.732 -24.98505 0 0 -1 -1 0.57 0.82 0.17 -1 -1 0.57 0.173296 0.153258 -k4_n4_v7_bidir.xml bigkey.blif common 26.60 vpr 73.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75028 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.1 MiB 0.30 12959 73.3 MiB 2.51 0.02 7.48553 -1803.94 -7.48553 7.48553 2.28 0.00469204 0.00410364 0.51071 0.442793 18 20371 48 2.187e+07 1.368e+07 -1 -1 15.57 1.94898 1.6994 25794 279159 -1 18368 19 8448 24780 1743257 182995 0 0 1743257 182995 13766 10049 0 0 30505 25889 0 0 47823 31434 0 0 40964 21410 0 0 806666 46627 0 0 803533 47586 0 0 13766 0 0 6197 80865 80423 213680 11837 3693 9.06144 9.06144 -2390.66 -9.06144 0 0 -1 -1 0.61 0.68 0.17 -1 -1 0.61 0.253486 0.225627 -k4_n4_v7_bidir.xml clma.blif common 142.35 vpr 187.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 192504 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.3 MiB 1.80 106462 171.3 MiB 18.59 0.16 27.3694 -1405.65 -27.3694 27.3694 9.76 0.0244187 0.0196415 2.5024 2.05173 39 139434 27 7.803e+07 7.569e+07 -1 -1 76.80 10.1302 8.39795 121914 1953961 -1 144525 31 49683 171853 40636067 3446563 0 0 40636067 3446563 131588 83133 0 0 195439 172145 0 0 321140 204566 0 0 417577 203354 0 0 19358442 1426844 0 0 20211881 1356521 0 0 131588 0 0 119534 1007982 997442 3452968 44789 50391 35.3515 35.3515 -1874.87 -35.3515 0 0 -1 -1 5.12 10.08 1.18 -1 -1 5.12 1.68323 1.4069 -k4_n4_v7_bidir.xml des.blif common 23.62 vpr 71.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72980 256 245 1847 2092 0 1443 950 34 34 1156 io auto 33.6 MiB 0.35 16116 71.3 MiB 1.98 0.03 12.1555 -2310.02 -12.1555 nan 3.25 0.00544401 0.0047579 0.394496 0.349342 20 23620 43 3.072e+07 1.347e+07 -1 -1 9.87 1.76085 1.56242 36518 419916 -1 22263 23 10124 34066 3025249 296853 0 0 3025249 296853 31691 18908 0 0 39976 35072 0 0 66141 41206 0 0 79559 38882 0 0 1378551 82326 0 0 1429331 80459 0 0 31691 0 0 27667 129057 127151 621415 3326 4 15.4638 nan -2935.27 -15.4638 0 0 -1 -1 0.98 0.93 0.28 -1 -1 0.98 0.281328 0.254279 -k4_n4_v7_bidir.xml diffeq.blif common 18.57 vpr 70.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71796 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.6 MiB 0.29 10612 70.1 MiB 1.04 0.02 11.2136 -2465.35 -11.2136 11.2136 1.32 0.00454802 0.00396332 0.310543 0.268356 24 15679 28 1.323e+07 1.248e+07 -1 -1 11.93 1.60313 1.37816 18402 227975 -1 14539 21 6424 21196 1456215 145994 0 0 1456215 145994 17973 9193 0 0 24483 21325 0 0 39605 25276 0 0 51419 20779 0 0 650016 35238 0 0 672719 34183 0 0 17973 0 0 17677 75015 74106 385162 3943 1788 15.6994 15.6994 -3159.95 -15.6994 0 0 -1 -1 0.45 0.56 0.13 -1 -1 0.45 0.220429 0.194677 -k4_n4_v7_bidir.xml dsip.blif common 17.61 vpr 69.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71540 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.2 MiB 0.29 11338 69.9 MiB 2.10 0.03 6.78424 -1682.3 -6.78424 6.78424 2.26 0.00461262 0.0039929 0.459096 0.396794 18 17527 41 2.187e+07 1.17e+07 -1 -1 7.42 1.81094 1.58864 25794 279159 -1 15395 15 6452 19926 1299311 140436 0 0 1299311 140436 12157 7470 0 0 24890 21082 0 0 37977 25483 0 0 31685 15748 0 0 605396 34414 0 0 587206 36239 0 0 12157 0 0 6413 50387 50201 110246 8260 1780 9.01728 9.01728 -2205.55 -9.01728 0 0 -1 -1 0.60 0.50 0.17 -1 -1 0.60 0.18749 0.167586 -k4_n4_v7_bidir.xml elliptic.blif common 69.11 vpr 89.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 92020 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.1 MiB 0.73 31456 89.9 MiB 4.26 0.05 18.9025 -10909.3 -18.9025 18.9025 3.29 0.0101721 0.00908163 0.968685 0.817533 30 52978 48 3.072e+07 2.988e+07 -1 -1 50.43 5.12544 4.34518 44604 633776 -1 42011 19 11537 51254 4572824 386879 0 0 4572824 386879 38004 16059 0 0 59624 51865 0 0 94572 61167 0 0 101837 34763 0 0 2152730 110268 0 0 2126057 112757 0 0 38004 0 0 43133 327755 335053 1351042 15185 11666 23.0444 23.0444 -14356.4 -23.0444 0 0 -1 -1 1.47 1.62 0.38 -1 -1 1.47 0.538091 0.473642 -k4_n4_v7_bidir.xml ex1010.blif common 71.35 vpr 111.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 113844 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.5 MiB 0.95 45872 101.7 MiB 7.25 0.08 24.5792 -235.267 -24.5792 nan 5.30 0.0111252 0.00889648 1.06433 0.869968 31 65695 22 4.563e+07 4.5e+07 -1 -1 41.62 5.2262 4.28588 64722 929407 -1 64534 20 24936 100574 7806517 709051 0 0 7806517 709051 60509 37981 0 0 114508 100614 0 0 184637 118813 0 0 184407 78252 0 0 3667667 182901 0 0 3594789 190490 0 0 60509 0 0 44495 471267 474245 1414540 43464 21867 27.7913 nan -270.144 -27.7913 0 0 -1 -1 2.35 2.58 0.64 -1 -1 2.35 0.591769 0.508861 -k4_n4_v7_bidir.xml ex5p.blif common 15.39 vpr 65.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67484 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.1 MiB 0.21 11634 65.9 MiB 0.73 0.01 11.978 -548.759 -11.978 nan 1.07 0.00292061 0.00254546 0.181734 0.159563 32 17719 34 1.083e+07 1.038e+07 -1 -1 9.16 1.16136 1.01254 17562 246361 -1 18739 28 9438 30715 5369320 511376 0 0 5369320 511376 28940 20285 0 0 35234 31047 0 0 55404 36228 0 0 99566 49748 0 0 2568030 187880 0 0 2582146 186188 0 0 28940 0 0 31517 145037 153285 763874 1914 39 21.5878 nan -899.15 -21.5878 0 0 -1 -1 0.48 1.20 0.14 -1 -1 0.48 0.182491 0.160903 -k4_n4_v7_bidir.xml frisc.blif common 57.61 vpr 91.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93448 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.4 MiB 0.85 38585 89.7 MiB 4.32 0.05 22.1146 -12365.8 -22.1146 22.1146 3.54 0.0115452 0.00973288 0.969395 0.812984 35 57472 38 3.267e+07 3.138e+07 -1 -1 35.21 4.54213 3.84136 50922 772933 -1 56598 25 17222 77259 15811791 1477237 0 0 15811791 1477237 63030 30948 0 0 89154 78174 0 0 147213 91749 0 0 172679 78915 0 0 7527610 607462 0 0 7812105 589989 0 0 63030 0 0 62103 410569 411653 1666140 15685 11675 32.2679 32.2679 -18125.6 -32.2679 0 0 -1 -1 1.83 3.92 0.47 -1 -1 1.83 0.668168 0.583883 -k4_n4_v7_bidir.xml misex3.blif common 18.76 vpr 68.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69736 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.4 MiB 0.32 13609 68.1 MiB 0.96 0.01 12.4424 -149.071 -12.4424 nan 1.35 0.00328638 0.00288741 0.228776 0.196418 29 22322 42 1.323e+07 1.296e+07 -1 -1 11.52 1.19383 1.01742 19986 270173 -1 20348 28 8859 29487 3869933 348873 0 0 3869933 348873 23845 15825 0 0 33114 29526 0 0 53651 34352 0 0 74663 38033 0 0 1876058 113330 0 0 1808602 117807 0 0 23845 0 0 20205 114520 122449 437755 6445 279 18 nan -203.293 -18 0 0 -1 -1 0.55 0.97 0.17 -1 -1 0.55 0.197335 0.171467 -k4_n4_v7_bidir.xml pdc.blif common 130.05 vpr 116.83 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 119632 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.8 MiB 1.24 69136 105.4 MiB 7.51 0.08 21.6179 -743.475 -21.6179 nan 5.52 0.0128612 0.0103429 1.12296 0.911833 44 100825 34 4.8e+07 4.587e+07 -1 -1 95.65 5.44737 4.46483 83766 1407084 -1 96776 21 25984 111801 17151035 1289269 0 0 17151035 1289269 81490 43452 0 0 126633 111956 0 0 217767 132486 0 0 235627 91401 0 0 8216199 458881 0 0 8273319 451093 0 0 81490 0 0 81080 838833 866443 2851501 34177 15307 25.8078 nan -905.706 -25.8078 0 0 -1 -1 3.58 4.36 0.96 -1 -1 3.58 0.64678 0.549082 -k4_n4_v7_bidir.xml s298.blif common 23.68 vpr 72.97 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74720 4 6 1942 1948 1 1189 579 26 26 676 clb auto 35.2 MiB 0.32 13902 73.0 MiB 1.25 0.02 21.2653 -159.337 -21.2653 21.2653 1.70 0.00404275 0.00347083 0.296835 0.256916 28 19709 22 1.728e+07 1.707e+07 -1 -1 14.84 2.01907 1.72455 24822 329400 -1 19479 18 6634 35892 2626126 230557 0 0 2626126 230557 17008 10168 0 0 40943 35962 0 0 66535 42234 0 0 57260 21984 0 0 1227379 60688 0 0 1217001 59521 0 0 17008 0 0 21198 263909 258893 1051566 21162 19368 25.4875 25.4875 -197.762 -25.4875 0 0 -1 -1 0.73 0.88 0.22 -1 -1 0.73 0.235005 0.206912 -k4_n4_v7_bidir.xml s38417.blif common 88.72 vpr 128.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 131864 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.3 MiB 1.27 47115 120.9 MiB 10.49 0.11 18.2412 -10727.7 -18.2412 18.2412 6.18 0.0192554 0.0154887 1.84109 1.49575 24 61704 39 5.292e+07 5.205e+07 -1 -1 53.07 7.46909 6.1302 66744 864380 -1 58905 18 26720 83763 5378251 555913 0 0 5378251 555913 64683 36591 0 0 97467 84195 0 0 156057 101739 0 0 183892 79757 0 0 2433961 124956 0 0 2442191 128675 0 0 64683 0 0 45122 234304 228759 879435 20330 25528 21.4718 21.4718 -13465.3 -21.4718 0 0 -1 -1 2.17 2.21 0.58 -1 -1 2.17 0.829587 0.707689 -k4_n4_v7_bidir.xml s38584.1.blif common 77.28 vpr 126.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 129316 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.6 MiB 1.38 45240 117.8 MiB 10.45 0.13 11.9263 -8962.66 -11.9263 11.9263 5.89 0.0184976 0.0147338 1.85878 1.51041 24 60919 48 5.043e+07 4.941e+07 -1 -1 42.74 6.636 5.48201 63762 824815 -1 56541 19 22387 66663 4809398 478500 0 0 4809398 478500 59252 29333 0 0 78504 67676 0 0 120843 81329 0 0 155160 66235 0 0 2228270 113561 0 0 2167369 120366 0 0 59252 0 0 44499 186100 192412 1025254 7854 11555 13.7507 13.7507 -10930.9 -13.7507 0 0 -1 -1 2.06 2.13 0.55 -1 -1 2.06 0.921664 0.803959 -k4_n4_v7_bidir.xml seq.blif common 28.17 vpr 71.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73264 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.7 MiB 0.37 18103 71.5 MiB 1.51 0.02 14.1718 -400.404 -14.1718 nan 1.77 0.00447893 0.0037976 0.340345 0.291858 30 31057 47 1.728e+07 1.617e+07 -1 -1 19.01 1.73627 1.48359 26172 364912 -1 25380 16 8985 30629 2861962 250537 0 0 2861962 250537 25106 13969 0 0 34884 30763 0 0 54020 35946 0 0 69763 29606 0 0 1389883 68765 0 0 1288306 71488 0 0 25106 0 0 22096 153117 158712 646194 6097 806 16.758 nan -485.01 -16.758 0 0 -1 -1 0.78 0.80 0.23 -1 -1 0.78 0.188967 0.168217 -k4_n4_v7_bidir.xml spla.blif common 73.80 vpr 97.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 99532 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 51.7 MiB 0.91 48512 89.3 MiB 4.85 0.05 19.8708 -663.452 -19.8708 nan 4.31 0.00929601 0.00722443 0.787301 0.650829 39 72151 32 3.888e+07 3.696e+07 -1 -1 45.77 3.98785 3.3423 62858 992060 -1 77542 37 25589 107341 26668651 2627948 0 0 26668651 2627948 77722 50767 0 0 121306 107522 0 0 198387 125323 0 0 254326 130878 0 0 12808265 1118501 0 0 13208645 1094957 0 0 77722 0 0 83595 688469 708121 2254809 35056 6239 34.9081 nan -1115.52 -34.9081 0 0 -1 -1 2.46 6.22 0.65 -1 -1 2.46 0.751 0.637103 -k4_n4_v7_bidir.xml tseng.blif common 8.40 vpr 66.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67948 52 122 1483 1605 1 736 453 19 19 361 clb auto 28.6 MiB 0.20 6088 66.4 MiB 0.76 0.01 10.2937 -2093.39 -10.2937 10.2937 0.83 0.00332237 0.00290241 0.223239 0.195939 20 9957 42 8.67e+06 8.37e+06 -1 -1 3.73 0.787509 0.686428 11514 125901 -1 9990 29 5011 16576 1439513 162557 0 0 1439513 162557 14011 8384 0 0 19532 16993 0 0 30030 20081 0 0 41245 20221 0 0 654871 49002 0 0 679824 47876 0 0 14011 0 0 11034 35108 33894 139846 2941 1247 19.7201 19.7201 -3163.4 -19.7201 0 0 -1 -1 0.24 0.53 0.08 -1 -1 0.24 0.208626 0.184136 -k4_n4_v7_l1_bidir.xml alu4.blif common 34.84 vpr 69.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70948 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.7 MiB 0.31 14281 69.3 MiB 1.07 0.02 17.405 -119.79 -17.405 nan 2.13 0.0045875 0.00406708 0.262534 0.225911 22 16271 40 1.452e+07 1.425e+07 -1 -1 25.15 1.22173 1.04401 39160 271852 -1 14226 15 6997 28306 1931113 329186 0 0 1931113 329186 15346 8872 0 0 32065 28332 0 0 61791 32252 0 0 43171 17605 0 0 886288 121135 0 0 892452 120990 0 0 15346 0 0 9226 213153 228005 423480 13610 9293 18.4209 nan -129.929 -18.4209 0 0 -1 -1 0.74 0.76 0.20 -1 -1 0.74 0.153264 0.137365 -k4_n4_v7_l1_bidir.xml apex2.blif common 102.31 vpr 72.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74564 38 3 1916 1919 0 1509 641 27 27 729 clb auto 35.0 MiB 0.43 20018 72.8 MiB 1.71 0.02 19.526 -55.2387 -19.526 nan 2.79 0.00488424 0.0041277 0.383636 0.325401 24 22118 39 1.875e+07 1.8e+07 -1 -1 89.14 2.04687 1.72825 55250 396047 -1 19775 14 8986 31316 2736987 394561 0 0 2736987 394561 25265 11830 0 0 35499 31329 0 0 67573 35812 0 0 60942 23450 0 0 1282512 142192 0 0 1265196 149948 0 0 25265 0 0 17919 420247 467927 1194412 6824 1654 20.5616 nan -58.2176 -20.5616 0 0 -1 -1 1.11 0.97 0.30 -1 -1 1.11 0.18625 0.16592 -k4_n4_v7_l1_bidir.xml apex4.blif common 89.84 vpr 67.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68984 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.8 MiB 0.25 13467 67.4 MiB 0.99 0.01 17.1168 -270.116 -17.1168 nan 1.91 0.00297691 0.00256524 0.224708 0.194607 24 16302 38 1.323e+07 1.224e+07 -1 -1 80.97 1.22647 1.05141 39522 283015 -1 13889 16 7146 27459 2781985 364765 0 0 2781985 364765 24039 10954 0 0 31163 27550 0 0 62028 31415 0 0 63511 23479 0 0 1321089 134334 0 0 1280155 137033 0 0 24039 0 0 23482 526544 527019 1611977 3644 1238 18.3367 nan -298.806 -18.3367 0 0 -1 -1 0.74 0.83 0.19 -1 -1 0.74 0.129661 0.115195 -k4_n4_v7_l1_bidir.xml bigkey.blif common 22.67 vpr 73.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75044 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.2 MiB 0.30 12931 73.3 MiB 2.67 0.03 11.5134 -2580.62 -11.5134 11.5134 3.37 0.00552349 0.00477065 0.582477 0.505666 13 12765 29 2.187e+07 1.368e+07 -1 -1 8.20 1.567 1.36759 39906 235943 -1 11969 18 7124 21299 1153521 218194 0 0 1153521 218194 11501 7598 0 0 26289 22170 0 0 45758 26441 0 0 31205 14323 0 0 515445 74325 0 0 523323 73337 0 0 11501 0 0 4674 117311 119848 154219 10522 10930 12.056 12.056 -2911.61 -12.056 0 0 -1 -1 0.68 0.64 0.18 -1 -1 0.68 0.225189 0.201027 -k4_n4_v7_l1_bidir.xml clma.blif common 573.90 vpr 233.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 238796 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.3 MiB 1.80 104583 221.5 MiB 18.47 0.16 40.1845 -1767.17 -40.1845 40.1845 13.18 0.0231544 0.0187544 2.44967 1.99032 32 106308 31 7.803e+07 7.569e+07 -1 -1 496.36 10.7853 8.79574 274482 2081397 -1 101996 16 40594 151795 23814315 4432967 0 0 23814315 4432967 100773 51320 0 0 172148 152050 0 0 339425 174315 0 0 268766 110124 0 0 11536818 1957698 0 0 11396385 1987460 0 0 100773 0 0 70259 2317122 2306531 4801468 54291 155481 42.9009 42.9009 -2145.85 -42.9009 0 0 -1 -1 6.67 7.82 1.47 -1 -1 6.67 0.969179 0.826732 -k4_n4_v7_l1_bidir.xml des.blif common 53.11 vpr 87.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89384 256 245 1847 2092 0 1443 950 34 34 1156 io auto 33.8 MiB 0.36 16346 87.3 MiB 2.35 0.02 19.6565 -2858.74 -19.6565 nan 4.77 0.00535069 0.00476587 0.514918 0.457842 14 16500 26 3.072e+07 1.347e+07 -1 -1 34.11 1.87913 1.68679 59520 369080 -1 15478 12 7561 24058 1864200 313580 0 0 1864200 313580 22278 10629 0 0 29001 24933 0 0 53680 29288 0 0 48539 20774 0 0 861985 116664 0 0 848717 111292 0 0 22278 0 0 15933 244240 250313 743674 2444 210 21.4109 nan -3191.29 -21.4109 0 0 -1 -1 1.08 0.68 0.28 -1 -1 1.08 0.174295 0.159883 -k4_n4_v7_l1_bidir.xml diffeq.blif common 24.03 vpr 69.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71604 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.4 MiB 0.30 10465 69.9 MiB 1.12 0.02 11.8225 -2870.74 -11.8225 11.8225 1.92 0.0043116 0.00367468 0.319898 0.275666 17 11085 37 1.323e+07 1.248e+07 -1 -1 15.27 1.2403 1.06517 30282 197837 -1 10169 18 7282 25044 2184183 406188 0 0 2184183 406188 20367 11188 0 0 28555 25222 0 0 52752 28791 0 0 58766 24448 0 0 1014502 158471 0 0 1009241 158068 0 0 20367 0 0 17479 229597 223773 691660 5435 9780 12.8449 12.8449 -3357.9 -12.8449 0 0 -1 -1 0.48 0.75 0.13 -1 -1 0.48 0.182139 0.159281 -k4_n4_v7_l1_bidir.xml dsip.blif common 25.48 vpr 70.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72456 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.5 MiB 0.30 11724 70.8 MiB 2.16 0.02 9.84842 -2315.87 -9.84842 9.84842 3.39 0.00473118 0.00412819 0.469999 0.410592 13 11676 41 2.187e+07 1.17e+07 -1 -1 11.77 1.44116 1.26298 39906 235943 -1 10782 13 5853 18929 1079825 212814 0 0 1079825 212814 11468 6525 0 0 23746 20136 0 0 39849 23813 0 0 28118 13244 0 0 488247 76528 0 0 488397 72568 0 0 11468 0 0 5835 106807 105576 203100 7872 7184 10.32 10.32 -2567.64 -10.32 0 0 -1 -1 0.63 0.48 0.20 -1 -1 0.63 0.150489 0.135384 -k4_n4_v7_l1_bidir.xml elliptic.blif common 250.40 vpr 102.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 105396 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.1 MiB 0.75 31289 99.7 MiB 4.31 0.05 24.5087 -13712.9 -24.5087 24.5087 5.03 0.0112512 0.00926088 0.918318 0.756965 24 33225 33 3.072e+07 2.988e+07 -1 -1 225.15 4.55672 3.79953 89088 639360 -1 29910 15 11471 49628 4991238 807844 0 0 4991238 807844 35206 14431 0 0 58199 50281 0 0 106893 58707 0 0 87885 30463 0 0 2358616 320211 0 0 2344439 333751 0 0 35206 0 0 33070 750845 802927 2001792 16086 32215 26.3301 26.3301 -15780.3 -26.3301 0 0 -1 -1 1.89 1.87 0.49 -1 -1 1.89 0.422747 0.368937 -k4_n4_v7_l1_bidir.xml ex1010.blif common 86.96 vpr 135.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 138788 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.6 MiB 0.97 45506 134.1 MiB 7.15 0.07 35.0666 -326.901 -35.0666 nan 7.64 0.01112 0.0090887 1.0511 0.859689 22 49059 47 4.563e+07 4.5e+07 -1 -1 48.96 4.41129 3.6562 118482 826103 -1 44567 14 23597 90262 5488495 951218 0 0 5488495 951218 51571 30862 0 0 102361 90324 0 0 194271 103531 0 0 150754 65172 0 0 2491692 330107 0 0 2497846 331222 0 0 51571 0 0 31811 582564 595064 662964 42219 79285 37.8509 nan -350.371 -37.8509 0 0 -1 -1 2.57 2.40 0.64 -1 -1 2.57 0.464393 0.404428 -k4_n4_v7_l1_bidir.xml ex5p.blif common 54.09 vpr 65.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67440 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.0 MiB 0.20 11821 65.9 MiB 0.85 0.01 15.1106 -656.442 -15.1106 nan 1.49 0.00325923 0.00254923 0.214238 0.18683 24 14318 41 1.083e+07 1.038e+07 -1 -1 46.82 0.97289 0.84189 32642 233591 -1 12054 17 6940 23303 2343367 380584 0 0 2343367 380584 21162 10849 0 0 26541 23589 0 0 52114 26762 0 0 58957 21151 0 0 1106107 146693 0 0 1078486 151540 0 0 21162 0 0 18893 282102 291344 911959 2272 196 16.1916 nan -727.382 -16.1916 0 0 -1 -1 0.59 0.75 0.16 -1 -1 0.59 0.126837 0.113701 -k4_n4_v7_l1_bidir.xml frisc.blif common 168.03 vpr 107.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 110040 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.2 MiB 0.82 37497 102.7 MiB 4.68 0.05 24.4278 -14825.6 -24.4278 24.4278 5.26 0.0100112 0.00829789 1.02722 0.863059 28 40186 28 3.267e+07 3.138e+07 -1 -1 140.77 4.60032 3.88152 103554 761463 -1 37393 16 14334 63647 6450908 1039336 0 0 6450908 1039336 51220 20703 0 0 72963 64296 0 0 143419 73506 0 0 122959 41808 0 0 3027944 414000 0 0 3032403 425023 0 0 51220 0 0 43985 879494 941241 2480121 13305 21431 25.9971 25.9971 -16524.4 -25.9971 0 0 -1 -1 2.25 2.32 0.53 -1 -1 2.25 0.461908 0.406094 -k4_n4_v7_l1_bidir.xml misex3.blif common 37.83 vpr 68.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69912 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.5 MiB 0.29 13559 68.3 MiB 0.97 0.01 15.1312 -191.55 -15.1312 nan 1.72 0.00319552 0.00273496 0.226681 0.19278 24 14779 29 1.323e+07 1.296e+07 -1 -1 29.40 1.26787 1.07574 39522 283015 -1 13598 15 7073 26155 2058099 312011 0 0 2058099 312011 20194 9778 0 0 29527 26207 0 0 58435 29778 0 0 51685 19023 0 0 939017 112821 0 0 959241 114404 0 0 20194 0 0 15085 281799 316999 807207 6556 329 16.5576 nan -206.846 -16.5576 0 0 -1 -1 0.74 0.70 0.19 -1 -1 0.74 0.13185 0.117274 -k4_n4_v7_l1_bidir.xml pdc.blif common 704.96 vpr 151.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 155372 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.9 MiB 1.17 69783 139.0 MiB 8.28 0.07 33.871 -1073.72 -33.871 nan 8.09 0.0124289 0.00994374 1.29349 1.05837 36 80196 38 4.8e+07 4.587e+07 -1 -1 660.80 4.99864 4.09467 183520 1412616 -1 73362 22 26841 111690 29971058 6847814 0 0 29971058 6847814 76466 39532 0 0 126110 111903 0 0 258237 127170 0 0 209270 90615 0 0 14664297 3262554 0 0 14636678 3216040 0 0 76466 0 0 61859 1956575 1958439 4214975 39086 47642 37.7686 nan -1222.75 -37.7686 0 0 -1 -1 2.95 5.90 0.62 -1 -1 2.95 0.362121 0.308989 -k4_n4_v7_l1_bidir.xml s298.blif common 31.42 vpr 72.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74448 4 6 1942 1948 1 1189 579 26 26 676 clb auto 34.9 MiB 0.30 13873 72.7 MiB 1.29 0.02 24.2645 -193.053 -24.2645 24.2645 2.49 0.00475038 0.00401284 0.33782 0.288048 17 15671 45 1.728e+07 1.707e+07 -1 -1 19.97 1.41569 1.20012 39072 255848 -1 14304 18 8473 41165 3833296 587270 0 0 3833296 587270 20044 11481 0 0 46389 41319 0 0 87504 46597 0 0 61683 25771 0 0 1820349 232879 0 0 1797327 229223 0 0 20044 0 0 18131 676939 645318 1754970 22976 56266 26.2082 26.2082 -219.739 -26.2082 0 0 -1 -1 0.68 1.27 0.18 -1 -1 0.68 0.225644 0.200505 -k4_n4_v7_l1_bidir.xml s38417.blif common 84.62 vpr 157.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 160996 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.3 MiB 1.24 45823 156.3 MiB 10.73 0.11 22.8839 -12843.2 -22.8839 22.8839 9.17 0.0179289 0.0144971 1.89489 1.5397 17 42804 48 5.292e+07 5.205e+07 -1 -1 36.44 7.21674 5.97127 115248 760028 -1 41227 28 29324 99099 9100578 1646509 0 0 9100578 1646509 74226 40556 0 0 113142 99736 0 0 206293 114295 0 0 203460 83895 0 0 4267481 655519 0 0 4235976 652508 0 0 74226 0 0 48435 1064315 1073325 3277497 26120 98729 25.3218 25.3218 -15829.1 -25.3218 0 0 -1 -1 2.33 4.05 0.55 -1 -1 2.33 1.22365 1.05247 -k4_n4_v7_l1_bidir.xml s38584.1.blif common 67.25 vpr 152.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 155984 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.5 MiB 1.27 43857 151.2 MiB 10.33 0.13 16.7322 -11603.5 -16.7322 16.7322 8.04 0.0160929 0.0129275 1.75651 1.42667 19 43230 46 5.043e+07 4.941e+07 -1 -1 25.65 5.82502 4.83199 116850 784767 -1 37598 11 19651 60501 3469053 596793 0 0 3469053 596793 51486 22909 0 0 71387 61426 0 0 123251 72199 0 0 123192 45868 0 0 1562459 187884 0 0 1537278 206507 0 0 51486 0 0 33652 387772 428572 1211453 9396 26419 17.258 17.258 -12827.2 -17.258 0 0 -1 -1 2.26 1.68 0.57 -1 -1 2.26 0.597634 0.51978 -k4_n4_v7_l1_bidir.xml seq.blif common 112.10 vpr 71.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73252 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.7 MiB 0.36 18265 71.5 MiB 1.58 0.02 17.4129 -521.247 -17.4129 nan 2.47 0.00412259 0.00347615 0.352468 0.298175 24 22041 50 1.728e+07 1.617e+07 -1 -1 100.24 1.71907 1.44888 51072 366016 -1 18467 15 8949 32128 2827304 423587 0 0 2827304 423587 25144 11833 0 0 36756 32284 0 0 70197 37093 0 0 62412 24082 0 0 1320326 158987 0 0 1312469 159308 0 0 25144 0 0 18730 405555 439805 1113933 7435 1255 19.3002 nan -576.518 -19.3002 0 0 -1 -1 0.96 0.95 0.24 -1 -1 0.96 0.170585 0.148909 -k4_n4_v7_l1_bidir.xml spla.blif common 312.76 vpr 121.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 124356 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 51.9 MiB 0.84 47819 116.7 MiB 5.77 0.05 25.6975 -850.101 -25.6975 nan 6.49 0.0100554 0.00830429 0.971394 0.798786 32 52300 31 3.888e+07 3.696e+07 -1 -1 277.17 4.51179 3.74679 138672 1051752 -1 50528 21 21568 93360 15166036 2720735 0 0 15166036 2720735 64972 32585 0 0 104989 93585 0 0 214610 105807 0 0 175643 70717 0 0 7350580 1212848 0 0 7255242 1205193 0 0 64972 0 0 55204 1577363 1563473 3523260 32982 18780 29.3385 nan -989.871 -29.3385 0 0 -1 -1 3.07 4.66 0.73 -1 -1 3.07 0.495574 0.426224 -k4_n4_v7_l1_bidir.xml tseng.blif common 15.30 vpr 66.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success a1966c4-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-08-16T20:55:46 gh-actions-runner-vtr-auto-spawned4 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68264 52 122 1483 1605 1 736 453 19 19 361 clb auto 28.9 MiB 0.19 5903 66.7 MiB 0.77 0.01 9.31933 -2372.61 -9.31933 9.31933 1.15 0.00355213 0.00309294 0.236842 0.205728 14 6636 41 8.67e+06 8.37e+06 -1 -1 9.70 1.02295 0.884484 17850 109085 -1 5721 18 4691 16161 949670 190869 0 0 949670 190869 12380 7185 0 0 19102 16641 0 0 32981 19199 0 0 35910 16089 0 0 425733 65931 0 0 423564 65824 0 0 12380 0 0 9131 70540 68387 175028 4158 4411 10.8554 10.8554 -2988.61 -10.8554 0 0 -1 -1 0.26 0.43 0.07 -1 -1 0.26 0.149867 0.133188 +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 alu4.blif common 25.09 vpr 59.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61224 14 8 1536 1544 0 1091 497 24 24 576 clb auto 22.4 MiB 0.37 14134 118517 34288 82388 1841 59.8 MiB 1.36 0.02 14.7252 -106.184 -14.7252 nan 1.34 0.00755775 0.0067613 0.475088 0.427291 28 20860 31 1.452e+07 1.425e+07 -1 -1 16.90 3.40425 3.06477 21174 279108 -1 19611 17 6817 25919 2105526 196865 17.7975 nan -125.421 -17.7975 0 0 -1 -1 0.47 0.82 0.32 -1 -1 0.47 0.275056 0.251616 +k4_n4_v7_bidir.xml apex2.blif common 27.14 vpr 63.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 38 3 1916 1919 0 1509 641 27 27 729 clb auto 25.4 MiB 0.44 19895 177409 51714 121663 4032 63.3 MiB 1.92 0.03 15.212 -44.496 -15.212 nan 1.69 0.00858756 0.00771239 0.586467 0.529247 31 29521 38 1.875e+07 1.8e+07 -1 -1 16.62 3.46973 3.13574 28210 394495 -1 27792 16 9499 32569 2852185 250451 17.714 nan -51.336 -17.714 0 0 -1 -1 0.67 1.02 0.45 -1 -1 0.67 0.32604 0.299076 +k4_n4_v7_bidir.xml apex4.blif common 24.26 vpr 57.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 59244 9 19 1271 1290 0 990 436 23 23 529 clb auto 20.1 MiB 0.32 13440 97904 26693 69991 1220 57.9 MiB 1.19 0.02 13.361 -214.609 -13.361 nan 1.22 0.00634064 0.00571439 0.403179 0.365143 32 20454 38 1.323e+07 1.224e+07 -1 -1 15.49 2.62166 2.36829 21042 297717 -1 21778 45 10017 34029 6104889 585796 24.9174 nan -345.566 -24.9174 0 0 -1 -1 0.50 2.08 0.34 -1 -1 0.50 0.557588 0.505821 +k4_n4_v7_bidir.xml bigkey.blif common 27.52 vpr 63.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65080 229 197 2152 2349 1 1587 882 29 29 841 io auto 26.0 MiB 0.38 12720 440594 137247 291517 11830 63.6 MiB 3.47 0.02 8.05109 -1841.77 -8.05109 8.05109 2.03 0.00447643 0.00400338 1.13626 1.02984 18 20694 46 2.187e+07 1.368e+07 -1 -1 14.97 4.06298 3.7066 25794 279159 -1 18007 20 8342 23483 1514225 162064 9.13231 9.13231 -2338.69 -9.13231 0 0 -1 -1 0.49 0.89 0.32 -1 -1 0.49 0.442178 0.407434 +k4_n4_v7_bidir.xml clma.blif common 165.63 vpr 197.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 202384 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 82.9 MiB 2.18 106722 1740445 686705 1039553 14187 191.8 MiB 20.37 0.21 30.8577 -1298.73 -30.8577 30.8577 8.05 0.0443279 0.0382795 4.30919 3.75928 39 138735 26 7.803e+07 7.569e+07 -1 -1 96.54 16.9275 14.9323 121914 1953961 -1 143761 29 48634 164511 37556108 3273302 37.4535 37.4535 -1791.49 -37.4535 0 0 -1 -1 4.06 12.36 2.39 -1 -1 4.06 2.69633 2.40634 +k4_n4_v7_bidir.xml des.blif common 27.25 vpr 67.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68700 256 245 1847 2092 0 1443 950 34 34 1156 io auto 24.3 MiB 0.46 15789 365054 115994 236023 13037 67.1 MiB 2.63 0.03 13.9145 -2287.58 -13.9145 nan 2.82 0.0102633 0.00941085 0.845686 0.776862 18 23642 39 3.072e+07 1.347e+07 -1 -1 12.54 3.58816 3.315 35364 387024 -1 21914 18 8915 30240 2331585 232484 15.6719 nan -2887.51 -15.6719 0 0 -1 -1 0.75 1.05 0.46 -1 -1 0.75 0.428263 0.399134 +k4_n4_v7_bidir.xml diffeq.blif common 23.46 vpr 60.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62096 64 39 1935 1974 1 1104 519 23 23 529 clb auto 23.0 MiB 0.36 9766 125559 31945 90764 2850 60.6 MiB 1.44 0.02 13.2954 -2575.73 -13.2954 13.2954 1.23 0.00878522 0.00785809 0.553021 0.494562 21 16435 48 1.323e+07 1.248e+07 -1 -1 15.60 3.51997 3.15695 17346 200431 -1 13831 22 6769 22906 1463116 150206 14.3532 14.3532 -3290.15 -14.3532 0 0 -1 -1 0.34 0.78 0.22 -1 -1 0.34 0.378326 0.343619 +k4_n4_v7_bidir.xml dsip.blif common 25.84 vpr 60.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62360 229 197 1815 2012 1 1190 816 29 29 841 io auto 23.3 MiB 0.42 11545 347617 108721 229249 9647 60.9 MiB 2.64 0.03 7.21771 -1868.83 -7.21771 7.21771 1.93 0.00929284 0.00846788 0.884819 0.804993 18 18641 50 2.187e+07 1.17e+07 -1 -1 14.31 3.62436 3.32056 25794 279159 -1 15915 19 6571 20190 1355499 141050 8.71824 8.71824 -2334.27 -8.71824 0 0 -1 -1 0.49 0.77 0.32 -1 -1 0.49 0.386269 0.356682 +k4_n4_v7_bidir.xml elliptic.blif common 59.43 vpr 85.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87172 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 43.7 MiB 0.88 31997 527855 177357 344525 5973 84.2 MiB 5.38 0.06 21.0871 -11747.2 -21.0871 21.0871 3.01 0.0192283 0.0171619 1.74014 1.52941 31 45607 28 3.072e+07 2.988e+07 -1 -1 38.53 7.80173 6.94292 44604 633776 -1 43201 18 10982 49284 4580733 382699 26.158 26.158 -14919.1 -26.158 0 0 -1 -1 1.16 2.07 0.72 -1 -1 1.16 0.824359 0.746672 +k4_n4_v7_bidir.xml ex1010.blif common 79.07 vpr 111.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114444 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 49.9 MiB 1.12 45583 717872 256462 460003 1407 111.8 MiB 8.35 0.10 26.0787 -242.703 -26.0787 nan 4.65 0.0215891 0.0193478 1.87356 1.6401 31 63369 20 4.563e+07 4.5e+07 -1 -1 48.15 9.79778 8.71003 64722 929407 -1 63127 18 23354 93631 6503582 626753 30.0004 nan -285.202 -30.0004 0 0 -1 -1 1.77 2.93 1.11 -1 -1 1.77 0.919349 0.831318 +k4_n4_v7_bidir.xml ex5p.blif common 20.82 vpr 56.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 8 63 1072 1135 0 907 417 21 21 441 clb auto 18.3 MiB 0.25 11951 89166 24459 62712 1995 56.3 MiB 1.01 0.02 13.0891 -597.085 -13.0891 nan 0.99 0.00572533 0.00519625 0.350613 0.319091 32 18016 36 1.083e+07 1.038e+07 -1 -1 13.49 2.33372 2.11082 17562 246361 -1 19651 31 9269 30599 5599768 541422 27.9948 nan -1124.31 -27.9948 0 0 -1 -1 0.41 1.71 0.29 -1 -1 0.41 0.366185 0.333247 +k4_n4_v7_bidir.xml frisc.blif common 61.80 vpr 87.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89440 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 43.1 MiB 1.00 37555 507189 172892 324772 9525 85.3 MiB 5.80 0.07 27.3947 -13560.1 -27.3947 27.3947 3.14 0.021935 0.0198315 1.78174 1.57292 35 53326 33 3.267e+07 3.138e+07 -1 -1 34.68 7.88156 7.03541 50922 772933 -1 56643 53 18358 81832 15709966 1481510 37.3911 37.3911 -18150.6 -37.3911 0 0 -1 -1 1.47 6.35 0.90 -1 -1 1.47 2.13465 1.92401 +k4_n4_v7_bidir.xml misex3.blif common 21.38 vpr 59.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 60428 14 14 1411 1425 0 1075 460 23 23 529 clb auto 21.4 MiB 0.37 13601 103410 29103 72449 1858 59.0 MiB 1.24 0.02 11.8752 -155.232 -11.8752 nan 1.21 0.00692988 0.00622958 0.438139 0.395015 31 20160 29 1.323e+07 1.296e+07 -1 -1 13.65 2.7408 2.47141 20514 283063 -1 19145 18 7111 25186 2153215 195816 14.7017 nan -189.66 -14.7017 0 0 -1 -1 0.47 0.87 0.34 -1 -1 0.47 0.283157 0.258128 +k4_n4_v7_bidir.xml pdc.blif common 122.33 vpr 128.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 131144 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 51.1 MiB 1.46 68954 805204 304108 495678 5418 116.2 MiB 8.78 0.09 23.054 -810.749 -23.054 nan 4.53 0.0207271 0.0184142 1.96946 1.75185 47 96888 26 4.8e+07 4.587e+07 -1 -1 87.51 11.7651 10.5368 87292 1502116 -1 92826 19 22284 92070 11390779 877364 28.7597 nan -1015.46 -28.7597 0 0 -1 -1 2.90 4.00 1.77 -1 -1 2.90 1.00483 0.913665 +k4_n4_v7_bidir.xml s298.blif common 28.35 vpr 63.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 4 6 1942 1948 1 1189 579 26 26 676 clb auto 25.6 MiB 0.38 13983 154947 45405 108575 967 63.5 MiB 1.87 0.03 21.5885 -166.526 -21.5885 21.5885 1.60 0.00997528 0.0089743 0.686205 0.617728 24 20530 33 1.728e+07 1.707e+07 -1 -1 18.24 4.05893 3.65524 23472 293888 -1 19530 19 6862 36219 2545528 226606 25.9443 25.9443 -202.845 -25.9443 0 0 -1 -1 0.51 1.15 0.34 -1 -1 0.51 0.419084 0.382195 +k4_n4_v7_bidir.xml s38417.blif common 82.48 vpr 138.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 141900 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 66.0 MiB 1.22 44815 1026794 368862 642837 15095 138.6 MiB 11.77 0.13 18.9695 -10891.3 -18.9695 18.9695 5.36 0.0300307 0.0266363 3.02346 2.66113 24 61676 33 5.292e+07 5.205e+07 -1 -1 45.25 13.1025 11.5845 66744 864380 -1 57890 22 26430 86264 5526739 549164 21.6002 21.6002 -13129.1 -21.6002 0 0 -1 -1 1.58 3.48 1.00 -1 -1 1.58 1.73769 1.55936 +k4_n4_v7_bidir.xml s38584.1.blif common 76.63 vpr 135.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 138656 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 65.1 MiB 1.52 43697 1164768 437634 705466 21668 135.2 MiB 12.42 0.15 14.1721 -8996.42 -14.1721 14.1721 4.98 0.0329151 0.0282756 3.23175 2.78781 24 57072 28 5.043e+07 4.941e+07 -1 -1 39.72 10.2643 9.05309 63762 824815 -1 53935 14 20694 62039 3956387 407391 16.3781 16.3781 -10887.7 -16.3781 0 0 -1 -1 1.84 2.42 0.96 -1 -1 1.84 1.16051 1.05298 +k4_n4_v7_bidir.xml seq.blif common 22.07 vpr 62.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63636 41 35 1791 1826 0 1383 615 26 26 676 clb auto 24.2 MiB 0.44 18081 175753 52720 118751 4282 62.1 MiB 1.91 0.03 13.9603 -390.198 -13.9603 nan 1.58 0.00890272 0.00793258 0.620849 0.557185 30 30326 50 1.728e+07 1.617e+07 -1 -1 11.47 2.69897 2.43416 26172 364912 -1 25471 16 8355 28515 2464503 219033 16.6932 nan -476.497 -16.6932 0 0 -1 -1 0.63 1.01 0.42 -1 -1 0.63 0.326513 0.29863 +k4_n4_v7_bidir.xml spla.blif common 96.74 vpr 96.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98916 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 42.6 MiB 1.09 47739 572182 202092 366095 3995 92.8 MiB 6.40 0.08 20.3447 -666.942 -20.3447 nan 3.76 0.0190267 0.0171101 1.61619 1.42465 39 73234 38 3.888e+07 3.696e+07 -1 -1 64.43 7.67465 6.83268 62858 992060 -1 76669 43 26016 108518 28079796 2834431 40.0312 nan -1132.01 -40.0312 0 0 -1 -1 1.93 8.75 1.20 -1 -1 1.93 1.64479 1.48312 +k4_n4_v7_bidir.xml tseng.blif common 10.48 vpr 57.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58480 52 122 1483 1605 1 736 453 19 19 361 clb auto 19.3 MiB 0.24 5922 99576 25658 70281 3637 57.1 MiB 1.00 0.02 12.1965 -2407.44 -12.1965 12.1965 0.79 0.00657122 0.00593134 0.404003 0.363441 20 9854 47 8.67e+06 8.37e+06 -1 -1 4.96 1.53942 1.38756 11514 125901 -1 9836 31 5244 16737 1326994 150633 17.4688 17.4688 -3312.71 -17.4688 0 0 -1 -1 0.21 0.79 0.14 -1 -1 0.21 0.408251 0.369629 +k4_n4_v7_l1_bidir.xml alu4.blif common 23.03 vpr 59.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61228 14 8 1536 1544 0 1091 497 24 24 576 clb auto 22.4 MiB 0.37 14371 140154 44561 93688 1905 59.8 MiB 1.61 0.02 18.7901 -132.664 -18.7901 nan 1.84 0.00758444 0.0068119 0.567299 0.51143 22 16428 32 1.452e+07 1.425e+07 -1 -1 12.93 2.20323 1.98264 39160 271852 -1 14487 16 6891 27475 1838293 336802 18.6218 nan -135.809 -18.6218 0 0 -1 -1 0.54 0.97 0.30 -1 -1 0.54 0.278074 0.25404 +k4_n4_v7_l1_bidir.xml apex2.blif common 50.15 vpr 64.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66000 38 3 1916 1919 0 1509 641 27 27 729 clb auto 25.3 MiB 0.49 20167 213315 67980 140399 4936 64.1 MiB 2.40 0.03 20.4553 -59.8147 -20.4553 nan 2.44 0.00938485 0.00839128 0.763534 0.684015 25 22195 35 1.875e+07 1.8e+07 -1 -1 36.41 3.69988 3.32577 55250 396047 -1 20368 17 10043 36091 3126397 435651 20.5112 nan -59.5459 -20.5112 0 0 -1 -1 0.84 1.41 0.45 -1 -1 0.84 0.367403 0.3357 +k4_n4_v7_l1_bidir.xml apex4.blif common 58.61 vpr 58.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 59468 9 19 1271 1290 0 990 436 23 23 529 clb auto 20.3 MiB 0.26 13608 114424 34620 78213 1591 58.1 MiB 1.35 0.02 17.6358 -287.714 -17.6358 nan 1.67 0.00623878 0.00563829 0.451797 0.408913 25 15954 29 1.323e+07 1.224e+07 -1 -1 49.32 2.40536 2.16988 39522 283015 -1 13982 16 7467 26967 2776439 385118 17.7013 nan -291.198 -17.7013 0 0 -1 -1 0.56 1.06 0.32 -1 -1 0.56 0.234455 0.214937 +k4_n4_v7_l1_bidir.xml bigkey.blif common 28.02 vpr 72.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73752 229 197 2152 2349 1 1587 882 29 29 841 io auto 25.9 MiB 0.37 12928 449050 142972 294362 11716 72.0 MiB 3.57 0.05 10.9343 -2508.89 -10.9343 10.9343 2.92 0.0108356 0.00981268 1.18216 1.07197 13 13251 38 2.187e+07 1.368e+07 -1 -1 13.05 3.54524 3.22639 39906 235943 -1 11958 14 7356 20700 1195443 240334 11.7389 11.7389 -2706.25 -11.7389 0 0 -1 -1 0.50 0.83 0.27 -1 -1 0.50 0.346123 0.318609 +k4_n4_v7_l1_bidir.xml clma.blif common 464.90 vpr 246.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 252128 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 82.8 MiB 2.24 105715 1869854 754217 1098976 16661 246.2 MiB 21.53 0.20 39.7609 -2114 -39.7609 39.7609 11.36 0.0438494 0.0379711 4.63699 4.02888 32 106822 34 7.803e+07 7.569e+07 -1 -1 383.21 20.0981 17.5994 274482 2081397 -1 104310 17 43331 161505 25626710 4759525 40.5516 40.5516 -2296.94 -40.5516 0 0 -1 -1 5.22 10.91 2.46 -1 -1 5.22 1.81623 1.62807 +k4_n4_v7_l1_bidir.xml des.blif common 73.96 vpr 85.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87424 256 245 1847 2092 0 1443 950 34 34 1156 io auto 24.2 MiB 0.46 16479 397730 129821 254301 13608 85.3 MiB 2.95 0.04 20.2632 -3164.21 -20.2632 nan 4.42 0.0109769 0.0100202 0.97614 0.893978 14 17300 34 3.072e+07 1.347e+07 -1 -1 54.65 4.29155 3.95317 59520 369080 -1 15963 14 8088 25865 1923741 318979 19.865 nan -3228.14 -19.865 0 0 -1 -1 0.81 1.00 0.42 -1 -1 0.81 0.358931 0.334079 +k4_n4_v7_l1_bidir.xml diffeq.blif common 53.22 vpr 60.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62228 64 39 1935 1974 1 1104 519 23 23 529 clb auto 23.2 MiB 0.39 10494 150567 41898 104676 3993 60.8 MiB 1.70 0.02 12.9825 -3084.4 -12.9825 12.9825 1.69 0.00868419 0.00776859 0.654731 0.585906 17 11794 50 1.323e+07 1.248e+07 -1 -1 43.29 3.8972 3.50018 30282 197837 -1 10371 18 7391 25712 2401750 464474 13.301 13.301 -3403.44 -13.301 0 0 -1 -1 0.39 1.16 0.22 -1 -1 0.39 0.351985 0.320043 +k4_n4_v7_l1_bidir.xml dsip.blif common 25.85 vpr 70.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72028 229 197 1815 2012 1 1190 816 29 29 841 io auto 23.3 MiB 0.39 11598 374294 119751 244235 10308 70.0 MiB 2.86 0.03 10.0144 -2422.01 -10.0144 10.0144 3.02 0.00960339 0.00875124 0.978592 0.892348 13 11442 27 2.187e+07 1.17e+07 -1 -1 11.41 2.8615 2.61875 39906 235943 -1 11038 14 6322 21798 1233985 243124 9.72035 9.72035 -2465.43 -9.72035 0 0 -1 -1 0.50 0.86 0.29 -1 -1 0.50 0.344218 0.318509 +k4_n4_v7_l1_bidir.xml elliptic.blif common 284.31 vpr 103.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105792 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 43.6 MiB 0.88 32351 567851 200333 360696 6822 103.2 MiB 5.82 0.07 27.9783 -15533.9 -27.9783 27.9783 4.23 0.0212312 0.0184495 1.8959 1.66032 24 35489 32 3.072e+07 2.988e+07 -1 -1 258.74 8.90417 7.90304 89088 639360 -1 31200 13 11222 48913 4715917 727929 27.2432 27.2432 -16421.1 -27.2432 0 0 -1 -1 1.42 2.24 0.72 -1 -1 1.42 0.662089 0.600124 +k4_n4_v7_l1_bidir.xml ex1010.blif common 80.67 vpr 145.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 148960 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 50.0 MiB 1.13 45994 770288 285832 482439 2017 145.5 MiB 9.03 0.10 36.785 -358.756 -36.785 nan 6.44 0.0224082 0.019622 2.08058 1.82301 22 51270 47 4.563e+07 4.5e+07 -1 -1 42.62 7.2793 6.46474 118482 826103 -1 45555 17 25079 97271 6266946 1020432 36.0782 nan -356.064 -36.0782 0 0 -1 -1 1.94 3.46 0.95 -1 -1 1.94 0.903903 0.819041 +k4_n4_v7_l1_bidir.xml ex5p.blif common 61.73 vpr 56.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57948 8 63 1072 1135 0 907 417 21 21 441 clb auto 18.6 MiB 0.26 11883 103179 30703 70308 2168 56.6 MiB 1.15 0.02 16.0477 -701.555 -16.0477 nan 1.35 0.00557558 0.00506472 0.392427 0.357109 25 14366 40 1.083e+07 1.038e+07 -1 -1 53.70 2.43114 2.2025 32642 233591 -1 12166 17 6925 22849 2173695 354592 16.4673 nan -724.712 -16.4673 0 0 -1 -1 0.45 0.96 0.26 -1 -1 0.45 0.226343 0.207949 +k4_n4_v7_l1_bidir.xml frisc.blif common 188.78 vpr 107.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109860 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 42.8 MiB 1.01 38053 550918 195740 345730 9448 107.1 MiB 5.95 0.06 26.7708 -16079.8 -26.7708 26.7708 4.23 0.0183088 0.0163278 1.75373 1.56066 28 41141 39 3.267e+07 3.138e+07 -1 -1 161.14 8.95441 8.00533 103554 761463 -1 37904 19 14894 66085 6762837 1100377 26.4186 26.4186 -16630.5 -26.4186 0 0 -1 -1 1.80 3.32 0.87 -1 -1 1.80 0.886685 0.802483 +k4_n4_v7_l1_bidir.xml misex3.blif common 34.77 vpr 58.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 60200 14 14 1411 1425 0 1075 460 23 23 529 clb auto 21.2 MiB 0.42 13603 122935 37231 83773 1931 58.8 MiB 1.40 0.02 15.8177 -198.917 -15.8177 nan 1.65 0.0064983 0.00586433 0.475689 0.430393 24 15090 31 1.323e+07 1.296e+07 -1 -1 25.70 2.94135 2.65821 39522 283015 -1 13602 13 6397 22681 1644493 266873 16.382 nan -205.208 -16.382 0 0 -1 -1 0.55 0.74 0.31 -1 -1 0.55 0.213952 0.196178 +k4_n4_v7_l1_bidir.xml pdc.blif common 852.44 vpr 151.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 154636 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 51.3 MiB 1.47 70294 897574 354208 536835 6531 143.8 MiB 10.28 0.10 33.2797 -1125.73 -33.2797 nan 6.75 0.0240061 0.0209196 2.4392 2.13191 36 81940 46 4.8e+07 4.587e+07 -1 -1 802.37 11.4824 10.1394 183520 1412616 -1 76274 22 28137 114234 30610013 6689943 36.2145 nan -1241.57 -36.2145 0 0 -1 -1 3.37 10.58 1.68 -1 -1 3.37 1.15451 1.03691 +k4_n4_v7_l1_bidir.xml s298.blif common 33.28 vpr 63.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 4 6 1942 1948 1 1189 579 26 26 676 clb auto 25.4 MiB 0.40 13967 167007 50805 115064 1138 63.3 MiB 1.96 0.03 27.24 -211.207 -27.24 27.24 2.19 0.00970302 0.00875985 0.665042 0.593411 17 15337 50 1.728e+07 1.707e+07 -1 -1 21.09 3.136 2.82459 39072 255848 -1 14347 20 8663 41813 3610876 520557 28.073 28.073 -223.928 -28.073 0 0 -1 -1 0.52 1.46 0.29 -1 -1 0.52 0.423892 0.387337 +k4_n4_v7_l1_bidir.xml s38417.blif common 81.44 vpr 170.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 174232 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 65.7 MiB 1.43 45634 1072858 392628 664107 16123 170.1 MiB 12.37 0.14 24.4627 -13956.7 -24.4627 24.4627 7.76 0.0337966 0.0292043 3.15502 2.72402 17 42648 34 5.292e+07 5.205e+07 -1 -1 35.21 10.1632 8.93125 115248 760028 -1 40952 16 27027 85845 6572579 1304562 24.9505 24.9505 -15520 -24.9505 0 0 -1 -1 1.72 4.00 0.94 -1 -1 1.72 1.34867 1.20555 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 100.80 vpr 164.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 168208 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 65.0 MiB 1.49 43403 1227283 460590 744600 22093 164.3 MiB 12.56 0.19 19.6369 -13002 -19.6369 19.6369 6.95 0.0320916 0.0277405 3.26593 2.84055 18 40282 31 5.043e+07 4.941e+07 -1 -1 58.49 10.3982 9.1874 116850 784767 -1 37340 12 19450 58891 3199854 553346 18.8099 18.8099 -13462.6 -18.8099 0 0 -1 -1 1.87 2.29 0.90 -1 -1 1.87 1.02726 0.926284 +k4_n4_v7_l1_bidir.xml seq.blif common 96.76 vpr 62.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 41 35 1791 1826 0 1383 615 26 26 676 clb auto 24.4 MiB 0.46 18096 199279 64010 129699 5570 62.4 MiB 2.07 0.03 18.8619 -564.146 -18.8619 nan 2.14 0.00795436 0.00714032 0.641004 0.57713 24 20652 40 1.728e+07 1.617e+07 -1 -1 84.57 3.80564 3.42545 51072 366016 -1 18166 15 8859 31682 2613523 386366 18.6362 nan -570.449 -18.6362 0 0 -1 -1 0.74 1.15 0.41 -1 -1 0.74 0.308923 0.281653 +k4_n4_v7_l1_bidir.xml spla.blif common 303.37 vpr 120.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 123652 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 42.4 MiB 1.13 48133 635614 236435 395101 4078 120.6 MiB 7.21 0.08 28.1256 -943.563 -28.1256 nan 5.42 0.0192494 0.0168148 1.81246 1.59236 32 54896 44 3.888e+07 3.696e+07 -1 -1 267.89 8.66975 7.69887 138672 1051752 -1 50886 18 21324 91350 14315862 2585399 31.0484 nan -1030.68 -31.0484 0 0 -1 -1 2.33 5.49 1.24 -1 -1 2.33 0.820607 0.739825 +k4_n4_v7_l1_bidir.xml tseng.blif common 17.63 vpr 57.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58436 52 122 1483 1605 1 736 453 19 19 361 clb auto 19.3 MiB 0.24 6190 104793 28563 72713 3517 57.1 MiB 1.09 0.02 11.4876 -2779.41 -11.4876 11.4876 1.11 0.00717122 0.00645293 0.448883 0.40534 16 6395 29 8.67e+06 8.37e+06 -1 -1 11.50 2.08851 1.88339 19074 119991 -1 5826 16 4189 15066 727869 140663 11.6952 11.6952 -3185.8 -11.6952 0 0 -1 -1 0.23 0.50 0.13 -1 -1 0.23 0.235276 0.214036 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt index d7048468870..b7ba7e5a23b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt @@ -1,23 +1,23 @@ -arch circuit script_params vtr_flow_elapsed_time error num_io num_LAB num_DSP num_M9K num_M144K num_PLL vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_time placed_wirelength_est place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_computation_time -stratixiv_arch.timing.xml gsm_switch_stratixiv_arch_timing.blif common 3434.92 136 21492 0 1848 0 1 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 9760656 100 36 504627 490068 5 200916 23477 255 189 48195 M9K auto 700.76 -1 1504.23 11.74 8.0573 -1.40572e+06 -8.0573 5.6189 177.19 1.11051 0.713981 193.057 125.871 5385844 441201 1322987 933414169 132816309 0 0 8.91222e+08 18492.0 12 9.20679 6.19052 -1.94741e+06 -8.20679 0 0 180.15 240.444 164.718 597.95 -stratixiv_arch.timing.xml mes_noc_stratixiv_arch_timing.blif common 5178.68 5 23760 0 800 0 8 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 9098808 3 2 577696 547568 17 345674 24573 193 143 27599 LAB auto 1364.30 -1 2826.61 26.29 11.27 -2.97906e+06 -10.27 8.03813 91.32 1.80404 1.18002 246.878 163.248 5138525 830618 2460044 1865303663 160918985 0 0 5.12586e+08 18572.6 38 12.0087 8.42243 -3.49809e+06 -11.0087 0 0 349.79 399.113 285.519 300.82 -stratixiv_arch.timing.xml dart_stratixiv_arch_timing.blif common 1295.19 69 6862 0 530 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 4184456 23 46 223304 202401 1 131203 7461 138 102 14076 M9K auto 382.91 -1 481.59 3.87 14.1501 -1.40215e+06 -13.1501 11.4821 49.45 0.648403 0.438358 83.6769 57.0805 2176369 347924 886285 611522444 59989634 0 0 2.60164e+08 18482.8 20 15.0213 12.3857 -1.73557e+06 -14.0213 0 0 105.49 121.372 87.8932 164.95 -stratixiv_arch.timing.xml denoise_stratixiv_arch_timing.blif common 3182.96 852 14030 24 359 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 5971932 264 588 355537 274786 1 218574 15265 150 111 16650 LAB auto 395.29 -1 2053.18 13.33 866.716 -868475 -865.716 866.716 59.74 0.852057 0.609981 129.74 93.1704 3069575 1205817 3821898 2625594594 200491408 0 0 3.08278e+08 18515.2 43 857.427 857.427 -1.06208e+06 -856.427 0 0 316.47 210.711 159.272 198.99 -stratixiv_arch.timing.xml sparcT2_core_stratixiv_arch_timing.blif common 3101.89 451 14725 0 260 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 5492144 239 212 302755 300220 1 184812 15436 153 113 17289 LAB auto 720.50 -1 1616.14 9.31 10.5604 -686489 -9.56037 10.5604 74.77 0.872497 0.578117 133.503 89.1183 4841206 557658 2081616 1599598820 153094223 0 0 3.20293e+08 18525.8 65 10.8439 10.8439 -962235 -9.84391 0 0 295.90 247.633 179.457 246.21 -stratixiv_arch.timing.xml cholesky_bdti_stratixiv_arch_timing.blif common 2191.28 162 9680 132 600 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 5522328 94 68 331744 255478 1 156536 10574 169 125 21125 DSP auto 343.39 -1 889.63 8.09 8.69851 -566131 -7.69851 8.69851 109.08 1.20758 0.935206 125.961 91.4 2616338 369944 775061 1257487865 245527477 0 0 3.91827e+08 18548.0 18 9.26921 9.26921 -849140 -8.26921 0 0 268.77 166.745 126.095 403.77 -stratixiv_arch.timing.xml minres_stratixiv_arch_timing.blif common 2432.68 229 7818 78 1459 0 1 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 6819488 129 100 316623 257480 3 183470 9585 225 167 37575 M9K auto 381.42 -1 827.15 4.18 7.64836 -339381 -6.64836 4.9105 204.80 0.749549 0.556493 143.207 105.834 2913341 385664 736714 785197968 116848060 0 0 6.95909e+08 18520.5 15 8.94983 6.16821 -534628 -7.94983 0 0 140.68 181.401 138.116 657.28 -stratixiv_arch.timing.xml stap_qrd_stratixiv_arch_timing.blif common 2706.95 150 15899 75 553 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 4970724 68 82 284051 234177 1 144423 16677 158 117 18486 LAB auto 315.03 -1 1579.67 9.66 6.97142 -374581 -5.97142 6.97142 129.35 0.569765 0.447079 154.643 112.186 2649637 299124 721610 828065173 126669656 0 0 3.42752e+08 18541.2 16 7.53291 7.53291 -591536 -6.53291 0 0 196.94 202.379 151.111 327.94 -stratixiv_arch.timing.xml openCV_stratixiv_arch_timing.blif common 2406.79 208 7145 213 785 40 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 5944316 106 102 279132 212552 1 168784 8391 209 155 32395 DSP auto 412.15 -1 692.21 4.57 10.0969 -598047 -9.09688 10.0969 169.15 0.727472 0.55054 116.775 85.9459 3370536 460982 1021226 1164410289 196307724 0 0 6.00287e+08 18530.2 43 10.8759 10.8759 -859659 -9.87586 0 0 300.88 195.6 151.617 643.04 -stratixiv_arch.timing.xml bitonic_mesh_stratixiv_arch_timing.blif common 3396.68 119 7239 85 1664 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 6841728 87 32 233978 190746 1 146198 9107 242 179 43318 M9K auto 559.97 -1 1127.28 6.90 12.1144 -1.51589e+06 -11.1144 12.1144 221.34 1.21887 0.860698 175.663 128.302 4588292 456078 1491126 1548811766 242407085 0 0 8.01751e+08 18508.5 18 12.7209 12.7209 -1.86107e+06 -11.7209 0 0 304.05 240.372 183.004 932.96 -stratixiv_arch.timing.xml segmentation_stratixiv_arch_timing.blif common 1763.17 441 6937 15 481 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 3718544 72 369 178312 137832 1 108345 7874 136 101 13736 M9K auto 185.42 -1 1080.57 6.58 851.19 -389269 -850.19 851.19 54.10 0.501823 0.365842 89.6848 65.6521 1630334 475504 1473018 1179152997 94653229 0 0 2.53781e+08 18475.6 24 837.727 837.727 -515162 -836.727 0 0 172.25 126.618 95.8909 165.68 -stratixiv_arch.timing.xml SLAM_spheric_stratixiv_arch_timing.blif common 884.93 479 5366 37 0 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 2821524 323 156 140638 111354 1 78004 5882 95 70 6650 LAB auto 212.42 -1 396.74 2.66 78.3162 -375071 -77.3162 78.3162 29.78 0.331472 0.280128 50.9109 37.3753 1612271 249303 845612 794012785 90253580 0 0 1.22432e+08 18410.9 20 77.2015 77.2015 -414731 -76.2015 0 0 107.22 71.3949 54.5921 73.43 -stratixiv_arch.timing.xml des90_stratixiv_arch_timing.blif common 1446.48 117 4233 44 860 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 4013740 85 32 138853 110549 1 87969 5254 171 127 21717 M9K auto 282.94 -1 444.78 4.09 11.4477 -770173 -10.4477 11.4477 81.79 0.834987 0.625928 85.2758 63.1207 2230768 283309 861480 732978149 114988063 0 0 4.02762e+08 18545.9 57 12.2596 12.2596 -928196 -11.2596 0 0 239.80 184.596 144.573 274.03 -stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common 582.49 77 3123 89 136 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 2813800 42 35 119888 86875 1 51283 3425 129 96 12384 DSP auto 85.55 -1 117.60 0.94 7.88637 -71260.7 -6.88637 5.1277 63.82 0.276687 0.214216 36.7265 27.9182 749667 110099 187821 250313976 47472949 0 0 2.28642e+08 18462.7 29 8.05602 5.58124 -112257 -7.05602 0 0 57.52 54.3082 43.3457 181.77 -stratixiv_arch.timing.xml sparcT1_core_stratixiv_arch_timing.blif common 791.54 310 4000 1 128 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 2316624 173 137 92814 91975 1 60944 4439 82 61 5002 LAB auto 250.21 -1 292.72 2.97 7.69498 -527081 -6.69498 7.69498 18.58 0.484786 0.335188 47.2008 32.1521 1293421 213067 742140 562420350 57380434 0 0 9.19900e+07 18390.6 34 8.28235 8.28235 -655221 -7.28235 0 0 115.19 81.8934 60.2717 57.04 -stratixiv_arch.timing.xml stereo_vision_stratixiv_arch_timing.blif common 563.33 506 3246 76 113 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 2744440 172 334 127090 94090 3 61732 3941 129 96 12384 DSP auto 81.66 -1 117.95 0.82 7.16483 -51326.5 -6.16483 3.19482 60.85 0.192659 0.134604 27.0351 19.0385 580833 129881 199489 173990883 19816534 0 0 2.28642e+08 18462.7 24 7.39025 3.26548 -71146 -6.39025 0 0 30.31 39.7283 29.6661 189.20 -stratixiv_arch.timing.xml cholesky_mc_stratixiv_arch_timing.blif common 822.42 262 4765 59 444 16 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 3139848 111 151 140214 108592 1 66751 5546 125 93 11625 M9K auto 127.78 -1 257.07 1.60 6.64077 -177966 -5.64077 6.64077 58.12 0.325199 0.243045 52.6464 38.4057 1180344 153949 342701 556413254 117858039 0 0 2.14514e+08 18452.8 16 6.97434 6.97434 -288912 -5.97434 0 0 137.35 70.3563 53.4736 154.69 -stratixiv_arch.timing.xml directrf_stratixiv_arch_timing.blif common 13033.91 319 61450 240 2535 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 19989968 62 257 1374456 930989 2 679981 64544 317 235 74495 M9K auto 1100.54 -1 8835.77 82.27 10.0391 -1.7189e+06 -9.03907 8.60202 365.26 2.32644 1.66281 526.865 374.58 12211049 1565796 2766063 3167014806 442243815 0 0 1.38708e+09 18619.7 36 10.5916 9.11279 -2.47963e+06 -9.59162 0 0 683.17 734.274 541.813 1479.59 -stratixiv_arch.timing.xml bitcoin_miner_stratixiv_arch_timing.blif common 12379.71 385 32503 0 1331 0 1 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 14041524 353 32 1446409 1087537 2 848902 34220 225 167 37575 LAB auto 800.01 -1 8905.24 34.75 8.79365 -825548 -7.79365 8.79365 142.25 1.97467 1.46614 404.675 290.131 10667459 2667357 3983335 3475083060 437778344 0 0 6.95909e+08 18520.5 221 13.7216 13.7216 -1.26214e+06 -12.7216 0 0 1592.57 1348.11 1039.94 533.31 -stratixiv_arch.timing.xml LU230_stratixiv_arch_timing.blif common 9437.46 373 16571 116 5040 16 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 18756984 178 195 663067 568001 2 413013 22116 430 319 137170 M9K auto 1116.15 -1 3180.91 12.00 22.8182 -3.14594e+06 -21.8182 7.83218 755.18 1.81031 1.31598 435.301 309.645 17977564 1024239 1942686 3346505372 605233804 0 0 2.57820e+09 18795.7 28 23.0087 9.77401 -5.72551e+06 -22.0087 0 0 898.40 569.516 420.296 2890.28 -stratixiv_arch.timing.xml sparcT1_chip2_stratixiv_arch_timing.blif common 9296.08 1891 33629 3 506 0 0 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 12985200 815 1076 764693 760412 1423 416439 36029 280 207 57960 io auto 1621.50 -1 5111.77 25.16 15.6661 -3.78262e+06 -14.6661 4.89313 350.69 1.92453 1.34688 361.645 249.477 7726080 1115595 3632800 1983755594 192008211 0 0 1.07375e+09 18525.7 57 16.6384 5.21373 -4.62443e+06 -15.6384 0 0 491.65 599.9 438.336 1286.93 -stratixiv_arch.timing.xml LU_Network_stratixiv_arch_timing.blif common 6921.18 399 31006 112 1175 0 2 success v8.0.0-4626-g00c7dece9 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-10-05T20:25:38 betzgrp-wintermute.eecg.utoronto.ca /home/khalid88/Documents/vtr-verilog-to-routing/vtr_flow/tasks 11533096 85 185 721554 630079 28 403716 32694 220 163 35860 LAB auto 882.59 -1 4693.25 30.21 8.36036 -542473 -7.36036 5.25441 159.88 2.20091 1.50729 457.23 324.706 5827891 815904 1701202 1435542337 195550222 0 0 6.64235e+08 18523.0 28 9.38323 5.663 -836677 -8.38323 0 0 358.54 645.807 476.117 488.15 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error num_io num_LAB num_DSP num_M9K num_M144K num_PLL 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 routed_wirelength avg_routed_wirelength routed_wiresegment avg_routed_wiresegment total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration num_rr_graph_nodes num_rr_graph_edges collapsed_nodes critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS create_rr_graph_time create_intra_cluster_rr_graph_time adding_internal_edges route_mem crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_mem tile_lookahead_computation_time router_lookahead_computation_time +stratixiv_arch.timing.xml gsm_switch_stratixiv_arch_timing.blif common 5671.62 vpr 8.58 GiB 136 21427 0 1848 0 1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 8994660 100 36 504627 490068 5 201854 23412 255 189 48195 M9K auto 5802.3 MiB 984.73 4467863 49903546 21247866 28503357 152323 8783.8 MiB 2799.40 19.63 10.1002 -1.45763e+06 -9.10021 6.41518 0.33 3.64187 2.97687 554.997 459.337 5361407 26.5619 1063277 5.26776 431719 1264696 985789835 142469759 0 0 8.91222e+08 18492.0 13 13900790 152933424 -1 10.4645 6.63121 -1.89396e+06 -9.46445 0 0 417.65 -1 -1 8783.8 MiB 383.11 675.88 566.067 8783.8 MiB -1 849.37 +stratixiv_arch.timing.xml mes_noc_stratixiv_arch_timing.blif common 8819.12 vpr 7.81 GiB 5 23732 0 800 0 8 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 8192572 3 2 577696 547568 17 345328 24545 193 143 27599 LAB auto 6235.8 MiB 2184.22 4028695 42096147 16159059 25675645 261443 7234.2 MiB 4761.40 54.93 12.2507 -3.23078e+06 -11.2507 8.67398 0.23 3.98098 3.36372 557.806 462.831 5076184 14.7005 1168401 3.38365 832411 2425582 2018149061 160050234 0 0 5.12586e+08 18572.6 46 7972190 87539386 -1 13.0553 8.63177 -3.63983e+06 -12.0553 0 0 241.90 -1 -1 8000.6 MiB 893.12 973.648 827.305 7234.2 MiB -1 478.75 +stratixiv_arch.timing.xml dart_stratixiv_arch_timing.blif common 2129.19 vpr 3.70 GiB 69 6849 0 530 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3879548 23 46 223304 202401 1 132299 7448 138 102 14076 M9K auto 2876.8 MiB 558.59 1760675 8223000 3179024 5005845 38131 3600.7 MiB 918.39 10.32 14.3975 -1.55361e+06 -13.3975 12.9059 0.10 1.72432 1.43174 204.603 170.765 2100698 15.8788 469937 3.55216 316167 781378 607803277 58375661 0 0 2.60164e+08 18482.8 18 4086206 44557676 -1 15.2532 14.2388 -1.75135e+06 -14.2532 0 0 125.26 -1 -1 3781.3 MiB 204.12 279.474 237.306 3600.7 MiB -1 222.08 +stratixiv_arch.timing.xml denoise_stratixiv_arch_timing.blif common 5064.23 vpr 5.26 GiB 852 14019 24 359 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5510452 264 588 355537 274786 1 218653 15254 150 111 16650 LAB auto 4200.0 MiB 544.98 2417820 24219158 9677849 14003222 538087 5295.7 MiB 3332.57 25.76 948.659 -966233 -947.659 948.659 0.12 2.66176 2.317 349.172 308.292 3109666 14.2464 716698 3.28343 978769 2993847 2272820980 184970433 0 0 3.08278e+08 18515.2 23 4815530 52743547 -1 862.182 862.182 -1.11298e+06 -861.182 0 0 147.23 -1 -1 5340.9 MiB 601.45 486.693 431.862 5295.7 MiB -1 261.47 +stratixiv_arch.timing.xml sparcT2_core_stratixiv_arch_timing.blif common 4914.14 vpr 4.88 GiB 451 14776 0 260 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5116568 239 212 302755 300220 1 184357 15487 153 113 17289 LAB auto 3851.6 MiB 1114.18 3832426 23169847 9506430 13556601 106816 4558.6 MiB 2253.44 18.25 10.8261 -754798 -9.82608 10.8261 0.14 2.16845 1.81072 266.975 223.651 4923480 26.7068 1084967 5.88527 586855 2204569 1878623028 207215604 0 0 3.20293e+08 18525.8 110 4998122 54793012 -1 11.3392 11.3392 -1.00872e+06 -10.3392 0 0 151.77 -1 -1 4996.6 MiB 974.89 726.925 621.728 4558.6 MiB -1 260.13 +stratixiv_arch.timing.xml cholesky_bdti_stratixiv_arch_timing.blif common 2769.24 vpr 4.73 GiB 162 9702 132 600 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4954756 94 68 331744 255478 1 158396 10596 169 125 21125 DSP auto 3622.2 MiB 394.79 1929748 14435516 5724133 8647608 63775 4807.1 MiB 1125.56 7.97 8.94582 -538494 -7.94582 8.94582 0.18 2.54701 2.2354 325.873 286.984 2551467 16.1086 532791 3.36375 357621 736976 1080208652 203393503 0 0 3.91827e+08 18548.0 50 6121200 66924827 -1 9.51824 9.51824 -807921 -8.51824 0 0 182.61 -1 -1 4813.3 MiB 553.52 580.439 521.132 4807.1 MiB -1 383.05 +stratixiv_arch.timing.xml minres_stratixiv_arch_timing.blif common 3110.98 vpr 6.41 GiB 229 7882 78 1459 0 1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 6724344 129 100 316623 257480 3 183184 9649 225 167 37575 M9K auto 3679.4 MiB 522.83 2236673 13255111 5209524 7982888 62699 6566.7 MiB 1110.58 7.95 7.76314 -359919 -6.76314 6.91932 0.32 2.49481 2.22874 330.368 292.585 2922223 15.9529 617710 3.37218 396587 778423 727243746 109039808 0 0 6.95909e+08 18520.5 21 10840348 119193881 -1 8.16739 7.26199 -530227 -7.16739 0 0 329.24 -1 -1 6566.7 MiB 293.70 451.043 403.03 6566.7 MiB -1 706.32 +stratixiv_arch.timing.xml stap_qrd_stratixiv_arch_timing.blif common 3121.65 vpr 4.31 GiB 150 15914 75 553 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4524284 68 82 284051 234177 1 145137 16692 158 117 18486 LAB auto 3339.9 MiB 369.95 2115107 36691564 14213931 22244095 233538 4332.1 MiB 1881.56 12.15 7.25014 -466711 -6.25014 7.25014 0.14 1.98166 1.6987 345.857 299.099 2601250 17.9410 533347 3.67853 297115 667725 755775940 111199101 0 0 3.42752e+08 18541.2 21 5339222 58617860 -1 7.70465 7.70465 -635061 -6.70465 0 0 161.18 -1 -1 4338.7 MiB 277.85 442.427 385.643 4332.1 MiB -1 309.08 +stratixiv_arch.timing.xml openCV_stratixiv_arch_timing.blif common 3086.88 vpr 5.59 GiB 208 7083 213 785 40 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5866672 106 102 279132 212552 1 167152 8329 209 155 32395 DSP auto 3145.6 MiB 470.03 2567027 10894768 4397409 6411672 85687 5729.2 MiB 1082.34 7.62 9.74251 -654382 -8.74251 9.74251 0.28 2.50975 2.27325 335.087 299.282 3311762 19.8145 674995 4.03855 428261 968501 1097167020 180873968 0 0 6.00287e+08 18530.2 44 9347734 102632854 -1 10.4243 10.4243 -854406 -9.42435 0 0 281.28 -1 -1 5729.2 MiB 534.98 565.875 510.975 5729.2 MiB -1 588.83 +stratixiv_arch.timing.xml bitonic_mesh_stratixiv_arch_timing.blif common 4005.13 vpr 6.64 GiB 119 7261 85 1664 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 6962640 87 32 233978 190746 1 145909 9129 242 179 43318 M9K auto 3066.6 MiB 756.37 3544456 12311472 4844213 7401987 65272 6799.5 MiB 1418.76 10.57 13.1671 -1.64499e+06 -12.1671 13.1671 0.26 3.02884 2.6924 404.182 359.144 4691969 32.1575 954929 6.54482 447890 1463107 1379671529 211965635 0 0 8.01751e+08 18508.5 19 12487288 137500901 -1 13.8718 13.8718 -1.90084e+06 -12.8718 0 0 379.01 -1 -1 6799.5 MiB 486.15 541.922 485.536 6799.5 MiB -1 821.39 +stratixiv_arch.timing.xml segmentation_stratixiv_arch_timing.blif common 2125.03 vpr 3.28 GiB 441 6914 15 481 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3440700 72 369 178312 137832 1 108244 7851 136 101 13736 M9K auto 2485.1 MiB 264.03 1297300 9913343 3878989 5831499 202855 3360.1 MiB 1163.93 9.17 947.695 -427553 -946.695 947.695 0.11 1.28994 1.13579 171.132 151.796 1749460 16.2059 399825 3.70373 385178 1147238 914878173 81125236 0 0 2.53781e+08 18475.6 23 3977116 43473905 -1 856.422 856.422 -516882 -855.422 0 0 121.44 -1 -1 3360.1 MiB 260.69 238.017 212.242 3360.1 MiB -1 218.33 +stratixiv_arch.timing.xml SLAM_spheric_stratixiv_arch_timing.blif common 1355.37 vpr 2.55 GiB 479 5392 37 0 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2671676 323 156 140638 111354 1 78035 5908 95 70 6650 LAB auto 2152.3 MiB 270.13 1287756 6091912 2300545 3707811 83556 2445.5 MiB 601.20 5.02 87.7382 -410898 -86.7382 87.7382 0.05 1.18809 1.07398 139.025 125.518 1700189 21.7881 376703 4.82748 271586 936414 879162538 104302659 0 0 1.22432e+08 18410.9 19 1937142 20983910 -1 78.9886 78.9886 -433033 -77.9887 0 0 60.42 -1 -1 2605.8 MiB 252.32 193.315 175.588 2445.5 MiB -1 99.94 +stratixiv_arch.timing.xml des90_stratixiv_arch_timing.blif common 2013.89 vpr 3.90 GiB 117 4207 44 860 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4086048 85 32 138853 110549 1 88003 5228 171 127 21717 M9K auto 2156.1 MiB 414.90 1574611 5447828 2061158 3342714 43956 3990.3 MiB 620.64 4.55 12.1408 -847363 -11.1408 12.1408 0.13 1.60769 1.42853 201.655 179.152 2217893 25.2033 465633 5.29128 261979 790097 703430605 105351896 0 0 4.02762e+08 18545.9 48 6285588 68777991 -1 12.2205 12.2205 -930880 -11.2205 0 0 185.38 -1 -1 3990.3 MiB 330.78 359.248 323.755 3990.3 MiB -1 383.69 +stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common 809.28 vpr 2.74 GiB 77 3116 89 136 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2872532 42 35 119888 86875 1 50931 3418 129 96 12384 DSP auto 1857.5 MiB 113.42 578228 3066002 1156131 1886749 23122 2805.2 MiB 235.73 1.81 7.95873 -78890.7 -6.95873 5.69401 0.07 1.03397 0.9368 127.433 115.736 750308 14.7460 159109 3.12702 103893 177168 214450061 38342039 0 0 2.28642e+08 18462.7 20 3593250 39166679 -1 8.43872 6.12839 -116509 -7.43872 0 0 107.77 -1 -1 2805.2 MiB 96.84 175.636 161.102 2805.2 MiB -1 200.92 +stratixiv_arch.timing.xml sparcT1_core_stratixiv_arch_timing.blif common 1000.85 vpr 2.14 GiB 310 4022 1 128 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2238924 173 137 92814 91975 1 60637 4461 82 61 5002 LAB auto 1829.0 MiB 356.85 919687 3932110 1445775 2431767 54568 1991.9 MiB 306.95 2.52 8.80445 -563340 -7.80445 8.80445 0.03 0.71829 0.606069 81.7974 69.0596 1271963 20.9781 285105 4.70214 209578 724517 524810705 52264363 0 0 9.19900e+07 18390.6 30 1450842 15738330 -1 8.9757 8.9757 -638876 -7.9757 0 0 45.57 -1 -1 2182.0 MiB 159.91 129.386 111.127 1991.9 MiB -1 76.75 +stratixiv_arch.timing.xml stereo_vision_stratixiv_arch_timing.blif common 710.14 vpr 2.72 GiB 506 3245 76 113 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2849280 172 334 127090 94090 3 61836 3940 129 96 12384 DSP auto 1824.8 MiB 98.46 502752 3643342 1361392 2231116 50834 2782.5 MiB 198.33 1.77 7.72675 -60005.4 -6.72675 3.43531 0.07 0.548889 0.487546 69.1957 59.3272 585974 9.47718 128986 2.08614 130363 197699 164742788 18330316 0 0 2.28642e+08 18462.7 26 3593250 39166679 -1 7.44333 3.23642 -74665.9 -6.44333 0 0 108.55 -1 -1 2782.5 MiB 68.46 103.002 89.5871 2782.5 MiB -1 183.17 +stratixiv_arch.timing.xml cholesky_mc_stratixiv_arch_timing.blif common 1023.72 vpr 2.87 GiB 262 4760 59 444 16 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3014652 111 151 140214 108592 1 66488 5541 125 93 11625 M9K auto 2151.4 MiB 153.99 790231 6425982 2521235 3836246 68501 2944.0 MiB 360.22 3.44 6.39835 -209444 -5.39835 6.39835 0.07 1.13548 0.993625 153.837 135.036 1136908 17.1005 240929 3.62386 148273 329341 494237128 102145401 0 0 2.14514e+08 18452.8 18 3364308 36746630 -1 6.98103 6.98103 -299618 -5.98103 0 0 102.75 -1 -1 2944.0 MiB 173.21 202.529 179.762 2944.0 MiB -1 163.96 +stratixiv_arch.timing.xml directrf_stratixiv_arch_timing.blif common 19275.08 vpr 17.24 GiB 319 61481 240 2535 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 18080304 62 257 1374456 930989 2 679973 64575 317 235 74495 M9K auto 12896.5 MiB 1505.99 10786792 221488713 88855580 131932545 700588 16074.0 MiB 13437.17 198.70 10.1812 -1.77125e+06 -9.18116 9.2013 0.64 7.33115 6.29698 1310.05 1132 11658347 17.1479 2322869 3.41663 1519527 2648214 3018035332 408783436 0 0 1.38708e+09 18619.7 38 21381670 236484671 -1 10.2849 9.47639 -2.39203e+06 -9.28486 0 0 648.23 -1 -1 16306.8 MiB 1598.57 1903 1665.15 16074.0 MiB -1 1567.18 +stratixiv_arch.timing.xml bitcoin_miner_stratixiv_arch_timing.blif common 16577.10 vpr 12.13 GiB 385 32503 0 1331 0 1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 12714980 353 32 1446409 1087537 2 860254 34220 225 167 37575 LAB auto 9912.5 MiB 955.98 8576943 71667533 25910806 44936296 820431 10592.9 MiB 12062.32 74.51 6.99145 -900154 -5.99145 6.99145 0.31 6.35382 5.48042 844.523 725.996 10068208 11.7038 2319581 2.69640 2282140 3356795 2877500649 279594881 0 0 6.95909e+08 18520.5 115 10840348 119193881 -1 9.48064 9.48064 -1.31555e+06 -8.48064 0 0 323.57 -1 -1 12353.9 MiB 2098.94 2212.78 1936.14 10592.9 MiB -1 722.97 +stratixiv_arch.timing.xml LU230_stratixiv_arch_timing.blif common 12505.40 vpr 18.35 GiB 373 16564 116 5040 16 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 19239044 178 195 663067 568001 2 410212 22109 430 319 137170 M9K auto 6535.1 MiB 1559.27 16538154 52438811 22173127 30150464 115220 18788.1 MiB 4721.57 26.67 26.4612 -3.15641e+06 -25.4612 8.54802 1.47 5.96764 5.08073 1048.9 909.825 17718090 43.1940 3279064 7.99386 997283 1895070 3609928372 716097339 0 0 2.57820e+09 18795.7 23 39390806 435739863 -1 24.2185 11.4153 -5.65823e+06 -23.2185 0 0 1177.32 -1 -1 18788.1 MiB 1665.13 1365.86 1195.73 18788.1 MiB -1 3033.75 +stratixiv_arch.timing.xml sparcT1_chip2_stratixiv_arch_timing.blif common 11961.82 vpr 11.06 GiB 1891 33591 3 506 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 11592028 815 1076 764693 760412 1423 415666 35991 280 207 57960 io auto 7993.2 MiB 2347.62 6231162 79030144 33326365 45149769 554010 11002.8 MiB 6748.00 48.53 20.5331 -4.30888e+06 -19.5331 5.06794 0.51 6.04898 5.20534 769.187 653.181 7489944 18.3348 1624648 3.97702 1015372 3220851 1820201447 153051727 0 0 1.07375e+09 18525.7 31 16684552 184044228 -1 21.8877 5.09688 -5.11291e+06 -20.8877 0 0 503.20 -1 -1 11077.1 MiB 790.66 1140.72 982.502 11002.8 MiB -1 1191.24 +stratixiv_arch.timing.xml LU_Network_stratixiv_arch_timing.blif common 9108.74 vpr 9.48 GiB 399 31049 112 1175 0 2 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 9938824 85 185 721554 630079 28 402685 32737 220 163 35860 LAB auto 7471.4 MiB 1113.34 4668375 86924607 34042775 52241885 639947 8995.0 MiB 6085.81 35.68 9.23505 -604545 -8.23505 5.02053 0.29 5.89756 5.00908 1016.29 874.218 5790703 14.3972 1270404 3.15857 832375 1726677 1357978404 186908086 0 0 6.64235e+08 18523.0 21 10351778 113709513 -1 9.93116 5.21326 -819133 -8.93116 0 0 312.36 -1 -1 9705.9 MiB 591.98 1303.48 1132.66 8995.0 MiB -1 689.86 From 1c9bb580ae47c2fff89b274742e0e3e938c91fc4 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Fri, 23 Aug 2024 12:27:31 -0400 Subject: [PATCH 24/25] More updated golden results --- .../multless_consts/config/golden_results.txt | 4096 ++++++++--------- .../multless_consts/config/golden_results.txt | 4096 ++++++++--------- .../vtr_bidir/config/golden_results.txt | 80 +- .../titan_quick_qor/config/golden_results.txt | 44 +- 4 files changed, 4158 insertions(+), 4158 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 b2e9c7b10dd..c2bea954534 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,2049 +1,2049 @@ 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 -1 -1 -1 -1 -1 0.27 17612 14 0.25 -1 -1 32756 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 16.8 MiB 0.39 1279 6823 1440 4905 478 55.3 MiB 0.11 0.00 7.95704 -163.811 -7.95704 7.95704 1.04 0.00156205 0.00143212 0.0582136 0.0533669 36 3193 16 6.55708e+06 325485 612192. 2118.31 3.26 0.373765 0.335667 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.0987036 0.0888622 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.31 17856 14 0.28 -1 -1 32900 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1272 10173 2471 6545 1157 55.4 MiB 0.15 0.00 8.16064 -158.468 -8.16064 8.16064 1.05 0.00158191 0.00145074 0.081165 0.0744808 36 3251 22 6.55708e+06 373705 612192. 2118.31 2.93 0.417574 0.375881 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0844937 0.0762804 184 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33128 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1375 11748 3042 6701 2005 55.5 MiB 0.18 0.00 6.90223 -139.699 -6.90223 6.90223 1.04 0.00156303 0.0014319 0.0959199 0.087957 28 4030 31 6.55708e+06 313430 500653. 1732.36 4.00 0.324425 0.292376 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0642427 0.0580702 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.27 17612 12 0.31 -1 -1 32788 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 16.8 MiB 0.54 1263 4783 870 3608 305 55.4 MiB 0.09 0.00 7.83974 -145.087 -7.83974 7.83974 0.96 0.00159214 0.00146152 0.0440768 0.0405599 36 3198 28 6.55708e+06 361650 612192. 2118.31 3.57 0.401577 0.36102 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0598802 0.0542859 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.27 17660 13 0.27 -1 -1 32820 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1445 11111 2879 6967 1265 55.5 MiB 0.18 0.00 7.83935 -165.421 -7.83935 7.83935 1.05 0.00175058 0.00159614 0.0956985 0.0876814 28 4394 44 6.55708e+06 373705 500653. 1732.36 3.54 0.386974 0.348994 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0710109 0.0643219 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.28 17816 13 0.24 -1 -1 32700 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1337 11046 2900 6780 1366 55.4 MiB 0.17 0.00 7.78297 -154.862 -7.78297 7.78297 1.05 0.00164922 0.00151087 0.0881177 0.0807175 36 3405 22 6.55708e+06 385760 612192. 2118.31 3.22 0.439886 0.396006 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.29 0.11 0.21 -1 -1 0.29 0.0504717 0.0458158 198 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.23 17324 12 0.19 -1 -1 32656 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1022 8969 2278 5945 746 55.1 MiB 0.12 0.00 7.21391 -130.754 -7.21391 7.21391 1.04 0.00126973 0.00116404 0.0639532 0.0586 30 2436 17 6.55708e+06 325485 526063. 1820.29 1.21 0.218527 0.197251 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.25 0.09 0.15 -1 -1 0.25 0.0447167 0.0406149 152 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17560 12 0.18 -1 -1 32696 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1233 12733 3609 7498 1626 55.0 MiB 0.17 0.00 6.32286 -134.975 -6.32286 6.32286 1.04 0.00125797 0.00115145 0.0901641 0.0824342 36 3149 24 6.55708e+06 265210 612192. 2118.31 4.41 0.338937 0.304361 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.054098 0.0490355 140 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17824 12 0.16 -1 -1 32692 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1203 13157 3412 7574 2171 55.2 MiB 0.14 0.00 6.35469 -136.224 -6.35469 6.35469 1.08 0.00128678 0.00117852 0.0665307 0.0607395 36 2772 21 6.55708e+06 313430 612192. 2118.31 2.77 0.341855 0.306911 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0401003 0.0364289 150 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.23 17676 13 0.19 -1 -1 32616 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1164 8207 1986 5229 992 55.2 MiB 0.12 0.00 7.79043 -163.222 -7.79043 7.79043 1.05 0.00138743 0.00126957 0.0617538 0.0565914 28 3341 23 6.55708e+06 301375 500653. 1732.36 2.53 0.246075 0.221483 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0480964 0.0435954 157 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17364 12 0.20 -1 -1 32508 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 16.2 MiB 0.27 1043 7646 1812 5284 550 54.8 MiB 0.10 0.00 6.98257 -137.016 -6.98257 6.98257 1.05 0.00121778 0.00111597 0.0528178 0.0484043 28 2870 17 6.55708e+06 289320 500653. 1732.36 2.17 0.201067 0.181191 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0681526 0.0614543 132 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.23 17512 12 0.15 -1 -1 32716 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1210 6701 1475 4829 397 55.0 MiB 0.10 0.00 6.74278 -155.388 -6.74278 6.74278 1.05 0.00125451 0.00114656 0.0481396 0.0440074 28 3180 36 6.55708e+06 265210 500653. 1732.36 2.92 0.240804 0.216169 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0575716 0.0518881 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.25 17608 13 0.24 -1 -1 32492 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1329 9892 2541 6359 992 55.3 MiB 0.10 0.00 8.09466 -168.958 -8.09466 8.09466 0.72 0.0015994 0.00146681 0.0384593 0.0349616 28 3841 47 6.55708e+06 361650 500653. 1732.36 2.56 0.316512 0.284277 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0496445 0.0451274 191 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17744 14 0.30 -1 -1 32688 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1640 11170 2650 7415 1105 55.4 MiB 0.18 0.00 9.0039 -186.596 -9.0039 9.0039 1.07 0.00173039 0.00158625 0.0959284 0.0878765 30 4087 23 6.55708e+06 361650 526063. 1820.29 2.16 0.325871 0.294434 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0292814 0.0264378 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17556 11 0.17 -1 -1 32624 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 16.3 MiB 0.25 878 5158 949 3601 608 55.0 MiB 0.08 0.00 6.71354 -123.992 -6.71354 6.71354 1.07 0.00124803 0.00114347 0.0368863 0.0337965 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.87 0.224448 0.201549 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046889 0.0424185 147 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.27 17640 12 0.27 -1 -1 32844 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1420 10309 2435 6528 1346 55.5 MiB 0.16 0.00 7.45763 -153.823 -7.45763 7.45763 1.04 0.00172199 0.00157891 0.0848605 0.0777804 34 4188 46 6.55708e+06 397815 585099. 2024.56 5.03 0.535691 0.482016 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.26 0.26 0.22 -1 -1 0.26 0.0995667 0.0899108 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.27 17656 14 0.24 -1 -1 32844 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 16.7 MiB 0.29 1436 5553 1081 4073 399 55.3 MiB 0.10 0.00 7.42808 -156.41 -7.42808 7.42808 1.04 0.00156663 0.0014363 0.0459739 0.042145 38 3267 17 6.55708e+06 349595 638502. 2209.35 3.38 0.367724 0.329917 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0543451 0.0491432 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.24 17768 12 0.16 -1 -1 32404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1097 11991 2937 7207 1847 54.8 MiB 0.16 0.00 7.19884 -160.926 -7.19884 7.19884 1.07 0.00127332 0.00116566 0.083544 0.0764828 28 3171 46 6.55708e+06 277265 500653. 1732.36 2.50 0.305033 0.274767 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0460978 0.0417009 140 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55524 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 15.5 MiB 0.16 733 7548 1614 5464 470 54.2 MiB 0.09 0.00 5.36346 -120.328 -5.36346 5.36346 1.05 0.000904749 0.000828354 0.0438593 0.0401821 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.97 0.115495 0.103222 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0306502 0.027528 91 87 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.23 17344 13 0.18 -1 -1 32616 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1075 12951 3421 7713 1817 54.9 MiB 0.17 0.00 6.90774 -144.707 -6.90774 6.90774 1.05 0.00129375 0.00118393 0.090844 0.0831735 28 3088 32 6.55708e+06 289320 500653. 1732.36 2.17 0.279634 0.251957 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0549876 0.0496722 144 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17588 13 0.27 -1 -1 32808 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1429 6575 1166 5105 304 55.6 MiB 0.11 0.00 8.01121 -157.98 -8.01121 8.01121 1.05 0.00168632 0.00154619 0.0562108 0.0515386 34 3477 22 6.55708e+06 373705 585099. 2024.56 2.70 0.416572 0.374446 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0675554 0.0611581 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.29 17944 13 0.28 -1 -1 32552 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1433 6823 1289 5315 219 55.2 MiB 0.12 0.00 7.886 -165.604 -7.886 7.886 1.05 0.00163314 0.00149742 0.0594015 0.0544549 36 4367 47 6.55708e+06 325485 612192. 2118.31 8.96 0.483144 0.434068 22750 144809 -1 3332 17 1366 4336 289824 66269 7.0397 7.0397 -158.876 -7.0397 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0627756 0.0570737 194 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17348 9 0.09 -1 -1 32288 -1 -1 24 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55576 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 15.6 MiB 0.19 744 10762 3120 6243 1399 54.3 MiB 0.10 0.00 5.06374 -98.4324 -5.06374 5.06374 1.04 0.000819811 0.000747303 0.0517457 0.0473728 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.54 0.154143 0.138061 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.22 0.06 0.17 -1 -1 0.22 0.0262003 0.0235087 87 76 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.22 17536 13 0.27 -1 -1 32712 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1381 10781 2930 5957 1894 55.4 MiB 0.17 0.00 7.83519 -151.249 -7.83519 7.83519 0.77 0.00160165 0.00146844 0.0933947 0.085662 30 4083 42 6.55708e+06 301375 526063. 1820.29 3.57 0.316096 0.284591 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630877 0.0571082 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.18 17312 8 0.09 -1 -1 33008 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 15.6 MiB 0.13 553 7648 2806 3716 1126 54.2 MiB 0.05 0.00 4.12642 -89.8462 -4.12642 4.12642 1.14 0.000299994 0.000269655 0.019699 0.0177063 30 1616 22 6.55708e+06 192880 526063. 1820.29 1.08 0.104158 0.0919778 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.24 0.05 0.20 -1 -1 0.24 0.0238679 0.0213639 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.23 17544 15 0.22 -1 -1 32760 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1321 6923 1475 4903 545 55.4 MiB 0.11 0.00 8.32249 -162.146 -8.32249 8.32249 1.09 0.00144775 0.00132805 0.0531067 0.0487031 36 3269 25 6.55708e+06 337540 612192. 2118.31 3.03 0.375341 0.336881 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0497231 0.0450642 165 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17688 13 0.22 -1 -1 32724 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1319 5919 1133 4327 459 55.2 MiB 0.10 0.00 7.07675 -156.6 -7.07675 7.07675 1.05 0.00146808 0.00134593 0.0476202 0.0436721 28 3679 22 6.55708e+06 313430 500653. 1732.36 2.56 0.240778 0.216868 21310 115450 -1 3055 23 1552 4783 319503 75123 6.44892 6.44892 -155.475 -6.44892 0 0 612192. 2118.31 0.22 0.17 0.18 -1 -1 0.22 0.0671703 0.0606296 168 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17768 13 0.28 -1 -1 32744 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1276 11223 2538 6825 1860 55.2 MiB 0.17 0.00 7.85647 -160.581 -7.85647 7.85647 1.05 0.00157048 0.0014403 0.0886624 0.0812629 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.84 0.304434 0.27478 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.27 0.11 0.13 -1 -1 0.27 0.052012 0.0472205 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.22 17456 12 0.16 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1153 7191 1558 5291 342 54.9 MiB 0.11 0.00 6.57592 -147.41 -6.57592 6.57592 1.04 0.00128764 0.00117926 0.0520102 0.0476354 36 3148 35 6.55708e+06 277265 612192. 2118.31 4.10 0.362778 0.325243 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0440652 0.0398731 147 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17572 11 0.15 -1 -1 32588 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.19 963 12919 3847 7319 1753 54.7 MiB 0.16 0.00 6.46503 -135.82 -6.46503 6.46503 1.04 0.00115326 0.00104915 0.083551 0.076472 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.55 0.229834 0.20748 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.037551 0.0339607 131 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.24 17456 11 0.17 -1 -1 32608 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 16.6 MiB 0.35 1010 6913 1544 4325 1044 55.1 MiB 0.05 0.00 6.38158 -126.573 -6.38158 6.38158 0.72 0.000457078 0.000412842 0.018824 0.0170267 26 3323 50 6.55708e+06 337540 477104. 1650.88 1.95 0.101858 0.0893736 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0493514 0.0445865 150 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.22 17448 12 0.22 -1 -1 32636 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1304 6321 1255 4617 449 55.1 MiB 0.10 0.00 7.16635 -157.812 -7.16635 7.16635 1.05 0.00149924 0.00137619 0.0514235 0.0471874 26 3817 49 6.55708e+06 313430 477104. 1650.88 3.66 0.312345 0.280521 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586273 0.0529867 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.22 17516 12 0.16 -1 -1 32744 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 16.5 MiB 0.57 980 5567 1150 4291 126 55.1 MiB 0.09 0.00 7.18658 -144.693 -7.18658 7.18658 1.06 0.00128207 0.00117193 0.0418527 0.0383368 28 3147 34 6.55708e+06 277265 500653. 1732.36 2.55 0.234927 0.211064 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0714621 0.0643746 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.24 17460 10 0.15 -1 -1 32600 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.18 1013 6563 1489 4557 517 54.9 MiB 0.10 0.00 5.76546 -121.445 -5.76546 5.76546 1.04 0.00123501 0.00113571 0.0489248 0.0448471 30 2358 16 6.55708e+06 265210 526063. 1820.29 1.28 0.196794 0.177268 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0424779 0.0384899 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18124 13 0.29 -1 -1 32788 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1488 10247 2366 6979 902 55.8 MiB 0.17 0.00 7.78037 -164.973 -7.78037 7.78037 1.04 0.00180581 0.00165542 0.0910545 0.0834306 32 4128 46 6.55708e+06 373705 554710. 1919.41 2.37 0.396597 0.35737 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0626686 0.0569091 221 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.28 18196 14 0.31 -1 -1 33424 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 16.9 MiB 0.50 1341 7544 1708 5122 714 55.4 MiB 0.13 0.00 7.48711 -165.315 -7.48711 7.48711 1.07 0.00162643 0.00149267 0.0640908 0.0588322 30 3756 44 6.55708e+06 337540 526063. 1820.29 2.34 0.335318 0.302156 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0625798 0.0567881 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17640 12 0.15 -1 -1 32592 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1061 14582 3956 8171 2455 54.9 MiB 0.19 0.00 7.55424 -147.694 -7.55424 7.55424 0.99 0.00129803 0.00118868 0.0947327 0.0865592 36 2670 17 6.55708e+06 349595 612192. 2118.31 2.82 0.359124 0.322857 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0417348 0.0377704 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.29 17944 12 0.28 -1 -1 32868 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1440 9951 2153 6171 1627 55.5 MiB 0.16 0.00 7.66392 -155.521 -7.66392 7.66392 1.07 0.00176201 0.00161857 0.0853174 0.0783459 30 3843 35 6.55708e+06 397815 526063. 1820.29 2.21 0.351813 0.317985 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.24 0.16 0.22 -1 -1 0.24 0.0749786 0.0680013 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17856 14 0.33 -1 -1 33356 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1368 10442 2445 6848 1149 55.7 MiB 0.17 0.00 8.27333 -162.102 -8.27333 8.27333 1.05 0.00167894 0.00154032 0.0894244 0.0820305 30 3476 48 6.55708e+06 349595 526063. 1820.29 2.25 0.378552 0.341264 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0267756 0.0242162 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.29 18208 13 0.25 -1 -1 32896 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1406 11311 2955 7221 1135 55.2 MiB 0.18 0.00 7.94497 -159.991 -7.94497 7.94497 1.05 0.00157341 0.00144113 0.0916055 0.0839089 36 3512 22 6.55708e+06 337540 612192. 2118.31 2.96 0.428868 0.386138 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0592924 0.0537269 185 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.16 17592 13 0.25 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1345 7613 1868 4862 883 55.4 MiB 0.12 0.00 7.08841 -141.492 -7.08841 7.08841 1.04 0.00153019 0.00140258 0.0633828 0.058075 34 3664 49 6.55708e+06 313430 585099. 2024.56 3.97 0.463602 0.416166 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.28 0.13 0.22 -1 -1 0.28 0.0554394 0.0502481 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.20 17388 12 0.18 -1 -1 32696 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 16.7 MiB 0.22 1315 5548 1167 3981 400 55.4 MiB 0.09 0.00 7.00741 -145.329 -7.00741 7.00741 1.04 0.00142816 0.00130966 0.0462758 0.0424451 28 3273 27 6.55708e+06 289320 500653. 1732.36 2.08 0.242933 0.218273 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0535003 0.0483115 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.31 18516 14 0.38 -1 -1 32836 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 17.1 MiB 0.40 1670 9383 2100 6642 641 55.7 MiB 0.17 0.00 8.23218 -176.173 -8.23218 8.23218 1.04 0.00187062 0.00171422 0.0867643 0.0795036 34 4632 43 6.55708e+06 373705 585099. 2024.56 3.86 0.266422 0.237584 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0649971 0.0591474 230 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17384 11 0.21 -1 -1 32460 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.34 1051 8603 2089 5379 1135 55.0 MiB 0.13 0.00 6.74223 -137.589 -6.74223 6.74223 1.05 0.00138527 0.0012696 0.0639838 0.058588 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.85 0.279398 0.251465 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0498976 0.0451412 163 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17648 13 0.30 -1 -1 33400 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1315 7435 1572 5156 707 55.3 MiB 0.12 0.00 8.06447 -154.642 -8.06447 8.06447 1.06 0.001589 0.00145439 0.0630293 0.0577129 28 3730 45 6.55708e+06 337540 500653. 1732.36 2.76 0.324734 0.291996 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.22 0.16 0.12 -1 -1 0.22 0.0608241 0.0551223 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.26 17788 12 0.25 -1 -1 32880 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.44 1532 15213 4154 8657 2402 55.5 MiB 0.24 0.00 7.13712 -150.826 -7.13712 7.13712 1.05 0.00170639 0.00156331 0.128984 0.118116 36 3865 38 6.55708e+06 349595 612192. 2118.31 4.75 0.544514 0.490671 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0796048 0.0721058 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.24 17552 13 0.24 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1350 5133 911 3808 414 55.3 MiB 0.09 0.00 7.54057 -158.305 -7.54057 7.54057 1.07 0.00155985 0.00143116 0.0430153 0.0394787 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.58 0.24938 0.224729 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0586099 0.05302 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.27 17636 13 0.21 -1 -1 32780 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1371 12351 2891 7373 2087 55.3 MiB 0.18 0.00 7.1188 -155.865 -7.1188 7.1188 1.07 0.00151145 0.00138508 0.0974992 0.0893998 36 3355 27 6.55708e+06 313430 612192. 2118.31 4.33 0.438632 0.394043 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0499009 0.0452623 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32796 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 16.7 MiB 0.44 1446 11170 2757 7067 1346 55.3 MiB 0.17 0.00 7.31654 -157.818 -7.31654 7.31654 1.04 0.00164332 0.00150557 0.0912286 0.0835579 38 3284 17 6.55708e+06 361650 638502. 2209.35 2.97 0.431647 0.388599 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.30 0.10 0.25 -1 -1 0.30 0.0404278 0.0365111 197 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.16 17992 13 0.29 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1513 7223 1461 5178 584 55.5 MiB 0.13 0.00 7.58438 -161.714 -7.58438 7.58438 1.05 0.0017617 0.00161564 0.0640522 0.0587283 36 3945 19 6.55708e+06 373705 612192. 2118.31 3.57 0.417992 0.37615 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0666319 0.060399 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17804 14 0.27 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1215 10813 2361 6891 1561 55.2 MiB 0.16 0.00 8.31609 -163.248 -8.31609 8.31609 1.04 0.00149297 0.00136946 0.0870622 0.0798397 30 3273 27 6.55708e+06 289320 526063. 1820.29 2.46 0.299322 0.269888 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0551152 0.049908 168 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17824 13 0.26 -1 -1 32672 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1503 5206 957 3956 293 55.4 MiB 0.09 0.00 8.07478 -162.365 -8.07478 8.07478 1.05 0.00163736 0.00150285 0.0447537 0.0410977 28 4195 32 6.55708e+06 361650 500653. 1732.36 3.83 0.291691 0.262571 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0644936 0.0584505 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 17892 13 0.27 -1 -1 32808 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1405 8401 1949 5780 672 55.7 MiB 0.14 0.00 7.80415 -160.841 -7.80415 7.80415 1.05 0.00170154 0.00155547 0.0720467 0.0660169 34 3777 50 6.55708e+06 373705 585099. 2024.56 3.80 0.516687 0.46456 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.0558744 0.0508025 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.29 18048 12 0.29 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1438 11641 3058 7283 1300 55.5 MiB 0.19 0.00 7.70272 -159.771 -7.70272 7.70272 0.79 0.00169619 0.00155526 0.0945156 0.0864947 30 3780 27 6.55708e+06 397815 526063. 1820.29 1.83 0.331905 0.299475 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0647839 0.0588163 216 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.23 17324 11 0.13 -1 -1 32620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 16.2 MiB 0.24 1054 3998 719 2985 294 54.8 MiB 0.06 0.00 6.14869 -128.86 -6.14869 6.14869 1.05 0.00116246 0.00106444 0.0293354 0.0268715 26 2734 30 6.55708e+06 216990 477104. 1650.88 2.06 0.192845 0.17267 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0506837 0.0463528 125 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.26 17840 13 0.22 -1 -1 32648 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.34 1266 7888 1808 5375 705 55.1 MiB 0.12 0.00 7.4424 -157.565 -7.4424 7.4424 1.05 0.00142902 0.00131068 0.0618502 0.0566824 28 3615 32 6.55708e+06 289320 500653. 1732.36 2.45 0.271248 0.24408 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0562075 0.05079 161 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18268 14 0.42 -1 -1 32852 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 17.3 MiB 0.26 1601 9199 2042 6426 731 55.9 MiB 0.18 0.00 8.66873 -176.87 -8.66873 8.66873 1.09 0.00196735 0.00179896 0.0969304 0.0888012 30 4285 34 6.55708e+06 397815 526063. 1820.29 2.65 0.393488 0.355507 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.22 0.16 0.17 -1 -1 0.22 0.0705812 0.0642085 245 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.27 17808 13 0.28 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1376 4579 799 3553 227 55.1 MiB 0.08 0.00 8.02278 -172.696 -8.02278 8.02278 1.06 0.00157226 0.00142938 0.0392975 0.0359971 36 3334 17 6.55708e+06 325485 612192. 2118.31 3.28 0.365503 0.327843 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0541466 0.0492155 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.23 17376 11 0.17 -1 -1 32660 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 16.3 MiB 0.17 1035 10687 2518 6679 1490 54.8 MiB 0.14 0.00 6.59735 -138.464 -6.59735 6.59735 1.04 0.00125328 0.001147 0.0756975 0.0692433 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.71 0.305534 0.274134 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.26 0.10 0.22 -1 -1 0.26 0.0454222 0.0411535 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.30 18252 15 0.46 -1 -1 32736 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1771 9773 2274 6549 950 55.7 MiB 0.18 0.00 9.55013 -184.943 -9.55013 9.55013 1.04 0.0020423 0.00187112 0.0948225 0.0869135 36 4458 20 6.55708e+06 409870 612192. 2118.31 4.83 0.540619 0.488551 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.27 0.21 0.12 -1 -1 0.27 0.0850269 0.0771835 257 257 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.26 17588 13 0.31 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1402 7958 1933 5289 736 55.6 MiB 0.13 0.00 7.87358 -164.462 -7.87358 7.87358 1.04 0.00169476 0.00155497 0.0717264 0.0657554 30 3523 41 6.55708e+06 337540 526063. 1820.29 1.98 0.346373 0.312466 21886 126133 -1 2862 16 1203 3677 173554 41260 6.73256 6.73256 -152.703 -6.73256 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0582527 0.0529153 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.22 17412 11 0.13 -1 -1 32040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1082 11804 3066 7108 1630 55.0 MiB 0.15 0.00 6.28346 -137.062 -6.28346 6.28346 1.06 0.00124315 0.00113818 0.0813482 0.0744848 30 2616 26 6.55708e+06 265210 526063. 1820.29 1.65 0.24908 0.224487 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0359682 0.0326458 141 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.26 17720 12 0.29 -1 -1 32812 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 17.1 MiB 0.41 1459 6058 1136 4425 497 55.8 MiB 0.11 0.00 7.4882 -153.189 -7.4882 7.4882 1.05 0.00171735 0.00157094 0.0539221 0.0494075 28 4439 38 6.55708e+06 361650 500653. 1732.36 4.26 0.328825 0.295979 21310 115450 -1 3721 57 4013 13613 1649164 568355 6.87004 6.87004 -155.733 -6.87004 0 0 612192. 2118.31 0.22 0.74 0.09 -1 -1 0.22 0.179911 0.161773 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.22 17540 12 0.20 -1 -1 32640 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1183 11346 2851 6780 1715 55.2 MiB 0.15 0.00 7.37351 -152.427 -7.37351 7.37351 1.04 0.0013547 0.0012408 0.0801469 0.0734715 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.98 0.275808 0.248654 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.26 0.12 0.09 -1 -1 0.26 0.0490432 0.0444434 153 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17612 12 0.18 -1 -1 32720 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 948 9803 2338 5714 1751 55.0 MiB 0.14 0.00 7.00946 -139.977 -7.00946 7.00946 1.05 0.00129864 0.00119052 0.0748006 0.0685211 26 3038 22 6.55708e+06 253155 477104. 1650.88 2.88 0.244368 0.220363 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.21 0.12 0.18 -1 -1 0.21 0.0485096 0.0438921 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 17804 12 0.28 -1 -1 32732 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1279 5474 1033 4128 313 55.6 MiB 0.10 0.00 6.7577 -128.343 -6.7577 6.7577 1.09 0.00161401 0.00148092 0.0476836 0.0438253 30 3505 36 6.55708e+06 373705 526063. 1820.29 2.22 0.256511 0.230624 21886 126133 -1 2899 27 1332 4449 354174 132887 5.94258 5.94258 -126.347 -5.94258 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0844115 0.0762196 191 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.27 17812 13 0.33 -1 -1 32776 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 17.1 MiB 0.58 1641 6757 1409 4886 462 55.7 MiB 0.12 0.00 8.4108 -177.204 -8.4108 8.4108 1.06 0.00183677 0.00168568 0.0614884 0.056427 30 4203 45 6.55708e+06 397815 526063. 1820.29 2.90 0.375833 0.339078 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0703228 0.0639233 238 236 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17588 12 0.22 -1 -1 32708 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1388 15645 4295 9025 2325 55.4 MiB 0.24 0.00 7.61066 -152.509 -7.61066 7.61066 1.11 0.00164487 0.0015051 0.125282 0.114664 30 3749 42 6.55708e+06 385760 526063. 1820.29 3.16 0.397353 0.358596 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0699665 0.0632889 200 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.23 17460 12 0.15 -1 -1 32428 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 16.4 MiB 0.50 1058 4842 1062 3260 520 54.8 MiB 0.07 0.00 6.82123 -141.643 -6.82123 6.82123 1.05 0.0011818 0.00108098 0.0346541 0.0317326 30 2539 19 6.55708e+06 241100 526063. 1820.29 1.30 0.151024 0.135443 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0578673 0.0521069 126 120 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.24 17952 12 0.21 -1 -1 32412 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1176 10455 2348 6392 1715 54.9 MiB 0.15 0.00 7.13387 -142.33 -7.13387 7.13387 1.04 0.00136933 0.00124415 0.0762727 0.0698203 28 3265 32 6.55708e+06 289320 500653. 1732.36 2.58 0.274963 0.24755 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0534659 0.0482634 154 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.25 17652 11 0.18 -1 -1 32848 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1196 13547 4241 6931 2375 55.3 MiB 0.19 0.00 6.85121 -131.802 -6.85121 6.85121 1.04 0.00152106 0.00139304 0.104209 0.0954392 36 3385 32 6.55708e+06 361650 612192. 2118.31 5.22 0.459444 0.413233 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.31 0.12 0.23 -1 -1 0.31 0.0484521 0.0441465 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.23 17520 11 0.20 -1 -1 32684 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1080 10647 2769 6876 1002 55.3 MiB 0.15 0.00 6.62889 -122.091 -6.62889 6.62889 1.04 0.0014221 0.00130524 0.0831324 0.0762128 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.99 0.392609 0.352736 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0604533 0.0545037 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.26 17772 13 0.19 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1040 5271 1036 3997 238 55.0 MiB 0.08 0.00 7.2482 -136.339 -7.2482 7.2482 1.08 0.00130276 0.00119254 0.0395862 0.0362533 36 2751 18 6.55708e+06 301375 612192. 2118.31 2.82 0.311549 0.279455 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0559882 0.0506249 148 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.26 17800 12 0.19 -1 -1 32844 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1203 11270 2888 6672 1710 55.1 MiB 0.16 0.00 7.39203 -156.297 -7.39203 7.39203 1.05 0.00149951 0.00137648 0.0855065 0.0784826 30 3360 45 6.55708e+06 337540 526063. 1820.29 2.79 0.3369 0.303453 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0510762 0.0462816 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.26 17832 13 0.28 -1 -1 32800 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1314 8130 1959 5459 712 55.4 MiB 0.13 0.00 8.02027 -155.447 -8.02027 8.02027 1.04 0.00158242 0.0014517 0.0686292 0.0629553 30 3005 23 6.55708e+06 325485 526063. 1820.29 1.63 0.277205 0.250102 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.24 0.10 0.19 -1 -1 0.24 0.0493479 0.0448401 187 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17912 14 0.23 -1 -1 32780 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 16.7 MiB 0.24 1224 14168 3595 8187 2386 55.2 MiB 0.21 0.00 8.42547 -164.88 -8.42547 8.42547 1.05 0.00162987 0.00149213 0.115867 0.106019 26 3972 40 6.55708e+06 337540 477104. 1650.88 3.42 0.376271 0.339372 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.23 0.15 0.17 -1 -1 0.23 0.0693063 0.0626865 196 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18204 14 0.24 -1 -1 32852 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1263 9791 2392 5641 1758 55.2 MiB 0.15 0.00 7.61341 -152.493 -7.61341 7.61341 1.05 0.00151076 0.00138432 0.0796354 0.0730156 30 3316 50 6.55708e+06 301375 526063. 1820.29 2.44 0.352533 0.317473 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.062573 0.0566831 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.28 18132 13 0.32 -1 -1 32676 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1335 6813 1455 4737 621 55.6 MiB 0.12 0.00 7.97606 -158.638 -7.97606 7.97606 1.08 0.0016916 0.00155007 0.0600808 0.0551064 28 4023 34 6.55708e+06 349595 500653. 1732.36 3.10 0.315257 0.283922 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.24 0.27 0.18 -1 -1 0.24 0.10041 0.0905767 205 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.26 17568 13 0.19 -1 -1 32464 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 16.2 MiB 0.41 1181 4811 970 3437 404 54.8 MiB 0.08 0.00 7.32681 -149.503 -7.32681 7.32681 1.03 0.00131811 0.00120553 0.037203 0.0340947 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.64 0.209407 0.188047 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.046453 0.0420571 147 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.28 18084 13 0.41 -1 -1 32980 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1409 6058 1135 4495 428 55.5 MiB 0.11 0.00 8.2444 -163.721 -8.2444 8.2444 1.05 0.00171161 0.00156975 0.055486 0.0509245 36 3519 23 6.55708e+06 385760 612192. 2118.31 3.99 0.427717 0.384993 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.059451 0.0540316 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17616 14 0.30 -1 -1 32832 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.45 1264 7231 1520 5560 151 55.2 MiB 0.12 0.00 8.00109 -166.402 -8.00109 8.00109 1.04 0.00157964 0.00144368 0.0619536 0.0567093 30 3743 50 6.55708e+06 325485 526063. 1820.29 2.57 0.340274 0.306038 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0490203 0.0445185 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17800 13 0.22 -1 -1 32884 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 16.7 MiB 0.28 1305 14323 3915 8229 2179 55.4 MiB 0.21 0.00 7.86768 -158.537 -7.86768 7.86768 1.05 0.00150935 0.00138373 0.114705 0.105084 38 3237 35 6.55708e+06 301375 638502. 2209.35 3.80 0.47164 0.424514 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.28 0.13 0.25 -1 -1 0.28 0.0572084 0.0517283 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17992 13 0.21 -1 -1 32960 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1164 9989 2471 5804 1714 55.3 MiB 0.16 0.00 7.4808 -136.781 -7.4808 7.4808 1.05 0.00150917 0.00138497 0.0824713 0.0756509 28 4049 33 6.55708e+06 325485 500653. 1732.36 5.12 0.28024 0.252134 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0552659 0.0499744 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.27 17824 14 0.34 -1 -1 32784 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1476 8091 1866 5495 730 55.7 MiB 0.13 0.00 7.88885 -165.953 -7.88885 7.88885 1.04 0.00177218 0.00162493 0.0661721 0.0607088 30 3544 39 6.55708e+06 446035 526063. 1820.29 1.86 0.346583 0.312639 21886 126133 -1 2956 19 1495 4336 195157 47267 7.0377 7.0377 -158.211 -7.0377 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0700885 0.0636001 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17608 11 0.27 -1 -1 32836 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.45 1160 8130 1856 5819 455 55.5 MiB 0.13 0.00 6.86478 -134.007 -6.86478 6.86478 1.05 0.00154024 0.00141181 0.0675125 0.0618403 28 3852 30 6.55708e+06 349595 500653. 1732.36 3.20 0.299502 0.270331 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0631889 0.0571801 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17076 13 0.16 -1 -1 32572 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1142 8083 2034 5178 871 55.1 MiB 0.11 0.00 7.01052 -158.499 -7.01052 7.01052 1.08 0.00122361 0.00111469 0.0544127 0.0498469 28 3461 48 6.55708e+06 289320 500653. 1732.36 3.66 0.266688 0.239557 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0477246 0.043103 138 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 17780 14 0.23 -1 -1 32904 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 16.7 MiB 0.39 1316 5267 941 3849 477 55.2 MiB 0.09 0.00 8.08175 -166.146 -8.08175 8.08175 0.95 0.00151236 0.00138663 0.0433265 0.039752 36 3344 49 6.55708e+06 337540 612192. 2118.31 5.74 0.435362 0.390351 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0591399 0.0535104 179 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.28 18260 15 0.40 -1 -1 32708 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57244 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1738 9421 2028 6135 1258 55.9 MiB 0.17 0.00 9.11118 -191.695 -9.11118 9.11118 1.10 0.00193088 0.00177195 0.0861417 0.0791186 30 4813 25 6.55708e+06 397815 526063. 1820.29 3.17 0.353604 0.319777 21886 126133 -1 3846 17 1881 5477 280413 64438 7.85982 7.85982 -180.296 -7.85982 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0694731 0.0631788 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17548 11 0.16 -1 -1 32588 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 16.1 MiB 0.38 1015 8213 1831 5887 495 54.7 MiB 0.10 0.00 6.43354 -132.345 -6.43354 6.43354 1.06 0.00120489 0.00110267 0.0433118 0.0391958 26 2795 26 6.55708e+06 265210 477104. 1650.88 2.68 0.209357 0.187563 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0441358 0.0397413 129 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.23 17332 12 0.18 -1 -1 32848 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1181 9395 2257 5715 1423 55.2 MiB 0.13 0.00 7.12111 -149.72 -7.12111 7.12111 1.04 0.00134892 0.00123072 0.0676851 0.0620024 34 3103 20 6.55708e+06 313430 585099. 2024.56 2.42 0.312183 0.280375 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0439134 0.0397502 156 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.28 17904 12 0.27 -1 -1 32712 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1374 9732 2347 6008 1377 55.4 MiB 0.16 0.00 7.22518 -156.32 -7.22518 7.22518 1.05 0.00172638 0.00157779 0.0823147 0.0754074 30 3769 28 6.55708e+06 385760 526063. 1820.29 2.67 0.332095 0.299744 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0664914 0.0604075 213 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.27 17840 12 0.23 -1 -1 32788 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 16.6 MiB 0.34 1295 7929 1664 5456 809 55.1 MiB 0.13 0.00 7.52995 -159.234 -7.52995 7.52995 1.04 0.001534 0.001407 0.0651034 0.0597002 36 3430 23 6.55708e+06 313430 612192. 2118.31 3.11 0.380701 0.342388 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0477721 0.0433968 181 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.16 18172 14 0.42 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 17.2 MiB 0.50 1613 7655 1578 5578 499 55.8 MiB 0.14 0.00 9.00229 -179.771 -9.00229 9.00229 1.04 0.00190819 0.00175195 0.073292 0.0672104 36 4565 44 6.55708e+06 373705 612192. 2118.31 6.66 0.561114 0.505824 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.26 0.17 0.12 -1 -1 0.26 0.0730662 0.0664722 234 233 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.25 17676 12 0.21 -1 -1 32840 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 16.4 MiB 0.43 1246 9687 2384 6348 955 55.2 MiB 0.15 0.00 7.02918 -135.408 -7.02918 7.02918 1.04 0.00143295 0.001315 0.0778769 0.0714283 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.85 0.29105 0.262201 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.22 0.12 0.20 -1 -1 0.22 0.0493222 0.044473 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.22 17456 11 0.21 -1 -1 32804 -1 -1 26 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 16.4 MiB 0.33 833 9013 2082 5123 1808 54.8 MiB 0.12 0.00 7.08055 -122.398 -7.08055 7.08055 1.04 0.00122075 0.00111799 0.0628165 0.0575179 28 2481 16 6.55708e+06 313430 500653. 1732.36 1.38 0.209336 0.188727 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0422386 0.0382439 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.29 18200 13 0.42 -1 -1 32892 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 17.7 MiB 0.46 1984 9864 2435 6697 732 56.0 MiB 0.18 0.00 7.66038 -164.562 -7.66038 7.66038 1.04 0.00212074 0.00194337 0.0921628 0.0844266 36 4924 33 6.55708e+06 482200 612192. 2118.31 6.90 0.545118 0.491239 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.27 0.21 0.23 -1 -1 0.27 0.0843849 0.0766875 286 286 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 18076 14 0.24 -1 -1 33088 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.21 1315 7027 1431 4957 639 55.3 MiB 0.11 0.00 8.27869 -161.961 -8.27869 8.27869 1.04 0.00156251 0.00143306 0.0581757 0.0533658 28 3660 24 6.55708e+06 337540 500653. 1732.36 2.37 0.26828 0.241767 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0637751 0.0576984 188 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17768 12 0.16 -1 -1 32640 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1196 5395 963 4230 202 55.0 MiB 0.08 0.00 7.24055 -154.388 -7.24055 7.24055 1.04 0.00132207 0.00121292 0.0380952 0.0349644 30 2856 20 6.55708e+06 325485 526063. 1820.29 1.46 0.201291 0.181133 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0426716 0.0387173 145 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.26 17628 13 0.27 -1 -1 32836 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1201 6321 1371 4614 336 55.3 MiB 0.11 0.00 7.64034 -157.02 -7.64034 7.64034 1.04 0.00152202 0.00139495 0.053864 0.0493518 30 3256 40 6.55708e+06 313430 526063. 1820.29 1.86 0.294909 0.26538 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0468604 0.0425014 169 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.27 17932 13 0.31 -1 -1 32812 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1537 8423 1899 6115 409 55.8 MiB 0.15 0.00 7.71709 -159.898 -7.71709 7.71709 1.05 0.00188193 0.00173176 0.0748891 0.0687345 36 3879 25 6.55708e+06 421925 612192. 2118.31 3.71 0.466765 0.42033 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.32 0.09 0.23 -1 -1 0.32 0.0354705 0.0322565 233 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.26 17640 11 0.24 -1 -1 32852 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1421 8703 2291 5674 738 55.5 MiB 0.14 0.00 6.43018 -129.379 -6.43018 6.43018 1.05 0.00163679 0.00150184 0.0722123 0.0662549 38 3311 27 6.55708e+06 373705 638502. 2209.35 3.30 0.432757 0.389108 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0580261 0.0526955 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 17780 15 0.33 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 16.8 MiB 0.48 1495 8283 1832 5858 593 55.6 MiB 0.14 0.00 9.21891 -185.491 -9.21891 9.21891 1.04 0.00170503 0.00156319 0.0721097 0.0660744 38 3387 17 6.55708e+06 349595 638502. 2209.35 3.42 0.425645 0.383136 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.28 0.12 0.25 -1 -1 0.28 0.0532213 0.048407 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.29 18148 13 0.31 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1391 6271 1140 4757 374 55.4 MiB 0.11 0.00 8.07023 -173.04 -8.07023 8.07023 1.05 0.00165512 0.00151757 0.0534103 0.048985 30 3593 20 6.55708e+06 361650 526063. 1820.29 2.14 0.265214 0.238901 21886 126133 -1 2903 17 1284 3905 184760 43217 7.10844 7.10844 -159.923 -7.10844 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0694765 0.0631634 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.14 17496 12 0.19 -1 -1 32692 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 16.7 MiB 0.43 1116 9738 2558 6406 774 55.3 MiB 0.13 0.00 7.61081 -154.169 -7.61081 7.61081 1.05 0.00133967 0.00122898 0.068667 0.0629449 30 3005 25 6.55708e+06 349595 526063. 1820.29 1.72 0.247277 0.222964 21886 126133 -1 2423 19 1255 3517 162640 39524 6.47024 6.47024 -141.633 -6.47024 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524299 0.0474358 157 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.24 17636 11 0.15 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 1023 14221 4533 7413 2275 55.0 MiB 0.18 0.00 6.85492 -138.928 -6.85492 6.85492 1.05 0.00124918 0.0011431 0.0992181 0.0907217 30 2928 46 6.55708e+06 253155 526063. 1820.29 2.21 0.311489 0.280318 21886 126133 -1 2286 18 1070 2867 167614 45871 6.07244 6.07244 -136.814 -6.07244 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0472799 0.0426707 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17604 13 0.32 -1 -1 32860 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1413 7544 1727 4833 984 55.5 MiB 0.13 0.00 7.87899 -160.785 -7.87899 7.87899 1.04 0.00167024 0.00153138 0.0656729 0.0602013 36 4021 32 6.55708e+06 349595 612192. 2118.31 4.73 0.454425 0.408428 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.27 0.18 0.23 -1 -1 0.27 0.07392 0.0672022 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.24 17540 10 0.16 -1 -1 32612 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 868 12919 4781 6181 1957 54.8 MiB 0.17 0.00 5.78714 -114.742 -5.78714 5.78714 1.09 0.00122749 0.00112418 0.088476 0.0810058 36 2361 20 6.55708e+06 289320 612192. 2118.31 2.94 0.357012 0.321594 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0376194 0.0341053 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17464 14 0.19 -1 -1 32536 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 16.6 MiB 0.48 1127 8083 1934 5578 571 55.1 MiB 0.12 0.00 7.89252 -162.804 -7.89252 7.89252 1.05 0.0013253 0.00121414 0.0586879 0.0537833 30 2792 49 6.55708e+06 289320 526063. 1820.29 2.33 0.294772 0.265269 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0541165 0.0489064 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.27 18032 13 0.26 -1 -1 32712 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1259 5343 1011 3807 525 55.4 MiB 0.05 0.00 7.51815 -158.387 -7.51815 7.51815 0.73 0.000555378 0.000497503 0.016943 0.0153981 30 3403 50 6.55708e+06 361650 526063. 1820.29 2.39 0.28552 0.255996 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0592643 0.0536671 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.22 17348 12 0.15 -1 -1 32648 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 16.2 MiB 0.32 1126 6425 1245 4721 459 54.7 MiB 0.09 0.00 6.61153 -138.873 -6.61153 6.61153 1.04 0.00135675 0.00123333 0.043998 0.0402344 26 3323 44 6.55708e+06 313430 477104. 1650.88 4.18 0.250248 0.224694 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0459733 0.0415341 138 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.27 17772 12 0.19 -1 -1 32844 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1378 9336 2424 5781 1131 55.2 MiB 0.15 0.00 6.98257 -148.375 -6.98257 6.98257 1.08 0.00159093 0.00145749 0.080651 0.0738476 28 3883 35 6.55708e+06 313430 500653. 1732.36 4.59 0.325773 0.29336 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.23 0.26 0.19 -1 -1 0.23 0.0792537 0.0716163 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.29 17912 13 0.28 -1 -1 32672 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 16.8 MiB 0.49 1315 8372 1899 5332 1141 55.3 MiB 0.14 0.00 7.89081 -157.415 -7.89081 7.89081 1.06 0.00163616 0.00149935 0.0712874 0.0654115 30 3625 30 6.55708e+06 349595 526063. 1820.29 1.98 0.306686 0.27667 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0604182 0.054909 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.23 17348 11 0.17 -1 -1 32628 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1172 8405 1842 5723 840 55.0 MiB 0.11 0.00 6.25963 -142.54 -6.25963 6.25963 1.07 0.00128668 0.001167 0.0576879 0.0527868 28 3065 24 6.55708e+06 301375 500653. 1732.36 1.86 0.23006 0.207027 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0422883 0.0383321 148 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.24 17636 13 0.21 -1 -1 32764 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 16.3 MiB 0.29 1201 7888 1972 5242 674 55.0 MiB 0.12 0.00 7.53481 -156.077 -7.53481 7.53481 0.96 0.00143535 0.00131667 0.062262 0.0571249 36 3071 27 6.55708e+06 289320 612192. 2118.31 3.89 0.385114 0.345976 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0468585 0.04248 164 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.25 17844 13 0.25 -1 -1 32820 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 17.0 MiB 0.65 1318 8165 2007 5452 706 55.5 MiB 0.13 0.00 7.90343 -168.183 -7.90343 7.90343 1.04 0.00159297 0.0014602 0.067703 0.0620305 30 3226 19 6.55708e+06 337540 526063. 1820.29 1.64 0.266518 0.240373 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0654755 0.0593052 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.27 17804 11 0.21 -1 -1 32796 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1119 12568 3466 6955 2147 55.1 MiB 0.17 0.00 6.27069 -123.259 -6.27069 6.27069 1.05 0.00138578 0.00127108 0.0933256 0.085563 30 2940 50 6.55708e+06 325485 526063. 1820.29 2.16 0.337729 0.304143 21886 126133 -1 2517 15 1008 3060 157394 36211 5.50298 5.50298 -118.863 -5.50298 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0455581 0.0413035 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.29 18352 14 0.31 -1 -1 33240 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 17.4 MiB 0.36 1606 6711 1323 5111 277 55.9 MiB 0.12 0.00 8.36721 -183.374 -8.36721 8.36721 1.05 0.00182011 0.00166709 0.0590877 0.0541795 30 4329 37 6.55708e+06 421925 526063. 1820.29 2.78 0.341643 0.308068 21886 126133 -1 3550 24 1906 6091 351716 94716 7.38604 7.38604 -174.226 -7.38604 0 0 666494. 2306.21 0.24 0.20 0.20 -1 -1 0.24 0.0871901 0.0789421 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17136 12 0.17 -1 -1 32560 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1117 4987 873 3940 174 55.1 MiB 0.07 0.00 6.95154 -148.876 -6.95154 6.95154 1.03 0.00121248 0.00110995 0.0331756 0.0304147 36 2672 44 6.55708e+06 337540 612192. 2118.31 2.91 0.337617 0.302276 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0356993 0.0323959 138 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18120 13 0.29 -1 -1 32836 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 16.9 MiB 0.40 1370 8603 2025 5470 1108 55.3 MiB 0.14 0.00 7.91043 -160.998 -7.91043 7.91043 1.06 0.00160104 0.00146973 0.0744827 0.0682709 28 4265 49 6.55708e+06 301375 500653. 1732.36 4.71 0.357702 0.322105 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0580623 0.0525632 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17592 13 0.18 -1 -1 32644 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.5 MiB 0.33 1056 8130 1788 5768 574 55.0 MiB 0.12 0.00 7.50778 -157.173 -7.50778 7.50778 1.05 0.001301 0.00118841 0.0562795 0.0514286 30 2704 18 6.55708e+06 313430 526063. 1820.29 1.40 0.214892 0.193497 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.044385 0.0402158 151 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.29 17900 12 0.21 -1 -1 32872 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1163 6723 1513 4783 427 55.5 MiB 0.11 0.00 6.89912 -149.425 -6.89912 6.89912 1.04 0.00156204 0.0014264 0.0566857 0.0519115 28 3528 41 6.55708e+06 313430 500653. 1732.36 3.35 0.310618 0.279318 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0552988 0.0501387 176 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18460 15 0.47 -1 -1 33276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 17.5 MiB 0.27 1744 7060 1356 4899 805 56.0 MiB 0.14 0.00 8.47263 -171.112 -8.47263 8.47263 1.05 0.00209021 0.00191438 0.0693625 0.0635189 30 5706 47 6.55708e+06 433980 526063. 1820.29 5.07 0.436232 0.39402 21886 126133 -1 4008 29 2412 8168 612663 183661 7.6799 7.6799 -172.318 -7.6799 0 0 666494. 2306.21 0.23 0.31 0.10 -1 -1 0.23 0.117057 0.105998 256 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.21 17140 10 0.10 -1 -1 32152 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 15.8 MiB 0.12 585 9368 2413 5125 1830 54.3 MiB 0.10 0.00 5.46394 -116.249 -5.46394 5.46394 1.03 0.000905375 0.000829237 0.0519597 0.0475727 34 2054 46 6.55708e+06 216990 585099. 2024.56 2.26 0.279447 0.249275 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.27 0.07 0.22 -1 -1 0.27 0.0281215 0.0253442 90 84 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17672 13 0.19 -1 -1 32768 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 16.2 MiB 0.17 1072 8919 2278 5395 1246 54.8 MiB 0.13 0.00 7.24406 -148.604 -7.24406 7.24406 1.05 0.00129206 0.00118484 0.063849 0.0585826 36 2670 24 6.55708e+06 301375 612192. 2118.31 2.47 0.342695 0.308104 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0437925 0.0396976 143 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17636 12 0.21 -1 -1 32660 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1142 5938 1144 4647 147 55.2 MiB 0.10 0.00 7.66077 -153.727 -7.66077 7.66077 1.06 0.00146379 0.00134295 0.0492799 0.0452389 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.99 0.258516 0.232434 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.26 0.14 0.18 -1 -1 0.26 0.0578562 0.0523324 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.15 17104 9 0.13 -1 -1 32508 -1 -1 22 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 16.1 MiB 0.16 820 8191 2009 5395 787 54.7 MiB 0.10 0.00 5.29417 -99.0147 -5.29417 5.29417 1.05 0.00102226 0.000936603 0.0522873 0.0479199 28 2275 34 6.55708e+06 265210 500653. 1732.36 1.73 0.204657 0.183558 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.03816 0.0343715 111 110 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17816 12 0.25 -1 -1 32800 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1501 7867 1766 5013 1088 55.7 MiB 0.13 0.00 7.24465 -156.602 -7.24465 7.24465 1.05 0.00167613 0.00153718 0.0640638 0.0587686 36 4232 25 6.55708e+06 397815 612192. 2118.31 5.05 0.432603 0.388923 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0632831 0.0574058 212 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.30 18296 13 0.28 -1 -1 32664 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1408 5343 959 3971 413 55.6 MiB 0.10 0.00 8.27458 -166.489 -8.27458 8.27458 1.07 0.00169267 0.00155209 0.0480411 0.0440973 30 3772 34 6.55708e+06 361650 526063. 1820.29 2.25 0.301747 0.272148 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0613251 0.0556482 200 199 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 17.1 MiB 0.30 1124 13017 3784 8461 772 55.6 MiB 0.20 0.00 5.44269 -161.211 -5.44269 5.44269 0.75 0.00117703 0.00108076 0.0730608 0.0669919 32 2442 21 6.64007e+06 401856 554710. 1919.41 1.29 0.214948 0.193355 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0513334 0.0462344 154 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30448 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1017 14639 5117 7505 2017 55.6 MiB 0.24 0.00 4.98742 -150.865 -4.98742 4.98742 1.07 0.00118553 0.00108731 0.0951133 0.0872797 32 2368 24 6.64007e+06 301392 554710. 1919.41 1.19 0.222633 0.200896 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.049744 0.0448519 139 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.6 MiB 0.24 982 7575 1808 5319 448 55.3 MiB 0.13 0.00 4.35696 -123.732 -4.35696 4.35696 1.05 0.00102224 0.000936776 0.0432596 0.0396842 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.76 0.187689 0.168222 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0432382 0.0388571 126 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.7 MiB 0.07 985 10228 2796 6251 1181 55.2 MiB 0.08 0.00 4.65835 -126.219 -4.65835 4.65835 1.02 0.000391843 0.000354148 0.0223609 0.0202768 32 2212 23 6.64007e+06 339066 554710. 1919.41 1.27 0.158282 0.141491 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0439229 0.0394829 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30264 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.7 MiB 0.05 1007 9687 2297 6508 882 55.4 MiB 0.08 0.00 4.57112 -133.029 -4.57112 4.57112 0.72 0.000416208 0.000376301 0.0229293 0.020785 30 2231 22 6.64007e+06 288834 526063. 1820.29 0.77 0.0789614 0.069749 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417112 0.0376178 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30336 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1031 10673 2804 7227 642 55.5 MiB 0.17 0.00 3.47522 -121.603 -3.47522 3.47522 1.05 0.00120106 0.00110093 0.0601096 0.055116 26 2825 19 6.64007e+06 426972 477104. 1650.88 2.00 0.207724 0.186973 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.048249 0.0434642 142 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17552 1 0.02 -1 -1 30588 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 16.3 MiB 0.11 589 11532 3345 7374 813 54.9 MiB 0.15 0.00 4.00878 -100.807 -4.00878 4.00878 1.06 0.000895541 0.00082145 0.0652213 0.059859 32 1498 22 6.64007e+06 238602 554710. 1919.41 1.15 0.178538 0.160305 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0341167 0.0305149 93 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30064 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 892 10318 2381 7361 576 55.2 MiB 0.14 0.00 3.4251 -99.9264 -3.4251 3.4251 1.05 0.000972932 0.000893855 0.0496412 0.0455334 28 2086 21 6.64007e+06 389298 500653. 1732.36 1.19 0.171468 0.154009 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0373206 0.0335257 115 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30128 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 16.8 MiB 0.22 960 9623 2754 6116 753 55.3 MiB 0.14 0.00 3.62801 -120.96 -3.62801 3.62801 1.05 0.00103427 0.000947423 0.05762 0.0528059 28 2163 20 6.64007e+06 251160 500653. 1732.36 1.17 0.185916 0.166916 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.03781 0.0339434 111 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30100 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.22 841 12506 4273 6237 1996 55.2 MiB 0.18 0.00 3.87558 -126.558 -3.87558 3.87558 1.05 0.0010121 0.00092763 0.0755392 0.0693134 28 1979 19 6.64007e+06 213486 500653. 1732.36 1.24 0.199752 0.17991 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0371203 0.0333462 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.17 17884 1 0.03 -1 -1 30428 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.5 MiB 0.16 796 12078 3517 6936 1625 55.2 MiB 0.16 0.00 4.09995 -113.228 -4.09995 4.09995 1.04 0.000997782 0.000914666 0.0737028 0.067524 32 1650 18 6.64007e+06 213486 554710. 1919.41 1.10 0.192173 0.172789 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.036299 0.0325286 98 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 0.27 811 8448 2011 5971 466 55.0 MiB 0.12 0.00 3.76138 -119.223 -3.76138 3.76138 1.04 0.00095372 0.000874807 0.0479023 0.0439275 32 2052 21 6.64007e+06 226044 554710. 1919.41 1.16 0.166736 0.14947 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0331215 0.0297089 109 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1094 10228 2675 6918 635 55.3 MiB 0.18 0.00 4.45106 -144.281 -4.45106 4.45106 1.07 0.00116142 0.0010655 0.0643304 0.0590828 28 2647 19 6.64007e+06 301392 500653. 1732.36 1.34 0.207313 0.186877 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0485103 0.0437036 139 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30444 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.18 940 8735 2013 6355 367 55.4 MiB 0.15 0.00 5.05578 -142.31 -5.05578 5.05578 1.03 0.00118372 0.00108474 0.0514219 0.0471838 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.72 0.207368 0.18589 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0549453 0.0493388 134 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30108 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 637 6668 1590 4651 427 55.1 MiB 0.05 0.00 3.28519 -90.5035 -3.28519 3.28519 1.09 0.000324725 0.000292902 0.0138014 0.0125169 28 1662 22 6.64007e+06 263718 500653. 1732.36 1.12 0.125278 0.111439 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.23 0.07 0.17 -1 -1 0.23 0.0319014 0.0285146 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.22 17876 1 0.02 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 16.9 MiB 0.18 961 6890 1523 4904 463 55.6 MiB 0.13 0.00 4.06512 -124.686 -4.06512 4.06512 1.04 0.00120626 0.00110642 0.0473462 0.0434856 32 2268 21 6.64007e+06 276276 554710. 1919.41 1.29 0.193573 0.173893 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.29 0.11 0.21 -1 -1 0.29 0.0471173 0.0425449 133 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17640 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1114 15447 4373 9239 1835 55.5 MiB 0.24 0.00 4.49004 -144.522 -4.49004 4.49004 1.04 0.00114565 0.00105206 0.0952199 0.0874283 30 2367 22 6.64007e+06 288834 526063. 1820.29 1.36 0.237495 0.214169 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0496195 0.0446811 138 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17904 1 0.04 -1 -1 30468 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.8 MiB 0.15 723 8493 1892 6266 335 55.3 MiB 0.13 0.00 2.85064 -99.9956 -2.85064 2.85064 1.05 0.00106033 0.000969424 0.0452802 0.0414219 26 1971 23 6.64007e+06 364182 477104. 1650.88 1.35 0.182395 0.163409 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.25 0.11 0.18 -1 -1 0.25 0.049022 0.0438561 110 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 16.3 MiB 0.07 681 12139 4399 6260 1480 54.9 MiB 0.13 0.00 2.38033 -81.64 -2.38033 2.38033 1.05 0.00076902 0.000703302 0.0592896 0.0542479 32 1405 20 6.64007e+06 188370 554710. 1919.41 1.09 0.15367 0.137575 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.25 0.06 0.24 -1 -1 0.25 0.028923 0.0257308 81 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 16.8 MiB 0.26 706 14123 4873 6572 2678 55.3 MiB 0.18 0.00 4.95769 -142.332 -4.95769 4.95769 1.05 0.000998696 0.00091638 0.0812904 0.0746044 36 1838 20 6.64007e+06 251160 612192. 2118.31 2.41 0.288537 0.258618 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.28 0.08 0.23 -1 -1 0.28 0.0347326 0.0312352 128 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.07 905 8735 1899 5951 885 55.5 MiB 0.13 0.00 4.18572 -129.145 -4.18572 4.18572 1.05 0.00116138 0.00106634 0.0501502 0.0460589 30 2116 22 6.64007e+06 389298 526063. 1820.29 1.18 0.197639 0.177877 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0478534 0.0430564 135 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30364 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1203 12167 3358 7515 1294 55.9 MiB 0.20 0.00 4.64616 -143.706 -4.64616 4.64616 1.04 0.00120978 0.00111002 0.07787 0.071442 26 3212 23 6.64007e+06 313950 477104. 1650.88 2.57 0.228902 0.206013 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0527155 0.0474376 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.14 17360 1 0.03 -1 -1 30596 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.2 MiB 0.16 410 10636 4183 5187 1266 54.8 MiB 0.10 0.00 2.43955 -66.7065 -2.43955 2.43955 1.04 0.000655809 0.000598597 0.0452125 0.0412744 26 1192 25 6.64007e+06 226044 477104. 1650.88 1.11 0.13169 0.117369 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0251434 0.0223626 77 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17176 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.07 995 7897 1725 4978 1194 55.2 MiB 0.12 0.00 5.05066 -128.356 -5.05066 5.05066 0.82 0.00101296 0.000930873 0.0458057 0.0421128 28 2296 20 6.64007e+06 263718 500653. 1732.36 1.16 0.171885 0.154532 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0391281 0.0352006 118 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.13 17148 1 0.03 -1 -1 30064 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 16.0 MiB 0.06 661 11200 3826 5626 1748 54.6 MiB 0.10 0.00 2.56853 -79.0193 -2.56853 2.56853 1.05 0.000634681 0.000579327 0.0448158 0.040922 28 1267 14 6.64007e+06 175812 500653. 1732.36 1.03 0.117704 0.105271 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.23 0.04 0.18 -1 -1 0.23 0.019053 0.0170393 79 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30216 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 831 10318 2723 6880 715 55.2 MiB 0.15 0.00 4.58015 -125.342 -4.58015 4.58015 1.05 0.00103161 0.000946258 0.0529382 0.0485651 28 2131 21 6.64007e+06 376740 500653. 1732.36 1.21 0.183285 0.164681 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0399073 0.0358635 123 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.19 17280 1 0.03 -1 -1 30532 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.06 850 7439 1494 5462 483 55.3 MiB 0.12 0.00 3.82887 -106.637 -3.82887 3.82887 1.05 0.00104908 0.000962907 0.0390408 0.0358528 28 2324 24 6.64007e+06 389298 500653. 1732.36 1.22 0.176629 0.158626 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407083 0.0366744 128 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30288 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 16.9 MiB 0.15 906 17635 6157 8662 2816 55.5 MiB 0.25 0.00 4.78135 -133.838 -4.78135 4.78135 1.09 0.00112837 0.00103374 0.100278 0.0919459 28 2693 30 6.64007e+06 339066 500653. 1732.36 2.05 0.261753 0.236129 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.22 0.10 0.15 -1 -1 0.22 0.0413043 0.0372393 126 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30252 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.3 MiB 0.09 735 5928 1206 4471 251 55.0 MiB 0.09 0.00 3.02179 -99.7239 -3.02179 3.02179 1.05 0.000973409 0.000892928 0.0361775 0.0332376 26 2048 22 6.64007e+06 200928 477104. 1650.88 1.21 0.14906 0.133291 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0386171 0.034587 101 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17216 1 0.03 -1 -1 30420 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.5 MiB 0.09 661 11617 2521 8405 691 55.1 MiB 0.14 0.00 3.24119 -97.0143 -3.24119 3.24119 1.00 0.000903561 0.000828002 0.0590769 0.0541636 28 1701 20 6.64007e+06 288834 500653. 1732.36 1.29 0.15837 0.141773 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0321236 0.0288204 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30268 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.3 MiB 0.06 583 14123 3845 8834 1444 54.9 MiB 0.16 0.00 3.43604 -94.4648 -3.43604 3.43604 1.05 0.000899355 0.000825177 0.0731981 0.0671448 28 1800 26 6.64007e+06 288834 500653. 1732.36 1.34 0.192708 0.173074 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0352396 0.0314469 98 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17272 1 0.02 -1 -1 30248 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.5 MiB 0.06 702 4763 881 3747 135 55.1 MiB 0.08 0.00 3.98575 -113.461 -3.98575 3.98575 1.04 0.000913777 0.00083824 0.0266264 0.0244822 26 2390 34 6.64007e+06 238602 477104. 1650.88 1.63 0.160612 0.143435 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0393196 0.0351873 110 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30164 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.3 MiB 0.07 705 6924 1381 5320 223 54.9 MiB 0.10 0.00 3.56847 -102.973 -3.56847 3.56847 1.06 0.000935807 0.00085775 0.0348059 0.0319278 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.44 0.184936 0.165131 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0355158 0.0317843 103 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30436 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 16.8 MiB 0.16 800 11799 3784 6073 1942 55.2 MiB 0.16 0.00 3.4791 -109.298 -3.4791 3.4791 1.05 0.000965336 0.000883915 0.0620341 0.0568286 28 1940 18 6.64007e+06 326508 500653. 1732.36 1.13 0.178358 0.160144 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0371419 0.0332605 105 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1109 16524 4269 9768 2487 55.6 MiB 0.23 0.00 4.35696 -124.032 -4.35696 4.35696 1.05 0.00124292 0.00114164 0.0899737 0.0826072 32 2645 21 6.64007e+06 477204 554710. 1919.41 1.26 0.246701 0.222969 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436058 0.0394034 151 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17920 1 0.03 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1062 10676 2654 7216 806 55.8 MiB 0.17 0.00 3.87558 -130.413 -3.87558 3.87558 0.74 0.00127261 0.00116529 0.0613801 0.0562326 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.38 0.227987 0.205228 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048583 0.043819 147 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30212 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 16.8 MiB 0.26 894 10228 3268 4917 2043 55.3 MiB 0.14 0.00 4.39381 -127.308 -4.39381 4.39381 1.05 0.000955034 0.000870674 0.0578902 0.0528668 32 2018 21 6.64007e+06 238602 554710. 1919.41 1.17 0.177255 0.158889 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0367985 0.0329761 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17880 1 0.03 -1 -1 30384 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 16.7 MiB 0.16 1026 15298 5172 7552 2574 55.4 MiB 0.23 0.00 4.30797 -133.38 -4.30797 4.30797 1.05 0.00120433 0.0011038 0.0979271 0.0897419 32 2288 22 6.64007e+06 313950 554710. 1919.41 1.25 0.252659 0.228095 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0523724 0.0471214 138 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.16 17524 1 0.03 -1 -1 30352 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 17.3 MiB 0.41 1296 14996 4340 8343 2313 55.5 MiB 0.25 0.00 5.87616 -177.472 -5.87616 5.87616 1.08 0.00122795 0.00112596 0.0929296 0.085305 32 3094 21 6.64007e+06 364182 554710. 1919.41 1.33 0.249 0.225001 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0204503 0.0183089 172 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1150 16974 4810 10660 1504 55.7 MiB 0.27 0.00 5.08852 -153.875 -5.08852 5.08852 1.05 0.00124836 0.00114392 0.108628 0.0994805 28 3077 19 6.64007e+06 339066 500653. 1732.36 1.32 0.26653 0.240966 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.23 0.11 0.20 -1 -1 0.23 0.0371802 0.033182 164 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 16.7 MiB 0.17 1075 13513 3858 8482 1173 55.3 MiB 0.21 0.00 4.68524 -137.744 -4.68524 4.68524 1.04 0.00115878 0.00106253 0.0765182 0.0701455 30 2366 21 6.64007e+06 389298 526063. 1820.29 1.17 0.221092 0.199324 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370244 0.0334353 135 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17412 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 16.9 MiB 0.23 975 7767 1720 5470 577 55.4 MiB 0.12 0.00 4.38513 -117.551 -4.38513 4.38513 1.10 0.00100368 0.000921378 0.0435467 0.0399998 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.67 0.176501 0.158238 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.21 0.10 0.19 -1 -1 0.21 0.0386443 0.0346939 119 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.22 18044 1 0.03 -1 -1 30372 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 17.5 MiB 0.23 1225 15720 4488 9844 1388 55.9 MiB 0.26 0.00 5.18355 -167.471 -5.18355 5.18355 1.05 0.00147235 0.00135246 0.0990371 0.0909559 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.60 0.278457 0.251589 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516683 0.0466444 174 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30184 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.6 MiB 0.10 755 11064 4559 5783 722 55.2 MiB 0.12 0.00 3.8227 -103.618 -3.8227 3.8227 1.07 0.000901496 0.00082647 0.0570526 0.0523004 30 1736 20 6.64007e+06 263718 526063. 1820.29 1.25 0.168698 0.1513 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.25 0.08 0.19 -1 -1 0.25 0.0372224 0.0332381 101 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 17.1 MiB 0.25 1189 14518 4594 8025 1899 55.8 MiB 0.24 0.00 5.24081 -156.256 -5.24081 5.24081 1.04 0.00113572 0.00104234 0.0860448 0.0789837 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.54 0.238896 0.215651 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.25 0.10 0.20 -1 -1 0.25 0.0452007 0.0406943 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.6 MiB 0.16 1030 10531 2414 7661 456 55.4 MiB 0.18 0.00 4.0171 -121.213 -4.0171 4.0171 1.05 0.00115561 0.00105911 0.0579078 0.0530917 26 3025 43 6.64007e+06 414414 477104. 1650.88 3.08 0.240794 0.215938 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.22 0.09 0.12 -1 -1 0.22 0.0347709 0.031396 131 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17364 1 0.03 -1 -1 30240 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.8 MiB 0.06 891 13153 4464 6066 2623 55.3 MiB 0.18 0.00 4.20356 -126.138 -4.20356 4.20356 1.04 0.00102734 0.00094274 0.0721838 0.0662695 32 2178 21 6.64007e+06 301392 554710. 1919.41 1.05 0.146248 0.131615 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.042617 0.0382781 123 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1089 13933 3596 8128 2209 55.7 MiB 0.21 0.00 4.81394 -142.313 -4.81394 4.81394 1.05 0.00116952 0.00107289 0.0865867 0.0794415 26 2775 32 6.64007e+06 301392 477104. 1650.88 2.24 0.253869 0.228593 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0426926 0.0384746 138 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.18 935 7980 1596 5688 696 55.6 MiB 0.13 0.00 3.76946 -120.7 -3.76946 3.76946 1.05 0.00118954 0.00109206 0.0465944 0.0427473 30 2198 19 6.64007e+06 401856 526063. 1820.29 0.95 0.127914 0.11465 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0418313 0.0377305 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 17.2 MiB 0.19 901 8796 1803 6364 629 55.9 MiB 0.16 0.00 4.787 -140.677 -4.787 4.787 1.05 0.0012429 0.00113902 0.050257 0.0461202 32 2513 22 6.64007e+06 464646 554710. 1919.41 1.23 0.210834 0.1898 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0456843 0.0412127 145 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30460 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.6 MiB 0.07 902 12903 3419 8175 1309 55.2 MiB 0.18 0.00 4.24273 -122.494 -4.24273 4.24273 1.04 0.00105288 0.000965822 0.067558 0.0619693 32 1909 19 6.64007e+06 364182 554710. 1919.41 1.17 0.196817 0.177225 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403306 0.0362401 122 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 16.8 MiB 0.24 983 6913 1568 4936 409 55.7 MiB 0.12 0.00 5.07997 -139.694 -5.07997 5.07997 1.04 0.00108448 0.000994744 0.0414727 0.0380695 32 2406 21 6.64007e+06 301392 554710. 1919.41 1.19 0.177844 0.159809 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436864 0.0392816 133 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1148 9058 2364 5808 886 55.8 MiB 0.16 0.00 5.0113 -149.211 -5.0113 5.0113 1.05 0.00121522 0.00111427 0.0610394 0.0560127 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.91 0.201986 0.181141 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0564978 0.0508096 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.17 17524 1 0.04 -1 -1 30268 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 17.2 MiB 0.16 977 15962 5144 8098 2720 55.8 MiB 0.26 0.00 4.21776 -130.397 -4.21776 4.21776 1.05 0.00123144 0.00112713 0.107805 0.0987817 32 2870 23 6.64007e+06 276276 554710. 1919.41 1.31 0.26862 0.242554 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.25 0.10 0.25 -1 -1 0.25 0.039605 0.0357706 136 77 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30168 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.4 MiB 0.10 763 11398 3223 7297 878 55.0 MiB 0.14 0.00 3.46744 -102.907 -3.46744 3.46744 1.06 0.000878489 0.00080473 0.0543458 0.0498389 26 1977 28 6.64007e+06 301392 477104. 1650.88 1.29 0.177503 0.159016 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.0348223 0.0310409 97 23 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 16.5 MiB 0.33 982 8969 2347 6212 410 55.2 MiB 0.15 0.00 4.05536 -139.886 -4.05536 4.05536 1.05 0.00111613 0.00102302 0.0557053 0.0510805 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.99 0.138584 0.124307 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417773 0.0375161 127 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 17.5 MiB 0.26 1389 7443 1662 5262 519 55.7 MiB 0.16 0.01 5.61123 -170.011 -5.61123 5.61123 1.09 0.0012958 0.00119076 0.0500797 0.0460641 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.93 0.223815 0.201799 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547788 0.0494843 169 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30476 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 16.8 MiB 0.15 962 14988 4939 7718 2331 55.5 MiB 0.22 0.00 4.60549 -136.553 -4.60549 4.60549 1.05 0.00115616 0.00106111 0.0820854 0.0753455 30 2140 21 6.64007e+06 401856 526063. 1820.29 1.21 0.226974 0.204814 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0405283 0.0365873 133 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30348 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.3 MiB 0.07 702 10423 3012 6489 922 55.0 MiB 0.14 0.00 3.51327 -104.848 -3.51327 3.51327 1.04 0.00094947 0.000870551 0.0534973 0.0490604 28 1807 22 6.64007e+06 326508 500653. 1732.36 1.12 0.174445 0.156562 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0410978 0.0367809 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.19 18088 1 0.03 -1 -1 30364 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1216 15187 4686 7965 2536 55.7 MiB 0.27 0.00 6.49087 -185.665 -6.49087 6.49087 1.04 0.0014064 0.00129181 0.108893 0.10003 30 3247 27 6.64007e+06 339066 526063. 1820.29 1.45 0.301103 0.272146 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.28 0.18 0.20 -1 -1 0.28 0.0564265 0.0506964 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30364 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 16.8 MiB 0.17 903 6979 1333 5401 245 55.4 MiB 0.12 0.00 4.64606 -138.337 -4.64606 4.64606 1.05 0.00115002 0.0010561 0.0391211 0.0359789 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.63 0.221746 0.198946 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0432764 0.0389149 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17104 1 0.02 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.08 832 12375 4208 6622 1545 54.9 MiB 0.15 0.00 3.58247 -103.673 -3.58247 3.58247 1.05 0.000845495 0.00077499 0.0565872 0.0518773 28 2023 24 6.64007e+06 288834 500653. 1732.36 1.12 0.165658 0.14851 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0321121 0.0287018 100 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30152 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 17.0 MiB 0.09 993 9098 1971 6187 940 55.3 MiB 0.07 0.00 5.56744 -134.001 -5.56744 5.56744 0.72 0.000437426 0.00039506 0.0196758 0.0178217 28 2715 23 6.64007e+06 426972 500653. 1732.36 1.65 0.173972 0.155911 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.20 0.06 0.09 -1 -1 0.20 0.0212998 0.0189669 139 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17308 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 822 7770 1860 5212 698 54.8 MiB 0.06 0.00 3.4291 -106.218 -3.4291 3.4291 0.79 0.000330532 0.000298701 0.0156023 0.0141347 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.70 0.0589566 0.0517859 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0353707 0.031635 104 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30424 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.13 857 12839 3557 7998 1284 55.0 MiB 0.16 0.00 4.12483 -113.809 -4.12483 4.12483 1.04 0.000954268 0.000875112 0.0591206 0.0542278 26 1933 22 6.64007e+06 414414 477104. 1650.88 1.34 0.179813 0.161369 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.21 0.08 0.13 -1 -1 0.21 0.0333334 0.0299326 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30376 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1104 17175 4885 10433 1857 55.4 MiB 0.29 0.00 4.60024 -135.427 -4.60024 4.60024 1.05 0.00116928 0.00107334 0.109244 0.100283 28 2667 21 6.64007e+06 326508 500653. 1732.36 1.21 0.25543 0.230941 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0551094 0.0494939 139 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30388 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.14 772 4768 876 3724 168 55.4 MiB 0.09 0.00 4.51224 -132.005 -4.51224 4.51224 1.06 0.00117871 0.00108038 0.0320398 0.0294233 32 2190 25 6.64007e+06 301392 554710. 1919.41 1.26 0.188053 0.168801 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0509489 0.0457461 130 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30332 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1030 11891 3350 7362 1179 55.3 MiB 0.19 0.00 4.72138 -141.993 -4.72138 4.72138 1.05 0.0011653 0.00106827 0.0701683 0.0643666 32 2311 18 6.64007e+06 351624 554710. 1919.41 1.23 0.211698 0.190856 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0429657 0.0387517 133 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 16.9 MiB 0.28 799 9356 2375 6010 971 55.4 MiB 0.14 0.00 4.79432 -131.982 -4.79432 4.79432 0.98 0.00095272 0.000873548 0.0533081 0.0488928 26 2160 21 6.64007e+06 213486 477104. 1650.88 1.35 0.172396 0.154661 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.0382037 0.034205 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.10 17572 1 0.03 -1 -1 30416 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.9 MiB 0.25 899 12898 4205 6789 1904 55.5 MiB 0.10 0.00 3.96736 -127.03 -3.96736 3.96736 0.84 0.000386973 0.00034866 0.030242 0.0273644 32 2035 18 6.64007e+06 238602 554710. 1919.41 1.10 0.156362 0.139548 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401023 0.0358845 113 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.14 857 8087 1703 5875 509 55.2 MiB 0.12 0.00 3.59243 -98.9543 -3.59243 3.59243 1.09 0.00108225 0.000991694 0.0435491 0.0399544 26 2500 27 6.64007e+06 414414 477104. 1650.88 2.12 0.191803 0.171926 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0417813 0.0375504 123 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30344 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.07 873 14567 3705 9538 1324 55.1 MiB 0.17 0.00 4.33724 -105.319 -4.33724 4.33724 1.07 0.000955702 0.000876787 0.0673089 0.0617594 26 2165 27 6.64007e+06 439530 477104. 1650.88 1.19 0.197346 0.17732 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.19 0.04 0.09 -1 -1 0.19 0.0157809 0.0140192 115 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 857 12980 4441 6366 2173 55.2 MiB 0.19 0.00 4.19523 -120.389 -4.19523 4.19523 1.05 0.001038 0.000951445 0.0808442 0.074125 32 1926 20 6.64007e+06 226044 554710. 1919.41 1.24 0.212292 0.190899 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0401682 0.0360585 108 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30116 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1011 9385 2419 5667 1299 55.3 MiB 0.15 0.00 4.0237 -135.679 -4.0237 4.0237 1.05 0.00108912 0.000998446 0.0579318 0.0531365 32 2261 23 6.64007e+06 263718 554710. 1919.41 1.21 0.198098 0.178011 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.29 0.09 0.22 -1 -1 0.29 0.0395632 0.0355406 121 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30480 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.06 926 9383 1965 6366 1052 55.2 MiB 0.13 0.00 4.61041 -129.144 -4.61041 4.61041 1.05 0.00103669 0.000952087 0.0479449 0.0440601 28 2322 28 6.64007e+06 401856 500653. 1732.36 1.60 0.191001 0.171683 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0415337 0.0373787 127 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.12 17528 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 17.2 MiB 0.29 1230 14128 4435 7821 1872 55.9 MiB 0.24 0.00 5.3267 -167.408 -5.3267 5.3267 1.05 0.00117544 0.00107947 0.0887349 0.0814712 32 3153 21 6.64007e+06 301392 554710. 1919.41 1.31 0.237619 0.2147 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0475307 0.0429213 146 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.13 17904 1 0.03 -1 -1 30320 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 16.8 MiB 0.22 846 12473 3077 8180 1216 55.4 MiB 0.20 0.00 5.24026 -142.21 -5.24026 5.24026 1.05 0.00125746 0.00115294 0.072889 0.0668314 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.42 0.237167 0.213595 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.049932 0.0449808 144 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30308 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1088 19136 5971 10565 2600 55.5 MiB 0.27 0.00 4.47484 -142.459 -4.47484 4.47484 1.05 0.00127582 0.00117061 0.107076 0.0982479 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.57 0.268752 0.242974 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0483433 0.0435911 140 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.12 17592 1 0.03 -1 -1 30156 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.5 MiB 0.13 810 10756 3573 5296 1887 55.2 MiB 0.14 0.00 3.86158 -115.559 -3.86158 3.86158 1.04 0.000931666 0.000854666 0.0599426 0.0549514 28 2024 20 6.64007e+06 238602 500653. 1732.36 1.13 0.175486 0.157557 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0435008 0.0388709 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30388 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 16.8 MiB 0.18 996 11989 3165 6999 1825 55.6 MiB 0.20 0.00 4.82523 -141.177 -4.82523 4.82523 1.05 0.00122175 0.00112078 0.0822197 0.0754791 32 2408 19 6.64007e+06 288834 554710. 1919.41 1.25 0.232063 0.209559 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0510182 0.0459664 138 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30448 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 17.2 MiB 0.26 1103 10743 2816 7025 902 55.7 MiB 0.17 0.00 5.45357 -158.764 -5.45357 5.45357 1.05 0.00113671 0.00104169 0.064304 0.0590158 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.79 0.233844 0.210493 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.22 0.13 0.17 -1 -1 0.22 0.0496429 0.0446802 140 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30372 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1102 15423 4945 8075 2403 55.5 MiB 0.23 0.00 5.30601 -154.372 -5.30601 5.30601 1.04 0.00113364 0.0010399 0.0866264 0.0795314 28 3024 19 6.64007e+06 376740 500653. 1732.36 1.40 0.22675 0.20468 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0454066 0.040865 148 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30384 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 17.0 MiB 0.21 960 11975 3127 7423 1425 55.7 MiB 0.20 0.00 4.52304 -132.575 -4.52304 4.52304 1.04 0.00122737 0.00112622 0.0718119 0.0658242 32 2201 21 6.64007e+06 414414 554710. 1919.41 1.22 0.223352 0.201182 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0446007 0.0402274 135 83 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.15 891 9571 2183 6911 477 55.6 MiB 0.17 0.00 5.02278 -140.291 -5.02278 5.02278 1.05 0.00119856 0.0010999 0.0647751 0.0594299 30 2581 25 6.64007e+06 263718 526063. 1820.29 1.31 0.219136 0.197119 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.25 0.11 0.20 -1 -1 0.25 0.052279 0.0470913 134 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30280 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 16.8 MiB 0.19 875 11270 2503 8088 679 55.4 MiB 0.18 0.00 4.91881 -136.338 -4.91881 4.91881 1.05 0.00119877 0.00109839 0.0685738 0.06285 32 2070 20 6.64007e+06 389298 554710. 1919.41 1.21 0.21804 0.196306 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0521931 0.0470801 132 85 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17136 1 0.02 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.2 MiB 0.05 680 10219 2541 6421 1257 54.8 MiB 0.17 0.00 3.88758 -112.502 -3.88758 3.88758 1.14 0.000886746 0.000814899 0.0706565 0.0650268 28 1667 19 6.64007e+06 188370 500653. 1732.36 1.10 0.178626 0.160967 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.22 0.08 0.19 -1 -1 0.22 0.0339031 0.0304258 96 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1003 15426 4168 9105 2153 55.6 MiB 0.22 0.00 4.65236 -140.168 -4.65236 4.65236 1.11 0.00109816 0.0010064 0.089129 0.0817804 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.38 0.200814 0.181079 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0487125 0.0438625 132 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17892 1 0.03 -1 -1 30224 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 17.2 MiB 0.20 1074 11237 2615 7354 1268 55.7 MiB 0.19 0.00 4.84723 -152.835 -4.84723 4.84723 1.05 0.00129279 0.00118562 0.0800821 0.0734802 32 2517 24 6.64007e+06 276276 554710. 1919.41 1.36 0.248816 0.224468 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.30 0.14 0.25 -1 -1 0.30 0.0606216 0.0546766 148 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17452 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 16.6 MiB 0.26 745 8136 1743 5584 809 55.0 MiB 0.11 0.00 4.31784 -119.848 -4.31784 4.31784 1.05 0.000929059 0.000851704 0.0437759 0.0401477 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.50 0.181166 0.16224 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0384916 0.0343889 109 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17108 1 0.03 -1 -1 30444 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 720 11430 2918 7192 1320 54.9 MiB 0.15 0.00 3.81035 -108.914 -3.81035 3.81035 1.05 0.000897075 0.000814982 0.0573778 0.0526139 26 2000 23 6.64007e+06 263718 477104. 1650.88 1.14 0.170785 0.153304 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0337909 0.0302508 106 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30584 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1132 12753 3748 7734 1271 55.6 MiB 0.20 0.00 5.06147 -160.912 -5.06147 5.06147 1.06 0.00117229 0.0010754 0.0779093 0.0715086 26 3087 40 6.64007e+06 326508 477104. 1650.88 2.14 0.263108 0.236967 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0468768 0.0422113 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1035 16893 5570 8364 2959 55.6 MiB 0.24 0.00 5.02458 -149.361 -5.02458 5.02458 1.05 0.00117891 0.00108219 0.0983199 0.0902268 32 2745 25 6.64007e+06 364182 554710. 1919.41 1.28 0.253804 0.229139 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0468735 0.0421913 155 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30180 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.09 1057 12164 2729 8794 641 55.8 MiB 0.19 0.00 5.48474 -146.154 -5.48474 5.48474 1.05 0.00121859 0.00111831 0.0685212 0.0627986 28 3239 24 6.64007e+06 452088 500653. 1732.36 2.05 0.229566 0.207068 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0491963 0.0444012 153 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.16 17580 1 0.03 -1 -1 30116 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.16 890 11170 2805 7440 925 55.3 MiB 0.15 0.00 3.51924 -105.227 -3.51924 3.51924 1.05 0.00105435 0.00096678 0.0583438 0.0534941 26 2070 19 6.64007e+06 401856 477104. 1650.88 1.14 0.188793 0.169679 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0400408 0.03594 121 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.15 17476 1 0.02 -1 -1 30584 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.4 MiB 0.07 645 11948 3714 6556 1678 55.0 MiB 0.14 0.00 3.4543 -94.7001 -3.4543 3.4543 1.05 0.000873846 0.000801392 0.0631956 0.0579577 26 1652 20 6.64007e+06 263718 477104. 1650.88 1.12 0.172107 0.154565 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.21 0.08 0.09 -1 -1 0.21 0.0349014 0.0311959 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17904 1 0.03 -1 -1 30460 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1270 10743 2480 7803 460 55.6 MiB 0.19 0.00 4.37195 -138.919 -4.37195 4.37195 1.04 0.00136891 0.00125677 0.0769922 0.0707028 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.36 0.25362 0.228719 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0621346 0.0560055 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30232 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 17.0 MiB 0.36 989 14828 4611 8220 1997 55.6 MiB 0.23 0.00 5.41669 -159.225 -5.41669 5.41669 1.04 0.00118583 0.00108748 0.0959005 0.0879399 28 2481 23 6.64007e+06 288834 500653. 1732.36 1.23 0.248854 0.224533 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.22 0.11 0.19 -1 -1 0.22 0.0475099 0.0427606 152 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30456 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 16.8 MiB 0.35 825 13583 3778 7563 2242 55.4 MiB 0.21 0.00 4.65475 -131.833 -4.65475 4.65475 1.06 0.00107409 0.000984646 0.0851179 0.077971 30 1948 20 6.64007e+06 238602 526063. 1820.29 1.20 0.22031 0.198558 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0396748 0.0356945 128 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30480 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 911 16708 5166 8976 2566 55.2 MiB 0.25 0.00 5.41998 -135.015 -5.41998 5.41998 1.05 0.00110121 0.0010106 0.0959207 0.0879092 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.86 0.249315 0.224832 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.23 0.10 0.16 -1 -1 0.23 0.0446546 0.0401854 126 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17860 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1048 7423 1517 5297 609 55.8 MiB 0.14 0.00 5.01701 -136.816 -5.01701 5.01701 1.05 0.00123189 0.00113015 0.0446089 0.0409811 26 2859 33 6.64007e+06 426972 477104. 1650.88 2.05 0.199535 0.178657 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.25 0.12 0.15 -1 -1 0.25 0.0488661 0.0441685 145 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30476 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.5 MiB 0.15 829 7233 1598 5117 518 55.1 MiB 0.11 0.00 3.67989 -107.648 -3.67989 3.67989 1.05 0.00107774 0.000986989 0.0401636 0.0368089 30 2144 22 6.64007e+06 389298 526063. 1820.29 1.37 0.178179 0.159831 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.29 0.07 0.20 -1 -1 0.29 0.036708 0.0329126 124 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17676 1 0.03 -1 -1 30276 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1174 10979 2913 7012 1054 56.0 MiB 0.19 0.00 5.12747 -161.736 -5.12747 5.12747 1.07 0.00117757 0.00108073 0.0687722 0.0631808 26 3490 36 6.64007e+06 313950 477104. 1650.88 2.88 0.245589 0.221022 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.24 0.13 0.15 -1 -1 0.24 0.0475829 0.042935 148 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30076 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1093 17036 4934 9564 2538 55.6 MiB 0.25 0.01 4.75546 -148.188 -4.75546 4.75546 1.05 0.00125656 0.00115249 0.0958324 0.0879402 28 2591 20 6.64007e+06 452088 500653. 1732.36 1.31 0.249889 0.22552 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0442019 0.0399109 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17368 1 0.02 -1 -1 30312 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.4 MiB 0.09 731 10536 4018 5581 937 55.0 MiB 0.13 0.00 3.74538 -111.28 -3.74538 3.74538 1.04 0.0009198 0.000843616 0.0608704 0.0558368 30 1443 17 6.64007e+06 213486 526063. 1820.29 1.08 0.171336 0.153994 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0322275 0.0289293 91 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 16.7 MiB 0.20 882 13849 5109 6856 1884 55.3 MiB 0.19 0.00 4.03956 -127.808 -4.03956 4.03956 1.04 0.00102772 0.000942109 0.0793406 0.0727738 28 2218 24 6.64007e+06 263718 500653. 1732.36 1.29 0.212186 0.190755 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.20 0.05 0.09 -1 -1 0.20 0.0193623 0.0171119 117 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30364 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.10 954 14020 3601 8035 2384 55.5 MiB 0.19 0.00 4.80044 -128.284 -4.80044 4.80044 1.04 0.00111376 0.00102168 0.0698486 0.0639841 32 2139 23 6.64007e+06 464646 554710. 1919.41 1.24 0.213505 0.192377 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.045956 0.0413213 129 33 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.17 17376 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 16.5 MiB 0.26 763 7103 1547 5010 546 55.0 MiB 0.11 0.00 4.32884 -114.709 -4.32884 4.32884 1.06 0.00090649 0.000830749 0.0385667 0.0353798 26 2139 24 6.64007e+06 276276 477104. 1650.88 1.40 0.156499 0.13996 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0362284 0.0324534 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30040 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 16.4 MiB 0.17 634 12856 3328 7254 2274 55.1 MiB 0.17 0.00 3.90075 -115.478 -3.90075 3.90075 1.05 0.000952339 0.000873082 0.0726845 0.0666458 28 2041 24 6.64007e+06 213486 500653. 1732.36 1.19 0.196701 0.176705 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.24 0.10 0.18 -1 -1 0.24 0.0408763 0.0365681 108 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30032 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1014 15147 3968 9710 1469 55.6 MiB 0.21 0.00 4.15695 -125.813 -4.15695 4.15695 1.05 0.00121585 0.00111564 0.0840294 0.0770262 32 1987 18 6.64007e+06 452088 554710. 1919.41 1.24 0.242041 0.218361 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.28 0.09 0.21 -1 -1 0.28 0.0428878 0.0387312 136 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.15 17500 1 0.03 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 16.6 MiB 0.23 920 10163 2724 6503 936 55.1 MiB 0.13 0.00 4.05252 -124.711 -4.05252 4.05252 1.05 0.000910008 0.00083408 0.0539187 0.0494413 30 1979 19 6.64007e+06 251160 526063. 1820.29 1.11 0.165568 0.148523 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.25 0.07 0.20 -1 -1 0.25 0.0360711 0.0321664 107 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17528 1 0.03 -1 -1 30104 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 16.7 MiB 0.16 987 10827 2770 6959 1098 55.3 MiB 0.18 0.00 3.75038 -118.864 -3.75038 3.75038 1.06 0.00114769 0.0010521 0.0681763 0.0624638 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.51 0.21479 0.193322 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0476525 0.042798 127 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.19 17800 1 0.02 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 17.1 MiB 0.33 927 10247 2394 7169 684 55.6 MiB 0.17 0.00 4.34696 -134.379 -4.34696 4.34696 1.05 0.00126123 0.00115636 0.0630484 0.0577632 32 2248 20 6.64007e+06 401856 554710. 1919.41 1.23 0.218915 0.197047 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0504203 0.0454741 138 91 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.5 MiB 0.18 835 12681 3362 7951 1368 55.2 MiB 0.17 0.00 3.3851 -106.107 -3.3851 3.3851 1.08 0.000998263 0.00091344 0.0758061 0.0694486 26 2103 18 6.64007e+06 213486 477104. 1650.88 1.27 0.194319 0.174686 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0420342 0.0376524 104 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17536 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 16.6 MiB 0.16 876 14407 4775 7452 2180 55.2 MiB 0.10 0.00 4.41384 -136.056 -4.41384 4.41384 0.72 0.000368089 0.000332551 0.0303883 0.0274846 30 2137 20 6.64007e+06 263718 526063. 1820.29 1.10 0.15217 0.135906 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.25 0.09 0.20 -1 -1 0.25 0.0380283 0.0340862 117 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1070 9111 2300 6161 650 55.5 MiB 0.15 0.00 4.68344 -140.114 -4.68344 4.68344 1.05 0.00108238 0.0009931 0.0543386 0.0498424 32 2486 17 6.64007e+06 288834 554710. 1919.41 1.20 0.178968 0.160557 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436904 0.0390897 130 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30188 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 16.9 MiB 0.19 969 13959 4223 8147 1589 55.4 MiB 0.19 0.00 4.71146 -123.714 -4.71146 4.71146 1.05 0.00108155 0.000991675 0.0775052 0.0711048 32 1988 20 6.64007e+06 364182 554710. 1919.41 1.17 0.19125 0.171852 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.29 0.05 0.21 -1 -1 0.29 0.0229343 0.0206877 122 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1164 12568 3311 8092 1165 56.0 MiB 0.23 0.00 5.44678 -170.492 -5.44678 5.44678 1.06 0.0012746 0.00116982 0.0856577 0.0785895 28 3017 24 6.64007e+06 301392 500653. 1732.36 1.47 0.255177 0.230406 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0488238 0.04405 154 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17188 1 0.02 -1 -1 30336 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.4 MiB 0.05 802 9356 2223 6300 833 54.9 MiB 0.11 0.00 3.65167 -102.287 -3.65167 3.65167 1.05 0.000836206 0.000766553 0.0468656 0.0429987 32 1738 16 6.64007e+06 226044 554710. 1919.41 1.11 0.145463 0.13051 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0216148 0.0191551 96 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.23 17876 1 0.03 -1 -1 30440 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 17.1 MiB 0.11 1014 15173 4325 8191 2657 55.6 MiB 0.12 0.00 4.24115 -141.749 -4.24115 4.24115 0.72 0.000476026 0.000429743 0.0344875 0.0311745 32 2563 27 6.64007e+06 426972 554710. 1919.41 1.05 0.172258 0.153856 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.049758 0.0448425 145 90 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17680 1 0.03 -1 -1 30140 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 17.0 MiB 0.33 854 11456 4252 5499 1705 55.5 MiB 0.17 0.00 3.5233 -125.693 -3.5233 3.5233 1.03 0.00117769 0.00107745 0.077238 0.0706231 32 1976 23 6.64007e+06 213486 554710. 1919.41 1.24 0.229025 0.205879 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0450699 0.0404243 114 96 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 16.7 MiB 0.17 993 15864 4238 9461 2165 55.5 MiB 0.22 0.00 4.43584 -134.986 -4.43584 4.43584 1.06 0.00117559 0.00107758 0.088855 0.0814876 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.48 0.240644 0.216863 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0375533 0.0339568 131 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17956 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 17.2 MiB 0.35 1309 17635 5897 9510 2228 55.4 MiB 0.32 0.01 6.39084 -191.431 -6.39084 6.39084 1.04 0.00133216 0.00122357 0.118822 0.109144 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.60 0.283429 0.256997 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0534478 0.0483583 170 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17380 1 0.02 -1 -1 30096 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 16.2 MiB 0.17 697 8680 1945 6222 513 54.7 MiB 0.10 0.00 3.31307 -102.387 -3.31307 3.31307 1.05 0.000762596 0.000698746 0.041191 0.037761 28 1666 19 6.64007e+06 226044 500653. 1732.36 1.13 0.13589 0.121297 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0231689 0.0207419 87 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17548 1 0.03 -1 -1 30516 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.10 791 11864 3247 7177 1440 55.0 MiB 0.16 0.00 4.38638 -124.628 -4.38638 4.38638 1.05 0.000974417 0.000893404 0.0723377 0.0663255 32 1680 15 6.64007e+06 200928 554710. 1919.41 1.14 0.18522 0.166682 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0420243 0.0376047 92 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.7 MiB 0.10 807 14407 3847 9113 1447 55.2 MiB 0.19 0.00 3.46104 -112.673 -3.46104 3.46104 1.05 0.00101254 0.000927894 0.081211 0.0744633 28 2067 23 6.64007e+06 263718 500653. 1732.36 1.15 0.211261 0.190226 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0417619 0.0374303 115 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 469 9234 3273 3848 2113 54.7 MiB 0.09 0.00 3.37029 -77.6943 -3.37029 3.37029 1.07 0.000754004 0.000689826 0.0405027 0.0370221 30 1496 25 6.64007e+06 339066 526063. 1820.29 1.18 0.139915 0.124922 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0261163 0.0233687 89 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.19 937 9571 2534 6630 407 55.5 MiB 0.17 0.00 4.28889 -129.632 -4.28889 4.28889 1.10 0.00118048 0.00108759 0.0662127 0.0607536 30 2291 20 6.64007e+06 263718 526063. 1820.29 1.26 0.219033 0.197414 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.046232 0.04159 136 72 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 17.3 MiB 0.21 1018 17423 5293 9473 2657 55.9 MiB 0.25 0.00 4.47881 -144.552 -4.47881 4.47881 1.06 0.000876554 0.000788549 0.101387 0.0928053 32 2355 20 6.64007e+06 439530 554710. 1919.41 1.27 0.262588 0.236967 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0538096 0.0484508 143 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30004 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 16.8 MiB 0.36 962 17134 5020 8898 3216 55.3 MiB 0.14 0.00 5.27972 -153.369 -5.27972 5.27972 0.72 0.00043121 0.000388601 0.0372434 0.0336727 32 2793 32 6.65987e+06 380340 554710. 1919.41 1.08 0.152805 0.136159 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.27 0.11 0.19 -1 -1 0.27 0.0471274 0.0424022 152 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30320 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1040 12361 3404 6762 2195 55.3 MiB 0.20 0.00 4.63676 -143.523 -4.63676 4.63676 1.06 0.00118679 0.00108804 0.0822977 0.0755731 32 2391 26 6.65987e+06 291594 554710. 1919.41 1.30 0.241025 0.21733 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0392372 0.0350683 138 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1057 9111 2109 6460 542 55.0 MiB 0.14 0.00 4.05544 -117.725 -4.05544 4.05544 1.07 0.00102811 0.000942724 0.0516184 0.0473615 26 2909 26 6.65987e+06 291594 477104. 1650.88 2.04 0.189973 0.170456 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.23 0.05 0.17 -1 -1 0.23 0.0186462 0.0165904 126 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.5 MiB 0.10 995 11593 2944 7290 1359 55.1 MiB 0.18 0.00 4.34155 -118.133 -4.34155 4.34155 1.05 0.0010651 0.00096873 0.0663376 0.0607829 32 2314 24 6.65987e+06 342306 554710. 1919.41 1.25 0.204468 0.183958 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0427877 0.0384765 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17660 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1007 8919 2464 5628 827 55.0 MiB 0.15 0.00 4.36781 -127.596 -4.36781 4.36781 1.04 0.00114053 0.00104664 0.0559911 0.0514018 34 2558 26 6.65987e+06 291594 585099. 2024.56 2.15 0.30271 0.271494 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.28 0.12 0.22 -1 -1 0.28 0.0481545 0.0434192 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30300 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1045 18079 5207 10774 2098 55.3 MiB 0.27 0.01 3.41904 -120.465 -3.41904 3.41904 1.05 0.00120134 0.00110075 0.100843 0.0924714 30 2159 22 6.65987e+06 418374 526063. 1820.29 1.18 0.254666 0.230006 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.23 0.09 0.10 -1 -1 0.23 0.0463271 0.0417779 141 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.16 17516 1 0.03 -1 -1 30576 -1 -1 18 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 16.1 MiB 0.17 496 10509 2613 7281 615 54.7 MiB 0.13 0.00 3.88752 -95.8054 -3.88752 3.88752 1.04 0.00088921 0.000815367 0.0598095 0.0548567 30 1262 24 6.65987e+06 228204 526063. 1820.29 1.11 0.176075 0.157984 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370517 0.0331633 94 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17236 1 0.03 -1 -1 30176 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.06 903 9466 2130 6738 598 55.1 MiB 0.14 0.00 3.22661 -96.4595 -3.22661 3.22661 1.05 0.000970937 0.000889727 0.0458132 0.0419786 30 1887 19 6.65987e+06 393018 526063. 1820.29 1.12 0.164555 0.147679 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.033962 0.0305797 115 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30128 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.16 765 13788 3701 7917 2170 55.3 MiB 0.19 0.00 3.4209 -112.776 -3.4209 3.4209 1.05 0.00104101 0.000954688 0.0833805 0.0765022 32 2114 22 6.65987e+06 240882 554710. 1919.41 1.20 0.21493 0.193487 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0366499 0.0329099 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.13 17432 1 0.04 -1 -1 30056 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.5 MiB 0.26 876 13906 4295 8097 1514 55.0 MiB 0.20 0.00 3.72312 -122.883 -3.72312 3.72312 1.06 0.00101627 0.000931371 0.0835265 0.0766293 32 2018 21 6.65987e+06 215526 554710. 1919.41 1.21 0.213915 0.19279 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0406676 0.0365153 113 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30392 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.3 MiB 0.26 696 7008 1825 4747 436 55.0 MiB 0.11 0.00 4.00989 -109.174 -4.00989 4.00989 1.04 0.000991196 0.000908495 0.0438716 0.0402439 30 1525 18 6.65987e+06 215526 526063. 1820.29 1.10 0.163503 0.146588 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0347705 0.0312281 98 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 721 6381 1297 4466 618 55.2 MiB 0.09 0.00 3.89466 -119.961 -3.89466 3.89466 1.05 0.000941888 0.000863182 0.0373864 0.0343087 32 2079 21 6.65987e+06 215526 554710. 1919.41 1.21 0.156113 0.13976 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0410062 0.0367125 106 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1056 16468 6105 8420 1943 55.4 MiB 0.26 0.00 4.37712 -140.294 -4.37712 4.37712 1.05 0.00115699 0.00106127 0.101195 0.0928862 32 2620 22 6.65987e+06 304272 554710. 1919.41 1.26 0.250035 0.22601 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0485774 0.0437407 139 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30276 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 951 14365 3991 8802 1572 55.4 MiB 0.25 0.00 4.63803 -131.953 -4.63803 4.63803 1.06 0.00118483 0.00108591 0.0759029 0.0692841 28 2495 26 6.65987e+06 380340 500653. 1732.36 1.26 0.235671 0.211992 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.053508 0.0480565 133 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30136 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.2 MiB 0.15 640 7914 1978 5337 599 54.8 MiB 0.10 0.00 3.16393 -88.5429 -3.16393 3.16393 1.05 0.000862189 0.0007906 0.0407161 0.0373266 28 1656 19 6.65987e+06 266238 500653. 1732.36 1.15 0.14588 0.130643 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0318904 0.0285628 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1044 14035 4479 7571 1985 55.4 MiB 0.22 0.00 3.91387 -124.268 -3.91387 3.91387 1.05 0.00120497 0.00110408 0.0944461 0.0866325 32 2474 22 6.65987e+06 266238 554710. 1919.41 1.30 0.243509 0.219536 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.26 0.11 0.20 -1 -1 0.26 0.0488134 0.0439531 132 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1069 12919 3925 6776 2218 55.3 MiB 0.20 0.00 4.31458 -139.268 -4.31458 4.31458 1.05 0.00113907 0.00104483 0.0824114 0.0756435 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.59 0.225082 0.2028 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0513269 0.046235 137 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30292 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.6 MiB 0.21 695 9543 2025 7276 242 55.1 MiB 0.14 0.00 2.85064 -99.0938 -2.85064 2.85064 1.05 0.00105958 0.000970469 0.0508438 0.0465706 30 1712 20 6.65987e+06 367662 526063. 1820.29 1.14 0.181601 0.162916 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.24 0.07 0.11 -1 -1 0.24 0.0335841 0.0302454 110 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17532 1 0.02 -1 -1 30108 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.8 MiB 0.12 717 11976 4624 5984 1368 54.5 MiB 0.13 0.00 2.25907 -80.296 -2.25907 2.25907 1.05 0.000770798 0.000705392 0.0584388 0.0534948 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.98 0.153914 0.137797 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0267875 0.0238725 81 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17736 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 16.3 MiB 0.34 848 12008 3931 5654 2423 54.9 MiB 0.18 0.00 4.81535 -141.646 -4.81535 4.81535 1.05 0.000990634 0.000908817 0.070191 0.0644563 32 2106 20 6.65987e+06 240882 554710. 1919.41 1.21 0.193161 0.173789 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0401684 0.0360754 127 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30408 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.07 910 8087 1796 5473 818 55.3 MiB 0.13 0.00 4.13176 -127.852 -4.13176 4.13176 1.04 0.00115141 0.00105637 0.0464507 0.0426449 28 2425 21 6.65987e+06 393018 500653. 1732.36 1.29 0.192886 0.173617 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046441 0.0418607 135 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1181 9303 2469 6067 767 55.5 MiB 0.16 0.00 4.32644 -135.633 -4.32644 4.32644 1.04 0.00120811 0.00110701 0.0618071 0.0566453 30 2631 22 6.65987e+06 291594 526063. 1820.29 1.23 0.209407 0.188389 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0547705 0.0493019 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17536 1 0.02 -1 -1 30560 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.1 MiB 0.24 356 10636 3977 4816 1843 54.5 MiB 0.09 0.00 2.4343 -65.7683 -2.4343 2.4343 1.05 0.000659627 0.000603075 0.045697 0.0417928 30 997 16 6.65987e+06 228204 526063. 1820.29 1.11 0.123009 0.110062 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.24 0.04 0.20 -1 -1 0.24 0.0219918 0.019658 77 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.08 978 9571 2391 5607 1573 55.2 MiB 0.15 0.00 4.9364 -125.004 -4.9364 4.9364 1.01 0.00100756 0.000924587 0.0549074 0.0504357 32 2187 34 6.65987e+06 266238 554710. 1919.41 1.30 0.20409 0.183437 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0394382 0.0355134 118 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.15 17152 1 0.02 -1 -1 29980 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55592 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.7 MiB 0.04 681 11200 3514 6177 1509 54.3 MiB 0.10 0.00 2.44727 -77.3331 -2.44727 2.44727 1.05 0.000637001 0.000581524 0.044785 0.0408807 26 1411 15 6.65987e+06 177492 477104. 1650.88 1.03 0.117989 0.1054 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.21 0.05 0.17 -1 -1 0.21 0.020259 0.0180743 79 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.14 17492 1 0.03 -1 -1 30096 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.6 MiB 0.10 819 10531 2694 7192 645 55.2 MiB 0.15 0.00 4.34174 -119.601 -4.34174 4.34174 1.04 0.00105335 0.000967417 0.0546949 0.0502464 32 2048 22 6.65987e+06 380340 554710. 1919.41 1.21 0.186858 0.168081 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.038778 0.0349282 123 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.2 MiB 0.09 841 8087 1664 5850 573 54.9 MiB 0.12 0.00 3.58635 -102.903 -3.58635 3.58635 0.94 0.00105797 0.000972465 0.0428028 0.0393195 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.61 0.177599 0.159696 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0407645 0.0366773 128 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1047 15165 4413 8666 2086 55.3 MiB 0.22 0.00 4.3944 -130.237 -4.3944 4.3944 1.05 0.00112512 0.00103174 0.0885157 0.081239 32 2492 25 6.65987e+06 329628 554710. 1919.41 1.27 0.238224 0.214552 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0432912 0.0389898 125 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17488 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.06 780 6100 1392 4485 223 55.0 MiB 0.11 0.00 2.90053 -100.349 -2.90053 2.90053 1.05 0.000970259 0.000888911 0.0399844 0.0367285 32 1965 19 6.65987e+06 202848 554710. 1919.41 1.24 0.162371 0.145642 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0405912 0.0363458 101 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17360 1 0.03 -1 -1 30076 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.2 MiB 0.10 630 9199 2049 6385 765 54.9 MiB 0.11 0.00 2.99867 -92.259 -2.99867 2.99867 1.06 0.000904839 0.000829382 0.0467021 0.0427788 32 1813 20 6.65987e+06 291594 554710. 1919.41 1.21 0.165644 0.148293 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.25 0.08 0.23 -1 -1 0.25 0.0378755 0.0338746 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30264 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.1 MiB 0.06 575 14123 3775 8918 1430 54.7 MiB 0.16 0.00 3.31478 -91.535 -3.31478 3.31478 1.04 0.000892181 0.000818151 0.0726486 0.0665248 32 1755 23 6.65987e+06 291594 554710. 1919.41 1.18 0.188189 0.169058 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.26 0.08 0.21 -1 -1 0.26 0.0344892 0.0307605 98 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17076 1 0.03 -1 -1 30336 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.1 MiB 0.10 714 4763 885 3714 164 54.8 MiB 0.07 0.00 3.74323 -109.194 -3.74323 3.74323 1.06 0.00090841 0.000834292 0.0266524 0.0244984 30 1851 22 6.65987e+06 240882 526063. 1820.29 1.29 0.142923 0.127793 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.26 0.08 0.20 -1 -1 0.26 0.0370527 0.0332384 110 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17240 1 0.03 -1 -1 30144 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.7 MiB 0.10 740 8130 1715 6151 264 55.1 MiB 0.11 0.00 3.32595 -98.9982 -3.32595 3.32595 1.05 0.000573318 0.000517179 0.0386412 0.0353925 32 1842 22 6.65987e+06 342306 554710. 1919.41 1.15 0.157615 0.141089 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0374436 0.0335606 103 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30456 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 874 10103 2597 6479 1027 54.9 MiB 0.14 0.00 3.27578 -104.365 -3.27578 3.27578 1.05 0.000978649 0.000898397 0.0548114 0.0503215 32 1837 16 6.65987e+06 316950 554710. 1919.41 1.14 0.168447 0.151228 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0370601 0.0331954 105 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30492 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1205 9971 2413 6766 792 55.8 MiB 0.15 0.00 4.35696 -124.779 -4.35696 4.35696 1.04 0.00123705 0.00113596 0.0560971 0.0515253 30 2470 20 6.65987e+06 469086 526063. 1820.29 1.16 0.210907 0.190245 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0521918 0.0471226 150 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17692 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.21 1009 12860 3291 8398 1171 55.6 MiB 0.11 0.00 3.75432 -126.947 -3.75432 3.75432 0.72 0.000467038 0.000422358 0.0282319 0.0255404 26 2525 36 6.65987e+06 456408 477104. 1650.88 0.91 0.101089 0.0892612 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0490153 0.0442434 146 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30084 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 731 8852 2206 5531 1115 55.0 MiB 0.13 0.00 4.21752 -119.384 -4.21752 4.21752 1.04 0.000951554 0.000872849 0.051731 0.0474632 28 2061 26 6.65987e+06 215526 500653. 1732.36 1.24 0.179026 0.160516 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.22 0.09 0.20 -1 -1 0.22 0.0387586 0.0347942 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30484 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 17.1 MiB 0.25 838 9687 2447 6341 899 55.6 MiB 0.17 0.00 4.30117 -127.913 -4.30117 4.30117 1.05 0.00121095 0.0011111 0.0643278 0.0590778 28 2472 25 6.65987e+06 304272 500653. 1732.36 1.38 0.225046 0.20271 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0506365 0.0455736 137 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17912 1 0.03 -1 -1 30424 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1313 13758 3781 7541 2436 55.5 MiB 0.23 0.00 5.77198 -171.36 -5.77198 5.77198 1.05 0.00122294 0.0011213 0.0873303 0.0801309 32 3132 21 6.65987e+06 342306 554710. 1919.41 1.32 0.242874 0.219311 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0537815 0.0484855 170 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30428 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 16.8 MiB 1.07 956 15103 4666 7688 2749 55.5 MiB 0.25 0.00 4.78629 -143.571 -4.78629 4.78629 1.05 0.0012439 0.00114116 0.100167 0.0918994 32 2967 29 6.65987e+06 316950 554710. 1919.41 1.47 0.275185 0.248255 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0217444 0.019502 162 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30324 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 16.9 MiB 0.24 864 6095 1129 4612 354 55.3 MiB 0.12 0.00 4.47092 -130.094 -4.47092 4.47092 1.04 0.00116431 0.00106867 0.0374672 0.0344141 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.70 0.206484 0.185506 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0488816 0.0440155 133 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 16.3 MiB 0.18 918 12371 3407 6390 2574 54.9 MiB 0.17 0.00 4.0455 -110.07 -4.0455 4.0455 1.05 0.000996161 0.000913406 0.068273 0.0626155 28 2605 20 6.65987e+06 278916 500653. 1732.36 1.50 0.193062 0.173637 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0388471 0.0349187 118 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17968 1 0.03 -1 -1 30384 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 17.3 MiB 0.29 1184 10336 2301 7496 539 55.6 MiB 0.15 0.01 5.18869 -164.242 -5.18869 5.18869 1.10 0.00146702 0.00134676 0.0435172 0.0397538 26 3457 39 6.65987e+06 481764 477104. 1650.88 2.51 0.270265 0.242508 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.21 0.18 0.17 -1 -1 0.21 0.0717011 0.06457 172 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.1 MiB 0.13 660 11064 4480 5786 798 54.8 MiB 0.12 0.00 3.61218 -99.209 -3.61218 3.61218 1.05 0.000903332 0.000827127 0.057231 0.0524219 32 1891 29 6.65987e+06 266238 554710. 1919.41 1.22 0.182295 0.163073 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.31 0.09 0.23 -1 -1 0.31 0.0313613 0.0278828 101 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 17.0 MiB 0.22 1031 5756 1118 4418 220 55.7 MiB 0.12 0.00 5.03726 -146.602 -5.03726 5.03726 1.05 0.00113328 0.00103921 0.0377695 0.0346788 28 2854 46 6.65987e+06 291594 500653. 1732.36 2.05 0.229183 0.20555 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.23 0.11 0.16 -1 -1 0.23 0.0510264 0.0459358 142 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 975 10087 2133 7508 446 55.2 MiB 0.16 0.00 3.91407 -118.639 -3.91407 3.91407 1.04 0.00114931 0.00105382 0.0554388 0.0508559 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.80 0.241776 0.217125 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0405769 0.0365804 131 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30088 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.6 MiB 0.08 889 13153 5130 6680 1343 55.2 MiB 0.18 0.00 4.00941 -121.212 -4.00941 4.00941 1.04 0.00103608 0.000949413 0.0723783 0.0664157 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.52 0.230493 0.207326 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.25 0.19 0.21 -1 -1 0.25 0.0562109 0.0504007 123 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1135 8213 1899 5522 792 55.4 MiB 0.14 0.00 4.53182 -135.539 -4.53182 4.53182 1.05 0.00115944 0.00106338 0.053802 0.0493474 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.47 0.206162 0.185413 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0549964 0.0494905 136 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17660 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 16.8 MiB 0.36 1054 11759 3077 7738 944 55.4 MiB 0.18 0.00 3.70469 -122.012 -3.70469 3.70469 1.04 0.00118829 0.00109057 0.0678753 0.0622894 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.61 0.219865 0.197993 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516653 0.0464901 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17568 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1080 10772 2746 7404 622 55.7 MiB 0.18 0.00 4.49669 -137.938 -4.49669 4.49669 1.05 0.00125011 0.00114689 0.0614935 0.0563488 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.51 0.222933 0.200707 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0548603 0.0494717 144 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30240 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.7 MiB 0.11 888 10593 2829 7083 681 55.2 MiB 0.15 0.00 3.98836 -118.206 -3.98836 3.98836 1.04 0.00106263 0.000975631 0.0564894 0.05188 32 2021 22 6.65987e+06 367662 554710. 1919.41 1.19 0.190799 0.171329 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0440014 0.0394966 122 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17792 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1026 6999 1560 5055 384 55.1 MiB 0.12 0.00 4.76946 -136.875 -4.76946 4.76946 1.05 0.00108214 0.000992581 0.0425636 0.0390945 32 2525 24 6.65987e+06 291594 554710. 1919.41 1.23 0.184859 0.166126 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0457549 0.0411554 133 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.21 17628 1 0.03 -1 -1 30284 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1149 15584 5177 7856 2551 55.5 MiB 0.27 0.00 4.99307 -147.134 -4.99307 4.99307 1.04 0.0012179 0.00111786 0.102398 0.0939657 32 3017 27 6.65987e+06 291594 554710. 1919.41 1.36 0.265544 0.239741 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0475638 0.0429403 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 16.6 MiB 0.18 1089 11245 3394 6770 1081 55.2 MiB 0.19 0.00 3.85398 -125.73 -3.85398 3.85398 1.05 0.00124409 0.00114086 0.0784879 0.0719882 32 2804 22 6.65987e+06 266238 554710. 1919.41 1.31 0.236836 0.213486 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.26 0.14 0.22 -1 -1 0.26 0.0583254 0.0524161 135 77 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17380 1 0.03 -1 -1 30084 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.2 MiB 0.09 769 15493 4232 9363 1898 54.8 MiB 0.18 0.00 3.34618 -101.012 -3.34618 3.34618 1.05 0.000897129 0.000823228 0.0728507 0.0667943 30 1787 28 6.65987e+06 304272 526063. 1820.29 1.23 0.194464 0.174437 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0294486 0.0264667 97 23 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 16.9 MiB 0.15 904 12345 3635 7531 1179 55.3 MiB 0.19 0.00 3.9733 -136.305 -3.9733 3.9733 1.02 0.00110599 0.0010131 0.0716559 0.0655266 28 2501 21 6.65987e+06 253560 500653. 1732.36 1.27 0.185978 0.167069 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0462901 0.0415841 125 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30344 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1234 10649 2580 7238 831 55.4 MiB 0.21 0.01 5.507 -161.149 -5.507 5.507 1.16 0.0013002 0.00119464 0.07023 0.0644922 32 3101 24 6.65987e+06 354984 554710. 1919.41 1.44 0.244368 0.220891 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530635 0.0480399 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.25 868 6791 1309 5265 217 55.2 MiB 0.11 0.00 4.3812 -128.187 -4.3812 4.3812 1.02 0.00115484 0.00105835 0.0383795 0.0351597 30 2033 20 6.65987e+06 393018 526063. 1820.29 1.23 0.170585 0.15301 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.24 0.09 0.21 -1 -1 0.24 0.0468154 0.0422519 133 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30308 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.7 MiB 0.06 691 10228 2870 6479 879 55.1 MiB 0.14 0.00 3.33678 -100.638 -3.33678 3.33678 1.04 0.000953867 0.00087475 0.0524259 0.0480899 26 1949 23 6.65987e+06 329628 477104. 1650.88 1.50 0.175353 0.157173 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0409469 0.0365758 104 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 17772 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1262 6623 1301 4680 642 55.7 MiB 0.14 0.00 6.41663 -184.149 -6.41663 6.41663 1.05 0.00140492 0.00129007 0.0515042 0.0473957 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.81 0.241698 0.217731 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0597142 0.0539435 168 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 16.5 MiB 0.27 921 16959 4303 11211 1445 55.2 MiB 0.24 0.00 4.44175 -133.512 -4.44175 4.44175 1.05 0.00113798 0.00104441 0.0916499 0.0841271 26 2186 24 6.65987e+06 405696 477104. 1650.88 1.28 0.24196 0.218503 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0494487 0.0444939 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.05 793 12375 3802 6579 1994 54.9 MiB 0.15 0.00 3.21869 -96.935 -3.21869 3.21869 1.05 0.000845311 0.000776013 0.0569784 0.0522935 30 1766 15 6.65987e+06 291594 526063. 1820.29 1.14 0.154163 0.138482 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.27 0.06 0.20 -1 -1 0.27 0.0282984 0.0253886 100 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30164 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.8 MiB 0.15 997 10448 2232 7093 1123 55.3 MiB 0.15 0.00 5.44618 -130.736 -5.44618 5.44618 1.05 0.00118386 0.00108452 0.0579268 0.0530598 30 2483 23 6.65987e+06 431052 526063. 1820.29 1.42 0.211468 0.190436 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0512321 0.0461792 139 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17152 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.1 MiB 0.10 805 9600 2394 6142 1064 54.7 MiB 0.07 0.00 3.39504 -104.25 -3.39504 3.39504 0.82 0.000332965 0.0003001 0.0190563 0.0172111 30 1773 21 6.65987e+06 253560 526063. 1820.29 1.20 0.135583 0.121027 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0343049 0.0307786 104 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17340 1 0.03 -1 -1 30404 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.16 870 16295 4607 9720 1968 54.9 MiB 0.19 0.00 3.88231 -108.178 -3.88231 3.88231 1.05 0.000951392 0.000872625 0.0745596 0.0683549 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.36 0.201843 0.181361 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.21 0.07 0.17 -1 -1 0.21 0.0318945 0.0286843 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30248 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1186 15151 5050 8219 1882 55.6 MiB 0.25 0.00 4.37661 -129.138 -4.37661 4.37661 1.05 0.00115926 0.00106359 0.0981138 0.09008 28 2757 20 6.65987e+06 304272 500653. 1732.36 1.61 0.243867 0.220289 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0469598 0.0423039 138 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.18 884 5548 1103 3958 487 55.5 MiB 0.10 0.00 4.37207 -129.772 -4.37207 4.37207 1.05 0.0011804 0.00108252 0.0369406 0.0339471 32 2141 21 6.65987e+06 304272 554710. 1919.41 1.22 0.185528 0.166634 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0455786 0.040947 130 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30104 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1040 15391 4199 8930 2262 55.4 MiB 0.23 0.00 4.54089 -136.701 -4.54089 4.54089 1.06 0.00117201 0.00107536 0.091795 0.084256 32 2316 24 6.65987e+06 342306 554710. 1919.41 1.23 0.245215 0.221267 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.04304 0.0388039 132 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17540 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 821 7476 1923 4958 595 55.0 MiB 0.12 0.00 4.66411 -131.468 -4.66411 4.66411 1.06 0.000945592 0.000867166 0.0438122 0.0402048 30 1841 19 6.65987e+06 202848 526063. 1820.29 1.14 0.164375 0.147285 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0347542 0.0312154 103 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30404 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.21 768 7736 1918 4969 849 55.3 MiB 0.13 0.00 3.69598 -115.422 -3.69598 3.69598 1.02 0.00104377 0.000956313 0.0484749 0.0444343 30 1988 17 6.65987e+06 240882 526063. 1820.29 1.17 0.180713 0.162364 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0418029 0.0375185 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30460 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.4 MiB 0.21 822 9815 2052 6788 975 55.0 MiB 0.13 0.00 3.34001 -95.394 -3.34001 3.34001 1.09 0.00109368 0.00100178 0.0537453 0.049283 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.80 0.195987 0.175997 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.21 0.08 0.13 -1 -1 0.21 0.0346768 0.0312681 123 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30464 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.13 864 12623 3003 8699 921 55.1 MiB 0.16 0.00 4.17801 -101.983 -4.17801 4.17801 1.06 0.000960682 0.000881919 0.0526949 0.0479732 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.89 0.171062 0.153134 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.22 0.10 0.19 -1 -1 0.22 0.0387653 0.0347819 115 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.10 17780 1 0.03 -1 -1 30472 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 16.4 MiB 0.23 739 8360 2842 3913 1605 55.0 MiB 0.13 0.00 4.07397 -113.958 -4.07397 4.07397 1.05 0.00103394 0.000946861 0.0543216 0.0498423 32 2126 22 6.65987e+06 215526 554710. 1919.41 1.25 0.179157 0.160685 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0406077 0.036341 108 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17656 1 0.03 -1 -1 30104 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 16.6 MiB 0.20 854 4110 634 3368 108 55.2 MiB 0.09 0.00 3.78604 -125.597 -3.78604 3.78604 1.04 0.00109114 0.00100042 0.0282541 0.0259585 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.79 0.173749 0.155383 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0438533 0.0393788 120 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17076 1 0.03 -1 -1 30452 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.09 847 5711 1070 3973 668 55.1 MiB 0.09 0.00 4.49904 -123.598 -4.49904 4.49904 1.05 0.00103732 0.000952683 0.0304035 0.0279278 30 2337 22 6.65987e+06 405696 526063. 1820.29 1.32 0.165172 0.148346 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0487308 0.0437921 127 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30472 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1096 14639 4278 7910 2451 55.6 MiB 0.24 0.00 5.13815 -159.632 -5.13815 5.13815 1.05 0.00118258 0.00108682 0.0949602 0.0872498 32 3087 25 6.65987e+06 278916 554710. 1919.41 1.31 0.251465 0.227148 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.25 0.12 0.20 -1 -1 0.25 0.0490229 0.0441788 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30308 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1097 14331 4044 8499 1788 55.5 MiB 0.22 0.00 4.9662 -142.984 -4.9662 4.9662 1.05 0.0012534 0.00115048 0.085394 0.0783258 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.43 0.246405 0.222256 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0436377 0.0393728 142 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30300 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 17.1 MiB 0.27 1087 19136 6054 10420 2662 55.6 MiB 0.27 0.00 4.23232 -136.463 -4.23232 4.23232 1.05 0.00125627 0.00115151 0.106016 0.0972062 28 2899 28 6.65987e+06 469086 500653. 1732.36 1.70 0.279174 0.252069 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.20 0.07 0.09 -1 -1 0.20 0.0252595 0.0224961 140 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30100 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.4 MiB 0.22 753 14081 4985 6810 2286 54.9 MiB 0.18 0.00 3.61906 -107.365 -3.61906 3.61906 1.05 0.000934557 0.000856216 0.0780115 0.0714776 32 1967 21 6.65987e+06 240882 554710. 1919.41 1.20 0.195066 0.175494 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0407228 0.0364541 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 17.0 MiB 0.27 993 13583 3880 7603 2100 55.7 MiB 0.22 0.00 4.75724 -141.541 -4.75724 4.75724 1.06 0.00122106 0.00111962 0.095446 0.0876077 32 2250 20 6.65987e+06 266238 554710. 1919.41 1.26 0.247693 0.223878 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494085 0.0445877 137 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 16.9 MiB 0.28 984 6328 1212 4906 210 55.4 MiB 0.12 0.00 5.08874 -146.537 -5.08874 5.08874 1.06 0.00115249 0.0010586 0.0408509 0.0375567 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.54 0.232437 0.208507 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.24 0.10 0.22 -1 -1 0.24 0.0463018 0.0417743 138 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30504 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 16.7 MiB 0.35 1115 15391 3929 9868 1594 55.2 MiB 0.23 0.00 5.2191 -153.261 -5.2191 5.2191 1.05 0.00113352 0.00103875 0.0887915 0.0813375 32 2703 22 6.65987e+06 354984 554710. 1919.41 1.24 0.23367 0.210712 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.047657 0.0429259 146 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30428 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 17.0 MiB 0.94 822 9963 2514 6047 1402 55.4 MiB 0.17 0.00 4.35758 -125.649 -4.35758 4.35758 1.05 0.00120737 0.00110765 0.0610073 0.0559865 30 1914 20 6.65987e+06 393018 526063. 1820.29 1.19 0.211126 0.190038 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0451283 0.0407886 133 83 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30324 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 16.8 MiB 0.21 1042 15822 5317 8613 1892 55.3 MiB 0.29 0.00 4.76549 -137.992 -4.76549 4.76549 1.05 0.000830583 0.000747778 0.10438 0.0955517 30 2491 20 6.65987e+06 253560 526063. 1820.29 1.35 0.254425 0.229602 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463954 0.0418322 133 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.11 17588 1 0.03 -1 -1 30288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 16.7 MiB 0.36 913 8934 2134 6274 526 55.4 MiB 0.15 0.00 4.51892 -126.294 -4.51892 4.51892 1.05 0.00120559 0.00110533 0.0568582 0.0521587 26 2602 20 6.65987e+06 367662 477104. 1650.88 2.03 0.203034 0.182282 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0482837 0.043409 131 85 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.10 17084 1 0.04 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.1 MiB 0.09 724 12416 3530 7132 1754 54.7 MiB 0.16 0.00 3.74649 -112.139 -3.74649 3.74649 1.05 0.000881584 0.000805851 0.0671039 0.0616003 32 1726 22 6.65987e+06 190170 554710. 1919.41 1.17 0.170413 0.153165 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0325378 0.0292011 96 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30280 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 17.1 MiB 0.28 989 15430 4612 8155 2663 55.5 MiB 0.23 0.00 4.41154 -133.367 -4.41154 4.41154 1.06 0.00121486 0.00111236 0.0916949 0.0841148 32 2429 22 6.65987e+06 380340 554710. 1919.41 1.34 0.245027 0.220925 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.049774 0.0447692 130 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30368 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 0.28 902 8685 2007 6399 279 55.4 MiB 0.17 0.00 4.76517 -143.598 -4.76517 4.76517 1.05 0.00128901 0.00118139 0.0647516 0.0594054 32 2497 24 6.65987e+06 253560 554710. 1919.41 1.32 0.234063 0.211 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0479514 0.0431554 147 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30052 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 16.6 MiB 0.21 946 12143 3182 7420 1541 55.1 MiB 0.16 0.00 4.15372 -120.605 -4.15372 4.15372 1.05 0.000924123 0.000846782 0.0652232 0.0597621 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.98 0.21512 0.19277 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.25 0.14 0.18 -1 -1 0.25 0.0491973 0.04391 111 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17372 1 0.02 -1 -1 30432 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.10 732 8685 2467 5468 750 54.9 MiB 0.12 0.00 3.75938 -108.757 -3.75938 3.75938 1.04 0.000883897 0.000811329 0.0444559 0.040799 30 1655 19 6.65987e+06 266238 526063. 1820.29 1.12 0.153513 0.137818 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0370561 0.0331827 106 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17820 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 17.0 MiB 0.16 1015 15533 4784 8284 2465 55.7 MiB 0.24 0.00 4.92983 -152.714 -4.92983 4.92983 1.05 0.00117015 0.00107388 0.0952219 0.0874443 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.65 0.26078 0.235342 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.22 0.12 0.09 -1 -1 0.22 0.0511154 0.046024 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 16.9 MiB 0.43 1191 12305 3278 8039 988 55.6 MiB 0.18 0.00 4.93544 -150.743 -4.93544 4.93544 1.05 0.0011791 0.00108196 0.0735022 0.0675021 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.72 0.228829 0.206152 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0575384 0.0517235 151 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30148 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1117 11004 2566 7834 604 55.7 MiB 0.18 0.00 5.28255 -141.369 -5.28255 5.28255 1.05 0.00121759 0.00111736 0.0612883 0.0561822 26 3370 49 6.65987e+06 456408 477104. 1650.88 3.37 0.273523 0.246158 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0493737 0.0446243 153 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17492 1 0.03 -1 -1 30120 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 16.4 MiB 0.22 750 7863 1674 5072 1117 55.0 MiB 0.12 0.00 3.28175 -94.6726 -3.28175 3.28175 1.08 0.00104975 0.000962002 0.0425993 0.0390961 30 1756 22 6.65987e+06 393018 526063. 1820.29 1.16 0.176835 0.158604 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0406239 0.036543 120 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.2 MiB 0.06 638 11948 3525 6694 1729 54.8 MiB 0.14 0.00 3.4543 -94.1654 -3.4543 3.4543 1.07 0.000879723 0.00080703 0.0633986 0.0581403 28 1599 22 6.65987e+06 266238 500653. 1732.36 1.10 0.175073 0.157156 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0351193 0.0314073 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.14 18080 1 0.03 -1 -1 30380 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.2 MiB 0.18 1319 10542 2869 6884 789 55.6 MiB 0.20 0.00 4.22384 -138.261 -4.22384 4.22384 1.05 0.00136838 0.0012562 0.0761428 0.0699311 28 3615 24 6.65987e+06 329628 500653. 1732.36 2.00 0.258701 0.233678 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.060153 0.054332 170 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30320 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 16.7 MiB 0.85 967 9417 2580 6478 359 55.3 MiB 0.16 0.00 5.3126 -152.671 -5.3126 5.3126 1.05 0.001192 0.00109353 0.0646045 0.0592536 30 2413 22 6.65987e+06 266238 526063. 1820.29 1.27 0.216238 0.194725 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.26 0.09 0.20 -1 -1 0.26 0.049875 0.0449325 150 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30400 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 0.83 910 12186 3808 6300 2078 55.4 MiB 0.18 0.00 4.17204 -128.915 -4.17204 4.17204 1.10 0.00107649 0.000985979 0.0767294 0.0703338 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.23 0.215177 0.193834 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0398318 0.0358315 126 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30544 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.7 MiB 0.11 997 13726 4134 8495 1097 55.4 MiB 0.20 0.00 4.87399 -127.071 -4.87399 4.87399 1.04 0.00111283 0.00102149 0.0749362 0.0686981 30 2100 21 6.65987e+06 380340 526063. 1820.29 1.17 0.215701 0.194548 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.26 0.08 0.10 -1 -1 0.26 0.0390705 0.035259 126 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.23 17640 1 0.03 -1 -1 30152 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1094 9732 2284 6801 647 55.8 MiB 0.17 0.00 4.71929 -136.272 -4.71929 4.71929 1.05 0.00122956 0.001127 0.0581981 0.0534419 26 2676 39 6.65987e+06 418374 477104. 1650.88 2.04 0.25194 0.226688 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048082 0.0434591 144 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.11 17860 1 0.03 -1 -1 30348 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.6 MiB 0.16 968 12693 2914 8596 1183 55.3 MiB 0.20 0.00 3.66981 -110.801 -3.66981 3.66981 1.05 0.00108038 0.000990023 0.0680576 0.0623855 32 2261 19 6.65987e+06 393018 554710. 1919.41 1.21 0.20158 0.181593 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0435896 0.0391978 124 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30256 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 16.9 MiB 0.18 1162 15493 5220 7522 2751 55.7 MiB 0.25 0.00 4.81692 -150.127 -4.81692 4.81692 1.05 0.00117812 0.00108104 0.0968441 0.0889042 32 3110 26 6.65987e+06 304272 554710. 1919.41 1.37 0.255317 0.23068 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0568005 0.0512159 147 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30056 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1013 10448 2457 7443 548 55.3 MiB 0.18 0.00 4.61703 -140.056 -4.61703 4.61703 1.05 0.00126054 0.00115405 0.0621261 0.0569425 26 2952 23 6.65987e+06 431052 477104. 1650.88 2.01 0.225826 0.203453 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0549543 0.0495571 143 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30228 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.3 MiB 0.13 669 12030 4965 6160 905 54.9 MiB 0.15 0.00 3.76255 -110.557 -3.76255 3.76255 1.06 0.000926174 0.000849081 0.0697826 0.0640153 32 1475 20 6.65987e+06 215526 554710. 1919.41 1.15 0.1865 0.167721 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0355508 0.0318645 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.10 17816 1 0.04 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 16.4 MiB 0.24 897 13992 5018 7267 1707 54.9 MiB 0.19 0.00 3.93547 -124.701 -3.93547 3.93547 1.05 0.00102038 0.000934816 0.0808403 0.0740751 28 2149 19 6.65987e+06 253560 500653. 1732.36 1.14 0.205455 0.184886 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0458012 0.0411053 116 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30524 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.11 945 14020 3581 8011 2428 55.5 MiB 0.19 0.00 4.66818 -124.475 -4.66818 4.66818 1.05 0.00110882 0.00101828 0.0704963 0.0647412 32 2224 21 6.65987e+06 469086 554710. 1919.41 1.24 0.210641 0.190009 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0498502 0.0448108 129 33 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17644 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 16.4 MiB 0.21 809 8448 1963 6049 436 55.0 MiB 0.12 0.00 4.16472 -111.492 -4.16472 4.16472 1.05 0.000900686 0.000826499 0.045333 0.0416021 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.90 0.177996 0.15923 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0378425 0.0338748 110 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.11 17372 1 0.03 -1 -1 30188 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 16.1 MiB 0.21 618 8852 1890 6315 647 54.8 MiB 0.12 0.00 3.69503 -110.464 -3.69503 3.69503 1.07 0.000964489 0.000885082 0.0523396 0.0480543 32 2025 24 6.65987e+06 202848 554710. 1919.41 1.30 0.178635 0.160205 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.22 0.05 0.11 -1 -1 0.22 0.0171851 0.0152335 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30104 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 17.1 MiB 0.27 938 16973 4485 9905 2583 55.6 MiB 0.24 0.00 4.16177 -122.328 -4.16177 4.16177 1.00 0.00121176 0.00111184 0.0953566 0.0874202 32 2086 22 6.65987e+06 443730 554710. 1919.41 1.27 0.251205 0.226762 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0444795 0.0400806 135 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30356 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 16.4 MiB 0.18 818 9872 2327 5876 1669 55.0 MiB 0.13 0.00 3.9535 -119.787 -3.9535 3.9535 1.09 0.000913279 0.000837063 0.0535125 0.0490594 28 2135 19 6.65987e+06 240882 500653. 1732.36 1.21 0.165281 0.148271 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.033752 0.030249 108 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30056 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 854 7007 1324 4687 996 55.5 MiB 0.10 0.00 3.67932 -112.828 -3.67932 3.67932 0.87 0.00100802 0.000926265 0.0369279 0.0340435 26 2878 47 6.65987e+06 393018 477104. 1650.88 3.28 0.23182 0.207775 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0385043 0.0347296 126 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.8 MiB 0.78 956 13055 3385 8531 1139 55.4 MiB 0.20 0.00 4.2257 -136.613 -4.2257 4.2257 1.09 0.00125111 0.00114559 0.0793802 0.0726597 32 2142 21 6.65987e+06 405696 554710. 1919.41 1.25 0.240177 0.21652 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0500155 0.0451139 138 91 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30396 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 770 8481 2112 5900 469 55.1 MiB 0.13 0.00 3.26384 -102.093 -3.26384 3.26384 1.05 0.00102258 0.000937293 0.0511852 0.0469032 30 1814 29 6.65987e+06 215526 526063. 1820.29 1.18 0.189378 0.169691 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0352204 0.031629 104 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17244 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 16.4 MiB 0.16 877 7823 1725 5526 572 55.0 MiB 0.12 0.00 4.21052 -129.412 -4.21052 4.21052 1.05 0.000986983 0.000905837 0.0459717 0.0422042 28 2168 19 6.65987e+06 240882 500653. 1732.36 1.19 0.168389 0.151176 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.041271 0.0370076 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1033 8591 2028 5962 601 55.3 MiB 0.14 0.00 4.5425 -136.752 -4.5425 4.5425 1.05 0.00109827 0.00100953 0.0530246 0.0487525 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.68 0.200414 0.18051 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0400929 0.0361518 130 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 16.5 MiB 0.38 878 11177 3323 6945 909 55.1 MiB 0.17 0.00 4.7062 -118.142 -4.7062 4.7062 1.05 0.00107008 0.000981195 0.0632494 0.0579691 30 1916 16 6.65987e+06 354984 526063. 1820.29 1.10 0.18935 0.170446 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0342973 0.030983 121 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1007 9495 2407 6691 397 55.5 MiB 0.17 0.00 5.16517 -161.462 -5.16517 5.16517 1.05 0.00127316 0.00116772 0.0666982 0.0612133 32 2658 22 6.65987e+06 291594 554710. 1919.41 1.30 0.230697 0.20807 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0555751 0.0501038 153 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17048 1 0.02 -1 -1 30364 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.1 MiB 0.10 794 9181 2203 6150 828 54.7 MiB 0.11 0.00 3.53041 -99.5418 -3.53041 3.53041 1.05 0.000832469 0.000763321 0.0459819 0.0422253 32 1764 19 6.65987e+06 228204 554710. 1919.41 1.11 0.148318 0.132824 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0295478 0.0264512 96 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17688 1 0.03 -1 -1 30216 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 16.7 MiB 0.41 947 7201 1402 5250 549 55.4 MiB 0.13 0.00 4.0805 -134.669 -4.0805 4.0805 1.06 0.00130409 0.00119541 0.0457593 0.0419384 32 2497 24 6.65987e+06 418374 554710. 1919.41 1.28 0.216763 0.194792 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0567484 0.0511259 144 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30232 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 692 9368 2494 5834 1040 55.1 MiB 0.16 0.00 3.5233 -119.857 -3.5233 3.5233 1.05 0.00117706 0.00107817 0.0684397 0.0627281 32 1730 23 6.65987e+06 202848 554710. 1919.41 1.23 0.221303 0.19912 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0529305 0.0474973 115 96 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30436 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.33 963 9383 2362 6118 903 55.4 MiB 0.15 0.00 4.19332 -127.565 -4.19332 4.19332 1.05 0.00117975 0.00108152 0.0545297 0.0499605 32 2293 25 6.65987e+06 393018 554710. 1919.41 1.23 0.210843 0.189536 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0489701 0.044041 130 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30412 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1323 16127 4193 10390 1544 55.5 MiB 0.32 0.01 6.49946 -194.782 -6.49946 6.49946 1.05 0.00132737 0.00121862 0.111986 0.10287 28 3840 36 6.65987e+06 316950 500653. 1732.36 2.86 0.308673 0.279019 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0558125 0.0504727 168 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17520 1 0.02 -1 -1 30192 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 16.1 MiB 0.18 701 10895 2966 6376 1553 54.6 MiB 0.12 0.00 3.19181 -99.2246 -3.19181 3.19181 1.07 0.000772018 0.000707091 0.0520017 0.0476305 32 1552 19 6.65987e+06 215526 554710. 1919.41 1.10 0.146382 0.131038 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.032002 0.0285075 86 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30440 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.11 559 11200 4645 5368 1187 55.1 MiB 0.07 0.00 4.03052 -111.683 -4.03052 4.03052 1.07 0.00035939 0.000323712 0.0260404 0.0235335 32 1719 26 6.65987e+06 202848 554710. 1919.41 1.29 0.156251 0.139271 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.27 0.14 0.24 -1 -1 0.27 0.0596752 0.0532672 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 29940 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.3 MiB 0.07 882 13663 3967 7775 1921 54.9 MiB 0.21 0.00 3.38183 -111.047 -3.38183 3.38183 1.05 0.00101278 0.000928693 0.0779101 0.0714084 32 2232 25 6.65987e+06 266238 554710. 1919.41 1.26 0.211524 0.190288 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0419986 0.0376481 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17640 1 0.02 -1 -1 30220 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.1 MiB 0.09 461 9234 2985 4025 2224 54.7 MiB 0.09 0.00 3.09981 -73.1644 -3.09981 3.09981 1.04 0.00075448 0.000690581 0.04016 0.0367823 38 1143 33 6.65987e+06 342306 638502. 2209.35 2.02 0.206987 0.183921 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.29 0.05 0.25 -1 -1 0.29 0.0264034 0.0236581 89 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.11 17764 1 0.03 -1 -1 30464 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 16.9 MiB 0.20 1082 15273 5386 7964 1923 55.3 MiB 0.26 0.00 3.97418 -128.905 -3.97418 3.97418 1.04 0.00121687 0.00111516 0.104793 0.0960702 32 2803 23 6.65987e+06 253560 554710. 1919.41 1.32 0.262042 0.236549 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547871 0.0492815 135 72 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17780 1 0.04 -1 -1 30232 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 16.9 MiB 0.36 841 9951 2183 7152 616 55.6 MiB 0.17 0.00 4.37472 -138.365 -4.37472 4.37472 1.05 0.00127207 0.00116333 0.062549 0.0573545 32 2335 20 6.65987e+06 418374 554710. 1919.41 1.26 0.223623 0.201422 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.046313 0.0418643 142 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17864 1 0.03 -1 -1 30104 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 2.26 849 12139 5116 6732 291 56.1 MiB 0.18 0.00 5.4594 -159.287 -5.4594 5.4594 1.09 0.00116932 0.00107148 0.0910881 0.0835873 44 2778 24 6.95648e+06 188184 787024. 2723.27 3.86 0.343268 0.308429 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0516291 0.0465294 81 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30372 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 17.5 MiB 2.09 750 10998 3991 5243 1764 56.1 MiB 0.16 0.00 4.63092 -138.355 -4.63092 4.63092 1.09 0.0011814 0.00108373 0.0836536 0.0768302 40 2398 38 6.95648e+06 217135 706193. 2443.58 3.20 0.365452 0.327996 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.0536433 0.0483048 80 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 17.6 MiB 1.10 1011 6839 1853 4585 401 56.1 MiB 0.10 0.00 3.76508 -124.296 -3.76508 3.76508 1.08 0.00103494 0.000950475 0.044537 0.0408957 38 2570 30 6.95648e+06 217135 678818. 2348.85 4.01 0.274675 0.245268 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0414272 0.0372466 76 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.22 17504 1 0.03 -1 -1 30448 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 17.4 MiB 0.29 653 13152 5791 6666 695 55.9 MiB 0.16 0.00 4.18338 -115.281 -4.18338 4.18338 1.05 0.00104478 0.000958639 0.0831858 0.0763004 46 2265 28 6.95648e+06 275038 828058. 2865.25 3.61 0.317931 0.285513 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0405877 0.0365429 71 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30244 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 17.4 MiB 0.76 735 12120 5042 6627 451 55.9 MiB 0.16 0.00 4.33299 -127.984 -4.33299 4.33299 1.06 0.00113571 0.00104187 0.0835615 0.0767002 46 2384 49 6.95648e+06 231611 828058. 2865.25 5.20 0.377312 0.338374 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.34 0.10 0.32 -1 -1 0.34 0.044247 0.039899 73 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 17.6 MiB 1.09 762 14779 6278 7942 559 56.2 MiB 0.18 0.00 3.0584 -114.242 -3.0584 3.0584 1.09 0.00120302 0.00110016 0.0990458 0.0907117 46 2130 23 6.95648e+06 303989 828058. 2865.25 3.77 0.356975 0.320647 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0502151 0.0452231 79 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17312 1 0.03 -1 -1 30756 -1 -1 13 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 16.8 MiB 4.02 400 8118 3296 4253 569 55.3 MiB 0.09 0.00 3.56899 -93.1575 -3.56899 3.56899 1.08 0.000892481 0.00081411 0.0507409 0.0465485 40 1513 27 6.95648e+06 188184 706193. 2443.58 2.48 0.245375 0.218863 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0357302 0.032004 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17036 1 0.03 -1 -1 30012 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 17.1 MiB 0.37 691 11983 4028 5840 2115 55.8 MiB 0.14 0.00 3.0166 -94.5957 -3.0166 3.0166 1.08 0.000971565 0.000891355 0.0623128 0.0571974 38 2198 34 6.95648e+06 361892 678818. 2348.85 3.58 0.288074 0.257627 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.26 0.05 0.14 -1 -1 0.26 0.0175381 0.0156019 69 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 17.4 MiB 1.89 579 9684 3905 5251 528 56.1 MiB 0.12 0.00 3.39469 -115.112 -3.39469 3.39469 1.09 0.0010306 0.000943595 0.0674986 0.0618481 48 1811 26 6.95648e+06 159232 865456. 2994.66 2.82 0.291103 0.260273 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.38 0.10 0.34 -1 -1 0.38 0.0438043 0.0392135 66 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 17.2 MiB 1.34 566 8134 3343 4546 245 55.9 MiB 0.10 0.00 3.30928 -114.291 -3.30928 3.30928 1.08 0.00101303 0.000927961 0.0457614 0.0418921 42 1921 24 6.95648e+06 144757 744469. 2576.02 2.31 0.263335 0.234768 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0391705 0.0352196 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30336 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 17.0 MiB 1.78 471 10304 4280 5549 475 55.8 MiB 0.06 0.00 3.43453 -102.366 -3.43453 3.43453 0.74 0.000368937 0.000332362 0.0265587 0.0240257 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.45 0.118392 0.103246 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0380115 0.0340867 55 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30088 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 1.47 590 10614 3394 4881 2339 55.8 MiB 0.13 0.00 3.37833 -114.652 -3.37833 3.37833 1.08 0.000943388 0.000864378 0.0672547 0.0616811 48 2065 26 6.95648e+06 144757 865456. 2994.66 4.24 0.275949 0.246684 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0410297 0.0367433 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 17.4 MiB 1.96 833 13261 5618 7295 348 56.0 MiB 0.18 0.00 3.96008 -134.144 -3.96008 3.96008 1.08 0.00116825 0.00106875 0.0943122 0.0865228 46 2758 33 6.95648e+06 217135 828058. 2865.25 4.44 0.361402 0.324845 28066 200906 -1 2047 22 1722 2490 195693 41961 3.39476 3.39476 -130.85 -3.39476 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0509226 0.0458872 83 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30452 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 17.5 MiB 0.95 789 9158 3216 4675 1267 56.1 MiB 0.12 0.00 4.48063 -134.265 -4.48063 4.48063 1.12 0.00118221 0.00108311 0.0610072 0.0559749 46 2203 26 6.95648e+06 318465 828058. 2865.25 2.95 0.319889 0.286841 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0542423 0.0487392 75 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30356 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 16.9 MiB 1.25 470 8444 3456 4562 426 55.4 MiB 0.10 0.00 3.10275 -88.0296 -3.10275 3.10275 1.09 0.00086344 0.000791236 0.0488958 0.0448433 40 2005 31 6.95648e+06 188184 706193. 2443.58 2.98 0.244079 0.217414 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0390871 0.0349384 55 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 17.3 MiB 1.15 736 13381 4767 6091 2523 55.9 MiB 0.20 0.00 3.0625 -113.087 -3.0625 3.0625 1.10 0.00120312 0.00110319 0.106985 0.0980831 46 2125 28 6.95648e+06 246087 828058. 2865.25 3.09 0.373467 0.335732 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528002 0.0475052 76 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30092 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 2.07 821 11698 3981 5913 1804 56.0 MiB 0.17 0.00 4.42651 -139.682 -4.42651 4.42651 1.10 0.00114181 0.00104701 0.0835269 0.0766976 38 2675 39 6.95648e+06 202660 678818. 2348.85 4.14 0.357818 0.321085 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0481899 0.0434561 79 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30292 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 17.0 MiB 0.99 568 11625 5013 6229 383 55.7 MiB 0.15 0.00 2.28966 -90.0891 -2.28966 2.28966 1.08 0.00105339 0.000963685 0.0833848 0.076291 46 1756 36 6.95648e+06 130281 828058. 2865.25 4.13 0.329961 0.295101 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0405761 0.0364506 57 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 9 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 16.6 MiB 0.34 438 9707 4039 5351 317 55.2 MiB 0.10 0.00 2.22846 -79.3536 -2.22846 2.22846 1.09 0.00076745 0.000701861 0.0531963 0.0486875 38 1481 49 6.95648e+06 130281 678818. 2348.85 2.27 0.247219 0.219389 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0306093 0.0273126 43 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30400 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 17.5 MiB 2.10 900 8449 3439 4770 240 56.0 MiB 0.11 0.00 4.11557 -135.517 -4.11557 4.11557 1.09 0.000991298 0.000908224 0.0558545 0.0512724 40 2181 21 6.95648e+06 173708 706193. 2443.58 2.85 0.263428 0.235592 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0433029 0.0388449 69 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30392 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 17.3 MiB 0.57 691 13626 5075 6512 2039 56.0 MiB 0.17 0.00 3.69419 -120.83 -3.69419 3.69419 1.08 0.00115253 0.00105742 0.0891479 0.0817599 44 2266 33 6.95648e+06 289514 787024. 2723.27 4.10 0.352644 0.316606 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.059839 0.0538149 75 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 17.5 MiB 1.55 803 10868 4396 5912 560 56.2 MiB 0.16 0.00 4.7576 -138.082 -4.7576 4.7576 1.12 0.00121413 0.00111307 0.0824378 0.075606 48 2894 42 6.95648e+06 202660 865456. 2994.66 4.56 0.375842 0.336988 28354 207349 -1 2151 23 1823 2679 262855 61699 4.41832 4.41832 -141.927 -4.41832 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.0548738 0.0493939 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17404 1 0.02 -1 -1 30708 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 16.5 MiB 0.88 416 8539 3544 4471 524 55.1 MiB 0.08 0.00 2.23646 -66.7931 -2.23646 2.23646 1.10 0.0006573 0.000600728 0.0403815 0.0369205 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.86 0.204267 0.180941 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.26 0.05 0.24 -1 -1 0.26 0.0232369 0.0207166 44 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17268 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 0.70 670 9543 3600 4533 1410 55.6 MiB 0.12 0.00 4.68425 -117.235 -4.68425 4.68425 1.08 0.00101399 0.000930278 0.0601344 0.0552468 44 2456 40 6.95648e+06 217135 787024. 2723.27 4.27 0.308805 0.276588 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0393349 0.035427 66 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 16852 1 0.02 -1 -1 30056 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.8 MiB 0.28 360 10055 3887 4514 1654 55.3 MiB 0.09 0.00 2.15326 -68.8392 -2.15326 2.15326 1.08 0.000633839 0.000577821 0.0446908 0.0408002 38 1061 21 6.95648e+06 115805 678818. 2348.85 2.28 0.18189 0.161362 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0237036 0.0211199 42 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30252 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 17.5 MiB 0.91 746 14106 6043 7637 426 55.9 MiB 0.17 0.00 4.49111 -123.956 -4.49111 4.49111 1.08 0.00103405 0.000941945 0.0893404 0.0819668 38 2858 40 6.95648e+06 217135 678818. 2348.85 9.12 0.349035 0.312976 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.29 0.11 0.24 -1 -1 0.29 0.0421322 0.0379813 68 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.3 MiB 0.50 675 10873 4420 6034 419 55.9 MiB 0.13 0.00 2.9573 -100.116 -2.9573 2.9573 1.09 0.00105781 0.000970977 0.0648998 0.059598 46 2093 50 6.95648e+06 303989 828058. 2865.25 3.25 0.335932 0.301032 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.049347 0.0443789 74 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.11 17584 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 17.2 MiB 0.83 795 15383 6700 8206 477 55.9 MiB 0.20 0.00 4.43549 -130.994 -4.43549 4.43549 1.08 0.00111658 0.00102316 0.0987414 0.0905275 48 2092 29 6.95648e+06 275038 865456. 2994.66 3.48 0.347935 0.312381 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.34 0.11 0.34 -1 -1 0.34 0.0486523 0.0437182 72 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17240 1 0.02 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 0.86 836 12164 3915 6903 1346 55.8 MiB 0.15 0.00 3.08875 -104.395 -3.08875 3.08875 1.08 0.000967189 0.000886982 0.0787462 0.0722095 38 2054 21 6.95648e+06 144757 678818. 2348.85 2.34 0.28096 0.251642 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0362819 0.0326065 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30520 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 17.0 MiB 0.27 486 10916 4488 5855 573 55.6 MiB 0.12 0.00 3.37953 -96.5612 -3.37953 3.37953 1.04 0.00137839 0.00125994 0.0612963 0.0560993 42 1738 31 6.95648e+06 260562 744469. 2576.02 2.37 0.263418 0.234832 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.31 0.08 0.30 -1 -1 0.31 0.0331286 0.0296657 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17532 1 0.03 -1 -1 30068 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 17.1 MiB 0.47 447 10796 4457 5651 688 55.6 MiB 0.12 0.00 2.9532 -88.5671 -2.9532 2.9532 1.08 0.000892543 0.00081869 0.0633416 0.0581026 44 1895 36 6.95648e+06 231611 787024. 2723.27 3.32 0.273533 0.243919 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0358295 0.0320273 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17084 1 0.03 -1 -1 30340 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.42 490 8754 2672 4372 1710 55.7 MiB 0.10 0.00 3.37459 -106.603 -3.37459 3.37459 1.18 0.000909063 0.000833744 0.0545043 0.0500757 46 1609 38 6.95648e+06 144757 828058. 2865.25 4.17 0.277045 0.246879 28066 200906 -1 1166 19 1064 1493 99508 25826 3.01962 3.01962 -108.184 -3.01962 0 0 1.01997e+06 3529.29 0.33 0.08 0.33 -1 -1 0.33 0.0361631 0.0324893 58 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17548 1 0.03 -1 -1 30184 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 16.8 MiB 0.39 514 10050 3328 4861 1861 55.6 MiB 0.11 0.00 3.16614 -99.0057 -3.16614 3.16614 1.10 0.000945871 0.000866324 0.0519128 0.0472929 44 1932 39 6.95648e+06 275038 787024. 2723.27 3.91 0.276134 0.245959 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0434725 0.0388738 61 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30416 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 17.2 MiB 1.29 761 12537 5784 6209 544 55.9 MiB 0.15 0.00 2.98425 -104.866 -2.98425 2.98425 1.10 0.000963475 0.000883062 0.0825643 0.075655 40 1951 35 6.95648e+06 173708 706193. 2443.58 4.39 0.313684 0.280554 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.037253 0.0333799 61 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.17 17624 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 17.4 MiB 0.93 827 14593 4666 7411 2516 56.1 MiB 0.18 0.00 4.22723 -122.469 -4.22723 4.22723 1.11 0.000827248 0.000745406 0.0676918 0.0611651 40 2898 29 6.95648e+06 303989 706193. 2443.58 4.41 0.346046 0.309904 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0561488 0.0506201 84 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30292 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 17.4 MiB 1.26 745 13738 4997 6870 1871 56.1 MiB 0.19 0.00 3.2962 -117.206 -3.2962 3.2962 1.08 0.00127022 0.00116298 0.0932746 0.0853882 40 2441 27 6.95648e+06 347416 706193. 2443.58 3.58 0.373388 0.335423 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0555294 0.0500717 82 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.13 17804 1 0.03 -1 -1 30192 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 17.2 MiB 1.84 860 8754 2885 4850 1019 55.9 MiB 0.11 0.00 4.04047 -132.719 -4.04047 4.04047 1.08 0.000958555 0.000879188 0.0568855 0.0522283 40 2120 31 6.95648e+06 159232 706193. 2443.58 2.86 0.272045 0.242826 26914 176310 -1 2014 22 1310 1843 197131 38779 3.56322 3.56322 -132.421 -3.56322 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0415946 0.0372517 63 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30336 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 17.4 MiB 0.92 747 9036 3143 4486 1407 56.0 MiB 0.13 0.00 3.76434 -122.812 -3.76434 3.76434 1.09 0.00120549 0.00110604 0.0678385 0.0623149 38 2983 41 6.95648e+06 231611 678818. 2348.85 4.82 0.363318 0.325771 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0507194 0.0456912 76 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.20 17612 1 0.04 -1 -1 30316 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 17.7 MiB 2.18 943 12585 5266 6878 441 56.5 MiB 0.19 0.00 5.54066 -172.627 -5.54066 5.54066 1.11 0.00122755 0.00112555 0.094965 0.0871196 56 2573 26 6.95648e+06 231611 973134. 3367.25 3.28 0.363375 0.326558 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.38 0.16 0.41 -1 -1 0.38 0.055945 0.050434 97 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30496 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 17.3 MiB 2.87 938 15120 6700 8021 399 56.0 MiB 0.21 0.00 4.47954 -148.558 -4.47954 4.47954 1.09 0.00124224 0.00113911 0.114689 0.105192 40 2977 25 6.95648e+06 231611 706193. 2443.58 2.78 0.387038 0.348246 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0506783 0.0457227 88 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 17.4 MiB 1.49 806 12733 4192 6306 2235 56.0 MiB 0.17 0.00 4.14583 -131.471 -4.14583 4.14583 1.09 0.00110207 0.00100238 0.082566 0.0757593 44 2580 41 6.95648e+06 318465 787024. 2723.27 3.49 0.379121 0.340043 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466037 0.0419765 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 30332 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 17.2 MiB 1.29 717 8212 2161 5077 974 55.7 MiB 0.12 0.00 4.19005 -113.386 -4.19005 4.19005 1.15 0.00100602 0.000922052 0.0525022 0.0481896 46 1942 38 6.95648e+06 202660 828058. 2865.25 3.93 0.297277 0.265647 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.33 0.09 0.32 -1 -1 0.33 0.0373457 0.0336328 71 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18080 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58096 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 17.9 MiB 1.90 969 15017 6294 8197 526 56.7 MiB 0.23 0.00 4.79262 -158.033 -4.79262 4.79262 1.08 0.00147546 0.00135552 0.121182 0.111296 44 3004 31 6.95648e+06 318465 787024. 2723.27 4.11 0.455026 0.409479 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0641283 0.057692 93 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30268 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 17.2 MiB 0.78 451 10702 3732 4796 2174 55.7 MiB 0.11 0.00 3.25706 -97.1743 -3.25706 3.25706 1.08 0.000900359 0.000825125 0.0606174 0.0555534 42 1868 35 6.95648e+06 217135 744469. 2576.02 2.37 0.271682 0.242412 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.31 0.12 0.29 -1 -1 0.31 0.0563231 0.0501294 56 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30236 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 1.32 1043 13358 5192 6540 1626 56.0 MiB 0.19 0.00 4.83562 -153.036 -4.83562 4.83562 1.08 0.0011437 0.0010497 0.0950767 0.0873513 40 2908 41 6.95648e+06 217135 706193. 2443.58 4.50 0.373495 0.335583 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0443269 0.0400028 84 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30220 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 17.5 MiB 1.03 832 15481 6850 8276 355 56.1 MiB 0.20 0.00 3.22585 -113.908 -3.22585 3.22585 1.09 0.00114903 0.00105319 0.105186 0.0964149 40 2681 28 6.95648e+06 246087 706193. 2443.58 3.95 0.361547 0.324808 26914 176310 -1 2155 23 1599 2614 231061 49102 3.24022 3.24022 -125.665 -3.24022 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0519951 0.0467392 73 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17288 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.4 MiB 0.89 692 9712 3251 4487 1974 56.0 MiB 0.12 0.00 4.55274 -121.613 -4.55274 4.55274 1.11 0.00103154 0.000946725 0.0612899 0.0562951 44 2409 26 6.95648e+06 231611 787024. 2723.27 3.55 0.289153 0.259386 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0487288 0.0438197 68 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 17.4 MiB 2.83 796 11532 3820 5366 2346 56.0 MiB 0.16 0.00 4.43423 -134.57 -4.43423 4.43423 1.11 0.00117036 0.00107391 0.0846868 0.0777873 40 2553 40 6.95648e+06 202660 706193. 2443.58 3.47 0.365517 0.327965 26914 176310 -1 2106 22 1511 2049 167648 37819 3.63736 3.63736 -132.097 -3.63736 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.050734 0.0456611 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 17.6 MiB 1.84 763 10406 4042 5595 769 56.2 MiB 0.15 0.00 3.235 -115.411 -3.235 3.235 1.10 0.00118377 0.00108507 0.0740253 0.0679148 38 2855 46 6.95648e+06 246087 678818. 2348.85 6.36 0.381098 0.341681 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0478725 0.0431174 75 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 17.6 MiB 1.10 832 13758 4740 6643 2375 56.3 MiB 0.19 0.00 4.17869 -135.166 -4.17869 4.17869 1.09 0.000457344 0.000412858 0.0747404 0.0679011 46 2399 24 6.95648e+06 376368 828058. 2865.25 3.44 0.347153 0.311192 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0582536 0.0524604 83 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30228 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 17.3 MiB 0.97 704 11804 4117 5540 2147 55.8 MiB 0.13 0.00 4.32723 -118.436 -4.32723 4.32723 1.09 0.00105304 0.000965034 0.0686656 0.0630036 42 2228 31 6.95648e+06 318465 744469. 2576.02 2.89 0.313691 0.281181 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0408157 0.0367317 69 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 17.5 MiB 2.28 822 10020 3444 5308 1268 56.1 MiB 0.14 0.00 4.15778 -128.101 -4.15778 4.15778 1.09 0.00109783 0.00100682 0.0703296 0.0645567 40 2642 40 6.95648e+06 188184 706193. 2443.58 3.87 0.34213 0.306552 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0516114 0.0464457 79 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.20 17856 1 0.04 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 1.51 847 12030 5014 6584 432 56.2 MiB 0.18 0.00 4.57287 -144.308 -4.57287 4.57287 1.08 0.00121522 0.00111432 0.0919047 0.0841014 46 3239 34 6.95648e+06 217135 828058. 2865.25 6.09 0.37479 0.336328 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0513365 0.0463201 85 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 17.8 MiB 2.36 757 13443 5119 6395 1929 56.5 MiB 0.19 0.00 4.08826 -130.07 -4.08826 4.08826 1.09 0.00125439 0.00114667 0.106488 0.0976398 50 2778 50 6.95648e+06 188184 902133. 3121.57 4.52 0.431311 0.386826 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0706036 0.0634084 76 77 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17408 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 17.0 MiB 0.29 503 12542 4062 6070 2410 55.6 MiB 0.13 0.00 3.14908 -92.6386 -3.14908 3.14908 1.10 0.00088637 0.000812117 0.064573 0.0591332 40 1776 44 6.95648e+06 260562 706193. 2443.58 12.76 0.461719 0.409001 26914 176310 -1 1443 22 1111 1649 176104 46230 2.86757 2.86757 -100.891 -2.86757 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0378286 0.0337741 57 23 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 1.40 674 9676 3990 5312 374 55.9 MiB 0.15 0.00 3.76865 -134.987 -3.76865 3.76865 1.09 0.00110687 0.00101222 0.0642074 0.0586079 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 3.05 0.295053 0.263922 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.41 0.11 0.45 -1 -1 0.41 0.0496703 0.044532 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17844 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 17.9 MiB 1.81 1197 6788 1593 4785 410 56.4 MiB 0.13 0.00 4.81732 -154.887 -4.81732 4.81732 1.10 0.00130081 0.00119476 0.0560464 0.0516652 56 2745 25 6.95648e+06 231611 973134. 3367.25 3.39 0.344605 0.310418 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.38 0.14 0.39 -1 -1 0.38 0.0535575 0.0484982 97 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 17.6 MiB 1.10 755 11806 4947 6514 345 56.1 MiB 0.16 0.00 4.55181 -144.133 -4.55181 4.55181 1.09 0.00114925 0.00105496 0.0808799 0.0742624 46 2302 50 6.95648e+06 246087 828058. 2865.25 3.43 0.377529 0.338772 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.34 0.12 0.34 -1 -1 0.34 0.0502422 0.0452561 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17256 1 0.03 -1 -1 30324 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 17.2 MiB 0.50 536 11296 4661 6055 580 55.9 MiB 0.13 0.00 2.9714 -97.779 -2.9714 2.9714 1.09 0.000952849 0.000872534 0.0630015 0.057697 46 1687 48 6.95648e+06 289514 828058. 2865.25 3.72 0.308167 0.275126 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.34 0.09 0.32 -1 -1 0.34 0.0411006 0.0367651 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 2.03 1154 14782 4940 8104 1738 56.5 MiB 0.25 0.00 6.12641 -181.225 -6.12641 6.12641 1.11 0.00141502 0.00129921 0.128282 0.117906 46 2972 48 6.95648e+06 217135 828058. 2865.25 6.30 0.490515 0.441577 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0368575 0.0329855 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.17 17800 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 17.7 MiB 1.47 717 11799 3733 5850 2216 56.3 MiB 0.15 0.00 4.62806 -129.887 -4.62806 4.62806 1.09 0.00114264 0.0010465 0.073278 0.0671131 40 2137 23 6.95648e+06 332941 706193. 2443.58 2.87 0.315154 0.282642 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.049413 0.0444819 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.9 MiB 0.32 514 10509 3980 5034 1495 55.5 MiB 0.11 0.00 2.96656 -92.2738 -2.96656 2.96656 1.09 0.000839728 0.000770092 0.0569363 0.0522768 44 1513 24 6.95648e+06 188184 787024. 2723.27 2.53 0.243606 0.217028 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.33 0.06 0.32 -1 -1 0.33 0.0280207 0.0251461 51 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30180 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 17.3 MiB 0.59 1076 14908 4738 8798 1372 56.0 MiB 0.20 0.00 4.96917 -138.118 -4.96917 4.96917 1.08 0.00118859 0.00108967 0.0941008 0.0863564 38 3145 48 6.95648e+06 347416 678818. 2348.85 9.35 0.3966 0.35614 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0500354 0.0448764 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.16 17084 1 0.03 -1 -1 30068 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 17.2 MiB 0.91 492 11034 4564 6063 407 55.8 MiB 0.12 0.00 2.9972 -99.2597 -2.9972 2.9972 1.08 0.000889359 0.000815228 0.0615557 0.0564612 40 1961 39 6.95648e+06 202660 706193. 2443.58 2.55 0.267168 0.238428 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.32 0.11 0.29 -1 -1 0.32 0.0390808 0.0350407 57 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30300 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 16.9 MiB 0.98 565 8867 3613 4967 287 55.6 MiB 0.11 0.00 3.45473 -106.167 -3.45473 3.45473 1.08 0.000952037 0.000872943 0.0523177 0.0479965 38 1930 30 6.95648e+06 246087 678818. 2348.85 4.20 0.264702 0.236131 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0367562 0.0329526 60 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30384 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 17.6 MiB 1.59 851 11487 4862 6149 476 56.2 MiB 0.17 0.00 3.95502 -124.066 -3.95502 3.95502 1.08 0.00115529 0.00105895 0.0850264 0.0780198 44 2861 40 6.95648e+06 231611 787024. 2723.27 3.89 0.365854 0.328152 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0507129 0.04563 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 17.4 MiB 1.30 719 14528 6712 7344 472 56.0 MiB 0.19 0.00 4.55468 -132.882 -4.55468 4.55468 1.09 0.00118145 0.00108321 0.103204 0.094637 44 2547 35 6.95648e+06 231611 787024. 2723.27 2.98 0.377995 0.339662 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.35 0.12 0.29 -1 -1 0.35 0.0536639 0.0482979 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30040 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 17.5 MiB 1.85 751 11200 4198 5153 1849 56.1 MiB 0.16 0.00 4.43749 -136.856 -4.43749 4.43749 1.09 0.00116637 0.00107008 0.0819913 0.0752454 46 2439 25 6.95648e+06 202660 828058. 2865.25 3.41 0.340414 0.305498 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0494745 0.044589 73 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17552 1 0.03 -1 -1 30344 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 17.3 MiB 2.90 640 8909 3664 5023 222 55.8 MiB 0.12 0.00 4.07418 -127.444 -4.07418 4.07418 1.10 0.000948218 0.000868919 0.0574649 0.0527132 40 2228 26 6.95648e+06 144757 706193. 2443.58 3.25 0.264433 0.236213 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.038515 0.0345382 61 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30540 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 17.1 MiB 2.11 607 11925 5002 6435 488 55.8 MiB 0.15 0.00 3.79972 -120.636 -3.79972 3.79972 1.09 0.00104737 0.000959875 0.0819924 0.0751431 48 1984 29 6.95648e+06 173708 865456. 2994.66 2.86 0.312881 0.28 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.35 0.11 0.36 -1 -1 0.35 0.0462916 0.0415618 68 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30460 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 17.5 MiB 0.90 673 11064 3726 5225 2113 56.0 MiB 0.14 0.00 3.0162 -94.6102 -3.0162 3.0162 1.09 0.00108601 0.000994778 0.0686572 0.0629635 38 2318 31 6.95648e+06 318465 678818. 2348.85 4.24 0.31451 0.281569 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.31 0.11 0.27 -1 -1 0.31 0.0474996 0.0425826 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17496 1 0.03 -1 -1 30524 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 0.66 661 10813 4387 5735 691 55.9 MiB 0.12 0.00 3.6526 -99.519 -3.6526 3.6526 1.10 0.000958058 0.000877646 0.0562243 0.0515781 42 1918 35 6.95648e+06 405319 744469. 2576.02 3.17 0.284857 0.253828 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0372544 0.0333826 72 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30520 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.90 539 10769 4210 5259 1300 56.0 MiB 0.13 0.00 3.44073 -108.225 -3.44073 3.44073 1.10 0.00103694 0.000949481 0.075061 0.0688106 48 1688 34 6.95648e+06 173708 865456. 2994.66 3.14 0.316659 0.283163 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0419016 0.0375633 60 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 17.3 MiB 1.73 645 12715 5333 6940 442 55.9 MiB 0.16 0.00 3.42769 -121.093 -3.42769 3.42769 1.10 0.00108629 0.000994324 0.0905067 0.082957 50 2241 50 6.95648e+06 159232 902133. 3121.57 4.05 0.36932 0.3307 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.35 0.10 0.35 -1 -1 0.35 0.0411326 0.0370325 72 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.13 17120 1 0.03 -1 -1 30388 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.3 MiB 0.43 742 11799 3162 6813 1824 55.8 MiB 0.15 0.00 4.51778 -120.862 -4.51778 4.51778 1.09 0.00103797 0.000951041 0.0670716 0.0616054 38 2757 47 6.95648e+06 347416 678818. 2348.85 6.22 0.329611 0.295313 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.045233 0.0406608 74 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30476 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 17.3 MiB 1.90 848 13606 5964 7217 425 56.0 MiB 0.19 0.00 4.62557 -150.036 -4.62557 4.62557 1.08 0.00117698 0.00107934 0.101642 0.0932917 48 2886 26 6.95648e+06 188184 865456. 2994.66 4.47 0.358922 0.322925 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0498587 0.0449603 82 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 17.3 MiB 1.67 797 15688 5451 7649 2588 56.0 MiB 0.21 0.00 4.33979 -134.933 -4.33979 4.33979 1.09 0.00124795 0.00114332 0.104228 0.0955471 46 2516 45 6.95648e+06 347416 828058. 2865.25 6.33 0.424445 0.381151 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.36 0.13 0.32 -1 -1 0.36 0.0537986 0.0485615 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30300 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 17.5 MiB 1.15 866 12951 5370 7312 269 56.1 MiB 0.19 0.00 4.06852 -135.722 -4.06852 4.06852 1.02 0.00125666 0.00115161 0.0889324 0.0815933 46 2675 25 6.95648e+06 332941 828058. 2865.25 4.01 0.361646 0.325031 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590119 0.0531668 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 17.0 MiB 0.99 535 10769 4485 5866 418 55.6 MiB 0.13 0.00 3.76076 -107.124 -3.76076 3.76076 1.19 0.00094939 0.000871748 0.0683672 0.0627931 40 1903 31 6.95648e+06 173708 706193. 2443.58 2.64 0.284374 0.254344 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.035741 0.0320169 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30420 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 17.4 MiB 0.98 646 9676 4013 5115 548 56.1 MiB 0.14 0.00 4.36203 -132.758 -4.36203 4.36203 1.11 0.00115283 0.00107924 0.0766215 0.0702875 48 2052 23 6.95648e+06 202660 865456. 2994.66 3.24 0.346777 0.311679 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.053888 0.0485189 76 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17516 1 0.03 -1 -1 30300 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 17.4 MiB 1.70 811 10204 3614 5065 1525 56.0 MiB 0.15 0.00 4.885 -145.205 -4.885 4.885 1.09 0.0011462 0.00105137 0.074227 0.068194 48 2507 26 6.95648e+06 202660 865456. 2994.66 4.15 0.327154 0.293712 28354 207349 -1 2034 21 1699 2745 250883 55251 4.29192 4.29192 -147.488 -4.29192 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0482482 0.0435022 80 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30384 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 2.03 840 10509 4398 5789 322 56.0 MiB 0.15 0.00 5.54805 -153.523 -5.54805 5.54805 1.12 0.00113343 0.00103975 0.0765039 0.0702187 40 2695 24 6.95648e+06 202660 706193. 2443.58 4.99 0.32664 0.293133 26914 176310 -1 2048 21 1310 1986 181257 39768 4.92101 4.92101 -156.505 -4.92101 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0475739 0.042824 79 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17508 1 0.03 -1 -1 30376 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 17.5 MiB 1.76 981 8543 2209 4916 1418 56.1 MiB 0.12 0.00 4.87546 -153.661 -4.87546 4.87546 1.10 0.00120241 0.00110282 0.0603805 0.0554264 38 2411 22 6.95648e+06 303989 678818. 2348.85 3.83 0.317556 0.284443 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0442546 0.039874 74 83 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 17.4 MiB 1.21 757 8390 3202 4298 890 56.0 MiB 0.13 0.00 4.41913 -136.437 -4.41913 4.41913 1.09 0.00119882 0.00109885 0.0650814 0.0597548 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.95 0.331842 0.297739 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.052834 0.0476342 72 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17636 1 0.04 -1 -1 30392 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 17.3 MiB 1.32 676 7412 2307 3688 1417 56.0 MiB 0.11 0.00 4.03938 -124.354 -4.03938 4.03938 1.08 0.00119631 0.00109615 0.0578445 0.0530584 40 1915 29 6.95648e+06 231611 706193. 2443.58 3.54 0.326431 0.292341 26914 176310 -1 1850 28 1578 2394 351685 123617 3.69672 3.69672 -129.056 -3.69672 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0639463 0.0573829 73 85 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17412 1 0.03 -1 -1 30376 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 17.1 MiB 0.80 565 8134 3323 4613 198 55.6 MiB 0.10 0.00 3.56099 -106.975 -3.56099 3.56099 1.09 0.000883987 0.000811205 0.0489428 0.0449373 38 2071 30 6.95648e+06 144757 678818. 2348.85 3.63 0.249504 0.222903 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0355494 0.0318485 53 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17852 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 17.6 MiB 3.39 780 14679 6171 7995 513 56.2 MiB 0.19 0.00 4.81946 -134.729 -4.81946 4.81946 1.10 0.00121332 0.00111195 0.0965315 0.0884873 52 2232 23 6.95648e+06 332941 926341. 3205.33 3.01 0.35837 0.321984 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.39 0.11 0.38 -1 -1 0.39 0.0550173 0.0495372 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17872 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 17.7 MiB 0.86 707 10672 3433 5510 1729 56.3 MiB 0.16 0.00 4.24958 -138.057 -4.24958 4.24958 1.09 0.00129493 0.00118778 0.087663 0.0804307 46 2101 39 6.95648e+06 188184 828058. 2865.25 3.80 0.402387 0.360858 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0523334 0.0472269 78 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17436 1 0.03 -1 -1 30168 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 17.0 MiB 1.50 678 11925 5137 6457 331 55.6 MiB 0.14 0.00 4.05037 -122.042 -4.05037 4.05037 1.09 0.000938878 0.000860386 0.072129 0.0661232 44 1982 25 6.95648e+06 159232 787024. 2723.27 2.43 0.25153 0.224728 27778 195446 -1 1574 22 1167 1476 132878 28622 3.52322 3.52322 -118.138 -3.52322 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0405339 0.0363221 68 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30400 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.8 MiB 1.00 478 11916 5026 6437 453 55.4 MiB 0.13 0.00 3.32523 -101.355 -3.32523 3.32523 1.09 0.000883415 0.000810612 0.0683721 0.0627105 44 1783 23 6.95648e+06 188184 787024. 2723.27 2.61 0.256569 0.229578 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0414969 0.0371061 57 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 17.5 MiB 1.60 850 12416 5241 6727 448 56.2 MiB 0.17 0.00 4.62707 -149.564 -4.62707 4.62707 1.11 0.00117809 0.00108082 0.0903788 0.0829801 46 2722 26 6.95648e+06 217135 828058. 2865.25 4.61 0.356704 0.320713 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.38 0.12 0.30 -1 -1 0.38 0.0502186 0.0452942 85 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 17.5 MiB 1.18 1128 10536 3281 5855 1400 56.1 MiB 0.15 0.00 4.81844 -154.124 -4.81844 4.81844 1.08 0.00116853 0.00107128 0.0774018 0.0709833 38 3024 27 6.95648e+06 202660 678818. 2348.85 5.51 0.342665 0.307099 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.29 0.18 0.27 -1 -1 0.29 0.0626994 0.0563686 82 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.15 17392 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.5 MiB 0.43 843 11456 4360 5763 1333 56.2 MiB 0.17 0.00 4.93982 -142.75 -4.93982 4.93982 1.09 0.00121246 0.00111341 0.0832551 0.0765576 46 2871 42 6.95648e+06 246087 828058. 2865.25 4.66 0.297255 0.266845 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0555244 0.0501586 83 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30040 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 17.6 MiB 0.95 630 11063 3050 5652 2361 56.1 MiB 0.14 0.00 3.41127 -97.5363 -3.41127 3.41127 1.11 0.00104576 0.000958059 0.068019 0.0624326 40 1835 26 6.95648e+06 303989 706193. 2443.58 2.62 0.296718 0.265495 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045772 0.0410814 69 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30636 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 17.1 MiB 0.46 487 8585 3718 4335 532 55.6 MiB 0.10 0.00 2.94405 -89.6154 -2.94405 2.94405 1.11 0.000876429 0.000803212 0.0519683 0.0476986 38 1494 30 6.95648e+06 202660 678818. 2348.85 2.58 0.246152 0.219112 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0379831 0.0339595 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17916 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 17.8 MiB 1.30 1018 15904 6884 8410 610 56.3 MiB 0.26 0.00 3.84665 -134.608 -3.84665 3.84665 1.14 0.00137228 0.00125846 0.131017 0.120335 50 3513 31 6.95648e+06 231611 902133. 3121.57 3.52 0.444971 0.401173 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.35 0.16 0.35 -1 -1 0.35 0.0623723 0.0562811 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30380 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 4.90 805 13026 5515 7018 493 55.9 MiB 0.19 0.00 5.43776 -152.039 -5.43776 5.43776 1.10 0.00118843 0.0010893 0.0967088 0.0887055 46 2740 36 6.95648e+06 217135 828058. 2865.25 5.49 0.377782 0.339252 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0545526 0.0491191 82 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30420 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 17.3 MiB 3.68 636 10029 4132 5585 312 55.8 MiB 0.13 0.00 3.67834 -124.027 -3.67834 3.67834 1.09 0.00107495 0.000984172 0.0713454 0.0653909 48 2185 28 6.95648e+06 159232 865456. 2994.66 3.72 0.289851 0.259043 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0417897 0.0375887 70 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17576 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 17.4 MiB 0.37 731 15206 6549 8090 567 55.9 MiB 0.19 0.00 4.25273 -121.678 -4.25273 4.25273 1.09 0.00110853 0.00101627 0.0921259 0.084481 48 2298 32 6.95648e+06 318465 865456. 2994.66 3.26 0.346878 0.311504 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0481356 0.0433031 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17700 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 0.99 751 14323 4212 7223 2888 56.1 MiB 0.18 0.00 4.42633 -128.985 -4.42633 4.42633 1.09 0.0012272 0.00112503 0.0938174 0.0860768 40 2622 38 6.95648e+06 361892 706193. 2443.58 3.93 0.38717 0.34791 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0518558 0.0467437 83 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30376 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 17.3 MiB 1.05 713 11034 4424 5642 968 55.8 MiB 0.14 0.00 3.35027 -102.373 -3.35027 3.35027 1.08 0.00107221 0.000982327 0.0745116 0.0683051 38 2733 50 6.95648e+06 231611 678818. 2348.85 6.13 0.367384 0.328765 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0487982 0.0437944 68 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17840 1 0.03 -1 -1 30472 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 17.6 MiB 1.56 907 11200 3286 6600 1314 56.2 MiB 0.17 0.00 4.64467 -151.435 -4.64467 4.64467 1.14 0.00118194 0.00108473 0.0832924 0.0765315 48 2706 42 6.95648e+06 202660 865456. 2994.66 4.93 0.372139 0.334416 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0544481 0.0491308 88 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 17.4 MiB 1.11 748 12542 5225 6709 608 56.1 MiB 0.17 0.00 4.47033 -145.191 -4.47033 4.47033 1.08 0.00125507 0.00115038 0.0920551 0.0844718 48 2531 41 6.95648e+06 260562 865456. 2994.66 3.80 0.393564 0.353799 28354 207349 -1 1938 24 1584 2112 216788 50249 4.07261 4.07261 -144.703 -4.07261 0 0 1.05005e+06 3633.38 0.36 0.14 0.35 -1 -1 0.36 0.0594679 0.0536043 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30284 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 17.1 MiB 3.98 466 10105 4186 5463 456 55.6 MiB 0.12 0.00 3.92822 -103.3 -3.92822 3.92822 0.95 0.000919452 0.000842416 0.0640136 0.0587391 36 1523 22 6.95648e+06 173708 648988. 2245.63 2.69 0.264377 0.23607 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.28 0.07 0.25 -1 -1 0.28 0.0298825 0.02687 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30364 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 17.1 MiB 1.19 606 9397 3361 4720 1316 55.8 MiB 0.12 0.00 3.68935 -126.523 -3.68935 3.68935 1.09 0.00101991 0.000933583 0.0636679 0.0583474 42 2317 35 6.95648e+06 159232 744469. 2576.02 2.99 0.301012 0.268162 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.32 0.10 0.30 -1 -1 0.32 0.0431345 0.038727 64 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17796 1 0.03 -1 -1 30368 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 17.3 MiB 0.91 743 11993 4026 5805 2162 55.8 MiB 0.16 0.00 4.14331 -121.523 -4.14331 4.14331 1.11 0.00111068 0.00101794 0.0742917 0.0682447 44 2597 32 6.95648e+06 332941 787024. 2723.27 3.96 0.328772 0.294755 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.34 0.10 0.31 -1 -1 0.34 0.0467542 0.0420978 77 33 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17264 1 0.03 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 17.0 MiB 1.49 616 10459 4329 5659 471 55.7 MiB 0.13 0.00 4.04737 -116.055 -4.04737 4.04737 1.09 0.000905324 0.000830727 0.0637632 0.0585107 42 2143 50 6.95648e+06 188184 744469. 2576.02 2.48 0.295414 0.263425 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0394326 0.0352998 67 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29984 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 16.9 MiB 1.46 561 11321 4813 6209 299 55.5 MiB 0.11 0.00 3.85356 -111.135 -3.85356 3.85356 1.05 0.000955912 0.000876077 0.0505085 0.0461373 40 1771 25 6.95648e+06 130281 706193. 2443.58 2.36 0.262839 0.234375 26914 176310 -1 1463 37 1552 2418 363039 142367 3.13687 3.13687 -111.746 -3.13687 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0644517 0.0574254 56 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30108 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 17.5 MiB 1.21 696 13719 4819 6392 2508 56.1 MiB 0.18 0.00 3.46983 -115.227 -3.46983 3.46983 1.10 0.00137426 0.00127119 0.0905152 0.0830154 44 2085 27 6.95648e+06 347416 787024. 2723.27 2.45 0.362565 0.325758 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0557661 0.050212 79 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30368 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 17.1 MiB 2.46 587 9081 3433 3891 1757 55.7 MiB 0.11 0.00 3.99537 -118.981 -3.99537 3.99537 1.08 0.000909838 0.000833664 0.0549144 0.0503463 44 2307 34 6.95648e+06 173708 787024. 2723.27 2.99 0.264166 0.235603 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.038077 0.0340616 64 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17592 1 0.03 -1 -1 30008 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 17.6 MiB 1.66 827 13505 5541 6681 1283 56.2 MiB 0.17 0.00 3.208 -113.036 -3.208 3.208 1.11 0.00114929 0.00105192 0.0854299 0.0783253 40 2180 23 6.95648e+06 318465 706193. 2443.58 3.14 0.329238 0.295539 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0503471 0.0452339 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30436 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 17.6 MiB 2.27 717 9706 3985 5340 381 56.2 MiB 0.14 0.00 3.995 -134.818 -3.995 3.995 1.09 0.00125359 0.00114777 0.076794 0.0703888 40 2180 49 6.95648e+06 217135 706193. 2443.58 3.39 0.403073 0.360898 26914 176310 -1 1785 21 1473 1992 159433 36664 3.82681 3.82681 -135.82 -3.82681 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0517146 0.0465312 73 91 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 1.29 546 10149 3579 4930 1640 55.8 MiB 0.13 0.00 2.9023 -96.8242 -2.9023 2.9023 1.10 0.00100016 0.00091422 0.0686568 0.0628641 46 1638 37 6.95648e+06 144757 828058. 2865.25 3.26 0.302543 0.270103 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.38 0.11 0.32 -1 -1 0.38 0.0394728 0.0347581 57 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17408 1 0.03 -1 -1 30424 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 17.2 MiB 1.42 688 11293 4712 6328 253 55.7 MiB 0.15 0.00 4.09973 -130.941 -4.09973 4.09973 1.08 0.000999036 0.000914508 0.0750596 0.0688391 46 2135 28 6.95648e+06 159232 828058. 2865.25 3.13 0.296164 0.265055 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0449834 0.0403061 70 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.17 17864 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 17.4 MiB 2.08 759 11034 4566 6063 405 56.0 MiB 0.15 0.00 4.18668 -129.57 -4.18668 4.18668 1.09 0.000964582 0.000873964 0.0748996 0.0687178 40 2605 27 6.95648e+06 202660 706193. 2443.58 4.44 0.318767 0.285771 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.33 0.18 0.26 -1 -1 0.33 0.0586306 0.0526466 79 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30208 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 17.5 MiB 1.27 716 10228 3612 4706 1910 56.0 MiB 0.13 0.00 4.16289 -113.847 -4.16289 4.16289 1.07 0.00107047 0.000980464 0.0646694 0.0593065 40 2239 28 6.95648e+06 303989 706193. 2443.58 3.01 0.304277 0.272348 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.30 0.11 0.26 -1 -1 0.30 0.0461976 0.0415766 71 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.21 17608 1 0.03 -1 -1 30388 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 17.7 MiB 1.49 846 13524 5903 7163 458 56.3 MiB 0.19 0.00 4.885 -157.826 -4.885 4.885 1.08 0.00127097 0.0011646 0.107309 0.0984621 56 2698 26 6.95648e+06 202660 973134. 3367.25 3.58 0.389281 0.350307 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.39 0.17 0.41 -1 -1 0.39 0.060377 0.0544023 89 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17104 1 0.02 -1 -1 30372 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 17.0 MiB 1.31 501 12076 4244 5318 2514 55.5 MiB 0.13 0.00 3.74884 -94.0057 -3.74884 3.74884 1.10 0.000833253 0.000764491 0.0658305 0.0604026 40 1910 34 6.95648e+06 188184 706193. 2443.58 2.89 0.261615 0.233375 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0351343 0.0313908 54 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 17.4 MiB 1.27 1008 14543 5389 7197 1957 56.1 MiB 0.20 0.00 3.70954 -138.278 -3.70954 3.70954 1.10 0.00130489 0.00119261 0.100288 0.091719 40 2412 20 6.95648e+06 361892 706193. 2443.58 3.48 0.367796 0.330629 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0499773 0.0451086 81 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 2.99 599 11389 4446 5401 1542 56.0 MiB 0.16 0.00 2.96105 -112.244 -2.96105 2.96105 1.10 0.00119149 0.00109045 0.0908164 0.0831828 38 1957 49 6.95648e+06 144757 678818. 2348.85 4.38 0.400802 0.358812 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0495094 0.044469 61 96 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 17.4 MiB 1.40 728 11993 4280 5583 2130 56.0 MiB 0.16 0.00 4.11943 -125.672 -4.11943 4.11943 1.11 0.00118551 0.00108614 0.0784337 0.0719637 44 2660 42 6.95648e+06 318465 787024. 2723.27 3.26 0.379425 0.340311 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0530541 0.0477175 75 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17632 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 1.89 1133 13599 5570 7048 981 56.2 MiB 0.22 0.00 6.01533 -177.28 -6.01533 6.01533 1.09 0.00133345 0.00122485 0.111045 0.102039 46 3137 40 6.95648e+06 217135 828058. 2865.25 6.65 0.427603 0.385023 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0584248 0.052825 95 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17644 1 0.02 -1 -1 30308 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 16.8 MiB 2.31 506 10409 4642 5419 348 55.5 MiB 0.11 0.00 2.68965 -94.6691 -2.68965 2.68965 1.08 0.000772212 0.000706239 0.0551067 0.0504455 38 1556 24 6.95648e+06 159232 678818. 2348.85 2.63 0.222396 0.197806 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.34 0.07 0.27 -1 -1 0.34 0.0300919 0.0268673 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30288 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 17.1 MiB 1.31 453 9649 4016 5181 452 55.7 MiB 0.12 0.00 3.70034 -111.62 -3.70034 3.70034 1.09 0.000974133 0.000892603 0.064559 0.0592084 46 1640 50 6.95648e+06 159232 828058. 2865.25 3.47 0.320463 0.286279 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0393906 0.0352997 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17380 1 0.03 -1 -1 30228 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 16.9 MiB 0.45 657 10304 4396 5657 251 55.7 MiB 0.13 0.00 3.0756 -108.291 -3.0756 3.0756 1.08 0.00100661 0.000922687 0.0696589 0.0638873 48 2011 23 6.95648e+06 144757 865456. 2994.66 3.54 0.285065 0.255035 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.35 0.12 0.34 -1 -1 0.35 0.0462545 0.0414312 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17428 1 0.03 -1 -1 30176 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 17.0 MiB 0.45 433 7975 3255 4078 642 55.5 MiB 0.08 0.00 3.29759 -76.2304 -3.29759 3.29759 1.13 0.000753625 0.000689958 0.0395875 0.0362594 38 1530 37 6.95648e+06 260562 678818. 2348.85 3.04 0.217404 0.192931 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0336915 0.0300313 53 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30436 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 17.5 MiB 1.82 736 10796 3697 5176 1923 56.0 MiB 0.16 0.00 3.75962 -125.032 -3.75962 3.75962 1.01 0.0012117 0.00110948 0.0854433 0.0783007 46 3469 47 6.95648e+06 173708 828058. 2865.25 8.41 0.398627 0.357097 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0617987 0.0555502 73 72 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30268 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 17.6 MiB 1.28 761 10744 4472 5806 466 56.2 MiB 0.16 0.00 4.07648 -139.886 -4.07648 4.07648 1.14 0.00129514 0.00118517 0.0843506 0.0773215 40 2524 30 6.95648e+06 246087 706193. 2443.58 4.26 0.380393 0.341417 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.06087 0.0548349 80 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 820 12416 4576 5562 2278 55.8 MiB 0.17 0.00 5.01635 -146.768 -5.01635 5.01635 1.09 0.00116874 0.00107166 0.0893847 0.0819985 46 2906 37 6.99608e+06 220735 828058. 2865.25 5.17 0.375269 0.336895 28066 200906 -1 1988 21 1560 2181 170932 41761 4.40451 4.40451 -147.033 -4.40451 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0495774 0.0446773 88 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30312 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 1.32 962 11233 3707 5934 1592 55.8 MiB 0.18 0.00 5.03284 -151.156 -5.03284 5.03284 1.08 0.00119035 0.00109136 0.0840458 0.0771552 48 2930 36 6.99608e+06 250167 865456. 2994.66 4.23 0.371377 0.33346 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0500101 0.045115 99 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.10 17908 1 0.03 -1 -1 30280 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 17.4 MiB 0.72 839 12196 5162 6681 353 55.8 MiB 0.15 0.00 3.55379 -113.123 -3.55379 3.55379 1.09 0.00102541 0.000940676 0.0783886 0.0718986 42 2585 35 6.99608e+06 206020 744469. 2576.02 3.52 0.321558 0.287606 27202 183097 -1 1882 23 1419 1986 154978 35763 3.65286 3.65286 -116.181 -3.65286 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0461369 0.0413714 76 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30280 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 17.2 MiB 1.19 700 12302 4830 6041 1431 55.6 MiB 0.16 0.00 4.05128 -116.185 -4.05128 4.05128 1.11 0.00105042 0.000963429 0.0823621 0.075584 44 2703 50 6.99608e+06 235451 787024. 2723.27 3.28 0.358573 0.320864 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.29 0.05 0.17 -1 -1 0.29 0.0191014 0.017026 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 903 10204 4241 5732 231 55.8 MiB 0.15 0.00 4.44731 -141.413 -4.44731 4.44731 1.11 0.00114741 0.0010527 0.0740626 0.0680264 40 3203 32 6.99608e+06 206020 706193. 2443.58 5.31 0.333689 0.299309 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0569935 0.0512208 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17936 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 17.4 MiB 2.68 903 12506 4545 6575 1386 56.2 MiB 0.18 0.00 3.38924 -119.322 -3.38924 3.38924 1.10 0.00121274 0.00111211 0.0901919 0.0827309 50 2568 40 6.99608e+06 250167 902133. 3121.57 4.03 0.384621 0.34519 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0472071 0.0426398 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30588 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 1.38 527 10769 4406 5481 882 55.4 MiB 0.13 0.00 3.89582 -110.808 -3.89582 3.89582 1.12 0.000891094 0.000817424 0.0640821 0.0587866 36 2292 38 6.99608e+06 220735 648988. 2245.63 4.63 0.281518 0.250891 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0370772 0.0331809 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30240 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.9 MiB 0.33 664 11203 3028 6067 2108 55.5 MiB 0.13 0.00 2.75465 -88.1636 -2.75465 2.75465 1.11 0.000966959 0.000886878 0.0586947 0.0538701 40 2155 26 6.99608e+06 367892 706193. 2443.58 3.38 0.265321 0.237213 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0388002 0.0347929 69 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30200 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 17.0 MiB 0.95 886 12302 5141 6872 289 55.6 MiB 0.16 0.00 3.35914 -124.887 -3.35914 3.35914 0.98 0.00103421 0.000947269 0.0810853 0.0742738 38 2606 25 6.99608e+06 206020 678818. 2348.85 5.03 0.311476 0.278693 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0500686 0.0448288 87 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30080 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 17.3 MiB 0.84 886 11650 3739 6142 1769 55.7 MiB 0.15 0.00 3.93292 -137.573 -3.93292 3.93292 1.09 0.00101657 0.000932692 0.0753531 0.0691511 40 2221 25 6.99608e+06 191304 706193. 2443.58 2.88 0.299312 0.268276 26914 176310 -1 1877 19 1373 1734 139655 29281 3.35756 3.35756 -128.359 -3.35756 0 0 926341. 3205.33 0.32 0.11 0.28 -1 -1 0.32 0.0445834 0.0403521 75 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17872 1 0.04 -1 -1 30364 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 17.5 MiB 0.62 675 11436 3956 5372 2108 56.0 MiB 0.14 0.00 3.86033 -123.728 -3.86033 3.86033 1.05 0.000992876 0.000909068 0.0739712 0.0677952 44 2557 34 6.99608e+06 206020 787024. 2723.27 3.19 0.286218 0.255536 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0450886 0.040335 83 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30076 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 17.0 MiB 0.67 784 8133 1910 6031 192 55.6 MiB 0.11 0.00 3.27288 -116.653 -3.27288 3.27288 1.09 0.000944101 0.000865525 0.0513454 0.0471193 38 2394 39 6.99608e+06 161872 678818. 2348.85 4.16 0.283576 0.252822 26626 170182 -1 1832 20 1203 1524 136412 27823 2.83937 2.83937 -113.586 -2.83937 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0381472 0.0341717 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 822 13937 5978 7482 477 55.8 MiB 0.20 0.00 3.95082 -133.749 -3.95082 3.95082 1.08 0.00115936 0.00106343 0.0989244 0.0908145 44 2826 40 6.99608e+06 220735 787024. 2723.27 3.30 0.384786 0.345725 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0511402 0.0461001 87 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 17.4 MiB 1.39 975 9706 2651 5494 1561 56.2 MiB 0.16 0.00 4.79397 -141.28 -4.79397 4.79397 1.09 0.00119637 0.00109755 0.0700813 0.0643681 40 3303 38 6.99608e+06 250167 706193. 2443.58 6.45 0.363303 0.325871 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0543763 0.0489406 97 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17400 1 0.02 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 16.8 MiB 2.53 630 8909 3655 4893 361 55.3 MiB 0.11 0.00 3.0564 -89.3526 -3.0564 3.0564 1.11 0.000862903 0.000790835 0.0534227 0.0489963 38 2055 28 6.99608e+06 191304 678818. 2348.85 3.40 0.246751 0.219611 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0346589 0.0310076 64 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 17.5 MiB 1.31 999 13840 5885 7630 325 56.1 MiB 0.20 0.00 3.63599 -124.523 -3.63599 3.63599 1.01 0.00121015 0.00110823 0.100624 0.0922221 42 3382 43 6.99608e+06 235451 744469. 2576.02 3.42 0.402264 0.361057 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.31 0.13 0.29 -1 -1 0.31 0.0523362 0.047154 96 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30232 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 17.3 MiB 0.75 791 13092 5076 6583 1433 55.9 MiB 0.18 0.00 4.34151 -134.806 -4.34151 4.34151 1.13 0.0011392 0.00104466 0.0916082 0.0841119 46 2501 32 6.99608e+06 220735 828058. 2865.25 3.88 0.35918 0.322505 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0423246 0.0381811 84 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 17.3 MiB 0.78 778 13261 3730 7601 1930 55.9 MiB 0.18 0.00 3.17504 -117.557 -3.17504 3.17504 1.18 0.00105468 0.00096568 0.0860526 0.0789544 50 2131 33 6.99608e+06 220735 902133. 3121.57 4.01 0.332075 0.29728 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.41 0.11 0.37 -1 -1 0.41 0.0453674 0.0407795 89 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.19 17408 1 0.02 -1 -1 30264 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 16.6 MiB 1.55 513 10949 4743 5895 311 55.2 MiB 0.11 0.00 2.33546 -88.3817 -2.33546 2.33546 1.09 0.000767063 0.000701638 0.0585085 0.0535523 40 1324 27 6.99608e+06 147157 706193. 2443.58 2.11 0.225516 0.200701 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.0346807 0.0308741 52 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17720 1 0.03 -1 -1 30356 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 17.1 MiB 1.97 843 8236 2227 5366 643 55.8 MiB 0.11 0.00 3.78247 -126.288 -3.78247 3.78247 1.08 0.000995929 0.000912087 0.0537636 0.0493085 38 2536 29 6.99608e+06 191304 678818. 2348.85 3.48 0.280087 0.250324 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0193745 0.0172233 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 17.3 MiB 1.29 802 15273 5455 7440 2378 55.8 MiB 0.20 0.00 3.98218 -132.203 -3.98218 3.98218 1.09 0.00115653 0.00105794 0.101521 0.0930889 44 2430 42 6.99608e+06 294314 787024. 2723.27 2.88 0.385563 0.346159 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0508699 0.04574 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30240 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 17.2 MiB 2.11 1225 15044 5236 8229 1579 55.9 MiB 0.22 0.00 4.6726 -146.803 -4.6726 4.6726 1.09 0.00121437 0.00111336 0.109981 0.100943 40 3256 42 6.99608e+06 235451 706193. 2443.58 6.70 0.407575 0.366227 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0533984 0.0481184 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.16 17608 1 0.02 -1 -1 30688 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 16.7 MiB 1.81 422 8539 3493 4523 523 55.3 MiB 0.09 0.00 2.7298 -77.3475 -2.7298 2.7298 1.09 0.000656141 0.000599667 0.0408472 0.0373821 38 1230 26 6.99608e+06 191304 678818. 2348.85 2.13 0.184104 0.16329 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0235006 0.02101 53 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30260 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 16.9 MiB 0.85 692 10050 3569 4878 1603 55.6 MiB 0.14 0.00 4.56174 -113.848 -4.56174 4.56174 1.18 0.00100624 0.000922884 0.0639242 0.058781 40 2097 25 6.99608e+06 220735 706193. 2443.58 3.02 0.286842 0.25746 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0456952 0.0410127 66 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.09 16932 1 0.03 -1 -1 30160 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.4 MiB 0.20 399 10055 4241 5582 232 54.9 MiB 0.09 0.00 2.06111 -67.7592 -2.06111 2.06111 1.08 0.000634934 0.000579192 0.0446507 0.0407579 36 1381 35 6.99608e+06 117725 648988. 2245.63 2.47 0.195011 0.172512 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.28 0.05 0.22 -1 -1 0.28 0.0236036 0.0210377 42 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17564 1 0.03 -1 -1 30172 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 17.0 MiB 1.10 805 13358 5696 7249 413 55.6 MiB 0.17 0.00 4.47086 -121.677 -4.47086 4.47086 1.08 0.00103395 0.000948559 0.0861858 0.0790514 38 2634 33 6.99608e+06 206020 678818. 2348.85 4.38 0.325438 0.29176 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.29 0.09 0.22 -1 -1 0.29 0.0385598 0.0347121 73 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.08 17060 1 0.04 -1 -1 30580 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.1 MiB 0.46 715 11617 3653 5870 2094 55.8 MiB 0.15 0.00 2.89821 -97.4108 -2.89821 2.89821 1.08 0.00104907 0.000963546 0.0686035 0.0630324 40 2334 43 6.99608e+06 309029 706193. 2443.58 3.24 0.327181 0.29323 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045317 0.0407505 74 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30240 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 17.4 MiB 1.45 800 6839 1729 4140 970 56.0 MiB 0.11 0.00 4.20669 -125.419 -4.20669 4.20669 1.09 0.00112839 0.00103503 0.0489158 0.0449162 46 2866 37 6.99608e+06 220735 828058. 2865.25 6.37 0.315661 0.282182 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590646 0.053085 87 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30240 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 17.1 MiB 2.15 688 11116 4644 6232 240 55.7 MiB 0.13 0.00 3.13575 -107.33 -3.13575 3.13575 1.09 0.000968622 0.00088708 0.0700065 0.0641887 40 2069 25 6.99608e+06 176588 706193. 2443.58 2.38 0.279098 0.249439 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.038049 0.0340981 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30148 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 16.7 MiB 1.29 579 8876 3271 4297 1308 55.4 MiB 0.10 0.00 3.70857 -107.816 -3.70857 3.70857 1.08 0.000900638 0.000825327 0.0524497 0.0480736 46 2274 40 6.99608e+06 206020 828058. 2865.25 4.83 0.278434 0.247977 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0333422 0.0298833 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 17.1 MiB 0.77 581 9540 3893 5214 433 55.7 MiB 0.12 0.00 3.25804 -101.918 -3.25804 3.25804 0.97 0.000898651 0.000822994 0.0545981 0.050083 40 1989 36 6.99608e+06 264882 706193. 2443.58 3.20 0.271878 0.242283 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0375429 0.0335645 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.12 17196 1 0.03 -1 -1 30416 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.1 MiB 0.35 677 11234 4696 6284 254 55.5 MiB 0.13 0.00 3.31833 -109.934 -3.31833 3.31833 1.09 0.00090616 0.000830501 0.0675607 0.0619478 38 2069 49 6.99608e+06 147157 678818. 2348.85 3.46 0.298149 0.266498 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0396016 0.0354334 58 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.17 17640 1 0.02 -1 -1 30160 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 17.0 MiB 0.84 656 7596 1857 5260 479 55.6 MiB 0.10 0.00 3.30918 -105.476 -3.30918 3.30918 1.11 0.00093345 0.000855632 0.0471981 0.0433134 36 2831 44 6.99608e+06 191304 648988. 2245.63 6.73 0.286798 0.255476 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0402396 0.0360169 69 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17500 1 0.03 -1 -1 30368 -1 -1 15 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 17.1 MiB 2.30 919 9036 2362 6094 580 55.5 MiB 0.12 0.00 2.93125 -106.214 -2.93125 2.93125 1.12 0.000971264 0.00089046 0.0573227 0.052576 38 2275 29 6.99608e+06 220735 678818. 2348.85 3.32 0.276748 0.246972 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0391056 0.0350672 77 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30436 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 1.12 980 13324 5630 7408 286 55.9 MiB 0.20 0.00 4.30703 -125.875 -4.30703 4.30703 1.11 0.00126727 0.00116613 0.102051 0.0938897 48 2769 27 6.99608e+06 235451 865456. 2994.66 3.52 0.38569 0.347942 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.35 0.13 0.35 -1 -1 0.35 0.0529057 0.0477849 92 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30224 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 17.7 MiB 1.43 1014 12683 4657 5804 2222 56.2 MiB 0.20 0.00 4.21676 -146.737 -4.21676 4.21676 1.08 0.00126951 0.00116301 0.0929641 0.0852688 40 3377 27 6.99608e+06 279598 706193. 2443.58 4.94 0.38451 0.34573 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.064636 0.0582408 106 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30088 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 16.7 MiB 1.17 880 9374 3265 4936 1173 55.4 MiB 0.12 0.00 3.62727 -120.557 -3.62727 3.62727 1.09 0.000952014 0.000872331 0.0602836 0.0553176 38 2274 42 6.99608e+06 161872 678818. 2348.85 3.26 0.293467 0.262042 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0400129 0.0358442 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30556 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 17.3 MiB 1.48 969 14528 6235 7667 626 56.0 MiB 0.21 0.00 3.54759 -121.928 -3.54759 3.54759 1.10 0.00120949 0.00111002 0.105977 0.0971821 44 3091 40 6.99608e+06 250167 787024. 2723.27 4.01 0.398127 0.357628 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0562695 0.0507761 99 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30392 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 17.6 MiB 1.49 989 9196 3129 4406 1661 56.2 MiB 0.15 0.00 5.24281 -163.942 -5.24281 5.24281 1.10 0.00123061 0.00112598 0.0699073 0.0641599 46 3107 34 6.99608e+06 250167 828058. 2865.25 5.20 0.361576 0.324569 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0581667 0.0523891 104 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 17.8 MiB 2.95 930 9881 4037 5524 320 56.2 MiB 0.16 0.00 5.08213 -159.731 -5.08213 5.08213 1.11 0.00124533 0.00114165 0.0743497 0.0682635 44 3191 49 6.99608e+06 264882 787024. 2723.27 4.39 0.400266 0.359057 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.054301 0.0489417 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30400 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 17.5 MiB 1.87 879 13768 5339 6393 2036 56.1 MiB 0.19 0.00 3.89582 -126.245 -3.89582 3.89582 1.09 0.00116363 0.00106779 0.097574 0.0895015 48 2742 24 6.99608e+06 235451 865456. 2994.66 3.61 0.360141 0.323779 28354 207349 -1 2238 24 1769 2292 241247 52052 3.50102 3.50102 -127.38 -3.50102 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0549586 0.0494918 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17288 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 16.9 MiB 0.96 818 11864 4957 6528 379 55.6 MiB 0.15 0.00 3.99218 -112.33 -3.99218 3.99218 1.09 0.00100284 0.000919504 0.0744651 0.0683375 40 2655 45 6.99608e+06 206020 706193. 2443.58 4.61 0.334533 0.299129 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.33 0.12 0.28 -1 -1 0.33 0.0442328 0.0397214 72 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18176 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 18.1 MiB 1.28 1337 8083 1871 5905 307 56.4 MiB 0.17 0.00 5.02 -170.696 -5.02 5.02 1.10 0.00147197 0.00134948 0.0684711 0.0629272 50 3572 29 6.99608e+06 309029 902133. 3121.57 3.49 0.402616 0.361669 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.37 0.16 0.36 -1 -1 0.37 0.0589189 0.0533183 129 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30188 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 16.9 MiB 2.79 589 8599 2844 4344 1411 55.4 MiB 0.10 0.00 3.01 -97.4254 -3.01 3.01 1.10 0.000898885 0.000823275 0.0525554 0.0481861 40 1560 21 6.99608e+06 161872 706193. 2443.58 2.67 0.243312 0.216867 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0394468 0.0352892 65 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30104 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 17.4 MiB 0.68 792 13524 5096 6588 1840 55.9 MiB 0.18 0.00 4.60267 -142.66 -4.60267 4.60267 1.08 0.00113429 0.00104082 0.0957584 0.0878898 52 2817 39 6.99608e+06 220735 926341. 3205.33 3.68 0.368232 0.330874 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0474881 0.0426995 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30212 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.28 1020 12416 4555 6119 1742 55.8 MiB 0.19 0.00 3.83208 -127.177 -3.83208 3.83208 1.08 0.00115347 0.00105825 0.0882807 0.080984 42 3450 36 6.99608e+06 220735 744469. 2576.02 3.76 0.361526 0.324612 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0445603 0.0401272 91 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.1 MiB 0.79 673 10228 2970 5232 2026 55.8 MiB 0.13 0.00 4.31309 -118.378 -4.31309 4.31309 1.11 0.00103263 0.000945688 0.0646994 0.0593547 40 2459 37 6.99608e+06 235451 706193. 2443.58 4.59 0.316072 0.283014 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0465719 0.0418284 68 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 17.4 MiB 1.25 915 11571 4863 6343 365 56.0 MiB 0.17 0.00 4.31005 -133.816 -4.31005 4.31005 1.12 0.00117065 0.00107413 0.0833371 0.076458 40 2850 30 6.99608e+06 220735 706193. 2443.58 3.73 0.348914 0.313136 26914 176310 -1 2174 25 1722 2282 317601 125270 3.58916 3.58916 -127.554 -3.58916 0 0 926341. 3205.33 0.27 0.10 0.15 -1 -1 0.27 0.0242714 0.0216238 90 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30356 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1099 13430 4920 6010 2500 55.8 MiB 0.19 0.00 3.65969 -129.38 -3.65969 3.65969 1.08 0.00119077 0.00109183 0.0980635 0.0899782 40 2995 22 6.99608e+06 220735 706193. 2443.58 3.90 0.361533 0.325046 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.30 0.34 0.28 -1 -1 0.30 0.0925555 0.0829523 92 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 17.6 MiB 2.17 1101 15216 5672 7066 2478 56.2 MiB 0.22 0.00 3.74401 -128.073 -3.74401 3.74401 1.08 0.00124125 0.00113795 0.114521 0.10502 38 3558 41 6.99608e+06 235451 678818. 2348.85 6.14 0.43815 0.393693 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0461544 0.041674 101 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17568 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 17.1 MiB 0.78 743 11034 4121 5253 1660 55.5 MiB 0.07 0.00 4.35583 -118.93 -4.35583 4.35583 0.74 0.000391567 0.000353726 0.0279571 0.025339 40 2999 39 6.99608e+06 206020 706193. 2443.58 3.79 0.220861 0.195956 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0478928 0.043031 74 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 17.1 MiB 1.75 793 9042 2962 4450 1630 55.7 MiB 0.12 0.00 4.21168 -126.242 -4.21168 4.21168 1.09 0.00108983 0.00100023 0.0632309 0.0580535 42 3421 45 6.99608e+06 191304 744469. 2576.02 3.21 0.338366 0.303031 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.27 0.06 0.15 -1 -1 0.27 0.0195276 0.0174397 81 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30356 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 17.4 MiB 0.90 950 10726 4120 5384 1222 56.1 MiB 0.16 0.00 4.31211 -136.261 -4.31211 4.31211 1.09 0.00121362 0.00111291 0.0804401 0.0737893 48 3520 36 6.99608e+06 235451 865456. 2994.66 5.83 0.375288 0.33705 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0828325 0.0742838 99 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 17.7 MiB 1.01 977 12980 5460 6998 522 56.2 MiB 0.21 0.00 3.94476 -129.858 -3.94476 3.94476 1.09 0.00124987 0.00114117 0.106732 0.097806 54 3499 42 6.99608e+06 235451 949917. 3286.91 4.59 0.411103 0.36916 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.38 0.15 0.39 -1 -1 0.38 0.0546679 0.0493078 104 77 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30012 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 0.61 645 10769 4489 5977 303 55.2 MiB 0.11 0.00 3.21628 -99.3334 -3.21628 3.21628 1.07 0.000538873 0.000484347 0.0570639 0.0521292 38 1991 25 6.99608e+06 147157 678818. 2348.85 3.46 0.256381 0.228311 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0366281 0.0327473 60 23 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17696 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 17.2 MiB 0.83 827 10726 4440 5997 289 55.8 MiB 0.15 0.00 4.06528 -146.791 -4.06528 4.06528 1.08 0.00111555 0.00102283 0.0739167 0.0678225 46 2656 31 6.99608e+06 220735 828058. 2865.25 3.65 0.327663 0.293158 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0446152 0.0400859 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 17.5 MiB 0.99 950 12808 5316 6896 596 56.2 MiB 0.19 0.00 4.80548 -149.393 -4.80548 4.80548 1.08 0.00129994 0.0011944 0.100511 0.0923199 50 3454 27 6.99608e+06 235451 902133. 3121.57 4.94 0.399299 0.359396 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.35 0.21 0.36 -1 -1 0.35 0.0736703 0.0664168 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 17.5 MiB 0.62 849 13599 4722 6429 2448 56.1 MiB 0.19 0.00 4.35389 -139.539 -4.35389 4.35389 1.10 0.0011492 0.00105445 0.0942326 0.0864396 38 2795 34 6.99608e+06 220735 678818. 2348.85 4.94 0.35892 0.322293 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0506264 0.0455936 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30268 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 16.8 MiB 1.23 640 11474 4735 6197 542 55.5 MiB 0.13 0.00 3.65345 -112.727 -3.65345 3.65345 1.10 0.000955561 0.000875764 0.0639956 0.0586762 48 1940 24 6.99608e+06 294314 865456. 2994.66 4.21 0.247241 0.220878 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0366172 0.0327963 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.14 17784 1 0.03 -1 -1 30344 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 17.6 MiB 1.59 1528 15924 5227 8931 1766 56.4 MiB 0.25 0.00 6.09323 -187.636 -6.09323 6.09323 1.09 0.00138279 0.00126636 0.129836 0.119254 40 4257 42 6.99608e+06 264882 706193. 2443.58 7.75 0.481012 0.432823 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.30 0.20 0.28 -1 -1 0.30 0.0641215 0.0578373 116 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 0.63 768 13524 5053 6623 1848 56.0 MiB 0.18 0.00 4.76624 -142.397 -4.76624 4.76624 1.09 0.00114551 0.00104876 0.0970901 0.0890131 46 2785 27 6.99608e+06 206020 828058. 2865.25 4.45 0.347422 0.312002 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0470707 0.042489 83 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.14 17140 1 0.03 -1 -1 30344 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.6 MiB 0.25 516 10672 4080 5320 1272 55.3 MiB 0.12 0.00 2.96036 -91.6204 -2.96036 2.96036 1.11 0.000839607 0.000769499 0.0577388 0.0530075 40 1546 38 6.99608e+06 191304 706193. 2443.58 3.13 0.256129 0.228307 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.30 0.07 0.28 -1 -1 0.30 0.0301785 0.0269545 51 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.18 17828 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 17.4 MiB 1.22 903 15560 6646 7056 1858 55.9 MiB 0.20 0.00 4.75332 -131.249 -4.75332 4.75332 1.09 0.00118571 0.0010876 0.11038 0.101283 48 2982 46 6.99608e+06 235451 865456. 2994.66 5.22 0.41691 0.375047 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0530848 0.0478312 85 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30220 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.8 MiB 0.81 493 9540 2740 5276 1524 55.3 MiB 0.11 0.00 2.966 -97.1273 -2.966 2.966 1.08 0.000889742 0.000815883 0.0535904 0.049189 38 1851 39 6.99608e+06 206020 678818. 2348.85 3.35 0.26619 0.237492 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0393354 0.0350643 57 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17384 1 0.03 -1 -1 30344 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 16.8 MiB 0.60 768 9081 3737 5047 297 55.5 MiB 0.12 0.00 3.80347 -118.428 -3.80347 3.80347 1.08 0.000953003 0.000873799 0.0575279 0.0528044 38 2446 44 6.99608e+06 191304 678818. 2348.85 4.64 0.297439 0.265436 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.34 0.11 0.26 -1 -1 0.34 0.041202 0.0369383 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30492 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 17.4 MiB 1.66 956 12416 5112 6468 836 56.1 MiB 0.18 0.00 4.12666 -129.088 -4.12666 4.12666 1.08 0.00116004 0.00106413 0.0884212 0.0811378 38 3346 46 6.99608e+06 264882 678818. 2348.85 6.42 0.384561 0.344954 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0508516 0.0457415 97 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 974 13599 5339 6861 1399 56.0 MiB 0.20 0.00 4.25698 -140.266 -4.25698 4.25698 1.10 0.00118401 0.00108566 0.098286 0.0901365 38 3070 41 6.99608e+06 220735 678818. 2348.85 4.97 0.389968 0.349655 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0533935 0.0480747 93 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30124 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.99 1087 13768 5458 5698 2612 55.9 MiB 0.20 0.00 4.58577 -147.33 -4.58577 4.58577 1.10 0.00116326 0.00106679 0.0985759 0.0904356 38 3125 30 6.99608e+06 220735 678818. 2348.85 5.79 0.370553 0.33291 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.32 0.12 0.27 -1 -1 0.32 0.0462991 0.041794 90 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17436 1 0.03 -1 -1 30328 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 17.0 MiB 1.91 854 11609 4663 6043 903 55.7 MiB 0.15 0.00 3.95082 -130.122 -3.95082 3.95082 1.09 0.000955318 0.000875918 0.0727408 0.0667669 38 2338 24 6.99608e+06 161872 678818. 2348.85 3.12 0.280097 0.25018 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0427938 0.0383202 67 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17704 1 0.03 -1 -1 30392 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 0.92 785 11813 4965 6422 426 55.7 MiB 0.16 0.00 3.70143 -122.026 -3.70143 3.70143 1.12 0.00104281 0.000955211 0.0785815 0.0719896 46 2466 44 6.99608e+06 206020 828058. 2865.25 3.75 0.336515 0.301065 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0488484 0.0437919 86 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.12 17856 1 0.03 -1 -1 30416 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 17.2 MiB 1.19 809 10756 2943 5618 2195 55.8 MiB 0.17 0.00 3.4598 -111.751 -3.4598 3.4598 1.08 0.00108395 0.00099328 0.0796534 0.0731504 46 2326 24 6.99608e+06 279598 828058. 2865.25 3.66 0.318008 0.285187 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0455529 0.0409493 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.21 17240 1 0.03 -1 -1 30396 -1 -1 17 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 17.0 MiB 0.49 678 13280 5850 6635 795 55.7 MiB 0.15 0.00 3.68935 -104.602 -3.68935 3.68935 0.98 0.000961613 0.000881162 0.0804875 0.0737777 42 2430 50 6.99608e+06 250167 744469. 2576.02 3.68 0.331449 0.29666 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0400287 0.0358731 71 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30520 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 1.81 779 10020 4070 5537 413 55.8 MiB 0.13 0.00 4.56081 -142.799 -4.56081 4.56081 1.10 0.00103869 0.000951352 0.059057 0.0540045 44 2750 43 6.99608e+06 220735 787024. 2723.27 3.64 0.296024 0.264172 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0468184 0.0419785 87 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30124 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 17.4 MiB 0.91 988 11366 4377 5078 1911 56.0 MiB 0.16 0.00 3.4477 -126.272 -3.4477 3.4477 1.10 0.00109307 0.00100131 0.0777245 0.0712269 40 3223 42 6.99608e+06 206020 706193. 2443.58 5.29 0.345476 0.309076 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0456434 0.0409934 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30324 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.1 MiB 0.37 735 13335 5144 6746 1445 55.8 MiB 0.15 0.00 4.50448 -121.497 -4.50448 4.50448 1.08 0.00103849 0.000953856 0.0748994 0.068778 46 2320 24 6.99608e+06 353176 828058. 2865.25 4.35 0.297804 0.26726 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.33 0.10 0.34 -1 -1 0.33 0.0408576 0.0367638 74 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.21 17560 1 0.03 -1 -1 30376 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 17.5 MiB 1.82 849 9872 4071 5471 330 56.1 MiB 0.15 0.00 4.41391 -145.413 -4.41391 4.41391 1.09 0.00117874 0.00108122 0.0734314 0.0674222 44 3096 30 6.99608e+06 206020 787024. 2723.27 3.50 0.343449 0.308459 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0535794 0.0482711 86 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17760 1 0.02 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 17.5 MiB 0.80 1031 9706 3955 5323 428 56.0 MiB 0.15 0.00 5.10216 -163.017 -5.10216 5.10216 1.09 0.00125893 0.00115464 0.0733005 0.067189 48 3809 38 6.99608e+06 250167 865456. 2994.66 7.87 0.380737 0.341457 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.34 0.23 0.34 -1 -1 0.34 0.0671675 0.0603663 102 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1043 9881 4045 5563 273 56.1 MiB 0.16 0.00 4.39921 -147.12 -4.39921 4.39921 1.09 0.0012589 0.00115223 0.0746023 0.0683871 46 3556 37 6.99608e+06 250167 828058. 2865.25 4.15 0.378029 0.339153 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0548478 0.0494338 104 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.20 17552 1 0.03 -1 -1 30232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 16.8 MiB 0.74 639 8765 3407 4448 910 55.5 MiB 0.11 0.00 4.31695 -124.149 -4.31695 4.31695 1.10 0.000933175 0.000855983 0.0545339 0.0500269 42 2236 38 6.99608e+06 191304 744469. 2576.02 2.97 0.278657 0.248269 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0364435 0.0326764 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30396 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 919 12808 4622 5804 2382 56.0 MiB 0.17 0.00 5.00926 -154.589 -5.00926 5.00926 1.08 0.00122507 0.00112342 0.0947277 0.0869549 48 2897 47 6.99608e+06 264882 865456. 2994.66 3.64 0.407068 0.36543 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.35 0.16 0.33 -1 -1 0.35 0.0554031 0.0498851 104 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30356 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 17.3 MiB 1.09 773 12860 5275 6775 810 55.9 MiB 0.17 0.00 4.8046 -140.908 -4.8046 4.8046 1.09 0.0011492 0.00105436 0.0918723 0.0843511 48 2906 29 6.99608e+06 206020 865456. 2994.66 4.69 0.351843 0.31625 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.35 0.15 0.38 -1 -1 0.35 0.0499367 0.0450314 82 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.12 17820 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 17.4 MiB 1.18 794 10228 3166 5486 1576 55.9 MiB 0.15 0.00 5.19565 -143.212 -5.19565 5.19565 1.08 0.00107269 0.00100129 0.0703128 0.0644917 38 3224 38 6.99608e+06 250167 678818. 2348.85 7.81 0.3257 0.291578 26626 170182 -1 2195 21 1511 2171 195678 43019 4.59296 4.59296 -149.718 -4.59296 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0475509 0.0428174 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 17.7 MiB 1.93 966 13788 4937 6208 2643 56.2 MiB 0.19 0.00 4.24398 -133.079 -4.24398 4.24398 1.08 0.00120488 0.00110476 0.0968639 0.0888002 46 3311 48 6.99608e+06 294314 828058. 2865.25 6.66 0.414336 0.371955 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.34 0.13 0.34 -1 -1 0.34 0.0335121 0.0299482 108 83 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 17.3 MiB 1.57 1164 15481 5166 8845 1470 56.0 MiB 0.23 0.00 4.66597 -153.274 -4.66597 4.66597 1.08 0.00119684 0.00109838 0.10996 0.100807 40 3016 25 6.99608e+06 250167 706193. 2443.58 4.40 0.37075 0.33328 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0530467 0.0477654 95 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17816 1 0.03 -1 -1 30304 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 17.6 MiB 2.28 970 14431 6168 7633 630 56.3 MiB 0.22 0.00 3.80498 -123.528 -3.80498 3.80498 1.11 0.0012036 0.00110337 0.112571 0.103143 46 3095 47 6.99608e+06 294314 828058. 2865.25 3.96 0.415606 0.372966 28066 200906 -1 2327 21 1984 2580 225360 47479 3.58866 3.58866 -125.19 -3.58866 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0507945 0.0457176 109 85 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17104 1 0.02 -1 -1 30368 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 16.7 MiB 1.06 673 8289 1936 5635 718 55.4 MiB 0.10 0.00 3.54309 -104.459 -3.54309 3.54309 1.10 0.000892566 0.000819583 0.049922 0.045894 36 2073 30 6.99608e+06 147157 648988. 2245.63 2.78 0.242304 0.215929 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0392691 0.0350805 54 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30276 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 17.6 MiB 0.70 998 13731 5201 6084 2446 56.2 MiB 0.20 0.00 5.23946 -166.614 -5.23946 5.23946 1.09 0.00121697 0.0011155 0.0990516 0.0908448 46 3007 25 6.99608e+06 250167 828058. 2865.25 5.69 0.365056 0.328045 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.33 0.19 0.32 -1 -1 0.33 0.0531495 0.0479942 100 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 17.5 MiB 1.00 1023 11631 4065 5883 1683 56.1 MiB 0.18 0.00 4.8947 -165.145 -4.8947 4.8947 1.09 0.00128592 0.00117884 0.0892813 0.0818749 40 3825 35 6.99608e+06 250167 706193. 2443.58 6.65 0.401024 0.360313 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.054914 0.0495398 109 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30092 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 17.0 MiB 1.00 649 12083 5091 6584 408 55.6 MiB 0.14 0.00 3.80367 -112.996 -3.80367 3.80367 1.09 0.000930657 0.00085282 0.0738313 0.0677115 42 2423 39 6.99608e+06 161872 744469. 2576.02 3.42 0.303153 0.270915 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.31 0.11 0.27 -1 -1 0.31 0.0419107 0.037484 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17292 1 0.03 -1 -1 30384 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.9 MiB 0.45 500 9836 4038 5376 422 55.4 MiB 0.11 0.00 3.32523 -100.829 -3.32523 3.32523 1.08 0.000885941 0.000812117 0.0566718 0.0519228 44 1930 39 6.99608e+06 191304 787024. 2723.27 2.89 0.267666 0.238829 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0430079 0.0384468 56 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 868 11909 4701 5758 1450 55.8 MiB 0.16 0.00 4.58703 -149.04 -4.58703 4.58703 1.08 0.00116532 0.00106995 0.0856055 0.0786148 46 2684 28 6.99608e+06 220735 828058. 2865.25 3.00 0.34841 0.312978 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0670356 0.0601634 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30456 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 17.5 MiB 1.68 896 11571 3933 6047 1591 56.1 MiB 0.17 0.00 4.54977 -137.477 -4.54977 4.54977 1.10 0.00116652 0.00106935 0.0834157 0.076491 46 2917 48 6.99608e+06 220735 828058. 2865.25 4.41 0.371624 0.333019 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528339 0.0475556 95 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17396 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.4 MiB 0.41 847 13556 4796 7036 1724 55.9 MiB 0.21 0.00 4.71017 -139.049 -4.71017 4.71017 1.11 0.00121518 0.00111622 0.0977834 0.0898604 44 3122 48 6.99608e+06 250167 787024. 2723.27 3.96 0.418612 0.377132 27778 195446 -1 2155 23 1937 3243 335429 101756 4.32031 4.32031 -143.248 -4.32031 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0558999 0.0504369 83 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30100 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 17.1 MiB 1.12 742 9042 3157 4137 1748 55.7 MiB 0.11 0.00 3.64737 -104.512 -3.64737 3.64737 1.10 0.00104808 0.000961014 0.0604104 0.0554495 48 2323 27 6.99608e+06 235451 865456. 2994.66 3.14 0.29125 0.260335 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.35 0.12 0.35 -1 -1 0.35 0.0449195 0.0403499 86 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30600 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 16.7 MiB 0.95 490 9374 3097 4710 1567 55.2 MiB 0.11 0.00 3.44679 -100.328 -3.44679 3.44679 1.09 0.000875151 0.000802828 0.0559208 0.0513468 38 1628 40 6.99608e+06 220735 678818. 2348.85 4.09 0.25919 0.230799 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0378589 0.0338021 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 17848 1 0.03 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1154 16102 6967 8731 404 56.5 MiB 0.25 0.00 4.18254 -144.202 -4.18254 4.18254 1.10 0.00137198 0.00125841 0.128485 0.117915 46 4050 36 6.99608e+06 264882 828058. 2865.25 8.65 0.459332 0.413416 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0556495 0.0502866 111 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17660 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 17.4 MiB 1.73 1126 13496 4705 6380 2411 56.1 MiB 0.21 0.00 5.49463 -159.408 -5.49463 5.49463 1.09 0.00118907 0.00109019 0.0998072 0.0915973 38 3177 46 6.99608e+06 250167 678818. 2348.85 5.76 0.382061 0.34251 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.31 0.21 0.27 -1 -1 0.31 0.0598834 0.0539366 100 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 17.2 MiB 0.94 926 14354 6182 7861 311 55.8 MiB 0.19 0.00 4.28347 -151.804 -4.28347 4.28347 1.11 0.00107768 0.000986533 0.0966611 0.0885936 48 2248 21 6.99608e+06 206020 865456. 2994.66 2.81 0.321914 0.288895 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0416219 0.0374266 91 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.10 17700 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 17.2 MiB 0.72 1057 13599 5180 6238 2181 55.8 MiB 0.19 0.00 4.11318 -134.456 -4.11318 4.11318 1.08 0.00110373 0.00101267 0.0924332 0.0848494 38 2724 25 6.99608e+06 220735 678818. 2348.85 3.18 0.332038 0.29835 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0466711 0.042031 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 17.5 MiB 1.30 870 12120 4959 6494 667 56.4 MiB 0.18 0.00 4.09557 -123.875 -4.09557 4.09557 1.09 0.00123159 0.00112866 0.0909194 0.0834611 42 3474 41 6.99608e+06 250167 744469. 2576.02 3.55 0.393028 0.353328 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.31 0.13 0.30 -1 -1 0.31 0.0523314 0.0471581 97 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17920 1 0.03 -1 -1 30108 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 17.4 MiB 1.43 825 9205 3109 4150 1946 55.9 MiB 0.13 0.00 3.47679 -109.391 -3.47679 3.47679 1.09 0.00107633 0.000987094 0.0621826 0.0570589 46 2602 31 6.99608e+06 250167 828058. 2865.25 3.49 0.304786 0.272801 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0526117 0.0471799 88 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 17.2 MiB 0.85 918 10536 3621 5008 1907 55.9 MiB 0.16 0.00 4.39601 -144.18 -4.39601 4.39601 1.13 0.00118452 0.00108497 0.0781172 0.0715612 46 3353 30 6.99608e+06 206020 828058. 2865.25 4.76 0.352179 0.316075 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.054118 0.0487511 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 17.7 MiB 2.39 942 12292 4666 5756 1870 56.2 MiB 0.18 0.00 3.70017 -126.602 -3.70017 3.70017 1.10 0.00125919 0.00115361 0.0934224 0.0856285 48 3168 40 6.99608e+06 235451 865456. 2994.66 5.98 0.404778 0.363544 28354 207349 -1 2445 29 2504 3455 343966 87145 3.56046 3.56046 -132.854 -3.56046 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0710283 0.0639023 103 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30320 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 16.9 MiB 1.21 638 10503 3616 4659 2228 55.5 MiB 0.13 0.00 4.33189 -121.838 -4.33189 4.33189 1.09 0.000927905 0.000851584 0.0648271 0.0595629 38 1692 24 6.99608e+06 206020 678818. 2348.85 2.49 0.26199 0.234106 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0380205 0.0341076 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17796 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 17.4 MiB 2.02 733 10370 4308 5800 262 55.9 MiB 0.13 0.00 4.00228 -133.8 -4.00228 4.00228 1.09 0.00101858 0.000932807 0.0666996 0.0610919 44 2610 40 6.99608e+06 206020 787024. 2723.27 3.53 0.317338 0.283444 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.33 0.11 0.29 -1 -1 0.33 0.0443815 0.0398007 79 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 17.0 MiB 0.77 764 12362 5067 6494 801 55.6 MiB 0.17 0.00 4.07608 -123.99 -4.07608 4.07608 1.09 0.00110946 0.00101876 0.0861858 0.0791629 46 2867 29 6.99608e+06 220735 828058. 2865.25 4.68 0.334818 0.30076 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0524789 0.04718 80 33 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30548 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 16.9 MiB 0.93 586 8909 3659 4796 454 55.6 MiB 0.06 0.00 3.79267 -108.98 -3.79267 3.79267 0.77 0.000399758 0.000359848 0.0229846 0.0207815 44 2352 39 6.99608e+06 191304 787024. 2723.27 3.41 0.234547 0.207621 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0505404 0.0449289 68 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.14 17592 1 0.03 -1 -1 30052 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 16.8 MiB 0.80 860 12076 5115 6633 328 55.5 MiB 0.15 0.00 4.30315 -133.848 -4.30315 4.30315 1.09 0.000951116 0.000871914 0.0743711 0.0681943 38 2379 33 6.99608e+06 176588 678818. 2348.85 3.98 0.297084 0.265389 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0370042 0.033192 73 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 17.4 MiB 0.90 1156 13840 5407 6744 1689 56.0 MiB 0.20 0.00 4.42187 -150.582 -4.42187 4.42187 1.17 0.00122216 0.00112127 0.102214 0.093829 46 2902 21 6.99608e+06 250167 828058. 2865.25 3.31 0.361016 0.324858 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.39 0.16 0.33 -1 -1 0.39 0.0619373 0.0560201 101 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17376 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 16.9 MiB 0.78 820 12876 4559 5981 2336 55.5 MiB 0.16 0.00 3.74867 -118.743 -3.74867 3.74867 1.17 0.000910962 0.000835144 0.0756146 0.0693066 36 2421 43 6.99608e+06 191304 648988. 2245.63 4.79 0.303993 0.269994 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0371261 0.0332296 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30012 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 17.5 MiB 0.87 889 10726 4477 5918 331 56.1 MiB 0.16 0.00 3.49879 -116.053 -3.49879 3.49879 1.13 0.00115037 0.00105412 0.0796434 0.0731126 48 2372 28 6.99608e+06 220735 865456. 2994.66 3.07 0.338034 0.30323 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.36 0.09 0.35 -1 -1 0.36 0.0392533 0.0354419 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30296 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 17.8 MiB 2.48 1223 9263 3795 5242 226 56.4 MiB 0.15 0.00 4.74537 -163.238 -4.74537 4.74537 1.11 0.00125417 0.00115005 0.0681835 0.0625366 48 3333 47 6.99608e+06 294314 865456. 2994.66 5.58 0.396464 0.355619 28354 207349 -1 2908 35 3164 4392 767405 233701 4.54929 4.54929 -166.714 -4.54929 0 0 1.05005e+06 3633.38 0.35 0.32 0.34 -1 -1 0.35 0.0824277 0.0740056 113 91 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30276 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 17.4 MiB 1.76 727 10316 3968 5326 1022 56.0 MiB 0.13 0.00 3.38944 -114.889 -3.38944 3.38944 1.09 0.000997464 0.000913266 0.0676786 0.0620248 46 2548 48 6.99608e+06 176588 828058. 2865.25 5.13 0.331732 0.296218 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0417862 0.0374252 80 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17928 1 0.03 -1 -1 30264 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 16.9 MiB 0.61 695 11609 4409 5699 1501 55.5 MiB 0.15 0.00 3.88892 -124.254 -3.88892 3.88892 1.10 0.000987081 0.000902693 0.0769316 0.0704317 40 2563 29 6.99608e+06 161872 706193. 2443.58 5.21 0.297211 0.265854 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0384946 0.0345423 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17912 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 17.0 MiB 1.34 729 11034 3646 5163 2225 55.5 MiB 0.14 0.00 4.07043 -123.448 -4.07043 4.07043 1.09 0.00108049 0.000990694 0.0742129 0.0680555 46 2576 50 6.99608e+06 206020 828058. 2865.25 4.10 0.353364 0.316495 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.33 0.13 0.18 -1 -1 0.33 0.0615958 0.0552665 79 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17864 1 0.03 -1 -1 30284 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 807 9881 4044 5289 548 56.0 MiB 0.13 0.00 3.78147 -112.033 -3.78147 3.78147 1.09 0.00108217 0.000992776 0.0661805 0.0607682 40 2561 37 6.99608e+06 264882 706193. 2443.58 5.41 0.3207 0.286952 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0457208 0.0411192 88 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.13 17760 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 1189 13031 5003 6393 1635 56.3 MiB 0.20 0.00 5.55394 -180.701 -5.55394 5.55394 1.12 0.00127212 0.00116674 0.0984341 0.0903012 40 3527 35 6.99608e+06 250167 706193. 2443.58 7.46 0.403281 0.362397 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.32 0.20 0.31 -1 -1 0.32 0.0585156 0.0527671 105 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17312 1 0.02 -1 -1 30288 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.8 MiB 0.76 678 10796 4152 4483 2161 55.5 MiB 0.12 0.00 3.34663 -92.0539 -3.34663 3.34663 1.09 0.000841221 0.000771986 0.0589865 0.0541565 34 1899 26 6.99608e+06 191304 618332. 2139.56 2.24 0.241029 0.214659 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.23 0.06 0.13 -1 -1 0.23 0.0234027 0.020869 54 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 17.8 MiB 2.56 1002 14907 4915 7817 2175 56.4 MiB 0.23 0.00 4.76623 -160.299 -4.76623 4.76623 1.09 0.00131669 0.0012072 0.111141 0.101975 48 2884 23 6.99608e+06 294314 865456. 2994.66 3.20 0.363002 0.326434 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.35 0.14 0.35 -1 -1 0.35 0.0531467 0.048079 116 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1317 10744 3615 5258 1871 56.2 MiB 0.17 0.00 4.50112 -167.331 -4.50112 4.50112 1.15 0.00118175 0.00108182 0.0797715 0.0730389 40 3495 26 6.99608e+06 235451 706193. 2443.58 5.66 0.350325 0.313952 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0562211 0.0504752 110 96 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.18 17688 1 0.03 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 17.3 MiB 1.39 944 9712 3948 5370 394 55.9 MiB 0.14 0.00 3.79657 -123.64 -3.79657 3.79657 1.09 0.00117916 0.00108055 0.0713395 0.0654456 44 3075 49 6.99608e+06 220735 787024. 2723.27 4.43 0.373651 0.334874 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.0498724 0.044915 94 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 18164 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 17.8 MiB 0.99 1078 15796 7109 8306 381 56.2 MiB 0.25 0.00 5.81442 -170.312 -5.81442 5.81442 1.14 0.0013349 0.00122551 0.128856 0.118452 46 3303 43 6.99608e+06 220735 828058. 2865.25 6.11 0.46695 0.421288 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0518826 0.0470061 98 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17560 1 0.03 -1 -1 30144 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 16.5 MiB 0.63 501 9684 3375 4762 1547 55.2 MiB 0.10 0.00 2.78575 -96.9119 -2.78575 2.78575 1.10 0.000777844 0.000710183 0.0507912 0.0465029 38 1487 22 6.99608e+06 176588 678818. 2348.85 2.18 0.213982 0.19013 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0295263 0.0263302 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17536 1 0.03 -1 -1 30376 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 17.0 MiB 3.03 598 11756 4032 5894 1830 55.7 MiB 0.14 0.00 3.77712 -117.524 -3.77712 3.77712 1.10 0.000973616 0.000891919 0.0743298 0.0681435 38 1780 24 6.99608e+06 206020 678818. 2348.85 2.40 0.283102 0.253187 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.32 0.10 0.28 -1 -1 0.32 0.0415002 0.0372447 68 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 0.64 791 12331 4777 6250 1304 55.6 MiB 0.16 0.00 3.68644 -122.952 -3.68644 3.68644 1.10 0.00102425 0.000939221 0.0738034 0.0676842 44 2873 41 6.99608e+06 250167 787024. 2723.27 4.01 0.321045 0.287083 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0390802 0.0351075 78 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17528 1 0.03 -1 -1 30244 -1 -1 16 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 16.7 MiB 0.99 448 7369 2953 3764 652 55.2 MiB 0.08 0.00 3.31959 -76.8944 -3.31959 3.31959 1.09 0.000751374 0.000688187 0.0386094 0.0353884 38 1742 32 6.99608e+06 235451 678818. 2348.85 3.44 0.216971 0.192665 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0276883 0.0247549 59 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 17.8 MiB 2.71 1245 8306 2489 4423 1394 56.2 MiB 0.13 0.00 4.0386 -139.855 -4.0386 4.0386 1.09 0.00121825 0.00111214 0.0612642 0.0562223 48 3245 50 6.99608e+06 250167 865456. 2994.66 3.73 0.379117 0.339815 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0517423 0.0465789 103 72 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17780 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 17.8 MiB 2.24 1163 15568 6109 7919 1540 56.5 MiB 0.23 0.00 4.35051 -150.242 -4.35051 4.35051 1.09 0.00129454 0.00118664 0.116953 0.107238 40 3509 30 6.99608e+06 279598 706193. 2443.58 4.20 0.415186 0.373354 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.32 0.16 0.29 -1 -1 0.32 0.0574242 0.0518319 117 90 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.27 17628 14 0.25 -1 -1 32976 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 1276 8543 2090 5594 859 55.6 MiB 0.15 0.00 8.38905 -176.577 -8.38905 8.38905 1.10 0.00155867 0.00142984 0.0791495 0.0727134 36 3665 49 6.79088e+06 255968 648988. 2245.63 7.49 0.486414 0.43708 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0695637 0.0628718 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.29 17704 14 0.28 -1 -1 32900 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 17.1 MiB 2.13 1147 12331 4133 6053 2145 55.7 MiB 0.20 0.00 7.6097 -157.374 -7.6097 7.6097 1.09 0.00156214 0.00143244 0.115651 0.10595 34 3327 27 6.79088e+06 255968 618332. 2139.56 4.82 0.467533 0.420904 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0622332 0.0563932 125 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 3.04 1231 6383 1494 4487 402 55.7 MiB 0.11 0.00 6.81003 -148.008 -6.81003 6.81003 1.09 0.0015737 0.00144281 0.0604016 0.055419 36 3209 32 6.79088e+06 255968 648988. 2245.63 6.04 0.432831 0.388973 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0634192 0.0574451 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.25 17780 12 0.31 -1 -1 32780 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 16.8 MiB 1.03 1099 5293 1100 3885 308 55.4 MiB 0.10 0.00 7.28153 -143.815 -7.28153 7.28153 1.13 0.00148932 0.00135537 0.0498105 0.0457441 36 3357 33 6.79088e+06 323328 648988. 2245.63 5.20 0.427263 0.38429 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0654588 0.0592809 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.28 17916 13 0.25 -1 -1 32788 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1401 5756 1163 4305 288 55.8 MiB 0.11 0.00 8.2885 -175.09 -8.2885 8.2885 1.12 0.00172797 0.00158411 0.0577817 0.0530401 40 3602 29 6.79088e+06 296384 706193. 2443.58 3.45 0.455276 0.40923 26254 175826 -1 3419 16 1490 3850 301755 77078 7.51181 7.51181 -175.313 -7.51181 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0601393 0.054702 152 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.29 17704 13 0.27 -1 -1 32764 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 1243 11063 3086 5977 2000 55.6 MiB 0.19 0.00 7.40767 -155.099 -7.40767 7.40767 1.10 0.00165126 0.00151303 0.106851 0.0979258 38 3505 23 6.79088e+06 255968 678818. 2348.85 5.00 0.484157 0.436373 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640915 0.0581552 137 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.24 17316 12 0.19 -1 -1 32548 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 16.4 MiB 1.28 831 9024 2147 6104 773 55.1 MiB 0.13 0.00 7.03512 -124.15 -7.03512 7.03512 1.08 0.00127187 0.00116586 0.0697703 0.0640761 36 2328 49 6.79088e+06 282912 648988. 2245.63 3.58 0.396087 0.355753 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0611743 0.0552524 106 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17656 12 0.20 -1 -1 32640 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 16.7 MiB 2.52 997 12636 5258 7154 224 55.4 MiB 0.18 0.00 6.42294 -136.16 -6.42294 6.42294 1.09 0.00125975 0.00115363 0.096507 0.088426 44 2627 22 6.79088e+06 229024 787024. 2723.27 2.94 0.375068 0.33761 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0443719 0.0402357 106 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17760 12 0.17 -1 -1 32600 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 16.6 MiB 2.75 1116 6203 1235 4627 341 55.2 MiB 0.10 0.00 7.04997 -146.463 -7.04997 7.04997 1.09 0.00128457 0.00117408 0.0484196 0.0443338 38 2827 29 6.79088e+06 269440 678818. 2348.85 3.70 0.338934 0.303964 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.31 0.10 0.27 -1 -1 0.31 0.0430107 0.0390826 113 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.25 17612 13 0.19 -1 -1 32624 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 16.7 MiB 1.95 1109 7177 1737 4800 640 55.3 MiB 0.12 0.00 7.59858 -166.488 -7.59858 7.59858 1.10 0.00140355 0.00128559 0.0611081 0.0559336 36 3033 30 6.79088e+06 202080 648988. 2245.63 5.15 0.386951 0.347188 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.043998 0.039989 106 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.23 17532 12 0.18 -1 -1 32396 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 16.7 MiB 1.61 935 11402 3533 6247 1622 55.2 MiB 0.15 0.00 7.11778 -148.236 -7.11778 7.11778 1.12 0.00120471 0.0011022 0.0846607 0.0775578 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.52 0.287076 0.25855 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0438125 0.0396521 96 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17364 12 0.15 -1 -1 32668 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 16.6 MiB 2.13 937 12856 4731 5927 2198 55.2 MiB 0.17 0.00 5.84661 -143.137 -5.84661 5.84661 0.79 0.00125106 0.00114462 0.0874764 0.0799449 38 2936 43 6.79088e+06 229024 678818. 2348.85 5.82 0.411997 0.369757 25966 169698 -1 2301 16 1075 2850 166834 38480 5.18431 5.18431 -138.28 -5.18431 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0442037 0.040114 101 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.29 17796 13 0.24 -1 -1 32424 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 16.8 MiB 1.75 1258 8319 2303 5000 1016 55.5 MiB 0.15 0.00 7.91028 -166.355 -7.91028 7.91028 1.09 0.00161414 0.00146971 0.0796278 0.0730054 40 3060 21 6.79088e+06 269440 706193. 2443.58 2.77 0.420557 0.378504 26254 175826 -1 2982 19 1354 3465 231601 50194 7.01056 7.01056 -160.338 -7.01056 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0660728 0.0598831 134 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.28 17720 14 0.30 -1 -1 32812 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 17.2 MiB 1.76 1345 7268 1767 5038 463 55.7 MiB 0.13 0.00 8.74626 -182.518 -8.74626 8.74626 1.08 0.00170019 0.00155577 0.0716713 0.0656901 36 3522 26 6.79088e+06 296384 648988. 2245.63 5.02 0.461067 0.414995 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0669132 0.0608893 151 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17544 11 0.17 -1 -1 32572 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 16.6 MiB 2.20 987 12186 3908 6119 2159 55.4 MiB 0.16 0.00 6.7187 -136.52 -6.7187 6.7187 1.08 0.00125295 0.00114798 0.0895151 0.0820395 34 3118 45 6.79088e+06 282912 618332. 2139.56 4.30 0.406874 0.365566 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.26 0.39 0.26 -1 -1 0.26 0.11896 0.106644 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.28 17704 12 0.27 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1224 13348 3764 6998 2586 55.7 MiB 0.22 0.00 7.24781 -156.42 -7.24781 7.24781 1.08 0.00172557 0.00158421 0.124132 0.113918 40 3377 35 6.79088e+06 323328 706193. 2443.58 4.46 0.532698 0.480586 26254 175826 -1 3153 21 1625 5435 403477 86340 6.75642 6.75642 -155.136 -6.75642 0 0 926341. 3205.33 0.30 0.19 0.30 -1 -1 0.30 0.0749283 0.067922 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.26 17788 14 0.26 -1 -1 32772 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 2.14 1311 6743 1544 4772 427 55.6 MiB 0.12 0.00 8.47078 -173.752 -8.47078 8.47078 1.10 0.00155995 0.00142965 0.0633255 0.0581058 38 3697 39 6.79088e+06 255968 678818. 2348.85 6.55 0.451081 0.405333 25966 169698 -1 2925 18 1377 3834 209038 46091 7.22545 7.22545 -162.343 -7.22545 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0604965 0.0548575 126 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.25 17640 12 0.16 -1 -1 32388 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 16.6 MiB 1.56 1008 11740 3543 6499 1698 55.2 MiB 0.16 0.00 7.24148 -161.628 -7.24148 7.24148 1.09 0.00126643 0.0011584 0.09208 0.0842545 36 2795 45 6.79088e+06 202080 648988. 2245.63 4.89 0.431783 0.387882 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0424921 0.0385862 105 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 16.1 MiB 1.83 679 4973 1078 3739 156 54.8 MiB 0.07 0.00 4.83286 -114.815 -4.83286 4.83286 1.09 0.000905144 0.000828525 0.0312004 0.0285602 38 1772 21 6.79088e+06 175136 678818. 2348.85 2.32 0.223993 0.199319 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0284368 0.0256244 66 87 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.26 17328 13 0.20 -1 -1 32576 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 16.4 MiB 1.96 997 12331 4111 5801 2419 55.0 MiB 0.17 0.00 7.54752 -160.268 -7.54752 7.54752 1.10 0.00128719 0.00117869 0.0947577 0.0868446 36 2929 29 6.79088e+06 242496 648988. 2245.63 3.56 0.387784 0.348779 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0489743 0.0443738 107 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17696 13 0.27 -1 -1 32996 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 17.0 MiB 1.74 1287 9943 2672 5830 1441 55.7 MiB 0.17 0.00 7.66212 -166.709 -7.66212 7.66212 1.11 0.00168777 0.00154804 0.0949829 0.0870744 36 4367 40 6.79088e+06 282912 648988. 2245.63 10.20 0.519947 0.468238 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.27 0.29 0.25 -1 -1 0.27 0.0994 0.0897403 143 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.28 17816 13 0.29 -1 -1 32620 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1366 11989 3183 6998 1808 55.8 MiB 0.20 0.00 7.56666 -167.812 -7.56666 7.56666 1.08 0.00163159 0.00149481 0.110257 0.101124 38 3931 41 6.79088e+06 282912 678818. 2348.85 6.54 0.517871 0.466604 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0596683 0.054218 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17244 9 0.09 -1 -1 32284 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 16.1 MiB 1.05 700 7596 2556 3853 1187 54.8 MiB 0.08 0.00 4.83723 -93.7879 -4.83723 4.83723 1.09 0.000821918 0.000753118 0.0413765 0.0379289 34 1715 26 6.79088e+06 242496 618332. 2139.56 2.03 0.220502 0.196201 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0306556 0.0274575 67 76 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17428 13 0.28 -1 -1 32772 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1263 10263 2709 7113 441 55.6 MiB 0.17 0.00 8.1433 -166.845 -8.1433 8.1433 1.09 0.00121623 0.00110022 0.0797825 0.0726352 40 3385 50 6.79088e+06 309856 706193. 2443.58 4.19 0.4981 0.446973 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.31 0.16 0.29 -1 -1 0.31 0.0702408 0.0636137 136 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17076 8 0.09 -1 -1 32664 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 16.0 MiB 1.81 633 5921 1256 4594 71 54.6 MiB 0.07 0.00 4.18492 -95.1021 -4.18492 4.18492 1.09 0.000788706 0.000721557 0.0270113 0.0245461 36 1824 30 6.79088e+06 148192 648988. 2245.63 2.26 0.202317 0.178896 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.029487 0.0263632 60 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.25 17488 15 0.25 -1 -1 32856 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1197 14144 5293 7084 1767 55.5 MiB 0.21 0.00 8.89118 -178.017 -8.89118 8.89118 1.10 0.00146121 0.00134046 0.119847 0.10993 36 3911 43 6.79088e+06 242496 648988. 2245.63 9.94 0.497505 0.447697 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.28 0.25 0.25 -1 -1 0.28 0.0874954 0.0788705 121 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17316 13 0.22 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1207 12898 3890 6827 2181 55.6 MiB 0.20 0.00 6.79894 -149.553 -6.79894 6.79894 1.11 0.00146697 0.00134581 0.11155 0.102321 36 3359 23 6.79088e+06 242496 648988. 2245.63 8.43 0.429845 0.386578 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.27 0.13 0.27 -1 -1 0.27 0.0587348 0.0532059 117 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.27 17780 13 0.28 -1 -1 32880 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1179 7024 1686 4552 786 55.5 MiB 0.06 0.00 7.81323 -165.772 -7.81323 7.81323 1.08 0.000575707 0.000519854 0.0263879 0.0239397 40 3618 36 6.79088e+06 242496 706193. 2443.58 6.10 0.396163 0.354838 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.32 0.26 0.30 -1 -1 0.32 0.0815291 0.0736815 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.13 17316 12 0.16 -1 -1 32608 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 16.5 MiB 1.83 1077 9024 2472 4753 1799 55.3 MiB 0.13 0.00 6.90294 -154.176 -6.90294 6.90294 1.08 0.00129032 0.00118078 0.0719087 0.0659265 38 2685 27 6.79088e+06 215552 678818. 2348.85 3.61 0.356865 0.32063 25966 169698 -1 2236 14 1015 2429 130604 29713 5.99004 5.99004 -143.607 -5.99004 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0406936 0.036995 103 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17344 11 0.16 -1 -1 32724 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 16.4 MiB 1.75 910 12120 3870 6285 1965 55.0 MiB 0.16 0.00 6.3635 -135.496 -6.3635 6.3635 1.11 0.00116635 0.00106758 0.0854939 0.0782692 36 2758 44 6.79088e+06 242496 648988. 2245.63 4.63 0.38332 0.343807 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0384663 0.0348461 95 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.11 17432 11 0.17 -1 -1 32620 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 16.5 MiB 1.49 934 11106 3231 6003 1872 55.1 MiB 0.15 0.00 7.04953 -133.904 -7.04953 7.04953 1.09 0.00125696 0.00115176 0.0834827 0.0765127 36 2495 17 6.79088e+06 282912 648988. 2245.63 2.84 0.348082 0.313258 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.24 0.05 0.13 -1 -1 0.24 0.0187607 0.0170466 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.23 17612 12 0.20 -1 -1 32616 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 16.9 MiB 2.32 1143 7431 2070 3957 1404 55.4 MiB 0.12 0.00 7.03679 -162.788 -7.03679 7.03679 1.09 0.00148673 0.00136121 0.067694 0.0620701 38 3489 28 6.79088e+06 229024 678818. 2348.85 4.84 0.403344 0.362004 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0573383 0.051971 119 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.23 17548 12 0.16 -1 -1 32688 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 16.4 MiB 2.10 1005 7304 1599 5397 308 55.0 MiB 0.12 0.00 6.85818 -143.144 -6.85818 6.85818 1.13 0.0012768 0.00116879 0.0599463 0.0549714 36 3104 26 6.79088e+06 229024 648988. 2245.63 5.37 0.344934 0.309478 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0527951 0.0477451 101 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.23 17552 10 0.15 -1 -1 32768 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 16.5 MiB 1.39 942 8378 2178 5592 608 55.2 MiB 0.12 0.00 6.16888 -135.594 -6.16888 6.16888 1.07 0.00123682 0.00113275 0.0660431 0.0604695 34 2825 33 6.79088e+06 229024 618332. 2139.56 3.19 0.318677 0.285813 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0409455 0.0371643 103 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18156 13 0.31 -1 -1 32744 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 17.1 MiB 1.71 1312 13663 4088 7126 2449 55.7 MiB 0.24 0.00 8.09614 -166.803 -8.09614 8.09614 1.11 0.00178874 0.00163755 0.138996 0.127386 44 3318 23 6.79088e+06 282912 787024. 2723.27 3.69 0.530745 0.478621 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0668998 0.0608224 149 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.27 18308 14 0.33 -1 -1 33288 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 17.0 MiB 2.05 1261 10584 2627 7173 784 55.7 MiB 0.19 0.00 7.68903 -168.897 -7.68903 7.68903 1.08 0.00162185 0.00148683 0.101591 0.093056 44 3649 50 6.79088e+06 242496 787024. 2723.27 4.66 0.526375 0.473774 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.35 0.14 0.32 -1 -1 0.35 0.0597816 0.0543349 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17484 12 0.15 -1 -1 32656 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 16.5 MiB 1.99 1099 9036 2242 5503 1291 55.2 MiB 0.13 0.00 7.11595 -155.813 -7.11595 7.11595 1.09 0.0012829 0.00117428 0.0722901 0.0662087 30 2953 39 6.79088e+06 215552 556674. 1926.21 3.70 0.28566 0.257124 24526 138013 -1 2356 56 1353 4062 755449 394520 6.33018 6.33018 -154.996 -6.33018 0 0 706193. 2443.58 0.28 0.41 0.21 -1 -1 0.28 0.12939 0.116052 101 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.23 18028 12 0.27 -1 -1 32756 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 17.2 MiB 2.20 1467 6039 1319 4287 433 55.8 MiB 0.12 0.00 7.47278 -158.083 -7.47278 7.47278 1.09 0.00171607 0.00157202 0.0615698 0.0565242 44 3629 28 6.79088e+06 323328 787024. 2723.27 4.00 0.458717 0.4126 27118 194962 -1 3054 17 1429 4213 263921 56409 6.54502 6.54502 -148.774 -6.54502 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0629577 0.0572327 146 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 18016 14 0.33 -1 -1 33176 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 17.2 MiB 1.27 1271 10129 2796 6287 1046 55.8 MiB 0.17 0.00 8.30959 -169.599 -8.30959 8.30959 1.06 0.00166874 0.00153034 0.0960603 0.0880855 36 3450 22 6.79088e+06 296384 648988. 2245.63 4.35 0.464265 0.417273 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0590073 0.0536986 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.28 17848 13 0.25 -1 -1 32792 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1280 4811 900 3622 289 55.7 MiB 0.09 0.00 8.58767 -169.841 -8.58767 8.58767 1.29 0.00155772 0.0014279 0.0446221 0.0409648 38 3430 34 6.79088e+06 309856 678818. 2348.85 3.75 0.426433 0.383393 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.058921 0.0535508 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.28 17880 13 0.25 -1 -1 32776 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 16.9 MiB 1.77 1180 11979 3854 6305 1820 55.5 MiB 0.19 0.00 7.68398 -158.005 -7.68398 7.68398 1.09 0.00153799 0.00140546 0.105313 0.096469 46 3049 18 6.79088e+06 282912 828058. 2865.25 4.04 0.430065 0.387814 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0538497 0.048902 125 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.24 17516 12 0.19 -1 -1 32844 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 17.0 MiB 1.86 851 11432 3292 6222 1918 55.6 MiB 0.17 0.00 6.74005 -141.479 -6.74005 6.74005 1.13 0.00142466 0.00130503 0.0995049 0.0912937 38 2732 20 6.79088e+06 215552 678818. 2348.85 5.17 0.399768 0.359156 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.39 0.09 0.23 -1 -1 0.39 0.0398015 0.0358915 111 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.32 18492 14 0.38 -1 -1 32772 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 17.4 MiB 1.13 1525 8269 1990 5730 549 55.9 MiB 0.17 0.00 8.76146 -179.232 -8.76146 8.76146 1.11 0.00189445 0.00172858 0.0900173 0.0825446 40 3962 28 6.79088e+06 282912 706193. 2443.58 5.17 0.515109 0.464401 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.31 0.17 0.25 -1 -1 0.31 0.066406 0.0606195 159 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17300 11 0.19 -1 -1 32380 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 16.7 MiB 2.13 1083 5656 1222 4312 122 55.2 MiB 0.10 0.00 6.44427 -138.672 -6.44427 6.44427 1.10 0.0013859 0.00126909 0.0509739 0.0467584 40 2970 31 6.79088e+06 215552 706193. 2443.58 3.49 0.376309 0.336577 26254 175826 -1 2695 18 1295 3569 245355 53324 5.60634 5.60634 -134.282 -5.60634 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0540157 0.0489514 112 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17788 13 0.26 -1 -1 33268 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1224 12683 3651 6628 2404 55.7 MiB 0.21 0.00 8.19665 -170.984 -8.19665 8.19665 1.11 0.00160046 0.00146589 0.118485 0.108587 36 3521 25 6.79088e+06 269440 648988. 2245.63 5.91 0.476879 0.42959 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0609382 0.0554556 137 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.31 17792 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1183 14221 4949 6932 2340 55.6 MiB 0.25 0.00 7.19197 -155.782 -7.19197 7.19197 1.09 0.001711 0.00156834 0.133533 0.122249 48 3258 28 6.79088e+06 282912 865456. 2994.66 3.88 0.524885 0.473301 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.36 0.24 0.34 -1 -1 0.36 0.0825989 0.0748122 146 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.25 17632 13 0.24 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 16.7 MiB 1.28 1273 10103 2600 6194 1309 55.5 MiB 0.16 0.00 8.00961 -170.987 -8.00961 8.00961 1.08 0.00156602 0.00143579 0.0882421 0.080965 38 3255 22 6.79088e+06 296384 678818. 2348.85 3.39 0.431469 0.388334 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.30 0.12 0.24 -1 -1 0.30 0.0577498 0.0524341 131 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.29 17768 13 0.21 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 16.7 MiB 2.48 1094 12364 4318 5742 2304 55.3 MiB 0.19 0.00 7.6093 -157.428 -7.6093 7.6093 1.08 0.00151551 0.00138913 0.109923 0.100771 38 3487 43 6.79088e+06 242496 678818. 2348.85 8.02 0.489595 0.440145 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0549715 0.0498456 124 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17904 12 0.24 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.86 1339 6489 1417 4538 534 55.8 MiB 0.12 0.00 7.45027 -163.951 -7.45027 7.45027 1.09 0.00165009 0.00151314 0.0633481 0.0581754 36 4037 43 6.79088e+06 269440 648988. 2245.63 10.95 0.485655 0.436583 25390 158009 -1 3242 19 1321 4175 282612 58801 6.45897 6.45897 -154.692 -6.45897 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0668468 0.0606339 140 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.27 18068 13 0.29 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 17.3 MiB 1.56 1312 5757 1265 4157 335 55.9 MiB 0.12 0.00 7.77691 -170.238 -7.77691 7.77691 1.10 0.00176712 0.00162073 0.0609812 0.0559732 36 4117 46 6.79088e+06 269440 648988. 2245.63 9.83 0.522201 0.469465 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.28 0.31 0.25 -1 -1 0.28 0.115059 0.103934 145 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17656 14 0.27 -1 -1 32956 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 1.40 1196 9783 2600 6598 585 55.7 MiB 0.16 0.00 8.29092 -170.108 -8.29092 8.29092 1.09 0.00148895 0.00136431 0.0844592 0.0773804 38 3116 34 6.79088e+06 269440 678818. 2348.85 3.99 0.456817 0.411622 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.31 0.15 0.27 -1 -1 0.31 0.0697627 0.0631465 125 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.25 17664 13 0.25 -1 -1 32740 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 17.2 MiB 2.08 1239 12547 3128 7964 1455 55.8 MiB 0.20 0.00 8.02156 -162.008 -8.02156 8.02156 1.09 0.00162863 0.00149189 0.114357 0.104786 36 3706 32 6.79088e+06 282912 648988. 2245.63 8.95 0.490474 0.441531 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.28 0.19 0.25 -1 -1 0.28 0.075055 0.0678523 136 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 18208 13 0.27 -1 -1 32696 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1309 8319 2069 5720 530 55.9 MiB 0.16 0.00 7.83086 -168.91 -7.83086 7.83086 1.02 0.00169836 0.00155667 0.0846177 0.0775721 38 3459 40 6.79088e+06 282912 678818. 2348.85 5.42 0.510362 0.459281 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.065611 0.0595916 144 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.27 17856 12 0.29 -1 -1 32792 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 17.3 MiB 1.48 1321 14779 4130 8902 1747 55.7 MiB 0.26 0.00 7.66848 -162.706 -7.66848 7.66848 1.09 0.00169448 0.00155268 0.152532 0.13979 38 3631 50 6.79088e+06 282912 678818. 2348.85 6.05 0.597035 0.538262 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.065869 0.0598032 147 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.20 17536 11 0.13 -1 -1 32704 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.09 752 5224 962 4133 129 55.1 MiB 0.08 0.00 6.41251 -131.25 -6.41251 6.41251 1.08 0.00115422 0.00105681 0.0397874 0.0364162 36 2354 24 6.79088e+06 188608 648988. 2245.63 3.54 0.290867 0.260248 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0418479 0.0377584 91 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17812 13 0.20 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.73 1180 7221 1648 4796 777 55.2 MiB 0.06 0.00 7.59268 -164.24 -7.59268 7.59268 0.75 0.000522799 0.000473144 0.0240784 0.0218847 36 3135 25 6.79088e+06 269440 648988. 2245.63 5.11 0.286616 0.25597 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0519724 0.0470402 118 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18324 14 0.42 -1 -1 33012 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57476 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 17.6 MiB 1.25 1584 7108 1588 4936 584 56.1 MiB 0.15 0.00 9.32595 -187.261 -9.32595 9.32595 1.16 0.00195527 0.00179212 0.0799751 0.0732379 46 3936 32 6.79088e+06 323328 828058. 2865.25 5.45 0.50431 0.454682 27406 200422 -1 3289 21 1725 5115 340361 89609 8.0201 8.0201 -172.736 -8.0201 0 0 1.01997e+06 3529.29 0.33 0.20 0.32 -1 -1 0.33 0.0844054 0.0767247 171 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.14 17836 13 0.30 -1 -1 32788 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 16.9 MiB 1.49 1314 12733 3340 7297 2096 55.5 MiB 0.24 0.00 7.97246 -177.126 -7.97246 7.97246 1.09 0.00160225 0.00146967 0.129324 0.118122 38 3411 27 6.79088e+06 282912 678818. 2348.85 5.74 0.489579 0.441153 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0574774 0.0521157 134 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.24 17516 11 0.17 -1 -1 32636 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 16.4 MiB 0.70 915 4304 849 3239 216 55.1 MiB 0.08 0.00 6.78614 -143.669 -6.78614 6.78614 1.13 0.00125655 0.00115088 0.036158 0.0332226 36 2700 29 6.79088e+06 229024 648988. 2245.63 3.91 0.23979 0.214025 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0417264 0.0378472 101 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.31 18516 15 0.52 -1 -1 32880 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 17.5 MiB 1.09 1525 5039 926 3796 317 56.1 MiB 0.11 0.00 9.59451 -195.342 -9.59451 9.59451 1.09 0.00204404 0.00187329 0.0583238 0.0535474 36 4861 41 6.79088e+06 336800 648988. 2245.63 13.86 0.583422 0.526252 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.29 0.20 0.25 -1 -1 0.29 0.0915143 0.0831423 179 257 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.25 17704 13 0.31 -1 -1 32884 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 17.1 MiB 1.12 1281 8502 2158 5508 836 55.8 MiB 0.15 0.00 8.03603 -175.042 -8.03603 8.03603 1.12 0.00170192 0.00156163 0.0848448 0.077923 38 3308 18 6.79088e+06 269440 678818. 2348.85 3.35 0.403218 0.363334 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.056001 0.0509517 139 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.20 17192 11 0.13 -1 -1 32420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 16.5 MiB 1.20 1102 10183 2765 6008 1410 55.1 MiB 0.14 0.00 6.80233 -145.463 -6.80233 6.80233 1.08 0.00122427 0.00111897 0.0799159 0.0731057 30 2820 19 6.79088e+06 175136 556674. 1926.21 1.81 0.241345 0.217552 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0425276 0.0385254 94 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.27 17604 12 0.29 -1 -1 32788 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 17.2 MiB 1.08 1332 7953 2031 5347 575 55.7 MiB 0.15 0.00 7.73069 -165.16 -7.73069 7.73069 1.09 0.00172475 0.00158003 0.0806271 0.0739033 38 3533 25 6.79088e+06 269440 678818. 2348.85 4.53 0.463399 0.416896 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0614707 0.0558705 146 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.25 17376 12 0.20 -1 -1 32732 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 17.0 MiB 1.20 1053 12008 3553 6389 2066 55.5 MiB 0.17 0.00 7.28149 -150.89 -7.28149 7.28149 1.08 0.00134793 0.00123499 0.0951366 0.0872463 44 2625 43 6.79088e+06 242496 787024. 2723.27 3.50 0.431562 0.387509 27118 194962 -1 2033 17 1102 2951 150094 35597 6.20493 6.20493 -138.957 -6.20493 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0497315 0.0451028 113 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17508 12 0.18 -1 -1 32676 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 16.5 MiB 0.97 903 6163 1336 4643 184 55.3 MiB 0.10 0.00 7.56546 -146.033 -7.56546 7.56546 1.12 0.00128195 0.00117357 0.0508396 0.0465473 30 2736 29 6.79088e+06 229024 556674. 1926.21 2.81 0.238859 0.215012 24526 138013 -1 2112 20 907 2572 134816 30941 6.67032 6.67032 -143.964 -6.67032 0 0 706193. 2443.58 0.22 0.07 0.11 -1 -1 0.22 0.0367738 0.0332523 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 18128 12 0.28 -1 -1 32816 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 17.0 MiB 1.95 1197 6039 1341 4100 598 55.6 MiB 0.10 0.00 7.39356 -141.853 -7.39356 7.39356 1.11 0.00161042 0.0014771 0.0554602 0.0509082 40 2765 18 6.79088e+06 350272 706193. 2443.58 3.38 0.398251 0.358048 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.30 0.14 0.30 -1 -1 0.30 0.0613308 0.0556626 140 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.26 17828 13 0.33 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 17.2 MiB 1.00 1362 9111 2298 6252 561 55.9 MiB 0.17 0.00 7.91407 -168.647 -7.91407 7.91407 1.10 0.00183632 0.00168472 0.0927307 0.0849622 36 4498 41 6.79088e+06 309856 648988. 2245.63 11.25 0.555485 0.500299 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.28 0.27 0.25 -1 -1 0.28 0.0980899 0.0889205 160 236 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17784 12 0.23 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.24 1278 7770 1751 5660 359 55.7 MiB 0.14 0.00 7.73336 -164.138 -7.73336 7.73336 1.12 0.00164116 0.00150534 0.0748496 0.0686568 38 3570 28 6.79088e+06 269440 678818. 2348.85 5.70 0.457478 0.41133 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0652339 0.0591592 140 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.24 17352 12 0.14 -1 -1 32344 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 16.5 MiB 1.80 988 4473 916 3372 185 55.0 MiB 0.07 0.00 7.24997 -147.671 -7.24997 7.24997 1.10 0.00119076 0.00109059 0.0360762 0.0330471 36 2682 24 6.79088e+06 202080 648988. 2245.63 4.68 0.293713 0.262886 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0447185 0.0403823 93 120 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.26 17652 12 0.21 -1 -1 32420 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 16.8 MiB 1.37 1084 12898 3877 6797 2224 55.2 MiB 0.19 0.00 7.21455 -151.198 -7.21455 7.21455 1.09 0.00135032 0.00123708 0.102342 0.0937367 36 2934 32 6.79088e+06 255968 648988. 2245.63 5.62 0.416642 0.374397 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0477592 0.0433004 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.27 17900 11 0.21 -1 -1 32920 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1115 8626 2299 5376 951 55.5 MiB 0.14 0.00 6.84847 -137.093 -6.84847 6.84847 1.09 0.00153039 0.00140343 0.0786859 0.0721547 36 3085 31 6.79088e+06 269440 648988. 2245.63 4.39 0.438996 0.394474 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0538793 0.0488874 125 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.24 17680 11 0.20 -1 -1 32632 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 16.9 MiB 1.21 1077 4642 990 3215 437 55.4 MiB 0.08 0.00 6.39394 -126.807 -6.39394 6.39394 1.08 0.00137222 0.00125407 0.0425855 0.0392017 36 2869 37 6.79088e+06 255968 648988. 2245.63 5.46 0.383244 0.343356 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0661844 0.0597698 116 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.25 17820 13 0.21 -1 -1 32692 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 1.68 1115 9196 2684 4764 1748 55.5 MiB 0.13 0.00 7.27805 -147.461 -7.27805 7.27805 1.10 0.00131664 0.00120604 0.0742087 0.0680229 30 3203 46 6.79088e+06 242496 556674. 1926.21 2.99 0.309048 0.278111 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.0503556 0.0456621 108 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.25 17604 12 0.19 -1 -1 32776 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.8 MiB 1.96 1193 6490 1485 4564 441 55.6 MiB 0.11 0.00 7.26273 -167.563 -7.26273 7.26273 1.15 0.00132926 0.00121039 0.0586146 0.0537333 40 2753 23 6.79088e+06 242496 706193. 2443.58 3.32 0.391166 0.351322 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.31 0.11 0.29 -1 -1 0.31 0.0497702 0.0452251 120 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17508 13 0.28 -1 -1 32796 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 16.8 MiB 1.59 1194 6123 1343 4442 338 55.5 MiB 0.11 0.00 8.79477 -171.911 -8.79477 8.79477 1.11 0.0015896 0.00145764 0.0582899 0.0535091 34 3211 26 6.79088e+06 282912 618332. 2139.56 3.45 0.419166 0.376412 25102 150614 -1 2646 15 1148 3180 179176 40712 7.64065 7.64065 -158.33 -7.64065 0 0 787024. 2723.27 0.26 0.11 0.14 -1 -1 0.26 0.0523766 0.0475658 137 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17932 14 0.28 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1287 8685 2330 5621 734 55.7 MiB 0.15 0.00 8.66267 -183.033 -8.66267 8.66267 1.11 0.00162759 0.00149185 0.0825374 0.0756856 38 3763 48 6.79088e+06 269440 678818. 2348.85 6.12 0.516445 0.464622 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.30 0.13 0.27 -1 -1 0.30 0.0578025 0.0525301 132 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.26 17900 14 0.24 -1 -1 32924 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 17.0 MiB 1.98 1083 11456 4044 5385 2027 55.6 MiB 0.20 0.00 7.96611 -159.164 -7.96611 7.96611 1.11 0.00152007 0.00139307 0.110611 0.100813 38 3010 34 6.79088e+06 229024 678818. 2348.85 5.14 0.480409 0.431907 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0684848 0.0620992 122 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.29 18100 13 0.32 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 17.1 MiB 1.68 1338 8024 1861 5707 456 55.6 MiB 0.15 0.00 8.29812 -170.177 -8.29812 8.29812 1.14 0.00169613 0.00155509 0.077868 0.0714676 46 3286 28 6.79088e+06 296384 828058. 2865.25 3.85 0.473727 0.426908 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0627477 0.0571236 144 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.24 17324 13 0.18 -1 -1 32360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 919 12292 3407 6536 2349 55.1 MiB 0.17 0.00 7.20737 -146.133 -7.20737 7.20737 1.11 0.0012935 0.00118455 0.0965605 0.0883512 36 2720 18 6.79088e+06 242496 648988. 2245.63 3.50 0.378248 0.339929 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0558411 0.0504664 104 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.30 17988 13 0.41 -1 -1 32892 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 17.4 MiB 1.64 1350 9234 2593 5787 854 55.9 MiB 0.17 0.00 8.31996 -168.69 -8.31996 8.31996 1.10 0.00171185 0.00157099 0.0921929 0.084664 38 3825 50 6.79088e+06 296384 678818. 2348.85 6.28 0.531173 0.478025 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.31 0.17 0.22 -1 -1 0.31 0.0717698 0.0650931 145 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17596 14 0.30 -1 -1 32728 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 16.9 MiB 1.56 1251 6312 1329 4019 964 55.6 MiB 0.12 0.00 8.37235 -176.058 -8.37235 8.37235 1.08 0.00148454 0.00134885 0.0607203 0.0556678 40 3069 17 6.79088e+06 242496 706193. 2443.58 3.49 0.391135 0.351722 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.30 0.16 0.29 -1 -1 0.30 0.0660097 0.0598009 128 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.29 17824 13 0.22 -1 -1 32868 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 16.9 MiB 1.75 1125 7914 1884 5216 814 55.5 MiB 0.14 0.00 7.39828 -160.2 -7.39828 7.39828 1.08 0.00150998 0.00138583 0.0720707 0.0661485 38 3005 21 6.79088e+06 255968 678818. 2348.85 4.19 0.39292 0.352989 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0694596 0.0627824 124 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17832 13 0.21 -1 -1 32728 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 17.0 MiB 1.60 1096 8306 2939 4353 1014 55.6 MiB 0.14 0.00 7.45237 -146.107 -7.45237 7.45237 1.09 0.00148541 0.00136115 0.0753578 0.0691005 38 3152 24 6.79088e+06 255968 678818. 2348.85 4.26 0.401484 0.359786 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.29 0.11 0.28 -1 -1 0.29 0.052931 0.0479947 121 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17904 14 0.36 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1434 9943 2708 5582 1653 55.8 MiB 0.13 0.00 8.52022 -179.043 -8.52022 8.52022 0.75 0.00177437 0.00162715 0.0609507 0.0555544 46 3715 29 6.79088e+06 282912 828058. 2865.25 4.83 0.473011 0.425609 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.34 0.15 0.24 -1 -1 0.34 0.0658054 0.0598805 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17828 11 0.27 -1 -1 32680 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 16.7 MiB 1.96 1077 10149 2679 5779 1691 55.4 MiB 0.16 0.00 7.52622 -140.559 -7.52622 7.52622 1.10 0.00152958 0.00140211 0.0896496 0.0822676 36 3431 24 6.79088e+06 309856 648988. 2245.63 7.13 0.437452 0.393774 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0631941 0.0571923 136 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17544 13 0.16 -1 -1 32720 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.81 972 6054 1229 4689 136 55.0 MiB 0.10 0.00 6.97458 -160.094 -6.97458 6.97458 1.09 0.00122375 0.00111052 0.0492924 0.0451384 44 2580 35 6.79088e+06 188608 787024. 2723.27 2.84 0.337194 0.301947 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.33 0.09 0.34 -1 -1 0.33 0.0404734 0.0367331 98 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 18096 14 0.24 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 17.0 MiB 1.59 963 3581 624 2890 67 55.5 MiB 0.08 0.00 8.38402 -165.799 -8.38402 8.38402 1.12 0.00151563 0.00139046 0.0359025 0.032999 36 3137 33 6.79088e+06 229024 648988. 2245.63 5.88 0.296309 0.264822 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0708874 0.0640701 122 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.17 18136 15 0.40 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 17.5 MiB 1.46 1424 5271 949 4056 266 56.1 MiB 0.12 0.00 9.1358 -193.594 -9.1358 9.1358 1.10 0.00191638 0.00175782 0.0604098 0.0554736 40 3948 49 6.79088e+06 309856 706193. 2443.58 4.66 0.525457 0.472243 26254 175826 -1 3616 22 2383 6323 430097 92001 7.89475 7.89475 -181.053 -7.89475 0 0 926341. 3205.33 0.30 0.22 0.29 -1 -1 0.30 0.0862745 0.078289 163 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17644 11 0.16 -1 -1 32556 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 16.6 MiB 1.53 958 10726 3368 5272 2086 55.2 MiB 0.14 0.00 6.79222 -142.45 -6.79222 6.79222 1.15 0.00120321 0.00110204 0.0728711 0.0665771 30 2689 41 6.79088e+06 202080 556674. 1926.21 1.84 0.271629 0.243924 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0450699 0.0408443 97 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17324 12 0.20 -1 -1 32932 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 1114 10400 2653 5866 1881 55.3 MiB 0.16 0.00 6.63358 -148.815 -6.63358 6.63358 1.08 0.00134166 0.00122925 0.0857501 0.0785564 38 3230 30 6.79088e+06 229024 678818. 2348.85 4.09 0.390863 0.351008 25966 169698 -1 2582 19 1265 3460 189795 41991 5.82549 5.82549 -148.72 -5.82549 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0538804 0.0487273 112 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.27 17592 12 0.27 -1 -1 32780 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1409 5123 1016 3643 464 55.8 MiB 0.10 0.00 7.37446 -165.375 -7.37446 7.37446 1.08 0.00173209 0.00158717 0.0547006 0.0501989 38 3552 27 6.79088e+06 255968 678818. 2348.85 3.62 0.44624 0.401417 25966 169698 -1 3027 19 1404 4076 214650 48148 6.46241 6.46241 -154.792 -6.46241 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0703111 0.0638381 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.28 17640 12 0.24 -1 -1 32936 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1290 8804 2224 5446 1134 55.5 MiB 0.15 0.00 7.66631 -156.992 -7.66631 7.66631 1.10 0.00145579 0.00132651 0.0803032 0.0736579 38 3773 50 6.79088e+06 242496 678818. 2348.85 7.28 0.4925 0.442502 25966 169698 -1 2908 20 1397 4117 236922 51526 6.45897 6.45897 -151.356 -6.45897 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0275586 0.024886 130 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.29 18044 14 0.43 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 17.5 MiB 1.79 1339 6323 1159 4879 285 56.0 MiB 0.13 0.00 9.2305 -183.989 -9.2305 9.2305 1.12 0.00191143 0.00175157 0.0700871 0.0643737 38 3705 30 6.79088e+06 296384 678818. 2348.85 4.18 0.517858 0.467192 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0733484 0.0668142 167 233 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17664 12 0.21 -1 -1 32704 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.52 1023 10231 4165 5804 262 55.4 MiB 0.16 0.00 7.21752 -140.072 -7.21752 7.21752 1.12 0.00144096 0.00132066 0.0889305 0.0815878 36 3532 36 6.79088e+06 255968 648988. 2245.63 8.44 0.435246 0.390884 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.049137 0.0445402 121 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.23 17384 11 0.18 -1 -1 32596 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.5 MiB 1.95 852 9208 3256 4555 1397 55.2 MiB 0.06 0.00 7.04622 -127.422 -7.04622 7.04622 1.11 0.000447685 0.000402769 0.0275598 0.0249121 30 2286 23 6.79088e+06 255968 556674. 1926.21 1.28 0.199496 0.178894 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0429394 0.038945 104 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.23 18356 13 0.43 -1 -1 32820 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 18.0 MiB 1.54 1698 8532 2074 5800 658 56.5 MiB 0.18 0.00 7.91451 -163.387 -7.91451 7.91451 1.08 0.00212415 0.00194723 0.0968134 0.0888205 46 4524 47 6.79088e+06 350272 828058. 2865.25 6.17 0.641328 0.578909 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0836163 0.0763234 188 286 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 17900 14 0.28 -1 -1 33248 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1264 9385 2554 5852 979 55.6 MiB 0.16 0.00 8.41881 -168.357 -8.41881 8.41881 1.11 0.00155799 0.00142834 0.0840395 0.0770408 30 3443 28 6.79088e+06 296384 556674. 1926.21 2.68 0.302763 0.273077 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0574591 0.0520993 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17936 12 0.16 -1 -1 32432 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 16.5 MiB 1.53 1075 7736 1882 5428 426 55.2 MiB 0.12 0.00 7.20863 -155.968 -7.20863 7.20863 1.10 0.00129196 0.00118232 0.0605415 0.0554382 38 2746 23 6.79088e+06 242496 678818. 2348.85 3.75 0.355069 0.319368 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0495451 0.0448983 109 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.25 17940 13 0.27 -1 -1 32908 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 17.1 MiB 1.37 1233 12542 3940 6787 1815 55.6 MiB 0.19 0.00 8.09146 -166.475 -8.09146 8.09146 1.10 0.00151712 0.00139019 0.111788 0.102523 36 3202 30 6.79088e+06 242496 648988. 2245.63 5.96 0.468673 0.42218 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0666535 0.0603667 128 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.30 18088 13 0.32 -1 -1 32924 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 17.4 MiB 1.61 1392 4695 845 3563 287 56.0 MiB 0.10 0.00 7.47587 -155.329 -7.47587 7.47587 1.13 0.0018211 0.00166868 0.0505948 0.0465154 40 3664 28 6.79088e+06 323328 706193. 2443.58 4.38 0.471906 0.425029 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0706126 0.0642379 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.24 17768 11 0.24 -1 -1 32696 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 17.1 MiB 1.58 1218 4659 929 3342 388 55.7 MiB 0.09 0.00 7.06923 -144.171 -7.06923 7.06923 1.12 0.00161455 0.00147964 0.0459976 0.0422468 36 3280 38 6.79088e+06 296384 648988. 2245.63 5.72 0.451043 0.405113 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.30 0.14 0.25 -1 -1 0.30 0.0629935 0.0572602 141 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 18224 15 0.36 -1 -1 32724 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 17.3 MiB 1.44 1290 8402 2178 5761 463 55.8 MiB 0.16 0.00 8.74612 -186.954 -8.74612 8.74612 1.11 0.00222516 0.00203988 0.0848816 0.0777432 46 3189 27 6.79088e+06 296384 828058. 2865.25 3.92 0.477728 0.430526 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.33 0.27 0.33 -1 -1 0.33 0.0948042 0.0857969 147 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.27 18188 13 0.31 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 17.1 MiB 1.91 1316 8641 2148 5636 857 55.8 MiB 0.15 0.00 8.07216 -175.63 -8.07216 8.07216 1.10 0.00166204 0.00152135 0.0828159 0.075941 40 2999 17 6.79088e+06 282912 706193. 2443.58 2.66 0.446771 0.402927 26254 175826 -1 2987 16 1343 3851 238119 53175 7.04981 7.04981 -167.947 -7.04981 0 0 926341. 3205.33 0.31 0.13 0.29 -1 -1 0.31 0.0582067 0.0528657 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.25 17556 12 0.19 -1 -1 32572 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 16.7 MiB 1.57 864 9543 2234 6923 386 55.1 MiB 0.14 0.00 7.58072 -150.751 -7.58072 7.58072 1.08 0.00134989 0.0012393 0.0801306 0.0735426 38 2787 32 6.79088e+06 242496 678818. 2348.85 4.81 0.399484 0.359485 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0471161 0.0428097 111 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.25 17824 11 0.15 -1 -1 32684 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 16.6 MiB 1.43 1018 5722 1217 4259 246 55.2 MiB 0.09 0.00 6.71746 -144.764 -6.71746 6.71746 1.08 0.00125485 0.00114851 0.0470147 0.0430831 36 2822 26 6.79088e+06 188608 648988. 2245.63 4.93 0.334063 0.299746 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.30 0.10 0.25 -1 -1 0.30 0.0458279 0.0414974 98 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.25 17780 13 0.31 -1 -1 32932 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1236 5940 1259 4215 466 55.7 MiB 0.12 0.00 8.31912 -162.691 -8.31912 8.31912 1.08 0.00166489 0.00152751 0.0597696 0.0548745 38 3344 20 6.79088e+06 282912 678818. 2348.85 3.64 0.41408 0.372299 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.05824 0.0529257 143 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.21 17344 10 0.15 -1 -1 32740 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.4 MiB 1.75 951 4560 1025 3135 400 55.1 MiB 0.07 0.00 6.21922 -128.027 -6.21922 6.21922 1.09 0.00122851 0.00111743 0.0375568 0.034471 30 2695 24 6.79088e+06 229024 556674. 1926.21 2.04 0.208946 0.188001 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0460033 0.0416265 101 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17552 14 0.19 -1 -1 32580 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 16.9 MiB 2.56 984 4532 878 3142 512 55.3 MiB 0.09 0.00 7.85466 -160.915 -7.85466 7.85466 1.13 0.00131867 0.0012064 0.0397098 0.0364887 34 3083 47 6.79088e+06 242496 618332. 2139.56 6.14 0.400214 0.358711 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0499815 0.0452653 110 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.25 17900 13 0.28 -1 -1 32720 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 17.2 MiB 2.31 1210 8183 2048 5045 1090 55.8 MiB 0.14 0.00 7.80505 -164.773 -7.80505 7.80505 1.08 0.00149214 0.00136747 0.0727666 0.066751 38 3002 19 6.79088e+06 269440 678818. 2348.85 3.84 0.398218 0.358231 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.29 0.12 0.20 -1 -1 0.29 0.0534021 0.0485201 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.24 17404 12 0.15 -1 -1 32664 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 3.10 940 12120 3498 6380 2242 55.3 MiB 0.16 0.00 6.85518 -144.407 -6.85518 6.85518 1.04 0.0012188 0.0011157 0.0895423 0.0819516 46 2350 15 6.79088e+06 229024 828058. 2865.25 2.76 0.336883 0.302995 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0441767 0.0400099 99 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.23 17812 12 0.20 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 17.0 MiB 1.91 1190 9694 2639 6567 488 55.6 MiB 0.16 0.00 7.04874 -155.773 -7.04874 7.04874 1.10 0.00159434 0.001459 0.091743 0.0840187 46 2758 18 6.79088e+06 242496 828058. 2865.25 2.95 0.429738 0.386783 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.37 0.11 0.33 -1 -1 0.37 0.0538111 0.0488858 130 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.28 18088 13 0.28 -1 -1 32860 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.08 1303 8543 2004 5667 872 55.7 MiB 0.15 0.00 7.83951 -165.716 -7.83951 7.83951 1.09 0.00162403 0.00148739 0.0821141 0.0751874 38 3278 20 6.79088e+06 269440 678818. 2348.85 4.52 0.438765 0.395208 25966 169698 -1 2822 21 1439 4066 220511 48947 6.93332 6.93332 -157.758 -6.93332 0 0 902133. 3121.57 0.31 0.15 0.25 -1 -1 0.31 0.0736603 0.0666597 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17640 11 0.17 -1 -1 32752 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 16.4 MiB 1.83 1116 6616 1429 3881 1306 55.0 MiB 0.10 0.00 6.2158 -147.345 -6.2158 6.2158 1.08 0.001282 0.001174 0.0530145 0.0485487 36 3218 33 6.79088e+06 215552 648988. 2245.63 4.52 0.358557 0.321304 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0497483 0.0452275 106 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17368 13 0.21 -1 -1 32632 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 2.47 994 9543 2876 4545 2122 55.3 MiB 0.15 0.00 7.66009 -161.63 -7.66009 7.66009 0.88 0.00143813 0.00131906 0.0852099 0.078042 38 3161 25 6.79088e+06 202080 678818. 2348.85 5.45 0.402065 0.361318 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.26 0.12 0.14 -1 -1 0.26 0.0602439 0.0545377 113 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.15 17812 13 0.25 -1 -1 32836 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 17.0 MiB 1.14 1317 8183 2040 5445 698 55.6 MiB 0.14 0.00 7.48608 -168.657 -7.48608 7.48608 1.12 0.00159587 0.00146318 0.077455 0.0710196 38 3334 18 6.79088e+06 255968 678818. 2348.85 3.64 0.41786 0.376314 25966 169698 -1 2836 17 1443 3829 193627 45163 6.69849 6.69849 -160.313 -6.69849 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640862 0.05816 136 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.26 17812 11 0.19 -1 -1 32620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 16.9 MiB 1.87 932 11088 4572 6163 353 55.4 MiB 0.16 0.00 6.40374 -127.638 -6.40374 6.40374 1.11 0.00138433 0.00126777 0.0936474 0.0858267 38 3204 35 6.79088e+06 255968 678818. 2348.85 8.79 0.436128 0.391873 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.31 0.11 0.28 -1 -1 0.31 0.048609 0.0440898 116 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.28 18296 14 0.31 -1 -1 33416 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 17.2 MiB 1.41 1275 12567 3064 6849 2654 55.7 MiB 0.22 0.00 8.90517 -187.129 -8.90517 8.90517 1.21 0.00184271 0.00168995 0.128182 0.117686 38 3597 20 6.79088e+06 309856 678818. 2348.85 3.50 0.422677 0.38148 25966 169698 -1 2719 15 1368 3478 182247 41956 8.06351 8.06351 -178.421 -8.06351 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0620139 0.0565333 159 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17248 12 0.15 -1 -1 32560 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 16.6 MiB 2.25 1076 14144 4263 7957 1924 55.2 MiB 0.18 0.00 6.67019 -155.032 -6.67019 6.67019 1.09 0.0012103 0.00110736 0.0988914 0.0905011 38 2834 33 6.79088e+06 255968 678818. 2348.85 3.94 0.382026 0.343349 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.30 0.10 0.27 -1 -1 0.30 0.0436854 0.0395255 106 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 17932 13 0.29 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 1.40 1249 10698 2850 6495 1353 55.6 MiB 0.18 0.00 8.17702 -169.59 -8.17702 8.17702 1.08 0.00160484 0.00147248 0.0989186 0.0907962 38 3574 20 6.79088e+06 269440 678818. 2348.85 4.38 0.438388 0.394867 25966 169698 -1 2827 19 1307 3681 195634 44638 7.25013 7.25013 -165.64 -7.25013 0 0 902133. 3121.57 0.31 0.18 0.27 -1 -1 0.31 0.0859186 0.0778216 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17940 13 0.18 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 16.5 MiB 1.09 988 12528 4457 5893 2178 55.2 MiB 0.17 0.00 7.60722 -166.135 -7.60722 7.60722 1.09 0.00129296 0.00118408 0.0926856 0.0848827 38 2718 29 6.79088e+06 269440 678818. 2348.85 3.11 0.383651 0.345026 25966 169698 -1 2116 22 1062 2686 131823 31124 6.36938 6.36938 -151.235 -6.36938 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0580037 0.0523704 107 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32860 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1129 6563 1390 4948 225 55.5 MiB 0.12 0.00 7.37103 -160.155 -7.37103 7.37103 1.08 0.00155782 0.00142697 0.0617814 0.056684 30 3342 45 6.79088e+06 255968 556674. 1926.21 2.91 0.326029 0.293444 24526 138013 -1 2538 16 1126 3371 177495 40121 6.37287 6.37287 -151.837 -6.37287 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0545174 0.0494777 128 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18520 15 0.47 -1 -1 33452 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 17.5 MiB 1.15 1461 7019 1723 4462 834 56.2 MiB 0.08 0.00 9.4802 -194.196 -9.4802 9.4802 1.10 0.000742782 0.000669311 0.0318727 0.028896 40 3857 20 6.79088e+06 336800 706193. 2443.58 4.56 0.481506 0.433224 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.30 0.21 0.28 -1 -1 0.30 0.0869634 0.0791462 183 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.22 17068 10 0.10 -1 -1 32152 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 16.0 MiB 1.44 790 7049 2015 4252 782 54.6 MiB 0.09 0.00 4.74332 -119.113 -4.74332 4.74332 1.15 0.000906631 0.00083008 0.044015 0.0403297 30 2094 24 6.79088e+06 161664 556674. 1926.21 1.95 0.163309 0.146204 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0297253 0.0267531 66 84 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17336 13 0.18 -1 -1 32616 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 16.5 MiB 1.47 974 10050 2926 5436 1688 55.3 MiB 0.14 0.00 7.74787 -157.983 -7.74787 7.74787 1.08 0.00127586 0.00116938 0.0798866 0.0732232 36 2911 43 6.79088e+06 229024 648988. 2245.63 4.65 0.417154 0.375892 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.29 0.13 0.27 -1 -1 0.29 0.0471027 0.0428886 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.25 17456 12 0.19 -1 -1 32648 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 17.0 MiB 1.86 1289 8448 2191 5318 939 55.5 MiB 0.14 0.00 7.18863 -160.485 -7.18863 7.18863 1.12 0.00146182 0.0013404 0.0733671 0.067316 38 3079 21 6.79088e+06 242496 678818. 2348.85 3.93 0.387811 0.348234 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0485068 0.044015 117 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17276 9 0.13 -1 -1 32488 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 16.2 MiB 0.82 752 9555 2712 5903 940 54.7 MiB 0.11 0.00 5.16629 -99.605 -5.16629 5.16629 1.10 0.00101083 0.000926136 0.0642708 0.0588988 30 2043 29 6.79088e+06 242496 556674. 1926.21 1.53 0.20802 0.186909 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0368551 0.0332237 86 110 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17652 12 0.25 -1 -1 32848 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.47 1312 13291 3621 7142 2528 55.7 MiB 0.22 0.00 7.35568 -164.212 -7.35568 7.35568 1.08 0.00167342 0.00152956 0.124389 0.113789 38 3697 28 6.79088e+06 282912 678818. 2348.85 6.45 0.517625 0.466691 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.29 0.14 0.28 -1 -1 0.29 0.062348 0.0567161 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.33 18436 13 0.58 -1 -1 32636 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 17.4 MiB 1.85 1311 13291 3763 7122 2406 55.8 MiB 0.22 0.00 8.3208 -173.057 -8.3208 8.3208 1.09 0.00169452 0.00155248 0.126755 0.116275 34 4579 49 6.79088e+06 296384 618332. 2139.56 9.72 0.576887 0.519299 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.065995 0.0596471 147 199 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.15 17528 1 0.03 -1 -1 30012 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 17.4 MiB 2.84 1137 15768 5063 8031 2674 56.0 MiB 0.25 0.00 5.46262 -163.811 -5.46262 5.46262 1.09 0.00116984 0.00107307 0.0975617 0.0894697 34 2793 23 6.87369e+06 363320 618332. 2139.56 2.50 0.352454 0.316595 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0427335 0.0384346 142 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30384 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 17.3 MiB 2.31 995 9347 2406 6094 847 55.9 MiB 0.16 0.00 4.40625 -134.148 -4.40625 4.40625 1.09 0.00118972 0.00109178 0.061674 0.056611 34 2568 29 6.87369e+06 335372 618332. 2139.56 2.19 0.329611 0.295604 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.049165 0.0442191 138 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 17.2 MiB 2.46 954 15337 4637 8345 2355 55.7 MiB 0.21 0.00 4.42735 -120.659 -4.42735 4.42735 1.09 0.00102822 0.00094253 0.0877293 0.0803448 34 2485 25 6.87369e+06 293451 618332. 2139.56 2.00 0.316347 0.283453 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405266 0.0363609 124 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.10 17468 1 0.03 -1 -1 30120 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 17.2 MiB 0.93 990 16170 4805 9691 1674 55.7 MiB 0.23 0.00 4.56722 -126.881 -4.56722 4.56722 1.12 0.00104656 0.000959559 0.0861792 0.0790357 34 2380 21 6.87369e+06 405241 618332. 2139.56 2.13 0.307887 0.276164 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0469857 0.0420779 124 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30112 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 17.1 MiB 1.14 1020 12127 3332 7989 806 55.7 MiB 0.19 0.00 4.58138 -135.491 -4.58138 4.58138 1.10 0.00114263 0.00104674 0.0708246 0.0648306 28 2864 24 6.87369e+06 377294 531479. 1839.03 1.75 0.192581 0.172176 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0508992 0.0456721 131 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.12 17548 1 0.03 -1 -1 30152 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 17.1 MiB 1.28 1076 15643 4151 9274 2218 55.8 MiB 0.22 0.00 3.36233 -119.977 -3.36233 3.36233 1.10 0.00119656 0.00109639 0.0909206 0.0833503 28 2604 23 6.87369e+06 419215 531479. 1839.03 1.24 0.245803 0.221516 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0493979 0.0444308 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30452 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 16.8 MiB 1.94 768 11200 3422 6221 1557 55.3 MiB 0.14 0.00 3.88482 -108.503 -3.88482 3.88482 1.10 0.000888851 0.000813251 0.0623708 0.0571038 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.85 0.245005 0.218902 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0346178 0.0309264 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 29940 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.83 962 13487 3595 7903 1989 55.5 MiB 0.16 0.00 3.53179 -106.578 -3.53179 3.53179 1.09 0.000976574 0.000896195 0.0633145 0.0580553 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.85 0.2634 0.235979 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03849 0.0344779 119 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29964 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 925 12636 4369 6197 2070 55.7 MiB 0.18 0.00 3.30197 -112.873 -3.30197 3.30197 1.09 0.00103193 0.000944823 0.0786399 0.0720205 36 2160 23 6.87369e+06 237555 648988. 2245.63 2.16 0.298473 0.267127 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0406624 0.0363944 113 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.20 17480 1 0.03 -1 -1 30020 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 16.8 MiB 3.35 866 10916 3152 5921 1843 55.4 MiB 0.16 0.00 4.09393 -136.454 -4.09393 4.09393 1.09 0.00101297 0.000928277 0.0669555 0.0614164 34 2156 24 6.87369e+06 223581 618332. 2139.56 2.04 0.288252 0.258015 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416932 0.0373387 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30148 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 17.0 MiB 2.73 765 11532 2973 7641 918 55.5 MiB 0.16 0.00 4.09699 -119.415 -4.09699 4.09699 1.11 0.00100162 0.000916988 0.0721129 0.0660676 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.87 0.277695 0.248346 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0397461 0.0355601 98 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 29912 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.7 MiB 2.07 706 8306 1954 5512 840 55.3 MiB 0.11 0.00 3.6525 -111.833 -3.6525 3.6525 1.10 0.00095027 0.000870694 0.0477752 0.0438127 36 1988 27 6.87369e+06 237555 648988. 2245.63 2.24 0.255915 0.227923 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.036027 0.0322133 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30120 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.3 MiB 3.24 1028 16599 6315 8361 1923 55.9 MiB 0.26 0.00 4.13563 -133.6 -4.13563 4.13563 1.12 0.00116085 0.00106309 0.103384 0.0947033 34 3057 25 6.87369e+06 321398 618332. 2139.56 2.48 0.346776 0.311304 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0500973 0.0450245 142 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30116 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 17.2 MiB 2.16 989 10031 2534 6882 615 55.9 MiB 0.17 0.00 4.81484 -142.23 -4.81484 4.81484 1.18 0.0012104 0.00111051 0.0592255 0.0543181 32 2593 24 6.87369e+06 433189 586450. 2029.24 1.40 0.218992 0.196897 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.050661 0.0455 133 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17284 1 0.03 -1 -1 30128 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 614 5068 1019 3719 330 55.1 MiB 0.07 0.00 3.26207 -95.0897 -3.26207 3.26207 1.10 0.00086205 0.000790637 0.0280054 0.0257328 26 1919 28 6.87369e+06 265503 503264. 1741.40 1.22 0.146405 0.130499 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0438057 0.0392496 94 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17840 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 17.3 MiB 1.78 1007 16078 5563 8042 2473 55.9 MiB 0.25 0.00 3.7063 -122.467 -3.7063 3.7063 1.10 0.00120518 0.0011045 0.103101 0.0945459 34 2625 21 6.87369e+06 335372 618332. 2139.56 2.17 0.35071 0.314953 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0520151 0.0467671 135 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 29916 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 17.2 MiB 3.49 1032 15523 6549 8204 770 55.8 MiB 0.22 0.00 4.15353 -134.149 -4.15353 4.15353 1.09 0.00113799 0.00104339 0.0983876 0.0900048 34 2905 38 6.87369e+06 293451 618332. 2139.56 2.55 0.382702 0.343308 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.022077 0.0196645 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17664 1 0.03 -1 -1 30088 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 16.9 MiB 2.22 847 14168 4025 7985 2158 55.6 MiB 0.18 0.00 3.09156 -110.795 -3.09156 3.09156 1.10 0.00105161 0.000962638 0.0747061 0.0683976 34 2031 19 6.87369e+06 391268 618332. 2139.56 2.00 0.29416 0.263193 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0466682 0.0416947 109 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 29884 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 16.5 MiB 0.52 656 11276 3436 6760 1080 55.1 MiB 0.12 0.00 2.61023 -88.8242 -2.61023 2.61023 1.11 0.000769556 0.000704437 0.0566723 0.0519054 32 1559 23 6.87369e+06 195634 586450. 2029.24 1.24 0.156387 0.139138 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.25 0.07 0.25 -1 -1 0.25 0.0338849 0.0300959 71 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30396 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 2.59 778 9338 2420 6492 426 55.6 MiB 0.15 0.00 4.95513 -145.252 -4.95513 4.95513 1.09 0.000988702 0.000906832 0.0545129 0.0499787 34 2105 23 6.87369e+06 265503 618332. 2139.56 1.96 0.26454 0.236279 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0378891 0.0339741 116 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.23 17544 1 0.03 -1 -1 30196 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 17.1 MiB 0.77 985 11499 2787 8050 662 55.7 MiB 0.17 0.00 4.26399 -136.517 -4.26399 4.26399 1.09 0.00115183 0.00105591 0.0614296 0.0563335 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.51 0.254125 0.22832 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0611862 0.0549181 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30200 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 1.90 995 6701 1305 5169 227 55.7 MiB 0.13 0.00 4.31715 -129.69 -4.31715 4.31715 1.10 0.00121195 0.00111218 0.0462457 0.0424281 34 3077 27 6.87369e+06 307425 618332. 2139.56 2.87 0.319943 0.286288 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.29 0.15 0.24 -1 -1 0.29 0.0550466 0.0496728 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17368 1 0.02 -1 -1 30396 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 16.4 MiB 1.53 371 10977 3839 5013 2125 55.0 MiB 0.11 0.00 2.58413 -70.3474 -2.58413 2.58413 1.16 0.000658575 0.000601153 0.0482886 0.0441518 28 1325 27 6.87369e+06 237555 531479. 1839.03 1.15 0.136795 0.122014 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0281548 0.0249888 67 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17040 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.7 MiB 0.91 952 5847 1159 4467 221 55.5 MiB 0.09 0.00 4.63338 -129.909 -4.63338 4.63338 1.08 0.00101034 0.000927375 0.0331739 0.030414 30 2387 25 6.87369e+06 321398 556674. 1926.21 1.37 0.17051 0.152598 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0503555 0.0453994 119 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 16972 1 0.02 -1 -1 29912 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.4 MiB 0.39 704 9676 3283 5033 1360 54.9 MiB 0.06 0.00 2.58823 -84.5042 -2.58823 2.58823 1.14 0.000636772 0.000581042 0.0187246 0.0169526 28 1429 20 6.87369e+06 167686 531479. 1839.03 1.16 0.0987679 0.0873839 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.23 0.05 0.20 -1 -1 0.23 0.0209922 0.0186754 65 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17208 1 0.03 -1 -1 29824 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 16.6 MiB 0.75 922 10744 2499 7805 440 55.4 MiB 0.15 0.00 4.70738 -131.097 -4.70738 4.70738 1.09 0.00103964 0.000954101 0.0552546 0.0506788 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.46 0.184955 0.166174 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.22 0.13 0.19 -1 -1 0.22 0.0514779 0.0461193 120 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.11 17124 1 0.03 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.9 MiB 0.78 1018 15215 4457 9037 1721 55.4 MiB 0.20 0.00 3.58631 -115.037 -3.58631 3.58631 1.10 0.00105965 0.000973512 0.0766369 0.070337 28 2435 25 6.87369e+06 433189 531479. 1839.03 1.34 0.217143 0.195634 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0349007 0.0314423 130 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30120 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1070 17066 5177 9769 2120 55.7 MiB 0.25 0.00 4.79173 -136.462 -4.79173 4.79173 1.09 0.00111852 0.00102531 0.0955342 0.0875644 30 2520 24 6.87369e+06 391268 556674. 1926.21 1.32 0.241781 0.217889 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0391791 0.0352783 131 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17544 1 0.03 -1 -1 29932 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 16.7 MiB 0.82 703 9368 2220 5797 1351 55.3 MiB 0.14 0.00 3.24007 -107.338 -3.24007 3.24007 1.09 0.000969356 0.000888815 0.0558179 0.0512335 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.89 0.25784 0.230376 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.039734 0.0355098 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17204 1 0.03 -1 -1 30260 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 16.9 MiB 1.05 624 12763 3540 6427 2796 55.4 MiB 0.14 0.00 3.24697 -98.9537 -3.24697 3.24697 1.10 0.000905242 0.000828437 0.0592897 0.0542704 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.88 0.255693 0.228092 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0341161 0.0305116 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30028 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 16.9 MiB 0.82 763 12694 4114 7113 1467 55.4 MiB 0.16 0.00 3.5993 -104.629 -3.5993 3.5993 1.09 0.000895647 0.000821123 0.0706879 0.0648407 32 2109 21 6.87369e+06 251529 586450. 2029.24 1.27 0.182496 0.163976 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.24 0.09 0.16 -1 -1 0.24 0.0341036 0.0304703 95 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.78 834 13031 3636 7853 1542 55.5 MiB 0.17 0.00 3.99153 -123.226 -3.99153 3.99153 1.10 0.000908594 0.00083343 0.0701986 0.0643919 30 1992 21 6.87369e+06 237555 556674. 1926.21 1.21 0.185159 0.166466 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0358872 0.0320927 101 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30080 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 17.0 MiB 0.92 614 5831 1071 4187 573 55.5 MiB 0.08 0.00 3.5993 -104.92 -3.5993 3.5993 1.11 0.000942266 0.000863803 0.030124 0.0275994 34 1764 25 6.87369e+06 363320 618332. 2139.56 2.01 0.226207 0.201135 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0341071 0.030541 102 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30232 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 16.7 MiB 2.67 863 14072 4376 7539 2157 55.3 MiB 0.17 0.00 3.04756 -100.489 -3.04756 3.04756 1.10 0.000963519 0.000882567 0.0742504 0.0680318 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.93 0.282524 0.252565 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0364303 0.0325656 106 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 30368 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 17.2 MiB 3.11 1118 10108 2278 7040 790 55.8 MiB 0.16 0.00 4.17389 -123.088 -4.17389 4.17389 1.13 0.00125377 0.00115196 0.0551752 0.0506494 26 3090 38 6.87369e+06 558954 503264. 1741.40 2.37 0.24751 0.22246 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.21 0.37 0.10 -1 -1 0.21 0.158687 0.142126 156 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 30056 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 17.4 MiB 2.85 1050 18428 5889 9545 2994 55.9 MiB 0.25 0.00 3.99748 -134.85 -3.99748 3.99748 1.10 0.00126275 0.00115732 0.101552 0.0929345 30 2304 26 6.87369e+06 531006 556674. 1926.21 1.35 0.270848 0.244201 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0457081 0.0411272 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17728 1 0.03 -1 -1 29884 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.9 MiB 1.85 729 12681 4828 6102 1751 55.5 MiB 0.17 0.00 4.09163 -121.55 -4.09163 4.09163 1.10 0.000998343 0.000909436 0.0727164 0.0665998 36 2115 36 6.87369e+06 251529 648988. 2245.63 2.52 0.297918 0.266009 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0363083 0.0325031 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30232 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 17.2 MiB 2.26 953 14543 4925 6755 2863 55.8 MiB 0.22 0.00 3.78134 -121.658 -3.78134 3.78134 1.10 0.00121753 0.00111707 0.092723 0.0851141 34 2770 24 6.87369e+06 363320 618332. 2139.56 2.26 0.354562 0.318161 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0495583 0.0445299 136 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17748 1 0.03 -1 -1 30272 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 17.2 MiB 3.56 1511 10033 2621 6359 1053 55.9 MiB 0.19 0.00 5.60672 -170.903 -5.60672 5.60672 1.10 0.00123988 0.0011376 0.0661355 0.0606186 36 3561 24 6.87369e+06 349346 648988. 2245.63 3.19 0.335264 0.300324 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.049363 0.0444416 159 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17440 1 0.03 -1 -1 30244 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 17.2 MiB 3.10 1142 14964 4330 8425 2209 55.8 MiB 0.24 0.00 5.2871 -162.814 -5.2871 5.2871 1.09 0.00124341 0.0011398 0.0961406 0.0882082 34 2876 29 6.87369e+06 377294 618332. 2139.56 2.24 0.373323 0.335345 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051341 0.046205 152 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.24 17680 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 17.0 MiB 2.56 964 8863 1996 5999 868 55.7 MiB 0.16 0.00 4.10673 -127.256 -4.10673 4.10673 1.09 0.00115809 0.00106169 0.0560972 0.0514876 34 2616 23 6.87369e+06 349346 618332. 2139.56 2.42 0.302219 0.270847 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0481247 0.0431939 131 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17344 1 0.03 -1 -1 30260 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 16.9 MiB 2.31 831 14175 5092 5953 3130 55.6 MiB 0.19 0.00 4.31305 -113.651 -4.31305 4.31305 1.11 0.0010069 0.000923402 0.0803594 0.0737034 34 2736 36 6.87369e+06 279477 618332. 2139.56 2.52 0.32399 0.289731 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0434897 0.0389097 119 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17812 1 0.03 -1 -1 30312 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57720 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 17.6 MiB 3.07 1125 12954 3388 8890 676 56.4 MiB 0.24 0.01 4.84068 -153.465 -4.84068 4.84068 1.08 0.00147061 0.0013497 0.0843156 0.0774585 30 2992 40 6.87369e+06 531006 556674. 1926.21 1.78 0.30639 0.275453 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.059998 0.0541759 173 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30168 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 16.7 MiB 1.54 779 13291 4134 7087 2070 55.2 MiB 0.17 0.00 3.55895 -107.74 -3.55895 3.55895 1.09 0.00090143 0.000826536 0.0672226 0.0616137 32 2017 21 6.87369e+06 307425 586450. 2029.24 1.30 0.182823 0.163825 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0343096 0.0306247 96 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30016 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.1 MiB 2.12 1055 8969 2107 6380 482 55.6 MiB 0.16 0.00 4.79158 -142.334 -4.79158 4.79158 1.08 0.00114727 0.0010531 0.0571597 0.052522 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.49 0.204889 0.184461 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0488297 0.0438813 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17472 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 17.2 MiB 1.72 980 9951 2142 7372 437 55.7 MiB 0.16 0.00 3.6843 -115.486 -3.6843 3.6843 1.10 0.00114017 0.00104345 0.054876 0.0502675 32 2890 26 6.87369e+06 447163 586450. 2029.24 1.52 0.214694 0.192887 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.28 0.13 0.22 -1 -1 0.28 0.0483915 0.0435044 132 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17272 1 0.03 -1 -1 29916 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 17.1 MiB 0.62 972 9537 2296 6533 708 55.6 MiB 0.15 0.00 4.25479 -129.925 -4.25479 4.25479 1.10 0.00103305 0.000948691 0.0517253 0.0474601 34 2449 22 6.87369e+06 363320 618332. 2139.56 2.04 0.272205 0.243703 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.042724 0.0383319 123 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30144 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 2.75 1122 14450 4547 7634 2269 55.9 MiB 0.22 0.00 5.14049 -153.237 -5.14049 5.14049 1.15 0.0011651 0.00106167 0.0920349 0.0844038 34 2716 24 6.87369e+06 307425 618332. 2139.56 2.03 0.341431 0.306754 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0483511 0.0435009 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17572 1 0.03 -1 -1 30108 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 17.1 MiB 2.76 990 17178 5882 8168 3128 55.6 MiB 0.22 0.00 3.6884 -118.378 -3.6884 3.6884 1.13 0.00119028 0.00109152 0.0969832 0.0890224 30 2877 24 6.87369e+06 447163 556674. 1926.21 2.06 0.24617 0.221899 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0506258 0.0454724 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17612 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 17.3 MiB 2.72 922 18795 6474 8507 3814 56.0 MiB 0.25 0.00 4.11773 -131.117 -4.11773 4.11773 1.09 0.001253 0.00114877 0.106613 0.0977332 34 3101 29 6.87369e+06 489084 618332. 2139.56 3.81 0.394023 0.354189 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0497199 0.0445939 144 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17500 1 0.03 -1 -1 30112 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 17.2 MiB 0.81 881 12751 3354 7696 1701 55.7 MiB 0.18 0.00 4.26989 -123.123 -4.26989 4.26989 1.14 0.00105861 0.000969819 0.0629599 0.0576046 30 2195 22 6.87369e+06 461137 556674. 1926.21 1.25 0.19795 0.177861 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0433435 0.038876 124 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 1.96 1140 14450 4739 7431 2280 55.7 MiB 0.22 0.00 4.86398 -140.272 -4.86398 4.86398 0.93 0.00108809 0.00099787 0.086344 0.0792406 34 2688 26 6.87369e+06 307425 618332. 2139.56 2.17 0.324166 0.291016 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.30 0.13 0.24 -1 -1 0.30 0.0510374 0.0458698 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.23 17548 1 0.03 -1 -1 30132 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 17.1 MiB 1.94 912 13105 4297 5300 3508 55.7 MiB 0.20 0.00 4.74348 -140.694 -4.74348 4.74348 1.10 0.00121584 0.00111409 0.0919869 0.0843179 36 3390 47 6.87369e+06 307425 648988. 2245.63 6.53 0.407763 0.365761 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0444339 0.0399813 141 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30156 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 17.0 MiB 2.52 1089 15709 4726 9045 1938 55.6 MiB 0.26 0.00 4.3693 -136.102 -4.3693 4.3693 1.10 0.00125378 0.00114917 0.11062 0.101378 34 2963 29 6.87369e+06 293451 618332. 2139.56 2.33 0.390143 0.350441 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0414054 0.0367764 135 77 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17516 1 0.03 -1 -1 29852 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 16.7 MiB 0.65 730 9914 2670 6709 535 55.2 MiB 0.13 0.00 3.5583 -105.077 -3.5583 3.5583 1.11 0.000888448 0.000814877 0.049088 0.045012 28 1795 23 6.87369e+06 307425 531479. 1839.03 1.19 0.163896 0.146544 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.25 0.09 0.20 -1 -1 0.25 0.0366539 0.0327269 93 23 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.15 17708 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 17.1 MiB 1.58 968 15568 5616 7798 2154 55.7 MiB 0.23 0.00 3.7434 -130.891 -3.7434 3.7434 1.10 0.00111355 0.00102049 0.100662 0.0921985 34 2779 24 6.87369e+06 251529 618332. 2139.56 2.48 0.345504 0.310017 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0513225 0.0459169 124 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30200 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 17.4 MiB 2.65 1427 16858 5256 9636 1966 55.9 MiB 0.31 0.01 5.58608 -163.667 -5.58608 5.58608 1.12 0.00130956 0.00119393 0.116751 0.106994 34 3599 26 6.87369e+06 335372 618332. 2139.56 2.40 0.400091 0.360503 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0565629 0.0509837 166 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30248 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 16.9 MiB 2.71 968 18998 5516 10575 2907 55.6 MiB 0.26 0.00 4.31005 -135.578 -4.31005 4.31005 1.15 0.00114826 0.00105287 0.10061 0.0921914 28 2295 25 6.87369e+06 475111 531479. 1839.03 1.43 0.254037 0.229213 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0497725 0.0447427 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30344 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 16.6 MiB 0.69 634 6615 1367 5002 246 55.2 MiB 0.10 0.00 3.6392 -108.305 -3.6392 3.6392 1.12 0.000949142 0.000870264 0.0351363 0.0322151 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.89 0.179869 0.160598 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0409999 0.0366091 104 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18040 1 0.03 -1 -1 30148 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 17.5 MiB 4.62 1457 14543 4326 8631 1586 56.0 MiB 0.25 0.00 5.90291 -175.463 -5.90291 5.90291 1.15 0.00140404 0.00128981 0.106924 0.098195 34 3438 35 6.87369e+06 349346 618332. 2139.56 2.82 0.450574 0.404975 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0567522 0.0510925 171 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 17.1 MiB 2.91 1003 17199 4580 10530 2089 55.8 MiB 0.22 0.00 4.63938 -140.336 -4.63938 4.63938 1.09 0.00113653 0.00104279 0.086217 0.0790462 32 2464 25 6.87369e+06 489084 586450. 2029.24 1.30 0.235118 0.211893 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.25 0.14 0.25 -1 -1 0.25 0.0583252 0.0523287 135 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.21 17004 1 0.03 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.6 MiB 0.60 878 10618 2802 6933 883 55.1 MiB 0.13 0.00 3.66956 -107.639 -3.66956 3.66956 1.09 0.000842428 0.000772955 0.0483077 0.0443019 30 1958 22 6.87369e+06 335372 556674. 1926.21 1.20 0.153992 0.137786 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0301438 0.0269005 94 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30088 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 17.2 MiB 1.91 1091 19371 5911 10963 2497 55.8 MiB 0.29 0.00 5.19487 -138.438 -5.19487 5.19487 1.09 0.00119073 0.00109154 0.107031 0.0981231 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.92 0.258793 0.233494 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0504607 0.0453269 145 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17020 1 0.03 -1 -1 29900 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.9 MiB 0.70 765 8363 1967 5928 468 55.4 MiB 0.12 0.00 3.6502 -113.574 -3.6502 3.6502 1.14 0.000890535 0.000816823 0.0436033 0.0399958 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.94 0.230874 0.206007 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0333727 0.0298343 98 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30260 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 16.8 MiB 2.14 687 8418 1716 5962 740 55.4 MiB 0.11 0.00 3.88482 -111.398 -3.88482 3.88482 1.10 0.000952754 0.000872315 0.0402322 0.0367669 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.77 0.160885 0.14387 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0341463 0.0305437 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.23 17824 1 0.03 -1 -1 30200 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 17.3 MiB 3.37 1118 13105 3443 8133 1529 55.9 MiB 0.22 0.00 4.10563 -124.474 -4.10563 4.10563 1.08 0.00117506 0.00107908 0.0855685 0.0785651 34 2878 24 6.87369e+06 335372 618332. 2139.56 2.29 0.344993 0.309998 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0515055 0.0461992 138 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30116 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 17.3 MiB 1.97 806 8532 1884 6173 475 55.9 MiB 0.13 0.00 4.39805 -136.981 -4.39805 4.39805 1.09 0.00117657 0.0010785 0.0530477 0.0486391 34 2439 23 6.87369e+06 363320 618332. 2139.56 2.09 0.299316 0.267767 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.26 0.11 0.20 -1 -1 0.26 0.0503472 0.0451689 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 29964 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 16.9 MiB 1.96 1121 14983 4753 8344 1886 55.6 MiB 0.23 0.00 4.71348 -141.457 -4.71348 4.71348 1.08 0.00117336 0.00107288 0.089057 0.0814205 32 3230 48 6.87369e+06 377294 586450. 2029.24 1.72 0.230021 0.20632 25474 144626 -1 2572 20 1540 2596 302466 61481 4.17136 4.17136 -144.462 -4.17136 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0466228 0.0418861 133 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30204 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.8 MiB 3.01 883 12923 4460 6401 2062 55.2 MiB 0.18 0.00 4.76482 -134.311 -4.76482 4.76482 1.11 0.000942363 0.000863762 0.0748571 0.0686393 34 2173 23 6.87369e+06 209608 618332. 2139.56 2.03 0.275504 0.246284 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0436354 0.0389494 103 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 16.8 MiB 2.36 973 14184 4741 7494 1949 55.5 MiB 0.20 0.00 3.76746 -124.928 -3.76746 3.76746 1.11 0.00104036 0.000952347 0.0890098 0.0815109 34 2486 19 6.87369e+06 237555 618332. 2139.56 2.15 0.311427 0.278515 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0397929 0.0356554 114 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30248 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 17.3 MiB 2.32 925 17835 5186 10054 2595 55.8 MiB 0.23 0.00 3.47005 -102.148 -3.47005 3.47005 1.12 0.00109299 0.000990592 0.0916177 0.0835937 32 2458 31 6.87369e+06 475111 586450. 2029.24 1.35 0.246458 0.221357 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464306 0.0415659 124 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.20 17204 1 0.03 -1 -1 30228 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 16.9 MiB 1.66 875 14783 4032 9129 1622 55.5 MiB 0.18 0.00 4.05975 -105.458 -4.05975 4.05975 1.12 0.000964005 0.00088451 0.0674525 0.0617504 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.63 0.198666 0.178204 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0397022 0.0354872 117 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30284 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 2.48 802 13599 4534 7471 1594 55.4 MiB 0.20 0.00 4.04073 -123.042 -4.04073 4.04073 1.10 0.00104353 0.000956607 0.0865742 0.0793737 28 2087 22 6.87369e+06 237555 531479. 1839.03 1.61 0.221733 0.199532 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.23 0.11 0.17 -1 -1 0.23 0.0433918 0.0388331 105 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17492 1 0.03 -1 -1 29956 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 17.1 MiB 2.50 1020 11806 3110 7534 1162 55.6 MiB 0.19 0.00 3.6756 -125.066 -3.6756 3.6756 1.11 0.00115759 0.00106548 0.0776347 0.0711589 34 2679 22 6.87369e+06 237555 618332. 2139.56 2.27 0.3156 0.282166 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0407596 0.0366541 122 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17216 1 0.03 -1 -1 30240 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 17.2 MiB 0.70 1014 15430 4861 8054 2515 55.7 MiB 0.21 0.00 4.6284 -133.663 -4.6284 4.6284 1.08 0.00103659 0.000950404 0.0778856 0.0713369 32 2693 29 6.87369e+06 433189 586450. 2029.24 1.45 0.2229 0.200597 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0394341 0.0354115 129 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.1 MiB 2.97 1172 16215 5632 8430 2153 55.8 MiB 0.28 0.01 4.82738 -155.303 -4.82738 4.82738 1.08 0.00118466 0.00108712 0.102786 0.0943375 34 3239 22 6.87369e+06 321398 618332. 2139.56 2.29 0.351728 0.316263 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0471756 0.0424646 147 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30156 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 17.5 MiB 3.44 951 10308 2331 7565 412 55.9 MiB 0.17 0.00 5.39654 -155.229 -5.39654 5.39654 1.08 0.00125147 0.00114661 0.0602278 0.0551991 34 2817 24 6.87369e+06 503058 618332. 2139.56 2.75 0.326765 0.292969 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.056744 0.0509518 147 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17612 1 0.03 -1 -1 30200 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 17.2 MiB 2.80 1114 12702 3372 8526 804 55.9 MiB 0.20 0.00 4.59844 -147.406 -4.59844 4.59844 1.10 0.00127091 0.00116653 0.0701108 0.0641225 28 3068 25 6.87369e+06 572927 531479. 1839.03 2.18 0.240863 0.216813 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.0596606 0.0535772 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17224 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 17.0 MiB 2.21 643 13768 5811 6950 1007 55.6 MiB 0.17 0.00 4.04073 -117.599 -4.04073 4.04073 1.12 0.000933645 0.000855475 0.0788415 0.0722911 36 1975 29 6.87369e+06 237555 648988. 2245.63 3.07 0.292429 0.261508 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.25 0.04 0.13 -1 -1 0.25 0.015893 0.0140921 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30204 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 17.2 MiB 3.14 958 7038 1640 4840 558 55.8 MiB 0.13 0.00 4.57902 -143.19 -4.57902 4.57902 1.15 0.00122002 0.00111677 0.050452 0.0462371 34 2472 21 6.87369e+06 307425 618332. 2139.56 2.20 0.308633 0.276604 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.26 0.12 0.26 -1 -1 0.26 0.0489913 0.0441345 136 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30100 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.1 MiB 2.30 1035 6615 1396 4961 258 55.7 MiB 0.13 0.00 5.21006 -150.271 -5.21006 5.21006 1.09 0.00116252 0.00106808 0.0434835 0.0399114 34 2845 24 6.87369e+06 321398 618332. 2139.56 2.44 0.292221 0.261153 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0490046 0.0440331 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30200 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1178 17839 5313 10611 1915 55.8 MiB 0.26 0.00 5.241 -151.339 -5.241 5.241 1.09 0.00112774 0.00103357 0.102139 0.0936497 36 2587 21 6.87369e+06 391268 648988. 2245.63 2.24 0.339207 0.304504 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.28 0.11 0.24 -1 -1 0.28 0.0454221 0.040835 141 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 17.2 MiB 2.34 1032 10531 2482 6524 1525 55.7 MiB 0.16 0.00 4.69758 -143.214 -4.69758 4.69758 1.10 0.0012019 0.00110052 0.0626885 0.0574338 32 2579 23 6.87369e+06 447163 586450. 2029.24 1.35 0.220934 0.198548 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0501669 0.045029 135 83 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17788 1 0.03 -1 -1 30120 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1030 11245 3242 7121 882 55.7 MiB 0.19 0.00 4.79284 -145.044 -4.79284 4.79284 1.09 0.00120243 0.00110169 0.0754728 0.0691563 34 2708 22 6.87369e+06 293451 618332. 2139.56 2.20 0.328567 0.294923 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0549061 0.0492868 132 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.18 17780 1 0.02 -1 -1 30104 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 17.0 MiB 2.35 973 10944 3003 6644 1297 55.6 MiB 0.17 0.00 4.08063 -124.263 -4.08063 4.08063 1.10 0.00119469 0.00109372 0.0683323 0.0626063 34 2457 23 6.87369e+06 405241 618332. 2139.56 2.19 0.326548 0.29268 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0535818 0.0480871 132 85 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.16 17040 1 0.03 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.7 MiB 0.60 780 13906 5362 7318 1226 55.1 MiB 0.18 0.00 4.08063 -122.384 -4.08063 4.08063 1.23 0.00088075 0.000808531 0.0728737 0.0668639 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.90 0.289997 0.259228 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0347832 0.0310972 96 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.16 17632 1 0.02 -1 -1 30136 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 17.4 MiB 4.09 1081 9548 2182 6489 877 55.9 MiB 0.15 0.00 4.62608 -140.581 -4.62608 4.62608 1.08 0.00121786 0.0011163 0.0547578 0.0501773 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.49 0.225313 0.202471 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.047923 0.04307 137 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30208 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 17.2 MiB 3.47 1050 13477 3452 8462 1563 55.9 MiB 0.24 0.00 4.60818 -154.696 -4.60818 4.60818 1.08 0.0012808 0.001174 0.0963612 0.0883918 34 2764 25 6.87369e+06 293451 618332. 2139.56 2.80 0.383849 0.344758 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488461 0.0440008 142 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17504 1 0.02 -1 -1 29888 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 16.8 MiB 2.79 803 10744 3029 6489 1226 55.3 MiB 0.16 0.00 4.47622 -122.656 -4.47622 4.47622 1.09 0.000939872 0.000862157 0.0608998 0.0558999 34 2330 21 6.87369e+06 223581 618332. 2139.56 2.08 0.227181 0.202151 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.28 0.04 0.25 -1 -1 0.28 0.0160197 0.0142619 106 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30232 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 17.0 MiB 0.64 704 7103 1505 5021 577 55.5 MiB 0.11 0.00 4.06963 -117.109 -4.06963 4.06963 1.09 0.00088824 0.000815197 0.0371049 0.0340427 30 1825 19 6.87369e+06 279477 556674. 1926.21 1.18 0.142927 0.127765 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.25 0.07 0.22 -1 -1 0.25 0.0292888 0.0262723 99 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17544 1 0.04 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 17.3 MiB 2.65 1122 16407 5100 9312 1995 55.9 MiB 0.27 0.00 4.76368 -149.576 -4.76368 4.76368 1.10 0.00116865 0.00107344 0.103522 0.0950554 34 3132 23 6.87369e+06 321398 618332. 2139.56 2.46 0.359398 0.323537 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0469041 0.0421885 145 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 17.3 MiB 2.30 1027 10087 2665 7077 345 55.9 MiB 0.16 0.00 5.28228 -152.543 -5.28228 5.28228 1.12 0.00138567 0.00128784 0.0614257 0.0563639 36 2623 39 6.87369e+06 377294 648988. 2245.63 2.62 0.344948 0.308984 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0445001 0.0400465 142 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 29956 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.93 1027 19820 5642 10737 3441 55.8 MiB 0.29 0.00 5.45503 -148.146 -5.45503 5.45503 1.08 0.00121612 0.00111807 0.107206 0.098231 30 3056 37 6.87369e+06 503058 556674. 1926.21 1.58 0.292952 0.26461 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.26 0.12 0.21 -1 -1 0.26 0.05014 0.0451766 157 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29952 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 17.2 MiB 2.23 803 13893 3888 7187 2818 55.6 MiB 0.18 0.00 3.64131 -107.005 -3.64131 3.64131 1.09 0.00105043 0.000962367 0.0692627 0.0634947 32 2150 23 6.87369e+06 475111 586450. 2029.24 1.33 0.204167 0.183648 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0445553 0.0398193 119 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17396 1 0.03 -1 -1 30448 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 16.7 MiB 0.89 507 7132 1637 4881 614 55.2 MiB 0.09 0.00 3.6605 -96.1635 -3.6605 3.6605 1.08 0.000876497 0.000803229 0.0385784 0.035388 30 1496 20 6.87369e+06 293451 556674. 1926.21 1.23 0.147884 0.132483 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.25 0.06 0.22 -1 -1 0.25 0.0302516 0.0270396 96 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.22 18076 1 0.03 -1 -1 30104 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 3.22 1378 10228 2746 6595 887 56.2 MiB 0.20 0.01 4.35815 -140.01 -4.35815 4.35815 1.08 0.000949139 0.000853683 0.0530295 0.047898 34 3944 37 6.87369e+06 335372 618332. 2139.56 4.04 0.378197 0.338351 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515533 0.0464878 165 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17728 1 0.04 -1 -1 30128 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 17.3 MiB 3.75 1036 15709 5736 7909 2064 55.9 MiB 0.24 0.00 5.60997 -168.26 -5.60997 5.60997 1.09 0.00118652 0.00108835 0.103341 0.0947328 34 2870 35 6.87369e+06 307425 618332. 2139.56 2.65 0.384237 0.345103 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0533136 0.0479038 139 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.18 17616 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 17.0 MiB 3.86 954 12542 3477 7836 1229 55.6 MiB 0.18 0.00 4.34735 -144.276 -4.34735 4.34735 1.06 0.00107359 0.000982983 0.0781178 0.0715394 34 2396 24 6.87369e+06 251529 618332. 2139.56 2.40 0.311446 0.278793 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.042494 0.0380972 118 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30228 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 17.3 MiB 1.02 986 18523 6141 9875 2507 55.9 MiB 0.24 0.00 5.03998 -136.555 -5.03998 5.03998 1.09 0.00111349 0.00101161 0.0951427 0.0870949 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.68 0.242867 0.21878 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.25 0.12 0.20 -1 -1 0.25 0.0481912 0.0431683 129 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17620 1 0.03 -1 -1 30028 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 17.3 MiB 1.74 1064 18301 5445 10263 2593 55.9 MiB 0.26 0.00 4.47348 -130.92 -4.47348 4.47348 1.08 0.00123397 0.0011278 0.104567 0.0959235 32 2670 22 6.87369e+06 475111 586450. 2029.24 1.32 0.263812 0.238508 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0509373 0.045852 149 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29960 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1005 13953 3900 8706 1347 55.7 MiB 0.19 0.00 3.71604 -108.811 -3.71604 3.71604 1.09 0.00109393 0.00100419 0.0751879 0.0689936 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.97 0.302462 0.270903 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0372075 0.0333996 124 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30196 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 17.3 MiB 2.95 1158 14261 4788 7245 2228 56.0 MiB 0.24 0.00 4.84864 -152.871 -4.84864 4.84864 1.12 0.0011773 0.00108035 0.0944781 0.0867188 34 3462 28 6.87369e+06 307425 618332. 2139.56 3.68 0.362373 0.325262 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0525623 0.0472511 148 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 29960 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 2.79 1138 19124 5521 11431 2172 56.0 MiB 0.27 0.00 4.13563 -138.632 -4.13563 4.13563 1.09 0.00125792 0.00115354 0.106942 0.0980626 28 2715 22 6.87369e+06 503058 531479. 1839.03 1.39 0.26827 0.24226 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.20 0.06 0.10 -1 -1 0.20 0.0200243 0.0178352 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30208 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 1.67 666 12120 4433 5222 2465 55.2 MiB 0.15 0.00 3.97634 -118.279 -3.97634 3.97634 1.10 0.000929794 0.000851847 0.0688721 0.0631396 32 1713 25 6.87369e+06 265503 586450. 2029.24 1.25 0.19052 0.171138 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0303425 0.0272215 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.14 17548 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 17.0 MiB 1.49 954 14256 4666 7594 1996 55.7 MiB 0.21 0.00 4.32352 -124.508 -4.32352 4.32352 1.11 0.00102158 0.000935586 0.0956169 0.0875227 30 2387 23 6.87369e+06 237555 556674. 1926.21 1.27 0.226536 0.203784 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0317896 0.0285409 112 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.16 17776 1 0.03 -1 -1 30352 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1008 17238 4626 10206 2406 55.5 MiB 0.22 0.00 4.58512 -131.297 -4.58512 4.58512 1.10 0.00110649 0.00101395 0.083692 0.0766199 28 2463 22 6.87369e+06 544980 531479. 1839.03 1.52 0.225352 0.203057 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0448876 0.0404245 135 33 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30248 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 766 12464 3650 7053 1761 55.5 MiB 0.18 0.00 4.72278 -121.674 -4.72278 4.72278 1.09 0.000899171 0.000824059 0.0680569 0.0624196 36 2048 24 6.87369e+06 265503 648988. 2245.63 2.22 0.259798 0.23211 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.0344255 0.0307369 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17292 1 0.03 -1 -1 29988 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 16.6 MiB 2.82 839 11909 3234 7671 1004 55.3 MiB 0.16 0.00 4.09853 -129.483 -4.09853 4.09853 1.09 0.000955564 0.000875816 0.0697271 0.0639335 34 2157 23 6.87369e+06 209608 618332. 2139.56 2.01 0.271515 0.242682 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0388064 0.0346758 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30048 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 17.1 MiB 2.53 942 11236 2692 7798 746 55.8 MiB 0.18 0.00 3.93572 -125.697 -3.93572 3.93572 1.10 0.00121872 0.00111753 0.0625795 0.0573494 30 2084 23 6.87369e+06 517032 556674. 1926.21 1.28 0.219862 0.197751 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.26 0.11 0.22 -1 -1 0.26 0.052524 0.0471849 141 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17608 1 0.02 -1 -1 30212 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 17.0 MiB 2.70 854 11604 2702 8073 829 55.4 MiB 0.15 0.00 3.71466 -115.66 -3.71466 3.71466 1.09 0.000909409 0.000834046 0.0640496 0.0587601 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.85 0.254782 0.227738 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0421916 0.0375718 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17656 1 0.03 -1 -1 29856 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 17.5 MiB 2.67 1000 15215 3699 9919 1597 55.8 MiB 0.21 0.00 3.6733 -115.913 -3.6733 3.6733 1.09 0.001153 0.00105707 0.0841343 0.0771503 28 2463 22 6.87369e+06 433189 531479. 1839.03 1.49 0.229766 0.206956 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0396763 0.0356484 129 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 17.3 MiB 2.98 1013 12839 3510 8051 1278 55.9 MiB 0.19 0.00 3.7214 -127.022 -3.7214 3.7214 1.08 0.00124903 0.00114422 0.0775456 0.0710626 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.73 0.258758 0.232835 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.25 0.13 0.21 -1 -1 0.25 0.0455104 0.0407095 137 91 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17352 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 868 13324 3871 8104 1349 55.4 MiB 0.18 0.00 3.6034 -114.008 -3.6034 3.6034 1.08 0.000996912 0.000912568 0.0799895 0.0732793 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.91 0.28921 0.258746 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0394106 0.035257 99 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30100 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.9 MiB 1.58 974 10050 2495 6517 1038 55.6 MiB 0.16 0.00 4.16989 -130.796 -4.16989 4.16989 1.11 0.00098787 0.000905254 0.0631511 0.0579007 34 2564 21 6.87369e+06 251529 618332. 2139.56 2.08 0.27106 0.242437 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.31 0.11 0.24 -1 -1 0.31 0.0424128 0.0379621 114 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30108 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 17.1 MiB 2.48 1073 14072 3847 8138 2087 55.7 MiB 0.20 0.00 4.82103 -137.111 -4.82103 4.82103 1.11 0.00109851 0.00100928 0.0844716 0.0775679 34 2766 23 6.87369e+06 307425 618332. 2139.56 2.08 0.315806 0.283463 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0193705 0.0171787 132 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 29992 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 17.3 MiB 2.49 938 11346 3139 7252 955 55.8 MiB 0.16 0.00 4.10263 -113.928 -4.10263 4.10263 1.11 0.00107475 0.000986281 0.0640514 0.0588362 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.93 0.289988 0.259928 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.26 0.08 0.25 -1 -1 0.26 0.0389622 0.0349934 123 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.22 17824 1 0.03 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.79 1137 15773 5092 8347 2334 56.0 MiB 0.28 0.00 5.16181 -165.054 -5.16181 5.16181 1.09 0.00130906 0.00119311 0.112351 0.102992 34 3224 24 6.87369e+06 307425 618332. 2139.56 2.61 0.388666 0.349664 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0569407 0.0512193 151 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17100 1 0.03 -1 -1 30280 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.7 MiB 0.60 812 10400 2700 6281 1419 55.1 MiB 0.12 0.00 3.6213 -110.383 -3.6213 3.6213 1.11 0.000842088 0.000771452 0.0527955 0.0484241 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.82 0.225149 0.200948 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0318271 0.0284424 92 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17728 1 0.03 -1 -1 30128 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 17.3 MiB 1.69 1097 18567 5571 11084 1912 55.9 MiB 0.27 0.00 4.4584 -148.753 -4.4584 4.4584 1.12 0.00130361 0.0011944 0.109622 0.100463 30 2603 24 6.87369e+06 489084 556674. 1926.21 1.43 0.280123 0.252783 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0410474 0.0364312 145 90 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 3.91 823 13152 5512 7421 219 55.7 MiB 0.20 0.00 3.7595 -132.319 -3.7595 3.7595 1.10 0.00118193 0.00108238 0.0939533 0.08612 34 2123 27 6.87369e+06 223581 618332. 2139.56 2.13 0.351096 0.314821 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0447468 0.0401457 114 96 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29960 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 17.1 MiB 2.57 1010 10827 2581 6963 1283 55.6 MiB 0.17 0.00 4.11773 -126.026 -4.11773 4.11773 1.08 0.00118874 0.00109018 0.0620615 0.0569473 34 2332 20 6.87369e+06 447163 618332. 2139.56 2.01 0.307847 0.276149 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0468096 0.0420486 134 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.23 18084 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 17.7 MiB 3.64 1280 16127 4711 8958 2458 56.1 MiB 0.28 0.00 5.89191 -180.703 -5.89191 5.89191 1.09 0.00132585 0.00121743 0.111749 0.102668 34 3352 23 6.87369e+06 349346 618332. 2139.56 2.41 0.395509 0.356546 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0604442 0.0546346 171 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.19 17480 1 0.02 -1 -1 29964 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 16.5 MiB 1.17 668 8716 2078 6018 620 55.1 MiB 0.11 0.00 3.01966 -95.583 -3.01966 3.01966 1.10 0.000781149 0.000715061 0.0441248 0.0404433 30 1784 17 6.87369e+06 209608 556674. 1926.21 1.18 0.135647 0.121124 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0279875 0.0249234 81 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30028 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 16.8 MiB 1.00 599 7081 1635 4909 537 55.3 MiB 0.11 0.00 4.05453 -121.132 -4.05453 4.05453 1.10 0.000976291 0.000894533 0.0419876 0.0385206 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.89 0.249608 0.222525 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419196 0.0374511 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 29852 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 16.9 MiB 0.90 913 15639 4952 8936 1751 55.5 MiB 0.21 0.00 3.6323 -121.89 -3.6323 3.6323 1.14 0.00100898 0.000923269 0.0854976 0.0783747 32 2483 25 6.87369e+06 321398 586450. 2029.24 1.37 0.220001 0.197839 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0444065 0.0396879 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17272 1 0.03 -1 -1 30108 -1 -1 29 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 16.6 MiB 0.67 516 9536 2821 4714 2001 55.2 MiB 0.10 0.00 3.5473 -82.6349 -3.5473 3.5473 1.08 0.000754772 0.000691971 0.0398559 0.0364914 28 1443 23 6.87369e+06 405241 531479. 1839.03 1.19 0.140077 0.125285 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.23 0.06 0.20 -1 -1 0.23 0.0246274 0.0219489 87 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30056 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 2.39 974 10332 2610 6542 1180 55.8 MiB 0.19 0.00 4.3434 -128.294 -4.3434 4.3434 1.14 0.00121372 0.00111187 0.0751841 0.0689215 34 2904 44 6.87369e+06 279477 618332. 2139.56 2.51 0.375446 0.336266 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0523892 0.0470825 133 72 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30072 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 17.3 MiB 2.74 978 9679 2433 6610 636 56.0 MiB 0.17 0.00 4.12463 -132.597 -4.12463 4.12463 1.12 0.00129922 0.00119127 0.0622183 0.0570443 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.50 0.231302 0.207896 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0554607 0.049848 143 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 29852 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 16.9 MiB 2.41 1101 11203 3178 6921 1104 55.7 MiB 0.20 0.00 5.42457 -156.316 -5.42457 5.42457 1.10 0.00116999 0.00107401 0.0707159 0.0648736 34 2918 37 6.89349e+06 338252 618332. 2139.56 2.53 0.34045 0.304834 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.048453 0.043536 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30368 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1174 12178 3196 7626 1356 55.6 MiB 0.18 0.00 4.90208 -149.95 -4.90208 4.90208 1.08 0.00118351 0.00108464 0.0616883 0.0564942 34 3129 45 6.89349e+06 366440 618332. 2139.56 2.46 0.357007 0.319714 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0467514 0.042037 156 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17812 1 0.03 -1 -1 30128 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1048 13663 4160 7949 1554 55.5 MiB 0.19 0.00 4.2044 -120.612 -4.2044 4.2044 1.11 0.00102325 0.000938471 0.0781961 0.0716981 34 2461 28 6.89349e+06 295971 618332. 2139.56 2.12 0.303587 0.271854 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0354234 0.0317938 125 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30288 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 16.6 MiB 1.52 1070 14593 4351 8219 2023 55.4 MiB 0.21 0.00 4.83618 -131.951 -4.83618 4.83618 1.09 0.00105111 0.000963304 0.0852205 0.0782145 34 2512 27 6.89349e+06 338252 618332. 2139.56 2.06 0.31508 0.282658 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429473 0.0385581 134 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30044 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 17.1 MiB 1.32 1121 10839 3086 5720 2033 55.5 MiB 0.19 0.00 5.28221 -151.791 -5.28221 5.28221 0.97 0.00113639 0.00103991 0.0670779 0.0614667 36 3048 26 6.89349e+06 324158 648988. 2245.63 3.55 0.31048 0.27811 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0432058 0.0385289 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17584 1 0.02 -1 -1 30204 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1263 20077 7001 10670 2406 55.7 MiB 0.30 0.00 3.92406 -127.128 -3.92406 3.92406 1.15 0.00120144 0.00110244 0.11208 0.102649 34 3484 24 6.89349e+06 465097 618332. 2139.56 2.61 0.371212 0.333474 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515025 0.0462788 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30380 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 16.9 MiB 1.19 795 13496 4096 7659 1741 55.3 MiB 0.16 0.00 4.14623 -113.724 -4.14623 4.14623 1.09 0.000888098 0.000815107 0.0721262 0.0661767 34 1922 21 6.89349e+06 295971 618332. 2139.56 2.00 0.258775 0.231576 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0335578 0.0299897 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 29928 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.67 908 11759 3095 6971 1693 55.3 MiB 0.15 0.00 3.40307 -102.549 -3.40307 3.40307 1.10 0.000971539 0.000889757 0.0555657 0.0508322 26 2334 21 6.89349e+06 451003 503264. 1741.40 1.43 0.176757 0.158589 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0377604 0.0337631 119 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30120 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 16.7 MiB 1.53 1042 10703 3845 4978 1880 55.4 MiB 0.20 0.00 3.68945 -124.167 -3.68945 3.68945 1.11 0.00103459 0.000947371 0.0793581 0.0726625 34 2732 28 6.89349e+06 281877 618332. 2139.56 2.36 0.305437 0.273044 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0408479 0.0365779 130 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.21 17500 1 0.03 -1 -1 29944 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 16.9 MiB 1.88 928 7914 1841 5211 862 55.6 MiB 0.13 0.00 4.05148 -133.476 -4.05148 4.05148 1.13 0.00101975 0.000935752 0.0477819 0.0438732 34 2363 46 6.89349e+06 253689 618332. 2139.56 2.37 0.290287 0.258505 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0365416 0.0327777 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17684 1 0.03 -1 -1 30200 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 16.8 MiB 1.96 867 6563 1487 4637 439 55.5 MiB 0.11 0.00 4.47797 -127.666 -4.47797 4.47797 1.12 0.000994547 0.000910901 0.0389475 0.0356947 34 2468 30 6.89349e+06 295971 618332. 2139.56 2.23 0.257033 0.22862 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0371875 0.0332689 124 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30016 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.9 MiB 1.45 849 7781 1935 5506 340 55.4 MiB 0.12 0.00 3.6807 -111.961 -3.6807 3.6807 1.09 0.000929661 0.000850217 0.0449377 0.0412336 34 2156 24 6.89349e+06 239595 618332. 2139.56 2.36 0.246374 0.219598 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0341546 0.0305702 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.0 MiB 1.90 1060 16407 4994 8930 2483 55.4 MiB 0.26 0.00 4.09068 -131.143 -4.09068 4.09068 1.09 0.00115792 0.00106196 0.101972 0.0935371 34 2942 46 6.89349e+06 324158 618332. 2139.56 2.63 0.393758 0.353569 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0449367 0.040455 143 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30132 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 17.2 MiB 1.62 1222 15298 4935 8519 1844 55.7 MiB 0.24 0.00 5.57191 -161.898 -5.57191 5.57191 1.17 0.00118854 0.00108913 0.0975506 0.0893348 38 2640 21 6.89349e+06 338252 678818. 2348.85 2.56 0.345164 0.310073 26626 170182 -1 2332 20 1682 2320 155536 33971 4.52865 4.52865 -151.53 -4.52865 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0536948 0.0483999 153 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.11 17604 1 0.03 -1 -1 30256 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 16.6 MiB 1.70 847 11909 3522 6229 2158 55.1 MiB 0.14 0.00 3.19582 -98.7926 -3.19582 3.19582 1.10 0.000872989 0.000788946 0.0631276 0.0578404 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.98 0.242886 0.216685 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.23 0.04 0.12 -1 -1 0.23 0.0143751 0.0126857 102 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30164 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 17.1 MiB 2.01 1270 15103 4761 8086 2256 55.6 MiB 0.24 0.00 4.1162 -136.486 -4.1162 4.1162 1.09 0.0012161 0.00111529 0.0979038 0.0897764 38 3035 24 6.89349e+06 338252 678818. 2348.85 2.57 0.356769 0.320539 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.28 0.12 0.23 -1 -1 0.28 0.0438613 0.0394882 159 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17768 1 0.03 -1 -1 29896 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1061 15017 4935 7452 2630 55.4 MiB 0.14 0.00 4.12104 -133.123 -4.12104 4.12104 0.96 0.000419707 0.000379457 0.0429257 0.0388442 36 2514 26 6.89349e+06 310065 648988. 2245.63 2.59 0.29294 0.261586 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0432386 0.0388841 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30172 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 17.2 MiB 1.61 1121 14407 4796 7561 2050 55.7 MiB 0.22 0.00 3.60799 -127.319 -3.60799 3.60799 1.16 0.00106225 0.000973792 0.0847125 0.0776114 36 2593 20 6.89349e+06 295971 648988. 2245.63 3.04 0.304621 0.272792 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.27 0.10 0.29 -1 -1 0.27 0.0402344 0.0360718 131 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17348 1 0.02 -1 -1 30120 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 16.3 MiB 0.92 565 9205 3754 4929 522 54.9 MiB 0.10 0.00 2.67033 -85.3827 -2.67033 2.67033 1.11 0.000766292 0.000701186 0.0453218 0.041492 38 1394 30 6.89349e+06 211408 678818. 2348.85 2.35 0.215072 0.191016 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.30 0.05 0.27 -1 -1 0.30 0.0214664 0.0192116 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30208 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 16.6 MiB 1.95 986 14322 4290 8044 1988 55.3 MiB 0.20 0.00 4.76552 -144.771 -4.76552 4.76552 1.08 0.000993936 0.00091169 0.0824551 0.0756243 34 2322 29 6.89349e+06 267783 618332. 2139.56 2.35 0.301307 0.269772 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0391706 0.0350955 117 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30324 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 16.9 MiB 1.05 1121 13823 3432 8585 1806 55.4 MiB 0.21 0.00 4.71322 -150.624 -4.71322 4.71322 1.11 0.00115309 0.00105758 0.0808698 0.0741945 34 2727 22 6.89349e+06 479191 618332. 2139.56 2.45 0.325451 0.292304 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.045417 0.0408348 151 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17532 1 0.04 -1 -1 30056 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 17.0 MiB 1.27 1277 12375 3467 7863 1045 55.6 MiB 0.21 0.00 4.43295 -138.206 -4.43295 4.43295 1.09 0.00120896 0.00110818 0.0814355 0.0747213 36 3078 26 6.89349e+06 324158 648988. 2245.63 2.91 0.344704 0.309478 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0498654 0.044811 155 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17364 1 0.02 -1 -1 30480 -1 -1 19 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 16.4 MiB 1.15 448 11324 4682 5071 1571 55.0 MiB 0.11 0.00 2.70371 -73.039 -2.70371 2.70371 1.10 0.000668651 0.000611422 0.048423 0.0443188 36 1409 29 6.89349e+06 267783 648988. 2245.63 2.16 0.194675 0.172987 26050 158493 -1 1053 24 894 1077 88226 21748 2.34066 2.34066 -71.8008 -2.34066 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0301797 0.0267521 76 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17024 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.6 MiB 0.77 989 9879 2312 6247 1320 55.1 MiB 0.15 0.00 4.42392 -127.052 -4.42392 4.42392 1.06 0.00100943 0.000925967 0.0545601 0.0500587 34 2328 22 6.89349e+06 324158 618332. 2139.56 2.17 0.268062 0.240014 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416674 0.0374105 119 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 17112 1 0.02 -1 -1 29876 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.2 MiB 0.32 477 9356 3828 5185 343 54.6 MiB 0.09 0.00 2.35052 -74.7133 -2.35052 2.35052 1.08 0.000639511 0.000582364 0.038773 0.03532 30 1271 33 6.89349e+06 169126 556674. 1926.21 1.14 0.129711 0.115253 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0140638 0.0124422 65 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 1.48 1046 9966 2582 6701 683 55.3 MiB 0.15 0.00 4.91481 -138.303 -4.91481 4.91481 1.09 0.00101862 0.000931057 0.0586525 0.0537516 34 2316 22 6.89349e+06 281877 618332. 2139.56 2.14 0.277801 0.248581 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0391267 0.0351274 125 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17012 1 0.03 -1 -1 30240 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.64 1030 18239 5331 10544 2364 55.3 MiB 0.24 0.00 3.48935 -111.917 -3.48935 3.48935 1.09 0.0010491 0.000962946 0.0915034 0.0839396 30 2299 29 6.89349e+06 436909 556674. 1926.21 1.34 0.23682 0.213464 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.26 0.08 0.21 -1 -1 0.26 0.0375984 0.0337884 130 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 17.2 MiB 2.02 1031 15255 4057 8092 3106 55.7 MiB 0.23 0.00 4.82008 -133.501 -4.82008 4.82008 1.12 0.00112104 0.0010277 0.0930646 0.0853435 34 2929 28 6.89349e+06 324158 618332. 2139.56 2.78 0.342166 0.307 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0443954 0.0399037 142 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.11 17224 1 0.03 -1 -1 29900 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1042 13556 4378 7182 1996 55.2 MiB 0.19 0.00 3.7536 -126.104 -3.7536 3.7536 1.10 0.00113128 0.00105035 0.0803766 0.0736858 34 2426 26 6.89349e+06 239595 618332. 2139.56 2.04 0.290635 0.25973 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.24 0.05 0.12 -1 -1 0.24 0.0166746 0.0147078 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 1.63 868 13092 4092 7012 1988 55.3 MiB 0.17 0.00 4.03552 -117.607 -4.03552 4.03552 1.09 0.000896087 0.00082059 0.071822 0.065778 34 2273 22 6.89349e+06 239595 618332. 2139.56 2.25 0.267221 0.238698 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.28 0.09 0.25 -1 -1 0.28 0.0357378 0.0319324 104 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17460 1 0.02 -1 -1 29920 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 757 6960 1669 4834 457 55.1 MiB 0.12 0.00 4.17394 -114.526 -4.17394 4.17394 1.09 0.000893271 0.000819668 0.0403095 0.037033 30 2142 28 6.89349e+06 281877 556674. 1926.21 1.39 0.168933 0.150963 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.24 0.08 0.22 -1 -1 0.24 0.0352533 0.0314846 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17028 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.55 835 13031 3792 7568 1671 55.1 MiB 0.17 0.00 3.90738 -121.629 -3.90738 3.90738 1.12 0.000908942 0.000833344 0.0704029 0.0646176 32 2291 36 6.89349e+06 239595 586450. 2029.24 1.41 0.206848 0.185739 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0359568 0.032174 101 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30048 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 16.7 MiB 1.41 912 9006 2499 5943 564 55.2 MiB 0.13 0.00 3.63671 -112.55 -3.63671 3.63671 1.13 0.000933996 0.000856839 0.0519347 0.0476752 30 2196 23 6.89349e+06 253689 556674. 1926.21 1.26 0.174399 0.156414 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0305519 0.0273845 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.12 17860 1 0.03 -1 -1 30236 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 16.6 MiB 1.65 982 10163 2807 6505 851 55.3 MiB 0.14 0.00 3.48715 -105.954 -3.48715 3.48715 0.99 0.00096495 0.000884049 0.0570174 0.0522218 36 2114 24 6.89349e+06 310065 648988. 2245.63 2.45 0.26291 0.234465 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0336119 0.0301273 120 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17724 1 0.03 -1 -1 30264 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1339 15137 4138 9246 1753 55.5 MiB 0.24 0.00 4.47915 -132.321 -4.47915 4.47915 1.15 0.000855396 0.000769602 0.0922264 0.0843865 34 2963 23 6.89349e+06 352346 618332. 2139.56 2.18 0.353305 0.317536 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.24 0.06 0.13 -1 -1 0.24 0.0212141 0.0188836 159 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30192 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 16.9 MiB 2.00 1289 13933 4065 8243 1625 55.9 MiB 0.13 0.00 4.58977 -156.464 -4.58977 4.58977 0.75 0.000474319 0.000428862 0.0356744 0.0323105 36 2961 23 6.89349e+06 338252 648988. 2245.63 1.70 0.136686 0.120035 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.24 0.06 0.13 -1 -1 0.24 0.0203993 0.0182145 168 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17768 1 0.04 -1 -1 29988 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 765 12506 3068 7484 1954 55.2 MiB 0.17 0.00 3.98848 -116.551 -3.98848 3.98848 1.12 0.000891858 0.000819741 0.0645346 0.0593975 36 1999 20 6.89349e+06 253689 648988. 2245.63 2.38 0.266121 0.238064 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0388434 0.034696 109 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 17.2 MiB 2.00 1249 10813 2744 7185 884 56.0 MiB 0.18 0.00 4.24063 -135.696 -4.24063 4.24063 1.08 0.00120535 0.00110488 0.0702303 0.0644228 34 3153 26 6.89349e+06 352346 618332. 2139.56 2.41 0.329828 0.295815 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0437508 0.0393666 160 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 17.0 MiB 2.38 1247 16273 5220 8383 2670 55.9 MiB 0.27 0.00 5.45989 -162.138 -5.45989 5.45989 1.08 0.0012211 0.00111937 0.105353 0.0966131 36 3304 23 6.89349e+06 352346 648988. 2245.63 3.32 0.353796 0.317752 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.052753 0.0474798 163 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30268 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1201 15298 5197 6778 3323 55.7 MiB 0.24 0.00 5.99918 -171.098 -5.99918 5.99918 1.16 0.00123778 0.00113383 0.100202 0.0918153 36 3723 40 6.89349e+06 352346 648988. 2245.63 4.55 0.404594 0.363088 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0515743 0.0464016 166 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17488 1 0.03 -1 -1 30164 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 17.1 MiB 1.77 1173 16983 5747 8489 2747 55.6 MiB 0.27 0.00 4.05378 -126.496 -4.05378 4.05378 1.08 0.00116965 0.00107433 0.106959 0.0982259 36 2746 23 6.89349e+06 338252 648988. 2245.63 2.73 0.353406 0.317592 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0462309 0.0414668 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17876 1 0.02 -1 -1 30208 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 16.6 MiB 1.60 909 14358 5137 7007 2214 55.2 MiB 0.19 0.00 4.5826 -118.27 -4.5826 4.5826 1.08 0.000998695 0.000915126 0.0811198 0.0743818 34 2771 28 6.89349e+06 281877 618332. 2139.56 2.41 0.294353 0.263015 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.038271 0.0343332 120 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17752 1 0.03 -1 -1 30152 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 17.3 MiB 2.05 1620 14567 4267 9425 875 56.2 MiB 0.27 0.01 5.31355 -171.75 -5.31355 5.31355 1.09 0.00147407 0.00135318 0.10254 0.0941982 36 4099 33 6.89349e+06 436909 648988. 2245.63 3.86 0.444167 0.399597 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0679045 0.0610306 203 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17392 1 0.03 -1 -1 30084 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 16.8 MiB 1.47 935 8481 2198 5465 818 55.2 MiB 0.12 0.00 3.78206 -112.802 -3.78206 3.78206 1.09 0.000901648 0.000826247 0.0460245 0.042173 36 2118 26 6.89349e+06 253689 648988. 2245.63 1.98 0.24184 0.215381 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.32 0.08 0.25 -1 -1 0.32 0.032574 0.0292587 106 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30084 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1159 12749 3392 7336 2021 55.5 MiB 0.20 0.00 4.75882 -144.088 -4.75882 4.75882 1.08 0.00114351 0.0010499 0.0797735 0.0732509 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.67 0.260217 0.234343 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0450009 0.0404774 140 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30152 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 16.9 MiB 2.01 1195 16023 5389 8481 2153 55.7 MiB 0.25 0.00 4.23925 -128.06 -4.23925 4.23925 1.08 0.00116091 0.00106515 0.0999448 0.0916985 36 2964 25 6.89349e+06 324158 648988. 2245.63 3.12 0.348356 0.31266 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0454442 0.0408217 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17196 1 0.03 -1 -1 29928 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.9 MiB 0.52 1056 13758 4414 7436 1908 55.5 MiB 0.22 0.00 4.26729 -130.845 -4.26729 4.26729 1.08 0.00103553 0.000950333 0.072062 0.065766 30 2527 28 6.89349e+06 366440 556674. 1926.21 1.49 0.21441 0.192667 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.050425 0.045185 123 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 17.3 MiB 1.59 1207 10455 2579 6753 1123 55.8 MiB 0.19 0.00 4.44301 -131.225 -4.44301 4.44301 1.15 0.00117647 0.00107753 0.0664174 0.060915 36 2616 21 6.89349e+06 324158 648988. 2245.63 2.57 0.298249 0.267177 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0439393 0.0394968 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 29848 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 17.2 MiB 1.81 1187 14518 4859 6825 2834 55.7 MiB 0.23 0.00 4.27293 -132.833 -4.27293 4.27293 1.23 0.000724823 0.000662557 0.0905631 0.0830478 34 3445 26 6.89349e+06 338252 618332. 2139.56 2.74 0.341746 0.306188 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0447007 0.0401598 154 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30124 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1246 9336 2230 6513 593 55.7 MiB 0.18 0.00 4.12904 -136.238 -4.12904 4.12904 1.09 0.00124278 0.00113943 0.0610888 0.0560132 34 3265 27 6.89349e+06 366440 618332. 2139.56 2.69 0.330859 0.296061 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.27 0.14 0.26 -1 -1 0.27 0.0581061 0.0522693 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30176 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 16.6 MiB 1.47 1001 8641 2091 5830 720 55.3 MiB 0.14 0.00 4.50695 -131.282 -4.50695 4.50695 0.78 0.00105837 0.000971311 0.0517961 0.0475275 34 2625 20 6.89349e+06 295971 618332. 2139.56 2.18 0.272077 0.243768 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0433547 0.0388887 128 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.17 17476 1 0.03 -1 -1 30220 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.9 MiB 1.41 1119 14450 4565 7826 2059 55.6 MiB 0.22 0.00 4.84598 -139.753 -4.84598 4.84598 1.19 0.00109075 0.00100168 0.0866617 0.0796073 34 2751 32 6.89349e+06 310065 618332. 2139.56 2.30 0.333766 0.299695 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.30 0.10 0.26 -1 -1 0.30 0.041807 0.0376525 135 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.24 17572 1 0.03 -1 -1 30160 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1292 15447 4870 8199 2378 55.8 MiB 0.26 0.00 4.72898 -145.597 -4.72898 4.72898 1.11 0.00123611 0.00113449 0.103256 0.094687 34 3305 38 6.89349e+06 338252 618332. 2139.56 2.54 0.390856 0.351186 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0524522 0.0472068 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.23 17664 1 0.03 -1 -1 30164 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 16.9 MiB 2.33 1374 13553 4031 8630 892 55.9 MiB 0.23 0.00 4.3848 -136.299 -4.3848 4.3848 1.09 0.00124247 0.00113959 0.0882048 0.0808459 36 3546 21 6.89349e+06 352346 648988. 2245.63 3.48 0.351194 0.315358 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.29 0.21 0.25 -1 -1 0.29 0.0808083 0.0725246 166 77 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29976 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 16.4 MiB 1.48 841 8022 2262 5194 566 55.0 MiB 0.13 0.00 3.56029 -109.346 -3.56029 3.56029 1.16 0.000883411 0.000809987 0.0549251 0.0504957 36 1876 16 6.89349e+06 211408 648988. 2245.63 2.26 0.23208 0.207068 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0345974 0.0308863 96 23 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.21 17776 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 17.1 MiB 1.17 1155 11979 3435 7133 1411 55.6 MiB 0.20 0.00 4.30741 -149.256 -4.30741 4.30741 1.10 0.000768415 0.00069094 0.0779058 0.0712932 34 2804 26 6.89349e+06 281877 618332. 2139.56 2.80 0.323667 0.289729 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0437806 0.0392591 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1337 12167 3186 7820 1161 55.9 MiB 0.23 0.00 5.53202 -162.159 -5.53202 5.53202 1.09 0.0013021 0.00119542 0.0840893 0.077258 34 3534 45 6.89349e+06 352346 618332. 2139.56 3.05 0.416164 0.374672 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.28 0.19 0.24 -1 -1 0.28 0.0840971 0.075715 168 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17468 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 17.2 MiB 1.65 981 15773 5650 7566 2557 55.7 MiB 0.24 0.00 4.48922 -138.529 -4.48922 4.48922 1.08 0.00115238 0.00105737 0.098635 0.09051 36 2706 29 6.89349e+06 310065 648988. 2245.63 3.37 0.304545 0.273462 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0473415 0.042564 144 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17400 1 0.03 -1 -1 30156 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 16.6 MiB 1.28 892 10781 3144 6961 676 55.2 MiB 0.15 0.00 4.18863 -126.692 -4.18863 4.18863 1.08 0.000955152 0.000876612 0.0546745 0.0501891 36 2083 22 6.89349e+06 380534 648988. 2245.63 2.38 0.253849 0.226662 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407685 0.0362451 118 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.10 17972 1 0.04 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 17.4 MiB 2.92 1573 16207 5526 8946 1735 56.1 MiB 0.31 0.01 6.36902 -185.345 -6.36902 6.36902 1.09 0.00140613 0.00129097 0.116052 0.10659 34 4174 50 6.89349e+06 380534 618332. 2139.56 4.29 0.479939 0.431456 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0558795 0.0503519 188 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 16.8 MiB 1.38 1035 15151 5099 7891 2161 55.5 MiB 0.22 0.00 4.71732 -144.131 -4.71732 4.71732 1.09 0.00114887 0.00105479 0.0956945 0.0878042 34 2637 24 6.89349e+06 295971 618332. 2139.56 2.12 0.339297 0.304871 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.29 0.11 0.24 -1 -1 0.29 0.0471434 0.0424314 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17336 1 0.02 -1 -1 30212 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.4 MiB 0.49 851 9838 2581 6658 599 55.1 MiB 0.13 0.00 3.70876 -106.292 -3.70876 3.70876 1.10 0.000848183 0.000778133 0.0470929 0.0431697 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.59 0.142728 0.12733 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.22 0.09 0.19 -1 -1 0.22 0.0288283 0.0257271 94 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17444 1 0.03 -1 -1 29940 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.67 1097 14679 5479 6928 2272 55.5 MiB 0.22 0.00 5.34057 -137.648 -5.34057 5.34057 1.09 0.00119873 0.00110036 0.0943147 0.0866212 34 3407 33 6.89349e+06 324158 618332. 2139.56 3.52 0.367357 0.330197 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0489609 0.044052 149 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17232 1 0.03 -1 -1 29996 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.5 MiB 0.59 790 8543 2077 5745 721 55.2 MiB 0.13 0.00 3.60525 -112.744 -3.60525 3.60525 1.11 0.000913453 0.000839247 0.0453249 0.0415761 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.93 0.240818 0.21456 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0350841 0.0313417 98 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.11 17500 1 0.03 -1 -1 30108 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 1.18 900 11118 2938 7199 981 55.3 MiB 0.17 0.00 4.05078 -116.815 -4.05078 4.05078 1.10 0.000952766 0.000873973 0.0618767 0.0567659 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.91 0.221406 0.19735 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0373236 0.0333897 113 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17664 1 0.05 -1 -1 30092 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 17.1 MiB 2.75 1189 14871 4290 8850 1731 55.7 MiB 0.23 0.00 4.52181 -133.377 -4.52181 4.52181 1.08 0.00115559 0.00105984 0.0928489 0.085095 34 2841 25 6.89349e+06 366440 618332. 2139.56 2.31 0.343479 0.308345 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0440198 0.0395896 154 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 30112 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1209 16340 4806 9520 2014 55.8 MiB 0.26 0.00 5.15268 -160.098 -5.15268 5.15268 1.08 0.00118291 0.00108443 0.105334 0.0966296 36 2942 21 6.89349e+06 310065 648988. 2245.63 2.86 0.351313 0.315832 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0465594 0.0418274 151 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 29968 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 17.2 MiB 1.43 1151 8919 1954 6160 805 55.7 MiB 0.16 0.00 5.44797 -153.538 -5.44797 5.44797 1.08 0.00117374 0.00107264 0.0573715 0.0526439 36 2961 43 6.89349e+06 324158 648988. 2245.63 3.34 0.336899 0.301325 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.046228 0.0415657 150 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17400 1 0.03 -1 -1 30188 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.7 MiB 1.52 948 12416 4023 6894 1499 55.2 MiB 0.17 0.00 4.44301 -126.97 -4.44301 4.44301 1.10 0.000948983 0.00086885 0.0723819 0.0663195 34 2281 31 6.89349e+06 211408 618332. 2139.56 2.32 0.286003 0.255589 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0348069 0.0311816 105 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.11 17768 1 0.03 -1 -1 30304 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.44 1059 14483 4851 7224 2408 55.6 MiB 0.20 0.00 3.67535 -124.181 -3.67535 3.67535 1.09 0.00104314 0.000955214 0.0866914 0.0794359 34 2699 22 6.89349e+06 281877 618332. 2139.56 2.15 0.307214 0.275288 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0395283 0.0354068 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17840 1 0.03 -1 -1 30376 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 16.9 MiB 1.91 1024 15493 4307 9520 1666 55.4 MiB 0.22 0.00 3.806 -108.658 -3.806 3.806 1.10 0.00108611 0.000996156 0.0896019 0.0821112 36 2360 20 6.89349e+06 366440 648988. 2245.63 2.34 0.316454 0.284059 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0414765 0.0372677 142 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17480 1 0.03 -1 -1 30248 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 16.7 MiB 1.17 918 12323 3941 6490 1892 55.3 MiB 0.16 0.00 4.39675 -112.391 -4.39675 4.39675 1.08 0.000961852 0.000882625 0.0682823 0.0626789 34 2147 21 6.89349e+06 324158 618332. 2139.56 2.02 0.266577 0.238596 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0366972 0.0327904 119 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30304 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 16.7 MiB 2.14 924 9083 2508 6037 538 55.4 MiB 0.15 0.00 4.56532 -133.276 -4.56532 4.56532 1.08 0.0010441 0.000958277 0.0556726 0.0510844 34 2736 29 6.89349e+06 295971 618332. 2139.56 2.42 0.287636 0.257305 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0413347 0.0370753 130 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1216 6123 1500 4259 364 55.8 MiB 0.12 0.00 3.91264 -134.898 -3.91264 3.91264 1.13 0.00109608 0.00100447 0.039762 0.0364779 36 2645 23 6.89349e+06 281877 648988. 2245.63 3.03 0.26999 0.241045 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.28 0.18 0.25 -1 -1 0.28 0.0593119 0.0529909 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17244 1 0.03 -1 -1 30212 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.6 MiB 0.59 941 8614 1787 6108 719 55.2 MiB 0.14 0.00 4.73282 -132.206 -4.73282 4.73282 1.10 0.00104357 0.00095941 0.0460406 0.0423262 30 2255 21 6.89349e+06 436909 556674. 1926.21 1.29 0.18407 0.165448 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.042592 0.0382072 129 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.11 17784 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.82 946 14295 4865 6147 3283 55.5 MiB 0.21 0.00 4.80372 -148.142 -4.80372 4.80372 1.11 0.0011768 0.0010799 0.0911294 0.0836614 38 2827 33 6.89349e+06 324158 678818. 2348.85 3.44 0.361363 0.324472 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0465798 0.041915 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30092 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1348 15391 4691 8221 2479 55.9 MiB 0.27 0.00 5.48061 -170.804 -5.48061 5.48061 1.09 0.00124834 0.00114546 0.0937368 0.0858667 36 2971 28 6.89349e+06 380534 648988. 2245.63 3.26 0.369819 0.332446 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517851 0.0465814 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17468 1 0.04 -1 -1 30136 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1348 16572 5279 8759 2534 55.6 MiB 0.28 0.00 4.59633 -149.535 -4.59633 4.59633 1.12 0.0012643 0.00115992 0.103201 0.094526 36 3220 22 6.89349e+06 366440 648988. 2245.63 3.14 0.372703 0.335138 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0543725 0.0489658 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.17 17336 1 0.03 -1 -1 30044 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.66 929 11603 3304 7249 1050 55.4 MiB 0.17 0.00 4.22559 -126.079 -4.22559 4.22559 1.08 0.000938198 0.000860531 0.0626658 0.0575044 34 2274 21 6.89349e+06 295971 618332. 2139.56 2.17 0.263443 0.235101 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0467676 0.0417308 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.21 17544 1 0.03 -1 -1 30328 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 17.3 MiB 2.37 1157 9838 2412 6479 947 56.0 MiB 0.18 0.00 5.48387 -163.439 -5.48387 5.48387 1.12 0.00123527 0.00113314 0.0664573 0.0609724 34 2914 31 6.89349e+06 366440 618332. 2139.56 2.23 0.339188 0.304036 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0465631 0.041938 162 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1128 9303 2368 6110 825 55.7 MiB 0.09 0.00 5.14805 -150.89 -5.14805 5.14805 0.74 0.000426038 0.000385701 0.0227853 0.0206836 34 2876 34 6.89349e+06 324158 618332. 2139.56 1.73 0.12133 0.106238 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0430147 0.0386471 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30220 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1160 14828 4291 8520 2017 55.4 MiB 0.12 0.00 5.04939 -147.832 -5.04939 5.04939 1.08 0.000417431 0.000376219 0.0349946 0.0316536 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.77 0.191222 0.169166 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0468229 0.0420262 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30304 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.85 1280 15731 5729 7457 2545 56.1 MiB 0.25 0.00 4.67272 -140.819 -4.67272 4.67272 1.09 0.00120405 0.00110401 0.100307 0.0919408 36 2891 31 6.89349e+06 380534 648988. 2245.63 2.89 0.372239 0.334125 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.28 0.12 0.27 -1 -1 0.28 0.0460554 0.0413954 162 83 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 17.2 MiB 2.69 1143 12183 3367 8279 537 55.8 MiB 0.21 0.00 5.41467 -156.077 -5.41467 5.41467 1.09 0.0012044 0.00110516 0.079676 0.0730619 34 3317 24 6.89349e+06 324158 618332. 2139.56 2.74 0.336842 0.302282 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488384 0.0438697 155 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.12 17816 1 0.03 -1 -1 30312 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 16.9 MiB 1.54 1279 8047 1945 5583 519 55.6 MiB 0.15 0.00 4.65125 -137.416 -4.65125 4.65125 1.11 0.00121351 0.00110824 0.0513959 0.0471627 36 2926 21 6.89349e+06 422815 648988. 2245.63 2.62 0.303817 0.272058 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0438801 0.0394947 166 85 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17376 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.5 MiB 0.49 782 13906 5117 6523 2266 55.2 MiB 0.18 0.00 4.15903 -122.769 -4.15903 4.15903 1.10 0.000877319 0.000804706 0.0641473 0.0584948 30 2007 46 6.89349e+06 239595 556674. 1926.21 1.31 0.210262 0.188098 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0345416 0.0308819 96 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17828 1 0.03 -1 -1 30232 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1307 13157 3552 8195 1410 55.8 MiB 0.22 0.00 5.64852 -169.418 -5.64852 5.64852 1.11 0.00121488 0.00111406 0.0839158 0.0769762 36 3147 47 6.89349e+06 352346 648988. 2245.63 3.39 0.384854 0.345013 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517209 0.0464841 156 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30184 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 17.1 MiB 2.83 1377 7415 1651 5387 377 55.8 MiB 0.08 0.00 5.30157 -175.126 -5.30157 5.30157 1.07 0.000477715 0.000431872 0.0201641 0.0182806 36 3393 25 6.89349e+06 352346 648988. 2245.63 3.21 0.299802 0.267912 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0554302 0.049939 171 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17208 1 0.03 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 16.6 MiB 2.32 743 12720 4130 6895 1695 55.2 MiB 0.17 0.00 4.14342 -113.505 -4.14342 4.14342 1.11 0.000926878 0.000848793 0.0690049 0.0632568 30 2176 39 6.89349e+06 253689 556674. 1926.21 1.48 0.214882 0.192427 25186 138497 -1 1608 19 847 1143 74159 17662 2.99811 2.99811 -101.39 -2.99811 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0348487 0.0311628 108 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17212 1 0.03 -1 -1 30284 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.4 MiB 0.53 706 7823 1736 5421 666 55.1 MiB 0.11 0.00 4.10083 -117.838 -4.10083 4.10083 1.08 0.000882209 0.000809218 0.0404985 0.0371904 30 1853 22 6.89349e+06 281877 556674. 1926.21 1.23 0.152973 0.136936 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.033349 0.0297928 99 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.7 MiB 2.00 1103 13719 4794 6980 1945 55.5 MiB 0.22 0.00 4.58942 -145.059 -4.58942 4.58942 1.08 0.00117705 0.00108049 0.0870629 0.0799649 34 2800 20 6.89349e+06 324158 618332. 2139.56 2.30 0.338571 0.304228 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.28 0.12 0.24 -1 -1 0.28 0.044499 0.0400557 145 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17556 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1083 8919 2056 5474 1389 55.7 MiB 0.14 0.00 4.89424 -142.728 -4.89424 4.89424 1.09 0.0011682 0.00106993 0.0572894 0.0525096 34 3008 43 6.89349e+06 324158 618332. 2139.56 2.44 0.342917 0.306635 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0444122 0.0399439 149 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17312 1 0.03 -1 -1 30004 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.66 1033 19356 5199 10890 3267 55.5 MiB 0.29 0.00 5.32917 -146.087 -5.32917 5.32917 1.08 0.00121833 0.00111805 0.105021 0.0963905 30 3041 40 6.89349e+06 507378 556674. 1926.21 1.89 0.298615 0.269499 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.0519902 0.0468244 157 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17764 1 0.04 -1 -1 29960 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 16.9 MiB 1.32 1151 13143 3782 7948 1413 55.3 MiB 0.20 0.00 3.95739 -118.903 -3.95739 3.95739 1.09 0.00104572 0.000959095 0.0744934 0.0682735 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.99 0.249457 0.222321 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0381575 0.0342386 136 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.19 17376 1 0.02 -1 -1 30448 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 16.6 MiB 1.23 755 13768 6057 6665 1046 55.1 MiB 0.15 0.00 4.43859 -116.143 -4.43859 4.43859 1.08 0.000875089 0.0008023 0.073587 0.0674984 34 2141 23 6.89349e+06 281877 618332. 2139.56 2.25 0.261479 0.233849 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0331051 0.0295649 106 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30136 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 17.2 MiB 2.57 1514 18043 5658 10071 2314 56.2 MiB 0.32 0.01 4.58581 -147.507 -4.58581 4.58581 1.09 0.00137617 0.00126337 0.124848 0.114545 34 4194 50 6.89349e+06 380534 618332. 2139.56 3.49 0.48125 0.43293 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0563725 0.0507173 185 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30128 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 17.1 MiB 1.76 1122 15639 4714 8375 2550 55.6 MiB 0.27 0.00 5.51467 -162.715 -5.51467 5.51467 1.11 0.00118606 0.00108775 0.107686 0.0987502 34 2973 28 6.89349e+06 338252 618332. 2139.56 2.71 0.371948 0.334208 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0470024 0.0422855 155 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17472 1 0.04 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 16.9 MiB 1.76 1207 14779 4497 8341 1941 55.4 MiB 0.22 0.00 4.36565 -143.578 -4.36565 4.36565 1.09 0.00108419 0.000994226 0.0888276 0.0814078 34 2807 25 6.89349e+06 295971 618332. 2139.56 2.36 0.323658 0.289998 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0463618 0.0415261 137 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 30244 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 16.6 MiB 1.78 1106 13291 3686 7595 2010 55.3 MiB 0.20 0.00 5.17406 -143.598 -5.17406 5.17406 1.09 0.00110295 0.00101178 0.0817427 0.0750086 30 2835 35 6.89349e+06 295971 556674. 1926.21 1.53 0.246432 0.221943 25186 138497 -1 2176 19 1108 1682 108723 25154 3.8055 3.8055 -132.53 -3.8055 0 0 706193. 2443.58 0.26 0.09 0.24 -1 -1 0.26 0.0421416 0.0379175 135 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17756 1 0.03 -1 -1 30012 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1277 13949 4663 6540 2746 55.8 MiB 0.22 0.00 4.6119 -129.607 -4.6119 4.6119 1.19 0.00123402 0.00113278 0.0913764 0.0838517 34 2960 24 6.89349e+06 366440 618332. 2139.56 2.24 0.357564 0.321417 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0489338 0.0440311 163 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30036 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 17.1 MiB 1.63 1057 10103 2410 7187 506 55.6 MiB 0.16 0.00 4.37294 -118.646 -4.37294 4.37294 1.08 0.00108246 0.000992013 0.0609446 0.0559031 34 2982 24 6.89349e+06 338252 618332. 2139.56 2.44 0.29327 0.262579 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0480546 0.0430392 140 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30140 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.18 1146 16340 5897 7961 2482 55.8 MiB 0.14 0.00 4.90628 -154.007 -4.90628 4.90628 0.74 0.000439789 0.000397445 0.0396115 0.0358868 34 3223 50 6.89349e+06 310065 618332. 2139.56 3.41 0.341116 0.304782 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.23 0.06 0.12 -1 -1 0.23 0.0193985 0.01724 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30024 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 17.0 MiB 2.27 1236 16371 6869 8593 909 55.8 MiB 0.26 0.00 4.19324 -136.834 -4.19324 4.19324 1.08 0.00126145 0.00115529 0.106768 0.0979564 36 2890 25 6.89349e+06 366440 648988. 2245.63 3.22 0.378062 0.340137 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.29 0.12 0.27 -1 -1 0.29 0.0527547 0.0475385 167 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17476 1 0.03 -1 -1 30088 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 16.8 MiB 1.18 881 7081 1573 4782 726 55.3 MiB 0.11 0.00 4.21387 -125.832 -4.21387 4.21387 1.12 0.000927657 0.000851548 0.042257 0.0388987 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.93 0.235977 0.210551 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.0369402 0.0330465 110 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30172 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.07 868 7770 1747 5581 442 55.5 MiB 0.13 0.00 4.24583 -126.348 -4.24583 4.24583 1.09 0.00101712 0.000931314 0.0461002 0.0421894 36 2425 28 6.89349e+06 281877 648988. 2245.63 2.79 0.270924 0.241424 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0419361 0.0375195 125 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.17 17820 1 0.03 -1 -1 30216 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 17.0 MiB 1.35 954 15337 5910 7043 2384 55.5 MiB 0.22 0.00 4.83108 -133.604 -4.83108 4.83108 1.10 0.00111441 0.00102255 0.094812 0.0869954 34 3035 40 6.89349e+06 310065 618332. 2139.56 2.67 0.360756 0.323688 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0492344 0.0441637 137 33 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.12 17576 1 0.03 -1 -1 30224 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.7 MiB 2.51 859 12636 4650 6385 1601 55.2 MiB 0.17 0.00 4.13932 -113.849 -4.13932 4.13932 1.10 0.000902765 0.000826873 0.0691321 0.0630881 34 2181 32 6.89349e+06 267783 618332. 2139.56 2.06 0.274757 0.24522 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0385886 0.0344814 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17276 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 16.5 MiB 1.74 931 12898 3547 7775 1576 55.1 MiB 0.18 0.00 4.14413 -130.005 -4.14413 4.14413 1.09 0.000953427 0.000874011 0.0721013 0.0661601 36 2328 29 6.89349e+06 253689 648988. 2245.63 2.53 0.274588 0.245138 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0388748 0.0347116 114 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 29920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 17.1 MiB 1.52 1223 9197 2351 6452 394 55.6 MiB 0.17 0.00 4.60737 -145.998 -4.60737 4.60737 1.09 0.00122981 0.00111744 0.0611364 0.0560149 34 2913 27 6.89349e+06 366440 618332. 2139.56 2.56 0.32771 0.293593 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0542474 0.0487761 160 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17212 1 0.03 -1 -1 30208 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.70 913 11088 2855 7004 1229 55.0 MiB 0.16 0.00 3.57635 -113.738 -3.57635 3.57635 1.08 0.000925147 0.000849174 0.0623222 0.0572577 30 2273 20 6.89349e+06 239595 556674. 1926.21 1.22 0.1749 0.156996 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0260025 0.0230214 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 29840 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1210 14261 3846 8261 2154 55.6 MiB 0.22 0.00 4.18989 -126.928 -4.18989 4.18989 1.09 0.00114421 0.00104683 0.0894508 0.0818736 34 3022 24 6.89349e+06 310065 618332. 2139.56 2.12 0.335277 0.300757 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0455679 0.0409383 146 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17616 1 0.03 -1 -1 30092 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1307 17117 5534 9059 2524 55.9 MiB 0.27 0.00 4.84686 -157.681 -4.84686 4.84686 0.74 0.00125898 0.00115312 0.0995143 0.0910091 34 3332 30 6.89349e+06 366440 618332. 2139.56 2.65 0.382723 0.343429 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0558373 0.0501819 170 91 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 16.9 MiB 2.24 1086 13432 3424 8813 1195 55.6 MiB 0.19 0.00 3.821 -117.953 -3.821 3.821 1.09 0.000998871 0.000915616 0.078255 0.0716897 34 2606 27 6.89349e+06 253689 618332. 2139.56 2.11 0.296116 0.264715 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.039341 0.0351813 124 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30296 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.5 MiB 1.00 871 12898 3868 7278 1752 55.1 MiB 0.18 0.00 4.12213 -126.038 -4.12213 4.12213 1.09 0.000770918 0.00069411 0.0738288 0.0676884 36 2177 21 6.89349e+06 253689 648988. 2245.63 2.53 0.281728 0.252013 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407813 0.0365321 115 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17868 1 0.17 -1 -1 29828 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 16.7 MiB 1.52 1006 10292 2539 6455 1298 55.3 MiB 0.15 0.00 4.93133 -134.302 -4.93133 4.93133 1.09 0.00109231 0.0010033 0.0618925 0.0568162 34 2482 22 6.89349e+06 310065 618332. 2139.56 2.02 0.291169 0.260972 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0395842 0.0356244 133 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.11 17824 1 0.27 -1 -1 30012 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 17.2 MiB 1.72 1105 14450 4218 8203 2029 55.6 MiB 0.22 0.00 4.04968 -110.899 -4.04968 4.04968 1.09 0.0010719 0.000983018 0.0852688 0.0782581 34 2657 23 6.89349e+06 352346 618332. 2139.56 2.14 0.310813 0.27853 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0509434 0.0456467 138 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17516 1 0.27 -1 -1 30008 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1170 10033 2409 6880 744 55.8 MiB 0.18 0.00 5.6505 -176.695 -5.6505 5.6505 1.08 0.00127428 0.00116832 0.0689066 0.0631954 34 3979 39 6.89349e+06 338252 618332. 2139.56 4.19 0.38311 0.34286 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0570891 0.0513345 166 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17156 1 0.27 -1 -1 30004 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.5 MiB 0.50 815 9368 2443 5733 1192 55.1 MiB 0.11 0.00 3.49795 -108.682 -3.49795 3.49795 1.09 0.000834867 0.000765601 0.0475319 0.0436072 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.91 0.226291 0.20168 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.28 0.07 0.23 -1 -1 0.28 0.0314812 0.0281193 92 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17472 1 0.04 -1 -1 30260 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1425 17431 5130 10160 2141 56.0 MiB 0.30 0.01 5.66786 -177.951 -5.66786 5.66786 1.09 0.00131256 0.00120346 0.115788 0.106181 34 3494 40 6.89349e+06 380534 618332. 2139.56 2.82 0.440468 0.396133 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.05917 0.0532553 175 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.18 17468 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 17.1 MiB 1.92 1387 11223 3117 6896 1210 56.0 MiB 0.18 0.00 4.854 -168.258 -4.854 4.854 1.09 0.00118103 0.0010814 0.0725653 0.0664608 38 2917 25 6.89349e+06 324158 678818. 2348.85 2.60 0.321593 0.287639 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.29 0.12 0.28 -1 -1 0.29 0.0546332 0.0489311 160 96 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17788 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 17.0 MiB 1.65 1228 16529 5130 9253 2146 55.5 MiB 0.26 0.00 4.18062 -130.52 -4.18062 4.18062 1.10 0.0011807 0.00108173 0.106084 0.0972041 36 2679 46 6.89349e+06 310065 648988. 2245.63 2.61 0.402196 0.360902 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0450346 0.04049 152 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30404 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 17.4 MiB 2.27 1277 13758 3654 8100 2004 56.1 MiB 0.28 0.01 5.8432 -174.13 -5.8432 5.8432 1.09 0.0013463 0.00123563 0.0954653 0.0875724 36 3134 30 6.89349e+06 366440 648988. 2245.63 3.32 0.397751 0.358195 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.055002 0.0496374 172 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.14 17352 1 0.02 -1 -1 30128 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 16.4 MiB 0.76 693 11650 3455 7011 1184 54.9 MiB 0.13 0.00 3.03066 -95.0101 -3.03066 3.03066 1.08 0.000775434 0.00070975 0.057383 0.0525581 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.92 0.238286 0.211855 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.31 0.06 0.23 -1 -1 0.31 0.0267014 0.0237879 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30388 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 16.8 MiB 1.07 726 8270 1936 5996 338 55.4 MiB 0.13 0.00 4.60327 -135.822 -4.60327 4.60327 1.08 0.00097829 0.000897998 0.0479814 0.0440291 34 1980 21 6.89349e+06 281877 618332. 2139.56 2.04 0.251619 0.224638 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.26 0.19 0.20 -1 -1 0.26 0.0581864 0.0519421 119 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30280 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1036 12008 3645 6699 1664 55.5 MiB 0.20 0.00 4.33865 -139.218 -4.33865 4.33865 1.08 0.00100995 0.000927069 0.0705449 0.0647264 34 2978 44 6.89349e+06 253689 618332. 2139.56 2.73 0.317903 0.284049 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.28 0.12 0.25 -1 -1 0.28 0.0417233 0.0373486 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17396 1 0.02 -1 -1 30372 -1 -1 21 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 16.5 MiB 1.01 532 11034 4110 4271 2653 55.2 MiB 0.11 0.00 3.6784 -85.8398 -3.6784 3.6784 1.09 0.000749817 0.000686466 0.0517791 0.0474192 34 1620 27 6.89349e+06 295971 618332. 2139.56 2.02 0.214637 0.191026 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0294776 0.0262638 92 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.17 17548 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1378 14871 4869 7700 2302 55.6 MiB 0.25 0.00 4.565 -139.747 -4.565 4.565 1.11 0.00121068 0.0011095 0.0975763 0.0894915 38 3057 23 6.89349e+06 324158 678818. 2348.85 2.59 0.365731 0.328429 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0460028 0.0413809 161 72 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17856 1 0.03 -1 -1 30432 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 17.4 MiB 2.03 1414 15617 4439 9113 2065 56.2 MiB 0.28 0.00 4.8901 -157.733 -4.8901 4.8901 1.09 0.0012968 0.00118873 0.107379 0.098359 34 3269 24 6.89349e+06 408721 618332. 2139.56 2.33 0.386272 0.34697 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0512767 0.0461771 179 90 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.27 17612 14 0.25 -1 -1 32756 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 16.8 MiB 0.39 1279 6823 1440 4905 478 55.3 MiB 0.11 0.00 7.95704 -163.811 -7.95704 7.95704 1.04 0.00156205 0.00143212 0.0582136 0.0533669 36 3193 16 6.55708e+06 325485 612192. 2118.31 3.26 0.373765 0.335667 22750 144809 -1 2849 34 1240 3807 386059 168230 6.88996 6.88996 -155.56 -6.88996 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.0987036 0.0888622 183 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.31 17856 14 0.28 -1 -1 32900 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1272 10173 2471 6545 1157 55.4 MiB 0.15 0.00 8.16064 -158.468 -8.16064 8.16064 1.05 0.00158191 0.00145074 0.081165 0.0744808 36 3251 22 6.55708e+06 373705 612192. 2118.31 2.93 0.417574 0.375881 22750 144809 -1 2871 28 1569 4797 434858 167668 7.27044 7.27044 -149.639 -7.27044 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0844937 0.0762804 184 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33128 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1375 11748 3042 6701 2005 55.5 MiB 0.18 0.00 6.90223 -139.699 -6.90223 6.90223 1.04 0.00156303 0.0014319 0.0959199 0.087957 28 4030 31 6.55708e+06 313430 500653. 1732.36 4.00 0.324425 0.292376 21310 115450 -1 3257 20 1688 5676 395500 88119 6.50178 6.50178 -144.577 -6.50178 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0642427 0.0580702 186 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.27 17612 12 0.31 -1 -1 32788 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 16.8 MiB 0.54 1263 4783 870 3608 305 55.4 MiB 0.09 0.00 7.83974 -145.087 -7.83974 7.83974 0.96 0.00159214 0.00146152 0.0440768 0.0405599 36 3198 28 6.55708e+06 361650 612192. 2118.31 3.57 0.401577 0.36102 22750 144809 -1 2762 18 1264 4136 214917 50074 7.0397 7.0397 -139.752 -7.0397 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0598802 0.0542859 190 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.27 17660 13 0.27 -1 -1 32820 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1445 11111 2879 6967 1265 55.5 MiB 0.18 0.00 7.83935 -165.421 -7.83935 7.83935 1.05 0.00175058 0.00159614 0.0956985 0.0876814 28 4394 44 6.55708e+06 373705 500653. 1732.36 3.54 0.386974 0.348994 21310 115450 -1 3682 20 1754 5020 353252 92662 6.8405 6.8405 -162.584 -6.8405 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0710109 0.0643219 210 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.28 17816 13 0.24 -1 -1 32700 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1337 11046 2900 6780 1366 55.4 MiB 0.17 0.00 7.78297 -154.862 -7.78297 7.78297 1.05 0.00164922 0.00151087 0.0881177 0.0807175 36 3405 22 6.55708e+06 385760 612192. 2118.31 3.22 0.439886 0.396006 22750 144809 -1 2807 15 1168 3766 204246 48163 6.8411 6.8411 -146.675 -6.8411 0 0 782063. 2706.10 0.29 0.11 0.21 -1 -1 0.29 0.0504717 0.0458158 198 198 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.23 17324 12 0.19 -1 -1 32656 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1022 8969 2278 5945 746 55.1 MiB 0.12 0.00 7.21391 -130.754 -7.21391 7.21391 1.04 0.00126973 0.00116404 0.0639532 0.0586 30 2436 17 6.55708e+06 325485 526063. 1820.29 1.21 0.218527 0.197251 21886 126133 -1 2080 16 937 2522 114156 28302 6.43104 6.43104 -125.386 -6.43104 0 0 666494. 2306.21 0.25 0.09 0.15 -1 -1 0.25 0.0447167 0.0406149 152 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17560 12 0.18 -1 -1 32696 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1233 12733 3609 7498 1626 55.0 MiB 0.17 0.00 6.32286 -134.975 -6.32286 6.32286 1.04 0.00125797 0.00115145 0.0901641 0.0824342 36 3149 24 6.55708e+06 265210 612192. 2118.31 4.41 0.338937 0.304361 22750 144809 -1 2676 17 1207 3768 201034 45387 5.53052 5.53052 -132.576 -5.53052 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.054098 0.0490355 140 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17824 12 0.16 -1 -1 32692 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1203 13157 3412 7574 2171 55.2 MiB 0.14 0.00 6.35469 -136.224 -6.35469 6.35469 1.08 0.00128678 0.00117852 0.0665307 0.0607395 36 2772 21 6.55708e+06 313430 612192. 2118.31 2.77 0.341855 0.306911 22750 144809 -1 2370 14 985 2568 141811 32387 5.67826 5.67826 -129.27 -5.67826 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0401003 0.0364289 150 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.23 17676 13 0.19 -1 -1 32616 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1164 8207 1986 5229 992 55.2 MiB 0.12 0.00 7.79043 -163.222 -7.79043 7.79043 1.05 0.00138743 0.00126957 0.0617538 0.0565914 28 3341 23 6.55708e+06 301375 500653. 1732.36 2.53 0.246075 0.221483 21310 115450 -1 2943 16 1280 3583 227960 53199 6.58844 6.58844 -160.003 -6.58844 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0480964 0.0435954 157 156 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17364 12 0.20 -1 -1 32508 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 16.2 MiB 0.27 1043 7646 1812 5284 550 54.8 MiB 0.10 0.00 6.98257 -137.016 -6.98257 6.98257 1.05 0.00121778 0.00111597 0.0528178 0.0484043 28 2870 17 6.55708e+06 289320 500653. 1732.36 2.17 0.201067 0.181191 21310 115450 -1 2423 29 956 2599 287403 124368 5.86158 5.86158 -130.373 -5.86158 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0681526 0.0614543 132 128 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.23 17512 12 0.15 -1 -1 32716 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1210 6701 1475 4829 397 55.0 MiB 0.10 0.00 6.74278 -155.388 -6.74278 6.74278 1.05 0.00125451 0.00114656 0.0481396 0.0440074 28 3180 36 6.55708e+06 265210 500653. 1732.36 2.92 0.240804 0.216169 21310 115450 -1 2743 23 1051 2953 280355 102696 5.95786 5.95786 -150.76 -5.95786 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0575716 0.0518881 146 142 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.25 17608 13 0.24 -1 -1 32492 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1329 9892 2541 6359 992 55.3 MiB 0.10 0.00 8.09466 -168.958 -8.09466 8.09466 0.72 0.0015994 0.00146681 0.0384593 0.0349616 28 3841 47 6.55708e+06 361650 500653. 1732.36 2.56 0.316512 0.284277 21310 115450 -1 3125 14 1275 3654 217111 49344 6.96836 6.96836 -162.422 -6.96836 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0496445 0.0451274 191 189 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17744 14 0.30 -1 -1 32688 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1640 11170 2650 7415 1105 55.4 MiB 0.18 0.00 9.0039 -186.596 -9.0039 9.0039 1.07 0.00173039 0.00158625 0.0959284 0.0878765 30 4087 23 6.55708e+06 361650 526063. 1820.29 2.16 0.325871 0.294434 21886 126133 -1 3325 19 1537 4514 224801 51116 7.64835 7.64835 -171.324 -7.64835 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0292814 0.0264378 210 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17556 11 0.17 -1 -1 32624 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 16.3 MiB 0.25 878 5158 949 3601 608 55.0 MiB 0.08 0.00 6.71354 -123.992 -6.71354 6.71354 1.07 0.00124803 0.00114347 0.0368863 0.0337965 28 3083 35 6.55708e+06 325485 500653. 1732.36 1.87 0.224448 0.201549 21310 115450 -1 2258 18 1080 2942 164903 40606 6.13918 6.13918 -124.562 -6.13918 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046889 0.0424185 147 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.27 17640 12 0.27 -1 -1 32844 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1420 10309 2435 6528 1346 55.5 MiB 0.16 0.00 7.45763 -153.823 -7.45763 7.45763 1.04 0.00172199 0.00157891 0.0848605 0.0777804 34 4188 46 6.55708e+06 397815 585099. 2024.56 5.03 0.535691 0.482016 22462 138074 -1 3417 30 1712 6122 483902 135469 6.58278 6.58278 -149.989 -6.58278 0 0 742403. 2568.87 0.26 0.26 0.22 -1 -1 0.26 0.0995667 0.0899108 209 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.27 17656 14 0.24 -1 -1 32844 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 16.7 MiB 0.29 1436 5553 1081 4073 399 55.3 MiB 0.10 0.00 7.42808 -156.41 -7.42808 7.42808 1.04 0.00156663 0.0014363 0.0459739 0.042145 38 3267 17 6.55708e+06 349595 638502. 2209.35 3.38 0.367724 0.329917 23326 155178 -1 2853 17 1235 3687 188502 42656 6.46824 6.46824 -148.294 -6.46824 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0543451 0.0491432 184 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.24 17768 12 0.16 -1 -1 32404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1097 11991 2937 7207 1847 54.8 MiB 0.16 0.00 7.19884 -160.926 -7.19884 7.19884 1.07 0.00127332 0.00116566 0.083544 0.0764828 28 3171 46 6.55708e+06 277265 500653. 1732.36 2.50 0.305033 0.274767 21310 115450 -1 2530 17 1028 2794 175881 40837 6.01958 6.01958 -151.671 -6.01958 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0460978 0.0417009 140 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55524 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 15.5 MiB 0.16 733 7548 1614 5464 470 54.2 MiB 0.09 0.00 5.36346 -120.328 -5.36346 5.36346 1.05 0.000904749 0.000828354 0.0438593 0.0401821 28 1940 22 6.55708e+06 192880 500653. 1732.36 0.97 0.115495 0.103222 21310 115450 -1 1721 16 679 1685 92341 23056 4.61634 4.61634 -115.41 -4.61634 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0306502 0.027528 91 87 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.23 17344 13 0.18 -1 -1 32616 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1075 12951 3421 7713 1817 54.9 MiB 0.17 0.00 6.90774 -144.707 -6.90774 6.90774 1.05 0.00129375 0.00118393 0.090844 0.0831735 28 3088 32 6.55708e+06 289320 500653. 1732.36 2.17 0.279634 0.251957 21310 115450 -1 2418 21 1210 3242 183150 43715 6.49978 6.49978 -146.691 -6.49978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0549876 0.0496722 144 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17588 13 0.27 -1 -1 32808 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1429 6575 1166 5105 304 55.6 MiB 0.11 0.00 8.01121 -157.98 -8.01121 8.01121 1.05 0.00168632 0.00154619 0.0562108 0.0515386 34 3477 22 6.55708e+06 373705 585099. 2024.56 2.70 0.416572 0.374446 22462 138074 -1 3110 20 1424 4228 228234 53308 7.2403 7.2403 -154.176 -7.2403 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0675554 0.0611581 211 210 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.29 17944 13 0.28 -1 -1 32552 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1433 6823 1289 5315 219 55.2 MiB 0.12 0.00 7.886 -165.604 -7.886 7.886 1.05 0.00163314 0.00149742 0.0594015 0.0544549 36 4367 47 6.55708e+06 325485 612192. 2118.31 8.96 0.483144 0.434068 22750 144809 -1 3332 17 1366 4336 289824 66269 7.0397 7.0397 -158.876 -7.0397 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0627756 0.0570737 194 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17348 9 0.09 -1 -1 32288 -1 -1 24 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55576 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 15.6 MiB 0.19 744 10762 3120 6243 1399 54.3 MiB 0.10 0.00 5.06374 -98.4324 -5.06374 5.06374 1.04 0.000819811 0.000747303 0.0517457 0.0473728 26 1898 20 6.55708e+06 289320 477104. 1650.88 1.54 0.154143 0.138061 21022 109990 -1 1641 15 634 1522 95057 22191 4.8332 4.8332 -99.6652 -4.8332 0 0 585099. 2024.56 0.22 0.06 0.17 -1 -1 0.22 0.0262003 0.0235087 87 76 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.22 17536 13 0.27 -1 -1 32712 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1381 10781 2930 5957 1894 55.4 MiB 0.17 0.00 7.83519 -151.249 -7.83519 7.83519 0.77 0.00160165 0.00146844 0.0933947 0.085662 30 4083 42 6.55708e+06 301375 526063. 1820.29 3.57 0.316096 0.284591 21886 126133 -1 3116 19 1424 4288 219011 50426 6.9633 6.9633 -149.742 -6.9633 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630877 0.0571082 193 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.18 17312 8 0.09 -1 -1 33008 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 15.6 MiB 0.13 553 7648 2806 3716 1126 54.2 MiB 0.05 0.00 4.12642 -89.8462 -4.12642 4.12642 1.14 0.000299994 0.000269655 0.019699 0.0177063 30 1616 22 6.55708e+06 192880 526063. 1820.29 1.08 0.104158 0.0919778 21886 126133 -1 1260 14 548 1189 58527 16069 3.73148 3.73148 -90.4104 -3.73148 0 0 666494. 2306.21 0.24 0.05 0.20 -1 -1 0.24 0.0238679 0.0213639 77 60 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.23 17544 15 0.22 -1 -1 32760 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1321 6923 1475 4903 545 55.4 MiB 0.11 0.00 8.32249 -162.146 -8.32249 8.32249 1.09 0.00144775 0.00132805 0.0531067 0.0487031 36 3269 25 6.55708e+06 337540 612192. 2118.31 3.03 0.375341 0.336881 22750 144809 -1 2787 16 1252 3638 203897 46010 7.4009 7.4009 -155.503 -7.4009 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0497231 0.0450642 165 160 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17688 13 0.22 -1 -1 32724 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1319 5919 1133 4327 459 55.2 MiB 0.10 0.00 7.07675 -156.6 -7.07675 7.07675 1.05 0.00146808 0.00134593 0.0476202 0.0436721 28 3679 22 6.55708e+06 313430 500653. 1732.36 2.56 0.240778 0.216868 21310 115450 -1 3055 23 1552 4783 319503 75123 6.44892 6.44892 -155.475 -6.44892 0 0 612192. 2118.31 0.22 0.17 0.18 -1 -1 0.22 0.0671703 0.0606296 168 166 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17768 13 0.28 -1 -1 32744 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1276 11223 2538 6825 1860 55.2 MiB 0.17 0.00 7.85647 -160.581 -7.85647 7.85647 1.05 0.00157048 0.0014403 0.0886624 0.0812629 30 3320 24 6.55708e+06 349595 526063. 1820.29 1.84 0.304434 0.27478 21886 126133 -1 2648 15 1237 3758 172498 41897 6.7183 6.7183 -150.821 -6.7183 0 0 666494. 2306.21 0.27 0.11 0.13 -1 -1 0.27 0.052012 0.0472205 187 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.22 17456 12 0.16 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1153 7191 1558 5291 342 54.9 MiB 0.11 0.00 6.57592 -147.41 -6.57592 6.57592 1.04 0.00128764 0.00117926 0.0520102 0.0476354 36 3148 35 6.55708e+06 277265 612192. 2118.31 4.10 0.362778 0.325243 22750 144809 -1 2589 16 1117 3275 186852 43337 5.60692 5.60692 -136.412 -5.60692 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0440652 0.0398731 147 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17572 11 0.15 -1 -1 32588 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.19 963 12919 3847 7319 1753 54.7 MiB 0.16 0.00 6.46503 -135.82 -6.46503 6.46503 1.04 0.00115326 0.00104915 0.083551 0.076472 28 2611 19 6.55708e+06 277265 500653. 1732.36 1.55 0.229834 0.20748 21310 115450 -1 2181 15 892 2397 136411 32401 5.86158 5.86158 -133.481 -5.86158 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.037551 0.0339607 131 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.24 17456 11 0.17 -1 -1 32608 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 16.6 MiB 0.35 1010 6913 1544 4325 1044 55.1 MiB 0.05 0.00 6.38158 -126.573 -6.38158 6.38158 0.72 0.000457078 0.000412842 0.018824 0.0170267 26 3323 50 6.55708e+06 337540 477104. 1650.88 1.95 0.101858 0.0893736 21022 109990 -1 2605 19 1204 3141 191966 45003 5.47906 5.47906 -126.663 -5.47906 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0493514 0.0445865 150 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.22 17448 12 0.22 -1 -1 32636 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1304 6321 1255 4617 449 55.1 MiB 0.10 0.00 7.16635 -157.812 -7.16635 7.16635 1.05 0.00149924 0.00137619 0.0514235 0.0471874 26 3817 49 6.55708e+06 313430 477104. 1650.88 3.66 0.312345 0.280521 21022 109990 -1 3145 19 1545 4159 251819 59845 6.4035 6.4035 -162.091 -6.4035 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586273 0.0529867 181 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.22 17516 12 0.16 -1 -1 32744 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 16.5 MiB 0.57 980 5567 1150 4291 126 55.1 MiB 0.09 0.00 7.18658 -144.693 -7.18658 7.18658 1.06 0.00128207 0.00117193 0.0418527 0.0383368 28 3147 34 6.55708e+06 277265 500653. 1732.36 2.55 0.234927 0.211064 21310 115450 -1 2468 29 1178 3073 296477 117738 6.07044 6.07044 -141.421 -6.07044 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0714621 0.0643746 149 146 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.24 17460 10 0.15 -1 -1 32600 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.18 1013 6563 1489 4557 517 54.9 MiB 0.10 0.00 5.76546 -121.445 -5.76546 5.76546 1.04 0.00123501 0.00113571 0.0489248 0.0448471 30 2358 16 6.55708e+06 265210 526063. 1820.29 1.28 0.196794 0.177268 21886 126133 -1 2081 16 885 2605 122669 28892 5.20346 5.20346 -117.311 -5.20346 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0424779 0.0384899 137 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18124 13 0.29 -1 -1 32788 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1488 10247 2366 6979 902 55.8 MiB 0.17 0.00 7.78037 -164.973 -7.78037 7.78037 1.04 0.00180581 0.00165542 0.0910545 0.0834306 32 4128 46 6.55708e+06 373705 554710. 1919.41 2.37 0.396597 0.35737 22174 131602 -1 3512 16 1530 4876 330660 74130 6.86804 6.86804 -154.58 -6.86804 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0626686 0.0569091 221 221 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.28 18196 14 0.31 -1 -1 33424 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 16.9 MiB 0.50 1341 7544 1708 5122 714 55.4 MiB 0.13 0.00 7.48711 -165.315 -7.48711 7.48711 1.07 0.00162643 0.00149267 0.0640908 0.0588322 30 3756 44 6.55708e+06 337540 526063. 1820.29 2.34 0.335318 0.302156 21886 126133 -1 2987 18 1338 3927 186931 44346 6.65518 6.65518 -156.797 -6.65518 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0625798 0.0567881 191 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17640 12 0.15 -1 -1 32592 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1061 14582 3956 8171 2455 54.9 MiB 0.19 0.00 7.55424 -147.694 -7.55424 7.55424 0.99 0.00129803 0.00118868 0.0947327 0.0865592 36 2670 17 6.55708e+06 349595 612192. 2118.31 2.82 0.359124 0.322857 22750 144809 -1 2298 15 923 2506 139164 32090 6.4819 6.4819 -138 -6.4819 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0417348 0.0377704 156 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.29 17944 12 0.28 -1 -1 32868 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1440 9951 2153 6171 1627 55.5 MiB 0.16 0.00 7.66392 -155.521 -7.66392 7.66392 1.07 0.00176201 0.00161857 0.0853174 0.0783459 30 3843 35 6.55708e+06 397815 526063. 1820.29 2.21 0.351813 0.317985 21886 126133 -1 3200 21 1554 4521 218190 52222 6.67144 6.67144 -150.22 -6.67144 0 0 666494. 2306.21 0.24 0.16 0.22 -1 -1 0.24 0.0749786 0.0680013 218 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17856 14 0.33 -1 -1 33356 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1368 10442 2445 6848 1149 55.7 MiB 0.17 0.00 8.27333 -162.102 -8.27333 8.27333 1.05 0.00167894 0.00154032 0.0894244 0.0820305 30 3476 48 6.55708e+06 349595 526063. 1820.29 2.25 0.378552 0.341264 21886 126133 -1 2944 17 1606 5087 230104 55320 7.34122 7.34122 -156.976 -7.34122 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0267756 0.0242162 202 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.29 18208 13 0.25 -1 -1 32896 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1406 11311 2955 7221 1135 55.2 MiB 0.18 0.00 7.94497 -159.991 -7.94497 7.94497 1.05 0.00157341 0.00144113 0.0916055 0.0839089 36 3512 22 6.55708e+06 337540 612192. 2118.31 2.96 0.428868 0.386138 22750 144809 -1 3203 18 1469 4134 234682 53499 6.8411 6.8411 -151.707 -6.8411 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0592924 0.0537269 185 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.16 17592 13 0.25 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1345 7613 1868 4862 883 55.4 MiB 0.12 0.00 7.08841 -141.492 -7.08841 7.08841 1.04 0.00153019 0.00140258 0.0633828 0.058075 34 3664 49 6.55708e+06 313430 585099. 2024.56 3.97 0.463602 0.416166 22462 138074 -1 3164 17 1313 4163 244724 55552 5.97978 5.97978 -133.201 -5.97978 0 0 742403. 2568.87 0.28 0.13 0.22 -1 -1 0.28 0.0554394 0.0502481 179 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.20 17388 12 0.18 -1 -1 32696 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 16.7 MiB 0.22 1315 5548 1167 3981 400 55.4 MiB 0.09 0.00 7.00741 -145.329 -7.00741 7.00741 1.04 0.00142816 0.00130966 0.0462758 0.0424451 28 3273 27 6.55708e+06 289320 500653. 1732.36 2.08 0.242933 0.218273 21310 115450 -1 2880 18 1362 4073 243587 55099 6.10198 6.10198 -140.629 -6.10198 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0535003 0.0483115 171 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.31 18516 14 0.38 -1 -1 32836 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 17.1 MiB 0.40 1670 9383 2100 6642 641 55.7 MiB 0.17 0.00 8.23218 -176.173 -8.23218 8.23218 1.04 0.00187062 0.00171422 0.0867643 0.0795036 34 4632 43 6.55708e+06 373705 585099. 2024.56 3.86 0.266422 0.237584 22462 138074 -1 3783 16 1514 4948 301263 67057 7.28976 7.28976 -169.641 -7.28976 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0649971 0.0591474 230 230 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17384 11 0.21 -1 -1 32460 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.34 1051 8603 2089 5379 1135 55.0 MiB 0.13 0.00 6.74223 -137.589 -6.74223 6.74223 1.05 0.00138527 0.0012696 0.0639838 0.058588 30 3212 35 6.55708e+06 313430 526063. 1820.29 1.85 0.279398 0.251465 21886 126133 -1 2521 17 1168 3379 157721 38187 6.06278 6.06278 -136.796 -6.06278 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0498976 0.0451412 163 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17648 13 0.30 -1 -1 33400 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1315 7435 1572 5156 707 55.3 MiB 0.12 0.00 8.06447 -154.642 -8.06447 8.06447 1.06 0.001589 0.00145439 0.0630293 0.0577129 28 3730 45 6.55708e+06 337540 500653. 1732.36 2.76 0.324734 0.291996 21310 115450 -1 2993 18 1246 4009 311549 83022 7.29176 7.29176 -151.859 -7.29176 0 0 612192. 2118.31 0.22 0.16 0.12 -1 -1 0.22 0.0608241 0.0551223 193 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.26 17788 12 0.25 -1 -1 32880 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.44 1532 15213 4154 8657 2402 55.5 MiB 0.24 0.00 7.13712 -150.826 -7.13712 7.13712 1.05 0.00170639 0.00156331 0.128984 0.118116 36 3865 38 6.55708e+06 349595 612192. 2118.31 4.75 0.544514 0.490671 22750 144809 -1 3379 23 1418 5004 458665 164388 6.19264 6.19264 -141.127 -6.19264 0 0 782063. 2706.10 0.27 0.23 0.23 -1 -1 0.27 0.0796048 0.0721058 210 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.24 17552 13 0.24 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1350 5133 911 3808 414 55.3 MiB 0.09 0.00 7.54057 -158.305 -7.54057 7.54057 1.07 0.00155985 0.00143116 0.0430153 0.0394787 30 3259 22 6.55708e+06 349595 526063. 1820.29 1.58 0.24938 0.224729 21886 126133 -1 2779 18 1243 3580 170868 40631 6.90724 6.90724 -155.01 -6.90724 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0586099 0.05302 183 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.27 17636 13 0.21 -1 -1 32780 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1371 12351 2891 7373 2087 55.3 MiB 0.18 0.00 7.1188 -155.865 -7.1188 7.1188 1.07 0.00151145 0.00138508 0.0974992 0.0893998 36 3355 27 6.55708e+06 313430 612192. 2118.31 4.33 0.438632 0.394043 22750 144809 -1 2803 15 1125 3397 194744 43752 6.17898 6.17898 -146.024 -6.17898 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0499009 0.0452623 178 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32796 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 16.7 MiB 0.44 1446 11170 2757 7067 1346 55.3 MiB 0.17 0.00 7.31654 -157.818 -7.31654 7.31654 1.04 0.00164332 0.00150557 0.0912286 0.0835579 38 3284 17 6.55708e+06 361650 638502. 2209.35 2.97 0.431647 0.388599 23326 155178 -1 2853 15 1250 4137 194632 45234 6.26904 6.26904 -147.068 -6.26904 0 0 851065. 2944.86 0.30 0.10 0.25 -1 -1 0.30 0.0404278 0.0365111 197 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.16 17992 13 0.29 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1513 7223 1461 5178 584 55.5 MiB 0.13 0.00 7.58438 -161.714 -7.58438 7.58438 1.05 0.0017617 0.00161564 0.0640522 0.0587283 36 3945 19 6.55708e+06 373705 612192. 2118.31 3.57 0.417992 0.37615 22750 144809 -1 3296 18 1573 4871 256506 58577 6.70864 6.70864 -153.326 -6.70864 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0666319 0.060399 212 212 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17804 14 0.27 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1215 10813 2361 6891 1561 55.2 MiB 0.16 0.00 8.31609 -163.248 -8.31609 8.31609 1.04 0.00149297 0.00136946 0.0870622 0.0798397 30 3273 27 6.55708e+06 289320 526063. 1820.29 2.46 0.299322 0.269888 21886 126133 -1 2720 18 1271 3852 181225 42639 7.1187 7.1187 -154.864 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0551152 0.049908 168 168 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17824 13 0.26 -1 -1 32672 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 16.7 MiB 0.34 1503 5206 957 3956 293 55.4 MiB 0.09 0.00 8.07478 -162.365 -8.07478 8.07478 1.05 0.00163736 0.00150285 0.0447537 0.0410977 28 4195 32 6.55708e+06 361650 500653. 1732.36 3.83 0.291691 0.262571 21310 115450 -1 3466 19 1840 5622 342639 75414 7.0005 7.0005 -158.548 -7.0005 0 0 612192. 2118.31 0.22 0.18 0.18 -1 -1 0.22 0.0644936 0.0584505 198 197 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 17892 13 0.27 -1 -1 32808 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1405 8401 1949 5780 672 55.7 MiB 0.14 0.00 7.80415 -160.841 -7.80415 7.80415 1.05 0.00170154 0.00155547 0.0720467 0.0660169 34 3777 50 6.55708e+06 373705 585099. 2024.56 3.80 0.516687 0.46456 22462 138074 -1 3251 15 1437 4206 244223 55741 6.8411 6.8411 -155.997 -6.8411 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.0558744 0.0508025 213 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.29 18048 12 0.29 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1438 11641 3058 7283 1300 55.5 MiB 0.19 0.00 7.70272 -159.771 -7.70272 7.70272 0.79 0.00169619 0.00155526 0.0945156 0.0864947 30 3780 27 6.55708e+06 397815 526063. 1820.29 1.83 0.331905 0.299475 21886 126133 -1 2888 18 1519 4182 184934 45916 6.6419 6.6419 -150.702 -6.6419 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0647839 0.0588163 216 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.23 17324 11 0.13 -1 -1 32620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 16.2 MiB 0.24 1054 3998 719 2985 294 54.8 MiB 0.06 0.00 6.14869 -128.86 -6.14869 6.14869 1.05 0.00116246 0.00106444 0.0293354 0.0268715 26 2734 30 6.55708e+06 216990 477104. 1650.88 2.06 0.192845 0.17267 21022 109990 -1 2325 17 931 2444 150962 34991 5.41032 5.41032 -130.798 -5.41032 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0506837 0.0463528 125 122 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.26 17840 13 0.22 -1 -1 32648 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.34 1266 7888 1808 5375 705 55.1 MiB 0.12 0.00 7.4424 -157.565 -7.4424 7.4424 1.05 0.00142902 0.00131068 0.0618502 0.0566824 28 3615 32 6.55708e+06 289320 500653. 1732.36 2.45 0.271248 0.24408 21310 115450 -1 2988 19 1194 3381 209369 47676 6.62764 6.62764 -152.575 -6.62764 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0562075 0.05079 161 160 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18268 14 0.42 -1 -1 32852 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 17.3 MiB 0.26 1601 9199 2042 6426 731 55.9 MiB 0.18 0.00 8.66873 -176.87 -8.66873 8.66873 1.09 0.00196735 0.00179896 0.0969304 0.0888012 30 4285 34 6.55708e+06 397815 526063. 1820.29 2.65 0.393488 0.355507 21886 126133 -1 3448 17 1855 5819 263765 63459 7.36876 7.36876 -164.684 -7.36876 0 0 666494. 2306.21 0.22 0.16 0.17 -1 -1 0.22 0.0705812 0.0642085 245 244 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.27 17808 13 0.28 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1376 4579 799 3553 227 55.1 MiB 0.08 0.00 8.02278 -172.696 -8.02278 8.02278 1.06 0.00157226 0.00142938 0.0392975 0.0359971 36 3334 17 6.55708e+06 325485 612192. 2118.31 3.28 0.365503 0.327843 22750 144809 -1 2862 16 1170 3389 185657 42603 7.0769 7.0769 -164.702 -7.0769 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0541466 0.0492155 178 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.23 17376 11 0.17 -1 -1 32660 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 16.3 MiB 0.17 1035 10687 2518 6679 1490 54.8 MiB 0.14 0.00 6.59735 -138.464 -6.59735 6.59735 1.04 0.00125328 0.001147 0.0756975 0.0692433 34 2502 23 6.55708e+06 277265 585099. 2024.56 2.71 0.305534 0.274134 22462 138074 -1 2257 17 992 2850 154109 36061 5.97918 5.97918 -135.235 -5.97918 0 0 742403. 2568.87 0.26 0.10 0.22 -1 -1 0.26 0.0454222 0.0411535 139 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.30 18252 15 0.46 -1 -1 32736 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1771 9773 2274 6549 950 55.7 MiB 0.18 0.00 9.55013 -184.943 -9.55013 9.55013 1.04 0.0020423 0.00187112 0.0948225 0.0869135 36 4458 20 6.55708e+06 409870 612192. 2118.31 4.83 0.540619 0.488551 22750 144809 -1 3874 20 2194 7275 428147 94060 8.24735 8.24735 -174.541 -8.24735 0 0 782063. 2706.10 0.27 0.21 0.12 -1 -1 0.27 0.0850269 0.0771835 257 257 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.26 17588 13 0.31 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1402 7958 1933 5289 736 55.6 MiB 0.13 0.00 7.87358 -164.462 -7.87358 7.87358 1.04 0.00169476 0.00155497 0.0717264 0.0657554 30 3523 41 6.55708e+06 337540 526063. 1820.29 1.98 0.346373 0.312466 21886 126133 -1 2862 16 1203 3677 173554 41260 6.73256 6.73256 -152.703 -6.73256 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0582527 0.0529153 203 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.22 17412 11 0.13 -1 -1 32040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1082 11804 3066 7108 1630 55.0 MiB 0.15 0.00 6.28346 -137.062 -6.28346 6.28346 1.06 0.00124315 0.00113818 0.0813482 0.0744848 30 2616 26 6.55708e+06 265210 526063. 1820.29 1.65 0.24908 0.224487 21886 126133 -1 2211 13 935 2761 132039 31269 5.40772 5.40772 -129.072 -5.40772 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0359682 0.0326458 141 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.26 17720 12 0.29 -1 -1 32812 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 17.1 MiB 0.41 1459 6058 1136 4425 497 55.8 MiB 0.11 0.00 7.4882 -153.189 -7.4882 7.4882 1.05 0.00171735 0.00157094 0.0539221 0.0494075 28 4439 38 6.55708e+06 361650 500653. 1732.36 4.26 0.328825 0.295979 21310 115450 -1 3721 57 4013 13613 1649164 568355 6.87004 6.87004 -155.733 -6.87004 0 0 612192. 2118.31 0.22 0.74 0.09 -1 -1 0.22 0.179911 0.161773 213 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.22 17540 12 0.20 -1 -1 32640 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1183 11346 2851 6780 1715 55.2 MiB 0.15 0.00 7.37351 -152.427 -7.37351 7.37351 1.04 0.0013547 0.0012408 0.0801469 0.0734715 28 3250 31 6.55708e+06 313430 500653. 1732.36 1.98 0.275808 0.248654 21310 115450 -1 2869 17 1175 3234 203994 49738 6.78964 6.78964 -153.099 -6.78964 0 0 612192. 2118.31 0.26 0.12 0.09 -1 -1 0.26 0.0490432 0.0444434 153 149 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17612 12 0.18 -1 -1 32720 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 948 9803 2338 5714 1751 55.0 MiB 0.14 0.00 7.00946 -139.977 -7.00946 7.00946 1.05 0.00129864 0.00119052 0.0748006 0.0685211 26 3038 22 6.55708e+06 253155 477104. 1650.88 2.88 0.244368 0.220363 21022 109990 -1 2430 18 989 2837 210876 49947 6.39124 6.39124 -138.781 -6.39124 0 0 585099. 2024.56 0.21 0.12 0.18 -1 -1 0.21 0.0485096 0.0438921 140 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 17804 12 0.28 -1 -1 32732 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1279 5474 1033 4128 313 55.6 MiB 0.10 0.00 6.7577 -128.343 -6.7577 6.7577 1.09 0.00161401 0.00148092 0.0476836 0.0438253 30 3505 36 6.55708e+06 373705 526063. 1820.29 2.22 0.256511 0.230624 21886 126133 -1 2899 27 1332 4449 354174 132887 5.94258 5.94258 -126.347 -5.94258 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0844115 0.0762196 191 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.27 17812 13 0.33 -1 -1 32776 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 17.1 MiB 0.58 1641 6757 1409 4886 462 55.7 MiB 0.12 0.00 8.4108 -177.204 -8.4108 8.4108 1.06 0.00183677 0.00168568 0.0614884 0.056427 30 4203 45 6.55708e+06 397815 526063. 1820.29 2.90 0.375833 0.339078 21886 126133 -1 3490 18 1679 4703 234223 54847 7.40996 7.40996 -168.236 -7.40996 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0703228 0.0639233 238 236 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17588 12 0.22 -1 -1 32708 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1388 15645 4295 9025 2325 55.4 MiB 0.24 0.00 7.61066 -152.509 -7.61066 7.61066 1.11 0.00164487 0.0015051 0.125282 0.114664 30 3749 42 6.55708e+06 385760 526063. 1820.29 3.16 0.397353 0.358596 21886 126133 -1 3031 21 1582 4727 228631 54061 6.4819 6.4819 -145.643 -6.4819 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0699665 0.0632889 200 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.23 17460 12 0.15 -1 -1 32428 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 16.4 MiB 0.50 1058 4842 1062 3260 520 54.8 MiB 0.07 0.00 6.82123 -141.643 -6.82123 6.82123 1.05 0.0011818 0.00108098 0.0346541 0.0317326 30 2539 19 6.55708e+06 241100 526063. 1820.29 1.30 0.151024 0.135443 21886 126133 -1 2201 25 907 2587 263239 114464 6.06078 6.06078 -140.148 -6.06078 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0578673 0.0521069 126 120 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.24 17952 12 0.21 -1 -1 32412 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1176 10455 2348 6392 1715 54.9 MiB 0.15 0.00 7.13387 -142.33 -7.13387 7.13387 1.04 0.00136933 0.00124415 0.0762727 0.0698203 28 3265 32 6.55708e+06 289320 500653. 1732.36 2.58 0.274963 0.24755 21310 115450 -1 2812 19 1179 3692 201624 47628 6.25938 6.25938 -140.101 -6.25938 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0534659 0.0482634 154 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.25 17652 11 0.18 -1 -1 32848 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1196 13547 4241 6931 2375 55.3 MiB 0.19 0.00 6.85121 -131.802 -6.85121 6.85121 1.04 0.00152106 0.00139304 0.104209 0.0954392 36 3385 32 6.55708e+06 361650 612192. 2118.31 5.22 0.459444 0.413233 22750 144809 -1 2593 14 1189 3659 196963 46529 6.03324 6.03324 -126.201 -6.03324 0 0 782063. 2706.10 0.31 0.12 0.23 -1 -1 0.31 0.0484521 0.0441465 190 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.23 17520 11 0.20 -1 -1 32684 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1080 10647 2769 6876 1002 55.3 MiB 0.15 0.00 6.62889 -122.091 -6.62889 6.62889 1.04 0.0014221 0.00130524 0.0831324 0.0762128 36 2842 24 6.55708e+06 325485 612192. 2118.31 2.99 0.392609 0.352736 22750 144809 -1 2368 21 1131 4148 217048 49040 6.02298 6.02298 -119.498 -6.02298 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0604533 0.0545037 172 171 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.26 17772 13 0.19 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1040 5271 1036 3997 238 55.0 MiB 0.08 0.00 7.2482 -136.339 -7.2482 7.2482 1.08 0.00130276 0.00119254 0.0395862 0.0362533 36 2751 18 6.55708e+06 301375 612192. 2118.31 2.82 0.311549 0.279455 22750 144809 -1 2327 21 1020 3176 169142 39267 6.6027 6.6027 -137.49 -6.6027 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0559882 0.0506249 148 147 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.26 17800 12 0.19 -1 -1 32844 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1203 11270 2888 6672 1710 55.1 MiB 0.16 0.00 7.39203 -156.297 -7.39203 7.39203 1.05 0.00149951 0.00137648 0.0855065 0.0784826 30 3360 45 6.55708e+06 337540 526063. 1820.29 2.79 0.3369 0.303453 21886 126133 -1 2532 16 1227 3301 151329 37939 6.0821 6.0821 -146.499 -6.0821 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0510762 0.0462816 174 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.26 17832 13 0.28 -1 -1 32800 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1314 8130 1959 5459 712 55.4 MiB 0.13 0.00 8.02027 -155.447 -8.02027 8.02027 1.04 0.00158242 0.0014517 0.0686292 0.0629553 30 3005 23 6.55708e+06 325485 526063. 1820.29 1.63 0.277205 0.250102 21886 126133 -1 2567 14 1027 3072 143954 34065 6.97036 6.97036 -146.48 -6.97036 0 0 666494. 2306.21 0.24 0.10 0.19 -1 -1 0.24 0.0493479 0.0448401 187 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17912 14 0.23 -1 -1 32780 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 16.7 MiB 0.24 1224 14168 3595 8187 2386 55.2 MiB 0.21 0.00 8.42547 -164.88 -8.42547 8.42547 1.05 0.00162987 0.00149213 0.115867 0.106019 26 3972 40 6.55708e+06 337540 477104. 1650.88 3.42 0.376271 0.339372 21022 109990 -1 3159 21 1474 4041 259266 58930 7.73136 7.73136 -172.194 -7.73136 0 0 585099. 2024.56 0.23 0.15 0.17 -1 -1 0.23 0.0693063 0.0626865 196 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18204 14 0.24 -1 -1 32852 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1263 9791 2392 5641 1758 55.2 MiB 0.15 0.00 7.61341 -152.493 -7.61341 7.61341 1.05 0.00151076 0.00138432 0.0796354 0.0730156 30 3316 50 6.55708e+06 301375 526063. 1820.29 2.44 0.352533 0.317473 21886 126133 -1 2650 20 1165 3477 179637 41318 6.66744 6.66744 -146.271 -6.66744 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.062573 0.0566831 175 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.28 18132 13 0.32 -1 -1 32676 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1335 6813 1455 4737 621 55.6 MiB 0.12 0.00 7.97606 -158.638 -7.97606 7.97606 1.08 0.0016916 0.00155007 0.0600808 0.0551064 28 4023 34 6.55708e+06 349595 500653. 1732.36 3.10 0.315257 0.283922 21310 115450 -1 3244 31 2269 6914 508020 168235 6.97036 6.97036 -153.104 -6.97036 0 0 612192. 2118.31 0.24 0.27 0.18 -1 -1 0.24 0.10041 0.0905767 205 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.26 17568 13 0.19 -1 -1 32464 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 16.2 MiB 0.41 1181 4811 970 3437 404 54.8 MiB 0.08 0.00 7.32681 -149.503 -7.32681 7.32681 1.03 0.00131811 0.00120553 0.037203 0.0340947 28 2943 24 6.55708e+06 289320 500653. 1732.36 1.64 0.209407 0.188047 21310 115450 -1 2632 17 1167 3120 186389 43637 6.26704 6.26704 -144.792 -6.26704 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.046453 0.0420571 147 146 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.28 18084 13 0.41 -1 -1 32980 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1409 6058 1135 4495 428 55.5 MiB 0.11 0.00 8.2444 -163.721 -8.2444 8.2444 1.05 0.00171161 0.00156975 0.055486 0.0509245 36 3519 23 6.55708e+06 385760 612192. 2118.31 3.99 0.427717 0.384993 22750 144809 -1 2977 16 1390 3881 195015 46713 7.28976 7.28976 -154.111 -7.28976 0 0 782063. 2706.10 0.28 0.13 0.23 -1 -1 0.28 0.059451 0.0540316 203 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17616 14 0.30 -1 -1 32832 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.45 1264 7231 1520 5560 151 55.2 MiB 0.12 0.00 8.00109 -166.402 -8.00109 8.00109 1.04 0.00157964 0.00144368 0.0619536 0.0567093 30 3743 50 6.55708e+06 325485 526063. 1820.29 2.57 0.340274 0.306038 21886 126133 -1 2880 14 1293 4196 210862 49523 7.0815 7.0815 -162.389 -7.0815 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0490203 0.0445185 181 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17800 13 0.22 -1 -1 32884 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 16.7 MiB 0.28 1305 14323 3915 8229 2179 55.4 MiB 0.21 0.00 7.86768 -158.537 -7.86768 7.86768 1.05 0.00150935 0.00138373 0.114705 0.105084 38 3237 35 6.55708e+06 301375 638502. 2209.35 3.80 0.47164 0.424514 23326 155178 -1 2664 18 1430 4466 220129 49519 7.0795 7.0795 -153.488 -7.0795 0 0 851065. 2944.86 0.28 0.13 0.25 -1 -1 0.28 0.0572084 0.0517283 175 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17992 13 0.21 -1 -1 32960 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1164 9989 2471 5804 1714 55.3 MiB 0.16 0.00 7.4808 -136.781 -7.4808 7.4808 1.05 0.00150917 0.00138497 0.0824713 0.0756509 28 4049 33 6.55708e+06 325485 500653. 1732.36 5.12 0.28024 0.252134 21310 115450 -1 3203 18 1480 4256 294335 66993 6.8039 6.8039 -143.727 -6.8039 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0552659 0.0499744 178 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.27 17824 14 0.34 -1 -1 32784 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1476 8091 1866 5495 730 55.7 MiB 0.13 0.00 7.88885 -165.953 -7.88885 7.88885 1.04 0.00177218 0.00162493 0.0661721 0.0607088 30 3544 39 6.55708e+06 446035 526063. 1820.29 1.86 0.346583 0.312639 21886 126133 -1 2956 19 1495 4336 195157 47267 7.0377 7.0377 -158.211 -7.0377 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0700885 0.0636001 218 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17608 11 0.27 -1 -1 32836 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.45 1160 8130 1856 5819 455 55.5 MiB 0.13 0.00 6.86478 -134.007 -6.86478 6.86478 1.05 0.00154024 0.00141181 0.0675125 0.0618403 28 3852 30 6.55708e+06 349595 500653. 1732.36 3.20 0.299502 0.270331 21310 115450 -1 3008 20 1623 4773 300015 69057 6.13918 6.13918 -134.59 -6.13918 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0631889 0.0571801 177 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17076 13 0.16 -1 -1 32572 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1142 8083 2034 5178 871 55.1 MiB 0.11 0.00 7.01052 -158.499 -7.01052 7.01052 1.08 0.00122361 0.00111469 0.0544127 0.0498469 28 3461 48 6.55708e+06 289320 500653. 1732.36 3.66 0.266688 0.239557 21310 115450 -1 2810 19 1169 3029 212550 49762 6.13978 6.13978 -158.3 -6.13978 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0477246 0.043103 138 128 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 17780 14 0.23 -1 -1 32904 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 16.7 MiB 0.39 1316 5267 941 3849 477 55.2 MiB 0.09 0.00 8.08175 -166.146 -8.08175 8.08175 0.95 0.00151236 0.00138663 0.0433265 0.039752 36 3344 49 6.55708e+06 337540 612192. 2118.31 5.74 0.435362 0.390351 22750 144809 -1 2858 19 1239 3732 213441 48577 7.1997 7.1997 -158.608 -7.1997 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0591399 0.0535104 179 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.28 18260 15 0.40 -1 -1 32708 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57244 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1738 9421 2028 6135 1258 55.9 MiB 0.17 0.00 9.11118 -191.695 -9.11118 9.11118 1.10 0.00193088 0.00177195 0.0861417 0.0791186 30 4813 25 6.55708e+06 397815 526063. 1820.29 3.17 0.353604 0.319777 21886 126133 -1 3846 17 1881 5477 280413 64438 7.85982 7.85982 -180.296 -7.85982 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0694731 0.0631788 241 240 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17548 11 0.16 -1 -1 32588 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 16.1 MiB 0.38 1015 8213 1831 5887 495 54.7 MiB 0.10 0.00 6.43354 -132.345 -6.43354 6.43354 1.06 0.00120489 0.00110267 0.0433118 0.0391958 26 2795 26 6.55708e+06 265210 477104. 1650.88 2.68 0.209357 0.187563 21022 109990 -1 2458 18 1052 3068 207681 46574 5.66498 5.66498 -136.662 -5.66498 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0441358 0.0397413 129 126 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.23 17332 12 0.18 -1 -1 32848 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1181 9395 2257 5715 1423 55.2 MiB 0.13 0.00 7.12111 -149.72 -7.12111 7.12111 1.04 0.00134892 0.00123072 0.0676851 0.0620024 34 3103 20 6.55708e+06 313430 585099. 2024.56 2.42 0.312183 0.280375 22462 138074 -1 2552 15 1140 3181 168184 39239 6.25678 6.25678 -144.527 -6.25678 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0439134 0.0397502 156 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.28 17904 12 0.27 -1 -1 32712 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1374 9732 2347 6008 1377 55.4 MiB 0.16 0.00 7.22518 -156.32 -7.22518 7.22518 1.05 0.00172638 0.00157779 0.0823147 0.0754074 30 3769 28 6.55708e+06 385760 526063. 1820.29 2.67 0.332095 0.299744 21886 126133 -1 2987 18 1457 4433 208409 50290 6.39384 6.39384 -155.293 -6.39384 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0664914 0.0604075 213 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.27 17840 12 0.23 -1 -1 32788 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 16.6 MiB 0.34 1295 7929 1664 5456 809 55.1 MiB 0.13 0.00 7.52995 -159.234 -7.52995 7.52995 1.04 0.001534 0.001407 0.0651034 0.0597002 36 3430 23 6.55708e+06 313430 612192. 2118.31 3.11 0.380701 0.342388 22750 144809 -1 2916 14 1211 3646 201814 45483 6.7621 6.7621 -152.293 -6.7621 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0477721 0.0433968 181 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.16 18172 14 0.42 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 17.2 MiB 0.50 1613 7655 1578 5578 499 55.8 MiB 0.14 0.00 9.00229 -179.771 -9.00229 9.00229 1.04 0.00190819 0.00175195 0.073292 0.0672104 36 4565 44 6.55708e+06 373705 612192. 2118.31 6.66 0.561114 0.505824 22750 144809 -1 3729 18 1683 5449 299007 67961 7.89841 7.89841 -172.649 -7.89841 0 0 782063. 2706.10 0.26 0.17 0.12 -1 -1 0.26 0.0730662 0.0664722 234 233 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.25 17676 12 0.21 -1 -1 32840 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 16.4 MiB 0.43 1246 9687 2384 6348 955 55.2 MiB 0.15 0.00 7.02918 -135.408 -7.02918 7.02918 1.04 0.00143295 0.001315 0.0778769 0.0714283 28 3571 33 6.55708e+06 301375 500653. 1732.36 2.85 0.29105 0.262201 21310 115450 -1 2944 17 1197 3745 226727 51186 6.13918 6.13918 -131.372 -6.13918 0 0 612192. 2118.31 0.22 0.12 0.20 -1 -1 0.22 0.0493222 0.044473 160 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.22 17456 11 0.21 -1 -1 32804 -1 -1 26 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 16.4 MiB 0.33 833 9013 2082 5123 1808 54.8 MiB 0.12 0.00 7.08055 -122.398 -7.08055 7.08055 1.04 0.00122075 0.00111799 0.0628165 0.0575179 28 2481 16 6.55708e+06 313430 500653. 1732.36 1.38 0.209336 0.188727 21310 115450 -1 2181 16 937 2681 144182 35896 6.27104 6.27104 -119.514 -6.27104 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0422386 0.0382439 140 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.29 18200 13 0.42 -1 -1 32892 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 17.7 MiB 0.46 1984 9864 2435 6697 732 56.0 MiB 0.18 0.00 7.66038 -164.562 -7.66038 7.66038 1.04 0.00212074 0.00194337 0.0921628 0.0844266 36 4924 33 6.55708e+06 482200 612192. 2118.31 6.90 0.545118 0.491239 22750 144809 -1 4244 19 2022 6356 418528 101830 6.62764 6.62764 -158.176 -6.62764 0 0 782063. 2706.10 0.27 0.21 0.23 -1 -1 0.27 0.0843849 0.0766875 286 286 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 18076 14 0.24 -1 -1 33088 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.7 MiB 0.21 1315 7027 1431 4957 639 55.3 MiB 0.11 0.00 8.27869 -161.961 -8.27869 8.27869 1.04 0.00156251 0.00143306 0.0581757 0.0533658 28 3660 24 6.55708e+06 337540 500653. 1732.36 2.37 0.26828 0.241767 21310 115450 -1 3016 20 1268 3590 214832 51623 7.16956 7.16956 -155.951 -7.16956 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0637751 0.0576984 188 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17768 12 0.16 -1 -1 32640 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1196 5395 963 4230 202 55.0 MiB 0.08 0.00 7.24055 -154.388 -7.24055 7.24055 1.04 0.00132207 0.00121292 0.0380952 0.0349644 30 2856 20 6.55708e+06 325485 526063. 1820.29 1.46 0.201291 0.181133 21886 126133 -1 2294 15 868 2452 121146 28103 6.19064 6.19064 -145.709 -6.19064 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0426716 0.0387173 145 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.26 17628 13 0.27 -1 -1 32836 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 16.8 MiB 0.41 1201 6321 1371 4614 336 55.3 MiB 0.11 0.00 7.64034 -157.02 -7.64034 7.64034 1.04 0.00152202 0.00139495 0.053864 0.0493518 30 3256 40 6.55708e+06 313430 526063. 1820.29 1.86 0.294909 0.26538 21886 126133 -1 2579 15 1081 3185 144508 34487 6.6419 6.6419 -144.865 -6.6419 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0468604 0.0425014 169 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.27 17932 13 0.31 -1 -1 32812 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1537 8423 1899 6115 409 55.8 MiB 0.15 0.00 7.71709 -159.898 -7.71709 7.71709 1.05 0.00188193 0.00173176 0.0748891 0.0687345 36 3879 25 6.55708e+06 421925 612192. 2118.31 3.71 0.466765 0.42033 22750 144809 -1 3339 18 1652 4918 259156 61816 6.7601 6.7601 -150.909 -6.7601 0 0 782063. 2706.10 0.32 0.09 0.23 -1 -1 0.32 0.0354705 0.0322565 233 230 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.26 17640 11 0.24 -1 -1 32852 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1421 8703 2291 5674 738 55.5 MiB 0.14 0.00 6.43018 -129.379 -6.43018 6.43018 1.05 0.00163679 0.00150184 0.0722123 0.0662549 38 3311 27 6.55708e+06 373705 638502. 2209.35 3.30 0.432757 0.389108 23326 155178 -1 2799 17 1264 4462 204067 47300 5.62318 5.62318 -122.284 -5.62318 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0580261 0.0526955 199 199 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 17780 15 0.33 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 16.8 MiB 0.48 1495 8283 1832 5858 593 55.6 MiB 0.14 0.00 9.21891 -185.491 -9.21891 9.21891 1.04 0.00170503 0.00156319 0.0721097 0.0660744 38 3387 17 6.55708e+06 349595 638502. 2209.35 3.42 0.425645 0.383136 23326 155178 -1 2848 14 1200 3863 181857 42467 7.93561 7.93561 -171.681 -7.93561 0 0 851065. 2944.86 0.28 0.12 0.25 -1 -1 0.28 0.0532213 0.048407 202 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.29 18148 13 0.31 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 16.8 MiB 0.43 1391 6271 1140 4757 374 55.4 MiB 0.11 0.00 8.07023 -173.04 -8.07023 8.07023 1.05 0.00165512 0.00151757 0.0534103 0.048985 30 3593 20 6.55708e+06 361650 526063. 1820.29 2.14 0.265214 0.238901 21886 126133 -1 2903 17 1284 3905 184760 43217 7.10844 7.10844 -159.923 -7.10844 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0694765 0.0631634 194 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.14 17496 12 0.19 -1 -1 32692 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 16.7 MiB 0.43 1116 9738 2558 6406 774 55.3 MiB 0.13 0.00 7.61081 -154.169 -7.61081 7.61081 1.05 0.00133967 0.00122898 0.068667 0.0629449 30 3005 25 6.55708e+06 349595 526063. 1820.29 1.72 0.247277 0.222964 21886 126133 -1 2423 19 1255 3517 162640 39524 6.47024 6.47024 -141.633 -6.47024 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524299 0.0474358 157 154 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.24 17636 11 0.15 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 1023 14221 4533 7413 2275 55.0 MiB 0.18 0.00 6.85492 -138.928 -6.85492 6.85492 1.05 0.00124918 0.0011431 0.0992181 0.0907217 30 2928 46 6.55708e+06 253155 526063. 1820.29 2.21 0.311489 0.280318 21886 126133 -1 2286 18 1070 2867 167614 45871 6.07244 6.07244 -136.814 -6.07244 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0472799 0.0426707 145 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17604 13 0.32 -1 -1 32860 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 16.9 MiB 0.49 1413 7544 1727 4833 984 55.5 MiB 0.13 0.00 7.87899 -160.785 -7.87899 7.87899 1.04 0.00167024 0.00153138 0.0656729 0.0602013 36 4021 32 6.55708e+06 349595 612192. 2118.31 4.73 0.454425 0.408428 22750 144809 -1 3157 19 1672 5284 291593 66424 7.0005 7.0005 -155.01 -7.0005 0 0 782063. 2706.10 0.27 0.18 0.23 -1 -1 0.27 0.07392 0.0672022 203 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.24 17540 10 0.16 -1 -1 32612 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 868 12919 4781 6181 1957 54.8 MiB 0.17 0.00 5.78714 -114.742 -5.78714 5.78714 1.09 0.00122749 0.00112418 0.088476 0.0810058 36 2361 20 6.55708e+06 289320 612192. 2118.31 2.94 0.357012 0.321594 22750 144809 -1 1801 14 878 2572 124831 31192 5.29412 5.29412 -108.344 -5.29412 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0376194 0.0341053 137 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17464 14 0.19 -1 -1 32536 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 16.6 MiB 0.48 1127 8083 1934 5578 571 55.1 MiB 0.12 0.00 7.89252 -162.804 -7.89252 7.89252 1.05 0.0013253 0.00121414 0.0586879 0.0537833 30 2792 49 6.55708e+06 289320 526063. 1820.29 2.33 0.294772 0.265269 21886 126133 -1 2526 20 1154 3443 174242 40924 7.06583 7.06583 -157.357 -7.06583 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0541165 0.0489064 146 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.27 18032 13 0.26 -1 -1 32712 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1259 5343 1011 3807 525 55.4 MiB 0.05 0.00 7.51815 -158.387 -7.51815 7.51815 0.73 0.000555378 0.000497503 0.016943 0.0153981 30 3403 50 6.55708e+06 361650 526063. 1820.29 2.39 0.28552 0.255996 21886 126133 -1 2708 19 1247 3492 163913 39290 6.63024 6.63024 -152.491 -6.63024 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0592643 0.0536671 180 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.22 17348 12 0.15 -1 -1 32648 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 16.2 MiB 0.32 1126 6425 1245 4721 459 54.7 MiB 0.09 0.00 6.61153 -138.873 -6.61153 6.61153 1.04 0.00135675 0.00123333 0.043998 0.0402344 26 3323 44 6.55708e+06 313430 477104. 1650.88 4.18 0.250248 0.224694 21022 109990 -1 2679 18 1132 2915 195041 44469 6.17132 6.17132 -140.754 -6.17132 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0459733 0.0415341 138 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.27 17772 12 0.19 -1 -1 32844 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 16.6 MiB 0.30 1378 9336 2424 5781 1131 55.2 MiB 0.15 0.00 6.98257 -148.375 -6.98257 6.98257 1.08 0.00159093 0.00145749 0.080651 0.0738476 28 3883 35 6.55708e+06 313430 500653. 1732.36 4.59 0.325773 0.29336 21310 115450 -1 3415 24 1639 5314 510743 142015 6.18298 6.18298 -150.989 -6.18298 0 0 612192. 2118.31 0.23 0.26 0.19 -1 -1 0.23 0.0792537 0.0716163 195 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.29 17912 13 0.28 -1 -1 32672 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 16.8 MiB 0.49 1315 8372 1899 5332 1141 55.3 MiB 0.14 0.00 7.89081 -157.415 -7.89081 7.89081 1.06 0.00163616 0.00149935 0.0712874 0.0654115 30 3625 30 6.55708e+06 349595 526063. 1820.29 1.98 0.306686 0.27667 21886 126133 -1 3073 17 1352 4093 205925 47312 6.8797 6.8797 -151.217 -6.8797 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0604182 0.054909 193 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.23 17348 11 0.17 -1 -1 32628 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1172 8405 1842 5723 840 55.0 MiB 0.11 0.00 6.25963 -142.54 -6.25963 6.25963 1.07 0.00128668 0.001167 0.0576879 0.0527868 28 3065 24 6.55708e+06 301375 500653. 1732.36 1.86 0.23006 0.207027 21310 115450 -1 2690 15 1100 2962 178308 40669 5.57032 5.57032 -138.049 -5.57032 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0422883 0.0383321 148 139 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.24 17636 13 0.21 -1 -1 32764 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 16.3 MiB 0.29 1201 7888 1972 5242 674 55.0 MiB 0.12 0.00 7.53481 -156.077 -7.53481 7.53481 0.96 0.00143535 0.00131667 0.062262 0.0571249 36 3071 27 6.55708e+06 289320 612192. 2118.31 3.89 0.385114 0.345976 22750 144809 -1 2681 15 1095 3271 177755 41392 6.66944 6.66944 -146.621 -6.66944 0 0 782063. 2706.10 0.27 0.11 0.23 -1 -1 0.27 0.0468585 0.04248 164 160 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.25 17844 13 0.25 -1 -1 32820 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 17.0 MiB 0.65 1318 8165 2007 5452 706 55.5 MiB 0.13 0.00 7.90343 -168.183 -7.90343 7.90343 1.04 0.00159297 0.0014602 0.067703 0.0620305 30 3226 19 6.55708e+06 337540 526063. 1820.29 1.64 0.266518 0.240373 21886 126133 -1 2814 20 1363 3853 181964 43791 6.9979 6.9979 -160.968 -6.9979 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0654755 0.0593052 193 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.27 17804 11 0.21 -1 -1 32796 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1119 12568 3466 6955 2147 55.1 MiB 0.17 0.00 6.27069 -123.259 -6.27069 6.27069 1.05 0.00138578 0.00127108 0.0933256 0.085563 30 2940 50 6.55708e+06 325485 526063. 1820.29 2.16 0.337729 0.304143 21886 126133 -1 2517 15 1008 3060 157394 36211 5.50298 5.50298 -118.863 -5.50298 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0455581 0.0413035 160 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.29 18352 14 0.31 -1 -1 33240 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 17.4 MiB 0.36 1606 6711 1323 5111 277 55.9 MiB 0.12 0.00 8.36721 -183.374 -8.36721 8.36721 1.05 0.00182011 0.00166709 0.0590877 0.0541795 30 4329 37 6.55708e+06 421925 526063. 1820.29 2.78 0.341643 0.308068 21886 126133 -1 3550 24 1906 6091 351716 94716 7.38604 7.38604 -174.226 -7.38604 0 0 666494. 2306.21 0.24 0.20 0.20 -1 -1 0.24 0.0871901 0.0789421 224 224 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17136 12 0.17 -1 -1 32560 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1117 4987 873 3940 174 55.1 MiB 0.07 0.00 6.95154 -148.876 -6.95154 6.95154 1.03 0.00121248 0.00110995 0.0331756 0.0304147 36 2672 44 6.55708e+06 337540 612192. 2118.31 2.91 0.337617 0.302276 22750 144809 -1 2387 13 875 2354 137817 31246 5.97978 5.97978 -139.331 -5.97978 0 0 782063. 2706.10 0.27 0.08 0.23 -1 -1 0.27 0.0356993 0.0323959 138 131 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18120 13 0.29 -1 -1 32836 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 16.9 MiB 0.40 1370 8603 2025 5470 1108 55.3 MiB 0.14 0.00 7.91043 -160.998 -7.91043 7.91043 1.06 0.00160104 0.00146973 0.0744827 0.0682709 28 4265 49 6.55708e+06 301375 500653. 1732.36 4.71 0.357702 0.322105 21310 115450 -1 3442 17 1520 4590 286136 64967 6.7575 6.7575 -154.136 -6.7575 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0580623 0.0525632 189 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17592 13 0.18 -1 -1 32644 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.5 MiB 0.33 1056 8130 1788 5768 574 55.0 MiB 0.12 0.00 7.50778 -157.173 -7.50778 7.50778 1.05 0.001301 0.00118841 0.0562795 0.0514286 30 2704 18 6.55708e+06 313430 526063. 1820.29 1.40 0.214892 0.193497 21886 126133 -1 2313 16 1098 2983 138610 33886 6.4407 6.4407 -148.047 -6.4407 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.044385 0.0402158 151 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.29 17900 12 0.21 -1 -1 32872 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1163 6723 1513 4783 427 55.5 MiB 0.11 0.00 6.89912 -149.425 -6.89912 6.89912 1.04 0.00156204 0.0014264 0.0566857 0.0519115 28 3528 41 6.55708e+06 313430 500653. 1732.36 3.35 0.310618 0.279318 21310 115450 -1 2778 17 1161 3524 204815 47103 6.14118 6.14118 -144.817 -6.14118 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0552988 0.0501387 176 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18460 15 0.47 -1 -1 33276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 17.5 MiB 0.27 1744 7060 1356 4899 805 56.0 MiB 0.14 0.00 8.47263 -171.112 -8.47263 8.47263 1.05 0.00209021 0.00191438 0.0693625 0.0635189 30 5706 47 6.55708e+06 433980 526063. 1820.29 5.07 0.436232 0.39402 21886 126133 -1 4008 29 2412 8168 612663 183661 7.6799 7.6799 -172.318 -7.6799 0 0 666494. 2306.21 0.23 0.31 0.10 -1 -1 0.23 0.117057 0.105998 256 256 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.21 17140 10 0.10 -1 -1 32152 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 15.8 MiB 0.12 585 9368 2413 5125 1830 54.3 MiB 0.10 0.00 5.46394 -116.249 -5.46394 5.46394 1.03 0.000905375 0.000829237 0.0519597 0.0475727 34 2054 46 6.55708e+06 216990 585099. 2024.56 2.26 0.279447 0.249275 22462 138074 -1 1479 14 714 1708 96959 25712 5.08126 5.08126 -118.595 -5.08126 0 0 742403. 2568.87 0.27 0.07 0.22 -1 -1 0.27 0.0281215 0.0253442 90 84 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17672 13 0.19 -1 -1 32768 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 16.2 MiB 0.17 1072 8919 2278 5395 1246 54.8 MiB 0.13 0.00 7.24406 -148.604 -7.24406 7.24406 1.05 0.00129206 0.00118484 0.063849 0.0585826 36 2670 24 6.55708e+06 301375 612192. 2118.31 2.47 0.342695 0.308104 22750 144809 -1 2343 16 922 2630 141884 33368 6.41738 6.41738 -142.598 -6.41738 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0437925 0.0396976 143 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17636 12 0.21 -1 -1 32660 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1142 5938 1144 4647 147 55.2 MiB 0.10 0.00 7.66077 -153.727 -7.66077 7.66077 1.06 0.00146379 0.00134295 0.0492799 0.0452389 28 3544 30 6.55708e+06 289320 500653. 1732.36 1.99 0.258516 0.232434 21310 115450 -1 2828 19 1483 4043 231278 55286 6.90984 6.90984 -156.407 -6.90984 0 0 612192. 2118.31 0.26 0.14 0.18 -1 -1 0.26 0.0578562 0.0523324 171 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.15 17104 9 0.13 -1 -1 32508 -1 -1 22 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 16.1 MiB 0.16 820 8191 2009 5395 787 54.7 MiB 0.10 0.00 5.29417 -99.0147 -5.29417 5.29417 1.05 0.00102226 0.000936603 0.0522873 0.0479199 28 2275 34 6.55708e+06 265210 500653. 1732.36 1.73 0.204657 0.183558 21310 115450 -1 1826 18 849 2459 131345 31144 4.7914 4.7914 -98.7253 -4.7914 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.03816 0.0343715 111 110 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17816 12 0.25 -1 -1 32800 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1501 7867 1766 5013 1088 55.7 MiB 0.13 0.00 7.24465 -156.602 -7.24465 7.24465 1.05 0.00167613 0.00153718 0.0640638 0.0587686 36 4232 25 6.55708e+06 397815 612192. 2118.31 5.05 0.432603 0.388923 22750 144809 -1 3544 18 1721 4955 296703 67997 6.47224 6.47224 -152.633 -6.47224 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0632831 0.0574058 212 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.30 18296 13 0.28 -1 -1 32664 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1408 5343 959 3971 413 55.6 MiB 0.10 0.00 8.27458 -166.489 -8.27458 8.27458 1.07 0.00169267 0.00155209 0.0480411 0.0440973 30 3772 34 6.55708e+06 361650 526063. 1820.29 2.25 0.301747 0.272148 21886 126133 -1 3080 17 1417 4341 206664 49561 7.2801 7.2801 -159.365 -7.2801 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0613251 0.0556482 200 199 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 17.1 MiB 0.30 1124 13017 3784 8461 772 55.6 MiB 0.20 0.00 5.44269 -161.211 -5.44269 5.44269 0.75 0.00117703 0.00108076 0.0730608 0.0669919 32 2442 21 6.64007e+06 401856 554710. 1919.41 1.29 0.214948 0.193355 22834 132086 -1 2197 22 1375 2183 153641 35574 4.17168 4.17168 -144.286 -4.17168 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0513334 0.0462344 154 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30448 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1017 14639 5117 7505 2017 55.6 MiB 0.24 0.00 4.98742 -150.865 -4.98742 4.98742 1.07 0.00118553 0.00108731 0.0951133 0.0872797 32 2368 24 6.64007e+06 301392 554710. 1919.41 1.19 0.222633 0.200896 22834 132086 -1 2072 21 1726 2597 175792 40973 4.22388 4.22388 -142.728 -4.22388 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.049744 0.0448519 139 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.6 MiB 0.24 982 7575 1808 5319 448 55.3 MiB 0.13 0.00 4.35696 -123.732 -4.35696 4.35696 1.05 0.00102224 0.000936776 0.0432596 0.0396842 26 2567 31 6.64007e+06 288834 477104. 1650.88 1.76 0.187689 0.168222 21682 110474 -1 2183 21 1344 1867 149309 34880 3.78583 3.78583 -126.34 -3.78583 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0432382 0.0388571 126 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.7 MiB 0.07 985 10228 2796 6251 1181 55.2 MiB 0.08 0.00 4.65835 -126.219 -4.65835 4.65835 1.02 0.000391843 0.000354148 0.0223609 0.0202768 32 2212 23 6.64007e+06 339066 554710. 1919.41 1.27 0.158282 0.141491 22834 132086 -1 1983 21 1477 2736 183594 40068 3.57863 3.57863 -119.515 -3.57863 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0439229 0.0394829 126 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30264 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.7 MiB 0.05 1007 9687 2297 6508 882 55.4 MiB 0.08 0.00 4.57112 -133.029 -4.57112 4.57112 0.72 0.000416208 0.000376301 0.0229293 0.020785 30 2231 22 6.64007e+06 288834 526063. 1820.29 0.77 0.0789614 0.069749 22546 126617 -1 2005 18 1146 2272 118837 28404 3.55723 3.55723 -127.325 -3.55723 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417112 0.0376178 130 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30336 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1031 10673 2804 7227 642 55.5 MiB 0.17 0.00 3.47522 -121.603 -3.47522 3.47522 1.05 0.00120106 0.00110093 0.0601096 0.055116 26 2825 19 6.64007e+06 426972 477104. 1650.88 2.00 0.207724 0.186973 21682 110474 -1 2327 20 1354 2211 164800 38038 3.00717 3.00717 -119.334 -3.00717 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.048249 0.0434642 142 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17552 1 0.02 -1 -1 30588 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 16.3 MiB 0.11 589 11532 3345 7374 813 54.9 MiB 0.15 0.00 4.00878 -100.807 -4.00878 4.00878 1.06 0.000895541 0.00082145 0.0652213 0.059859 32 1498 22 6.64007e+06 238602 554710. 1919.41 1.15 0.178538 0.160305 22834 132086 -1 1201 19 858 1449 89869 22288 2.83977 2.83977 -92.5512 -2.83977 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0341167 0.0305149 93 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30064 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 892 10318 2381 7361 576 55.2 MiB 0.14 0.00 3.4251 -99.9264 -3.4251 3.4251 1.05 0.000972932 0.000893855 0.0496412 0.0455334 28 2086 21 6.64007e+06 389298 500653. 1732.36 1.19 0.171468 0.154009 21970 115934 -1 1808 19 967 1802 110205 25769 2.73877 2.73877 -95.7999 -2.73877 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0373206 0.0335257 115 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30128 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 16.8 MiB 0.22 960 9623 2754 6116 753 55.3 MiB 0.14 0.00 3.62801 -120.96 -3.62801 3.62801 1.05 0.00103427 0.000947423 0.05762 0.0528059 28 2163 20 6.64007e+06 251160 500653. 1732.36 1.17 0.185916 0.166916 21970 115934 -1 1910 18 1014 1444 99492 23284 3.14783 3.14783 -117.396 -3.14783 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.03781 0.0339434 111 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30100 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.22 841 12506 4273 6237 1996 55.2 MiB 0.18 0.00 3.87558 -126.558 -3.87558 3.87558 1.05 0.0010121 0.00092763 0.0755392 0.0693134 28 1979 19 6.64007e+06 213486 500653. 1732.36 1.24 0.199752 0.17991 21970 115934 -1 1831 18 1137 1856 132799 29714 2.85977 2.85977 -117.521 -2.85977 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0371203 0.0333462 112 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.17 17884 1 0.03 -1 -1 30428 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.5 MiB 0.16 796 12078 3517 6936 1625 55.2 MiB 0.16 0.00 4.09995 -113.228 -4.09995 4.09995 1.04 0.000997782 0.000914666 0.0737028 0.067524 32 1650 18 6.64007e+06 213486 554710. 1919.41 1.10 0.192173 0.172789 22834 132086 -1 1526 18 834 1316 89472 20060 2.80076 2.80076 -103.785 -2.80076 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.036299 0.0325286 98 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 0.27 811 8448 2011 5971 466 55.0 MiB 0.12 0.00 3.76138 -119.223 -3.76138 3.76138 1.04 0.00095372 0.000874807 0.0479023 0.0439275 32 2052 21 6.64007e+06 226044 554710. 1919.41 1.16 0.166736 0.14947 22834 132086 -1 1782 17 1005 1343 92897 22236 2.94117 2.94117 -111.84 -2.94117 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.0331215 0.0297089 109 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1094 10228 2675 6918 635 55.3 MiB 0.18 0.00 4.45106 -144.281 -4.45106 4.45106 1.07 0.00116142 0.0010655 0.0643304 0.0590828 28 2647 19 6.64007e+06 301392 500653. 1732.36 1.34 0.207313 0.186877 21970 115934 -1 2302 21 1517 2276 157265 35537 3.39957 3.39957 -130.65 -3.39957 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0485103 0.0437036 139 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30444 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.18 940 8735 2013 6355 367 55.4 MiB 0.15 0.00 5.05578 -142.31 -5.05578 5.05578 1.03 0.00118372 0.00108474 0.0514219 0.0471838 26 2673 31 6.64007e+06 389298 477104. 1650.88 1.72 0.207368 0.18589 21682 110474 -1 2369 24 1700 2809 252365 57579 4.10303 4.10303 -143.708 -4.10303 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0549453 0.0493388 134 61 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30108 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 637 6668 1590 4651 427 55.1 MiB 0.05 0.00 3.28519 -90.5035 -3.28519 3.28519 1.09 0.000324725 0.000292902 0.0138014 0.0125169 28 1662 22 6.64007e+06 263718 500653. 1732.36 1.12 0.125278 0.111439 21970 115934 -1 1542 18 837 1409 97266 22395 2.87917 2.87917 -91.5222 -2.87917 0 0 612192. 2118.31 0.23 0.07 0.17 -1 -1 0.23 0.0319014 0.0285146 98 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.22 17876 1 0.02 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 16.9 MiB 0.18 961 6890 1523 4904 463 55.6 MiB 0.13 0.00 4.06512 -124.686 -4.06512 4.06512 1.04 0.00120626 0.00110642 0.0473462 0.0434856 32 2268 21 6.64007e+06 276276 554710. 1919.41 1.29 0.193573 0.173893 22834 132086 -1 2137 19 1378 2491 165441 37726 3.26157 3.26157 -120.084 -3.26157 0 0 701300. 2426.64 0.29 0.11 0.21 -1 -1 0.29 0.0471173 0.0425449 133 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17640 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1114 15447 4373 9239 1835 55.5 MiB 0.24 0.00 4.49004 -144.522 -4.49004 4.49004 1.04 0.00114565 0.00105206 0.0952199 0.0874283 30 2367 22 6.64007e+06 288834 526063. 1820.29 1.36 0.237495 0.214169 22546 126617 -1 2082 22 1283 1774 106684 24449 3.52743 3.52743 -132.363 -3.52743 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0496195 0.0446811 138 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17904 1 0.04 -1 -1 30468 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.8 MiB 0.15 723 8493 1892 6266 335 55.3 MiB 0.13 0.00 2.85064 -99.9956 -2.85064 2.85064 1.05 0.00106033 0.000969424 0.0452802 0.0414219 26 1971 23 6.64007e+06 364182 477104. 1650.88 1.35 0.182395 0.163409 21682 110474 -1 1682 23 1157 1829 133991 31802 2.16631 2.16631 -95.695 -2.16631 0 0 585099. 2024.56 0.25 0.11 0.18 -1 -1 0.25 0.049022 0.0438561 110 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 16.3 MiB 0.07 681 12139 4399 6260 1480 54.9 MiB 0.13 0.00 2.38033 -81.64 -2.38033 2.38033 1.05 0.00076902 0.000703302 0.0592896 0.0542479 32 1405 20 6.64007e+06 188370 554710. 1919.41 1.09 0.15367 0.137575 22834 132086 -1 1332 19 687 974 77488 17623 2.11131 2.11131 -84.6627 -2.11131 0 0 701300. 2426.64 0.25 0.06 0.24 -1 -1 0.25 0.028923 0.0257308 81 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 16.8 MiB 0.26 706 14123 4873 6572 2678 55.3 MiB 0.18 0.00 4.95769 -142.332 -4.95769 4.95769 1.05 0.000998696 0.00091638 0.0812904 0.0746044 36 1838 20 6.64007e+06 251160 612192. 2118.31 2.41 0.288537 0.258618 23410 145293 -1 1478 17 801 1099 85912 22741 3.70143 3.70143 -127.634 -3.70143 0 0 782063. 2706.10 0.28 0.08 0.23 -1 -1 0.28 0.0347326 0.0312352 128 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30404 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.07 905 8735 1899 5951 885 55.5 MiB 0.13 0.00 4.18572 -129.145 -4.18572 4.18572 1.05 0.00116138 0.00106634 0.0501502 0.0460589 30 2116 22 6.64007e+06 389298 526063. 1820.29 1.18 0.197639 0.177877 22546 126617 -1 1860 21 1144 1874 106775 25052 3.51643 3.51643 -123.572 -3.51643 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0478534 0.0430564 135 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30364 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 17.2 MiB 0.27 1203 12167 3358 7515 1294 55.9 MiB 0.20 0.00 4.64616 -143.706 -4.64616 4.64616 1.04 0.00120978 0.00111002 0.07787 0.071442 26 3212 23 6.64007e+06 313950 477104. 1650.88 2.57 0.228902 0.206013 21682 110474 -1 2759 22 1650 2668 239641 52048 4.42528 4.42528 -144.001 -4.42528 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0527155 0.0474376 144 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.14 17360 1 0.03 -1 -1 30596 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.2 MiB 0.16 410 10636 4183 5187 1266 54.8 MiB 0.10 0.00 2.43955 -66.7065 -2.43955 2.43955 1.04 0.000655809 0.000598597 0.0452125 0.0412744 26 1192 25 6.64007e+06 226044 477104. 1650.88 1.11 0.13169 0.117369 21682 110474 -1 933 19 592 836 60371 15069 1.93811 1.93811 -66.8476 -1.93811 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0251434 0.0223626 77 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17176 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.07 995 7897 1725 4978 1194 55.2 MiB 0.12 0.00 5.05066 -128.356 -5.05066 5.05066 0.82 0.00101296 0.000930873 0.0458057 0.0421128 28 2296 20 6.64007e+06 263718 500653. 1732.36 1.16 0.171885 0.154532 21970 115934 -1 2002 19 1149 2144 141277 31796 3.76362 3.76362 -124.406 -3.76362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0391281 0.0352006 118 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.13 17148 1 0.03 -1 -1 30064 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 16.0 MiB 0.06 661 11200 3826 5626 1748 54.6 MiB 0.10 0.00 2.56853 -79.0193 -2.56853 2.56853 1.05 0.000634681 0.000579327 0.0448158 0.040922 28 1267 14 6.64007e+06 175812 500653. 1732.36 1.03 0.117704 0.105271 21970 115934 -1 1189 14 407 458 37605 8621 2.02211 2.02211 -77.5953 -2.02211 0 0 612192. 2118.31 0.23 0.04 0.18 -1 -1 0.23 0.019053 0.0170393 79 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30216 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 831 10318 2723 6880 715 55.2 MiB 0.15 0.00 4.58015 -125.342 -4.58015 4.58015 1.05 0.00103161 0.000946258 0.0529382 0.0485651 28 2131 21 6.64007e+06 376740 500653. 1732.36 1.21 0.183285 0.164681 21970 115934 -1 1845 18 1048 1710 106719 26161 3.57362 3.57362 -117.035 -3.57362 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0399073 0.0358635 123 24 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.19 17280 1 0.03 -1 -1 30532 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.06 850 7439 1494 5462 483 55.3 MiB 0.12 0.00 3.82887 -106.637 -3.82887 3.82887 1.05 0.00104908 0.000962907 0.0390408 0.0358528 28 2324 24 6.64007e+06 389298 500653. 1732.36 1.22 0.176629 0.158626 21970 115934 -1 1818 19 1113 2008 106218 27824 2.96817 2.96817 -107.142 -2.96817 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407083 0.0366744 128 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30288 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 16.9 MiB 0.15 906 17635 6157 8662 2816 55.5 MiB 0.25 0.00 4.78135 -133.838 -4.78135 4.78135 1.09 0.00112837 0.00103374 0.100278 0.0919459 28 2693 30 6.64007e+06 339066 500653. 1732.36 2.05 0.261753 0.236129 21970 115934 -1 2068 18 1181 2011 163906 36763 3.79863 3.79863 -128.222 -3.79863 0 0 612192. 2118.31 0.22 0.10 0.15 -1 -1 0.22 0.0413043 0.0372393 126 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30252 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.3 MiB 0.09 735 5928 1206 4471 251 55.0 MiB 0.09 0.00 3.02179 -99.7239 -3.02179 3.02179 1.05 0.000973409 0.000892928 0.0361775 0.0332376 26 2048 22 6.64007e+06 200928 477104. 1650.88 1.21 0.14906 0.133291 21682 110474 -1 1729 20 1095 1740 122619 28865 3.06837 3.06837 -113.451 -3.06837 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0386171 0.034587 101 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17216 1 0.03 -1 -1 30420 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.5 MiB 0.09 661 11617 2521 8405 691 55.1 MiB 0.14 0.00 3.24119 -97.0143 -3.24119 3.24119 1.00 0.000903561 0.000828002 0.0590769 0.0541636 28 1701 20 6.64007e+06 288834 500653. 1732.36 1.29 0.15837 0.141773 21970 115934 -1 1547 17 853 1296 94316 21406 2.79497 2.79497 -96.8 -2.79497 0 0 612192. 2118.31 0.23 0.07 0.18 -1 -1 0.23 0.0321236 0.0288204 97 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30268 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.3 MiB 0.06 583 14123 3845 8834 1444 54.9 MiB 0.16 0.00 3.43604 -94.4648 -3.43604 3.43604 1.05 0.000899355 0.000825177 0.0731981 0.0671448 28 1800 26 6.64007e+06 288834 500653. 1732.36 1.34 0.192708 0.173074 21970 115934 -1 1566 20 916 1539 109893 29879 2.74177 2.74177 -95.1293 -2.74177 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0352396 0.0314469 98 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17272 1 0.02 -1 -1 30248 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.5 MiB 0.06 702 4763 881 3747 135 55.1 MiB 0.08 0.00 3.98575 -113.461 -3.98575 3.98575 1.04 0.000913777 0.00083824 0.0266264 0.0244822 26 2390 34 6.64007e+06 238602 477104. 1650.88 1.63 0.160612 0.143435 21682 110474 -1 1814 22 1363 2192 166936 41393 3.11217 3.11217 -116.399 -3.11217 0 0 585099. 2024.56 0.22 0.10 0.16 -1 -1 0.22 0.0393196 0.0351873 110 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30164 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.3 MiB 0.07 705 6924 1381 5320 223 54.9 MiB 0.10 0.00 3.56847 -102.973 -3.56847 3.56847 1.06 0.000935807 0.00085775 0.0348059 0.0319278 26 2212 43 6.64007e+06 339066 477104. 1650.88 1.44 0.184936 0.165131 21682 110474 -1 1683 19 1008 1700 120423 28387 2.97797 2.97797 -105.892 -2.97797 0 0 585099. 2024.56 0.22 0.09 0.15 -1 -1 0.22 0.0355158 0.0317843 103 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30436 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 16.8 MiB 0.16 800 11799 3784 6073 1942 55.2 MiB 0.16 0.00 3.4791 -109.298 -3.4791 3.4791 1.05 0.000965336 0.000883915 0.0620341 0.0568286 28 1940 18 6.64007e+06 326508 500653. 1732.36 1.13 0.178358 0.160144 21970 115934 -1 1709 19 961 1369 109961 25852 2.36297 2.36297 -96.7073 -2.36297 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0371419 0.0332605 105 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1109 16524 4269 9768 2487 55.6 MiB 0.23 0.00 4.35696 -124.032 -4.35696 4.35696 1.05 0.00124292 0.00114164 0.0899737 0.0826072 32 2645 21 6.64007e+06 477204 554710. 1919.41 1.26 0.246701 0.222969 22834 132086 -1 2264 17 1243 2131 135685 30613 3.93102 3.93102 -119.547 -3.93102 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436058 0.0394034 151 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17920 1 0.03 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1062 10676 2654 7216 806 55.8 MiB 0.17 0.00 3.87558 -130.413 -3.87558 3.87558 0.74 0.00127261 0.00116529 0.0613801 0.0562326 26 2503 24 6.64007e+06 464646 477104. 1650.88 1.38 0.227987 0.205228 21682 110474 -1 2074 19 1563 2519 178447 39029 2.95717 2.95717 -121.371 -2.95717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048583 0.043819 147 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30212 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 16.8 MiB 0.26 894 10228 3268 4917 2043 55.3 MiB 0.14 0.00 4.39381 -127.308 -4.39381 4.39381 1.05 0.000955034 0.000870674 0.0578902 0.0528668 32 2018 21 6.64007e+06 238602 554710. 1919.41 1.17 0.177255 0.158889 22834 132086 -1 1748 19 1015 1433 93274 21875 3.15083 3.15083 -111.221 -3.15083 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0367985 0.0329761 112 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17880 1 0.03 -1 -1 30384 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 16.7 MiB 0.16 1026 15298 5172 7552 2574 55.4 MiB 0.23 0.00 4.30797 -133.38 -4.30797 4.30797 1.05 0.00120433 0.0011038 0.0979271 0.0897419 32 2288 22 6.64007e+06 313950 554710. 1919.41 1.25 0.252659 0.228095 22834 132086 -1 1951 22 1450 2591 173643 38508 2.89797 2.89797 -112.425 -2.89797 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0523724 0.0471214 138 61 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.16 17524 1 0.03 -1 -1 30352 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 17.3 MiB 0.41 1296 14996 4340 8343 2313 55.5 MiB 0.25 0.00 5.87616 -177.472 -5.87616 5.87616 1.08 0.00122795 0.00112596 0.0929296 0.085305 32 3094 21 6.64007e+06 364182 554710. 1919.41 1.33 0.249 0.225001 22834 132086 -1 2524 19 1742 2613 176076 40477 4.74615 4.74615 -163.707 -4.74615 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0204503 0.0183089 172 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1150 16974 4810 10660 1504 55.7 MiB 0.27 0.00 5.08852 -153.875 -5.08852 5.08852 1.05 0.00124836 0.00114392 0.108628 0.0994805 28 3077 19 6.64007e+06 339066 500653. 1732.36 1.32 0.26653 0.240966 21970 115934 -1 2547 20 1680 2607 189567 42842 4.56048 4.56048 -155.741 -4.56048 0 0 612192. 2118.31 0.23 0.11 0.20 -1 -1 0.23 0.0371802 0.033182 164 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 16.7 MiB 0.17 1075 13513 3858 8482 1173 55.3 MiB 0.21 0.00 4.68524 -137.744 -4.68524 4.68524 1.04 0.00115878 0.00106253 0.0765182 0.0701455 30 2366 21 6.64007e+06 389298 526063. 1820.29 1.17 0.221092 0.199324 22546 126617 -1 1961 15 884 1464 71687 17433 3.23063 3.23063 -121.351 -3.23063 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370244 0.0334353 135 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17412 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 16.9 MiB 0.23 975 7767 1720 5470 577 55.4 MiB 0.12 0.00 4.38513 -117.551 -4.38513 4.38513 1.10 0.00100368 0.000921378 0.0435467 0.0399998 26 2701 24 6.64007e+06 288834 477104. 1650.88 1.67 0.176501 0.158238 21682 110474 -1 2166 19 1317 1939 167610 36546 3.68463 3.68463 -121.244 -3.68463 0 0 585099. 2024.56 0.21 0.10 0.19 -1 -1 0.21 0.0386443 0.0346939 119 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.22 18044 1 0.03 -1 -1 30372 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 17.5 MiB 0.23 1225 15720 4488 9844 1388 55.9 MiB 0.26 0.00 5.18355 -167.471 -5.18355 5.18355 1.05 0.00147235 0.00135246 0.0990371 0.0909559 26 3193 18 6.64007e+06 502320 477104. 1650.88 1.60 0.278457 0.251589 21682 110474 -1 2728 17 1590 2477 169182 38780 4.27989 4.27989 -152.775 -4.27989 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516683 0.0466444 174 87 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30184 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.6 MiB 0.10 755 11064 4559 5783 722 55.2 MiB 0.12 0.00 3.8227 -103.618 -3.8227 3.8227 1.07 0.000901496 0.00082647 0.0570526 0.0523004 30 1736 20 6.64007e+06 263718 526063. 1820.29 1.25 0.168698 0.1513 22546 126617 -1 1480 21 908 1504 89570 21574 2.79977 2.79977 -98.5206 -2.79977 0 0 666494. 2306.21 0.25 0.08 0.19 -1 -1 0.25 0.0372224 0.0332381 101 28 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30328 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 17.1 MiB 0.25 1189 14518 4594 8025 1899 55.8 MiB 0.24 0.00 5.24081 -156.256 -5.24081 5.24081 1.04 0.00113572 0.00104234 0.0860448 0.0789837 28 3102 25 6.64007e+06 313950 500653. 1732.36 1.54 0.238896 0.215651 21970 115934 -1 2470 20 1224 1701 126371 27807 4.70968 4.70968 -150.995 -4.70968 0 0 612192. 2118.31 0.25 0.10 0.20 -1 -1 0.25 0.0452007 0.0406943 144 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.6 MiB 0.16 1030 10531 2414 7661 456 55.4 MiB 0.18 0.00 4.0171 -121.213 -4.0171 4.0171 1.05 0.00115561 0.00105911 0.0579078 0.0530917 26 3025 43 6.64007e+06 414414 477104. 1650.88 3.08 0.240794 0.215938 21682 110474 -1 2292 14 1163 2099 151082 34983 3.08816 3.08816 -118 -3.08816 0 0 585099. 2024.56 0.22 0.09 0.12 -1 -1 0.22 0.0347709 0.031396 131 53 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17364 1 0.03 -1 -1 30240 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.8 MiB 0.06 891 13153 4464 6066 2623 55.3 MiB 0.18 0.00 4.20356 -126.138 -4.20356 4.20356 1.04 0.00102734 0.00094274 0.0721838 0.0662695 32 2178 21 6.64007e+06 301392 554710. 1919.41 1.05 0.146248 0.131615 22834 132086 -1 1719 21 1074 2024 133293 30707 3.82482 3.82482 -119.413 -3.82482 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.042617 0.0382781 123 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1089 13933 3596 8128 2209 55.7 MiB 0.21 0.00 4.81394 -142.313 -4.81394 4.81394 1.05 0.00116952 0.00107289 0.0865867 0.0794415 26 2775 32 6.64007e+06 301392 477104. 1650.88 2.24 0.253869 0.228593 21682 110474 -1 2352 18 1152 1596 116971 26606 3.51742 3.51742 -126.978 -3.51742 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0426926 0.0384746 138 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.18 935 7980 1596 5688 696 55.6 MiB 0.13 0.00 3.76946 -120.7 -3.76946 3.76946 1.05 0.00118954 0.00109206 0.0465944 0.0427473 30 2198 19 6.64007e+06 401856 526063. 1820.29 0.95 0.127914 0.11465 22546 126617 -1 1948 17 1065 1931 93576 23283 3.10117 3.10117 -113.819 -3.10117 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0418313 0.0377305 133 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 17.2 MiB 0.19 901 8796 1803 6364 629 55.9 MiB 0.16 0.00 4.787 -140.677 -4.787 4.787 1.05 0.0012429 0.00113902 0.050257 0.0461202 32 2513 22 6.64007e+06 464646 554710. 1919.41 1.23 0.210834 0.1898 22834 132086 -1 1954 18 1106 1629 93353 23736 3.48203 3.48203 -125.684 -3.48203 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0456843 0.0412127 145 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30460 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.6 MiB 0.07 902 12903 3419 8175 1309 55.2 MiB 0.18 0.00 4.24273 -122.494 -4.24273 4.24273 1.04 0.00105288 0.000965822 0.067558 0.0619693 32 1909 19 6.64007e+06 364182 554710. 1919.41 1.17 0.196817 0.177225 22834 132086 -1 1739 19 1143 1869 117063 27589 3.64463 3.64463 -118.883 -3.64463 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403306 0.0362401 122 24 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 16.8 MiB 0.24 983 6913 1568 4936 409 55.7 MiB 0.12 0.00 5.07997 -139.694 -5.07997 5.07997 1.04 0.00108448 0.000994744 0.0414727 0.0380695 32 2406 21 6.64007e+06 301392 554710. 1919.41 1.19 0.177844 0.159809 22834 132086 -1 2179 20 1491 2098 133320 32792 3.85003 3.85003 -128.971 -3.85003 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436864 0.0392816 133 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30204 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1148 9058 2364 5808 886 55.8 MiB 0.16 0.00 5.0113 -149.211 -5.0113 5.0113 1.05 0.00121522 0.00111427 0.0610394 0.0560127 26 3407 45 6.64007e+06 313950 477104. 1650.88 2.91 0.201986 0.181141 21682 110474 -1 2639 24 1898 3099 233977 51589 4.31263 4.31263 -142.786 -4.31263 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0564978 0.0508096 148 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.17 17524 1 0.04 -1 -1 30268 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 17.2 MiB 0.16 977 15962 5144 8098 2720 55.8 MiB 0.26 0.00 4.21776 -130.397 -4.21776 4.21776 1.05 0.00123144 0.00112713 0.107805 0.0987817 32 2870 23 6.64007e+06 276276 554710. 1919.41 1.31 0.26862 0.242554 22834 132086 -1 2220 15 1299 2324 157370 35871 3.78082 3.78082 -127.954 -3.78082 0 0 701300. 2426.64 0.25 0.10 0.25 -1 -1 0.25 0.039605 0.0357706 136 77 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30168 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.4 MiB 0.10 763 11398 3223 7297 878 55.0 MiB 0.14 0.00 3.46744 -102.907 -3.46744 3.46744 1.06 0.000878489 0.00080473 0.0543458 0.0498389 26 1977 28 6.64007e+06 301392 477104. 1650.88 1.29 0.177503 0.159016 21682 110474 -1 1674 20 804 1237 85402 19533 2.71977 2.71977 -98.3296 -2.71977 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.0348223 0.0310409 97 23 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 16.5 MiB 0.33 982 8969 2347 6212 410 55.2 MiB 0.15 0.00 4.05536 -139.886 -4.05536 4.05536 1.05 0.00111613 0.00102302 0.0557053 0.0510805 30 2184 22 6.64007e+06 276276 526063. 1820.29 0.99 0.138584 0.124307 22546 126617 -1 1875 19 1272 1814 105981 24118 3.03143 3.03143 -122.855 -3.03143 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0417773 0.0375161 127 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 17.5 MiB 0.26 1389 7443 1662 5262 519 55.7 MiB 0.16 0.01 5.61123 -170.011 -5.61123 5.61123 1.09 0.0012958 0.00119076 0.0500797 0.0460641 28 3624 25 6.64007e+06 364182 500653. 1732.36 1.93 0.223815 0.201799 21970 115934 -1 2961 21 1866 2993 218466 47396 4.65768 4.65768 -159.09 -4.65768 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547788 0.0494843 169 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30476 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 16.8 MiB 0.15 962 14988 4939 7718 2331 55.5 MiB 0.22 0.00 4.60549 -136.553 -4.60549 4.60549 1.05 0.00115616 0.00106111 0.0820854 0.0753455 30 2140 21 6.64007e+06 401856 526063. 1820.29 1.21 0.226974 0.204814 22546 126617 -1 1783 17 1010 1711 104239 23066 2.88497 2.88497 -112.713 -2.88497 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0405283 0.0365873 133 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30348 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.3 MiB 0.07 702 10423 3012 6489 922 55.0 MiB 0.14 0.00 3.51327 -104.848 -3.51327 3.51327 1.04 0.00094947 0.000870551 0.0534973 0.0490604 28 1807 22 6.64007e+06 326508 500653. 1732.36 1.12 0.174445 0.156562 21970 115934 -1 1568 22 1108 1754 103440 24891 2.72357 2.72357 -100.219 -2.72357 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0410978 0.0367809 104 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.19 18088 1 0.03 -1 -1 30364 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1216 15187 4686 7965 2536 55.7 MiB 0.27 0.00 6.49087 -185.665 -6.49087 6.49087 1.04 0.0014064 0.00129181 0.108893 0.10003 30 3247 27 6.64007e+06 339066 526063. 1820.29 1.45 0.301103 0.272146 22546 126617 -1 2515 22 1992 2989 190825 42741 4.92734 4.92734 -165.423 -4.92734 0 0 666494. 2306.21 0.28 0.18 0.20 -1 -1 0.28 0.0564265 0.0506964 170 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30364 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 16.8 MiB 0.17 903 6979 1333 5401 245 55.4 MiB 0.12 0.00 4.64606 -138.337 -4.64606 4.64606 1.05 0.00115002 0.0010561 0.0391211 0.0359789 26 2639 42 6.64007e+06 414414 477104. 1650.88 1.63 0.221746 0.198946 21682 110474 -1 2098 19 1524 2359 164433 38859 3.75183 3.75183 -134.746 -3.75183 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0432764 0.0389149 130 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17104 1 0.02 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.08 832 12375 4208 6622 1545 54.9 MiB 0.15 0.00 3.58247 -103.673 -3.58247 3.58247 1.05 0.000845495 0.00077499 0.0565872 0.0518773 28 2023 24 6.64007e+06 288834 500653. 1732.36 1.12 0.165658 0.14851 21970 115934 -1 1729 19 808 1414 115942 25349 2.89797 2.89797 -102.799 -2.89797 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0321121 0.0287018 100 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30152 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 17.0 MiB 0.09 993 9098 1971 6187 940 55.3 MiB 0.07 0.00 5.56744 -134.001 -5.56744 5.56744 0.72 0.000437426 0.00039506 0.0196758 0.0178217 28 2715 23 6.64007e+06 426972 500653. 1732.36 1.65 0.173972 0.155911 21970 115934 -1 2155 22 1488 2892 193907 44774 4.78768 4.78768 -137.22 -4.78768 0 0 612192. 2118.31 0.20 0.06 0.09 -1 -1 0.20 0.0212998 0.0189669 139 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17308 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 822 7770 1860 5212 698 54.8 MiB 0.06 0.00 3.4291 -106.218 -3.4291 3.4291 0.79 0.000330532 0.000298701 0.0156023 0.0141347 26 1966 20 6.64007e+06 251160 477104. 1650.88 0.70 0.0589566 0.0517859 21682 110474 -1 1794 20 1189 2015 145791 32533 2.96717 2.96717 -110.105 -2.96717 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0353707 0.031635 104 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30424 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.13 857 12839 3557 7998 1284 55.0 MiB 0.16 0.00 4.12483 -113.809 -4.12483 4.12483 1.04 0.000954268 0.000875112 0.0591206 0.0542278 26 1933 22 6.64007e+06 414414 477104. 1650.88 1.34 0.179813 0.161369 21682 110474 -1 1626 17 791 1503 98783 21815 2.81177 2.81177 -102.96 -2.81177 0 0 585099. 2024.56 0.21 0.08 0.13 -1 -1 0.21 0.0333334 0.0299326 105 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30376 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1104 17175 4885 10433 1857 55.4 MiB 0.29 0.00 4.60024 -135.427 -4.60024 4.60024 1.05 0.00116928 0.00107334 0.109244 0.100283 28 2667 21 6.64007e+06 326508 500653. 1732.36 1.21 0.25543 0.230941 21970 115934 -1 2393 25 1500 2282 138739 32634 4.10842 4.10842 -132.907 -4.10842 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0551094 0.0494939 139 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30388 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.14 772 4768 876 3724 168 55.4 MiB 0.09 0.00 4.51224 -132.005 -4.51224 4.51224 1.06 0.00117871 0.00108038 0.0320398 0.0294233 32 2190 25 6.64007e+06 301392 554710. 1919.41 1.26 0.188053 0.168801 22834 132086 -1 1821 22 1657 2534 173073 42172 3.74782 3.74782 -128.311 -3.74782 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0509489 0.0457461 130 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30332 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1030 11891 3350 7362 1179 55.3 MiB 0.19 0.00 4.72138 -141.993 -4.72138 4.72138 1.05 0.0011653 0.00106827 0.0701683 0.0643666 32 2311 18 6.64007e+06 351624 554710. 1919.41 1.23 0.211698 0.190856 22834 132086 -1 2022 18 1159 1995 135404 30180 3.52623 3.52623 -131.325 -3.52623 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0429657 0.0387517 133 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 16.9 MiB 0.28 799 9356 2375 6010 971 55.4 MiB 0.14 0.00 4.79432 -131.982 -4.79432 4.79432 0.98 0.00095272 0.000873548 0.0533081 0.0488928 26 2160 21 6.64007e+06 213486 477104. 1650.88 1.35 0.172396 0.154661 21682 110474 -1 1917 20 1110 1536 115013 27360 3.25803 3.25803 -118.562 -3.25803 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.0382037 0.034205 105 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.10 17572 1 0.03 -1 -1 30416 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.9 MiB 0.25 899 12898 4205 6789 1904 55.5 MiB 0.10 0.00 3.96736 -127.03 -3.96736 3.96736 0.84 0.000386973 0.00034866 0.030242 0.0273644 32 2035 18 6.64007e+06 238602 554710. 1919.41 1.10 0.156362 0.139548 22834 132086 -1 1836 19 1223 1799 123742 27820 3.01863 3.01863 -117.895 -3.01863 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401023 0.0358845 113 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.14 857 8087 1703 5875 509 55.2 MiB 0.12 0.00 3.59243 -98.9543 -3.59243 3.59243 1.09 0.00108225 0.000991694 0.0435491 0.0399544 26 2500 27 6.64007e+06 414414 477104. 1650.88 2.12 0.191803 0.171926 21682 110474 -1 1945 19 1161 2050 166589 39629 2.76177 2.76177 -99.6151 -2.76177 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0417813 0.0375504 123 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30344 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.07 873 14567 3705 9538 1324 55.1 MiB 0.17 0.00 4.33724 -105.319 -4.33724 4.33724 1.07 0.000955702 0.000876787 0.0673089 0.0617594 26 2165 27 6.64007e+06 439530 477104. 1650.88 1.19 0.197346 0.17732 21682 110474 -1 1828 19 946 1883 134782 28404 3.80183 3.80183 -107.35 -3.80183 0 0 585099. 2024.56 0.19 0.04 0.09 -1 -1 0.19 0.0157809 0.0140192 115 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 857 12980 4441 6366 2173 55.2 MiB 0.19 0.00 4.19523 -120.389 -4.19523 4.19523 1.05 0.001038 0.000951445 0.0808442 0.074125 32 1926 20 6.64007e+06 226044 554710. 1919.41 1.24 0.212292 0.190899 22834 132086 -1 1769 19 1175 1932 148827 32317 3.06217 3.06217 -111.242 -3.06217 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0401682 0.0360585 108 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30116 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1011 9385 2419 5667 1299 55.3 MiB 0.15 0.00 4.0237 -135.679 -4.0237 4.0237 1.05 0.00108912 0.000998446 0.0579318 0.0531365 32 2261 23 6.64007e+06 263718 554710. 1919.41 1.21 0.198098 0.178011 22834 132086 -1 2018 18 1093 1588 111076 24869 3.32603 3.32603 -130.745 -3.32603 0 0 701300. 2426.64 0.29 0.09 0.22 -1 -1 0.29 0.0395632 0.0355406 121 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30480 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.06 926 9383 1965 6366 1052 55.2 MiB 0.13 0.00 4.61041 -129.144 -4.61041 4.61041 1.05 0.00103669 0.000952087 0.0479449 0.0440601 28 2322 28 6.64007e+06 401856 500653. 1732.36 1.60 0.191001 0.171683 21970 115934 -1 1918 20 1309 2325 142579 33944 3.84183 3.84183 -122.709 -3.84183 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0415337 0.0373787 127 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.12 17528 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 17.2 MiB 0.29 1230 14128 4435 7821 1872 55.9 MiB 0.24 0.00 5.3267 -167.408 -5.3267 5.3267 1.05 0.00117544 0.00107947 0.0887349 0.0814712 32 3153 21 6.64007e+06 301392 554710. 1919.41 1.31 0.237619 0.2147 22834 132086 -1 2670 20 1471 2127 203069 40274 4.46509 4.46509 -159.817 -4.46509 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0475307 0.0429213 146 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.13 17904 1 0.03 -1 -1 30320 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 16.8 MiB 0.22 846 12473 3077 8180 1216 55.4 MiB 0.20 0.00 5.24026 -142.21 -5.24026 5.24026 1.05 0.00125746 0.00115294 0.072889 0.0668314 30 2493 25 6.64007e+06 426972 526063. 1820.29 1.42 0.237167 0.213595 22546 126617 -1 1863 20 1088 2106 109487 27680 3.81508 3.81508 -134.95 -3.81508 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.049932 0.0449808 144 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30308 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1088 19136 5971 10565 2600 55.5 MiB 0.27 0.00 4.47484 -142.459 -4.47484 4.47484 1.05 0.00127582 0.00117061 0.107076 0.0982479 28 2720 22 6.64007e+06 464646 500653. 1732.36 1.57 0.268752 0.242974 21970 115934 -1 2387 19 1473 2617 177636 39843 3.70543 3.70543 -136.956 -3.70543 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0483433 0.0435911 140 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.12 17592 1 0.03 -1 -1 30156 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.5 MiB 0.13 810 10756 3573 5296 1887 55.2 MiB 0.14 0.00 3.86158 -115.559 -3.86158 3.86158 1.04 0.000931666 0.000854666 0.0599426 0.0549514 28 2024 20 6.64007e+06 238602 500653. 1732.36 1.13 0.175486 0.157557 21970 115934 -1 1812 24 1223 2130 161484 35053 2.85977 2.85977 -104.747 -2.85977 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0435008 0.0388709 104 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30388 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 16.8 MiB 0.18 996 11989 3165 6999 1825 55.6 MiB 0.20 0.00 4.82523 -141.177 -4.82523 4.82523 1.05 0.00122175 0.00112078 0.0822197 0.0754791 32 2408 19 6.64007e+06 288834 554710. 1919.41 1.25 0.232063 0.209559 22834 132086 -1 1994 21 1700 2635 168605 39469 3.73163 3.73163 -133.479 -3.73163 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0510182 0.0459664 138 63 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30448 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 17.2 MiB 0.26 1103 10743 2816 7025 902 55.7 MiB 0.17 0.00 5.45357 -158.764 -5.45357 5.45357 1.05 0.00113671 0.00104169 0.064304 0.0590158 26 2972 34 6.64007e+06 326508 477104. 1650.88 1.79 0.233844 0.210493 21682 110474 -1 2568 22 1724 2771 237679 51373 4.19368 4.19368 -144.555 -4.19368 0 0 585099. 2024.56 0.22 0.13 0.17 -1 -1 0.22 0.0496429 0.0446802 140 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30372 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1102 15423 4945 8075 2403 55.5 MiB 0.23 0.00 5.30601 -154.372 -5.30601 5.30601 1.04 0.00113364 0.0010399 0.0866264 0.0795314 28 3024 19 6.64007e+06 376740 500653. 1732.36 1.40 0.22675 0.20468 21970 115934 -1 2450 20 1449 2163 173727 36410 4.47448 4.47448 -149.944 -4.47448 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0454066 0.040865 148 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30384 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 17.0 MiB 0.21 960 11975 3127 7423 1425 55.7 MiB 0.20 0.00 4.52304 -132.575 -4.52304 4.52304 1.04 0.00122737 0.00112622 0.0718119 0.0658242 32 2201 21 6.64007e+06 414414 554710. 1919.41 1.22 0.223352 0.201182 22834 132086 -1 1847 18 942 1594 100135 23271 3.03543 3.03543 -114.645 -3.03543 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0446007 0.0402274 135 83 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.15 891 9571 2183 6911 477 55.6 MiB 0.17 0.00 5.02278 -140.291 -5.02278 5.02278 1.05 0.00119856 0.0010999 0.0647751 0.0594299 30 2581 25 6.64007e+06 263718 526063. 1820.29 1.31 0.219136 0.197119 22546 126617 -1 2011 22 1227 2238 124501 30320 3.82963 3.82963 -134.319 -3.82963 0 0 666494. 2306.21 0.25 0.11 0.20 -1 -1 0.25 0.052279 0.0470913 134 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30280 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 16.8 MiB 0.19 875 11270 2503 8088 679 55.4 MiB 0.18 0.00 4.91881 -136.338 -4.91881 4.91881 1.05 0.00119877 0.00109839 0.0685738 0.06285 32 2070 20 6.64007e+06 389298 554710. 1919.41 1.21 0.21804 0.196306 22834 132086 -1 1833 21 1140 1867 115580 27353 3.65943 3.65943 -125.768 -3.65943 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0521931 0.0470801 132 85 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17136 1 0.02 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.2 MiB 0.05 680 10219 2541 6421 1257 54.8 MiB 0.17 0.00 3.88758 -112.502 -3.88758 3.88758 1.14 0.000886746 0.000814899 0.0706565 0.0650268 28 1667 19 6.64007e+06 188370 500653. 1732.36 1.10 0.178626 0.160967 21970 115934 -1 1566 19 853 1297 89732 21195 2.92697 2.92697 -106.606 -2.92697 0 0 612192. 2118.31 0.22 0.08 0.19 -1 -1 0.22 0.0339031 0.0304258 96 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 17.0 MiB 0.29 1003 15426 4168 9105 2153 55.6 MiB 0.22 0.00 4.65236 -140.168 -4.65236 4.65236 1.11 0.00109816 0.0010064 0.089129 0.0817804 28 2185 20 6.64007e+06 401856 500653. 1732.36 1.38 0.200814 0.181079 21970 115934 -1 1998 20 1322 2197 140567 32453 3.84903 3.84903 -133.976 -3.84903 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0487125 0.0438625 132 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17892 1 0.03 -1 -1 30224 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 17.2 MiB 0.20 1074 11237 2615 7354 1268 55.7 MiB 0.19 0.00 4.84723 -152.835 -4.84723 4.84723 1.05 0.00129279 0.00118562 0.0800821 0.0734802 32 2517 24 6.64007e+06 276276 554710. 1919.41 1.36 0.248816 0.224468 22834 132086 -1 2165 24 1914 3076 222092 49372 3.86183 3.86183 -143.393 -3.86183 0 0 701300. 2426.64 0.30 0.14 0.25 -1 -1 0.30 0.0606216 0.0546766 148 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17452 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 16.6 MiB 0.26 745 8136 1743 5584 809 55.0 MiB 0.11 0.00 4.31784 -119.848 -4.31784 4.31784 1.05 0.000929059 0.000851704 0.0437759 0.0401477 28 2436 31 6.64007e+06 251160 500653. 1732.36 1.50 0.181166 0.16224 21970 115934 -1 1890 21 1141 1486 118566 29283 3.66597 3.66597 -125.385 -3.66597 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0384916 0.0343889 109 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17108 1 0.03 -1 -1 30444 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 720 11430 2918 7192 1320 54.9 MiB 0.15 0.00 3.81035 -108.914 -3.81035 3.81035 1.05 0.000897075 0.000814982 0.0573778 0.0526139 26 2000 23 6.64007e+06 263718 477104. 1650.88 1.14 0.170785 0.153304 21682 110474 -1 1806 19 1161 1910 131605 30533 2.89397 2.89397 -108.713 -2.89397 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0337909 0.0302508 106 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30584 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 17.0 MiB 0.24 1132 12753 3748 7734 1271 55.6 MiB 0.20 0.00 5.06147 -160.912 -5.06147 5.06147 1.06 0.00117229 0.0010754 0.0779093 0.0715086 26 3087 40 6.64007e+06 326508 477104. 1650.88 2.14 0.263108 0.236967 21682 110474 -1 2355 20 1868 2497 190002 41388 3.92229 3.92229 -146.247 -3.92229 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0468768 0.0422113 144 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1035 16893 5570 8364 2959 55.6 MiB 0.24 0.00 5.02458 -149.361 -5.02458 5.02458 1.05 0.00117891 0.00108219 0.0983199 0.0902268 32 2745 25 6.64007e+06 364182 554710. 1919.41 1.28 0.253804 0.229139 22834 132086 -1 2253 20 1492 2370 153128 36800 4.34809 4.34809 -142.117 -4.34809 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0468735 0.0421913 155 56 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30180 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.09 1057 12164 2729 8794 641 55.8 MiB 0.19 0.00 5.48474 -146.154 -5.48474 5.48474 1.05 0.00121859 0.00111831 0.0685212 0.0627986 28 3239 24 6.64007e+06 452088 500653. 1732.36 2.05 0.229566 0.207068 21970 115934 -1 2648 20 1616 2857 269688 60325 4.87389 4.87389 -152.412 -4.87389 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0491963 0.0444012 153 3 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.16 17580 1 0.03 -1 -1 30116 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.16 890 11170 2805 7440 925 55.3 MiB 0.15 0.00 3.51924 -105.227 -3.51924 3.51924 1.05 0.00105435 0.00096678 0.0583438 0.0534941 26 2070 19 6.64007e+06 401856 477104. 1650.88 1.14 0.188793 0.169679 21682 110474 -1 1811 19 1221 2143 148491 33695 2.80477 2.80477 -101.447 -2.80477 0 0 585099. 2024.56 0.21 0.09 0.17 -1 -1 0.21 0.0400408 0.03594 121 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.15 17476 1 0.02 -1 -1 30584 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.4 MiB 0.07 645 11948 3714 6556 1678 55.0 MiB 0.14 0.00 3.4543 -94.7001 -3.4543 3.4543 1.05 0.000873846 0.000801392 0.0631956 0.0579577 26 1652 20 6.64007e+06 263718 477104. 1650.88 1.12 0.172107 0.154565 21682 110474 -1 1462 20 950 1369 109801 25165 2.92817 2.92817 -95.5092 -2.92817 0 0 585099. 2024.56 0.21 0.08 0.09 -1 -1 0.21 0.0349014 0.0311959 97 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17904 1 0.03 -1 -1 30460 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1270 10743 2480 7803 460 55.6 MiB 0.19 0.00 4.37195 -138.919 -4.37195 4.37195 1.04 0.00136891 0.00125677 0.0769922 0.0707028 32 3375 24 6.64007e+06 326508 554710. 1919.41 1.36 0.25362 0.228719 22834 132086 -1 2791 23 2060 3365 248010 55326 3.84783 3.84783 -138.713 -3.84783 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0621346 0.0560055 170 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30232 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 17.0 MiB 0.36 989 14828 4611 8220 1997 55.6 MiB 0.23 0.00 5.41669 -159.225 -5.41669 5.41669 1.04 0.00118583 0.00108748 0.0959005 0.0879399 28 2481 23 6.64007e+06 288834 500653. 1732.36 1.23 0.248854 0.224533 21970 115934 -1 2153 20 1535 2472 159921 37576 4.54748 4.54748 -151.702 -4.54748 0 0 612192. 2118.31 0.22 0.11 0.19 -1 -1 0.22 0.0475099 0.0427606 152 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30456 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 16.8 MiB 0.35 825 13583 3778 7563 2242 55.4 MiB 0.21 0.00 4.65475 -131.833 -4.65475 4.65475 1.06 0.00107409 0.000984646 0.0851179 0.077971 30 1948 20 6.64007e+06 238602 526063. 1820.29 1.20 0.22031 0.198558 22546 126617 -1 1626 18 802 1237 72373 16961 3.52843 3.52843 -124.473 -3.52843 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0396748 0.0356945 128 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30480 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 911 16708 5166 8976 2566 55.2 MiB 0.25 0.00 5.41998 -135.015 -5.41998 5.41998 1.05 0.00110121 0.0010106 0.0959207 0.0879092 28 2820 28 6.64007e+06 376740 500653. 1732.36 1.86 0.249315 0.224832 21970 115934 -1 2215 20 1177 1920 157877 36958 3.85082 3.85082 -126.566 -3.85082 0 0 612192. 2118.31 0.23 0.10 0.16 -1 -1 0.23 0.0446546 0.0401854 126 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17860 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1048 7423 1517 5297 609 55.8 MiB 0.14 0.00 5.01701 -136.816 -5.01701 5.01701 1.05 0.00123189 0.00113015 0.0446089 0.0409811 26 2859 33 6.64007e+06 426972 477104. 1650.88 2.05 0.199535 0.178657 21682 110474 -1 2296 20 1422 2465 203490 44242 3.76082 3.76082 -129.287 -3.76082 0 0 585099. 2024.56 0.25 0.12 0.15 -1 -1 0.25 0.0488661 0.0441685 145 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30476 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.5 MiB 0.15 829 7233 1598 5117 518 55.1 MiB 0.11 0.00 3.67989 -107.648 -3.67989 3.67989 1.05 0.00107774 0.000986989 0.0401636 0.0368089 30 2144 22 6.64007e+06 389298 526063. 1820.29 1.37 0.178179 0.159831 22546 126617 -1 1628 20 1009 1796 99734 24777 2.92597 2.92597 -101.5 -2.92597 0 0 666494. 2306.21 0.29 0.07 0.20 -1 -1 0.29 0.036708 0.0329126 124 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17676 1 0.03 -1 -1 30276 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1174 10979 2913 7012 1054 56.0 MiB 0.19 0.00 5.12747 -161.736 -5.12747 5.12747 1.07 0.00117757 0.00108073 0.0687722 0.0631808 26 3490 36 6.64007e+06 313950 477104. 1650.88 2.88 0.245589 0.221022 21682 110474 -1 2650 20 1925 2965 218244 49499 4.12068 4.12068 -148.064 -4.12068 0 0 585099. 2024.56 0.24 0.13 0.15 -1 -1 0.24 0.0475829 0.042935 148 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30076 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1093 17036 4934 9564 2538 55.6 MiB 0.25 0.01 4.75546 -148.188 -4.75546 4.75546 1.05 0.00125656 0.00115249 0.0958324 0.0879402 28 2591 20 6.64007e+06 452088 500653. 1732.36 1.31 0.249889 0.22552 21970 115934 -1 2227 17 1227 1962 128843 29850 3.51922 3.51922 -129.458 -3.51922 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0442019 0.0399109 144 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17368 1 0.02 -1 -1 30312 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.4 MiB 0.09 731 10536 4018 5581 937 55.0 MiB 0.13 0.00 3.74538 -111.28 -3.74538 3.74538 1.04 0.0009198 0.000843616 0.0608704 0.0558368 30 1443 17 6.64007e+06 213486 526063. 1820.29 1.08 0.171336 0.153994 22546 126617 -1 1262 17 750 1088 62961 14826 2.68977 2.68977 -98.4877 -2.68977 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0322275 0.0289293 91 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 16.7 MiB 0.20 882 13849 5109 6856 1884 55.3 MiB 0.19 0.00 4.03956 -127.808 -4.03956 4.03956 1.04 0.00102772 0.000942109 0.0793406 0.0727738 28 2218 24 6.64007e+06 263718 500653. 1732.36 1.29 0.212186 0.190755 21970 115934 -1 1895 23 1297 1769 147915 33084 3.22483 3.22483 -120.552 -3.22483 0 0 612192. 2118.31 0.20 0.05 0.09 -1 -1 0.20 0.0193623 0.0171119 117 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30364 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.10 954 14020 3601 8035 2384 55.5 MiB 0.19 0.00 4.80044 -128.284 -4.80044 4.80044 1.04 0.00111376 0.00102168 0.0698486 0.0639841 32 2139 23 6.64007e+06 464646 554710. 1919.41 1.24 0.213505 0.192377 22834 132086 -1 2014 21 1419 2451 173087 38123 3.85382 3.85382 -125.331 -3.85382 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.045956 0.0413213 129 33 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.17 17376 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 16.5 MiB 0.26 763 7103 1547 5010 546 55.0 MiB 0.11 0.00 4.32884 -114.709 -4.32884 4.32884 1.06 0.00090649 0.000830749 0.0385667 0.0353798 26 2139 24 6.64007e+06 276276 477104. 1650.88 1.40 0.156499 0.13996 21682 110474 -1 1766 20 1098 1421 93712 22469 3.56143 3.56143 -115.197 -3.56143 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0362284 0.0324534 109 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30040 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 16.4 MiB 0.17 634 12856 3328 7254 2274 55.1 MiB 0.17 0.00 3.90075 -115.478 -3.90075 3.90075 1.05 0.000952339 0.000873082 0.0726845 0.0666458 28 2041 24 6.64007e+06 213486 500653. 1732.36 1.19 0.196701 0.176705 21970 115934 -1 1792 22 1362 2294 161189 38138 3.12337 3.12337 -112.776 -3.12337 0 0 612192. 2118.31 0.24 0.10 0.18 -1 -1 0.24 0.0408763 0.0365681 108 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30032 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1014 15147 3968 9710 1469 55.6 MiB 0.21 0.00 4.15695 -125.813 -4.15695 4.15695 1.05 0.00121585 0.00111564 0.0840294 0.0770262 32 1987 18 6.64007e+06 452088 554710. 1919.41 1.24 0.242041 0.218361 22834 132086 -1 1806 17 1104 1789 117607 26569 2.98336 2.98336 -111.526 -2.98336 0 0 701300. 2426.64 0.28 0.09 0.21 -1 -1 0.28 0.0428878 0.0387312 136 64 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.15 17500 1 0.03 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 16.6 MiB 0.23 920 10163 2724 6503 936 55.1 MiB 0.13 0.00 4.05252 -124.711 -4.05252 4.05252 1.05 0.000910008 0.00083408 0.0539187 0.0494413 30 1979 19 6.64007e+06 251160 526063. 1820.29 1.11 0.165568 0.148523 22546 126617 -1 1733 20 812 1183 75670 17017 2.96343 2.96343 -112.059 -2.96343 0 0 666494. 2306.21 0.25 0.07 0.20 -1 -1 0.25 0.0360711 0.0321664 107 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17528 1 0.03 -1 -1 30104 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 16.7 MiB 0.16 987 10827 2770 6959 1098 55.3 MiB 0.18 0.00 3.75038 -118.864 -3.75038 3.75038 1.06 0.00114769 0.0010521 0.0681763 0.0624638 26 2424 21 6.64007e+06 401856 477104. 1650.88 1.51 0.21479 0.193322 21682 110474 -1 2057 21 1289 2282 165102 37170 2.73977 2.73977 -108.013 -2.73977 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0476525 0.042798 127 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.19 17800 1 0.02 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 17.1 MiB 0.33 927 10247 2394 7169 684 55.6 MiB 0.17 0.00 4.34696 -134.379 -4.34696 4.34696 1.05 0.00126123 0.00115636 0.0630484 0.0577632 32 2248 20 6.64007e+06 401856 554710. 1919.41 1.23 0.218915 0.197047 22834 132086 -1 1950 20 1313 1831 120295 29232 3.33903 3.33903 -128.306 -3.33903 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0504203 0.0454741 138 91 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30360 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.5 MiB 0.18 835 12681 3362 7951 1368 55.2 MiB 0.17 0.00 3.3851 -106.107 -3.3851 3.3851 1.08 0.000998263 0.00091344 0.0758061 0.0694486 26 2103 18 6.64007e+06 213486 477104. 1650.88 1.27 0.194319 0.174686 21682 110474 -1 1822 21 1002 1582 127645 28263 2.76677 2.76677 -106.335 -2.76677 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0420342 0.0376524 104 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17536 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 16.6 MiB 0.16 876 14407 4775 7452 2180 55.2 MiB 0.10 0.00 4.41384 -136.056 -4.41384 4.41384 0.72 0.000368089 0.000332551 0.0303883 0.0274846 30 2137 20 6.64007e+06 263718 526063. 1820.29 1.10 0.15217 0.135906 22546 126617 -1 1844 19 1079 1610 102910 23440 3.19163 3.19163 -119.952 -3.19163 0 0 666494. 2306.21 0.25 0.09 0.20 -1 -1 0.25 0.0380283 0.0340862 117 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1070 9111 2300 6161 650 55.5 MiB 0.15 0.00 4.68344 -140.114 -4.68344 4.68344 1.05 0.00108238 0.0009931 0.0543386 0.0498424 32 2486 17 6.64007e+06 288834 554710. 1919.41 1.20 0.178968 0.160557 22834 132086 -1 2124 20 1344 1810 132646 30744 3.78882 3.78882 -132.22 -3.78882 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0436904 0.0390897 130 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30188 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 16.9 MiB 0.19 969 13959 4223 8147 1589 55.4 MiB 0.19 0.00 4.71146 -123.714 -4.71146 4.71146 1.05 0.00108155 0.000991675 0.0775052 0.0711048 32 1988 20 6.64007e+06 364182 554710. 1919.41 1.17 0.19125 0.171852 22834 132086 -1 1799 14 777 1319 84447 19201 3.07743 3.07743 -106.617 -3.07743 0 0 701300. 2426.64 0.29 0.05 0.21 -1 -1 0.29 0.0229343 0.0206877 122 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 1164 12568 3311 8092 1165 56.0 MiB 0.23 0.00 5.44678 -170.492 -5.44678 5.44678 1.06 0.0012746 0.00116982 0.0856577 0.0785895 28 3017 24 6.64007e+06 301392 500653. 1732.36 1.47 0.255177 0.230406 21970 115934 -1 2587 19 1713 2544 209427 46081 4.52369 4.52369 -158.217 -4.52369 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0488238 0.04405 154 65 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17188 1 0.02 -1 -1 30336 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.4 MiB 0.05 802 9356 2223 6300 833 54.9 MiB 0.11 0.00 3.65167 -102.287 -3.65167 3.65167 1.05 0.000836206 0.000766553 0.0468656 0.0429987 32 1738 16 6.64007e+06 226044 554710. 1919.41 1.11 0.145463 0.13051 22834 132086 -1 1550 18 717 1200 83961 19380 2.89017 2.89017 -97.9917 -2.89017 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0216148 0.0191551 96 4 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.23 17876 1 0.03 -1 -1 30440 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 17.1 MiB 0.11 1014 15173 4325 8191 2657 55.6 MiB 0.12 0.00 4.24115 -141.749 -4.24115 4.24115 0.72 0.000476026 0.000429743 0.0344875 0.0311745 32 2563 27 6.64007e+06 426972 554710. 1919.41 1.05 0.172258 0.153856 22834 132086 -1 2184 19 1571 2371 170912 38410 3.72983 3.72983 -138.118 -3.72983 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.049758 0.0448425 145 90 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17680 1 0.03 -1 -1 30140 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 17.0 MiB 0.33 854 11456 4252 5499 1705 55.5 MiB 0.17 0.00 3.5233 -125.693 -3.5233 3.5233 1.03 0.00117769 0.00107745 0.077238 0.0706231 32 1976 23 6.64007e+06 213486 554710. 1919.41 1.24 0.229025 0.205879 22834 132086 -1 1747 19 1250 1820 139253 29466 2.95177 2.95177 -122.552 -2.95177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0450699 0.0404243 114 96 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 16.7 MiB 0.17 993 15864 4238 9461 2165 55.5 MiB 0.22 0.00 4.43584 -134.986 -4.43584 4.43584 1.06 0.00117559 0.00107758 0.088855 0.0814876 26 2557 24 6.64007e+06 401856 477104. 1650.88 1.48 0.240644 0.216863 21682 110474 -1 2081 15 926 1423 96949 22387 3.21363 3.21363 -116.31 -3.21363 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0375533 0.0339568 131 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17956 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 17.2 MiB 0.35 1309 17635 5897 9510 2228 55.4 MiB 0.32 0.01 6.39084 -191.431 -6.39084 6.39084 1.04 0.00133216 0.00122357 0.118822 0.109144 28 3357 19 6.64007e+06 339066 500653. 1732.36 1.60 0.283429 0.256997 21970 115934 -1 2809 20 1792 2549 197016 42830 5.36314 5.36314 -177.542 -5.36314 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0534478 0.0483583 170 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17380 1 0.02 -1 -1 30096 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 16.2 MiB 0.17 697 8680 1945 6222 513 54.7 MiB 0.10 0.00 3.31307 -102.387 -3.31307 3.31307 1.05 0.000762596 0.000698746 0.041191 0.037761 28 1666 19 6.64007e+06 226044 500653. 1732.36 1.13 0.13589 0.121297 21970 115934 -1 1432 14 605 760 77617 18525 2.39717 2.39717 -94.9129 -2.39717 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0231689 0.0207419 87 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17548 1 0.03 -1 -1 30516 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.10 791 11864 3247 7177 1440 55.0 MiB 0.16 0.00 4.38638 -124.628 -4.38638 4.38638 1.05 0.000974417 0.000893404 0.0723377 0.0663255 32 1680 15 6.64007e+06 200928 554710. 1919.41 1.14 0.18522 0.166682 22834 132086 -1 1479 22 920 1506 118207 25985 3.18337 3.18337 -111.753 -3.18337 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0420243 0.0376047 92 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.7 MiB 0.10 807 14407 3847 9113 1447 55.2 MiB 0.19 0.00 3.46104 -112.673 -3.46104 3.46104 1.05 0.00101254 0.000927894 0.081211 0.0744633 28 2067 23 6.64007e+06 263718 500653. 1732.36 1.15 0.211261 0.190226 21970 115934 -1 1884 21 1265 2247 152707 35374 2.75777 2.75777 -107.934 -2.75777 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0417619 0.0374303 115 34 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.2 MiB 0.06 469 9234 3273 3848 2113 54.7 MiB 0.09 0.00 3.37029 -77.6943 -3.37029 3.37029 1.07 0.000754004 0.000689826 0.0405027 0.0370221 30 1496 25 6.64007e+06 339066 526063. 1820.29 1.18 0.139915 0.124922 22546 126617 -1 1146 17 610 1009 61629 15763 2.92917 2.92917 -76.4452 -2.92917 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0261163 0.0233687 89 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30272 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 16.9 MiB 0.19 937 9571 2534 6630 407 55.5 MiB 0.17 0.00 4.28889 -129.632 -4.28889 4.28889 1.10 0.00118048 0.00108759 0.0662127 0.0607536 30 2291 20 6.64007e+06 263718 526063. 1820.29 1.26 0.219033 0.197414 22546 126617 -1 1909 19 1147 2018 101105 24783 3.56243 3.56243 -125.04 -3.56243 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.046232 0.04159 136 72 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 17.3 MiB 0.21 1018 17423 5293 9473 2657 55.9 MiB 0.25 0.00 4.47881 -144.552 -4.47881 4.47881 1.06 0.000876554 0.000788549 0.101387 0.0928053 32 2355 20 6.64007e+06 439530 554710. 1919.41 1.27 0.262588 0.236967 22834 132086 -1 1953 21 1310 2040 144978 31263 3.34137 3.34137 -129.49 -3.34137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0538096 0.0484508 143 90 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30004 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 16.8 MiB 0.36 962 17134 5020 8898 3216 55.3 MiB 0.14 0.00 5.27972 -153.369 -5.27972 5.27972 0.72 0.00043121 0.000388601 0.0372434 0.0336727 32 2793 32 6.65987e+06 380340 554710. 1919.41 1.08 0.152805 0.136159 22834 132086 -1 2266 23 1794 2718 200976 48039 4.74857 4.74857 -148.259 -4.74857 0 0 701300. 2426.64 0.27 0.11 0.19 -1 -1 0.27 0.0471274 0.0424022 152 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30320 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1040 12361 3404 6762 2195 55.3 MiB 0.20 0.00 4.63676 -143.523 -4.63676 4.63676 1.06 0.00118679 0.00108804 0.0822977 0.0755731 32 2391 26 6.65987e+06 291594 554710. 1919.41 1.30 0.241025 0.21733 22834 132086 -1 2137 22 1808 2733 205071 46641 4.06963 4.06963 -142.287 -4.06963 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0392372 0.0350683 138 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30360 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1057 9111 2109 6460 542 55.0 MiB 0.14 0.00 4.05544 -117.725 -4.05544 4.05544 1.07 0.00102811 0.000942724 0.0516184 0.0473615 26 2909 26 6.65987e+06 291594 477104. 1650.88 2.04 0.189973 0.170456 21682 110474 -1 2304 21 1445 2010 175906 39220 3.52151 3.52151 -120.603 -3.52151 0 0 585099. 2024.56 0.23 0.05 0.17 -1 -1 0.23 0.0186462 0.0165904 126 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30264 -1 -1 27 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.5 MiB 0.10 995 11593 2944 7290 1359 55.1 MiB 0.18 0.00 4.34155 -118.133 -4.34155 4.34155 1.05 0.0010651 0.00096873 0.0663376 0.0607829 32 2314 24 6.65987e+06 342306 554710. 1919.41 1.25 0.204468 0.183958 22834 132086 -1 2116 20 1335 2441 194474 43071 3.76777 3.76777 -117.12 -3.76777 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0427877 0.0384765 126 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17660 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.4 MiB 0.12 1007 8919 2464 5628 827 55.0 MiB 0.15 0.00 4.36781 -127.596 -4.36781 4.36781 1.04 0.00114053 0.00104664 0.0559911 0.0514018 34 2558 26 6.65987e+06 291594 585099. 2024.56 2.15 0.30271 0.271494 23122 138558 -1 2077 21 1475 2816 191677 44850 3.43891 3.43891 -123.186 -3.43891 0 0 742403. 2568.87 0.28 0.12 0.22 -1 -1 0.28 0.0481545 0.0434192 130 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30300 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1045 18079 5207 10774 2098 55.3 MiB 0.27 0.01 3.41904 -120.465 -3.41904 3.41904 1.05 0.00120134 0.00110075 0.100843 0.0924714 30 2159 22 6.65987e+06 418374 526063. 1820.29 1.18 0.254666 0.230006 22546 126617 -1 1847 19 1124 1809 96785 23008 2.73771 2.73771 -111.043 -2.73771 0 0 666494. 2306.21 0.23 0.09 0.10 -1 -1 0.23 0.0463271 0.0417779 141 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.16 17516 1 0.03 -1 -1 30576 -1 -1 18 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 16.1 MiB 0.17 496 10509 2613 7281 615 54.7 MiB 0.13 0.00 3.88752 -95.8054 -3.88752 3.88752 1.04 0.00088921 0.000815367 0.0598095 0.0548567 30 1262 24 6.65987e+06 228204 526063. 1820.29 1.11 0.176075 0.157984 22546 126617 -1 1045 21 680 1162 59254 15105 2.61651 2.61651 -82.9205 -2.61651 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0370517 0.0331633 94 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17236 1 0.03 -1 -1 30176 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.06 903 9466 2130 6738 598 55.1 MiB 0.14 0.00 3.22661 -96.4595 -3.22661 3.22661 1.05 0.000970937 0.000889727 0.0458132 0.0419786 30 1887 19 6.65987e+06 393018 526063. 1820.29 1.12 0.164555 0.147679 22546 126617 -1 1660 17 761 1366 74007 17618 2.51331 2.51331 -91.8345 -2.51331 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.033962 0.0305797 115 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30128 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.16 765 13788 3701 7917 2170 55.3 MiB 0.19 0.00 3.4209 -112.776 -3.4209 3.4209 1.05 0.00104101 0.000954688 0.0833805 0.0765022 32 2114 22 6.65987e+06 240882 554710. 1919.41 1.20 0.21493 0.193487 22834 132086 -1 1728 17 1058 1542 110918 26906 2.81811 2.81811 -106.836 -2.81811 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0366499 0.0329099 111 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.13 17432 1 0.04 -1 -1 30056 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.5 MiB 0.26 876 13906 4295 8097 1514 55.0 MiB 0.20 0.00 3.72312 -122.883 -3.72312 3.72312 1.06 0.00101627 0.000931371 0.0835265 0.0766293 32 2018 21 6.65987e+06 215526 554710. 1919.41 1.21 0.213915 0.19279 22834 132086 -1 1742 20 1225 1923 138608 31820 2.76451 2.76451 -111.5 -2.76451 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0406676 0.0365153 113 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30392 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.3 MiB 0.26 696 7008 1825 4747 436 55.0 MiB 0.11 0.00 4.00989 -109.174 -4.00989 4.00989 1.04 0.000991196 0.000908495 0.0438716 0.0402439 30 1525 18 6.65987e+06 215526 526063. 1820.29 1.10 0.163503 0.146588 22546 126617 -1 1365 17 574 884 51942 12389 2.68271 2.68271 -96.6812 -2.68271 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0347705 0.0312281 98 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 721 6381 1297 4466 618 55.2 MiB 0.09 0.00 3.89466 -119.961 -3.89466 3.89466 1.05 0.000941888 0.000863182 0.0373864 0.0343087 32 2079 21 6.65987e+06 215526 554710. 1919.41 1.21 0.156113 0.13976 22834 132086 -1 1739 22 1249 1676 130638 32083 2.71505 2.71505 -108.626 -2.71505 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0410062 0.0367125 106 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1056 16468 6105 8420 1943 55.4 MiB 0.26 0.00 4.37712 -140.294 -4.37712 4.37712 1.05 0.00115699 0.00106127 0.101195 0.0928862 32 2620 22 6.65987e+06 304272 554710. 1919.41 1.26 0.250035 0.22601 22834 132086 -1 2184 21 1699 2549 188889 42181 3.20051 3.20051 -125.325 -3.20051 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0485774 0.0437407 139 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30276 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 951 14365 3991 8802 1572 55.4 MiB 0.25 0.00 4.63803 -131.953 -4.63803 4.63803 1.06 0.00118483 0.00108591 0.0759029 0.0692841 28 2495 26 6.65987e+06 380340 500653. 1732.36 1.26 0.235671 0.211992 21970 115934 -1 2246 23 1604 2513 195977 44240 3.75925 3.75925 -131.777 -3.75925 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.053508 0.0480565 133 61 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30136 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 16.2 MiB 0.15 640 7914 1978 5337 599 54.8 MiB 0.10 0.00 3.16393 -88.5429 -3.16393 3.16393 1.05 0.000862189 0.0007906 0.0407161 0.0373266 28 1656 19 6.65987e+06 266238 500653. 1732.36 1.15 0.14588 0.130643 21970 115934 -1 1539 18 815 1389 99319 23560 2.82385 2.82385 -89.4422 -2.82385 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0318904 0.0285628 98 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1044 14035 4479 7571 1985 55.4 MiB 0.22 0.00 3.91387 -124.268 -3.91387 3.91387 1.05 0.00120497 0.00110408 0.0944461 0.0866325 32 2474 22 6.65987e+06 266238 554710. 1919.41 1.30 0.243509 0.219536 22834 132086 -1 2152 20 1401 2504 176126 40482 3.25057 3.25057 -119.253 -3.25057 0 0 701300. 2426.64 0.26 0.11 0.20 -1 -1 0.26 0.0488134 0.0439531 132 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17880 1 0.03 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 16.7 MiB 0.23 1069 12919 3925 6776 2218 55.3 MiB 0.20 0.00 4.31458 -139.268 -4.31458 4.31458 1.05 0.00113907 0.00104483 0.0824114 0.0756435 28 2604 25 6.65987e+06 266238 500653. 1732.36 1.59 0.225082 0.2028 21970 115934 -1 2350 23 1620 2389 184014 41533 3.34617 3.34617 -124.198 -3.34617 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0513269 0.046235 137 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30292 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.6 MiB 0.21 695 9543 2025 7276 242 55.1 MiB 0.14 0.00 2.85064 -99.0938 -2.85064 2.85064 1.05 0.00105958 0.000970469 0.0508438 0.0465706 30 1712 20 6.65987e+06 367662 526063. 1820.29 1.14 0.181601 0.162916 22546 126617 -1 1441 15 777 1258 62201 16037 2.15051 2.15051 -92.0519 -2.15051 0 0 666494. 2306.21 0.24 0.07 0.11 -1 -1 0.24 0.0335841 0.0302454 110 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17532 1 0.02 -1 -1 30108 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.8 MiB 0.12 717 11976 4624 5984 1368 54.5 MiB 0.13 0.00 2.25907 -80.296 -2.25907 2.25907 1.05 0.000770798 0.000705392 0.0584388 0.0534948 26 1528 21 6.65987e+06 190170 477104. 1650.88 0.98 0.153914 0.137797 21682 110474 -1 1374 17 625 877 65267 15370 1.85605 1.85605 -80.6905 -1.85605 0 0 585099. 2024.56 0.21 0.06 0.17 -1 -1 0.21 0.0267875 0.0238725 81 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17736 1 0.03 -1 -1 30320 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 16.3 MiB 0.34 848 12008 3931 5654 2423 54.9 MiB 0.18 0.00 4.81535 -141.646 -4.81535 4.81535 1.05 0.000990634 0.000908817 0.070191 0.0644563 32 2106 20 6.65987e+06 240882 554710. 1919.41 1.21 0.193161 0.173789 22834 132086 -1 1880 20 1338 1882 162953 37212 3.56017 3.56017 -127.18 -3.56017 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0401684 0.0360754 127 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30408 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.07 910 8087 1796 5473 818 55.3 MiB 0.13 0.00 4.13176 -127.852 -4.13176 4.13176 1.04 0.00115141 0.00105637 0.0464507 0.0426449 28 2425 21 6.65987e+06 393018 500653. 1732.36 1.29 0.192886 0.173617 21970 115934 -1 2103 20 1357 2130 169483 37977 3.47643 3.47643 -125.531 -3.47643 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.046441 0.0418607 135 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1181 9303 2469 6067 767 55.5 MiB 0.16 0.00 4.32644 -135.633 -4.32644 4.32644 1.04 0.00120811 0.00110701 0.0618071 0.0566453 30 2631 22 6.65987e+06 291594 526063. 1820.29 1.23 0.209407 0.188389 22546 126617 -1 2153 23 1289 2094 130332 28525 3.28937 3.28937 -120.165 -3.28937 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0547705 0.0493019 142 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17536 1 0.02 -1 -1 30560 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 16.1 MiB 0.24 356 10636 3977 4816 1843 54.5 MiB 0.09 0.00 2.4343 -65.7683 -2.4343 2.4343 1.05 0.000659627 0.000603075 0.045697 0.0417928 30 997 16 6.65987e+06 228204 526063. 1820.29 1.11 0.123009 0.110062 22546 126617 -1 741 16 447 580 26686 7955 2.19451 2.19451 -64.9642 -2.19451 0 0 666494. 2306.21 0.24 0.04 0.20 -1 -1 0.24 0.0219918 0.019658 77 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30332 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.7 MiB 0.08 978 9571 2391 5607 1573 55.2 MiB 0.15 0.00 4.9364 -125.004 -4.9364 4.9364 1.01 0.00100756 0.000924587 0.0549074 0.0504357 32 2187 34 6.65987e+06 266238 554710. 1919.41 1.30 0.20409 0.183437 22834 132086 -1 1928 19 1077 2024 137083 32628 3.70177 3.70177 -117.838 -3.70177 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0394382 0.0355134 118 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.15 17152 1 0.02 -1 -1 29980 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55592 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.7 MiB 0.04 681 11200 3514 6177 1509 54.3 MiB 0.10 0.00 2.44727 -77.3331 -2.44727 2.44727 1.05 0.000637001 0.000581524 0.044785 0.0408807 26 1411 15 6.65987e+06 177492 477104. 1650.88 1.03 0.117989 0.1054 21682 110474 -1 1284 15 508 576 57479 12943 1.93211 1.93211 -77.6137 -1.93211 0 0 585099. 2024.56 0.21 0.05 0.17 -1 -1 0.21 0.020259 0.0180743 79 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.14 17492 1 0.03 -1 -1 30096 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.6 MiB 0.10 819 10531 2694 7192 645 55.2 MiB 0.15 0.00 4.34174 -119.601 -4.34174 4.34174 1.04 0.00105335 0.000967417 0.0546949 0.0502464 32 2048 22 6.65987e+06 380340 554710. 1919.41 1.21 0.186858 0.168081 22834 132086 -1 1821 18 1090 1817 127223 31545 3.42805 3.42805 -113.683 -3.42805 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.038778 0.0349282 123 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.2 MiB 0.09 841 8087 1664 5850 573 54.9 MiB 0.12 0.00 3.58635 -102.903 -3.58635 3.58635 0.94 0.00105797 0.000972465 0.0428028 0.0393195 28 2267 21 6.65987e+06 393018 500653. 1732.36 1.61 0.177599 0.159696 21970 115934 -1 2021 19 1195 2217 144338 35484 2.86871 2.86871 -103.513 -2.86871 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0407645 0.0366773 128 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30312 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1047 15165 4413 8666 2086 55.3 MiB 0.22 0.00 4.3944 -130.237 -4.3944 4.3944 1.05 0.00112512 0.00103174 0.0885157 0.081239 32 2492 25 6.65987e+06 329628 554710. 1919.41 1.27 0.238224 0.214552 22834 132086 -1 2137 19 1363 2369 169359 39834 3.31885 3.31885 -121.57 -3.31885 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0432912 0.0389898 125 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17488 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.06 780 6100 1392 4485 223 55.0 MiB 0.11 0.00 2.90053 -100.349 -2.90053 2.90053 1.05 0.000970259 0.000888911 0.0399844 0.0367285 32 1965 19 6.65987e+06 202848 554710. 1919.41 1.24 0.162371 0.145642 22834 132086 -1 1697 21 1091 1759 139787 33032 2.67165 2.67165 -101.934 -2.67165 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0405912 0.0363458 101 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17360 1 0.03 -1 -1 30076 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 16.2 MiB 0.10 630 9199 2049 6385 765 54.9 MiB 0.11 0.00 2.99867 -92.259 -2.99867 2.99867 1.06 0.000904839 0.000829382 0.0467021 0.0427788 32 1813 20 6.65987e+06 291594 554710. 1919.41 1.21 0.165644 0.148293 22834 132086 -1 1461 21 1012 1572 113500 26995 2.90791 2.90791 -95.8313 -2.90791 0 0 701300. 2426.64 0.25 0.08 0.23 -1 -1 0.25 0.0378755 0.0338746 97 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30264 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 16.1 MiB 0.06 575 14123 3775 8918 1430 54.7 MiB 0.16 0.00 3.31478 -91.535 -3.31478 3.31478 1.04 0.000892181 0.000818151 0.0726486 0.0665248 32 1755 23 6.65987e+06 291594 554710. 1919.41 1.18 0.188189 0.169058 22834 132086 -1 1402 21 1087 1837 130276 32833 2.67565 2.67565 -90.39 -2.67565 0 0 701300. 2426.64 0.26 0.08 0.21 -1 -1 0.26 0.0344892 0.0307605 98 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17076 1 0.03 -1 -1 30336 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.1 MiB 0.10 714 4763 885 3714 164 54.8 MiB 0.07 0.00 3.74323 -109.194 -3.74323 3.74323 1.06 0.00090841 0.000834292 0.0266524 0.0244984 30 1851 22 6.65987e+06 240882 526063. 1820.29 1.29 0.142923 0.127793 22546 126617 -1 1562 20 1047 1749 98103 23919 2.62751 2.62751 -102.66 -2.62751 0 0 666494. 2306.21 0.26 0.08 0.20 -1 -1 0.26 0.0370527 0.0332384 110 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17240 1 0.03 -1 -1 30144 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 16.7 MiB 0.10 740 8130 1715 6151 264 55.1 MiB 0.11 0.00 3.32595 -98.9982 -3.32595 3.32595 1.05 0.000573318 0.000517179 0.0386412 0.0353925 32 1842 22 6.65987e+06 342306 554710. 1919.41 1.15 0.157615 0.141089 22834 132086 -1 1570 20 1022 1665 112884 27377 2.72051 2.72051 -99.0807 -2.72051 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0374436 0.0335606 103 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30456 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 874 10103 2597 6479 1027 54.9 MiB 0.14 0.00 3.27578 -104.365 -3.27578 3.27578 1.05 0.000978649 0.000898397 0.0548114 0.0503215 32 1837 16 6.65987e+06 316950 554710. 1919.41 1.14 0.168447 0.151228 22834 132086 -1 1643 19 1041 1556 109533 25783 2.40005 2.40005 -98.5579 -2.40005 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0370601 0.0331954 105 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30492 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1205 9971 2413 6766 792 55.8 MiB 0.15 0.00 4.35696 -124.779 -4.35696 4.35696 1.04 0.00123705 0.00113596 0.0560971 0.0515253 30 2470 20 6.65987e+06 469086 526063. 1820.29 1.16 0.210907 0.190245 22546 126617 -1 2143 21 987 1859 103605 23151 3.67963 3.67963 -120.47 -3.67963 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0521918 0.0471226 150 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17692 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.21 1009 12860 3291 8398 1171 55.6 MiB 0.11 0.00 3.75432 -126.947 -3.75432 3.75432 0.72 0.000467038 0.000422358 0.0282319 0.0255404 26 2525 36 6.65987e+06 456408 477104. 1650.88 0.91 0.101089 0.0892612 21682 110474 -1 2140 19 1553 2391 155367 36688 2.97837 2.97837 -123.475 -2.97837 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0490153 0.0442434 146 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30084 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 731 8852 2206 5531 1115 55.0 MiB 0.13 0.00 4.21752 -119.384 -4.21752 4.21752 1.04 0.000951554 0.000872849 0.051731 0.0474632 28 2061 26 6.65987e+06 215526 500653. 1732.36 1.24 0.179026 0.160516 21970 115934 -1 1827 20 1090 1500 104657 25299 3.14271 3.14271 -113.213 -3.14271 0 0 612192. 2118.31 0.22 0.09 0.20 -1 -1 0.22 0.0387586 0.0347942 109 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30484 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 17.1 MiB 0.25 838 9687 2447 6341 899 55.6 MiB 0.17 0.00 4.30117 -127.913 -4.30117 4.30117 1.05 0.00121095 0.0011111 0.0643278 0.0590778 28 2472 25 6.65987e+06 304272 500653. 1732.36 1.38 0.225046 0.20271 21970 115934 -1 2020 21 1371 2445 169274 40806 3.06817 3.06817 -116.785 -3.06817 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0506365 0.0455736 137 61 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17912 1 0.03 -1 -1 30424 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1313 13758 3781 7541 2436 55.5 MiB 0.23 0.00 5.77198 -171.36 -5.77198 5.77198 1.05 0.00122294 0.0011213 0.0873303 0.0801309 32 3132 21 6.65987e+06 342306 554710. 1919.41 1.32 0.242874 0.219311 22834 132086 -1 2551 22 2197 3203 211784 51203 4.70894 4.70894 -163.62 -4.70894 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0537815 0.0484855 170 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30428 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 16.8 MiB 1.07 956 15103 4666 7688 2749 55.5 MiB 0.25 0.00 4.78629 -143.571 -4.78629 4.78629 1.05 0.0012439 0.00114116 0.100167 0.0918994 32 2967 29 6.65987e+06 316950 554710. 1919.41 1.47 0.275185 0.248255 22834 132086 -1 2196 20 1644 2482 193336 43970 3.98337 3.98337 -138.614 -3.98337 0 0 701300. 2426.64 0.22 0.06 0.11 -1 -1 0.22 0.0217444 0.019502 162 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30324 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 16.9 MiB 0.24 864 6095 1129 4612 354 55.3 MiB 0.12 0.00 4.47092 -130.094 -4.47092 4.47092 1.04 0.00116431 0.00106867 0.0374672 0.0344141 28 2546 32 6.65987e+06 367662 500653. 1732.36 1.70 0.206484 0.185506 21970 115934 -1 2020 21 1236 1940 117144 30484 3.23625 3.23625 -120.221 -3.23625 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0488816 0.0440155 133 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 16.3 MiB 0.18 918 12371 3407 6390 2574 54.9 MiB 0.17 0.00 4.0455 -110.07 -4.0455 4.0455 1.05 0.000996161 0.000913406 0.068273 0.0626155 28 2605 20 6.65987e+06 278916 500653. 1732.36 1.50 0.193062 0.173637 21970 115934 -1 2180 19 1317 1949 158383 36532 3.51625 3.51625 -115.535 -3.51625 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0388471 0.0349187 118 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17968 1 0.03 -1 -1 30384 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 17.3 MiB 0.29 1184 10336 2301 7496 539 55.6 MiB 0.15 0.01 5.18869 -164.242 -5.18869 5.18869 1.10 0.00146702 0.00134676 0.0435172 0.0397538 26 3457 39 6.65987e+06 481764 477104. 1650.88 2.51 0.270265 0.242508 21682 110474 -1 2828 25 2036 3190 320818 89509 4.52437 4.52437 -157.469 -4.52437 0 0 585099. 2024.56 0.21 0.18 0.17 -1 -1 0.21 0.0717011 0.06457 172 87 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 16.1 MiB 0.13 660 11064 4480 5786 798 54.8 MiB 0.12 0.00 3.61218 -99.209 -3.61218 3.61218 1.05 0.000903332 0.000827127 0.057231 0.0524219 32 1891 29 6.65987e+06 266238 554710. 1919.41 1.22 0.182295 0.163073 22834 132086 -1 1581 22 1137 1828 142459 35231 2.90705 2.90705 -99.775 -2.90705 0 0 701300. 2426.64 0.31 0.09 0.23 -1 -1 0.31 0.0313613 0.0278828 101 28 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 17.0 MiB 0.22 1031 5756 1118 4418 220 55.7 MiB 0.12 0.00 5.03726 -146.602 -5.03726 5.03726 1.05 0.00113328 0.00103921 0.0377695 0.0346788 28 2854 46 6.65987e+06 291594 500653. 1732.36 2.05 0.229183 0.20555 21970 115934 -1 2278 23 1392 1970 136323 32335 4.47728 4.47728 -144.286 -4.47728 0 0 612192. 2118.31 0.23 0.11 0.16 -1 -1 0.23 0.0510264 0.0459358 142 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30332 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.8 MiB 0.16 975 10087 2133 7508 446 55.2 MiB 0.16 0.00 3.91407 -118.639 -3.91407 3.91407 1.04 0.00114931 0.00105382 0.0554388 0.0508559 28 2750 43 6.65987e+06 418374 500653. 1732.36 1.80 0.241776 0.217125 21970 115934 -1 2171 17 1119 1988 146167 33613 3.02611 3.02611 -112.426 -3.02611 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0405769 0.0365804 131 53 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17080 1 0.03 -1 -1 30088 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.6 MiB 0.08 889 13153 5130 6680 1343 55.2 MiB 0.18 0.00 4.00941 -121.212 -4.00941 4.00941 1.04 0.00103608 0.000949413 0.0723783 0.0664157 32 2460 38 6.65987e+06 304272 554710. 1919.41 1.52 0.230493 0.207326 22834 132086 -1 1936 29 1457 2672 381718 164248 3.53945 3.53945 -118.826 -3.53945 0 0 701300. 2426.64 0.25 0.19 0.21 -1 -1 0.25 0.0562109 0.0504007 123 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1135 8213 1899 5522 792 55.4 MiB 0.14 0.00 4.53182 -135.539 -4.53182 4.53182 1.05 0.00115944 0.00106338 0.053802 0.0493474 26 2769 24 6.65987e+06 278916 477104. 1650.88 1.47 0.206162 0.185413 21682 110474 -1 2364 24 1365 1922 145357 33034 3.40711 3.40711 -122.846 -3.40711 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0549964 0.0494905 136 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17660 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 16.8 MiB 0.36 1054 11759 3077 7738 944 55.4 MiB 0.18 0.00 3.70469 -122.012 -3.70469 3.70469 1.04 0.00118829 0.00109057 0.0678753 0.0622894 26 2570 22 6.65987e+06 393018 477104. 1650.88 1.61 0.219865 0.197993 21682 110474 -1 2258 22 1408 2255 183580 40530 3.17031 3.17031 -120.881 -3.17031 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0516653 0.0464901 132 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17568 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1080 10772 2746 7404 622 55.7 MiB 0.18 0.00 4.49669 -137.938 -4.49669 4.49669 1.05 0.00125011 0.00114689 0.0614935 0.0563488 26 2751 23 6.65987e+06 456408 477104. 1650.88 1.51 0.222933 0.200707 21682 110474 -1 2424 22 1401 2036 158685 36651 3.54111 3.54111 -130.601 -3.54111 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0548603 0.0494717 144 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17592 1 0.03 -1 -1 30240 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.7 MiB 0.11 888 10593 2829 7083 681 55.2 MiB 0.15 0.00 3.98836 -118.206 -3.98836 3.98836 1.04 0.00106263 0.000975631 0.0564894 0.05188 32 2021 22 6.65987e+06 367662 554710. 1919.41 1.19 0.190799 0.171329 22834 132086 -1 1760 21 1196 1953 123809 29858 3.27785 3.27785 -112.011 -3.27785 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0440014 0.0394966 122 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17792 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1026 6999 1560 5055 384 55.1 MiB 0.12 0.00 4.76946 -136.875 -4.76946 4.76946 1.05 0.00108214 0.000992581 0.0425636 0.0390945 32 2525 24 6.65987e+06 291594 554710. 1919.41 1.23 0.184859 0.166126 22834 132086 -1 2194 21 1650 2343 161923 39181 3.74371 3.74371 -130.276 -3.74371 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0457549 0.0411554 133 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.21 17628 1 0.03 -1 -1 30284 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1149 15584 5177 7856 2551 55.5 MiB 0.27 0.00 4.99307 -147.134 -4.99307 4.99307 1.04 0.0012179 0.00111786 0.102398 0.0939657 32 3017 27 6.65987e+06 291594 554710. 1919.41 1.36 0.265544 0.239741 22834 132086 -1 2440 19 1556 2391 183308 41041 3.88823 3.88823 -134.888 -3.88823 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0475638 0.0429403 146 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 16.6 MiB 0.18 1089 11245 3394 6770 1081 55.2 MiB 0.19 0.00 3.85398 -125.73 -3.85398 3.85398 1.05 0.00124409 0.00114086 0.0784879 0.0719882 32 2804 22 6.65987e+06 266238 554710. 1919.41 1.31 0.236836 0.213486 22834 132086 -1 2365 24 1758 3197 231748 53117 3.42705 3.42705 -123.815 -3.42705 0 0 701300. 2426.64 0.26 0.14 0.22 -1 -1 0.26 0.0583254 0.0524161 135 77 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17380 1 0.03 -1 -1 30084 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 16.2 MiB 0.09 769 15493 4232 9363 1898 54.8 MiB 0.18 0.00 3.34618 -101.012 -3.34618 3.34618 1.05 0.000897129 0.000823228 0.0728507 0.0667943 30 1787 28 6.65987e+06 304272 526063. 1820.29 1.23 0.194464 0.174437 22546 126617 -1 1499 16 624 950 65432 14963 2.40711 2.40711 -90.0172 -2.40711 0 0 666494. 2306.21 0.24 0.06 0.20 -1 -1 0.24 0.0294486 0.0264667 97 23 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 16.9 MiB 0.15 904 12345 3635 7531 1179 55.3 MiB 0.19 0.00 3.9733 -136.305 -3.9733 3.9733 1.02 0.00110599 0.0010131 0.0716559 0.0655266 28 2501 21 6.65987e+06 253560 500653. 1732.36 1.27 0.185978 0.167069 21970 115934 -1 2099 21 1493 2105 171768 38779 3.41097 3.41097 -132.539 -3.41097 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0462901 0.0415841 125 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30344 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1234 10649 2580 7238 831 55.4 MiB 0.21 0.01 5.507 -161.149 -5.507 5.507 1.16 0.0013002 0.00119464 0.07023 0.0644922 32 3101 24 6.65987e+06 354984 554710. 1919.41 1.44 0.244368 0.220891 22834 132086 -1 2718 20 2087 3366 237751 56336 4.94897 4.94897 -152.371 -4.94897 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530635 0.0480399 168 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 16.8 MiB 0.25 868 6791 1309 5265 217 55.2 MiB 0.11 0.00 4.3812 -128.187 -4.3812 4.3812 1.02 0.00115484 0.00105835 0.0383795 0.0351597 30 2033 20 6.65987e+06 393018 526063. 1820.29 1.23 0.170585 0.15301 22546 126617 -1 1762 20 952 1627 85645 20883 2.86291 2.86291 -109.937 -2.86291 0 0 666494. 2306.21 0.24 0.09 0.21 -1 -1 0.24 0.0468154 0.0422519 133 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30308 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 16.7 MiB 0.06 691 10228 2870 6479 879 55.1 MiB 0.14 0.00 3.33678 -100.638 -3.33678 3.33678 1.04 0.000953867 0.00087475 0.0524259 0.0480899 26 1949 23 6.65987e+06 329628 477104. 1650.88 1.50 0.175353 0.157173 21682 110474 -1 1713 22 1236 2017 169711 40616 2.71771 2.71771 -101.15 -2.71771 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0409469 0.0365758 104 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 17772 1 0.03 -1 -1 30340 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 0.35 1262 6623 1301 4680 642 55.7 MiB 0.14 0.00 6.41663 -184.149 -6.41663 6.41663 1.05 0.00140492 0.00129007 0.0515042 0.0473957 30 3204 25 6.65987e+06 316950 526063. 1820.29 1.81 0.241698 0.217731 22546 126617 -1 2549 21 1554 2249 144381 31759 4.98034 4.98034 -166.106 -4.98034 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0597142 0.0539435 168 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 16.5 MiB 0.27 921 16959 4303 11211 1445 55.2 MiB 0.24 0.00 4.44175 -133.512 -4.44175 4.44175 1.05 0.00113798 0.00104441 0.0916499 0.0841271 26 2186 24 6.65987e+06 405696 477104. 1650.88 1.28 0.24196 0.218503 21682 110474 -1 1832 22 1113 1842 133668 30945 3.44211 3.44211 -120.204 -3.44211 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0494487 0.0444939 130 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 16.3 MiB 0.05 793 12375 3802 6579 1994 54.9 MiB 0.15 0.00 3.21869 -96.935 -3.21869 3.21869 1.05 0.000845311 0.000776013 0.0569784 0.0522935 30 1766 15 6.65987e+06 291594 526063. 1820.29 1.14 0.154163 0.138482 22546 126617 -1 1544 16 659 1107 76228 16685 2.40211 2.40211 -91.256 -2.40211 0 0 666494. 2306.21 0.27 0.06 0.20 -1 -1 0.27 0.0282984 0.0253886 100 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30164 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.8 MiB 0.15 997 10448 2232 7093 1123 55.3 MiB 0.15 0.00 5.44618 -130.736 -5.44618 5.44618 1.05 0.00118386 0.00108452 0.0579268 0.0530598 30 2483 23 6.65987e+06 431052 526063. 1820.29 1.42 0.211468 0.190436 22546 126617 -1 1969 22 1092 2125 114624 28201 4.42602 4.42602 -126.911 -4.42602 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0512321 0.0461792 139 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17152 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 16.1 MiB 0.10 805 9600 2394 6142 1064 54.7 MiB 0.07 0.00 3.39504 -104.25 -3.39504 3.39504 0.82 0.000332965 0.0003001 0.0190563 0.0172111 30 1773 21 6.65987e+06 253560 526063. 1820.29 1.20 0.135583 0.121027 22546 126617 -1 1584 19 861 1470 82710 19276 2.61951 2.61951 -101.603 -2.61951 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0343049 0.0307786 104 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17340 1 0.03 -1 -1 30404 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.3 MiB 0.16 870 16295 4607 9720 1968 54.9 MiB 0.19 0.00 3.88231 -108.178 -3.88231 3.88231 1.05 0.000951392 0.000872625 0.0745596 0.0683549 26 1911 26 6.65987e+06 418374 477104. 1650.88 1.36 0.201843 0.181361 21682 110474 -1 1673 16 662 1152 76214 17335 2.61725 2.61725 -99.6073 -2.61725 0 0 585099. 2024.56 0.21 0.07 0.17 -1 -1 0.21 0.0318945 0.0286843 105 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30248 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1186 15151 5050 8219 1882 55.6 MiB 0.25 0.00 4.37661 -129.138 -4.37661 4.37661 1.05 0.00115926 0.00106359 0.0981138 0.09008 28 2757 20 6.65987e+06 304272 500653. 1732.36 1.61 0.243867 0.220289 21970 115934 -1 2326 20 1558 2342 169332 38302 3.29317 3.29317 -116.352 -3.29317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0469598 0.0423039 138 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.8 MiB 0.18 884 5548 1103 3958 487 55.5 MiB 0.10 0.00 4.37207 -129.772 -4.37207 4.37207 1.05 0.0011804 0.00108252 0.0369406 0.0339471 32 2141 21 6.65987e+06 304272 554710. 1919.41 1.22 0.185528 0.166634 22834 132086 -1 1854 20 1282 1951 132992 31888 3.70757 3.70757 -130.332 -3.70757 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0455786 0.040947 130 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17684 1 0.03 -1 -1 30104 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1040 15391 4199 8930 2262 55.4 MiB 0.23 0.00 4.54089 -136.701 -4.54089 4.54089 1.06 0.00117201 0.00107536 0.091795 0.084256 32 2316 24 6.65987e+06 342306 554710. 1919.41 1.23 0.245215 0.221267 22834 132086 -1 2093 18 1106 1900 131883 30619 3.67131 3.67131 -128.131 -3.67131 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.04304 0.0388039 132 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17540 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 821 7476 1923 4958 595 55.0 MiB 0.12 0.00 4.66411 -131.468 -4.66411 4.66411 1.06 0.000945592 0.000867166 0.0438122 0.0402048 30 1841 19 6.65987e+06 202848 526063. 1820.29 1.14 0.164375 0.147285 22546 126617 -1 1650 18 685 936 56545 13237 3.08625 3.08625 -110.111 -3.08625 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0347542 0.0312154 103 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30404 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.7 MiB 0.21 768 7736 1918 4969 849 55.3 MiB 0.13 0.00 3.69598 -115.422 -3.69598 3.69598 1.02 0.00104377 0.000956313 0.0484749 0.0444343 30 1988 17 6.65987e+06 240882 526063. 1820.29 1.17 0.180713 0.162364 22546 126617 -1 1656 20 991 1482 85033 20146 2.94771 2.94771 -106.549 -2.94771 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0418029 0.0375185 111 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30460 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.4 MiB 0.21 822 9815 2052 6788 975 55.0 MiB 0.13 0.00 3.34001 -95.394 -3.34001 3.34001 1.09 0.00109368 0.00100178 0.0537453 0.049283 28 2190 24 6.65987e+06 418374 500653. 1732.36 1.80 0.195987 0.175997 21970 115934 -1 1852 15 1072 1834 124485 30633 2.76159 2.76159 -95.2544 -2.76159 0 0 612192. 2118.31 0.21 0.08 0.13 -1 -1 0.21 0.0346768 0.0312681 123 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30464 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.6 MiB 0.13 864 12623 3003 8699 921 55.1 MiB 0.16 0.00 4.17801 -101.983 -4.17801 4.17801 1.06 0.000960682 0.000881919 0.0526949 0.0479732 26 2268 22 6.65987e+06 443730 477104. 1650.88 1.89 0.171062 0.153134 21682 110474 -1 1937 20 1051 2141 185449 39228 3.47031 3.47031 -104.035 -3.47031 0 0 585099. 2024.56 0.22 0.10 0.19 -1 -1 0.22 0.0387653 0.0347819 115 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.10 17780 1 0.03 -1 -1 30472 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 16.4 MiB 0.23 739 8360 2842 3913 1605 55.0 MiB 0.13 0.00 4.07397 -113.958 -4.07397 4.07397 1.05 0.00103394 0.000946861 0.0543216 0.0498423 32 2126 22 6.65987e+06 215526 554710. 1919.41 1.25 0.179157 0.160685 22834 132086 -1 1845 20 1326 2233 191342 43480 3.06691 3.06691 -111.388 -3.06691 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0406077 0.036341 108 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17656 1 0.03 -1 -1 30104 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 16.6 MiB 0.20 854 4110 634 3368 108 55.2 MiB 0.09 0.00 3.78604 -125.597 -3.78604 3.78604 1.04 0.00109114 0.00100042 0.0282541 0.0259585 26 2393 26 6.65987e+06 253560 477104. 1650.88 1.79 0.173749 0.155383 21682 110474 -1 1995 20 1275 1873 148398 35276 3.03351 3.03351 -122.493 -3.03351 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0438533 0.0393788 120 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17076 1 0.03 -1 -1 30452 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.6 MiB 0.09 847 5711 1070 3973 668 55.1 MiB 0.09 0.00 4.49904 -123.598 -4.49904 4.49904 1.05 0.00103732 0.000952683 0.0304035 0.0279278 30 2337 22 6.65987e+06 405696 526063. 1820.29 1.32 0.165172 0.148346 22546 126617 -1 1888 24 1168 2212 131068 32744 3.69257 3.69257 -118.678 -3.69257 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0487308 0.0437921 127 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30472 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1096 14639 4278 7910 2451 55.6 MiB 0.24 0.00 5.13815 -159.632 -5.13815 5.13815 1.05 0.00118258 0.00108682 0.0949602 0.0872498 32 3087 25 6.65987e+06 278916 554710. 1919.41 1.31 0.251465 0.227148 22834 132086 -1 2460 21 1795 2659 205239 47320 4.22151 4.22151 -146.209 -4.22151 0 0 701300. 2426.64 0.25 0.12 0.20 -1 -1 0.25 0.0490229 0.0441788 144 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30308 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1097 14331 4044 8499 1788 55.5 MiB 0.22 0.00 4.9662 -142.984 -4.9662 4.9662 1.05 0.0012534 0.00115048 0.085394 0.0783258 28 2572 22 6.65987e+06 405696 500653. 1732.36 1.43 0.246405 0.222256 21970 115934 -1 2172 17 1073 1895 133148 29668 3.78603 3.78603 -131.107 -3.78603 0 0 612192. 2118.31 0.23 0.10 0.18 -1 -1 0.23 0.0436377 0.0393728 142 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30300 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 17.1 MiB 0.27 1087 19136 6054 10420 2662 55.6 MiB 0.27 0.00 4.23232 -136.463 -4.23232 4.23232 1.05 0.00125627 0.00115151 0.106016 0.0972062 28 2899 28 6.65987e+06 469086 500653. 1732.36 1.70 0.279174 0.252069 21970 115934 -1 2417 25 1675 2949 230320 50849 3.47891 3.47891 -134.175 -3.47891 0 0 612192. 2118.31 0.20 0.07 0.09 -1 -1 0.20 0.0252595 0.0224961 140 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30100 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 16.4 MiB 0.22 753 14081 4985 6810 2286 54.9 MiB 0.18 0.00 3.61906 -107.365 -3.61906 3.61906 1.05 0.000934557 0.000856216 0.0780115 0.0714776 32 1967 21 6.65987e+06 240882 554710. 1919.41 1.20 0.195066 0.175494 22834 132086 -1 1733 22 1136 1898 162835 35973 2.77265 2.77265 -98.3726 -2.77265 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0407228 0.0364541 105 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 17.0 MiB 0.27 993 13583 3880 7603 2100 55.7 MiB 0.22 0.00 4.75724 -141.541 -4.75724 4.75724 1.06 0.00122106 0.00111962 0.095446 0.0876077 32 2250 20 6.65987e+06 266238 554710. 1919.41 1.26 0.247693 0.223878 22834 132086 -1 2011 20 1613 2556 171997 40019 3.57237 3.57237 -133.43 -3.57237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494085 0.0445877 137 63 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30376 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 16.9 MiB 0.28 984 6328 1212 4906 210 55.4 MiB 0.12 0.00 5.08874 -146.537 -5.08874 5.08874 1.06 0.00115249 0.0010586 0.0408509 0.0375567 30 2772 46 6.65987e+06 304272 526063. 1820.29 1.54 0.232437 0.208507 22546 126617 -1 2211 20 1228 1907 136054 30889 3.73165 3.73165 -133.157 -3.73165 0 0 666494. 2306.21 0.24 0.10 0.22 -1 -1 0.24 0.0463018 0.0417743 138 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30504 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 16.7 MiB 0.35 1115 15391 3929 9868 1594 55.2 MiB 0.23 0.00 5.2191 -153.261 -5.2191 5.2191 1.05 0.00113352 0.00103875 0.0887915 0.0813375 32 2703 22 6.65987e+06 354984 554710. 1919.41 1.24 0.23367 0.210712 22834 132086 -1 2398 21 1413 2244 171506 39576 4.49237 4.49237 -149.522 -4.49237 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.047657 0.0429259 146 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30428 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 17.0 MiB 0.94 822 9963 2514 6047 1402 55.4 MiB 0.17 0.00 4.35758 -125.649 -4.35758 4.35758 1.05 0.00120737 0.00110765 0.0610073 0.0559865 30 1914 20 6.65987e+06 393018 526063. 1820.29 1.19 0.211126 0.190038 22546 126617 -1 1609 18 981 1672 88324 22522 2.81791 2.81791 -106.668 -2.81791 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0451283 0.0407886 133 83 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30324 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 16.8 MiB 0.21 1042 15822 5317 8613 1892 55.3 MiB 0.29 0.00 4.76549 -137.992 -4.76549 4.76549 1.05 0.000830583 0.000747778 0.10438 0.0955517 30 2491 20 6.65987e+06 253560 526063. 1820.29 1.35 0.254425 0.229602 22546 126617 -1 2119 19 1152 2004 130735 29222 3.60711 3.60711 -129.356 -3.60711 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463954 0.0418322 133 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.11 17588 1 0.03 -1 -1 30288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 16.7 MiB 0.36 913 8934 2134 6274 526 55.4 MiB 0.15 0.00 4.51892 -126.294 -4.51892 4.51892 1.05 0.00120559 0.00110533 0.0568582 0.0521587 26 2602 20 6.65987e+06 367662 477104. 1650.88 2.03 0.203034 0.182282 21682 110474 -1 2145 20 1380 2178 169956 39900 3.37797 3.37797 -123.439 -3.37797 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0482837 0.043409 131 85 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.10 17084 1 0.04 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 16.1 MiB 0.09 724 12416 3530 7132 1754 54.7 MiB 0.16 0.00 3.74649 -112.139 -3.74649 3.74649 1.05 0.000881584 0.000805851 0.0671039 0.0616003 32 1726 22 6.65987e+06 190170 554710. 1919.41 1.17 0.170413 0.153165 22834 132086 -1 1519 18 897 1350 107597 25022 2.71465 2.71465 -102.628 -2.71465 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0325378 0.0292011 96 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30280 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 17.1 MiB 0.28 989 15430 4612 8155 2663 55.5 MiB 0.23 0.00 4.41154 -133.367 -4.41154 4.41154 1.06 0.00121486 0.00111236 0.0916949 0.0841148 32 2429 22 6.65987e+06 380340 554710. 1919.41 1.34 0.245027 0.220925 22834 132086 -1 2063 21 1487 2519 184259 42773 3.84791 3.84791 -129.508 -3.84791 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.049774 0.0447692 130 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30368 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 0.28 902 8685 2007 6399 279 55.4 MiB 0.17 0.00 4.76517 -143.598 -4.76517 4.76517 1.05 0.00128901 0.00118139 0.0647516 0.0594054 32 2497 24 6.65987e+06 253560 554710. 1919.41 1.32 0.234063 0.211 22834 132086 -1 2183 21 1883 2973 209659 50687 3.93397 3.93397 -140.255 -3.93397 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0479514 0.0431554 147 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30052 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 16.6 MiB 0.21 946 12143 3182 7420 1541 55.1 MiB 0.16 0.00 4.15372 -120.605 -4.15372 4.15372 1.05 0.000924123 0.000846782 0.0652232 0.0597621 26 2395 43 6.65987e+06 240882 477104. 1650.88 1.98 0.21512 0.19277 21682 110474 -1 2067 28 1364 1766 225074 80275 3.06105 3.06105 -114.874 -3.06105 0 0 585099. 2024.56 0.25 0.14 0.18 -1 -1 0.25 0.0491973 0.04391 111 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17372 1 0.02 -1 -1 30432 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 16.2 MiB 0.10 732 8685 2467 5468 750 54.9 MiB 0.12 0.00 3.75938 -108.757 -3.75938 3.75938 1.04 0.000883897 0.000811329 0.0444559 0.040799 30 1655 19 6.65987e+06 266238 526063. 1820.29 1.12 0.153513 0.137818 22546 126617 -1 1544 21 996 1668 101042 23801 2.51311 2.51311 -96.4545 -2.51311 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0370561 0.0331827 106 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17820 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 17.0 MiB 0.16 1015 15533 4784 8284 2465 55.7 MiB 0.24 0.00 4.92983 -152.714 -4.92983 4.92983 1.05 0.00117015 0.00107388 0.0952219 0.0874443 28 3244 30 6.65987e+06 316950 500653. 1732.36 1.65 0.26078 0.235342 21970 115934 -1 2307 22 1749 2275 179013 42202 4.61143 4.61143 -159.431 -4.61143 0 0 612192. 2118.31 0.22 0.12 0.09 -1 -1 0.22 0.0511154 0.046024 144 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 16.9 MiB 0.43 1191 12305 3278 8039 988 55.6 MiB 0.18 0.00 4.93544 -150.743 -4.93544 4.93544 1.05 0.0011791 0.00108196 0.0735022 0.0675021 26 3110 25 6.65987e+06 354984 477104. 1650.88 1.72 0.228829 0.206152 21682 110474 -1 2621 25 1874 2959 275210 79170 4.19577 4.19577 -144.583 -4.19577 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0575384 0.0517235 151 56 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30148 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1117 11004 2566 7834 604 55.7 MiB 0.18 0.00 5.28255 -141.369 -5.28255 5.28255 1.05 0.00121759 0.00111736 0.0612883 0.0561822 26 3370 49 6.65987e+06 456408 477104. 1650.88 3.37 0.273523 0.246158 21682 110474 -1 2670 20 1658 2923 254838 56451 4.40303 4.40303 -143.411 -4.40303 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0493737 0.0446243 153 3 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17492 1 0.03 -1 -1 30120 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 16.4 MiB 0.22 750 7863 1674 5072 1117 55.0 MiB 0.12 0.00 3.28175 -94.6726 -3.28175 3.28175 1.08 0.00104975 0.000962002 0.0425993 0.0390961 30 1756 22 6.65987e+06 393018 526063. 1820.29 1.16 0.176835 0.158604 22546 126617 -1 1506 19 933 1598 77376 19176 2.62125 2.62125 -90.575 -2.62125 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0406239 0.036543 120 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 16.2 MiB 0.06 638 11948 3525 6694 1729 54.8 MiB 0.14 0.00 3.4543 -94.1654 -3.4543 3.4543 1.07 0.000879723 0.00080703 0.0633986 0.0581403 28 1599 22 6.65987e+06 266238 500653. 1732.36 1.10 0.175073 0.157156 21970 115934 -1 1335 20 856 1254 87240 20842 2.77577 2.77577 -90.3712 -2.77577 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0351193 0.0314073 97 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.14 18080 1 0.03 -1 -1 30380 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 17.2 MiB 0.18 1319 10542 2869 6884 789 55.6 MiB 0.20 0.00 4.22384 -138.261 -4.22384 4.22384 1.05 0.00136838 0.0012562 0.0761428 0.0699311 28 3615 24 6.65987e+06 329628 500653. 1732.36 2.00 0.258701 0.233678 21970 115934 -1 3006 22 1865 2973 215904 49606 3.64757 3.64757 -137.164 -3.64757 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.060153 0.054332 170 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30320 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 16.7 MiB 0.85 967 9417 2580 6478 359 55.3 MiB 0.16 0.00 5.3126 -152.671 -5.3126 5.3126 1.05 0.001192 0.00109353 0.0646045 0.0592536 30 2413 22 6.65987e+06 266238 526063. 1820.29 1.27 0.216238 0.194725 22546 126617 -1 1915 21 1038 1600 92361 21367 4.28602 4.28602 -139.252 -4.28602 0 0 666494. 2306.21 0.26 0.09 0.20 -1 -1 0.26 0.049875 0.0449325 150 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30400 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 0.83 910 12186 3808 6300 2078 55.4 MiB 0.18 0.00 4.17204 -128.915 -4.17204 4.17204 1.10 0.00107649 0.000985979 0.0767294 0.0703338 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.23 0.215177 0.193834 22546 126617 -1 1758 18 928 1406 83079 19030 3.13577 3.13577 -122.213 -3.13577 0 0 666494. 2306.21 0.24 0.08 0.19 -1 -1 0.24 0.0398318 0.0358315 126 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30544 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.7 MiB 0.11 997 13726 4134 8495 1097 55.4 MiB 0.20 0.00 4.87399 -127.071 -4.87399 4.87399 1.04 0.00111283 0.00102149 0.0749362 0.0686981 30 2100 21 6.65987e+06 380340 526063. 1820.29 1.17 0.215701 0.194548 22546 126617 -1 1834 17 818 1333 78781 18665 3.24665 3.24665 -110.551 -3.24665 0 0 666494. 2306.21 0.26 0.08 0.10 -1 -1 0.26 0.0390705 0.035259 126 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.23 17640 1 0.03 -1 -1 30152 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 17.1 MiB 0.23 1094 9732 2284 6801 647 55.8 MiB 0.17 0.00 4.71929 -136.272 -4.71929 4.71929 1.05 0.00122956 0.001127 0.0581981 0.0534419 26 2676 39 6.65987e+06 418374 477104. 1650.88 2.04 0.25194 0.226688 21682 110474 -1 2326 19 1471 2455 178546 41726 3.76783 3.76783 -132.157 -3.76783 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.048082 0.0434591 144 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.11 17860 1 0.03 -1 -1 30348 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.6 MiB 0.16 968 12693 2914 8596 1183 55.3 MiB 0.20 0.00 3.66981 -110.801 -3.66981 3.66981 1.05 0.00108038 0.000990023 0.0680576 0.0623855 32 2261 19 6.65987e+06 393018 554710. 1919.41 1.21 0.20158 0.181593 22834 132086 -1 1967 20 1164 2022 141932 31880 2.86191 2.86191 -102.093 -2.86191 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0435896 0.0391978 124 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30256 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 16.9 MiB 0.18 1162 15493 5220 7522 2751 55.7 MiB 0.25 0.00 4.81692 -150.127 -4.81692 4.81692 1.05 0.00117812 0.00108104 0.0968441 0.0889042 32 3110 26 6.65987e+06 304272 554710. 1919.41 1.37 0.255317 0.23068 22834 132086 -1 2544 24 2121 3234 262327 57912 4.17571 4.17571 -147.371 -4.17571 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0568005 0.0512159 147 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30056 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1013 10448 2457 7443 548 55.3 MiB 0.18 0.00 4.61703 -140.056 -4.61703 4.61703 1.05 0.00126054 0.00115405 0.0621261 0.0569425 26 2952 23 6.65987e+06 431052 477104. 1650.88 2.01 0.225826 0.203453 21682 110474 -1 2326 22 1350 2117 162283 37175 3.41651 3.41651 -129.627 -3.41651 0 0 585099. 2024.56 0.21 0.12 0.17 -1 -1 0.21 0.0549543 0.0495571 143 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30228 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 16.3 MiB 0.13 669 12030 4965 6160 905 54.9 MiB 0.15 0.00 3.76255 -110.557 -3.76255 3.76255 1.06 0.000926174 0.000849081 0.0697826 0.0640153 32 1475 20 6.65987e+06 215526 554710. 1919.41 1.15 0.1865 0.167721 22834 132086 -1 1382 19 921 1285 116578 25787 2.80197 2.80197 -99.1743 -2.80197 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0355508 0.0318645 92 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.10 17816 1 0.04 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 16.4 MiB 0.24 897 13992 5018 7267 1707 54.9 MiB 0.19 0.00 3.93547 -124.701 -3.93547 3.93547 1.05 0.00102038 0.000934816 0.0808403 0.0740751 28 2149 19 6.65987e+06 253560 500653. 1732.36 1.14 0.205455 0.184886 21970 115934 -1 1871 22 1402 1872 148824 33300 3.11557 3.11557 -115.482 -3.11557 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0458012 0.0411053 116 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30524 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.9 MiB 0.11 945 14020 3581 8011 2428 55.5 MiB 0.19 0.00 4.66818 -124.475 -4.66818 4.66818 1.05 0.00110882 0.00101828 0.0704963 0.0647412 32 2224 21 6.65987e+06 469086 554710. 1919.41 1.24 0.210641 0.190009 22834 132086 -1 1970 23 1500 2561 184931 41768 3.57631 3.57631 -118.353 -3.57631 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0498502 0.0448108 129 33 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17644 1 0.03 -1 -1 30424 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 16.4 MiB 0.21 809 8448 1963 6049 436 55.0 MiB 0.12 0.00 4.16472 -111.492 -4.16472 4.16472 1.05 0.000900686 0.000826499 0.045333 0.0416021 26 2404 34 6.65987e+06 266238 477104. 1650.88 1.90 0.177996 0.15923 21682 110474 -1 1953 21 1368 1776 170413 41923 3.16857 3.16857 -106.139 -3.16857 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0378425 0.0338748 110 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.11 17372 1 0.03 -1 -1 30188 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 16.1 MiB 0.21 618 8852 1890 6315 647 54.8 MiB 0.12 0.00 3.69503 -110.464 -3.69503 3.69503 1.07 0.000964489 0.000885082 0.0523396 0.0480543 32 2025 24 6.65987e+06 202848 554710. 1919.41 1.30 0.178635 0.160205 22834 132086 -1 1568 21 1327 2272 160443 39596 2.88191 2.88191 -106.381 -2.88191 0 0 701300. 2426.64 0.22 0.05 0.11 -1 -1 0.22 0.0171851 0.0152335 109 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30104 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 17.1 MiB 0.27 938 16973 4485 9905 2583 55.6 MiB 0.24 0.00 4.16177 -122.328 -4.16177 4.16177 1.00 0.00121176 0.00111184 0.0953566 0.0874202 32 2086 22 6.65987e+06 443730 554710. 1919.41 1.27 0.251205 0.226762 22834 132086 -1 1855 19 1333 2075 132666 31802 2.96496 2.96496 -111.053 -2.96496 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0444795 0.0400806 135 64 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30356 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 16.4 MiB 0.18 818 9872 2327 5876 1669 55.0 MiB 0.13 0.00 3.9535 -119.787 -3.9535 3.9535 1.09 0.000913279 0.000837063 0.0535125 0.0490594 28 2135 19 6.65987e+06 240882 500653. 1732.36 1.21 0.165281 0.148271 21970 115934 -1 1848 18 1008 1481 115769 26162 3.05777 3.05777 -111.219 -3.05777 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.033752 0.030249 108 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30056 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 854 7007 1324 4687 996 55.5 MiB 0.10 0.00 3.67932 -112.828 -3.67932 3.67932 0.87 0.00100802 0.000926265 0.0369279 0.0340435 26 2878 47 6.65987e+06 393018 477104. 1650.88 3.28 0.23182 0.207775 21682 110474 -1 2129 16 1129 1978 190866 57352 3.04511 3.04511 -112.46 -3.04511 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0385043 0.0347296 126 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.8 MiB 0.78 956 13055 3385 8531 1139 55.4 MiB 0.20 0.00 4.2257 -136.613 -4.2257 4.2257 1.09 0.00125111 0.00114559 0.0793802 0.0726597 32 2142 21 6.65987e+06 405696 554710. 1919.41 1.25 0.240177 0.21652 22834 132086 -1 1950 20 1403 1904 129517 30385 3.45123 3.45123 -132.174 -3.45123 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0500155 0.0451139 138 91 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30396 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 16.6 MiB 0.24 770 8481 2112 5900 469 55.1 MiB 0.13 0.00 3.26384 -102.093 -3.26384 3.26384 1.05 0.00102258 0.000937293 0.0511852 0.0469032 30 1814 29 6.65987e+06 215526 526063. 1820.29 1.18 0.189378 0.169691 22546 126617 -1 1464 17 761 1208 72569 16667 2.62051 2.62051 -96.4977 -2.62051 0 0 666494. 2306.21 0.26 0.07 0.20 -1 -1 0.26 0.0352204 0.031629 104 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17244 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 16.4 MiB 0.16 877 7823 1725 5526 572 55.0 MiB 0.12 0.00 4.21052 -129.412 -4.21052 4.21052 1.05 0.000986983 0.000905837 0.0459717 0.0422042 28 2168 19 6.65987e+06 240882 500653. 1732.36 1.19 0.168389 0.151176 21970 115934 -1 2030 21 1304 1913 146005 33733 3.07585 3.07585 -118.205 -3.07585 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.041271 0.0370076 115 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1033 8591 2028 5962 601 55.3 MiB 0.14 0.00 4.5425 -136.752 -4.5425 4.5425 1.05 0.00109827 0.00100953 0.0530246 0.0487525 26 2706 26 6.65987e+06 278916 477104. 1650.88 1.68 0.200414 0.18051 21682 110474 -1 2297 18 1566 2196 158849 37891 3.71871 3.71871 -131.764 -3.71871 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0400929 0.0361518 130 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 16.5 MiB 0.38 878 11177 3323 6945 909 55.1 MiB 0.17 0.00 4.7062 -118.142 -4.7062 4.7062 1.05 0.00107008 0.000981195 0.0632494 0.0579691 30 1916 16 6.65987e+06 354984 526063. 1820.29 1.10 0.18935 0.170446 22546 126617 -1 1653 15 665 1217 61911 15512 3.29783 3.29783 -104.746 -3.29783 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0342973 0.030983 121 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1007 9495 2407 6691 397 55.5 MiB 0.17 0.00 5.16517 -161.462 -5.16517 5.16517 1.05 0.00127316 0.00116772 0.0666982 0.0612133 32 2658 22 6.65987e+06 291594 554710. 1919.41 1.30 0.230697 0.20807 22834 132086 -1 2234 22 1802 2507 169937 41350 3.82117 3.82117 -143.64 -3.82117 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0555751 0.0501038 153 65 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17048 1 0.02 -1 -1 30364 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 16.1 MiB 0.10 794 9181 2203 6150 828 54.7 MiB 0.11 0.00 3.53041 -99.5418 -3.53041 3.53041 1.05 0.000832469 0.000763321 0.0459819 0.0422253 32 1764 19 6.65987e+06 228204 554710. 1919.41 1.11 0.148318 0.132824 22834 132086 -1 1564 17 692 1110 76497 18243 2.71371 2.71371 -96.112 -2.71371 0 0 701300. 2426.64 0.25 0.06 0.21 -1 -1 0.25 0.0295478 0.0264512 96 4 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17688 1 0.03 -1 -1 30216 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 16.7 MiB 0.41 947 7201 1402 5250 549 55.4 MiB 0.13 0.00 4.0805 -134.669 -4.0805 4.0805 1.06 0.00130409 0.00119541 0.0457593 0.0419384 32 2497 24 6.65987e+06 418374 554710. 1919.41 1.28 0.216763 0.194792 22834 132086 -1 2184 22 1638 2272 171887 40530 3.68557 3.68557 -133.353 -3.68557 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0567484 0.0511259 144 90 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30232 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 692 9368 2494 5834 1040 55.1 MiB 0.16 0.00 3.5233 -119.857 -3.5233 3.5233 1.05 0.00117706 0.00107817 0.0684397 0.0627281 32 1730 23 6.65987e+06 202848 554710. 1919.41 1.23 0.221303 0.19912 22834 132086 -1 1559 23 1459 2083 162526 37135 2.97497 2.97497 -117.069 -2.97497 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0529305 0.0474973 115 96 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30436 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 16.7 MiB 0.33 963 9383 2362 6118 903 55.4 MiB 0.15 0.00 4.19332 -127.565 -4.19332 4.19332 1.05 0.00117975 0.00108152 0.0545297 0.0499605 32 2293 25 6.65987e+06 393018 554710. 1919.41 1.23 0.210843 0.189536 22834 132086 -1 1851 21 1044 1529 88698 22539 3.09931 3.09931 -109.457 -3.09931 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0489701 0.044041 130 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30412 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 17.3 MiB 0.34 1323 16127 4193 10390 1544 55.5 MiB 0.32 0.01 6.49946 -194.782 -6.49946 6.49946 1.05 0.00132737 0.00121862 0.111986 0.10287 28 3840 36 6.65987e+06 316950 500653. 1732.36 2.86 0.308673 0.279019 21970 115934 -1 2990 21 1959 2728 227624 50018 5.35994 5.35994 -179.572 -5.35994 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0558125 0.0504727 168 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17520 1 0.02 -1 -1 30192 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 16.1 MiB 0.18 701 10895 2966 6376 1553 54.6 MiB 0.12 0.00 3.19181 -99.2246 -3.19181 3.19181 1.07 0.000772018 0.000707091 0.0520017 0.0476305 32 1552 19 6.65987e+06 215526 554710. 1919.41 1.10 0.146382 0.131038 22834 132086 -1 1399 21 714 923 72542 17195 2.17571 2.17571 -87.784 -2.17571 0 0 701300. 2426.64 0.25 0.07 0.21 -1 -1 0.25 0.032002 0.0285075 86 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30440 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 16.4 MiB 0.11 559 11200 4645 5368 1187 55.1 MiB 0.07 0.00 4.03052 -111.683 -4.03052 4.03052 1.07 0.00035939 0.000323712 0.0260404 0.0235335 32 1719 26 6.65987e+06 202848 554710. 1919.41 1.29 0.156251 0.139271 22834 132086 -1 1381 33 1516 2373 220958 51242 2.94085 2.94085 -104.913 -2.94085 0 0 701300. 2426.64 0.27 0.14 0.24 -1 -1 0.27 0.0596752 0.0532672 92 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 29940 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.3 MiB 0.07 882 13663 3967 7775 1921 54.9 MiB 0.21 0.00 3.38183 -111.047 -3.38183 3.38183 1.05 0.00101278 0.000928693 0.0779101 0.0714084 32 2232 25 6.65987e+06 266238 554710. 1919.41 1.26 0.211524 0.190288 22834 132086 -1 1983 21 1389 2472 214229 47394 2.78771 2.78771 -108.095 -2.78771 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0419986 0.0376481 115 34 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17640 1 0.02 -1 -1 30220 -1 -1 27 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 16.1 MiB 0.09 461 9234 2985 4025 2224 54.7 MiB 0.09 0.00 3.09981 -73.1644 -3.09981 3.09981 1.04 0.00075448 0.000690581 0.04016 0.0367823 38 1143 33 6.65987e+06 342306 638502. 2209.35 2.02 0.206987 0.183921 23986 155662 -1 888 17 513 851 43957 11516 2.24185 2.24185 -63.6531 -2.24185 0 0 851065. 2944.86 0.29 0.05 0.25 -1 -1 0.29 0.0264034 0.0236581 89 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.11 17764 1 0.03 -1 -1 30464 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 16.9 MiB 0.20 1082 15273 5386 7964 1923 55.3 MiB 0.26 0.00 3.97418 -128.905 -3.97418 3.97418 1.04 0.00121687 0.00111516 0.104793 0.0960702 32 2803 23 6.65987e+06 253560 554710. 1919.41 1.32 0.262042 0.236549 22834 132086 -1 2459 23 1634 2959 236870 51536 3.44305 3.44305 -126.805 -3.44305 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547871 0.0492815 135 72 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17780 1 0.04 -1 -1 30232 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 16.9 MiB 0.36 841 9951 2183 7152 616 55.6 MiB 0.17 0.00 4.37472 -138.365 -4.37472 4.37472 1.05 0.00127207 0.00116333 0.062549 0.0573545 32 2335 20 6.65987e+06 418374 554710. 1919.41 1.26 0.223623 0.201422 22834 132086 -1 1838 17 1307 1888 108740 27817 3.30177 3.30177 -122.786 -3.30177 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.046313 0.0418643 142 90 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17864 1 0.03 -1 -1 30104 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 2.26 849 12139 5116 6732 291 56.1 MiB 0.18 0.00 5.4594 -159.287 -5.4594 5.4594 1.09 0.00116932 0.00107148 0.0910881 0.0835873 44 2778 24 6.95648e+06 188184 787024. 2723.27 3.86 0.343268 0.308429 27778 195446 -1 2100 22 1620 2390 205020 42905 4.50786 4.50786 -152.69 -4.50786 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0516291 0.0465294 81 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30372 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 17.5 MiB 2.09 750 10998 3991 5243 1764 56.1 MiB 0.16 0.00 4.63092 -138.355 -4.63092 4.63092 1.09 0.0011814 0.00108373 0.0836536 0.0768302 40 2398 38 6.95648e+06 217135 706193. 2443.58 3.20 0.365452 0.327996 26914 176310 -1 2062 23 1948 2706 287194 61968 4.57081 4.57081 -154.872 -4.57081 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.0536433 0.0483048 80 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 17.6 MiB 1.10 1011 6839 1853 4585 401 56.1 MiB 0.10 0.00 3.76508 -124.296 -3.76508 3.76508 1.08 0.00103494 0.000950475 0.044537 0.0408957 38 2570 30 6.95648e+06 217135 678818. 2348.85 4.01 0.274675 0.245268 26626 170182 -1 2196 20 1226 1684 137441 28682 3.69172 3.69172 -129.324 -3.69172 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0414272 0.0372466 76 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.22 17504 1 0.03 -1 -1 30448 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 17.4 MiB 0.29 653 13152 5791 6666 695 55.9 MiB 0.16 0.00 4.18338 -115.281 -4.18338 4.18338 1.05 0.00104478 0.000958639 0.0831858 0.0763004 46 2265 28 6.95648e+06 275038 828058. 2865.25 3.61 0.317931 0.285513 28066 200906 -1 1624 19 1137 1874 144677 33493 3.65242 3.65242 -117.329 -3.65242 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0405877 0.0365429 71 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30244 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 17.4 MiB 0.76 735 12120 5042 6627 451 55.9 MiB 0.16 0.00 4.33299 -127.984 -4.33299 4.33299 1.06 0.00113571 0.00104187 0.0835615 0.0767002 46 2384 49 6.95648e+06 231611 828058. 2865.25 5.20 0.377312 0.338374 28066 200906 -1 1865 19 1283 2160 165504 35743 4.11991 4.11991 -134.678 -4.11991 0 0 1.01997e+06 3529.29 0.34 0.10 0.32 -1 -1 0.34 0.044247 0.039899 73 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 17.6 MiB 1.09 762 14779 6278 7942 559 56.2 MiB 0.18 0.00 3.0584 -114.242 -3.0584 3.0584 1.09 0.00120302 0.00110016 0.0990458 0.0907117 46 2130 23 6.95648e+06 303989 828058. 2865.25 3.77 0.356975 0.320647 28066 200906 -1 1614 21 1350 1975 141226 31692 3.17337 3.17337 -118.004 -3.17337 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0502151 0.0452231 79 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17312 1 0.03 -1 -1 30756 -1 -1 13 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 16.8 MiB 4.02 400 8118 3296 4253 569 55.3 MiB 0.09 0.00 3.56899 -93.1575 -3.56899 3.56899 1.08 0.000892481 0.00081411 0.0507409 0.0465485 40 1513 27 6.95648e+06 188184 706193. 2443.58 2.48 0.245375 0.218863 26914 176310 -1 1345 20 1051 1528 151147 38012 3.12397 3.12397 -102.326 -3.12397 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0357302 0.032004 52 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17036 1 0.03 -1 -1 30012 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 17.1 MiB 0.37 691 11983 4028 5840 2115 55.8 MiB 0.14 0.00 3.0166 -94.5957 -3.0166 3.0166 1.08 0.000971565 0.000891355 0.0623128 0.0571974 38 2198 34 6.95648e+06 361892 678818. 2348.85 3.58 0.288074 0.257627 26626 170182 -1 1562 21 1128 1795 124372 27855 2.92072 2.92072 -102.496 -2.92072 0 0 902133. 3121.57 0.26 0.05 0.14 -1 -1 0.26 0.0175381 0.0156019 69 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 17.4 MiB 1.89 579 9684 3905 5251 528 56.1 MiB 0.12 0.00 3.39469 -115.112 -3.39469 3.39469 1.09 0.0010306 0.000943595 0.0674986 0.0618481 48 1811 26 6.95648e+06 159232 865456. 2994.66 2.82 0.291103 0.260273 28354 207349 -1 1465 22 1268 1776 142283 33598 3.24576 3.24576 -115.708 -3.24576 0 0 1.05005e+06 3633.38 0.38 0.10 0.34 -1 -1 0.38 0.0438043 0.0392135 66 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 17.2 MiB 1.34 566 8134 3343 4546 245 55.9 MiB 0.10 0.00 3.30928 -114.291 -3.30928 3.30928 1.08 0.00101303 0.000927961 0.0457614 0.0418921 42 1921 24 6.95648e+06 144757 744469. 2576.02 2.31 0.263335 0.234768 27202 183097 -1 1447 19 1086 1482 106699 25377 2.97372 2.97372 -113.7 -2.97372 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0391705 0.0352196 59 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.20 17608 1 0.03 -1 -1 30336 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 17.0 MiB 1.78 471 10304 4280 5549 475 55.8 MiB 0.06 0.00 3.43453 -102.366 -3.43453 3.43453 0.74 0.000368937 0.000332362 0.0265587 0.0240257 44 1644 41 6.95648e+06 173708 787024. 2723.27 1.45 0.118392 0.103246 27778 195446 -1 1210 19 1006 1391 107894 26111 2.87247 2.87247 -102.182 -2.87247 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0380115 0.0340867 55 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17656 1 0.03 -1 -1 30088 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 1.47 590 10614 3394 4881 2339 55.8 MiB 0.13 0.00 3.37833 -114.652 -3.37833 3.37833 1.08 0.000943388 0.000864378 0.0672547 0.0616811 48 2065 26 6.95648e+06 144757 865456. 2994.66 4.24 0.275949 0.246684 28354 207349 -1 1594 22 1339 1737 177767 43429 2.98202 2.98202 -113.691 -2.98202 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0410297 0.0367433 62 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 17.4 MiB 1.96 833 13261 5618 7295 348 56.0 MiB 0.18 0.00 3.96008 -134.144 -3.96008 3.96008 1.08 0.00116825 0.00106875 0.0943122 0.0865228 46 2758 33 6.95648e+06 217135 828058. 2865.25 4.44 0.361402 0.324845 28066 200906 -1 2047 22 1722 2490 195693 41961 3.39476 3.39476 -130.85 -3.39476 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0509226 0.0458872 83 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30452 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 17.5 MiB 0.95 789 9158 3216 4675 1267 56.1 MiB 0.12 0.00 4.48063 -134.265 -4.48063 4.48063 1.12 0.00118221 0.00108311 0.0610072 0.0559749 46 2203 26 6.95648e+06 318465 828058. 2865.25 2.95 0.319889 0.286841 28066 200906 -1 1694 24 1812 2595 197759 43223 4.00836 4.00836 -134.618 -4.00836 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0542423 0.0487392 75 61 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30356 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 16.9 MiB 1.25 470 8444 3456 4562 426 55.4 MiB 0.10 0.00 3.10275 -88.0296 -3.10275 3.10275 1.09 0.00086344 0.000791236 0.0488958 0.0448433 40 2005 31 6.95648e+06 188184 706193. 2443.58 2.98 0.244079 0.217414 26914 176310 -1 1534 23 1125 1652 175061 53068 3.19337 3.19337 -104.765 -3.19337 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0390871 0.0349384 55 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 17.3 MiB 1.15 736 13381 4767 6091 2523 55.9 MiB 0.20 0.00 3.0625 -113.087 -3.0625 3.0625 1.10 0.00120312 0.00110319 0.106985 0.0980831 46 2125 28 6.95648e+06 246087 828058. 2865.25 3.09 0.373467 0.335732 28066 200906 -1 1730 22 1527 2399 181497 42649 3.74967 3.74967 -124.464 -3.74967 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528002 0.0475052 76 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17680 1 0.03 -1 -1 30092 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 2.07 821 11698 3981 5913 1804 56.0 MiB 0.17 0.00 4.42651 -139.682 -4.42651 4.42651 1.10 0.00114181 0.00104701 0.0835269 0.0766976 38 2675 39 6.95648e+06 202660 678818. 2348.85 4.14 0.357818 0.321085 26626 170182 -1 1811 21 1515 2020 132332 30505 3.72352 3.72352 -135.958 -3.72352 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0481899 0.0434561 79 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30292 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 17.0 MiB 0.99 568 11625 5013 6229 383 55.7 MiB 0.15 0.00 2.28966 -90.0891 -2.28966 2.28966 1.08 0.00105339 0.000963685 0.0833848 0.076291 46 1756 36 6.95648e+06 130281 828058. 2865.25 4.13 0.329961 0.295101 28066 200906 -1 1389 19 1155 1674 145929 33652 2.63568 2.63568 -100.632 -2.63568 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0405761 0.0364506 57 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30156 -1 -1 9 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 16.6 MiB 0.34 438 9707 4039 5351 317 55.2 MiB 0.10 0.00 2.22846 -79.3536 -2.22846 2.22846 1.09 0.00076745 0.000701861 0.0531963 0.0486875 38 1481 49 6.95648e+06 130281 678818. 2348.85 2.27 0.247219 0.219389 26626 170182 -1 1061 20 614 712 71220 16884 2.33013 2.33013 -81.3837 -2.33013 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0306093 0.0273126 43 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30400 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 17.5 MiB 2.10 900 8449 3439 4770 240 56.0 MiB 0.11 0.00 4.11557 -135.517 -4.11557 4.11557 1.09 0.000991298 0.000908224 0.0558545 0.0512724 40 2181 21 6.95648e+06 173708 706193. 2443.58 2.85 0.263428 0.235592 26914 176310 -1 1992 22 1613 2157 226592 45321 3.91426 3.91426 -139.471 -3.91426 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0433029 0.0388449 69 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30392 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 17.3 MiB 0.57 691 13626 5075 6512 2039 56.0 MiB 0.17 0.00 3.69419 -120.83 -3.69419 3.69419 1.08 0.00115253 0.00105742 0.0891479 0.0817599 44 2266 33 6.95648e+06 289514 787024. 2723.27 4.10 0.352644 0.316606 27778 195446 -1 1704 27 1869 2560 192832 46024 3.96461 3.96461 -128.435 -3.96461 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.059839 0.0538149 75 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 17.5 MiB 1.55 803 10868 4396 5912 560 56.2 MiB 0.16 0.00 4.7576 -138.082 -4.7576 4.7576 1.12 0.00121413 0.00111307 0.0824378 0.075606 48 2894 42 6.95648e+06 202660 865456. 2994.66 4.56 0.375842 0.336988 28354 207349 -1 2151 23 1823 2679 262855 61699 4.41832 4.41832 -141.927 -4.41832 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.0548738 0.0493939 82 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17404 1 0.02 -1 -1 30708 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 16.5 MiB 0.88 416 8539 3544 4471 524 55.1 MiB 0.08 0.00 2.23646 -66.7931 -2.23646 2.23646 1.10 0.0006573 0.000600728 0.0403815 0.0369205 34 1152 47 6.95648e+06 188184 618332. 2139.56 1.86 0.204267 0.180941 25762 151098 -1 988 17 605 766 68818 15227 2.23768 2.23768 -73.5335 -2.23768 0 0 787024. 2723.27 0.26 0.05 0.24 -1 -1 0.26 0.0232369 0.0207166 44 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17268 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 0.70 670 9543 3600 4533 1410 55.6 MiB 0.12 0.00 4.68425 -117.235 -4.68425 4.68425 1.08 0.00101399 0.000930278 0.0601344 0.0552468 44 2456 40 6.95648e+06 217135 787024. 2723.27 4.27 0.308805 0.276588 27778 195446 -1 1660 19 1265 2070 156131 39900 3.85601 3.85601 -120.654 -3.85601 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0393349 0.035427 66 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 16852 1 0.02 -1 -1 30056 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.8 MiB 0.28 360 10055 3887 4514 1654 55.3 MiB 0.09 0.00 2.15326 -68.8392 -2.15326 2.15326 1.08 0.000633839 0.000577821 0.0446908 0.0408002 38 1061 21 6.95648e+06 115805 678818. 2348.85 2.28 0.18189 0.161362 26626 170182 -1 856 18 639 743 50732 13412 2.21378 2.21378 -75.1525 -2.21378 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0237036 0.0211199 42 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30252 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 17.5 MiB 0.91 746 14106 6043 7637 426 55.9 MiB 0.17 0.00 4.49111 -123.956 -4.49111 4.49111 1.08 0.00103405 0.000941945 0.0893404 0.0819668 38 2858 40 6.95648e+06 217135 678818. 2348.85 9.12 0.349035 0.312976 26626 170182 -1 1958 20 1322 2077 204584 45406 3.88096 3.88096 -125.216 -3.88096 0 0 902133. 3121.57 0.29 0.11 0.24 -1 -1 0.29 0.0421322 0.0379813 68 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.3 MiB 0.50 675 10873 4420 6034 419 55.9 MiB 0.13 0.00 2.9573 -100.116 -2.9573 2.9573 1.09 0.00105781 0.000970977 0.0648998 0.059598 46 2093 50 6.95648e+06 303989 828058. 2865.25 3.25 0.335932 0.301032 28066 200906 -1 1505 24 1382 2103 153787 35418 3.03882 3.03882 -108.679 -3.03882 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.049347 0.0443789 74 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.11 17584 1 0.03 -1 -1 30276 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 17.2 MiB 0.83 795 15383 6700 8206 477 55.9 MiB 0.20 0.00 4.43549 -130.994 -4.43549 4.43549 1.08 0.00111658 0.00102316 0.0987414 0.0905275 48 2092 29 6.95648e+06 275038 865456. 2994.66 3.48 0.347935 0.312381 28354 207349 -1 1795 22 1236 2056 165591 37261 3.80591 3.80591 -130.105 -3.80591 0 0 1.05005e+06 3633.38 0.34 0.11 0.34 -1 -1 0.34 0.0486523 0.0437182 72 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17240 1 0.02 -1 -1 30096 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 0.86 836 12164 3915 6903 1346 55.8 MiB 0.15 0.00 3.08875 -104.395 -3.08875 3.08875 1.08 0.000967189 0.000886982 0.0787462 0.0722095 38 2054 21 6.95648e+06 144757 678818. 2348.85 2.34 0.28096 0.251642 26626 170182 -1 1837 18 886 1354 126118 25389 3.02302 3.02302 -114.587 -3.02302 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0362819 0.0326065 55 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30520 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 17.0 MiB 0.27 486 10916 4488 5855 573 55.6 MiB 0.12 0.00 3.37953 -96.5612 -3.37953 3.37953 1.04 0.00137839 0.00125994 0.0612963 0.0560993 42 1738 31 6.95648e+06 260562 744469. 2576.02 2.37 0.263418 0.234832 27202 183097 -1 1225 18 886 1222 106438 28327 2.85672 2.85672 -97.7201 -2.85672 0 0 949917. 3286.91 0.31 0.08 0.30 -1 -1 0.31 0.0331286 0.0296657 57 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17532 1 0.03 -1 -1 30068 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 17.1 MiB 0.47 447 10796 4457 5651 688 55.6 MiB 0.12 0.00 2.9532 -88.5671 -2.9532 2.9532 1.08 0.000892543 0.00081869 0.0633416 0.0581026 44 1895 36 6.95648e+06 231611 787024. 2723.27 3.32 0.273533 0.243919 27778 195446 -1 1197 20 998 1532 108720 27757 2.78922 2.78922 -94.3932 -2.78922 0 0 997811. 3452.63 0.33 0.08 0.32 -1 -1 0.33 0.0358295 0.0320273 57 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17084 1 0.03 -1 -1 30340 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.42 490 8754 2672 4372 1710 55.7 MiB 0.10 0.00 3.37459 -106.603 -3.37459 3.37459 1.18 0.000909063 0.000833744 0.0545043 0.0500757 46 1609 38 6.95648e+06 144757 828058. 2865.25 4.17 0.277045 0.246879 28066 200906 -1 1166 19 1064 1493 99508 25826 3.01962 3.01962 -108.184 -3.01962 0 0 1.01997e+06 3529.29 0.33 0.08 0.33 -1 -1 0.33 0.0361631 0.0324893 58 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17548 1 0.03 -1 -1 30184 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 16.8 MiB 0.39 514 10050 3328 4861 1861 55.6 MiB 0.11 0.00 3.16614 -99.0057 -3.16614 3.16614 1.10 0.000945871 0.000866324 0.0519128 0.0472929 44 1932 39 6.95648e+06 275038 787024. 2723.27 3.91 0.276134 0.245959 27778 195446 -1 1339 24 1230 1923 229518 85397 2.94462 2.94462 -105.107 -2.94462 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0434725 0.0388738 61 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30416 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 17.2 MiB 1.29 761 12537 5784 6209 544 55.9 MiB 0.15 0.00 2.98425 -104.866 -2.98425 2.98425 1.10 0.000963475 0.000883062 0.0825643 0.075655 40 1951 35 6.95648e+06 173708 706193. 2443.58 4.39 0.313684 0.280554 26914 176310 -1 1632 19 1072 1486 183744 40499 2.73002 2.73002 -103.333 -2.73002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.037253 0.0333799 61 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.17 17624 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 17.4 MiB 0.93 827 14593 4666 7411 2516 56.1 MiB 0.18 0.00 4.22723 -122.469 -4.22723 4.22723 1.11 0.000827248 0.000745406 0.0676918 0.0611651 40 2898 29 6.95648e+06 303989 706193. 2443.58 4.41 0.346046 0.309904 26914 176310 -1 2212 23 1637 2779 247978 54617 4.10856 4.10856 -135.648 -4.10856 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0561488 0.0506201 84 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30292 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 17.4 MiB 1.26 745 13738 4997 6870 1871 56.1 MiB 0.19 0.00 3.2962 -117.206 -3.2962 3.2962 1.08 0.00127022 0.00116298 0.0932746 0.0853882 40 2441 27 6.95648e+06 347416 706193. 2443.58 3.58 0.373388 0.335423 26914 176310 -1 2016 22 1949 2778 252661 56579 3.50372 3.50372 -130.751 -3.50372 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0555294 0.0500717 82 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.13 17804 1 0.03 -1 -1 30192 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 17.2 MiB 1.84 860 8754 2885 4850 1019 55.9 MiB 0.11 0.00 4.04047 -132.719 -4.04047 4.04047 1.08 0.000958555 0.000879188 0.0568855 0.0522283 40 2120 31 6.95648e+06 159232 706193. 2443.58 2.86 0.272045 0.242826 26914 176310 -1 2014 22 1310 1843 197131 38779 3.56322 3.56322 -132.421 -3.56322 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0415946 0.0372517 63 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30336 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 17.4 MiB 0.92 747 9036 3143 4486 1407 56.0 MiB 0.13 0.00 3.76434 -122.812 -3.76434 3.76434 1.09 0.00120549 0.00110604 0.0678385 0.0623149 38 2983 41 6.95648e+06 231611 678818. 2348.85 4.82 0.363318 0.325771 26626 170182 -1 1920 21 1589 2334 190137 42056 3.83572 3.83572 -127.733 -3.83572 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0507194 0.0456912 76 61 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.20 17612 1 0.04 -1 -1 30316 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 17.7 MiB 2.18 943 12585 5266 6878 441 56.5 MiB 0.19 0.00 5.54066 -172.627 -5.54066 5.54066 1.11 0.00122755 0.00112555 0.094965 0.0871196 56 2573 26 6.95648e+06 231611 973134. 3367.25 3.28 0.363375 0.326558 29794 239141 -1 2149 23 2164 3113 326462 68110 5.0776 5.0776 -172.61 -5.0776 0 0 1.19926e+06 4149.71 0.38 0.16 0.41 -1 -1 0.38 0.055945 0.050434 97 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30496 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 17.3 MiB 2.87 938 15120 6700 8021 399 56.0 MiB 0.21 0.00 4.47954 -148.558 -4.47954 4.47954 1.09 0.00124224 0.00113911 0.114689 0.105192 40 2977 25 6.95648e+06 231611 706193. 2443.58 2.78 0.387038 0.348246 26914 176310 -1 2471 20 1757 2550 249964 52119 4.78676 4.78676 -162.397 -4.78676 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0506783 0.0457227 88 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 17.4 MiB 1.49 806 12733 4192 6306 2235 56.0 MiB 0.17 0.00 4.14583 -131.471 -4.14583 4.14583 1.09 0.00110207 0.00100238 0.082566 0.0757593 44 2580 41 6.95648e+06 318465 787024. 2723.27 3.49 0.379121 0.340043 27778 195446 -1 1877 20 1310 1980 158921 34446 3.55827 3.55827 -129.134 -3.55827 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466037 0.0419765 78 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 30332 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 17.2 MiB 1.29 717 8212 2161 5077 974 55.7 MiB 0.12 0.00 4.19005 -113.386 -4.19005 4.19005 1.15 0.00100602 0.000922052 0.0525022 0.0481896 46 1942 38 6.95648e+06 202660 828058. 2865.25 3.93 0.297277 0.265647 28066 200906 -1 1539 18 1104 1571 122247 26899 4.11171 4.11171 -112.642 -4.11171 0 0 1.01997e+06 3529.29 0.33 0.09 0.32 -1 -1 0.33 0.0373457 0.0336328 71 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18080 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58096 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 17.9 MiB 1.90 969 15017 6294 8197 526 56.7 MiB 0.23 0.00 4.79262 -158.033 -4.79262 4.79262 1.08 0.00147546 0.00135552 0.121182 0.111296 44 3004 31 6.95648e+06 318465 787024. 2723.27 4.11 0.455026 0.409479 27778 195446 -1 2405 22 1887 2737 214564 46299 4.79321 4.79321 -170.997 -4.79321 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0641283 0.057692 93 87 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30268 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 17.2 MiB 0.78 451 10702 3732 4796 2174 55.7 MiB 0.11 0.00 3.25706 -97.1743 -3.25706 3.25706 1.08 0.000900359 0.000825125 0.0606174 0.0555534 42 1868 35 6.95648e+06 217135 744469. 2576.02 2.37 0.271682 0.242412 27202 183097 -1 1192 34 1368 1970 146199 37137 3.39987 3.39987 -104.41 -3.39987 0 0 949917. 3286.91 0.31 0.12 0.29 -1 -1 0.31 0.0563231 0.0501294 56 28 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30236 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 1.32 1043 13358 5192 6540 1626 56.0 MiB 0.19 0.00 4.83562 -153.036 -4.83562 4.83562 1.08 0.0011437 0.0010497 0.0950767 0.0873513 40 2908 41 6.95648e+06 217135 706193. 2443.58 4.50 0.373495 0.335583 26914 176310 -1 2542 19 1727 2534 265189 51613 4.58201 4.58201 -157.296 -4.58201 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0443269 0.0400028 84 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30220 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 17.5 MiB 1.03 832 15481 6850 8276 355 56.1 MiB 0.20 0.00 3.22585 -113.908 -3.22585 3.22585 1.09 0.00114903 0.00105319 0.105186 0.0964149 40 2681 28 6.95648e+06 246087 706193. 2443.58 3.95 0.361547 0.324808 26914 176310 -1 2155 23 1599 2614 231061 49102 3.24022 3.24022 -125.665 -3.24022 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0519951 0.0467392 73 53 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17288 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.4 MiB 0.89 692 9712 3251 4487 1974 56.0 MiB 0.12 0.00 4.55274 -121.613 -4.55274 4.55274 1.11 0.00103154 0.000946725 0.0612899 0.0562951 44 2409 26 6.95648e+06 231611 787024. 2723.27 3.55 0.289153 0.259386 27778 195446 -1 1628 24 1132 1964 152907 34365 4.40427 4.40427 -132.423 -4.40427 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0487288 0.0438197 68 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 17.4 MiB 2.83 796 11532 3820 5366 2346 56.0 MiB 0.16 0.00 4.43423 -134.57 -4.43423 4.43423 1.11 0.00117036 0.00107391 0.0846868 0.0777873 40 2553 40 6.95648e+06 202660 706193. 2443.58 3.47 0.365517 0.327965 26914 176310 -1 2106 22 1511 2049 167648 37819 3.63736 3.63736 -132.097 -3.63736 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.050734 0.0456611 78 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 17.6 MiB 1.84 763 10406 4042 5595 769 56.2 MiB 0.15 0.00 3.235 -115.411 -3.235 3.235 1.10 0.00118377 0.00108507 0.0740253 0.0679148 38 2855 46 6.95648e+06 246087 678818. 2348.85 6.36 0.381098 0.341681 26626 170182 -1 2142 20 1537 2371 191337 42253 3.59617 3.59617 -130.946 -3.59617 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0478725 0.0431174 75 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30244 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 17.6 MiB 1.10 832 13758 4740 6643 2375 56.3 MiB 0.19 0.00 4.17869 -135.166 -4.17869 4.17869 1.09 0.000457344 0.000412858 0.0747404 0.0679011 46 2399 24 6.95648e+06 376368 828058. 2865.25 3.44 0.347153 0.311192 28066 200906 -1 1874 24 1346 1983 166800 36204 3.73146 3.73146 -135.163 -3.73146 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0582536 0.0524604 83 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30228 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 17.3 MiB 0.97 704 11804 4117 5540 2147 55.8 MiB 0.13 0.00 4.32723 -118.436 -4.32723 4.32723 1.09 0.00105304 0.000965034 0.0686656 0.0630036 42 2228 31 6.95648e+06 318465 744469. 2576.02 2.89 0.313691 0.281181 27202 183097 -1 1785 19 1216 1934 174304 44453 3.88152 3.88152 -124.857 -3.88152 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0408157 0.0367317 69 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 17.5 MiB 2.28 822 10020 3444 5308 1268 56.1 MiB 0.14 0.00 4.15778 -128.101 -4.15778 4.15778 1.09 0.00109783 0.00100682 0.0703296 0.0645567 40 2642 40 6.95648e+06 188184 706193. 2443.58 3.87 0.34213 0.306552 26914 176310 -1 2078 24 1882 2531 224754 51701 4.42162 4.42162 -143.712 -4.42162 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0516114 0.0464457 79 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.20 17856 1 0.04 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 1.51 847 12030 5014 6584 432 56.2 MiB 0.18 0.00 4.57287 -144.308 -4.57287 4.57287 1.08 0.00121522 0.00111432 0.0919047 0.0841014 46 3239 34 6.95648e+06 217135 828058. 2865.25 6.09 0.37479 0.336328 28066 200906 -1 2319 21 1807 2822 246652 51934 4.03581 4.03581 -139.978 -4.03581 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0513365 0.0463201 85 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 17.8 MiB 2.36 757 13443 5119 6395 1929 56.5 MiB 0.19 0.00 4.08826 -130.07 -4.08826 4.08826 1.09 0.00125439 0.00114667 0.106488 0.0976398 50 2778 50 6.95648e+06 188184 902133. 3121.57 4.52 0.431311 0.386826 28642 213929 -1 2045 30 1669 2787 309493 86950 4.42046 4.42046 -143.572 -4.42046 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0706036 0.0634084 76 77 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17408 1 0.03 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 17.0 MiB 0.29 503 12542 4062 6070 2410 55.6 MiB 0.13 0.00 3.14908 -92.6386 -3.14908 3.14908 1.10 0.00088637 0.000812117 0.064573 0.0591332 40 1776 44 6.95648e+06 260562 706193. 2443.58 12.76 0.461719 0.409001 26914 176310 -1 1443 22 1111 1649 176104 46230 2.86757 2.86757 -100.891 -2.86757 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0378286 0.0337741 57 23 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30312 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 1.40 674 9676 3990 5312 374 55.9 MiB 0.15 0.00 3.76865 -134.987 -3.76865 3.76865 1.09 0.00110687 0.00101222 0.0642074 0.0586079 60 1835 21 6.95648e+06 173708 1.01997e+06 3529.29 3.05 0.295053 0.263922 30658 258169 -1 1517 23 1426 1989 172709 39333 3.73911 3.73911 -132.853 -3.73911 0 0 1.27783e+06 4421.56 0.41 0.11 0.45 -1 -1 0.41 0.0496703 0.044532 76 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17844 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 17.9 MiB 1.81 1197 6788 1593 4785 410 56.4 MiB 0.13 0.00 4.81732 -154.887 -4.81732 4.81732 1.10 0.00130081 0.00119476 0.0560464 0.0516652 56 2745 25 6.95648e+06 231611 973134. 3367.25 3.39 0.344605 0.310418 29794 239141 -1 2575 20 1810 2734 267843 53538 4.69936 4.69936 -158.923 -4.69936 0 0 1.19926e+06 4149.71 0.38 0.14 0.39 -1 -1 0.38 0.0535575 0.0484982 97 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 17.6 MiB 1.10 755 11806 4947 6514 345 56.1 MiB 0.16 0.00 4.55181 -144.133 -4.55181 4.55181 1.09 0.00114925 0.00105496 0.0808799 0.0742624 46 2302 50 6.95648e+06 246087 828058. 2865.25 3.43 0.377529 0.338772 28066 200906 -1 1809 22 1405 1916 184870 41973 3.26946 3.26946 -129.646 -3.26946 0 0 1.01997e+06 3529.29 0.34 0.12 0.34 -1 -1 0.34 0.0502422 0.0452561 74 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17256 1 0.03 -1 -1 30324 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 17.2 MiB 0.50 536 11296 4661 6055 580 55.9 MiB 0.13 0.00 2.9714 -97.779 -2.9714 2.9714 1.09 0.000952849 0.000872534 0.0630015 0.057697 46 1687 48 6.95648e+06 289514 828058. 2865.25 3.72 0.308167 0.275126 28066 200906 -1 1196 22 1101 1627 118419 28041 2.94567 2.94567 -98.2229 -2.94567 0 0 1.01997e+06 3529.29 0.34 0.09 0.32 -1 -1 0.34 0.0411006 0.0367651 62 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 2.03 1154 14782 4940 8104 1738 56.5 MiB 0.25 0.00 6.12641 -181.225 -6.12641 6.12641 1.11 0.00141502 0.00129921 0.128282 0.117906 46 2972 48 6.95648e+06 217135 828058. 2865.25 6.30 0.490515 0.441577 28066 200906 -1 2375 24 1979 3061 252430 53962 5.06025 5.06025 -172.023 -5.06025 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0368575 0.0329855 95 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.17 17800 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 17.7 MiB 1.47 717 11799 3733 5850 2216 56.3 MiB 0.15 0.00 4.62806 -129.887 -4.62806 4.62806 1.09 0.00114264 0.0010465 0.073278 0.0671131 40 2137 23 6.95648e+06 332941 706193. 2443.58 2.87 0.315154 0.282642 26914 176310 -1 1846 22 1420 2105 204275 43664 4.24312 4.24312 -135.251 -4.24312 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.049413 0.0444819 74 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.19 17412 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.9 MiB 0.32 514 10509 3980 5034 1495 55.5 MiB 0.11 0.00 2.96656 -92.2738 -2.96656 2.96656 1.09 0.000839728 0.000770092 0.0569363 0.0522768 44 1513 24 6.95648e+06 188184 787024. 2723.27 2.53 0.243606 0.217028 27778 195446 -1 1051 16 699 1093 64585 17611 2.96762 2.96762 -95.8174 -2.96762 0 0 997811. 3452.63 0.33 0.06 0.32 -1 -1 0.33 0.0280207 0.0251461 51 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30180 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 17.3 MiB 0.59 1076 14908 4738 8798 1372 56.0 MiB 0.20 0.00 4.96917 -138.118 -4.96917 4.96917 1.08 0.00118859 0.00108967 0.0941008 0.0863564 38 3145 48 6.95648e+06 347416 678818. 2348.85 9.35 0.3966 0.35614 26626 170182 -1 2507 21 1570 2770 270498 50404 4.65836 4.65836 -145.067 -4.65836 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0500354 0.0448764 80 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.16 17084 1 0.03 -1 -1 30068 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 17.2 MiB 0.91 492 11034 4564 6063 407 55.8 MiB 0.12 0.00 2.9972 -99.2597 -2.9972 2.9972 1.08 0.000889359 0.000815228 0.0615557 0.0564612 40 1961 39 6.95648e+06 202660 706193. 2443.58 2.55 0.267168 0.238428 26914 176310 -1 1516 22 1349 1863 169744 49562 3.32157 3.32157 -117.016 -3.32157 0 0 926341. 3205.33 0.32 0.11 0.29 -1 -1 0.32 0.0390808 0.0350407 57 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17256 1 0.03 -1 -1 30300 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 16.9 MiB 0.98 565 8867 3613 4967 287 55.6 MiB 0.11 0.00 3.45473 -106.167 -3.45473 3.45473 1.08 0.000952037 0.000872943 0.0523177 0.0479965 38 1930 30 6.95648e+06 246087 678818. 2348.85 4.20 0.264702 0.236131 26626 170182 -1 1481 19 1147 1674 130098 28883 3.05892 3.05892 -108.48 -3.05892 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0367562 0.0329526 60 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17768 1 0.03 -1 -1 30384 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 17.6 MiB 1.59 851 11487 4862 6149 476 56.2 MiB 0.17 0.00 3.95502 -124.066 -3.95502 3.95502 1.08 0.00115529 0.00105895 0.0850264 0.0780198 44 2861 40 6.95648e+06 231611 787024. 2723.27 3.89 0.365854 0.328152 27778 195446 -1 2114 22 1724 2612 186740 39662 3.67666 3.67666 -128.24 -3.67666 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0507129 0.04563 80 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 17.4 MiB 1.30 719 14528 6712 7344 472 56.0 MiB 0.19 0.00 4.55468 -132.882 -4.55468 4.55468 1.09 0.00118145 0.00108321 0.103204 0.094637 44 2547 35 6.95648e+06 231611 787024. 2723.27 2.98 0.377995 0.339662 27778 195446 -1 1688 23 1524 2201 168711 38196 4.09482 4.09482 -137.998 -4.09482 0 0 997811. 3452.63 0.35 0.12 0.29 -1 -1 0.35 0.0536639 0.0482979 72 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30040 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 17.5 MiB 1.85 751 11200 4198 5153 1849 56.1 MiB 0.16 0.00 4.43749 -136.856 -4.43749 4.43749 1.09 0.00116637 0.00107008 0.0819913 0.0752454 46 2439 25 6.95648e+06 202660 828058. 2865.25 3.41 0.340414 0.305498 28066 200906 -1 1911 21 1356 2100 167493 35963 4.25946 4.25946 -140.254 -4.25946 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0494745 0.044589 73 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17552 1 0.03 -1 -1 30344 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 17.3 MiB 2.90 640 8909 3664 5023 222 55.8 MiB 0.12 0.00 4.07418 -127.444 -4.07418 4.07418 1.10 0.000948218 0.000868919 0.0574649 0.0527132 40 2228 26 6.95648e+06 144757 706193. 2443.58 3.25 0.264433 0.236213 26914 176310 -1 1908 20 1236 1636 170227 43620 3.49292 3.49292 -123.985 -3.49292 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.038515 0.0345382 61 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30540 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 17.1 MiB 2.11 607 11925 5002 6435 488 55.8 MiB 0.15 0.00 3.79972 -120.636 -3.79972 3.79972 1.09 0.00104737 0.000959875 0.0819924 0.0751431 48 1984 29 6.95648e+06 173708 865456. 2994.66 2.86 0.312881 0.28 28354 207349 -1 1536 22 1367 1944 159821 37228 3.32686 3.32686 -118.238 -3.32686 0 0 1.05005e+06 3633.38 0.35 0.11 0.36 -1 -1 0.35 0.0462916 0.0415618 68 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30460 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 17.5 MiB 0.90 673 11064 3726 5225 2113 56.0 MiB 0.14 0.00 3.0162 -94.6102 -3.0162 3.0162 1.09 0.00108601 0.000994778 0.0686572 0.0629635 38 2318 31 6.95648e+06 318465 678818. 2348.85 4.24 0.31451 0.281569 26626 170182 -1 1666 22 1207 1932 150045 33191 3.07097 3.07097 -103.367 -3.07097 0 0 902133. 3121.57 0.31 0.11 0.27 -1 -1 0.31 0.0474996 0.0425826 71 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17496 1 0.03 -1 -1 30524 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 0.66 661 10813 4387 5735 691 55.9 MiB 0.12 0.00 3.6526 -99.519 -3.6526 3.6526 1.10 0.000958058 0.000877646 0.0562243 0.0515781 42 1918 35 6.95648e+06 405319 744469. 2576.02 3.17 0.284857 0.253828 27202 183097 -1 1492 19 1112 1848 158479 34720 3.42886 3.42886 -104.154 -3.42886 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0372544 0.0333826 72 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30520 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 17.2 MiB 0.90 539 10769 4210 5259 1300 56.0 MiB 0.13 0.00 3.44073 -108.225 -3.44073 3.44073 1.10 0.00103694 0.000949481 0.075061 0.0688106 48 1688 34 6.95648e+06 173708 865456. 2994.66 3.14 0.316659 0.283163 28354 207349 -1 1454 20 1284 1813 161942 38490 2.90237 2.90237 -113.138 -2.90237 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0419016 0.0375633 60 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30180 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 17.3 MiB 1.73 645 12715 5333 6940 442 55.9 MiB 0.16 0.00 3.42769 -121.093 -3.42769 3.42769 1.10 0.00108629 0.000994324 0.0905067 0.082957 50 2241 50 6.95648e+06 159232 902133. 3121.57 4.05 0.36932 0.3307 28642 213929 -1 1593 19 1335 1900 145307 35353 3.38763 3.38763 -126.727 -3.38763 0 0 1.08113e+06 3740.92 0.35 0.10 0.35 -1 -1 0.35 0.0411326 0.0370325 72 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.13 17120 1 0.03 -1 -1 30388 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.3 MiB 0.43 742 11799 3162 6813 1824 55.8 MiB 0.15 0.00 4.51778 -120.862 -4.51778 4.51778 1.09 0.00103797 0.000951041 0.0670716 0.0616054 38 2757 47 6.95648e+06 347416 678818. 2348.85 6.22 0.329611 0.295313 26626 170182 -1 1955 22 1406 2365 210396 43684 4.28086 4.28086 -136.346 -4.28086 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.045233 0.0406608 74 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30476 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 17.3 MiB 1.90 848 13606 5964 7217 425 56.0 MiB 0.19 0.00 4.62557 -150.036 -4.62557 4.62557 1.08 0.00117698 0.00107934 0.101642 0.0932917 48 2886 26 6.95648e+06 188184 865456. 2994.66 4.47 0.358922 0.322925 28354 207349 -1 2378 21 1719 2506 253013 54190 4.45496 4.45496 -155.997 -4.45496 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0498587 0.0449603 82 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 17.3 MiB 1.67 797 15688 5451 7649 2588 56.0 MiB 0.21 0.00 4.33979 -134.933 -4.33979 4.33979 1.09 0.00124795 0.00114332 0.104228 0.0955471 46 2516 45 6.95648e+06 347416 828058. 2865.25 6.33 0.424445 0.381151 28066 200906 -1 1814 21 1369 2331 203557 42476 3.90176 3.90176 -141.076 -3.90176 0 0 1.01997e+06 3529.29 0.36 0.13 0.32 -1 -1 0.36 0.0537986 0.0485615 80 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30300 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 17.5 MiB 1.15 866 12951 5370 7312 269 56.1 MiB 0.19 0.00 4.06852 -135.722 -4.06852 4.06852 1.02 0.00125666 0.00115161 0.0889324 0.0815933 46 2675 25 6.95648e+06 332941 828058. 2865.25 4.01 0.361646 0.325031 28066 200906 -1 2147 24 1837 3034 242444 50740 3.80186 3.80186 -138.053 -3.80186 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590119 0.0531668 80 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 17.0 MiB 0.99 535 10769 4485 5866 418 55.6 MiB 0.13 0.00 3.76076 -107.124 -3.76076 3.76076 1.19 0.00094939 0.000871748 0.0683672 0.0627931 40 1903 31 6.95648e+06 173708 706193. 2443.58 2.64 0.284374 0.254344 26914 176310 -1 1524 19 1178 1778 168955 37421 2.97232 2.97232 -106.451 -2.97232 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.035741 0.0320169 57 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30420 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 17.4 MiB 0.98 646 9676 4013 5115 548 56.1 MiB 0.14 0.00 4.36203 -132.758 -4.36203 4.36203 1.11 0.00115283 0.00107924 0.0766215 0.0702875 48 2052 23 6.95648e+06 202660 865456. 2994.66 3.24 0.346777 0.311679 28354 207349 -1 1617 22 1735 2408 175230 42504 4.01936 4.01936 -135.967 -4.01936 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.053888 0.0485189 76 63 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17516 1 0.03 -1 -1 30300 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 17.4 MiB 1.70 811 10204 3614 5065 1525 56.0 MiB 0.15 0.00 4.885 -145.205 -4.885 4.885 1.09 0.0011462 0.00105137 0.074227 0.068194 48 2507 26 6.95648e+06 202660 865456. 2994.66 4.15 0.327154 0.293712 28354 207349 -1 2034 21 1699 2745 250883 55251 4.29192 4.29192 -147.488 -4.29192 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0482482 0.0435022 80 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30384 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 2.03 840 10509 4398 5789 322 56.0 MiB 0.15 0.00 5.54805 -153.523 -5.54805 5.54805 1.12 0.00113343 0.00103975 0.0765039 0.0702187 40 2695 24 6.95648e+06 202660 706193. 2443.58 4.99 0.32664 0.293133 26914 176310 -1 2048 21 1310 1986 181257 39768 4.92101 4.92101 -156.505 -4.92101 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0475739 0.042824 79 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17508 1 0.03 -1 -1 30376 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 17.5 MiB 1.76 981 8543 2209 4916 1418 56.1 MiB 0.12 0.00 4.87546 -153.661 -4.87546 4.87546 1.10 0.00120241 0.00110282 0.0603805 0.0554264 38 2411 22 6.95648e+06 303989 678818. 2348.85 3.83 0.317556 0.284443 26626 170182 -1 1934 18 1044 1554 112841 23684 4.18706 4.18706 -148.99 -4.18706 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0442546 0.039874 74 83 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 17.4 MiB 1.21 757 8390 3202 4298 890 56.0 MiB 0.13 0.00 4.41913 -136.437 -4.41913 4.41913 1.09 0.00119882 0.00109885 0.0650814 0.0597548 44 2553 27 6.95648e+06 188184 787024. 2723.27 2.95 0.331842 0.297739 27778 195446 -1 1842 22 1553 2635 192052 41288 3.91902 3.91902 -136.724 -3.91902 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.052834 0.0476342 72 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17636 1 0.04 -1 -1 30392 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 17.3 MiB 1.32 676 7412 2307 3688 1417 56.0 MiB 0.11 0.00 4.03938 -124.354 -4.03938 4.03938 1.08 0.00119631 0.00109615 0.0578445 0.0530584 40 1915 29 6.95648e+06 231611 706193. 2443.58 3.54 0.326431 0.292341 26914 176310 -1 1850 28 1578 2394 351685 123617 3.69672 3.69672 -129.056 -3.69672 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0639463 0.0573829 73 85 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17412 1 0.03 -1 -1 30376 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 17.1 MiB 0.80 565 8134 3323 4613 198 55.6 MiB 0.10 0.00 3.56099 -106.975 -3.56099 3.56099 1.09 0.000883987 0.000811205 0.0489428 0.0449373 38 2071 30 6.95648e+06 144757 678818. 2348.85 3.63 0.249504 0.222903 26626 170182 -1 1519 20 1088 1614 126966 28362 3.22832 3.22832 -114.337 -3.22832 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0355494 0.0318485 53 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17852 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 17.6 MiB 3.39 780 14679 6171 7995 513 56.2 MiB 0.19 0.00 4.81946 -134.729 -4.81946 4.81946 1.10 0.00121332 0.00111195 0.0965315 0.0884873 52 2232 23 6.95648e+06 332941 926341. 3205.33 3.01 0.35837 0.321984 29218 227130 -1 1621 23 1130 1780 152505 32527 4.34076 4.34076 -127.201 -4.34076 0 0 1.14541e+06 3963.36 0.39 0.11 0.38 -1 -1 0.39 0.0550173 0.0495372 76 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17872 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 17.7 MiB 0.86 707 10672 3433 5510 1729 56.3 MiB 0.16 0.00 4.24958 -138.057 -4.24958 4.24958 1.09 0.00129493 0.00118778 0.087663 0.0804307 46 2101 39 6.95648e+06 188184 828058. 2865.25 3.80 0.402387 0.360858 28066 200906 -1 1652 20 1609 2296 152828 36988 4.14472 4.14472 -138.713 -4.14472 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0523334 0.0472269 78 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17436 1 0.03 -1 -1 30168 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 17.0 MiB 1.50 678 11925 5137 6457 331 55.6 MiB 0.14 0.00 4.05037 -122.042 -4.05037 4.05037 1.09 0.000938878 0.000860386 0.072129 0.0661232 44 1982 25 6.95648e+06 159232 787024. 2723.27 2.43 0.25153 0.224728 27778 195446 -1 1574 22 1167 1476 132878 28622 3.52322 3.52322 -118.138 -3.52322 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0405339 0.0363221 68 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30400 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.8 MiB 1.00 478 11916 5026 6437 453 55.4 MiB 0.13 0.00 3.32523 -101.355 -3.32523 3.32523 1.09 0.000883415 0.000810612 0.0683721 0.0627105 44 1783 23 6.95648e+06 188184 787024. 2723.27 2.61 0.256569 0.229578 27778 195446 -1 1359 24 1243 1747 125414 30386 3.03797 3.03797 -110.211 -3.03797 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0414969 0.0371061 57 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 17.5 MiB 1.60 850 12416 5241 6727 448 56.2 MiB 0.17 0.00 4.62707 -149.564 -4.62707 4.62707 1.11 0.00117809 0.00108082 0.0903788 0.0829801 46 2722 26 6.95648e+06 217135 828058. 2865.25 4.61 0.356704 0.320713 28066 200906 -1 2074 21 1865 2438 193182 44797 4.40371 4.40371 -157.748 -4.40371 0 0 1.01997e+06 3529.29 0.38 0.12 0.30 -1 -1 0.38 0.0502186 0.0452942 85 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30248 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 17.5 MiB 1.18 1128 10536 3281 5855 1400 56.1 MiB 0.15 0.00 4.81844 -154.124 -4.81844 4.81844 1.08 0.00116853 0.00107128 0.0774018 0.0709833 38 3024 27 6.95648e+06 202660 678818. 2348.85 5.51 0.342665 0.307099 26626 170182 -1 2569 28 1789 2629 367783 104626 4.56931 4.56931 -159.679 -4.56931 0 0 902133. 3121.57 0.29 0.18 0.27 -1 -1 0.29 0.0626994 0.0563686 82 56 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.15 17392 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.5 MiB 0.43 843 11456 4360 5763 1333 56.2 MiB 0.17 0.00 4.93982 -142.75 -4.93982 4.93982 1.09 0.00121246 0.00111341 0.0832551 0.0765576 46 2871 42 6.95648e+06 246087 828058. 2865.25 4.66 0.297255 0.266845 28066 200906 -1 1957 23 1780 2859 219432 52826 4.6493 4.6493 -149.515 -4.6493 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0555244 0.0501586 83 3 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17624 1 0.03 -1 -1 30040 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 17.6 MiB 0.95 630 11063 3050 5652 2361 56.1 MiB 0.14 0.00 3.41127 -97.5363 -3.41127 3.41127 1.11 0.00104576 0.000958059 0.068019 0.0624326 40 1835 26 6.95648e+06 303989 706193. 2443.58 2.62 0.296718 0.265495 26914 176310 -1 1460 22 1308 2138 157545 37153 3.03682 3.03682 -102.64 -3.03682 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045772 0.0410814 69 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30636 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 17.1 MiB 0.46 487 8585 3718 4335 532 55.6 MiB 0.10 0.00 2.94405 -89.6154 -2.94405 2.94405 1.11 0.000876429 0.000803212 0.0519683 0.0476986 38 1494 30 6.95648e+06 202660 678818. 2348.85 2.58 0.246152 0.219112 26626 170182 -1 1118 22 1017 1284 84491 21005 3.22642 3.22642 -98.2028 -3.22642 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0379831 0.0339595 54 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17916 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 17.8 MiB 1.30 1018 15904 6884 8410 610 56.3 MiB 0.26 0.00 3.84665 -134.608 -3.84665 3.84665 1.14 0.00137228 0.00125846 0.131017 0.120335 50 3513 31 6.95648e+06 231611 902133. 3121.57 3.52 0.444971 0.401173 28642 213929 -1 2746 23 2119 3360 318996 69446 4.29822 4.29822 -148.875 -4.29822 0 0 1.08113e+06 3740.92 0.35 0.16 0.35 -1 -1 0.35 0.0623723 0.0562811 95 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30380 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 17.3 MiB 4.90 805 13026 5515 7018 493 55.9 MiB 0.19 0.00 5.43776 -152.039 -5.43776 5.43776 1.10 0.00118843 0.0010893 0.0967088 0.0887055 46 2740 36 6.95648e+06 217135 828058. 2865.25 5.49 0.377782 0.339252 28066 200906 -1 2126 23 1586 2402 285851 56911 4.81541 4.81541 -158.107 -4.81541 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0545526 0.0491191 82 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30420 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 17.3 MiB 3.68 636 10029 4132 5585 312 55.8 MiB 0.13 0.00 3.67834 -124.027 -3.67834 3.67834 1.09 0.00107495 0.000984172 0.0713454 0.0653909 48 2185 28 6.95648e+06 159232 865456. 2994.66 3.72 0.289851 0.259043 28354 207349 -1 1586 19 1295 1849 150992 36406 3.53836 3.53836 -135.928 -3.53836 0 0 1.05005e+06 3633.38 0.35 0.10 0.35 -1 -1 0.35 0.0417897 0.0375887 70 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17576 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 17.4 MiB 0.37 731 15206 6549 8090 567 55.9 MiB 0.19 0.00 4.25273 -121.678 -4.25273 4.25273 1.09 0.00110853 0.00101627 0.0921259 0.084481 48 2298 32 6.95648e+06 318465 865456. 2994.66 3.26 0.346878 0.311504 28354 207349 -1 1836 22 1173 1814 166694 37685 3.80451 3.80451 -123.316 -3.80451 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0481356 0.0433031 74 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17700 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 0.99 751 14323 4212 7223 2888 56.1 MiB 0.18 0.00 4.42633 -128.985 -4.42633 4.42633 1.09 0.0012272 0.00112503 0.0938174 0.0860768 40 2622 38 6.95648e+06 361892 706193. 2443.58 3.93 0.38717 0.34791 26914 176310 -1 1848 21 1476 2267 182833 41978 4.24412 4.24412 -133.401 -4.24412 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0518558 0.0467437 83 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30376 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 17.3 MiB 1.05 713 11034 4424 5642 968 55.8 MiB 0.14 0.00 3.35027 -102.373 -3.35027 3.35027 1.08 0.00107221 0.000982327 0.0745116 0.0683051 38 2733 50 6.95648e+06 231611 678818. 2348.85 6.13 0.367384 0.328765 26626 170182 -1 1933 23 1526 2555 207027 44479 3.45197 3.45197 -114.871 -3.45197 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0487982 0.0437944 68 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17840 1 0.03 -1 -1 30472 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 17.6 MiB 1.56 907 11200 3286 6600 1314 56.2 MiB 0.17 0.00 4.64467 -151.435 -4.64467 4.64467 1.14 0.00118194 0.00108473 0.0832924 0.0765315 48 2706 42 6.95648e+06 202660 865456. 2994.66 4.93 0.372139 0.334416 28354 207349 -1 2215 23 1973 2902 294986 61193 4.36766 4.36766 -149.121 -4.36766 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0544481 0.0491308 88 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 17.4 MiB 1.11 748 12542 5225 6709 608 56.1 MiB 0.17 0.00 4.47033 -145.191 -4.47033 4.47033 1.08 0.00125507 0.00115038 0.0920551 0.0844718 48 2531 41 6.95648e+06 260562 865456. 2994.66 3.80 0.393564 0.353799 28354 207349 -1 1938 24 1584 2112 216788 50249 4.07261 4.07261 -144.703 -4.07261 0 0 1.05005e+06 3633.38 0.36 0.14 0.35 -1 -1 0.36 0.0594679 0.0536043 80 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17608 1 0.03 -1 -1 30284 -1 -1 12 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 17.1 MiB 3.98 466 10105 4186 5463 456 55.6 MiB 0.12 0.00 3.92822 -103.3 -3.92822 3.92822 0.95 0.000919452 0.000842416 0.0640136 0.0587391 36 1523 22 6.95648e+06 173708 648988. 2245.63 2.69 0.264377 0.23607 26050 158493 -1 1228 15 778 1009 83744 19223 2.99102 2.99102 -101.074 -2.99102 0 0 828058. 2865.25 0.28 0.07 0.25 -1 -1 0.28 0.0298825 0.02687 53 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30364 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 17.1 MiB 1.19 606 9397 3361 4720 1316 55.8 MiB 0.12 0.00 3.68935 -126.523 -3.68935 3.68935 1.09 0.00101991 0.000933583 0.0636679 0.0583474 42 2317 35 6.95648e+06 159232 744469. 2576.02 2.99 0.301012 0.268162 27202 183097 -1 1631 21 1234 1585 161332 35156 3.67372 3.67372 -130.834 -3.67372 0 0 949917. 3286.91 0.32 0.10 0.30 -1 -1 0.32 0.0431345 0.038727 64 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.21 17796 1 0.03 -1 -1 30368 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 17.3 MiB 0.91 743 11993 4026 5805 2162 55.8 MiB 0.16 0.00 4.14331 -121.523 -4.14331 4.14331 1.11 0.00111068 0.00101794 0.0742917 0.0682447 44 2597 32 6.95648e+06 332941 787024. 2723.27 3.96 0.328772 0.294755 27778 195446 -1 1579 21 1324 2035 146086 33880 3.91111 3.91111 -121.462 -3.91111 0 0 997811. 3452.63 0.34 0.10 0.31 -1 -1 0.34 0.0467542 0.0420978 77 33 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17264 1 0.03 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 17.0 MiB 1.49 616 10459 4329 5659 471 55.7 MiB 0.13 0.00 4.04737 -116.055 -4.04737 4.04737 1.09 0.000905324 0.000830727 0.0637632 0.0585107 42 2143 50 6.95648e+06 188184 744469. 2576.02 2.48 0.295414 0.263425 27202 183097 -1 1571 22 1189 1496 121997 26928 3.32882 3.32882 -111.78 -3.32882 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0394326 0.0352998 67 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29984 -1 -1 9 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 16.9 MiB 1.46 561 11321 4813 6209 299 55.5 MiB 0.11 0.00 3.85356 -111.135 -3.85356 3.85356 1.05 0.000955912 0.000876077 0.0505085 0.0461373 40 1771 25 6.95648e+06 130281 706193. 2443.58 2.36 0.262839 0.234375 26914 176310 -1 1463 37 1552 2418 363039 142367 3.13687 3.13687 -111.746 -3.13687 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0644517 0.0574254 56 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30108 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 17.5 MiB 1.21 696 13719 4819 6392 2508 56.1 MiB 0.18 0.00 3.46983 -115.227 -3.46983 3.46983 1.10 0.00137426 0.00127119 0.0905152 0.0830154 44 2085 27 6.95648e+06 347416 787024. 2723.27 2.45 0.362565 0.325758 27778 195446 -1 1582 23 1647 2194 169180 36742 3.00057 3.00057 -113.892 -3.00057 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0557661 0.050212 79 64 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30368 -1 -1 12 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 17.1 MiB 2.46 587 9081 3433 3891 1757 55.7 MiB 0.11 0.00 3.99537 -118.981 -3.99537 3.99537 1.08 0.000909838 0.000833664 0.0549144 0.0503463 44 2307 34 6.95648e+06 173708 787024. 2723.27 2.99 0.264166 0.235603 27778 195446 -1 1553 21 1133 1566 124116 28356 3.46822 3.46822 -116.107 -3.46822 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.038077 0.0340616 64 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17592 1 0.03 -1 -1 30008 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 17.6 MiB 1.66 827 13505 5541 6681 1283 56.2 MiB 0.17 0.00 3.208 -113.036 -3.208 3.208 1.11 0.00114929 0.00105192 0.0854299 0.0783253 40 2180 23 6.95648e+06 318465 706193. 2443.58 3.14 0.329238 0.295539 26914 176310 -1 1944 22 1395 2260 237037 48189 3.27047 3.27047 -118.143 -3.27047 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0503471 0.0452339 71 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30436 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 17.6 MiB 2.27 717 9706 3985 5340 381 56.2 MiB 0.14 0.00 3.995 -134.818 -3.995 3.995 1.09 0.00125359 0.00114777 0.076794 0.0703888 40 2180 49 6.95648e+06 217135 706193. 2443.58 3.39 0.403073 0.360898 26914 176310 -1 1785 21 1473 1992 159433 36664 3.82681 3.82681 -135.82 -3.82681 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0517146 0.0465312 73 91 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 1.29 546 10149 3579 4930 1640 55.8 MiB 0.13 0.00 2.9023 -96.8242 -2.9023 2.9023 1.10 0.00100016 0.00091422 0.0686568 0.0628641 46 1638 37 6.95648e+06 144757 828058. 2865.25 3.26 0.302543 0.270103 28066 200906 -1 1065 31 1105 1702 170168 64073 2.92452 2.92452 -98.2858 -2.92452 0 0 1.01997e+06 3529.29 0.38 0.11 0.32 -1 -1 0.38 0.0394728 0.0347581 57 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17408 1 0.03 -1 -1 30424 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 17.2 MiB 1.42 688 11293 4712 6328 253 55.7 MiB 0.15 0.00 4.09973 -130.941 -4.09973 4.09973 1.08 0.000999036 0.000914508 0.0750596 0.0688391 46 2135 28 6.95648e+06 159232 828058. 2865.25 3.13 0.296164 0.265055 28066 200906 -1 1698 23 1365 1978 168465 36966 3.48812 3.48812 -125.856 -3.48812 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0449834 0.0403061 70 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.17 17864 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 17.4 MiB 2.08 759 11034 4566 6063 405 56.0 MiB 0.15 0.00 4.18668 -129.57 -4.18668 4.18668 1.09 0.000964582 0.000873964 0.0748996 0.0687178 40 2605 27 6.95648e+06 202660 706193. 2443.58 4.44 0.318767 0.285771 26914 176310 -1 2030 28 2034 2690 321469 108944 4.18692 4.18692 -144.182 -4.18692 0 0 926341. 3205.33 0.33 0.18 0.26 -1 -1 0.33 0.0586306 0.0526466 79 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30208 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 17.5 MiB 1.27 716 10228 3612 4706 1910 56.0 MiB 0.13 0.00 4.16289 -113.847 -4.16289 4.16289 1.07 0.00107047 0.000980464 0.0646694 0.0593065 40 2239 28 6.95648e+06 303989 706193. 2443.58 3.01 0.304277 0.272348 26914 176310 -1 1916 21 1219 1919 167378 38434 3.83102 3.83102 -120.807 -3.83102 0 0 926341. 3205.33 0.30 0.11 0.26 -1 -1 0.30 0.0461976 0.0415766 71 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.21 17608 1 0.03 -1 -1 30388 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 17.7 MiB 1.49 846 13524 5903 7163 458 56.3 MiB 0.19 0.00 4.885 -157.826 -4.885 4.885 1.08 0.00127097 0.0011646 0.107309 0.0984621 56 2698 26 6.95648e+06 202660 973134. 3367.25 3.58 0.389281 0.350307 29794 239141 -1 2164 24 2275 3274 346015 70595 4.53181 4.53181 -153.712 -4.53181 0 0 1.19926e+06 4149.71 0.39 0.17 0.41 -1 -1 0.39 0.060377 0.0544023 89 65 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17104 1 0.02 -1 -1 30372 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 17.0 MiB 1.31 501 12076 4244 5318 2514 55.5 MiB 0.13 0.00 3.74884 -94.0057 -3.74884 3.74884 1.10 0.000833253 0.000764491 0.0658305 0.0604026 40 1910 34 6.95648e+06 188184 706193. 2443.58 2.89 0.261615 0.233375 26914 176310 -1 1432 21 999 1536 124979 30089 3.24152 3.24152 -100.677 -3.24152 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0351343 0.0313908 54 4 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 17.4 MiB 1.27 1008 14543 5389 7197 1957 56.1 MiB 0.20 0.00 3.70954 -138.278 -3.70954 3.70954 1.10 0.00130489 0.00119261 0.100288 0.091719 40 2412 20 6.95648e+06 361892 706193. 2443.58 3.48 0.367796 0.330629 26914 176310 -1 2154 19 1653 2182 212075 52958 3.94551 3.94551 -149.35 -3.94551 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0499773 0.0451086 81 90 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 2.99 599 11389 4446 5401 1542 56.0 MiB 0.16 0.00 2.96105 -112.244 -2.96105 2.96105 1.10 0.00119149 0.00109045 0.0908164 0.0831828 38 1957 49 6.95648e+06 144757 678818. 2348.85 4.38 0.400802 0.358812 26626 170182 -1 1545 21 1439 1962 170499 37127 3.32342 3.32342 -127.868 -3.32342 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0495094 0.044469 61 96 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 17.4 MiB 1.40 728 11993 4280 5583 2130 56.0 MiB 0.16 0.00 4.11943 -125.672 -4.11943 4.11943 1.11 0.00118551 0.00108614 0.0784337 0.0719637 44 2660 42 6.95648e+06 318465 787024. 2723.27 3.26 0.379425 0.340311 27778 195446 -1 1849 23 1170 1786 148503 34066 3.72046 3.72046 -123.66 -3.72046 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0530541 0.0477175 75 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17632 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 17.7 MiB 1.89 1133 13599 5570 7048 981 56.2 MiB 0.22 0.00 6.01533 -177.28 -6.01533 6.01533 1.09 0.00133345 0.00122485 0.111045 0.102039 46 3137 40 6.95648e+06 217135 828058. 2865.25 6.65 0.427603 0.385023 28066 200906 -1 2522 22 2092 2983 241006 49112 4.93995 4.93995 -170.158 -4.93995 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0584248 0.052825 95 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17644 1 0.02 -1 -1 30308 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 16.8 MiB 2.31 506 10409 4642 5419 348 55.5 MiB 0.11 0.00 2.68965 -94.6691 -2.68965 2.68965 1.08 0.000772212 0.000706239 0.0551067 0.0504455 38 1556 24 6.95648e+06 159232 678818. 2348.85 2.63 0.222396 0.197806 26626 170182 -1 1195 19 802 1041 94426 20467 2.45462 2.45462 -95.1551 -2.45462 0 0 902133. 3121.57 0.34 0.07 0.27 -1 -1 0.34 0.0300919 0.0268673 52 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17536 1 0.03 -1 -1 30288 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 17.1 MiB 1.31 453 9649 4016 5181 452 55.7 MiB 0.12 0.00 3.70034 -111.62 -3.70034 3.70034 1.09 0.000974133 0.000892603 0.064559 0.0592084 46 1640 50 6.95648e+06 159232 828058. 2865.25 3.47 0.320463 0.286279 28066 200906 -1 1226 20 1006 1462 125465 30002 3.05703 3.05703 -110.049 -3.05703 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0393906 0.0352997 54 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17380 1 0.03 -1 -1 30228 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 16.9 MiB 0.45 657 10304 4396 5657 251 55.7 MiB 0.13 0.00 3.0756 -108.291 -3.0756 3.0756 1.08 0.00100661 0.000922687 0.0696589 0.0638873 48 2011 23 6.95648e+06 144757 865456. 2994.66 3.54 0.285065 0.255035 28354 207349 -1 1649 24 1360 2172 225132 50412 3.10392 3.10392 -114.589 -3.10392 0 0 1.05005e+06 3633.38 0.35 0.12 0.34 -1 -1 0.35 0.0462545 0.0414312 59 34 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17428 1 0.03 -1 -1 30176 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 17.0 MiB 0.45 433 7975 3255 4078 642 55.5 MiB 0.08 0.00 3.29759 -76.2304 -3.29759 3.29759 1.13 0.000753625 0.000689958 0.0395875 0.0362594 38 1530 37 6.95648e+06 260562 678818. 2348.85 3.04 0.217404 0.192931 26626 170182 -1 1053 23 716 1101 70310 18227 2.97562 2.97562 -82.152 -2.97562 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0336915 0.0300313 53 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30436 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 17.5 MiB 1.82 736 10796 3697 5176 1923 56.0 MiB 0.16 0.00 3.75962 -125.032 -3.75962 3.75962 1.01 0.0012117 0.00110948 0.0854433 0.0783007 46 3469 47 6.95648e+06 173708 828058. 2865.25 8.41 0.398627 0.357097 28066 200906 -1 2274 26 1722 2861 316286 80992 4.55982 4.55982 -147.737 -4.55982 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0617987 0.0555502 73 72 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30268 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 17.6 MiB 1.28 761 10744 4472 5806 466 56.2 MiB 0.16 0.00 4.07648 -139.886 -4.07648 4.07648 1.14 0.00129514 0.00118517 0.0843506 0.0773215 40 2524 30 6.95648e+06 246087 706193. 2443.58 4.26 0.380393 0.341417 26914 176310 -1 2082 24 1894 2565 277033 61234 3.75172 3.75172 -141.408 -3.75172 0 0 926341. 3205.33 0.31 0.15 0.28 -1 -1 0.31 0.06087 0.0548349 80 90 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 820 12416 4576 5562 2278 55.8 MiB 0.17 0.00 5.01635 -146.768 -5.01635 5.01635 1.09 0.00116874 0.00107166 0.0893847 0.0819985 46 2906 37 6.99608e+06 220735 828058. 2865.25 5.17 0.375269 0.336895 28066 200906 -1 1988 21 1560 2181 170932 41761 4.40451 4.40451 -147.033 -4.40451 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0495774 0.0446773 88 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30312 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 1.32 962 11233 3707 5934 1592 55.8 MiB 0.18 0.00 5.03284 -151.156 -5.03284 5.03284 1.08 0.00119035 0.00109136 0.0840458 0.0771552 48 2930 36 6.99608e+06 250167 865456. 2994.66 4.23 0.371377 0.33346 28354 207349 -1 2454 22 2109 3060 320643 66754 4.64259 4.64259 -159.254 -4.64259 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0500101 0.045115 99 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.10 17908 1 0.03 -1 -1 30280 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 17.4 MiB 0.72 839 12196 5162 6681 353 55.8 MiB 0.15 0.00 3.55379 -113.123 -3.55379 3.55379 1.09 0.00102541 0.000940676 0.0783886 0.0718986 42 2585 35 6.99608e+06 206020 744469. 2576.02 3.52 0.321558 0.287606 27202 183097 -1 1882 23 1419 1986 154978 35763 3.65286 3.65286 -116.181 -3.65286 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0461369 0.0413714 76 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30280 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 17.2 MiB 1.19 700 12302 4830 6041 1431 55.6 MiB 0.16 0.00 4.05128 -116.185 -4.05128 4.05128 1.11 0.00105042 0.000963429 0.0823621 0.075584 44 2703 50 6.99608e+06 235451 787024. 2723.27 3.28 0.358573 0.320864 27778 195446 -1 1833 21 1187 1876 151742 33849 3.80801 3.80801 -121.421 -3.80801 0 0 997811. 3452.63 0.29 0.05 0.17 -1 -1 0.29 0.0191014 0.017026 78 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 903 10204 4241 5732 231 55.8 MiB 0.15 0.00 4.44731 -141.413 -4.44731 4.44731 1.11 0.00114741 0.0010527 0.0740626 0.0680264 40 3203 32 6.99608e+06 206020 706193. 2443.58 5.31 0.333689 0.299309 26914 176310 -1 2582 26 1925 3211 395909 108698 4.57915 4.57915 -156.213 -4.57915 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0569935 0.0512208 81 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17936 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 17.4 MiB 2.68 903 12506 4545 6575 1386 56.2 MiB 0.18 0.00 3.38924 -119.322 -3.38924 3.38924 1.10 0.00121274 0.00111211 0.0901919 0.0827309 50 2568 40 6.99608e+06 250167 902133. 3121.57 4.03 0.384621 0.34519 28642 213929 -1 2051 19 1572 2359 183553 42134 3.37616 3.37616 -126.643 -3.37616 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0472071 0.0426398 97 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30588 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 1.38 527 10769 4406 5481 882 55.4 MiB 0.13 0.00 3.89582 -110.808 -3.89582 3.89582 1.12 0.000891094 0.000817424 0.0640821 0.0587866 36 2292 38 6.99608e+06 220735 648988. 2245.63 4.63 0.281518 0.250891 26050 158493 -1 1359 21 1244 1818 169708 37451 3.29456 3.29456 -109.219 -3.29456 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0370772 0.0331809 66 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30240 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.9 MiB 0.33 664 11203 3028 6067 2108 55.5 MiB 0.13 0.00 2.75465 -88.1636 -2.75465 2.75465 1.11 0.000966959 0.000886878 0.0586947 0.0538701 40 2155 26 6.99608e+06 367892 706193. 2443.58 3.38 0.265321 0.237213 26914 176310 -1 1692 20 1158 1910 156293 36151 2.88741 2.88741 -100.184 -2.88741 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0388002 0.0347929 69 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30200 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 17.0 MiB 0.95 886 12302 5141 6872 289 55.6 MiB 0.16 0.00 3.35914 -124.887 -3.35914 3.35914 0.98 0.00103421 0.000947269 0.0810853 0.0742738 38 2606 25 6.99608e+06 206020 678818. 2348.85 5.03 0.311476 0.278693 26626 170182 -1 2055 25 1818 2460 203278 42148 3.45687 3.45687 -127.895 -3.45687 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0500686 0.0448288 87 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30080 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 17.3 MiB 0.84 886 11650 3739 6142 1769 55.7 MiB 0.15 0.00 3.93292 -137.573 -3.93292 3.93292 1.09 0.00101657 0.000932692 0.0753531 0.0691511 40 2221 25 6.99608e+06 191304 706193. 2443.58 2.88 0.299312 0.268276 26914 176310 -1 1877 19 1373 1734 139655 29281 3.35756 3.35756 -128.359 -3.35756 0 0 926341. 3205.33 0.32 0.11 0.28 -1 -1 0.32 0.0445834 0.0403521 75 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17872 1 0.04 -1 -1 30364 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 17.5 MiB 0.62 675 11436 3956 5372 2108 56.0 MiB 0.14 0.00 3.86033 -123.728 -3.86033 3.86033 1.05 0.000992876 0.000909068 0.0739712 0.0677952 44 2557 34 6.99608e+06 206020 787024. 2723.27 3.19 0.286218 0.255536 27778 195446 -1 1641 23 1524 2109 158603 37910 3.9203 3.9203 -128.16 -3.9203 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0450886 0.040335 83 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30076 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 17.0 MiB 0.67 784 8133 1910 6031 192 55.6 MiB 0.11 0.00 3.27288 -116.653 -3.27288 3.27288 1.09 0.000944101 0.000865525 0.0513454 0.0471193 38 2394 39 6.99608e+06 161872 678818. 2348.85 4.16 0.283576 0.252822 26626 170182 -1 1832 20 1203 1524 136412 27823 2.83937 2.83937 -113.586 -2.83937 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0381472 0.0341717 66 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17628 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 822 13937 5978 7482 477 55.8 MiB 0.20 0.00 3.95082 -133.749 -3.95082 3.95082 1.08 0.00115936 0.00106343 0.0989244 0.0908145 44 2826 40 6.99608e+06 220735 787024. 2723.27 3.30 0.384786 0.345725 27778 195446 -1 2114 22 1906 2780 212010 46158 3.47486 3.47486 -129.119 -3.47486 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0511402 0.0461001 87 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 17.4 MiB 1.39 975 9706 2651 5494 1561 56.2 MiB 0.16 0.00 4.79397 -141.28 -4.79397 4.79397 1.09 0.00119637 0.00109755 0.0700813 0.0643681 40 3303 38 6.99608e+06 250167 706193. 2443.58 6.45 0.363303 0.325871 26914 176310 -1 2620 23 2520 3437 448745 95617 4.80751 4.80751 -162.56 -4.80751 0 0 926341. 3205.33 0.30 0.19 0.29 -1 -1 0.30 0.0543763 0.0489406 97 61 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17400 1 0.02 -1 -1 30484 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 16.8 MiB 2.53 630 8909 3655 4893 361 55.3 MiB 0.11 0.00 3.0564 -89.3526 -3.0564 3.0564 1.11 0.000862903 0.000790835 0.0534227 0.0489963 38 2055 28 6.99608e+06 191304 678818. 2348.85 3.40 0.246751 0.219611 26626 170182 -1 1643 20 1092 1545 126544 27809 2.99782 2.99782 -99.322 -2.99782 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0346589 0.0310076 64 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 17.5 MiB 1.31 999 13840 5885 7630 325 56.1 MiB 0.20 0.00 3.63599 -124.523 -3.63599 3.63599 1.01 0.00121015 0.00110823 0.100624 0.0922221 42 3382 43 6.99608e+06 235451 744469. 2576.02 3.42 0.402264 0.361057 27202 183097 -1 2337 22 1991 3046 222901 49590 3.85421 3.85421 -132.716 -3.85421 0 0 949917. 3286.91 0.31 0.13 0.29 -1 -1 0.31 0.0523362 0.047154 96 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30232 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 17.3 MiB 0.75 791 13092 5076 6583 1433 55.9 MiB 0.18 0.00 4.34151 -134.806 -4.34151 4.34151 1.13 0.0011392 0.00104466 0.0916082 0.0841119 46 2501 32 6.99608e+06 220735 828058. 2865.25 3.88 0.35918 0.322505 28066 200906 -1 1778 18 1408 1828 128340 29719 3.24426 3.24426 -123.925 -3.24426 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0423246 0.0381811 84 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17648 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 17.3 MiB 0.78 778 13261 3730 7601 1930 55.9 MiB 0.18 0.00 3.17504 -117.557 -3.17504 3.17504 1.18 0.00105468 0.00096568 0.0860526 0.0789544 50 2131 33 6.99608e+06 220735 902133. 3121.57 4.01 0.332075 0.29728 28642 213929 -1 1590 21 1617 2041 147949 35563 3.02106 3.02106 -117.33 -3.02106 0 0 1.08113e+06 3740.92 0.41 0.11 0.37 -1 -1 0.41 0.0453674 0.0407795 89 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.19 17408 1 0.02 -1 -1 30264 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 16.6 MiB 1.55 513 10949 4743 5895 311 55.2 MiB 0.11 0.00 2.33546 -88.3817 -2.33546 2.33546 1.09 0.000767063 0.000701638 0.0585085 0.0535523 40 1324 27 6.99608e+06 147157 706193. 2443.58 2.11 0.225516 0.200701 26914 176310 -1 1181 23 764 860 93166 20453 2.25983 2.25983 -86.0791 -2.25983 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.0346807 0.0308741 52 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17720 1 0.03 -1 -1 30356 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 17.1 MiB 1.97 843 8236 2227 5366 643 55.8 MiB 0.11 0.00 3.78247 -126.288 -3.78247 3.78247 1.08 0.000995929 0.000912087 0.0537636 0.0493085 38 2536 29 6.99608e+06 191304 678818. 2348.85 3.48 0.280087 0.250324 26626 170182 -1 2106 23 1547 2212 217668 42716 3.58136 3.58136 -136.48 -3.58136 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0193745 0.0172233 72 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 17.3 MiB 1.29 802 15273 5455 7440 2378 55.8 MiB 0.20 0.00 3.98218 -132.203 -3.98218 3.98218 1.09 0.00115653 0.00105794 0.101521 0.0930889 44 2430 42 6.99608e+06 294314 787024. 2723.27 2.88 0.385563 0.346159 27778 195446 -1 2006 22 2002 2886 210270 47858 3.85615 3.85615 -138.988 -3.85615 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0508699 0.04574 88 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30240 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 17.2 MiB 2.11 1225 15044 5236 8229 1579 55.9 MiB 0.22 0.00 4.6726 -146.803 -4.6726 4.6726 1.09 0.00121437 0.00111336 0.109981 0.100943 40 3256 42 6.99608e+06 235451 706193. 2443.58 6.70 0.407575 0.366227 26914 176310 -1 2959 22 2174 3170 324163 61807 4.397 4.397 -154.131 -4.397 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0533984 0.0481184 100 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.16 17608 1 0.02 -1 -1 30688 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 16.7 MiB 1.81 422 8539 3493 4523 523 55.3 MiB 0.09 0.00 2.7298 -77.3475 -2.7298 2.7298 1.09 0.000656141 0.000599667 0.0408472 0.0373821 38 1230 26 6.99608e+06 191304 678818. 2348.85 2.13 0.184104 0.16329 26626 170182 -1 988 17 660 740 59916 14111 2.52491 2.52491 -76.7508 -2.52491 0 0 902133. 3121.57 0.29 0.05 0.27 -1 -1 0.29 0.0235006 0.02101 53 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30260 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 16.9 MiB 0.85 692 10050 3569 4878 1603 55.6 MiB 0.14 0.00 4.56174 -113.848 -4.56174 4.56174 1.18 0.00100624 0.000922884 0.0639242 0.058781 40 2097 25 6.99608e+06 220735 706193. 2443.58 3.02 0.286842 0.25746 26914 176310 -1 1605 23 1263 2079 137488 34805 3.61236 3.61236 -117.368 -3.61236 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0456952 0.0410127 66 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.09 16932 1 0.03 -1 -1 30160 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.4 MiB 0.20 399 10055 4241 5582 232 54.9 MiB 0.09 0.00 2.06111 -67.7592 -2.06111 2.06111 1.08 0.000634934 0.000579192 0.0446507 0.0407579 36 1381 35 6.99608e+06 117725 648988. 2245.63 2.47 0.195011 0.172512 26050 158493 -1 935 18 613 680 59062 14806 1.90102 1.90102 -72.2718 -1.90102 0 0 828058. 2865.25 0.28 0.05 0.22 -1 -1 0.28 0.0236036 0.0210377 42 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17564 1 0.03 -1 -1 30172 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 17.0 MiB 1.10 805 13358 5696 7249 413 55.6 MiB 0.17 0.00 4.47086 -121.677 -4.47086 4.47086 1.08 0.00103395 0.000948559 0.0861858 0.0790514 38 2634 33 6.99608e+06 206020 678818. 2348.85 4.38 0.325438 0.29176 26626 170182 -1 2001 18 1258 1814 144356 32185 4.05506 4.05506 -129.534 -4.05506 0 0 902133. 3121.57 0.29 0.09 0.22 -1 -1 0.29 0.0385598 0.0347121 73 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.08 17060 1 0.04 -1 -1 30580 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 17.1 MiB 0.46 715 11617 3653 5870 2094 55.8 MiB 0.15 0.00 2.89821 -97.4108 -2.89821 2.89821 1.08 0.00104907 0.000963546 0.0686035 0.0630324 40 2334 43 6.99608e+06 309029 706193. 2443.58 3.24 0.327181 0.29323 26914 176310 -1 1764 22 1317 2198 155518 39145 2.91362 2.91362 -107.306 -2.91362 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.045317 0.0407505 74 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30240 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 17.4 MiB 1.45 800 6839 1729 4140 970 56.0 MiB 0.11 0.00 4.20669 -125.419 -4.20669 4.20669 1.09 0.00112839 0.00103503 0.0489158 0.0449162 46 2866 37 6.99608e+06 220735 828058. 2865.25 6.37 0.315661 0.282182 28066 200906 -1 1963 27 1930 2965 207915 54574 3.98026 3.98026 -130.663 -3.98026 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0590646 0.053085 87 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30240 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 17.1 MiB 2.15 688 11116 4644 6232 240 55.7 MiB 0.13 0.00 3.13575 -107.33 -3.13575 3.13575 1.09 0.000968622 0.00088708 0.0700065 0.0641887 40 2069 25 6.99608e+06 176588 706193. 2443.58 2.38 0.279098 0.249439 26914 176310 -1 1705 19 1205 1671 144211 32934 2.85647 2.85647 -115.13 -2.85647 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.038049 0.0340981 69 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30148 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 16.7 MiB 1.29 579 8876 3271 4297 1308 55.4 MiB 0.10 0.00 3.70857 -107.816 -3.70857 3.70857 1.08 0.000900638 0.000825327 0.0524497 0.0480736 46 2274 40 6.99608e+06 206020 828058. 2865.25 4.83 0.278434 0.247977 28066 200906 -1 1494 18 1131 1685 141949 32817 3.31781 3.31781 -110.058 -3.31781 0 0 1.01997e+06 3529.29 0.33 0.09 0.33 -1 -1 0.33 0.0333422 0.0298833 66 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30240 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 17.1 MiB 0.77 581 9540 3893 5214 433 55.7 MiB 0.12 0.00 3.25804 -101.918 -3.25804 3.25804 0.97 0.000898651 0.000822994 0.0545981 0.050083 40 1989 36 6.99608e+06 264882 706193. 2443.58 3.20 0.271878 0.242283 26914 176310 -1 1716 21 1169 1835 175888 37843 3.24451 3.24451 -111.764 -3.24451 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0375429 0.0335645 69 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.12 17196 1 0.03 -1 -1 30416 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 17.1 MiB 0.35 677 11234 4696 6284 254 55.5 MiB 0.13 0.00 3.31833 -109.934 -3.31833 3.31833 1.09 0.00090616 0.000830501 0.0675607 0.0619478 38 2069 49 6.99608e+06 147157 678818. 2348.85 3.46 0.298149 0.266498 26626 170182 -1 1632 22 1173 1750 152835 32234 3.08097 3.08097 -114.127 -3.08097 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0396016 0.0354334 58 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.17 17640 1 0.02 -1 -1 30160 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 17.0 MiB 0.84 656 7596 1857 5260 479 55.6 MiB 0.10 0.00 3.30918 -105.476 -3.30918 3.30918 1.11 0.00093345 0.000855632 0.0471981 0.0433134 36 2831 44 6.99608e+06 191304 648988. 2245.63 6.73 0.286798 0.255476 26050 158493 -1 1963 22 1288 1769 137287 33344 3.28422 3.28422 -119.957 -3.28422 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0402396 0.0360169 69 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.20 17500 1 0.03 -1 -1 30368 -1 -1 15 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 17.1 MiB 2.30 919 9036 2362 6094 580 55.5 MiB 0.12 0.00 2.93125 -106.214 -2.93125 2.93125 1.12 0.000971264 0.00089046 0.0573227 0.052576 38 2275 29 6.99608e+06 220735 678818. 2348.85 3.32 0.276748 0.246972 26626 170182 -1 1906 20 1248 1666 131418 27524 2.54072 2.54072 -103.379 -2.54072 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0391056 0.0350672 77 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30436 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 1.12 980 13324 5630 7408 286 55.9 MiB 0.20 0.00 4.30703 -125.875 -4.30703 4.30703 1.11 0.00126727 0.00116613 0.102051 0.0938897 48 2769 27 6.99608e+06 235451 865456. 2994.66 3.52 0.38569 0.347942 28354 207349 -1 2305 21 1566 2487 218085 46245 3.85107 3.85107 -126.186 -3.85107 0 0 1.05005e+06 3633.38 0.35 0.13 0.35 -1 -1 0.35 0.0529057 0.0477849 92 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30224 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 17.7 MiB 1.43 1014 12683 4657 5804 2222 56.2 MiB 0.20 0.00 4.21676 -146.737 -4.21676 4.21676 1.08 0.00126951 0.00116301 0.0929641 0.0852688 40 3377 27 6.99608e+06 279598 706193. 2443.58 4.94 0.38451 0.34573 26914 176310 -1 2683 22 2481 3505 303631 63000 4.1642 4.1642 -153.469 -4.1642 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.064636 0.0582408 106 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30088 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 16.7 MiB 1.17 880 9374 3265 4936 1173 55.4 MiB 0.12 0.00 3.62727 -120.557 -3.62727 3.62727 1.09 0.000952014 0.000872331 0.0602836 0.0553176 38 2274 42 6.99608e+06 161872 678818. 2348.85 3.26 0.293467 0.262042 26626 170182 -1 1870 21 1290 1839 154887 30757 3.07597 3.07597 -117.571 -3.07597 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0400129 0.0358442 66 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30556 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 17.3 MiB 1.48 969 14528 6235 7667 626 56.0 MiB 0.21 0.00 3.54759 -121.928 -3.54759 3.54759 1.10 0.00120949 0.00111002 0.105977 0.0971821 44 3091 40 6.99608e+06 250167 787024. 2723.27 4.01 0.398127 0.357628 27778 195446 -1 2114 23 1808 2557 218723 48461 3.43406 3.43406 -125.843 -3.43406 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0562695 0.0507761 99 61 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30392 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 17.6 MiB 1.49 989 9196 3129 4406 1661 56.2 MiB 0.15 0.00 5.24281 -163.942 -5.24281 5.24281 1.10 0.00123061 0.00112598 0.0699073 0.0641599 46 3107 34 6.99608e+06 250167 828058. 2865.25 5.20 0.361576 0.324569 28066 200906 -1 2427 24 2260 3261 322064 66079 4.9951 4.9951 -167.895 -4.9951 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0581667 0.0523891 104 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 17.8 MiB 2.95 930 9881 4037 5524 320 56.2 MiB 0.16 0.00 5.08213 -159.731 -5.08213 5.08213 1.11 0.00124533 0.00114165 0.0743497 0.0682635 44 3191 49 6.99608e+06 264882 787024. 2723.27 4.39 0.400266 0.359057 27778 195446 -1 2262 22 1979 2791 227435 48423 4.92804 4.92804 -168.151 -4.92804 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.054301 0.0489417 103 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17808 1 0.03 -1 -1 30400 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 17.5 MiB 1.87 879 13768 5339 6393 2036 56.1 MiB 0.19 0.00 3.89582 -126.245 -3.89582 3.89582 1.09 0.00116363 0.00106779 0.097574 0.0895015 48 2742 24 6.99608e+06 235451 865456. 2994.66 3.61 0.360141 0.323779 28354 207349 -1 2238 24 1769 2292 241247 52052 3.50102 3.50102 -127.38 -3.50102 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0549586 0.0494918 93 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17288 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 16.9 MiB 0.96 818 11864 4957 6528 379 55.6 MiB 0.15 0.00 3.99218 -112.33 -3.99218 3.99218 1.09 0.00100284 0.000919504 0.0744651 0.0683375 40 2655 45 6.99608e+06 206020 706193. 2443.58 4.61 0.334533 0.299129 26914 176310 -1 2076 22 1484 2121 208966 48190 3.79596 3.79596 -122.324 -3.79596 0 0 926341. 3205.33 0.33 0.12 0.28 -1 -1 0.33 0.0442328 0.0397214 72 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 18176 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 18.1 MiB 1.28 1337 8083 1871 5905 307 56.4 MiB 0.17 0.00 5.02 -170.696 -5.02 5.02 1.10 0.00147197 0.00134948 0.0684711 0.0629272 50 3572 29 6.99608e+06 309029 902133. 3121.57 3.49 0.402616 0.361669 28642 213929 -1 3217 19 2341 3402 287769 59163 5.59054 5.59054 -190.004 -5.59054 0 0 1.08113e+06 3740.92 0.37 0.16 0.36 -1 -1 0.37 0.0589189 0.0533183 129 87 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30188 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 16.9 MiB 2.79 589 8599 2844 4344 1411 55.4 MiB 0.10 0.00 3.01 -97.4254 -3.01 3.01 1.10 0.000898885 0.000823275 0.0525554 0.0481861 40 1560 21 6.99608e+06 161872 706193. 2443.58 2.67 0.243312 0.216867 26914 176310 -1 1412 22 1176 1593 130059 30761 2.93162 2.93162 -102.009 -2.93162 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0394468 0.0352892 65 28 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30104 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 17.4 MiB 0.68 792 13524 5096 6588 1840 55.9 MiB 0.18 0.00 4.60267 -142.66 -4.60267 4.60267 1.08 0.00113429 0.00104082 0.0957584 0.0878898 52 2817 39 6.99608e+06 220735 926341. 3205.33 3.68 0.368232 0.330874 29218 227130 -1 1873 23 1635 2275 182344 41764 4.12671 4.12671 -138.837 -4.12671 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0474881 0.0426995 85 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30212 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.28 1020 12416 4555 6119 1742 55.8 MiB 0.19 0.00 3.83208 -127.177 -3.83208 3.83208 1.08 0.00115347 0.00105825 0.0882807 0.080984 42 3450 36 6.99608e+06 220735 744469. 2576.02 3.76 0.361526 0.324612 27202 183097 -1 2539 19 1614 2491 229704 48395 3.46042 3.46042 -128.596 -3.46042 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0445603 0.0401272 91 53 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 17.1 MiB 0.79 673 10228 2970 5232 2026 55.8 MiB 0.13 0.00 4.31309 -118.378 -4.31309 4.31309 1.11 0.00103263 0.000945688 0.0646994 0.0593547 40 2459 37 6.99608e+06 235451 706193. 2443.58 4.59 0.316072 0.283014 26914 176310 -1 1893 23 1363 2339 206113 46973 4.01142 4.01142 -127.274 -4.01142 0 0 926341. 3205.33 0.30 0.12 0.28 -1 -1 0.30 0.0465719 0.0418284 68 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30288 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 17.4 MiB 1.25 915 11571 4863 6343 365 56.0 MiB 0.17 0.00 4.31005 -133.816 -4.31005 4.31005 1.12 0.00117065 0.00107413 0.0833371 0.076458 40 2850 30 6.99608e+06 220735 706193. 2443.58 3.73 0.348914 0.313136 26914 176310 -1 2174 25 1722 2282 317601 125270 3.58916 3.58916 -127.554 -3.58916 0 0 926341. 3205.33 0.27 0.10 0.15 -1 -1 0.27 0.0242714 0.0216238 90 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30356 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1099 13430 4920 6010 2500 55.8 MiB 0.19 0.00 3.65969 -129.38 -3.65969 3.65969 1.08 0.00119077 0.00109183 0.0980635 0.0899782 40 2995 22 6.99608e+06 220735 706193. 2443.58 3.90 0.361533 0.325046 26914 176310 -1 2604 43 2315 3605 725612 310216 3.48731 3.48731 -133.555 -3.48731 0 0 926341. 3205.33 0.30 0.34 0.28 -1 -1 0.30 0.0925555 0.0829523 92 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 17.6 MiB 2.17 1101 15216 5672 7066 2478 56.2 MiB 0.22 0.00 3.74401 -128.073 -3.74401 3.74401 1.08 0.00124125 0.00113795 0.114521 0.10502 38 3558 41 6.99608e+06 235451 678818. 2348.85 6.14 0.43815 0.393693 26626 170182 -1 2765 18 1860 2465 189085 40352 3.60011 3.60011 -137.797 -3.60011 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0461544 0.041674 101 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17568 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 17.1 MiB 0.78 743 11034 4121 5253 1660 55.5 MiB 0.07 0.00 4.35583 -118.93 -4.35583 4.35583 0.74 0.000391567 0.000353726 0.0279571 0.025339 40 2999 39 6.99608e+06 206020 706193. 2443.58 3.79 0.220861 0.195956 26914 176310 -1 2275 23 1507 2283 235552 56739 4.97157 4.97157 -142.8 -4.97157 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0478928 0.043031 74 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 17.1 MiB 1.75 793 9042 2962 4450 1630 55.7 MiB 0.12 0.00 4.21168 -126.242 -4.21168 4.21168 1.09 0.00108983 0.00100023 0.0632309 0.0580535 42 3421 45 6.99608e+06 191304 744469. 2576.02 3.21 0.338366 0.303031 27202 183097 -1 2058 21 1737 2434 191590 46230 4.02242 4.02242 -132.286 -4.02242 0 0 949917. 3286.91 0.27 0.06 0.15 -1 -1 0.27 0.0195276 0.0174397 81 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30356 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 17.4 MiB 0.90 950 10726 4120 5384 1222 56.1 MiB 0.16 0.00 4.31211 -136.261 -4.31211 4.31211 1.09 0.00121362 0.00111291 0.0804401 0.0737893 48 3520 36 6.99608e+06 235451 865456. 2994.66 5.83 0.375288 0.33705 28354 207349 -1 2537 37 2842 4365 548908 166410 4.26266 4.26266 -143.635 -4.26266 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0828325 0.0742838 99 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30248 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 17.7 MiB 1.01 977 12980 5460 6998 522 56.2 MiB 0.21 0.00 3.94476 -129.858 -3.94476 3.94476 1.09 0.00124987 0.00114117 0.106732 0.097806 54 3499 42 6.99608e+06 235451 949917. 3286.91 4.59 0.411103 0.36916 29506 232905 -1 2498 22 2198 3206 290016 64071 3.76882 3.76882 -135.138 -3.76882 0 0 1.17392e+06 4061.99 0.38 0.15 0.39 -1 -1 0.38 0.0546679 0.0493078 104 77 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17536 1 0.03 -1 -1 30012 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 0.61 645 10769 4489 5977 303 55.2 MiB 0.11 0.00 3.21628 -99.3334 -3.21628 3.21628 1.07 0.000538873 0.000484347 0.0570639 0.0521292 38 1991 25 6.99608e+06 147157 678818. 2348.85 3.46 0.256381 0.228311 26626 170182 -1 1530 21 1168 1592 107224 24373 2.80227 2.80227 -98.3658 -2.80227 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0366281 0.0327473 60 23 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17696 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 17.2 MiB 0.83 827 10726 4440 5997 289 55.8 MiB 0.15 0.00 4.06528 -146.791 -4.06528 4.06528 1.08 0.00111555 0.00102283 0.0739167 0.0678225 46 2656 31 6.99608e+06 220735 828058. 2865.25 3.65 0.327663 0.293158 28066 200906 -1 1977 20 1982 2630 211157 45567 3.77505 3.77505 -141.677 -3.77505 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0446152 0.0400859 93 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 17.5 MiB 0.99 950 12808 5316 6896 596 56.2 MiB 0.19 0.00 4.80548 -149.393 -4.80548 4.80548 1.08 0.00129994 0.0011944 0.100511 0.0923199 50 3454 27 6.99608e+06 235451 902133. 3121.57 4.94 0.399299 0.359396 28642 213929 -1 2403 29 2499 3801 392900 102108 5.00186 5.00186 -162.712 -5.00186 0 0 1.08113e+06 3740.92 0.35 0.21 0.36 -1 -1 0.35 0.0736703 0.0664168 98 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 17.5 MiB 0.62 849 13599 4722 6429 2448 56.1 MiB 0.19 0.00 4.35389 -139.539 -4.35389 4.35389 1.10 0.0011492 0.00105445 0.0942326 0.0864396 38 2795 34 6.99608e+06 220735 678818. 2348.85 4.94 0.35892 0.322293 26626 170182 -1 1911 22 1727 2347 177407 38768 3.50386 3.50386 -131.231 -3.50386 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0506264 0.0455936 85 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30268 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 16.8 MiB 1.23 640 11474 4735 6197 542 55.5 MiB 0.13 0.00 3.65345 -112.727 -3.65345 3.65345 1.10 0.000955561 0.000875764 0.0639956 0.0586762 48 1940 24 6.99608e+06 294314 865456. 2994.66 4.21 0.247241 0.220878 28354 207349 -1 1580 19 1112 1760 198312 48286 3.25871 3.25871 -116.61 -3.25871 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0366172 0.0327963 72 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.14 17784 1 0.03 -1 -1 30344 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 17.6 MiB 1.59 1528 15924 5227 8931 1766 56.4 MiB 0.25 0.00 6.09323 -187.636 -6.09323 6.09323 1.09 0.00138279 0.00126636 0.129836 0.119254 40 4257 42 6.99608e+06 264882 706193. 2443.58 7.75 0.481012 0.432823 26914 176310 -1 3547 23 2806 4085 457786 97175 5.74254 5.74254 -196.746 -5.74254 0 0 926341. 3205.33 0.30 0.20 0.28 -1 -1 0.30 0.0641215 0.0578373 116 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 17.4 MiB 0.63 768 13524 5053 6623 1848 56.0 MiB 0.18 0.00 4.76624 -142.397 -4.76624 4.76624 1.09 0.00114551 0.00104876 0.0970901 0.0890131 46 2785 27 6.99608e+06 206020 828058. 2865.25 4.45 0.347422 0.312002 28066 200906 -1 1845 20 1494 2008 149110 34618 4.17065 4.17065 -143.287 -4.17065 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0470707 0.042489 83 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.14 17140 1 0.03 -1 -1 30344 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.6 MiB 0.25 516 10672 4080 5320 1272 55.3 MiB 0.12 0.00 2.96036 -91.6204 -2.96036 2.96036 1.11 0.000839607 0.000769499 0.0577388 0.0530075 40 1546 38 6.99608e+06 191304 706193. 2443.58 3.13 0.256129 0.228307 26914 176310 -1 1189 18 859 1340 90198 25029 2.86132 2.86132 -98.2156 -2.86132 0 0 926341. 3205.33 0.30 0.07 0.28 -1 -1 0.30 0.0301785 0.0269545 51 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.18 17828 1 0.03 -1 -1 30096 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 17.4 MiB 1.22 903 15560 6646 7056 1858 55.9 MiB 0.20 0.00 4.75332 -131.249 -4.75332 4.75332 1.09 0.00118571 0.0010876 0.11038 0.101283 48 2982 46 6.99608e+06 235451 865456. 2994.66 5.22 0.41691 0.375047 28354 207349 -1 2202 23 1722 2767 230689 51369 4.63516 4.63516 -141.993 -4.63516 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0530848 0.0478312 85 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17076 1 0.03 -1 -1 30220 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.8 MiB 0.81 493 9540 2740 5276 1524 55.3 MiB 0.11 0.00 2.966 -97.1273 -2.966 2.966 1.08 0.000889742 0.000815883 0.0535904 0.049189 38 1851 39 6.99608e+06 206020 678818. 2348.85 3.35 0.26619 0.237492 26626 170182 -1 1279 23 1077 1568 111684 26906 3.55017 3.55017 -109.108 -3.55017 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0393354 0.0350643 57 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17384 1 0.03 -1 -1 30344 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 16.8 MiB 0.60 768 9081 3737 5047 297 55.5 MiB 0.12 0.00 3.80347 -118.428 -3.80347 3.80347 1.08 0.000953003 0.000873799 0.0575279 0.0528044 38 2446 44 6.99608e+06 191304 678818. 2348.85 4.64 0.297439 0.265436 26626 170182 -1 1772 21 1331 1863 163805 32644 3.34751 3.34751 -114.704 -3.34751 0 0 902133. 3121.57 0.34 0.11 0.26 -1 -1 0.34 0.041202 0.0369383 69 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17908 1 0.03 -1 -1 30492 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 17.4 MiB 1.66 956 12416 5112 6468 836 56.1 MiB 0.18 0.00 4.12666 -129.088 -4.12666 4.12666 1.08 0.00116004 0.00106413 0.0884212 0.0811378 38 3346 46 6.99608e+06 264882 678818. 2348.85 6.42 0.384561 0.344954 26626 170182 -1 2546 22 1925 2830 259948 53297 4.4105 4.4105 -145.109 -4.4105 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0508516 0.0457415 97 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 974 13599 5339 6861 1399 56.0 MiB 0.20 0.00 4.25698 -140.266 -4.25698 4.25698 1.10 0.00118401 0.00108566 0.098286 0.0901365 38 3070 41 6.99608e+06 220735 678818. 2348.85 4.97 0.389968 0.349655 26626 170182 -1 2342 23 1928 2638 217168 45954 4.67035 4.67035 -156.564 -4.67035 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0533935 0.0480747 93 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30124 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 17.2 MiB 1.99 1087 13768 5458 5698 2612 55.9 MiB 0.20 0.00 4.58577 -147.33 -4.58577 4.58577 1.10 0.00116326 0.00106679 0.0985759 0.0904356 38 3125 30 6.99608e+06 220735 678818. 2348.85 5.79 0.370553 0.33291 26626 170182 -1 2517 19 1814 2602 203364 41786 4.42561 4.42561 -152.77 -4.42561 0 0 902133. 3121.57 0.32 0.12 0.27 -1 -1 0.32 0.0462991 0.041794 90 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17436 1 0.03 -1 -1 30328 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 17.0 MiB 1.91 854 11609 4663 6043 903 55.7 MiB 0.15 0.00 3.95082 -130.122 -3.95082 3.95082 1.09 0.000955318 0.000875918 0.0727408 0.0667669 38 2338 24 6.99608e+06 161872 678818. 2348.85 3.12 0.280097 0.25018 26626 170182 -1 1952 23 1202 1634 138008 27635 3.34956 3.34956 -121.518 -3.34956 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0427938 0.0383202 67 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.18 17704 1 0.03 -1 -1 30392 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 0.92 785 11813 4965 6422 426 55.7 MiB 0.16 0.00 3.70143 -122.026 -3.70143 3.70143 1.12 0.00104281 0.000955211 0.0785815 0.0719896 46 2466 44 6.99608e+06 206020 828058. 2865.25 3.75 0.336515 0.301065 28066 200906 -1 1742 24 1592 2267 169951 39702 3.57132 3.57132 -119.748 -3.57132 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0488484 0.0437919 86 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.12 17856 1 0.03 -1 -1 30416 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 17.2 MiB 1.19 809 10756 2943 5618 2195 55.8 MiB 0.17 0.00 3.4598 -111.751 -3.4598 3.4598 1.08 0.00108395 0.00099328 0.0796534 0.0731504 46 2326 24 6.99608e+06 279598 828058. 2865.25 3.66 0.318008 0.285187 28066 200906 -1 1700 21 1475 2174 152653 35067 3.29957 3.29957 -109.769 -3.29957 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0455529 0.0409493 91 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.21 17240 1 0.03 -1 -1 30396 -1 -1 17 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 17.0 MiB 0.49 678 13280 5850 6635 795 55.7 MiB 0.15 0.00 3.68935 -104.602 -3.68935 3.68935 0.98 0.000961613 0.000881162 0.0804875 0.0737777 42 2430 50 6.99608e+06 250167 744469. 2576.02 3.68 0.331449 0.29666 27202 183097 -1 1806 21 1391 2073 190827 45683 3.81422 3.81422 -114.081 -3.81422 0 0 949917. 3286.91 0.31 0.11 0.30 -1 -1 0.31 0.0400287 0.0358731 71 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30520 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 17.2 MiB 1.81 779 10020 4070 5537 413 55.8 MiB 0.13 0.00 4.56081 -142.799 -4.56081 4.56081 1.10 0.00103869 0.000951352 0.059057 0.0540045 44 2750 43 6.99608e+06 220735 787024. 2723.27 3.64 0.296024 0.264172 27778 195446 -1 1920 23 1788 2373 198004 44117 3.97955 3.97955 -138.289 -3.97955 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0468184 0.0419785 87 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30124 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 17.4 MiB 0.91 988 11366 4377 5078 1911 56.0 MiB 0.16 0.00 3.4477 -126.272 -3.4477 3.4477 1.10 0.00109307 0.00100131 0.0777245 0.0712269 40 3223 42 6.99608e+06 206020 706193. 2443.58 5.29 0.345476 0.309076 26914 176310 -1 2772 21 2024 2787 332780 64435 3.28857 3.28857 -136.411 -3.28857 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0456434 0.0409934 93 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30324 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 17.1 MiB 0.37 735 13335 5144 6746 1445 55.8 MiB 0.15 0.00 4.50448 -121.497 -4.50448 4.50448 1.08 0.00103849 0.000953856 0.0748994 0.068778 46 2320 24 6.99608e+06 353176 828058. 2865.25 4.35 0.297804 0.26726 28066 200906 -1 1726 19 1053 1905 137788 31995 3.80592 3.80592 -119.773 -3.80592 0 0 1.01997e+06 3529.29 0.33 0.10 0.34 -1 -1 0.33 0.0408576 0.0367638 74 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.21 17560 1 0.03 -1 -1 30376 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 17.5 MiB 1.82 849 9872 4071 5471 330 56.1 MiB 0.15 0.00 4.41391 -145.413 -4.41391 4.41391 1.09 0.00117874 0.00108122 0.0734314 0.0674222 44 3096 30 6.99608e+06 206020 787024. 2723.27 3.50 0.343449 0.308459 27778 195446 -1 2236 23 1920 2868 210913 47371 4.3396 4.3396 -149.501 -4.3396 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0535794 0.0482711 86 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17760 1 0.02 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 17.5 MiB 0.80 1031 9706 3955 5323 428 56.0 MiB 0.15 0.00 5.10216 -163.017 -5.10216 5.10216 1.09 0.00125893 0.00115464 0.0733005 0.067189 48 3809 38 6.99608e+06 250167 865456. 2994.66 7.87 0.380737 0.341457 28354 207349 -1 2651 28 2478 3481 495235 132429 5.38994 5.38994 -176.091 -5.38994 0 0 1.05005e+06 3633.38 0.34 0.23 0.34 -1 -1 0.34 0.0671675 0.0603663 102 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1043 9881 4045 5563 273 56.1 MiB 0.16 0.00 4.39921 -147.12 -4.39921 4.39921 1.09 0.0012589 0.00115223 0.0746023 0.0683871 46 3556 37 6.99608e+06 250167 828058. 2865.25 4.15 0.378029 0.339153 28066 200906 -1 2542 22 1921 2813 246127 50838 4.2931 4.2931 -151.36 -4.2931 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0548478 0.0494338 104 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.20 17552 1 0.03 -1 -1 30232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 16.8 MiB 0.74 639 8765 3407 4448 910 55.5 MiB 0.11 0.00 4.31695 -124.149 -4.31695 4.31695 1.10 0.000933175 0.000855983 0.0545339 0.0500269 42 2236 38 6.99608e+06 191304 744469. 2576.02 2.97 0.278657 0.248269 27202 183097 -1 1564 19 1116 1583 126166 28470 3.33556 3.33556 -115.866 -3.33556 0 0 949917. 3286.91 0.31 0.09 0.30 -1 -1 0.31 0.0364435 0.0326764 71 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30396 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 919 12808 4622 5804 2382 56.0 MiB 0.17 0.00 5.00926 -154.589 -5.00926 5.00926 1.08 0.00122507 0.00112342 0.0947277 0.0869549 48 2897 47 6.99608e+06 264882 865456. 2994.66 3.64 0.407068 0.36543 28354 207349 -1 2329 23 2356 3266 309320 75619 4.83874 4.83874 -164.15 -4.83874 0 0 1.05005e+06 3633.38 0.35 0.16 0.33 -1 -1 0.35 0.0554031 0.0498851 104 63 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30356 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 17.3 MiB 1.09 773 12860 5275 6775 810 55.9 MiB 0.17 0.00 4.8046 -140.908 -4.8046 4.8046 1.09 0.0011492 0.00105436 0.0918723 0.0843511 48 2906 29 6.99608e+06 206020 865456. 2994.66 4.69 0.351843 0.31625 28354 207349 -1 2232 21 1751 2784 284527 71100 4.13436 4.13436 -142.551 -4.13436 0 0 1.05005e+06 3633.38 0.35 0.15 0.38 -1 -1 0.35 0.0499367 0.0450314 82 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.12 17820 1 0.03 -1 -1 30092 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 17.4 MiB 1.18 794 10228 3166 5486 1576 55.9 MiB 0.15 0.00 5.19565 -143.212 -5.19565 5.19565 1.08 0.00107269 0.00100129 0.0703128 0.0644917 38 3224 38 6.99608e+06 250167 678818. 2348.85 7.81 0.3257 0.291578 26626 170182 -1 2195 21 1511 2171 195678 43019 4.59296 4.59296 -149.718 -4.59296 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0475509 0.0428174 87 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 17.7 MiB 1.93 966 13788 4937 6208 2643 56.2 MiB 0.19 0.00 4.24398 -133.079 -4.24398 4.24398 1.08 0.00120488 0.00110476 0.0968639 0.0888002 46 3311 48 6.99608e+06 294314 828058. 2865.25 6.66 0.414336 0.371955 28066 200906 -1 2374 27 2588 3623 402761 112973 4.3885 4.3885 -146.75 -4.3885 0 0 1.01997e+06 3529.29 0.34 0.13 0.34 -1 -1 0.34 0.0335121 0.0299482 108 83 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 17.3 MiB 1.57 1164 15481 5166 8845 1470 56.0 MiB 0.23 0.00 4.66597 -153.274 -4.66597 4.66597 1.08 0.00119684 0.00109838 0.10996 0.100807 40 3016 25 6.99608e+06 250167 706193. 2443.58 4.40 0.37075 0.33328 26914 176310 -1 2766 22 2077 3028 306564 59776 4.30941 4.30941 -157.067 -4.30941 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0530467 0.0477654 95 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17816 1 0.03 -1 -1 30304 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 17.6 MiB 2.28 970 14431 6168 7633 630 56.3 MiB 0.22 0.00 3.80498 -123.528 -3.80498 3.80498 1.11 0.0012036 0.00110337 0.112571 0.103143 46 3095 47 6.99608e+06 294314 828058. 2865.25 3.96 0.415606 0.372966 28066 200906 -1 2327 21 1984 2580 225360 47479 3.58866 3.58866 -125.19 -3.58866 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0507945 0.0457176 109 85 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17104 1 0.02 -1 -1 30368 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 16.7 MiB 1.06 673 8289 1936 5635 718 55.4 MiB 0.10 0.00 3.54309 -104.459 -3.54309 3.54309 1.10 0.000892566 0.000819583 0.049922 0.045894 36 2073 30 6.99608e+06 147157 648988. 2245.63 2.78 0.242304 0.215929 26050 158493 -1 1713 23 1167 1811 179356 40626 3.29327 3.29327 -116.101 -3.29327 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0392691 0.0350805 54 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30276 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 17.6 MiB 0.70 998 13731 5201 6084 2446 56.2 MiB 0.20 0.00 5.23946 -166.614 -5.23946 5.23946 1.09 0.00121697 0.0011155 0.0990516 0.0908448 46 3007 25 6.99608e+06 250167 828058. 2865.25 5.69 0.365056 0.328045 28066 200906 -1 2369 22 2125 3007 423869 125683 4.61914 4.61914 -158.329 -4.61914 0 0 1.01997e+06 3529.29 0.33 0.19 0.32 -1 -1 0.33 0.0531495 0.0479942 100 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 17.5 MiB 1.00 1023 11631 4065 5883 1683 56.1 MiB 0.18 0.00 4.8947 -165.145 -4.8947 4.8947 1.09 0.00128592 0.00117884 0.0892813 0.0818749 40 3825 35 6.99608e+06 250167 706193. 2443.58 6.65 0.401024 0.360313 26914 176310 -1 3090 21 2784 3862 393065 81021 5.40114 5.40114 -190.623 -5.40114 0 0 926341. 3205.33 0.30 0.18 0.29 -1 -1 0.30 0.054914 0.0495398 109 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17644 1 0.03 -1 -1 30092 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 17.0 MiB 1.00 649 12083 5091 6584 408 55.6 MiB 0.14 0.00 3.80367 -112.996 -3.80367 3.80367 1.09 0.000930657 0.00085282 0.0738313 0.0677115 42 2423 39 6.99608e+06 161872 744469. 2576.02 3.42 0.303153 0.270915 27202 183097 -1 1721 23 1462 1873 165965 39160 3.57511 3.57511 -118.197 -3.57511 0 0 949917. 3286.91 0.31 0.11 0.27 -1 -1 0.31 0.0419107 0.037484 69 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17292 1 0.03 -1 -1 30384 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.9 MiB 0.45 500 9836 4038 5376 422 55.4 MiB 0.11 0.00 3.32523 -100.829 -3.32523 3.32523 1.08 0.000885941 0.000812117 0.0566718 0.0519228 44 1930 39 6.99608e+06 191304 787024. 2723.27 2.89 0.267666 0.238829 27778 195446 -1 1352 25 1156 1781 120042 29179 3.25447 3.25447 -106.844 -3.25447 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0430079 0.0384468 56 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30448 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 17.2 MiB 0.81 868 11909 4701 5758 1450 55.8 MiB 0.16 0.00 4.58703 -149.04 -4.58703 4.58703 1.08 0.00116532 0.00106995 0.0856055 0.0786148 46 2684 28 6.99608e+06 220735 828058. 2865.25 3.00 0.34841 0.312978 28066 200906 -1 1970 30 1883 2462 174865 39592 4.33525 4.33525 -150.653 -4.33525 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0670356 0.0601634 88 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30456 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 17.5 MiB 1.68 896 11571 3933 6047 1591 56.1 MiB 0.17 0.00 4.54977 -137.477 -4.54977 4.54977 1.10 0.00116652 0.00106935 0.0834157 0.076491 46 2917 48 6.99608e+06 220735 828058. 2865.25 4.41 0.371624 0.333019 28066 200906 -1 2011 23 1738 2395 192670 42992 4.31425 4.31425 -142.349 -4.31425 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0528339 0.0475556 95 56 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17396 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 17.4 MiB 0.41 847 13556 4796 7036 1724 55.9 MiB 0.21 0.00 4.71017 -139.049 -4.71017 4.71017 1.11 0.00121518 0.00111622 0.0977834 0.0898604 44 3122 48 6.99608e+06 250167 787024. 2723.27 3.96 0.418612 0.377132 27778 195446 -1 2155 23 1937 3243 335429 101756 4.32031 4.32031 -143.248 -4.32031 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0558999 0.0504369 83 3 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30100 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 17.1 MiB 1.12 742 9042 3157 4137 1748 55.7 MiB 0.11 0.00 3.64737 -104.512 -3.64737 3.64737 1.10 0.00104808 0.000961014 0.0604104 0.0554495 48 2323 27 6.99608e+06 235451 865456. 2994.66 3.14 0.29125 0.260335 28354 207349 -1 2005 21 1525 2217 196585 45075 3.21422 3.21422 -112.086 -3.21422 0 0 1.05005e+06 3633.38 0.35 0.12 0.35 -1 -1 0.35 0.0449195 0.0403499 86 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30600 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 16.7 MiB 0.95 490 9374 3097 4710 1567 55.2 MiB 0.11 0.00 3.44679 -100.328 -3.44679 3.44679 1.09 0.000875151 0.000802828 0.0559208 0.0513468 38 1628 40 6.99608e+06 220735 678818. 2348.85 4.09 0.25919 0.230799 26626 170182 -1 1015 22 964 1436 85969 21901 3.78332 3.78332 -105.678 -3.78332 0 0 902133. 3121.57 0.29 0.08 0.27 -1 -1 0.29 0.0378589 0.0338021 66 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 17848 1 0.03 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1154 16102 6967 8731 404 56.5 MiB 0.25 0.00 4.18254 -144.202 -4.18254 4.18254 1.10 0.00137198 0.00125841 0.128485 0.117915 46 4050 36 6.99608e+06 264882 828058. 2865.25 8.65 0.459332 0.413416 28066 200906 -1 2908 20 2381 3583 293313 62159 4.25831 4.25831 -148.246 -4.25831 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0556495 0.0502866 111 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17660 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 17.4 MiB 1.73 1126 13496 4705 6380 2411 56.1 MiB 0.21 0.00 5.49463 -159.408 -5.49463 5.49463 1.09 0.00118907 0.00109019 0.0998072 0.0915973 38 3177 46 6.99608e+06 250167 678818. 2348.85 5.76 0.382061 0.34251 26626 170182 -1 2724 25 2603 3642 402783 105038 4.74444 4.74444 -164.451 -4.74444 0 0 902133. 3121.57 0.31 0.21 0.27 -1 -1 0.31 0.0598834 0.0539366 100 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 17.2 MiB 0.94 926 14354 6182 7861 311 55.8 MiB 0.19 0.00 4.28347 -151.804 -4.28347 4.28347 1.11 0.00107768 0.000986533 0.0966611 0.0885936 48 2248 21 6.99608e+06 206020 865456. 2994.66 2.81 0.321914 0.288895 28354 207349 -1 1928 19 1425 1785 146446 31779 3.62281 3.62281 -138.169 -3.62281 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0416219 0.0374266 91 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.10 17700 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 17.2 MiB 0.72 1057 13599 5180 6238 2181 55.8 MiB 0.19 0.00 4.11318 -134.456 -4.11318 4.11318 1.08 0.00110373 0.00101267 0.0924332 0.0848494 38 2724 25 6.99608e+06 220735 678818. 2348.85 3.18 0.332038 0.29835 26626 170182 -1 2270 21 1412 1911 157008 31445 3.87982 3.87982 -137.691 -3.87982 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0466711 0.042031 81 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17912 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 17.5 MiB 1.30 870 12120 4959 6494 667 56.4 MiB 0.18 0.00 4.09557 -123.875 -4.09557 4.09557 1.09 0.00123159 0.00112866 0.0909194 0.0834611 42 3474 41 6.99608e+06 250167 744469. 2576.02 3.55 0.393028 0.353328 27202 183097 -1 2179 21 2026 2841 215668 48460 4.10972 4.10972 -131.468 -4.10972 0 0 949917. 3286.91 0.31 0.13 0.30 -1 -1 0.31 0.0523314 0.0471581 97 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17920 1 0.03 -1 -1 30108 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 17.4 MiB 1.43 825 9205 3109 4150 1946 55.9 MiB 0.13 0.00 3.47679 -109.391 -3.47679 3.47679 1.09 0.00107633 0.000987094 0.0621826 0.0570589 46 2602 31 6.99608e+06 250167 828058. 2865.25 3.49 0.304786 0.272801 28066 200906 -1 1955 25 1736 2700 204746 44982 2.98316 2.98316 -108.983 -2.98316 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0526117 0.0471799 88 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 17.2 MiB 0.85 918 10536 3621 5008 1907 55.9 MiB 0.16 0.00 4.39601 -144.18 -4.39601 4.39601 1.13 0.00118452 0.00108497 0.0781172 0.0715612 46 3353 30 6.99608e+06 206020 828058. 2865.25 4.76 0.352179 0.316075 28066 200906 -1 2447 22 1820 2659 238030 50430 4.86281 4.86281 -154.129 -4.86281 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.054118 0.0487511 88 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57580 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 17.7 MiB 2.39 942 12292 4666 5756 1870 56.2 MiB 0.18 0.00 3.70017 -126.602 -3.70017 3.70017 1.10 0.00125919 0.00115361 0.0934224 0.0856285 48 3168 40 6.99608e+06 235451 865456. 2994.66 5.98 0.404778 0.363544 28354 207349 -1 2445 29 2504 3455 343966 87145 3.56046 3.56046 -132.854 -3.56046 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0710283 0.0639023 103 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30320 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 16.9 MiB 1.21 638 10503 3616 4659 2228 55.5 MiB 0.13 0.00 4.33189 -121.838 -4.33189 4.33189 1.09 0.000927905 0.000851584 0.0648271 0.0595629 38 1692 24 6.99608e+06 206020 678818. 2348.85 2.49 0.26199 0.234106 26626 170182 -1 1377 20 1243 1634 118973 26855 3.32456 3.32456 -115.376 -3.32456 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0380205 0.0341076 70 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17796 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 17.4 MiB 2.02 733 10370 4308 5800 262 55.9 MiB 0.13 0.00 4.00228 -133.8 -4.00228 4.00228 1.09 0.00101858 0.000932807 0.0666996 0.0610919 44 2610 40 6.99608e+06 206020 787024. 2723.27 3.53 0.317338 0.283444 27778 195446 -1 1795 22 1481 2009 156084 34478 3.77925 3.77925 -136.622 -3.77925 0 0 997811. 3452.63 0.33 0.11 0.29 -1 -1 0.33 0.0443815 0.0398007 79 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 17.0 MiB 0.77 764 12362 5067 6494 801 55.6 MiB 0.17 0.00 4.07608 -123.99 -4.07608 4.07608 1.09 0.00110946 0.00101876 0.0861858 0.0791629 46 2867 29 6.99608e+06 220735 828058. 2865.25 4.68 0.334818 0.30076 28066 200906 -1 1915 24 1817 2659 234904 53092 3.84482 3.84482 -130.987 -3.84482 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0524789 0.04718 80 33 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30548 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 16.9 MiB 0.93 586 8909 3659 4796 454 55.6 MiB 0.06 0.00 3.79267 -108.98 -3.79267 3.79267 0.77 0.000399758 0.000359848 0.0229846 0.0207815 44 2352 39 6.99608e+06 191304 787024. 2723.27 3.41 0.234547 0.207621 27778 195446 -1 1570 31 1378 1749 242201 105330 3.57531 3.57531 -110.334 -3.57531 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0505404 0.0449289 68 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.14 17592 1 0.03 -1 -1 30052 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 16.8 MiB 0.80 860 12076 5115 6633 328 55.5 MiB 0.15 0.00 4.30315 -133.848 -4.30315 4.30315 1.09 0.000951116 0.000871914 0.0743711 0.0681943 38 2379 33 6.99608e+06 176588 678818. 2348.85 3.98 0.297084 0.265389 26626 170182 -1 1900 19 1328 1759 137489 29036 3.73446 3.73446 -133.615 -3.73446 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0370042 0.033192 73 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 17.4 MiB 0.90 1156 13840 5407 6744 1689 56.0 MiB 0.20 0.00 4.42187 -150.582 -4.42187 4.42187 1.17 0.00122216 0.00112127 0.102214 0.093829 46 2902 21 6.99608e+06 250167 828058. 2865.25 3.31 0.361016 0.324858 28066 200906 -1 2353 23 2067 2872 231612 47712 3.75905 3.75905 -142.095 -3.75905 0 0 1.01997e+06 3529.29 0.39 0.16 0.33 -1 -1 0.39 0.0619373 0.0560201 101 64 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.20 17376 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 16.9 MiB 0.78 820 12876 4559 5981 2336 55.5 MiB 0.16 0.00 3.74867 -118.743 -3.74867 3.74867 1.17 0.000910962 0.000835144 0.0756146 0.0693066 36 2421 43 6.99608e+06 191304 648988. 2245.63 4.79 0.303993 0.269994 26050 158493 -1 2079 20 1267 1781 176497 34895 3.12421 3.12421 -119.163 -3.12421 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0371261 0.0332296 71 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30012 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 17.5 MiB 0.87 889 10726 4477 5918 331 56.1 MiB 0.16 0.00 3.49879 -116.053 -3.49879 3.49879 1.13 0.00115037 0.00105412 0.0796434 0.0731126 48 2372 28 6.99608e+06 220735 865456. 2994.66 3.07 0.338034 0.30323 28354 207349 -1 1864 16 1347 1780 128094 30206 3.22856 3.22856 -116.238 -3.22856 0 0 1.05005e+06 3633.38 0.36 0.09 0.35 -1 -1 0.36 0.0392533 0.0354419 91 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30296 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 17.8 MiB 2.48 1223 9263 3795 5242 226 56.4 MiB 0.15 0.00 4.74537 -163.238 -4.74537 4.74537 1.11 0.00125417 0.00115005 0.0681835 0.0625366 48 3333 47 6.99608e+06 294314 865456. 2994.66 5.58 0.396464 0.355619 28354 207349 -1 2908 35 3164 4392 767405 233701 4.54929 4.54929 -166.714 -4.54929 0 0 1.05005e+06 3633.38 0.35 0.32 0.34 -1 -1 0.35 0.0824277 0.0740056 113 91 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30276 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 17.4 MiB 1.76 727 10316 3968 5326 1022 56.0 MiB 0.13 0.00 3.38944 -114.889 -3.38944 3.38944 1.09 0.000997464 0.000913266 0.0676786 0.0620248 46 2548 48 6.99608e+06 176588 828058. 2865.25 5.13 0.331732 0.296218 28066 200906 -1 1774 21 1715 2269 170442 39233 3.16641 3.16641 -116.986 -3.16641 0 0 1.01997e+06 3529.29 0.33 0.11 0.32 -1 -1 0.33 0.0417862 0.0374252 80 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17928 1 0.03 -1 -1 30264 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 16.9 MiB 0.61 695 11609 4409 5699 1501 55.5 MiB 0.15 0.00 3.88892 -124.254 -3.88892 3.88892 1.10 0.000987081 0.000902693 0.0769316 0.0704317 40 2563 29 6.99608e+06 161872 706193. 2443.58 5.21 0.297211 0.265854 26914 176310 -1 2106 19 1525 2213 231571 51201 3.43886 3.43886 -127.129 -3.43886 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0384946 0.0345423 72 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17912 1 0.03 -1 -1 30272 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 17.0 MiB 1.34 729 11034 3646 5163 2225 55.5 MiB 0.14 0.00 4.07043 -123.448 -4.07043 4.07043 1.09 0.00108049 0.000990694 0.0742129 0.0680555 46 2576 50 6.99608e+06 206020 828058. 2865.25 4.10 0.353364 0.316495 28066 200906 -1 1832 30 1790 2581 175346 42302 4.16472 4.16472 -129.342 -4.16472 0 0 1.01997e+06 3529.29 0.33 0.13 0.18 -1 -1 0.33 0.0615958 0.0552665 79 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17864 1 0.03 -1 -1 30284 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 17.4 MiB 1.38 807 9881 4044 5289 548 56.0 MiB 0.13 0.00 3.78147 -112.033 -3.78147 3.78147 1.09 0.00108217 0.000992776 0.0661805 0.0607682 40 2561 37 6.99608e+06 264882 706193. 2443.58 5.41 0.3207 0.286952 26914 176310 -1 2185 21 1573 2240 248384 59453 3.75971 3.75971 -116.507 -3.75971 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0457208 0.0411192 88 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.13 17760 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 1189 13031 5003 6393 1635 56.3 MiB 0.20 0.00 5.55394 -180.701 -5.55394 5.55394 1.12 0.00127212 0.00116674 0.0984341 0.0903012 40 3527 35 6.99608e+06 250167 706193. 2443.58 7.46 0.403281 0.362397 26914 176310 -1 3144 23 2649 3987 436819 84814 4.9 4.9 -177.886 -4.9 0 0 926341. 3205.33 0.32 0.20 0.31 -1 -1 0.32 0.0585156 0.0527671 105 65 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17312 1 0.02 -1 -1 30288 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.8 MiB 0.76 678 10796 4152 4483 2161 55.5 MiB 0.12 0.00 3.34663 -92.0539 -3.34663 3.34663 1.09 0.000841221 0.000771986 0.0589865 0.0541565 34 1899 26 6.99608e+06 191304 618332. 2139.56 2.24 0.241029 0.214659 25762 151098 -1 1532 19 951 1531 115611 24412 2.79811 2.79811 -101.114 -2.79811 0 0 787024. 2723.27 0.23 0.06 0.13 -1 -1 0.23 0.0234027 0.020869 54 4 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30436 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 17.8 MiB 2.56 1002 14907 4915 7817 2175 56.4 MiB 0.23 0.00 4.76623 -160.299 -4.76623 4.76623 1.09 0.00131669 0.0012072 0.111141 0.101975 48 2884 23 6.99608e+06 294314 865456. 2994.66 3.20 0.363002 0.326434 28354 207349 -1 2440 20 2323 2954 285538 61481 4.9593 4.9593 -167.879 -4.9593 0 0 1.05005e+06 3633.38 0.35 0.14 0.35 -1 -1 0.35 0.0531467 0.048079 116 90 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30124 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1317 10744 3615 5258 1871 56.2 MiB 0.17 0.00 4.50112 -167.331 -4.50112 4.50112 1.15 0.00118175 0.00108182 0.0797715 0.0730389 40 3495 26 6.99608e+06 235451 706193. 2443.58 5.66 0.350325 0.313952 26914 176310 -1 2926 24 3276 4138 494202 92561 4.85739 4.85739 -181.953 -4.85739 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0562211 0.0504752 110 96 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.18 17688 1 0.03 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 17.3 MiB 1.39 944 9712 3948 5370 394 55.9 MiB 0.14 0.00 3.79657 -123.64 -3.79657 3.79657 1.09 0.00117916 0.00108055 0.0713395 0.0654456 44 3075 49 6.99608e+06 220735 787024. 2723.27 4.43 0.373651 0.334874 27778 195446 -1 1984 21 1585 2040 163763 38450 3.46081 3.46081 -119.657 -3.46081 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.0498724 0.044915 94 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 18164 1 0.03 -1 -1 30444 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 17.8 MiB 0.99 1078 15796 7109 8306 381 56.2 MiB 0.25 0.00 5.81442 -170.312 -5.81442 5.81442 1.14 0.0013349 0.00122551 0.128856 0.118452 46 3303 43 6.99608e+06 220735 828058. 2865.25 6.11 0.46695 0.421288 28066 200906 -1 2519 19 2001 2996 241064 50553 4.8635 4.8635 -169.634 -4.8635 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0518826 0.0470061 98 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17560 1 0.03 -1 -1 30144 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 16.5 MiB 0.63 501 9684 3375 4762 1547 55.2 MiB 0.10 0.00 2.78575 -96.9119 -2.78575 2.78575 1.10 0.000777844 0.000710183 0.0507912 0.0465029 38 1487 22 6.99608e+06 176588 678818. 2348.85 2.18 0.213982 0.19013 26626 170182 -1 1249 19 785 987 89017 19309 2.57072 2.57072 -92.9223 -2.57072 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0295263 0.0263302 53 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.16 17536 1 0.03 -1 -1 30376 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 17.0 MiB 3.03 598 11756 4032 5894 1830 55.7 MiB 0.14 0.00 3.77712 -117.524 -3.77712 3.77712 1.10 0.000973616 0.000891919 0.0743298 0.0681435 38 1780 24 6.99608e+06 206020 678818. 2348.85 2.40 0.283102 0.253187 26626 170182 -1 1431 21 1164 1714 139245 30323 3.30746 3.30746 -119.712 -3.30746 0 0 902133. 3121.57 0.32 0.10 0.28 -1 -1 0.32 0.0415002 0.0372447 68 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 0.64 791 12331 4777 6250 1304 55.6 MiB 0.16 0.00 3.68644 -122.952 -3.68644 3.68644 1.10 0.00102425 0.000939221 0.0738034 0.0676842 44 2873 41 6.99608e+06 250167 787024. 2723.27 4.01 0.321045 0.287083 27778 195446 -1 2087 19 1489 2342 241451 50537 3.70196 3.70196 -133.232 -3.70196 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0390802 0.0351075 78 34 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17528 1 0.03 -1 -1 30244 -1 -1 16 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 16.7 MiB 0.99 448 7369 2953 3764 652 55.2 MiB 0.08 0.00 3.31959 -76.8944 -3.31959 3.31959 1.09 0.000751374 0.000688187 0.0386094 0.0353884 38 1742 32 6.99608e+06 235451 678818. 2348.85 3.44 0.216971 0.192665 26626 170182 -1 1067 18 820 1065 70792 18815 2.98797 2.98797 -80.5539 -2.98797 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0276883 0.0247549 59 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 17.8 MiB 2.71 1245 8306 2489 4423 1394 56.2 MiB 0.13 0.00 4.0386 -139.855 -4.0386 4.0386 1.09 0.00121825 0.00111214 0.0612642 0.0562223 48 3245 50 6.99608e+06 250167 865456. 2994.66 3.73 0.379117 0.339815 28354 207349 -1 2845 21 2041 2978 290931 56452 3.88612 3.88612 -141.416 -3.88612 0 0 1.05005e+06 3633.38 0.35 0.15 0.34 -1 -1 0.35 0.0517423 0.0465789 103 72 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17780 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 17.8 MiB 2.24 1163 15568 6109 7919 1540 56.5 MiB 0.23 0.00 4.35051 -150.242 -4.35051 4.35051 1.09 0.00129454 0.00118664 0.116953 0.107238 40 3509 30 6.99608e+06 279598 706193. 2443.58 4.20 0.415186 0.373354 26914 176310 -1 2880 22 2655 3597 319611 69613 4.47785 4.47785 -163.263 -4.47785 0 0 926341. 3205.33 0.32 0.16 0.29 -1 -1 0.32 0.0574242 0.0518319 117 90 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.27 17628 14 0.25 -1 -1 32976 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 1276 8543 2090 5594 859 55.6 MiB 0.15 0.00 8.38905 -176.577 -8.38905 8.38905 1.10 0.00155867 0.00142984 0.0791495 0.0727134 36 3665 49 6.79088e+06 255968 648988. 2245.63 7.49 0.486414 0.43708 25390 158009 -1 3031 19 1428 3960 252465 55201 7.21088 7.21088 -172.542 -7.21088 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0695637 0.0628718 130 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.29 17704 14 0.28 -1 -1 32900 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 17.1 MiB 2.13 1147 12331 4133 6053 2145 55.7 MiB 0.20 0.00 7.6097 -157.374 -7.6097 7.6097 1.09 0.00156214 0.00143244 0.115651 0.10595 34 3327 27 6.79088e+06 255968 618332. 2139.56 4.82 0.467533 0.420904 25102 150614 -1 2658 19 1284 3490 200353 45854 6.82379 6.82379 -154.476 -6.82379 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0622332 0.0563932 125 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17724 11 0.22 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 3.04 1231 6383 1494 4487 402 55.7 MiB 0.11 0.00 6.81003 -148.008 -6.81003 6.81003 1.09 0.0015737 0.00144281 0.0604016 0.055419 36 3209 32 6.79088e+06 255968 648988. 2245.63 6.04 0.432831 0.388973 25390 158009 -1 2801 19 1317 3890 223314 49848 6.29093 6.29093 -148.387 -6.29093 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0634192 0.0574451 130 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.25 17780 12 0.31 -1 -1 32780 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 16.8 MiB 1.03 1099 5293 1100 3885 308 55.4 MiB 0.10 0.00 7.28153 -143.815 -7.28153 7.28153 1.13 0.00148932 0.00135537 0.0498105 0.0457441 36 3357 33 6.79088e+06 323328 648988. 2245.63 5.20 0.427263 0.38429 25390 158009 -1 2586 20 1448 4044 231944 51886 6.54158 6.54158 -139.567 -6.54158 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0654588 0.0592809 136 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.28 17916 13 0.25 -1 -1 32788 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1401 5756 1163 4305 288 55.8 MiB 0.11 0.00 8.2885 -175.09 -8.2885 8.2885 1.12 0.00172797 0.00158411 0.0577817 0.0530401 40 3602 29 6.79088e+06 296384 706193. 2443.58 3.45 0.455276 0.40923 26254 175826 -1 3419 16 1490 3850 301755 77078 7.51181 7.51181 -175.313 -7.51181 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0601393 0.054702 152 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.29 17704 13 0.27 -1 -1 32764 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 1243 11063 3086 5977 2000 55.6 MiB 0.19 0.00 7.40767 -155.099 -7.40767 7.40767 1.10 0.00165126 0.00151303 0.106851 0.0979258 38 3505 23 6.79088e+06 255968 678818. 2348.85 5.00 0.484157 0.436373 25966 169698 -1 2804 18 1394 4237 219172 49131 6.58427 6.58427 -150.238 -6.58427 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640915 0.0581552 137 198 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.24 17316 12 0.19 -1 -1 32548 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 16.4 MiB 1.28 831 9024 2147 6104 773 55.1 MiB 0.13 0.00 7.03512 -124.15 -7.03512 7.03512 1.08 0.00127187 0.00116586 0.0697703 0.0640761 36 2328 49 6.79088e+06 282912 648988. 2245.63 3.58 0.396087 0.355753 25390 158009 -1 1811 24 963 2242 190298 71060 6.02493 6.02493 -115.935 -6.02493 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0611743 0.0552524 106 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.24 17656 12 0.20 -1 -1 32640 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 16.7 MiB 2.52 997 12636 5258 7154 224 55.4 MiB 0.18 0.00 6.42294 -136.16 -6.42294 6.42294 1.09 0.00125975 0.00115363 0.096507 0.088426 44 2627 22 6.79088e+06 229024 787024. 2723.27 2.94 0.375068 0.33761 27118 194962 -1 2129 16 1056 2792 155188 35766 5.65861 5.65861 -131.48 -5.65861 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0443719 0.0402357 106 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.26 17760 12 0.17 -1 -1 32600 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 16.6 MiB 2.75 1116 6203 1235 4627 341 55.2 MiB 0.10 0.00 7.04997 -146.463 -7.04997 7.04997 1.09 0.00128457 0.00117408 0.0484196 0.0443338 38 2827 29 6.79088e+06 269440 678818. 2348.85 3.70 0.338934 0.303964 25966 169698 -1 2377 15 1090 2724 145236 33529 6.25178 6.25178 -137.947 -6.25178 0 0 902133. 3121.57 0.31 0.10 0.27 -1 -1 0.31 0.0430107 0.0390826 113 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.25 17612 13 0.19 -1 -1 32624 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 16.7 MiB 1.95 1109 7177 1737 4800 640 55.3 MiB 0.12 0.00 7.59858 -166.488 -7.59858 7.59858 1.10 0.00140355 0.00128559 0.0611081 0.0559336 36 3033 30 6.79088e+06 202080 648988. 2245.63 5.15 0.386951 0.347188 25390 158009 -1 2399 14 1005 2359 142479 31916 6.91327 6.91327 -163.368 -6.91327 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.043998 0.039989 106 156 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.23 17532 12 0.18 -1 -1 32396 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 16.7 MiB 1.61 935 11402 3533 6247 1622 55.2 MiB 0.15 0.00 7.11778 -148.236 -7.11778 7.11778 1.12 0.00120471 0.0011022 0.0846607 0.0775578 30 2539 45 6.79088e+06 229024 556674. 1926.21 1.52 0.287076 0.25855 24526 138013 -1 2061 17 900 2128 107060 25145 6.24408 6.24408 -144.119 -6.24408 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0438125 0.0396521 96 128 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17364 12 0.15 -1 -1 32668 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 16.6 MiB 2.13 937 12856 4731 5927 2198 55.2 MiB 0.17 0.00 5.84661 -143.137 -5.84661 5.84661 0.79 0.00125106 0.00114462 0.0874764 0.0799449 38 2936 43 6.79088e+06 229024 678818. 2348.85 5.82 0.411997 0.369757 25966 169698 -1 2301 16 1075 2850 166834 38480 5.18431 5.18431 -138.28 -5.18431 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0442037 0.040114 101 142 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.29 17796 13 0.24 -1 -1 32424 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 16.8 MiB 1.75 1258 8319 2303 5000 1016 55.5 MiB 0.15 0.00 7.91028 -166.355 -7.91028 7.91028 1.09 0.00161414 0.00146971 0.0796278 0.0730054 40 3060 21 6.79088e+06 269440 706193. 2443.58 2.77 0.420557 0.378504 26254 175826 -1 2982 19 1354 3465 231601 50194 7.01056 7.01056 -160.338 -7.01056 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0660728 0.0598831 134 189 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.28 17720 14 0.30 -1 -1 32812 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 17.2 MiB 1.76 1345 7268 1767 5038 463 55.7 MiB 0.13 0.00 8.74626 -182.518 -8.74626 8.74626 1.08 0.00170019 0.00155577 0.0716713 0.0656901 36 3522 26 6.79088e+06 296384 648988. 2245.63 5.02 0.461067 0.414995 25390 158009 -1 2989 18 1459 3621 213522 48818 7.56225 7.56225 -174.856 -7.56225 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0669132 0.0608893 151 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.23 17544 11 0.17 -1 -1 32572 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 16.6 MiB 2.20 987 12186 3908 6119 2159 55.4 MiB 0.16 0.00 6.7187 -136.52 -6.7187 6.7187 1.08 0.00125295 0.00114798 0.0895151 0.0820395 34 3118 45 6.79088e+06 282912 618332. 2139.56 4.30 0.406874 0.365566 25102 150614 -1 2533 55 1326 3340 702783 417195 6.16214 6.16214 -140.269 -6.16214 0 0 787024. 2723.27 0.26 0.39 0.26 -1 -1 0.26 0.11896 0.106644 106 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.28 17704 12 0.27 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1224 13348 3764 6998 2586 55.7 MiB 0.22 0.00 7.24781 -156.42 -7.24781 7.24781 1.08 0.00172557 0.00158421 0.124132 0.113918 40 3377 35 6.79088e+06 323328 706193. 2443.58 4.46 0.532698 0.480586 26254 175826 -1 3153 21 1625 5435 403477 86340 6.75642 6.75642 -155.136 -6.75642 0 0 926341. 3205.33 0.30 0.19 0.30 -1 -1 0.30 0.0749283 0.067922 145 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.26 17788 14 0.26 -1 -1 32772 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 17.0 MiB 2.14 1311 6743 1544 4772 427 55.6 MiB 0.12 0.00 8.47078 -173.752 -8.47078 8.47078 1.10 0.00155995 0.00142965 0.0633255 0.0581058 38 3697 39 6.79088e+06 255968 678818. 2348.85 6.55 0.451081 0.405333 25966 169698 -1 2925 18 1377 3834 209038 46091 7.22545 7.22545 -162.343 -7.22545 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0604965 0.0548575 126 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.25 17640 12 0.16 -1 -1 32388 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 16.6 MiB 1.56 1008 11740 3543 6499 1698 55.2 MiB 0.16 0.00 7.24148 -161.628 -7.24148 7.24148 1.09 0.00126643 0.0011584 0.09208 0.0842545 36 2795 45 6.79088e+06 202080 648988. 2245.63 4.89 0.431783 0.387882 25390 158009 -1 2378 15 976 2474 149319 33765 6.21607 6.21607 -156.301 -6.21607 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0424921 0.0385862 105 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17216 10 0.10 -1 -1 32232 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 16.1 MiB 1.83 679 4973 1078 3739 156 54.8 MiB 0.07 0.00 4.83286 -114.815 -4.83286 4.83286 1.09 0.000905144 0.000828525 0.0312004 0.0285602 38 1772 21 6.79088e+06 175136 678818. 2348.85 2.32 0.223993 0.199319 25966 169698 -1 1619 14 647 1409 89824 20060 4.29586 4.29586 -114.403 -4.29586 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0284368 0.0256244 66 87 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.26 17328 13 0.20 -1 -1 32576 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 16.4 MiB 1.96 997 12331 4111 5801 2419 55.0 MiB 0.17 0.00 7.54752 -160.268 -7.54752 7.54752 1.10 0.00128719 0.00117869 0.0947577 0.0868446 36 2929 29 6.79088e+06 242496 648988. 2245.63 3.56 0.387784 0.348779 25390 158009 -1 2308 18 1125 2654 153918 35011 6.16922 6.16922 -147.333 -6.16922 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0489743 0.0443738 107 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17696 13 0.27 -1 -1 32996 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 17.0 MiB 1.74 1287 9943 2672 5830 1441 55.7 MiB 0.17 0.00 7.66212 -166.709 -7.66212 7.66212 1.11 0.00168777 0.00154804 0.0949829 0.0870744 36 4367 40 6.79088e+06 282912 648988. 2245.63 10.20 0.519947 0.468238 25390 158009 -1 3174 30 2184 6712 566802 176298 6.96787 6.96787 -161.481 -6.96787 0 0 828058. 2865.25 0.27 0.29 0.25 -1 -1 0.27 0.0994 0.0897403 143 210 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.28 17816 13 0.29 -1 -1 32620 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1366 11989 3183 6998 1808 55.8 MiB 0.20 0.00 7.56666 -167.812 -7.56666 7.56666 1.08 0.00163159 0.00149481 0.110257 0.101124 38 3931 41 6.79088e+06 282912 678818. 2348.85 6.54 0.517871 0.466604 25966 169698 -1 3120 17 1406 4182 239599 51913 6.50587 6.50587 -157.808 -6.50587 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0596683 0.054218 141 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.20 17244 9 0.09 -1 -1 32284 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 16.1 MiB 1.05 700 7596 2556 3853 1187 54.8 MiB 0.08 0.00 4.83723 -93.7879 -4.83723 4.83723 1.09 0.000821918 0.000753118 0.0413765 0.0379289 34 1715 26 6.79088e+06 242496 618332. 2139.56 2.03 0.220502 0.196201 25102 150614 -1 1498 18 668 1631 98751 22412 4.3539 4.3539 -94.2702 -4.3539 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0306556 0.0274575 67 76 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17428 13 0.28 -1 -1 32772 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1263 10263 2709 7113 441 55.6 MiB 0.17 0.00 8.1433 -166.845 -8.1433 8.1433 1.09 0.00121623 0.00110022 0.0797825 0.0726352 40 3385 50 6.79088e+06 309856 706193. 2443.58 4.19 0.4981 0.446973 26254 175826 -1 3075 21 1607 4496 277530 61024 7.34382 7.34382 -164.809 -7.34382 0 0 926341. 3205.33 0.31 0.16 0.29 -1 -1 0.31 0.0702408 0.0636137 136 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17076 8 0.09 -1 -1 32664 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 16.0 MiB 1.81 633 5921 1256 4594 71 54.6 MiB 0.07 0.00 4.18492 -95.1021 -4.18492 4.18492 1.09 0.000788706 0.000721557 0.0270113 0.0245461 36 1824 30 6.79088e+06 148192 648988. 2245.63 2.26 0.202317 0.178896 25390 158009 -1 1490 18 656 1469 79844 19181 3.83796 3.83796 -94.1549 -3.83796 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.029487 0.0263632 60 60 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.25 17488 15 0.25 -1 -1 32856 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1197 14144 5293 7084 1767 55.5 MiB 0.21 0.00 8.89118 -178.017 -8.89118 8.89118 1.10 0.00146121 0.00134046 0.119847 0.10993 36 3911 43 6.79088e+06 242496 648988. 2245.63 9.94 0.497505 0.447697 25390 158009 -1 3064 31 1411 3990 445921 169785 7.93467 7.93467 -173.678 -7.93467 0 0 828058. 2865.25 0.28 0.25 0.25 -1 -1 0.28 0.0874954 0.0788705 121 160 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17316 13 0.22 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1207 12898 3890 6827 2181 55.6 MiB 0.20 0.00 6.79894 -149.553 -6.79894 6.79894 1.11 0.00146697 0.00134581 0.11155 0.102321 36 3359 23 6.79088e+06 242496 648988. 2245.63 8.43 0.429845 0.386578 25390 158009 -1 2799 19 1253 3687 226923 49033 5.82898 5.82898 -144.739 -5.82898 0 0 828058. 2865.25 0.27 0.13 0.27 -1 -1 0.27 0.0587348 0.0532059 117 166 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.27 17780 13 0.28 -1 -1 32880 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1179 7024 1686 4552 786 55.5 MiB 0.06 0.00 7.81323 -165.772 -7.81323 7.81323 1.08 0.000575707 0.000519854 0.0263879 0.0239397 40 3618 36 6.79088e+06 242496 706193. 2443.58 6.10 0.396163 0.354838 26254 175826 -1 3151 26 1711 4941 532467 172390 6.77334 6.77334 -165.618 -6.77334 0 0 926341. 3205.33 0.32 0.26 0.30 -1 -1 0.32 0.0815291 0.0736815 136 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.13 17316 12 0.16 -1 -1 32608 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 16.5 MiB 1.83 1077 9024 2472 4753 1799 55.3 MiB 0.13 0.00 6.90294 -154.176 -6.90294 6.90294 1.08 0.00129032 0.00118078 0.0719087 0.0659265 38 2685 27 6.79088e+06 215552 678818. 2348.85 3.61 0.356865 0.32063 25966 169698 -1 2236 14 1015 2429 130604 29713 5.99004 5.99004 -143.607 -5.99004 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0406936 0.036995 103 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17344 11 0.16 -1 -1 32724 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 16.4 MiB 1.75 910 12120 3870 6285 1965 55.0 MiB 0.16 0.00 6.3635 -135.496 -6.3635 6.3635 1.11 0.00116635 0.00106758 0.0854939 0.0782692 36 2758 44 6.79088e+06 242496 648988. 2245.63 4.63 0.38332 0.343807 25390 158009 -1 2137 15 968 2319 151256 33988 5.69238 5.69238 -131.952 -5.69238 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0384663 0.0348461 95 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.11 17432 11 0.17 -1 -1 32620 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 16.5 MiB 1.49 934 11106 3231 6003 1872 55.1 MiB 0.15 0.00 7.04953 -133.904 -7.04953 7.04953 1.09 0.00125696 0.00115176 0.0834827 0.0765127 36 2495 17 6.79088e+06 282912 648988. 2245.63 2.84 0.348082 0.313258 25390 158009 -1 2080 15 900 2405 142832 32141 6.24403 6.24403 -128.601 -6.24403 0 0 828058. 2865.25 0.24 0.05 0.13 -1 -1 0.24 0.0187607 0.0170466 109 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.23 17612 12 0.20 -1 -1 32616 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 16.9 MiB 2.32 1143 7431 2070 3957 1404 55.4 MiB 0.12 0.00 7.03679 -162.788 -7.03679 7.03679 1.09 0.00148673 0.00136121 0.067694 0.0620701 38 3489 28 6.79088e+06 229024 678818. 2348.85 4.84 0.403344 0.362004 25966 169698 -1 2750 18 1400 3465 198948 44554 6.45548 6.45548 -161.876 -6.45548 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0573383 0.051971 119 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.23 17548 12 0.16 -1 -1 32688 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 16.4 MiB 2.10 1005 7304 1599 5397 308 55.0 MiB 0.12 0.00 6.85818 -143.144 -6.85818 6.85818 1.13 0.0012768 0.00116879 0.0599463 0.0549714 36 3104 26 6.79088e+06 229024 648988. 2245.63 5.37 0.344934 0.309478 25390 158009 -1 2546 20 1197 3028 191255 42293 5.92738 5.92738 -138.337 -5.92738 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0527951 0.0477451 101 146 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.23 17552 10 0.15 -1 -1 32768 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 16.5 MiB 1.39 942 8378 2178 5592 608 55.2 MiB 0.12 0.00 6.16888 -135.594 -6.16888 6.16888 1.07 0.00123682 0.00113275 0.0660431 0.0604695 34 2825 33 6.79088e+06 229024 618332. 2139.56 3.19 0.318677 0.285813 25102 150614 -1 2283 15 958 2705 169570 37670 5.36338 5.36338 -129.171 -5.36338 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0409455 0.0371643 103 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18156 13 0.31 -1 -1 32744 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 17.1 MiB 1.71 1312 13663 4088 7126 2449 55.7 MiB 0.24 0.00 8.09614 -166.803 -8.09614 8.09614 1.11 0.00178874 0.00163755 0.138996 0.127386 44 3318 23 6.79088e+06 282912 787024. 2723.27 3.69 0.530745 0.478621 27118 194962 -1 2701 17 1373 4208 224771 50229 7.1394 7.1394 -154.037 -7.1394 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0668998 0.0608224 149 221 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.27 18308 14 0.33 -1 -1 33288 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 17.0 MiB 2.05 1261 10584 2627 7173 784 55.7 MiB 0.19 0.00 7.68903 -168.897 -7.68903 7.68903 1.08 0.00162185 0.00148683 0.101591 0.093056 44 3649 50 6.79088e+06 242496 787024. 2723.27 4.66 0.526375 0.473774 27118 194962 -1 2886 17 1427 3968 219322 49259 6.95258 6.95258 -162.986 -6.95258 0 0 997811. 3452.63 0.35 0.14 0.32 -1 -1 0.35 0.0597816 0.0543349 136 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.24 17484 12 0.15 -1 -1 32656 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 16.5 MiB 1.99 1099 9036 2242 5503 1291 55.2 MiB 0.13 0.00 7.11595 -155.813 -7.11595 7.11595 1.09 0.0012829 0.00117428 0.0722901 0.0662087 30 2953 39 6.79088e+06 215552 556674. 1926.21 3.70 0.28566 0.257124 24526 138013 -1 2356 56 1353 4062 755449 394520 6.33018 6.33018 -154.996 -6.33018 0 0 706193. 2443.58 0.28 0.41 0.21 -1 -1 0.28 0.12939 0.116052 101 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.23 18028 12 0.27 -1 -1 32756 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 17.2 MiB 2.20 1467 6039 1319 4287 433 55.8 MiB 0.12 0.00 7.47278 -158.083 -7.47278 7.47278 1.09 0.00171607 0.00157202 0.0615698 0.0565242 44 3629 28 6.79088e+06 323328 787024. 2723.27 4.00 0.458717 0.4126 27118 194962 -1 3054 17 1429 4213 263921 56409 6.54502 6.54502 -148.774 -6.54502 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0629577 0.0572327 146 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 18016 14 0.33 -1 -1 33176 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 17.2 MiB 1.27 1271 10129 2796 6287 1046 55.8 MiB 0.17 0.00 8.30959 -169.599 -8.30959 8.30959 1.06 0.00166874 0.00153034 0.0960603 0.0880855 36 3450 22 6.79088e+06 296384 648988. 2245.63 4.35 0.464265 0.417273 25390 158009 -1 2866 16 1351 3700 212299 48794 7.47267 7.47267 -164.725 -7.47267 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0590073 0.0536986 142 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.28 17848 13 0.25 -1 -1 32792 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1280 4811 900 3622 289 55.7 MiB 0.09 0.00 8.58767 -169.841 -8.58767 8.58767 1.29 0.00155772 0.0014279 0.0446221 0.0409648 38 3430 34 6.79088e+06 309856 678818. 2348.85 3.75 0.426433 0.383393 25966 169698 -1 2787 17 1355 3483 187965 42656 7.47267 7.47267 -159.441 -7.47267 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.058921 0.0535508 136 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.28 17880 13 0.25 -1 -1 32776 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 16.9 MiB 1.77 1180 11979 3854 6305 1820 55.5 MiB 0.19 0.00 7.68398 -158.005 -7.68398 7.68398 1.09 0.00153799 0.00140546 0.105313 0.096469 46 3049 18 6.79088e+06 282912 828058. 2865.25 4.04 0.430065 0.387814 27406 200422 -1 2544 16 1179 3480 191322 42294 6.96798 6.96798 -148.071 -6.96798 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0538497 0.048902 125 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.24 17516 12 0.19 -1 -1 32844 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 17.0 MiB 1.86 851 11432 3292 6222 1918 55.6 MiB 0.17 0.00 6.74005 -141.479 -6.74005 6.74005 1.13 0.00142466 0.00130503 0.0995049 0.0912937 38 2732 20 6.79088e+06 215552 678818. 2348.85 5.17 0.399768 0.359156 25966 169698 -1 2025 17 1043 2803 137992 33770 6.06839 6.06839 -140.261 -6.06839 0 0 902133. 3121.57 0.39 0.09 0.23 -1 -1 0.39 0.0398015 0.0358915 111 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.32 18492 14 0.38 -1 -1 32772 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 17.4 MiB 1.13 1525 8269 1990 5730 549 55.9 MiB 0.17 0.00 8.76146 -179.232 -8.76146 8.76146 1.11 0.00189445 0.00172858 0.0900173 0.0825446 40 3962 28 6.79088e+06 282912 706193. 2443.58 5.17 0.515109 0.464401 26254 175826 -1 3736 16 1643 4957 342662 72776 7.59797 7.59797 -174.093 -7.59797 0 0 926341. 3205.33 0.31 0.17 0.25 -1 -1 0.31 0.066406 0.0606195 159 230 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.20 17300 11 0.19 -1 -1 32380 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 16.7 MiB 2.13 1083 5656 1222 4312 122 55.2 MiB 0.10 0.00 6.44427 -138.672 -6.44427 6.44427 1.10 0.0013859 0.00126909 0.0509739 0.0467584 40 2970 31 6.79088e+06 215552 706193. 2443.58 3.49 0.376309 0.336577 26254 175826 -1 2695 18 1295 3569 245355 53324 5.60634 5.60634 -134.282 -5.60634 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0540157 0.0489514 112 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17788 13 0.26 -1 -1 33268 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1224 12683 3651 6628 2404 55.7 MiB 0.21 0.00 8.19665 -170.984 -8.19665 8.19665 1.11 0.00160046 0.00146589 0.118485 0.108587 36 3521 25 6.79088e+06 269440 648988. 2245.63 5.91 0.476879 0.42959 25390 158009 -1 2718 17 1178 3776 220011 48287 7.01061 7.01061 -160.627 -7.01061 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0609382 0.0554556 137 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.31 17792 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 16.9 MiB 1.82 1183 14221 4949 6932 2340 55.6 MiB 0.25 0.00 7.19197 -155.782 -7.19197 7.19197 1.09 0.001711 0.00156834 0.133533 0.122249 48 3258 28 6.79088e+06 282912 865456. 2994.66 3.88 0.524885 0.473301 27694 206865 -1 2769 24 1411 4530 432759 157864 6.41972 6.41972 -150.586 -6.41972 0 0 1.05005e+06 3633.38 0.36 0.24 0.34 -1 -1 0.36 0.0825989 0.0748122 146 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.25 17632 13 0.24 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 16.7 MiB 1.28 1273 10103 2600 6194 1309 55.5 MiB 0.16 0.00 8.00961 -170.987 -8.00961 8.00961 1.08 0.00156602 0.00143579 0.0882421 0.080965 38 3255 22 6.79088e+06 296384 678818. 2348.85 3.39 0.431469 0.388334 25966 169698 -1 2694 17 1212 3197 175848 40913 6.72081 6.72081 -158.428 -6.72081 0 0 902133. 3121.57 0.30 0.12 0.24 -1 -1 0.30 0.0577498 0.0524341 131 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.29 17768 13 0.21 -1 -1 32868 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 16.7 MiB 2.48 1094 12364 4318 5742 2304 55.3 MiB 0.19 0.00 7.6093 -157.428 -7.6093 7.6093 1.08 0.00151551 0.00138913 0.109923 0.100771 38 3487 43 6.79088e+06 242496 678818. 2348.85 8.02 0.489595 0.440145 25966 169698 -1 2496 17 1300 3454 186520 43111 6.50936 6.50936 -147.867 -6.50936 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0549715 0.0498456 124 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.28 17904 12 0.24 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.86 1339 6489 1417 4538 534 55.8 MiB 0.12 0.00 7.45027 -163.951 -7.45027 7.45027 1.09 0.00165009 0.00151314 0.0633481 0.0581754 36 4037 43 6.79088e+06 269440 648988. 2245.63 10.95 0.485655 0.436583 25390 158009 -1 3242 19 1321 4175 282612 58801 6.45897 6.45897 -154.692 -6.45897 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0668468 0.0606339 140 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.27 18068 13 0.29 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 17.3 MiB 1.56 1312 5757 1265 4157 335 55.9 MiB 0.12 0.00 7.77691 -170.238 -7.77691 7.77691 1.10 0.00176712 0.00162073 0.0609812 0.0559732 36 4117 46 6.79088e+06 269440 648988. 2245.63 9.83 0.522201 0.469465 25390 158009 -1 3191 34 1537 4493 529481 205202 6.95673 6.95673 -165.406 -6.95673 0 0 828058. 2865.25 0.28 0.31 0.25 -1 -1 0.28 0.115059 0.103934 145 212 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17656 14 0.27 -1 -1 32956 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 1.40 1196 9783 2600 6598 585 55.7 MiB 0.16 0.00 8.29092 -170.108 -8.29092 8.29092 1.09 0.00148895 0.00136431 0.0844592 0.0773804 38 3116 34 6.79088e+06 269440 678818. 2348.85 3.99 0.456817 0.411622 25966 169698 -1 2517 19 1395 4131 212750 47962 7.04638 7.04638 -156.873 -7.04638 0 0 902133. 3121.57 0.31 0.15 0.27 -1 -1 0.31 0.0697627 0.0631465 125 168 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.25 17664 13 0.25 -1 -1 32740 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 17.2 MiB 2.08 1239 12547 3128 7964 1455 55.8 MiB 0.20 0.00 8.02156 -162.008 -8.02156 8.02156 1.09 0.00162863 0.00149189 0.114357 0.104786 36 3706 32 6.79088e+06 282912 648988. 2245.63 8.95 0.490474 0.441531 25390 158009 -1 3134 23 1969 5759 376061 79652 7.33607 7.33607 -160.823 -7.33607 0 0 828058. 2865.25 0.28 0.19 0.25 -1 -1 0.28 0.075055 0.0678523 136 197 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.29 18208 13 0.27 -1 -1 32696 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1309 8319 2069 5720 530 55.9 MiB 0.16 0.00 7.83086 -168.91 -7.83086 7.83086 1.02 0.00169836 0.00155667 0.0846177 0.0775721 38 3459 40 6.79088e+06 282912 678818. 2348.85 5.42 0.510362 0.459281 25966 169698 -1 2928 18 1445 4114 215674 47831 6.83836 6.83836 -161.551 -6.83836 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.065611 0.0595916 144 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.27 17856 12 0.29 -1 -1 32792 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 17.3 MiB 1.48 1321 14779 4130 8902 1747 55.7 MiB 0.26 0.00 7.66848 -162.706 -7.66848 7.66848 1.09 0.00169448 0.00155268 0.152532 0.13979 38 3631 50 6.79088e+06 282912 678818. 2348.85 6.05 0.597035 0.538262 25966 169698 -1 3008 18 1459 4087 232219 51644 6.98829 6.98829 -157.579 -6.98829 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.065869 0.0598032 147 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.20 17536 11 0.13 -1 -1 32704 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.09 752 5224 962 4133 129 55.1 MiB 0.08 0.00 6.41251 -131.25 -6.41251 6.41251 1.08 0.00115422 0.00105681 0.0397874 0.0364162 36 2354 24 6.79088e+06 188608 648988. 2245.63 3.54 0.290867 0.260248 25390 158009 -1 1841 17 982 2579 141528 34864 5.56708 5.56708 -127.034 -5.56708 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0418479 0.0377584 91 122 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17812 13 0.20 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.73 1180 7221 1648 4796 777 55.2 MiB 0.06 0.00 7.59268 -164.24 -7.59268 7.59268 0.75 0.000522799 0.000473144 0.0240784 0.0218847 36 3135 25 6.79088e+06 269440 648988. 2245.63 5.11 0.286616 0.25597 25390 158009 -1 2766 17 1158 3022 197887 43020 6.74539 6.74539 -159.239 -6.74539 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0519724 0.0470402 118 160 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.29 18324 14 0.42 -1 -1 33012 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57476 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 17.6 MiB 1.25 1584 7108 1588 4936 584 56.1 MiB 0.15 0.00 9.32595 -187.261 -9.32595 9.32595 1.16 0.00195527 0.00179212 0.0799751 0.0732379 46 3936 32 6.79088e+06 323328 828058. 2865.25 5.45 0.50431 0.454682 27406 200422 -1 3289 21 1725 5115 340361 89609 8.0201 8.0201 -172.736 -8.0201 0 0 1.01997e+06 3529.29 0.33 0.20 0.32 -1 -1 0.33 0.0844054 0.0767247 171 244 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.14 17836 13 0.30 -1 -1 32788 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 16.9 MiB 1.49 1314 12733 3340 7297 2096 55.5 MiB 0.24 0.00 7.97246 -177.126 -7.97246 7.97246 1.09 0.00160225 0.00146967 0.129324 0.118122 38 3411 27 6.79088e+06 282912 678818. 2348.85 5.74 0.489579 0.441153 25966 169698 -1 2845 17 1391 3842 239432 52895 7.01061 7.01061 -170.364 -7.01061 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0574774 0.0521157 134 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.24 17516 11 0.17 -1 -1 32636 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 16.4 MiB 0.70 915 4304 849 3239 216 55.1 MiB 0.08 0.00 6.78614 -143.669 -6.78614 6.78614 1.13 0.00125655 0.00115088 0.036158 0.0332226 36 2700 29 6.79088e+06 229024 648988. 2245.63 3.91 0.23979 0.214025 25390 158009 -1 2122 15 1010 2751 160047 35594 6.06839 6.06839 -137.13 -6.06839 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0417264 0.0378472 101 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.31 18516 15 0.52 -1 -1 32880 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 17.5 MiB 1.09 1525 5039 926 3796 317 56.1 MiB 0.11 0.00 9.59451 -195.342 -9.59451 9.59451 1.09 0.00204404 0.00187329 0.0583238 0.0535474 36 4861 41 6.79088e+06 336800 648988. 2245.63 13.86 0.583422 0.526252 25390 158009 -1 3846 22 1955 5417 336882 74570 8.35685 8.35685 -188.636 -8.35685 0 0 828058. 2865.25 0.29 0.20 0.25 -1 -1 0.29 0.0915143 0.0831423 179 257 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.25 17704 13 0.31 -1 -1 32884 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 17.1 MiB 1.12 1281 8502 2158 5508 836 55.8 MiB 0.15 0.00 8.03603 -175.042 -8.03603 8.03603 1.12 0.00170192 0.00156163 0.0848448 0.077923 38 3308 18 6.79088e+06 269440 678818. 2348.85 3.35 0.403218 0.363334 25966 169698 -1 2729 15 1311 3591 186034 41679 7.09671 7.09671 -167.647 -7.09671 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.056001 0.0509517 139 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.20 17192 11 0.13 -1 -1 32420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 16.5 MiB 1.20 1102 10183 2765 6008 1410 55.1 MiB 0.14 0.00 6.80233 -145.463 -6.80233 6.80233 1.08 0.00122427 0.00111897 0.0799159 0.0731057 30 2820 19 6.79088e+06 175136 556674. 1926.21 1.81 0.241345 0.217552 24526 138013 -1 2278 16 941 2287 125340 28672 5.65673 5.65673 -139.283 -5.65673 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0425276 0.0385254 94 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.27 17604 12 0.29 -1 -1 32788 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 17.2 MiB 1.08 1332 7953 2031 5347 575 55.7 MiB 0.15 0.00 7.73069 -165.16 -7.73069 7.73069 1.09 0.00172475 0.00158003 0.0806271 0.0739033 38 3533 25 6.79088e+06 269440 678818. 2348.85 4.53 0.463399 0.416896 25966 169698 -1 2880 16 1393 4466 244161 53393 6.50936 6.50936 -156.666 -6.50936 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0614707 0.0558705 146 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.25 17376 12 0.20 -1 -1 32732 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 17.0 MiB 1.20 1053 12008 3553 6389 2066 55.5 MiB 0.17 0.00 7.28149 -150.89 -7.28149 7.28149 1.08 0.00134793 0.00123499 0.0951366 0.0872463 44 2625 43 6.79088e+06 242496 787024. 2723.27 3.50 0.431562 0.387509 27118 194962 -1 2033 17 1102 2951 150094 35597 6.20493 6.20493 -138.957 -6.20493 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0497315 0.0451028 113 149 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17508 12 0.18 -1 -1 32676 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 16.5 MiB 0.97 903 6163 1336 4643 184 55.3 MiB 0.10 0.00 7.56546 -146.033 -7.56546 7.56546 1.12 0.00128195 0.00117357 0.0508396 0.0465473 30 2736 29 6.79088e+06 229024 556674. 1926.21 2.81 0.238859 0.215012 24526 138013 -1 2112 20 907 2572 134816 30941 6.67032 6.67032 -143.964 -6.67032 0 0 706193. 2443.58 0.22 0.07 0.11 -1 -1 0.22 0.0367738 0.0332523 106 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 18128 12 0.28 -1 -1 32816 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 17.0 MiB 1.95 1197 6039 1341 4100 598 55.6 MiB 0.10 0.00 7.39356 -141.853 -7.39356 7.39356 1.11 0.00161042 0.0014771 0.0554602 0.0509082 40 2765 18 6.79088e+06 350272 706193. 2443.58 3.38 0.398251 0.358048 26254 175826 -1 2683 18 1287 4001 245257 52754 6.50238 6.50238 -135.7 -6.50238 0 0 926341. 3205.33 0.30 0.14 0.30 -1 -1 0.30 0.0613308 0.0556626 140 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.26 17828 13 0.33 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 17.2 MiB 1.00 1362 9111 2298 6252 561 55.9 MiB 0.17 0.00 7.91407 -168.647 -7.91407 7.91407 1.10 0.00183632 0.00168472 0.0927307 0.0849622 36 4498 41 6.79088e+06 309856 648988. 2245.63 11.25 0.555485 0.500299 25390 158009 -1 3430 25 2554 6396 468023 127210 7.54398 7.54398 -171.891 -7.54398 0 0 828058. 2865.25 0.28 0.27 0.25 -1 -1 0.28 0.0980899 0.0889205 160 236 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17784 12 0.23 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.24 1278 7770 1751 5660 359 55.7 MiB 0.14 0.00 7.73336 -164.138 -7.73336 7.73336 1.12 0.00164116 0.00150534 0.0748496 0.0686568 38 3570 28 6.79088e+06 269440 678818. 2348.85 5.70 0.457478 0.41133 25966 169698 -1 2893 19 1614 4633 260219 56380 6.62347 6.62347 -155.711 -6.62347 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0652339 0.0591592 140 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.24 17352 12 0.14 -1 -1 32344 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 16.5 MiB 1.80 988 4473 916 3372 185 55.0 MiB 0.07 0.00 7.24997 -147.671 -7.24997 7.24997 1.10 0.00119076 0.00109059 0.0360762 0.0330471 36 2682 24 6.79088e+06 202080 648988. 2245.63 4.68 0.293713 0.262886 25390 158009 -1 2226 18 906 2477 157273 34411 6.12222 6.12222 -141.304 -6.12222 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0447185 0.0403823 93 120 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.26 17652 12 0.21 -1 -1 32420 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 16.8 MiB 1.37 1084 12898 3877 6797 2224 55.2 MiB 0.19 0.00 7.21455 -151.198 -7.21455 7.21455 1.09 0.00135032 0.00123708 0.102342 0.0937367 36 2934 32 6.79088e+06 255968 648988. 2245.63 5.62 0.416642 0.374397 25390 158009 -1 2522 17 1069 2930 187495 40044 6.38938 6.38938 -145.28 -6.38938 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0477592 0.0433004 111 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.27 17900 11 0.21 -1 -1 32920 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1115 8626 2299 5376 951 55.5 MiB 0.14 0.00 6.84847 -137.093 -6.84847 6.84847 1.09 0.00153039 0.00140343 0.0786859 0.0721547 36 3085 31 6.79088e+06 269440 648988. 2245.63 4.39 0.438996 0.394474 25390 158009 -1 2587 16 1145 3498 206937 46000 5.91846 5.91846 -134.854 -5.91846 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0538793 0.0488874 125 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.24 17680 11 0.20 -1 -1 32632 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 16.9 MiB 1.21 1077 4642 990 3215 437 55.4 MiB 0.08 0.00 6.39394 -126.807 -6.39394 6.39394 1.08 0.00137222 0.00125407 0.0425855 0.0392017 36 2869 37 6.79088e+06 255968 648988. 2245.63 5.46 0.383244 0.343356 25390 158009 -1 2437 20 1375 4064 247006 53420 5.76386 5.76386 -127.412 -5.76386 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0661844 0.0597698 116 171 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.25 17820 13 0.21 -1 -1 32692 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 1.68 1115 9196 2684 4764 1748 55.5 MiB 0.13 0.00 7.27805 -147.461 -7.27805 7.27805 1.10 0.00131664 0.00120604 0.0742087 0.0680229 30 3203 46 6.79088e+06 242496 556674. 1926.21 2.99 0.309048 0.278111 24526 138013 -1 2365 18 1028 2893 146859 34111 6.4521 6.4521 -143.501 -6.4521 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.0503556 0.0456621 108 147 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.25 17604 12 0.19 -1 -1 32776 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.8 MiB 1.96 1193 6490 1485 4564 441 55.6 MiB 0.11 0.00 7.26273 -167.563 -7.26273 7.26273 1.15 0.00132926 0.00121039 0.0586146 0.0537333 40 2753 23 6.79088e+06 242496 706193. 2443.58 3.32 0.391166 0.351322 26254 175826 -1 2592 15 1162 3054 182136 40617 6.16912 6.16912 -155.542 -6.16912 0 0 926341. 3205.33 0.31 0.11 0.29 -1 -1 0.31 0.0497702 0.0452251 120 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17508 13 0.28 -1 -1 32796 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 16.8 MiB 1.59 1194 6123 1343 4442 338 55.5 MiB 0.11 0.00 8.79477 -171.911 -8.79477 8.79477 1.11 0.0015896 0.00145764 0.0582899 0.0535091 34 3211 26 6.79088e+06 282912 618332. 2139.56 3.45 0.419166 0.376412 25102 150614 -1 2646 15 1148 3180 179176 40712 7.64065 7.64065 -158.33 -7.64065 0 0 787024. 2723.27 0.26 0.11 0.14 -1 -1 0.26 0.0523766 0.0475658 137 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.27 17932 14 0.28 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1287 8685 2330 5621 734 55.7 MiB 0.15 0.00 8.66267 -183.033 -8.66267 8.66267 1.11 0.00162759 0.00149185 0.0825374 0.0756856 38 3763 48 6.79088e+06 269440 678818. 2348.85 6.12 0.516445 0.464622 25966 169698 -1 2915 16 1330 3905 202778 45246 7.71556 7.71556 -172.147 -7.71556 0 0 902133. 3121.57 0.30 0.13 0.27 -1 -1 0.30 0.0578025 0.0525301 132 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.26 17900 14 0.24 -1 -1 32924 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 17.0 MiB 1.98 1083 11456 4044 5385 2027 55.6 MiB 0.20 0.00 7.96611 -159.164 -7.96611 7.96611 1.11 0.00152007 0.00139307 0.110611 0.100813 38 3010 34 6.79088e+06 229024 678818. 2348.85 5.14 0.480409 0.431907 25966 169698 -1 2533 21 1329 3905 220140 48577 6.88531 6.88531 -150.267 -6.88531 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0684848 0.0620992 122 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.29 18100 13 0.32 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 17.1 MiB 1.68 1338 8024 1861 5707 456 55.6 MiB 0.15 0.00 8.29812 -170.177 -8.29812 8.29812 1.14 0.00169613 0.00155509 0.077868 0.0714676 46 3286 28 6.79088e+06 296384 828058. 2865.25 3.85 0.473727 0.426908 27406 200422 -1 2713 17 1339 3882 198248 44688 7.42576 7.42576 -159.92 -7.42576 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0627477 0.0571236 144 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.24 17324 13 0.18 -1 -1 32360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 919 12292 3407 6536 2349 55.1 MiB 0.17 0.00 7.20737 -146.133 -7.20737 7.20737 1.11 0.0012935 0.00118455 0.0965605 0.0883512 36 2720 18 6.79088e+06 242496 648988. 2245.63 3.50 0.378248 0.339929 25390 158009 -1 2349 21 1060 2707 237673 81251 6.16917 6.16917 -141.277 -6.16917 0 0 828058. 2865.25 0.28 0.14 0.26 -1 -1 0.28 0.0558411 0.0504664 104 146 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.30 17988 13 0.41 -1 -1 32892 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 17.4 MiB 1.64 1350 9234 2593 5787 854 55.9 MiB 0.17 0.00 8.31996 -168.69 -8.31996 8.31996 1.10 0.00171185 0.00157099 0.0921929 0.084664 38 3825 50 6.79088e+06 296384 678818. 2348.85 6.28 0.531173 0.478025 25966 169698 -1 3171 20 1711 4755 291516 62812 7.05325 7.05325 -160.364 -7.05325 0 0 902133. 3121.57 0.31 0.17 0.22 -1 -1 0.31 0.0717698 0.0650931 145 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.26 17596 14 0.30 -1 -1 32728 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 16.9 MiB 1.56 1251 6312 1329 4019 964 55.6 MiB 0.12 0.00 8.37235 -176.058 -8.37235 8.37235 1.08 0.00148454 0.00134885 0.0607203 0.0556678 40 3069 17 6.79088e+06 242496 706193. 2443.58 3.49 0.391135 0.351722 26254 175826 -1 2990 20 1531 4498 306796 65009 7.25783 7.25783 -172.618 -7.25783 0 0 926341. 3205.33 0.30 0.16 0.29 -1 -1 0.30 0.0660097 0.0598009 128 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.29 17824 13 0.22 -1 -1 32868 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 16.9 MiB 1.75 1125 7914 1884 5216 814 55.5 MiB 0.14 0.00 7.39828 -160.2 -7.39828 7.39828 1.08 0.00150998 0.00138583 0.0720707 0.0661485 38 3005 21 6.79088e+06 255968 678818. 2348.85 4.19 0.39292 0.352989 25966 169698 -1 2486 23 1200 3332 176702 39015 6.56626 6.56626 -155.185 -6.56626 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0694596 0.0627824 124 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.27 17832 13 0.21 -1 -1 32728 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 17.0 MiB 1.60 1096 8306 2939 4353 1014 55.6 MiB 0.14 0.00 7.45237 -146.107 -7.45237 7.45237 1.09 0.00148541 0.00136115 0.0753578 0.0691005 38 3152 24 6.79088e+06 255968 678818. 2348.85 4.26 0.401484 0.359786 25966 169698 -1 2342 16 1150 3084 162162 37365 6.43207 6.43207 -139.415 -6.43207 0 0 902133. 3121.57 0.29 0.11 0.28 -1 -1 0.29 0.052931 0.0479947 121 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17904 14 0.36 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1434 9943 2708 5582 1653 55.8 MiB 0.13 0.00 8.52022 -179.043 -8.52022 8.52022 0.75 0.00177437 0.00162715 0.0609507 0.0555544 46 3715 29 6.79088e+06 282912 828058. 2865.25 4.83 0.473011 0.425609 27406 200422 -1 3171 17 1583 4694 251057 54959 7.46497 7.46497 -164.971 -7.46497 0 0 1.01997e+06 3529.29 0.34 0.15 0.24 -1 -1 0.34 0.0658054 0.0598805 154 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.28 17828 11 0.27 -1 -1 32680 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 16.7 MiB 1.96 1077 10149 2679 5779 1691 55.4 MiB 0.16 0.00 7.52622 -140.559 -7.52622 7.52622 1.10 0.00152958 0.00140211 0.0896496 0.0822676 36 3431 24 6.79088e+06 309856 648988. 2245.63 7.13 0.437452 0.393774 25390 158009 -1 2771 20 1451 4096 246936 56814 6.50587 6.50587 -138.088 -6.50587 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0631941 0.0571923 136 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17544 13 0.16 -1 -1 32720 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.81 972 6054 1229 4689 136 55.0 MiB 0.10 0.00 6.97458 -160.094 -6.97458 6.97458 1.09 0.00122375 0.00111052 0.0492924 0.0451384 44 2580 35 6.79088e+06 188608 787024. 2723.27 2.84 0.337194 0.301947 27118 194962 -1 2150 15 1044 2364 139472 31738 5.93965 5.93965 -149.931 -5.93965 0 0 997811. 3452.63 0.33 0.09 0.34 -1 -1 0.33 0.0404734 0.0367331 98 128 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.27 18096 14 0.24 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 17.0 MiB 1.59 963 3581 624 2890 67 55.5 MiB 0.08 0.00 8.38402 -165.799 -8.38402 8.38402 1.12 0.00151563 0.00139046 0.0359025 0.032999 36 3137 33 6.79088e+06 229024 648988. 2245.63 5.88 0.296309 0.264822 25390 158009 -1 2489 23 1433 3816 225579 53597 7.63717 7.63717 -163.256 -7.63717 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0708874 0.0640701 122 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.17 18136 15 0.40 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 17.5 MiB 1.46 1424 5271 949 4056 266 56.1 MiB 0.12 0.00 9.1358 -193.594 -9.1358 9.1358 1.10 0.00191638 0.00175782 0.0604098 0.0554736 40 3948 49 6.79088e+06 309856 706193. 2443.58 4.66 0.525457 0.472243 26254 175826 -1 3616 22 2383 6323 430097 92001 7.89475 7.89475 -181.053 -7.89475 0 0 926341. 3205.33 0.30 0.22 0.29 -1 -1 0.30 0.0862745 0.078289 163 240 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.23 17644 11 0.16 -1 -1 32556 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 16.6 MiB 1.53 958 10726 3368 5272 2086 55.2 MiB 0.14 0.00 6.79222 -142.45 -6.79222 6.79222 1.15 0.00120321 0.00110204 0.0728711 0.0665771 30 2689 41 6.79088e+06 202080 556674. 1926.21 1.84 0.271629 0.243924 24526 138013 -1 2234 18 943 2504 151073 33167 5.78973 5.78973 -136.953 -5.78973 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0450699 0.0408443 97 126 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17324 12 0.20 -1 -1 32932 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 1114 10400 2653 5866 1881 55.3 MiB 0.16 0.00 6.63358 -148.815 -6.63358 6.63358 1.08 0.00134166 0.00122925 0.0857501 0.0785564 38 3230 30 6.79088e+06 229024 678818. 2348.85 4.09 0.390863 0.351008 25966 169698 -1 2582 19 1265 3460 189795 41991 5.82549 5.82549 -148.72 -5.82549 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0538804 0.0487273 112 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.27 17592 12 0.27 -1 -1 32780 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1409 5123 1016 3643 464 55.8 MiB 0.10 0.00 7.37446 -165.375 -7.37446 7.37446 1.08 0.00173209 0.00158717 0.0547006 0.0501989 38 3552 27 6.79088e+06 255968 678818. 2348.85 3.62 0.44624 0.401417 25966 169698 -1 3027 19 1404 4076 214650 48148 6.46241 6.46241 -154.792 -6.46241 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0703111 0.0638381 143 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.28 17640 12 0.24 -1 -1 32936 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1290 8804 2224 5446 1134 55.5 MiB 0.15 0.00 7.66631 -156.992 -7.66631 7.66631 1.10 0.00145579 0.00132651 0.0803032 0.0736579 38 3773 50 6.79088e+06 242496 678818. 2348.85 7.28 0.4925 0.442502 25966 169698 -1 2908 20 1397 4117 236922 51526 6.45897 6.45897 -151.356 -6.45897 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0275586 0.024886 130 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.29 18044 14 0.43 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 17.5 MiB 1.79 1339 6323 1159 4879 285 56.0 MiB 0.13 0.00 9.2305 -183.989 -9.2305 9.2305 1.12 0.00191143 0.00175157 0.0700871 0.0643737 38 3705 30 6.79088e+06 296384 678818. 2348.85 4.18 0.517858 0.467192 25966 169698 -1 3013 18 1532 4522 227149 51743 7.89131 7.89131 -171.065 -7.89131 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0733484 0.0668142 167 233 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17664 12 0.21 -1 -1 32704 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.52 1023 10231 4165 5804 262 55.4 MiB 0.16 0.00 7.21752 -140.072 -7.21752 7.21752 1.12 0.00144096 0.00132066 0.0889305 0.0815878 36 3532 36 6.79088e+06 255968 648988. 2245.63 8.44 0.435246 0.390884 25390 158009 -1 2548 16 1205 3395 212673 48136 6.16142 6.16142 -137.705 -6.16142 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.049137 0.0445402 121 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.23 17384 11 0.18 -1 -1 32596 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.5 MiB 1.95 852 9208 3256 4555 1397 55.2 MiB 0.06 0.00 7.04622 -127.422 -7.04622 7.04622 1.11 0.000447685 0.000402769 0.0275598 0.0249121 30 2286 23 6.79088e+06 255968 556674. 1926.21 1.28 0.199496 0.178894 24526 138013 -1 1813 16 927 2368 105512 26395 5.91852 5.91852 -121.555 -5.91852 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0429394 0.038945 104 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.23 18356 13 0.43 -1 -1 32820 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 18.0 MiB 1.54 1698 8532 2074 5800 658 56.5 MiB 0.18 0.00 7.91451 -163.387 -7.91451 7.91451 1.08 0.00212415 0.00194723 0.0968134 0.0888205 46 4524 47 6.79088e+06 350272 828058. 2865.25 6.17 0.641328 0.578909 27406 200422 -1 3573 18 1870 5879 293787 64537 6.99937 6.99937 -156.314 -6.99937 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0836163 0.0763234 188 286 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 17900 14 0.28 -1 -1 33248 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1264 9385 2554 5852 979 55.6 MiB 0.16 0.00 8.41881 -168.357 -8.41881 8.41881 1.11 0.00155799 0.00142834 0.0840395 0.0770408 30 3443 28 6.79088e+06 296384 556674. 1926.21 2.68 0.302763 0.273077 24526 138013 -1 2741 17 1270 3452 177968 40166 7.21431 7.21431 -163.766 -7.21431 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0574591 0.0520993 130 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.26 17936 12 0.16 -1 -1 32432 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 16.5 MiB 1.53 1075 7736 1882 5428 426 55.2 MiB 0.12 0.00 7.20863 -155.968 -7.20863 7.20863 1.10 0.00129196 0.00118232 0.0605415 0.0554382 38 2746 23 6.79088e+06 242496 678818. 2348.85 3.75 0.355069 0.319368 25966 169698 -1 2229 18 1032 2575 147443 32944 6.12992 6.12992 -146.185 -6.12992 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0495451 0.0448983 109 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.25 17940 13 0.27 -1 -1 32908 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 17.1 MiB 1.37 1233 12542 3940 6787 1815 55.6 MiB 0.19 0.00 8.09146 -166.475 -8.09146 8.09146 1.10 0.00151712 0.00139019 0.111788 0.102523 36 3202 30 6.79088e+06 242496 648988. 2245.63 5.96 0.468673 0.42218 25390 158009 -1 2687 18 1245 3410 184945 42779 6.82029 6.82029 -158.939 -6.82029 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0666535 0.0603667 128 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.30 18088 13 0.32 -1 -1 32924 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 17.4 MiB 1.61 1392 4695 845 3563 287 56.0 MiB 0.10 0.00 7.47587 -155.329 -7.47587 7.47587 1.13 0.0018211 0.00166868 0.0505948 0.0465154 40 3664 28 6.79088e+06 323328 706193. 2443.58 4.38 0.471906 0.425029 26254 175826 -1 3433 18 1707 4807 297818 65147 6.54507 6.54507 -151.854 -6.54507 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0706126 0.0642379 157 230 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.24 17768 11 0.24 -1 -1 32696 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 17.1 MiB 1.58 1218 4659 929 3342 388 55.7 MiB 0.09 0.00 7.06923 -144.171 -7.06923 7.06923 1.12 0.00161455 0.00147964 0.0459976 0.0422468 36 3280 38 6.79088e+06 296384 648988. 2245.63 5.72 0.451043 0.405113 25390 158009 -1 2789 15 1179 3509 202940 44755 6.16912 6.16912 -138.96 -6.16912 0 0 828058. 2865.25 0.30 0.14 0.25 -1 -1 0.30 0.0629935 0.0572602 141 199 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 18224 15 0.36 -1 -1 32724 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 17.3 MiB 1.44 1290 8402 2178 5761 463 55.8 MiB 0.16 0.00 8.74612 -186.954 -8.74612 8.74612 1.11 0.00222516 0.00203988 0.0848816 0.0777432 46 3189 27 6.79088e+06 296384 828058. 2865.25 3.92 0.477728 0.430526 27406 200422 -1 2786 28 1295 4217 461701 217315 7.50422 7.50422 -171.497 -7.50422 0 0 1.01997e+06 3529.29 0.33 0.27 0.33 -1 -1 0.33 0.0948042 0.0857969 147 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.27 18188 13 0.31 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 17.1 MiB 1.91 1316 8641 2148 5636 857 55.8 MiB 0.15 0.00 8.07216 -175.63 -8.07216 8.07216 1.10 0.00166204 0.00152135 0.0828159 0.075941 40 2999 17 6.79088e+06 282912 706193. 2443.58 2.66 0.446771 0.402927 26254 175826 -1 2987 16 1343 3851 238119 53175 7.04981 7.04981 -167.947 -7.04981 0 0 926341. 3205.33 0.31 0.13 0.29 -1 -1 0.31 0.0582067 0.0528657 143 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.25 17556 12 0.19 -1 -1 32572 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 16.7 MiB 1.57 864 9543 2234 6923 386 55.1 MiB 0.14 0.00 7.58072 -150.751 -7.58072 7.58072 1.08 0.00134989 0.0012393 0.0801306 0.0735426 38 2787 32 6.79088e+06 242496 678818. 2348.85 4.81 0.399484 0.359485 25966 169698 -1 2065 16 1049 2587 138165 31689 6.83831 6.83831 -144.518 -6.83831 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0471161 0.0428097 111 154 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.25 17824 11 0.15 -1 -1 32684 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 16.6 MiB 1.43 1018 5722 1217 4259 246 55.2 MiB 0.09 0.00 6.71746 -144.764 -6.71746 6.71746 1.08 0.00125485 0.00114851 0.0470147 0.0430831 36 2822 26 6.79088e+06 188608 648988. 2245.63 4.93 0.334063 0.299746 25390 158009 -1 2332 17 1031 2563 161297 35918 5.86813 5.86813 -141.367 -5.86813 0 0 828058. 2865.25 0.30 0.10 0.25 -1 -1 0.30 0.0458279 0.0414974 98 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.25 17780 13 0.31 -1 -1 32932 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1236 5940 1259 4215 466 55.7 MiB 0.12 0.00 8.31912 -162.691 -8.31912 8.31912 1.08 0.00166489 0.00152751 0.0597696 0.0548745 38 3344 20 6.79088e+06 282912 678818. 2348.85 3.64 0.41408 0.372299 25966 169698 -1 2835 16 1360 3850 202602 44829 7.6875 7.6875 -160.272 -7.6875 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.05824 0.0529257 143 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.21 17344 10 0.15 -1 -1 32740 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.4 MiB 1.75 951 4560 1025 3135 400 55.1 MiB 0.07 0.00 6.21922 -128.027 -6.21922 6.21922 1.09 0.00122851 0.00111743 0.0375568 0.034471 30 2695 24 6.79088e+06 229024 556674. 1926.21 2.04 0.208946 0.188001 24526 138013 -1 2076 18 907 2285 114350 26868 5.53902 5.53902 -125.872 -5.53902 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0460033 0.0416265 101 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17552 14 0.19 -1 -1 32580 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 16.9 MiB 2.56 984 4532 878 3142 512 55.3 MiB 0.09 0.00 7.85466 -160.915 -7.85466 7.85466 1.13 0.00131867 0.0012064 0.0397098 0.0364887 34 3083 47 6.79088e+06 242496 618332. 2139.56 6.14 0.400214 0.358711 25102 150614 -1 2447 18 1120 2955 192392 43299 6.87418 6.87418 -156.718 -6.87418 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0499815 0.0452653 110 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.25 17900 13 0.28 -1 -1 32720 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 17.2 MiB 2.31 1210 8183 2048 5045 1090 55.8 MiB 0.14 0.00 7.80505 -164.773 -7.80505 7.80505 1.08 0.00149214 0.00136747 0.0727666 0.066751 38 3002 19 6.79088e+06 269440 678818. 2348.85 3.84 0.398218 0.358231 25966 169698 -1 2695 16 1228 3149 180865 39628 6.72425 6.72425 -158.926 -6.72425 0 0 902133. 3121.57 0.29 0.12 0.20 -1 -1 0.29 0.0534021 0.0485201 125 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.24 17404 12 0.15 -1 -1 32664 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 16.8 MiB 3.10 940 12120 3498 6380 2242 55.3 MiB 0.16 0.00 6.85518 -144.407 -6.85518 6.85518 1.04 0.0012188 0.0011157 0.0895423 0.0819516 46 2350 15 6.79088e+06 229024 828058. 2865.25 2.76 0.336883 0.302995 27406 200422 -1 2033 17 937 2446 140777 31315 5.99343 5.99343 -137.347 -5.99343 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0441767 0.0400099 99 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.23 17812 12 0.20 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 17.0 MiB 1.91 1190 9694 2639 6567 488 55.6 MiB 0.16 0.00 7.04874 -155.773 -7.04874 7.04874 1.10 0.00159434 0.001459 0.091743 0.0840187 46 2758 18 6.79088e+06 242496 828058. 2865.25 2.95 0.429738 0.386783 27406 200422 -1 2312 15 1077 3163 160333 35862 6.20488 6.20488 -146.595 -6.20488 0 0 1.01997e+06 3529.29 0.37 0.11 0.33 -1 -1 0.37 0.0538111 0.0488858 130 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.28 18088 13 0.28 -1 -1 32860 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.08 1303 8543 2004 5667 872 55.7 MiB 0.15 0.00 7.83951 -165.716 -7.83951 7.83951 1.09 0.00162403 0.00148739 0.0821141 0.0751874 38 3278 20 6.79088e+06 269440 678818. 2348.85 4.52 0.438765 0.395208 25966 169698 -1 2822 21 1439 4066 220511 48947 6.93332 6.93332 -157.758 -6.93332 0 0 902133. 3121.57 0.31 0.15 0.25 -1 -1 0.31 0.0736603 0.0666597 143 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17640 11 0.17 -1 -1 32752 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 16.4 MiB 1.83 1116 6616 1429 3881 1306 55.0 MiB 0.10 0.00 6.2158 -147.345 -6.2158 6.2158 1.08 0.001282 0.001174 0.0530145 0.0485487 36 3218 33 6.79088e+06 215552 648988. 2245.63 4.52 0.358557 0.321304 25390 158009 -1 2609 16 1232 3209 185957 42205 5.35995 5.35995 -141.952 -5.35995 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0497483 0.0452275 106 139 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.20 17368 13 0.21 -1 -1 32632 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 2.47 994 9543 2876 4545 2122 55.3 MiB 0.15 0.00 7.66009 -161.63 -7.66009 7.66009 0.88 0.00143813 0.00131906 0.0852099 0.078042 38 3161 25 6.79088e+06 202080 678818. 2348.85 5.45 0.402065 0.361318 25966 169698 -1 2217 20 1130 3116 162814 38166 6.67042 6.67042 -152.159 -6.67042 0 0 902133. 3121.57 0.26 0.12 0.14 -1 -1 0.26 0.0602439 0.0545377 113 160 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.15 17812 13 0.25 -1 -1 32836 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 17.0 MiB 1.14 1317 8183 2040 5445 698 55.6 MiB 0.14 0.00 7.48608 -168.657 -7.48608 7.48608 1.12 0.00159587 0.00146318 0.077455 0.0710196 38 3334 18 6.79088e+06 255968 678818. 2348.85 3.64 0.41786 0.376314 25966 169698 -1 2836 17 1443 3829 193627 45163 6.69849 6.69849 -160.313 -6.69849 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0640862 0.05816 136 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.26 17812 11 0.19 -1 -1 32620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 16.9 MiB 1.87 932 11088 4572 6163 353 55.4 MiB 0.16 0.00 6.40374 -127.638 -6.40374 6.40374 1.11 0.00138433 0.00126777 0.0936474 0.0858267 38 3204 35 6.79088e+06 255968 678818. 2348.85 8.79 0.436128 0.391873 25966 169698 -1 2154 16 1193 3220 164660 39971 5.38344 5.38344 -120.238 -5.38344 0 0 902133. 3121.57 0.31 0.11 0.28 -1 -1 0.31 0.048609 0.0440898 116 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.28 18296 14 0.31 -1 -1 33416 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 17.2 MiB 1.41 1275 12567 3064 6849 2654 55.7 MiB 0.22 0.00 8.90517 -187.129 -8.90517 8.90517 1.21 0.00184271 0.00168995 0.128182 0.117686 38 3597 20 6.79088e+06 309856 678818. 2348.85 3.50 0.422677 0.38148 25966 169698 -1 2719 15 1368 3478 182247 41956 8.06351 8.06351 -178.421 -8.06351 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0620139 0.0565333 159 224 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17248 12 0.15 -1 -1 32560 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 16.6 MiB 2.25 1076 14144 4263 7957 1924 55.2 MiB 0.18 0.00 6.67019 -155.032 -6.67019 6.67019 1.09 0.0012103 0.00110736 0.0988914 0.0905011 38 2834 33 6.79088e+06 255968 678818. 2348.85 3.94 0.382026 0.343349 25966 169698 -1 2431 17 1063 2485 143989 31620 5.9004 5.9004 -146.441 -5.9004 0 0 902133. 3121.57 0.30 0.10 0.27 -1 -1 0.30 0.0436854 0.0395255 106 131 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 17932 13 0.29 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 1.40 1249 10698 2850 6495 1353 55.6 MiB 0.18 0.00 8.17702 -169.59 -8.17702 8.17702 1.08 0.00160484 0.00147248 0.0989186 0.0907962 38 3574 20 6.79088e+06 269440 678818. 2348.85 4.38 0.438388 0.394867 25966 169698 -1 2827 19 1307 3681 195634 44638 7.25013 7.25013 -165.64 -7.25013 0 0 902133. 3121.57 0.31 0.18 0.27 -1 -1 0.31 0.0859186 0.0778216 136 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.26 17940 13 0.18 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 16.5 MiB 1.09 988 12528 4457 5893 2178 55.2 MiB 0.17 0.00 7.60722 -166.135 -7.60722 7.60722 1.09 0.00129296 0.00118408 0.0926856 0.0848827 38 2718 29 6.79088e+06 269440 678818. 2348.85 3.11 0.383651 0.345026 25966 169698 -1 2116 22 1062 2686 131823 31124 6.36938 6.36938 -151.235 -6.36938 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0580037 0.0523704 107 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.28 17592 12 0.24 -1 -1 32860 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1129 6563 1390 4948 225 55.5 MiB 0.12 0.00 7.37103 -160.155 -7.37103 7.37103 1.08 0.00155782 0.00142697 0.0617814 0.056684 30 3342 45 6.79088e+06 255968 556674. 1926.21 2.91 0.326029 0.293444 24526 138013 -1 2538 16 1126 3371 177495 40121 6.37287 6.37287 -151.837 -6.37287 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0545174 0.0494777 128 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.30 18520 15 0.47 -1 -1 33452 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 17.5 MiB 1.15 1461 7019 1723 4462 834 56.2 MiB 0.08 0.00 9.4802 -194.196 -9.4802 9.4802 1.10 0.000742782 0.000669311 0.0318727 0.028896 40 3857 20 6.79088e+06 336800 706193. 2443.58 4.56 0.481506 0.433224 26254 175826 -1 3750 20 2150 6380 414318 91535 8.47507 8.47507 -190.97 -8.47507 0 0 926341. 3205.33 0.30 0.21 0.28 -1 -1 0.30 0.0869634 0.0791462 183 256 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.22 17068 10 0.10 -1 -1 32152 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 16.0 MiB 1.44 790 7049 2015 4252 782 54.6 MiB 0.09 0.00 4.74332 -119.113 -4.74332 4.74332 1.15 0.000906631 0.00083008 0.044015 0.0403297 30 2094 24 6.79088e+06 161664 556674. 1926.21 1.95 0.163309 0.146204 24526 138013 -1 1704 15 667 1522 94047 20784 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0297253 0.0267531 66 84 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17336 13 0.18 -1 -1 32616 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 16.5 MiB 1.47 974 10050 2926 5436 1688 55.3 MiB 0.14 0.00 7.74787 -157.983 -7.74787 7.74787 1.08 0.00127586 0.00116938 0.0798866 0.0732232 36 2911 43 6.79088e+06 229024 648988. 2245.63 4.65 0.417154 0.375892 25390 158009 -1 2377 15 1131 2801 179307 40320 6.58438 6.58438 -153.211 -6.58438 0 0 828058. 2865.25 0.29 0.13 0.27 -1 -1 0.29 0.0471027 0.0428886 103 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.25 17456 12 0.19 -1 -1 32648 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 17.0 MiB 1.86 1289 8448 2191 5318 939 55.5 MiB 0.14 0.00 7.18863 -160.485 -7.18863 7.18863 1.12 0.00146182 0.0013404 0.0733671 0.067316 38 3079 21 6.79088e+06 242496 678818. 2348.85 3.93 0.387811 0.348234 25966 169698 -1 2575 15 1269 3143 178719 39214 6.08296 6.08296 -151.708 -6.08296 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0485068 0.044015 117 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17276 9 0.13 -1 -1 32488 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 16.2 MiB 0.82 752 9555 2712 5903 940 54.7 MiB 0.11 0.00 5.16629 -99.605 -5.16629 5.16629 1.10 0.00101083 0.000926136 0.0642708 0.0588988 30 2043 29 6.79088e+06 242496 556674. 1926.21 1.53 0.20802 0.186909 24526 138013 -1 1659 17 741 2054 108678 24546 4.39659 4.39659 -97.2578 -4.39659 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0368551 0.0332237 86 110 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.28 17652 12 0.25 -1 -1 32848 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.47 1312 13291 3621 7142 2528 55.7 MiB 0.22 0.00 7.35568 -164.212 -7.35568 7.35568 1.08 0.00167342 0.00152956 0.124389 0.113789 38 3697 28 6.79088e+06 282912 678818. 2348.85 6.45 0.517625 0.466691 25966 169698 -1 3095 17 1650 4419 232270 52748 6.67037 6.67037 -158.867 -6.67037 0 0 902133. 3121.57 0.29 0.14 0.28 -1 -1 0.29 0.062348 0.0567161 143 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.33 18436 13 0.58 -1 -1 32636 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 17.4 MiB 1.85 1311 13291 3763 7122 2406 55.8 MiB 0.22 0.00 8.3208 -173.057 -8.3208 8.3208 1.09 0.00169452 0.00155248 0.126755 0.116275 34 4579 49 6.79088e+06 296384 618332. 2139.56 9.72 0.576887 0.519299 25102 150614 -1 3475 20 1541 4341 291704 63371 7.3039 7.3039 -171.303 -7.3039 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.065995 0.0596471 147 199 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.15 17528 1 0.03 -1 -1 30012 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 17.4 MiB 2.84 1137 15768 5063 8031 2674 56.0 MiB 0.25 0.00 5.46262 -163.811 -5.46262 5.46262 1.09 0.00116984 0.00107307 0.0975617 0.0894697 34 2793 23 6.87369e+06 363320 618332. 2139.56 2.50 0.352454 0.316595 25762 151098 -1 2290 18 1636 2589 181807 43066 4.4513 4.4513 -151.51 -4.4513 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0427335 0.0384346 142 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.17 17588 1 0.03 -1 -1 30384 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 17.3 MiB 2.31 995 9347 2406 6094 847 55.9 MiB 0.16 0.00 4.40625 -134.148 -4.40625 4.40625 1.09 0.00118972 0.00109178 0.061674 0.056611 34 2568 29 6.87369e+06 335372 618332. 2139.56 2.19 0.329611 0.295604 25762 151098 -1 2204 21 1821 2766 192148 46144 4.07136 4.07136 -140.123 -4.07136 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.049165 0.0442191 138 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 17.2 MiB 2.46 954 15337 4637 8345 2355 55.7 MiB 0.21 0.00 4.42735 -120.659 -4.42735 4.42735 1.09 0.00102822 0.00094253 0.0877293 0.0803448 34 2485 25 6.87369e+06 293451 618332. 2139.56 2.00 0.316347 0.283453 25762 151098 -1 1976 20 1261 1705 123346 29622 3.61336 3.61336 -117.518 -3.61336 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405266 0.0363609 124 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.10 17468 1 0.03 -1 -1 30120 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 17.2 MiB 0.93 990 16170 4805 9691 1674 55.7 MiB 0.23 0.00 4.56722 -126.881 -4.56722 4.56722 1.12 0.00104656 0.000959559 0.0861792 0.0790357 34 2380 21 6.87369e+06 405241 618332. 2139.56 2.13 0.307887 0.276164 25762 151098 -1 2046 23 1518 2779 207672 47000 3.7744 3.7744 -124.262 -3.7744 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0469857 0.0420779 124 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30112 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 17.1 MiB 1.14 1020 12127 3332 7989 806 55.7 MiB 0.19 0.00 4.58138 -135.491 -4.58138 4.58138 1.10 0.00114263 0.00104674 0.0708246 0.0648306 28 2864 24 6.87369e+06 377294 531479. 1839.03 1.75 0.192581 0.172176 24610 126494 -1 2425 23 1873 3644 282352 63929 3.9097 3.9097 -138.221 -3.9097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0508992 0.0456721 131 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.12 17548 1 0.03 -1 -1 30152 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 17.1 MiB 1.28 1076 15643 4151 9274 2218 55.8 MiB 0.22 0.00 3.36233 -119.977 -3.36233 3.36233 1.10 0.00119656 0.00109639 0.0909206 0.0833503 28 2604 23 6.87369e+06 419215 531479. 1839.03 1.24 0.245803 0.221516 24610 126494 -1 2382 21 1482 2421 183960 41128 3.11061 3.11061 -126.364 -3.11061 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0493979 0.0444308 136 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17200 1 0.03 -1 -1 30452 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 16.8 MiB 1.94 768 11200 3422 6221 1557 55.3 MiB 0.14 0.00 3.88482 -108.503 -3.88482 3.88482 1.10 0.000888851 0.000813251 0.0623708 0.0571038 34 1729 19 6.87369e+06 265503 618332. 2139.56 1.85 0.245005 0.218902 25762 151098 -1 1509 20 1099 1797 124003 29021 3.03626 3.03626 -105.349 -3.03626 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0346178 0.0309264 97 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 29940 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.83 962 13487 3595 7903 1989 55.5 MiB 0.16 0.00 3.53179 -106.578 -3.53179 3.53179 1.09 0.000976574 0.000896195 0.0633145 0.0580553 34 2236 19 6.87369e+06 447163 618332. 2139.56 1.85 0.2634 0.235979 25762 151098 -1 1863 20 995 1672 108736 24731 2.70166 2.70166 -98.9172 -2.70166 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03849 0.0344779 119 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29964 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 925 12636 4369 6197 2070 55.7 MiB 0.18 0.00 3.30197 -112.873 -3.30197 3.30197 1.09 0.00103193 0.000944823 0.0786399 0.0720205 36 2160 23 6.87369e+06 237555 648988. 2245.63 2.16 0.298473 0.267127 26050 158493 -1 1872 20 1095 1601 124739 28051 3.06361 3.06361 -117.683 -3.06361 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0406624 0.0363944 113 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.20 17480 1 0.03 -1 -1 30020 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 16.8 MiB 3.35 866 10916 3152 5921 1843 55.4 MiB 0.16 0.00 4.09393 -136.454 -4.09393 4.09393 1.09 0.00101297 0.000928277 0.0669555 0.0614164 34 2156 24 6.87369e+06 223581 618332. 2139.56 2.04 0.288252 0.258015 25762 151098 -1 1860 21 1208 2066 158811 35660 3.14326 3.14326 -128.503 -3.14326 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416932 0.0373387 107 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30148 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 17.0 MiB 2.73 765 11532 2973 7641 918 55.5 MiB 0.16 0.00 4.09699 -119.415 -4.09699 4.09699 1.11 0.00100162 0.000916988 0.0721129 0.0660676 34 1766 21 6.87369e+06 223581 618332. 2139.56 1.87 0.277695 0.248346 25762 151098 -1 1515 20 1085 1715 117780 28644 2.85166 2.85166 -105.6 -2.85166 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0397461 0.0355601 98 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 29912 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.7 MiB 2.07 706 8306 1954 5512 840 55.3 MiB 0.11 0.00 3.6525 -111.833 -3.6525 3.6525 1.10 0.00095027 0.000870694 0.0477752 0.0438127 36 1988 27 6.87369e+06 237555 648988. 2245.63 2.24 0.255915 0.227923 26050 158493 -1 1661 19 1125 1568 111534 28073 2.96326 2.96326 -113.226 -2.96326 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.036027 0.0322133 107 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30120 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.3 MiB 3.24 1028 16599 6315 8361 1923 55.9 MiB 0.26 0.00 4.13563 -133.6 -4.13563 4.13563 1.12 0.00116085 0.00106309 0.103384 0.0947033 34 3057 25 6.87369e+06 321398 618332. 2139.56 2.48 0.346776 0.311304 25762 151098 -1 2405 22 1980 3001 267731 58292 3.31981 3.31981 -129.305 -3.31981 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0500973 0.0450245 142 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30116 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 17.2 MiB 2.16 989 10031 2534 6882 615 55.9 MiB 0.17 0.00 4.81484 -142.23 -4.81484 4.81484 1.18 0.0012104 0.00111051 0.0592255 0.0543181 32 2593 24 6.87369e+06 433189 586450. 2029.24 1.40 0.218992 0.196897 25474 144626 -1 2153 22 1723 2788 217881 49682 4.00776 4.00776 -140.461 -4.00776 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.050661 0.0455 133 61 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17284 1 0.03 -1 -1 30128 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 614 5068 1019 3719 330 55.1 MiB 0.07 0.00 3.26207 -95.0897 -3.26207 3.26207 1.10 0.00086205 0.000790637 0.0280054 0.0257328 26 1919 28 6.87369e+06 265503 503264. 1741.40 1.22 0.146405 0.130499 24322 120374 -1 1789 24 1254 1970 166202 39802 3.06661 3.06661 -101.255 -3.06661 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0438057 0.0392496 94 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17840 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 17.3 MiB 1.78 1007 16078 5563 8042 2473 55.9 MiB 0.25 0.00 3.7063 -122.467 -3.7063 3.7063 1.10 0.00120518 0.0011045 0.103101 0.0945459 34 2625 21 6.87369e+06 335372 618332. 2139.56 2.17 0.35071 0.314953 25762 151098 -1 2084 22 1604 2825 206431 47747 2.98531 2.98531 -118.548 -2.98531 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0520151 0.0467671 135 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 29916 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 17.2 MiB 3.49 1032 15523 6549 8204 770 55.8 MiB 0.22 0.00 4.15353 -134.149 -4.15353 4.15353 1.09 0.00113799 0.00104339 0.0983876 0.0900048 34 2905 38 6.87369e+06 293451 618332. 2139.56 2.55 0.382702 0.343308 25762 151098 -1 2147 22 1799 2550 195998 46224 3.23381 3.23381 -122.14 -3.23381 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.022077 0.0196645 140 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17664 1 0.03 -1 -1 30088 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 16.9 MiB 2.22 847 14168 4025 7985 2158 55.6 MiB 0.18 0.00 3.09156 -110.795 -3.09156 3.09156 1.10 0.00105161 0.000962638 0.0747061 0.0683976 34 2031 19 6.87369e+06 391268 618332. 2139.56 2.00 0.29416 0.263193 25762 151098 -1 1698 23 1184 1734 139759 32212 2.18787 2.18787 -100.659 -2.18787 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0466682 0.0416947 109 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 29884 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 16.5 MiB 0.52 656 11276 3436 6760 1080 55.1 MiB 0.12 0.00 2.61023 -88.8242 -2.61023 2.61023 1.11 0.000769556 0.000704437 0.0566723 0.0519054 32 1559 23 6.87369e+06 195634 586450. 2029.24 1.24 0.156387 0.139138 25474 144626 -1 1296 23 653 927 84113 18660 1.95772 1.95772 -86.9117 -1.95772 0 0 744469. 2576.02 0.25 0.07 0.25 -1 -1 0.25 0.0338849 0.0300959 71 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30396 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 2.59 778 9338 2420 6492 426 55.6 MiB 0.15 0.00 4.95513 -145.252 -4.95513 4.95513 1.09 0.000988702 0.000906832 0.0545129 0.0499787 34 2105 23 6.87369e+06 265503 618332. 2139.56 1.96 0.26454 0.236279 25762 151098 -1 1729 19 1243 1783 105498 27198 3.54786 3.54786 -132.494 -3.54786 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0378891 0.0339741 116 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.23 17544 1 0.03 -1 -1 30196 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 17.1 MiB 0.77 985 11499 2787 8050 662 55.7 MiB 0.17 0.00 4.26399 -136.517 -4.26399 4.26399 1.09 0.00115183 0.00105591 0.0614296 0.0563335 32 2549 47 6.87369e+06 489084 586450. 2029.24 1.51 0.254125 0.22832 25474 144626 -1 2132 28 1898 2850 260302 73804 3.7954 3.7954 -135.219 -3.7954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0611862 0.0549181 137 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30200 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 1.90 995 6701 1305 5169 227 55.7 MiB 0.13 0.00 4.31715 -129.69 -4.31715 4.31715 1.10 0.00121195 0.00111218 0.0462457 0.0424281 34 3077 27 6.87369e+06 307425 618332. 2139.56 2.87 0.319943 0.286288 25762 151098 -1 2241 22 1750 2856 245759 55031 3.75866 3.75866 -130.038 -3.75866 0 0 787024. 2723.27 0.29 0.15 0.24 -1 -1 0.29 0.0550466 0.0496728 142 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17368 1 0.02 -1 -1 30396 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 16.4 MiB 1.53 371 10977 3839 5013 2125 55.0 MiB 0.11 0.00 2.58413 -70.3474 -2.58413 2.58413 1.16 0.000658575 0.000601153 0.0482886 0.0441518 28 1325 27 6.87369e+06 237555 531479. 1839.03 1.15 0.136795 0.122014 24610 126494 -1 1074 22 742 1040 84221 21563 2.50407 2.50407 -79.8397 -2.50407 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0281548 0.0249888 67 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17040 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.7 MiB 0.91 952 5847 1159 4467 221 55.5 MiB 0.09 0.00 4.63338 -129.909 -4.63338 4.63338 1.08 0.00101034 0.000927375 0.0331739 0.030414 30 2387 25 6.87369e+06 321398 556674. 1926.21 1.37 0.17051 0.152598 25186 138497 -1 1962 22 1181 2132 158416 34156 3.7241 3.7241 -122.996 -3.7241 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0503555 0.0453994 119 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 16972 1 0.02 -1 -1 29912 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.4 MiB 0.39 704 9676 3283 5033 1360 54.9 MiB 0.06 0.00 2.58823 -84.5042 -2.58823 2.58823 1.14 0.000636772 0.000581042 0.0187246 0.0169526 28 1429 20 6.87369e+06 167686 531479. 1839.03 1.16 0.0987679 0.0873839 24610 126494 -1 1344 16 565 664 51936 12522 2.15017 2.15017 -84.3239 -2.15017 0 0 648988. 2245.63 0.23 0.05 0.20 -1 -1 0.23 0.0209922 0.0186754 65 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17208 1 0.03 -1 -1 29824 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 16.6 MiB 0.75 922 10744 2499 7805 440 55.4 MiB 0.15 0.00 4.70738 -131.097 -4.70738 4.70738 1.09 0.00103964 0.000954101 0.0552546 0.0506788 26 2404 21 6.87369e+06 419215 503264. 1741.40 1.46 0.184955 0.166174 24322 120374 -1 2181 26 1365 2192 198316 46035 4.0267 4.0267 -126.462 -4.0267 0 0 618332. 2139.56 0.22 0.13 0.19 -1 -1 0.22 0.0514779 0.0461193 120 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.11 17124 1 0.03 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.9 MiB 0.78 1018 15215 4457 9037 1721 55.4 MiB 0.20 0.00 3.58631 -115.037 -3.58631 3.58631 1.10 0.00105965 0.000973512 0.0766369 0.070337 28 2435 25 6.87369e+06 433189 531479. 1839.03 1.34 0.217143 0.195634 24610 126494 -1 2089 16 1119 1959 128537 28970 2.77996 2.77996 -111.593 -2.77996 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0349007 0.0314423 130 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30120 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1070 17066 5177 9769 2120 55.7 MiB 0.25 0.00 4.79173 -136.462 -4.79173 4.79173 1.09 0.00111852 0.00102531 0.0955342 0.0875644 30 2520 24 6.87369e+06 391268 556674. 1926.21 1.32 0.241781 0.217889 25186 138497 -1 2060 17 1055 1910 104827 24868 3.6681 3.6681 -124.886 -3.6681 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0391791 0.0352783 131 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17544 1 0.03 -1 -1 29932 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 16.7 MiB 0.82 703 9368 2220 5797 1351 55.3 MiB 0.14 0.00 3.24007 -107.338 -3.24007 3.24007 1.09 0.000969356 0.000888815 0.0558179 0.0512335 34 1987 21 6.87369e+06 223581 618332. 2139.56 1.89 0.25784 0.230376 25762 151098 -1 1602 21 1019 1690 110919 26652 2.93026 2.93026 -109.609 -2.93026 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.039734 0.0355098 99 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17204 1 0.03 -1 -1 30260 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 16.9 MiB 1.05 624 12763 3540 6427 2796 55.4 MiB 0.14 0.00 3.24697 -98.9537 -3.24697 3.24697 1.10 0.000905242 0.000828437 0.0592897 0.0542704 34 1668 26 6.87369e+06 363320 618332. 2139.56 1.88 0.255693 0.228092 25762 151098 -1 1287 19 837 1210 79394 20357 2.88626 2.88626 -92.5246 -2.88626 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0341161 0.0305116 97 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30028 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 16.9 MiB 0.82 763 12694 4114 7113 1467 55.4 MiB 0.16 0.00 3.5993 -104.629 -3.5993 3.5993 1.09 0.000895647 0.000821123 0.0706879 0.0648407 32 2109 21 6.87369e+06 251529 586450. 2029.24 1.27 0.182496 0.163976 25474 144626 -1 1799 19 1081 1917 171125 38306 3.09656 3.09656 -109.387 -3.09656 0 0 744469. 2576.02 0.24 0.09 0.16 -1 -1 0.24 0.0341036 0.0304703 95 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.78 834 13031 3636 7853 1542 55.5 MiB 0.17 0.00 3.99153 -123.226 -3.99153 3.99153 1.10 0.000908594 0.00083343 0.0701986 0.0643919 30 1992 21 6.87369e+06 237555 556674. 1926.21 1.21 0.185159 0.166466 25186 138497 -1 1733 20 1068 1783 108326 24960 2.87696 2.87696 -115.111 -2.87696 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0358872 0.0320927 101 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30080 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 17.0 MiB 0.92 614 5831 1071 4187 573 55.5 MiB 0.08 0.00 3.5993 -104.92 -3.5993 3.5993 1.11 0.000942266 0.000863803 0.030124 0.0275994 34 1764 25 6.87369e+06 363320 618332. 2139.56 2.01 0.226207 0.201135 25762 151098 -1 1500 18 955 1528 104603 27153 2.94926 2.94926 -105.489 -2.94926 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0341071 0.030541 102 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30232 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 16.7 MiB 2.67 863 14072 4376 7539 2157 55.3 MiB 0.17 0.00 3.04756 -100.489 -3.04756 3.04756 1.10 0.000963519 0.000882567 0.0742504 0.0680318 34 1909 21 6.87369e+06 349346 618332. 2139.56 1.93 0.282524 0.252565 25762 151098 -1 1708 19 1091 1614 119245 28263 2.38047 2.38047 -99.7204 -2.38047 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0364303 0.0325656 106 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 30368 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 17.2 MiB 3.11 1118 10108 2278 7040 790 55.8 MiB 0.16 0.00 4.17389 -123.088 -4.17389 4.17389 1.13 0.00125377 0.00115196 0.0551752 0.0506494 26 3090 38 6.87369e+06 558954 503264. 1741.40 2.37 0.24751 0.22246 24322 120374 -1 2752 73 3440 6386 638453 134864 3.8437 3.8437 -130.264 -3.8437 0 0 618332. 2139.56 0.21 0.37 0.10 -1 -1 0.21 0.158687 0.142126 156 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 30056 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 17.4 MiB 2.85 1050 18428 5889 9545 2994 55.9 MiB 0.25 0.00 3.99748 -134.85 -3.99748 3.99748 1.10 0.00126275 0.00115732 0.101552 0.0929345 30 2304 26 6.87369e+06 531006 556674. 1926.21 1.35 0.270848 0.244201 25186 138497 -1 1893 18 1445 2277 122140 29198 2.89086 2.89086 -117.356 -2.89086 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0457081 0.0411272 148 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17728 1 0.03 -1 -1 29884 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.9 MiB 1.85 729 12681 4828 6102 1751 55.5 MiB 0.17 0.00 4.09163 -121.55 -4.09163 4.09163 1.10 0.000998343 0.000909436 0.0727164 0.0665998 36 2115 36 6.87369e+06 251529 648988. 2245.63 2.52 0.297918 0.266009 26050 158493 -1 1823 19 1282 1905 152144 36164 3.3235 3.3235 -117.041 -3.3235 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0363083 0.0325031 109 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30232 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 17.2 MiB 2.26 953 14543 4925 6755 2863 55.8 MiB 0.22 0.00 3.78134 -121.658 -3.78134 3.78134 1.10 0.00121753 0.00111707 0.092723 0.0851141 34 2770 24 6.87369e+06 363320 618332. 2139.56 2.26 0.354562 0.318161 25762 151098 -1 2008 21 1651 2803 198970 45902 3.16061 3.16061 -121.592 -3.16061 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0495583 0.0445299 136 61 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17748 1 0.03 -1 -1 30272 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 17.2 MiB 3.56 1511 10033 2621 6359 1053 55.9 MiB 0.19 0.00 5.60672 -170.903 -5.60672 5.60672 1.10 0.00123988 0.0011376 0.0661355 0.0606186 36 3561 24 6.87369e+06 349346 648988. 2245.63 3.19 0.335264 0.300324 26050 158493 -1 3027 20 2176 3185 271931 58363 4.9855 4.9855 -172.625 -4.9855 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.049363 0.0444416 159 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17440 1 0.03 -1 -1 30244 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 17.2 MiB 3.10 1142 14964 4330 8425 2209 55.8 MiB 0.24 0.00 5.2871 -162.814 -5.2871 5.2871 1.09 0.00124341 0.0011398 0.0961406 0.0882082 34 2876 29 6.87369e+06 377294 618332. 2139.56 2.24 0.373323 0.335345 25762 151098 -1 2362 21 1520 2409 179820 40778 4.5536 4.5536 -160.543 -4.5536 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051341 0.046205 152 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.24 17680 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 17.0 MiB 2.56 964 8863 1996 5999 868 55.7 MiB 0.16 0.00 4.10673 -127.256 -4.10673 4.10673 1.09 0.00115809 0.00106169 0.0560972 0.0514876 34 2616 23 6.87369e+06 349346 618332. 2139.56 2.42 0.302219 0.270847 25762 151098 -1 2236 21 1617 2633 212782 50249 3.36391 3.36391 -125.026 -3.36391 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0481247 0.0431939 131 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17344 1 0.03 -1 -1 30260 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 16.9 MiB 2.31 831 14175 5092 5953 3130 55.6 MiB 0.19 0.00 4.31305 -113.651 -4.31305 4.31305 1.11 0.0010069 0.000923402 0.0803594 0.0737034 34 2736 36 6.87369e+06 279477 618332. 2139.56 2.52 0.32399 0.289731 25762 151098 -1 1845 22 1288 1920 137580 35695 3.95006 3.95006 -116.785 -3.95006 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0434897 0.0389097 119 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17812 1 0.03 -1 -1 30312 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57720 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 17.6 MiB 3.07 1125 12954 3388 8890 676 56.4 MiB 0.24 0.01 4.84068 -153.465 -4.84068 4.84068 1.08 0.00147061 0.0013497 0.0843156 0.0774585 30 2992 40 6.87369e+06 531006 556674. 1926.21 1.78 0.30639 0.275453 25186 138497 -1 2204 20 1416 2329 119183 30863 3.83736 3.83736 -145.825 -3.83736 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.059998 0.0541759 173 87 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30168 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 16.7 MiB 1.54 779 13291 4134 7087 2070 55.2 MiB 0.17 0.00 3.55895 -107.74 -3.55895 3.55895 1.09 0.00090143 0.000826536 0.0672226 0.0616137 32 2017 21 6.87369e+06 307425 586450. 2029.24 1.30 0.182823 0.163825 25474 144626 -1 1822 19 1136 1936 156094 34416 2.84596 2.84596 -105.425 -2.84596 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0343096 0.0306247 96 28 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30016 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.1 MiB 2.12 1055 8969 2107 6380 482 55.6 MiB 0.16 0.00 4.79158 -142.334 -4.79158 4.79158 1.08 0.00114727 0.0010531 0.0571597 0.052522 30 2731 23 6.87369e+06 321398 556674. 1926.21 1.49 0.204889 0.184461 25186 138497 -1 2039 22 1317 1992 125222 30107 3.86576 3.86576 -132.751 -3.86576 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0488297 0.0438813 140 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17472 1 0.03 -1 -1 30092 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 17.2 MiB 1.72 980 9951 2142 7372 437 55.7 MiB 0.16 0.00 3.6843 -115.486 -3.6843 3.6843 1.10 0.00114017 0.00104345 0.054876 0.0502675 32 2890 26 6.87369e+06 447163 586450. 2029.24 1.52 0.214694 0.192887 25474 144626 -1 2221 21 1588 2681 224480 50258 3.07761 3.07761 -115.254 -3.07761 0 0 744469. 2576.02 0.28 0.13 0.22 -1 -1 0.28 0.0483915 0.0435044 132 53 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17272 1 0.03 -1 -1 29916 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 17.1 MiB 0.62 972 9537 2296 6533 708 55.6 MiB 0.15 0.00 4.25479 -129.925 -4.25479 4.25479 1.10 0.00103305 0.000948691 0.0517253 0.0474601 34 2449 22 6.87369e+06 363320 618332. 2139.56 2.04 0.272205 0.243703 25762 151098 -1 2032 21 1272 2425 189312 41406 3.7011 3.7011 -125.423 -3.7011 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.042724 0.0383319 123 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30144 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 2.75 1122 14450 4547 7634 2269 55.9 MiB 0.22 0.00 5.14049 -153.237 -5.14049 5.14049 1.15 0.0011651 0.00106167 0.0920349 0.0844038 34 2716 24 6.87369e+06 307425 618332. 2139.56 2.03 0.341431 0.306754 25762 151098 -1 2240 21 1280 1794 138052 31873 3.3592 3.3592 -127.805 -3.3592 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0483511 0.0435009 136 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17572 1 0.03 -1 -1 30108 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 17.1 MiB 2.76 990 17178 5882 8168 3128 55.6 MiB 0.22 0.00 3.6884 -118.378 -3.6884 3.6884 1.13 0.00119028 0.00109152 0.0969832 0.0890224 30 2877 24 6.87369e+06 447163 556674. 1926.21 2.06 0.24617 0.221899 25186 138497 -1 2092 22 1461 2649 168211 40081 3.23791 3.23791 -114.832 -3.23791 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0506258 0.0454724 136 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17612 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 17.3 MiB 2.72 922 18795 6474 8507 3814 56.0 MiB 0.25 0.00 4.11773 -131.117 -4.11773 4.11773 1.09 0.001253 0.00114877 0.106613 0.0977332 34 3101 29 6.87369e+06 489084 618332. 2139.56 3.81 0.394023 0.354189 25762 151098 -1 2029 22 1693 2800 249488 68630 3.24686 3.24686 -120.996 -3.24686 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0497199 0.0445939 144 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.18 17500 1 0.03 -1 -1 30112 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 17.2 MiB 0.81 881 12751 3354 7696 1701 55.7 MiB 0.18 0.00 4.26989 -123.123 -4.26989 4.26989 1.14 0.00105861 0.000969819 0.0629599 0.0576046 30 2195 22 6.87369e+06 461137 556674. 1926.21 1.25 0.19795 0.177861 25186 138497 -1 1695 21 965 1709 89776 21316 3.6008 3.6008 -117.658 -3.6008 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0433435 0.038876 124 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 17.2 MiB 1.96 1140 14450 4739 7431 2280 55.7 MiB 0.22 0.00 4.86398 -140.272 -4.86398 4.86398 0.93 0.00108809 0.00099787 0.086344 0.0792406 34 2688 26 6.87369e+06 307425 618332. 2139.56 2.17 0.324166 0.291016 25762 151098 -1 2351 20 1637 2366 176234 40551 3.92996 3.92996 -134.935 -3.92996 0 0 787024. 2723.27 0.30 0.13 0.24 -1 -1 0.30 0.0510374 0.0458698 135 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.23 17548 1 0.03 -1 -1 30132 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 17.1 MiB 1.94 912 13105 4297 5300 3508 55.7 MiB 0.20 0.00 4.74348 -140.694 -4.74348 4.74348 1.10 0.00121584 0.00111409 0.0919869 0.0843179 36 3390 47 6.87369e+06 307425 648988. 2245.63 6.53 0.407763 0.365761 26050 158493 -1 2334 18 1713 2698 193753 48203 4.43196 4.43196 -140.453 -4.43196 0 0 828058. 2865.25 0.28 0.12 0.25 -1 -1 0.28 0.0444339 0.0399813 141 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30156 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 17.0 MiB 2.52 1089 15709 4726 9045 1938 55.6 MiB 0.26 0.00 4.3693 -136.102 -4.3693 4.3693 1.10 0.00125378 0.00114917 0.11062 0.101378 34 2963 29 6.87369e+06 293451 618332. 2139.56 2.33 0.390143 0.350441 25762 151098 -1 2412 22 1699 3098 239730 53476 3.72146 3.72146 -134.49 -3.72146 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0414054 0.0367764 135 77 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17516 1 0.03 -1 -1 29852 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 16.7 MiB 0.65 730 9914 2670 6709 535 55.2 MiB 0.13 0.00 3.5583 -105.077 -3.5583 3.5583 1.11 0.000888448 0.000814877 0.049088 0.045012 28 1795 23 6.87369e+06 307425 531479. 1839.03 1.19 0.163896 0.146544 24610 126494 -1 1697 21 974 1670 124586 29567 2.90826 2.90826 -103.963 -2.90826 0 0 648988. 2245.63 0.25 0.09 0.20 -1 -1 0.25 0.0366539 0.0327269 93 23 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.15 17708 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 17.1 MiB 1.58 968 15568 5616 7798 2154 55.7 MiB 0.23 0.00 3.7434 -130.891 -3.7434 3.7434 1.10 0.00111355 0.00102049 0.100662 0.0921985 34 2779 24 6.87369e+06 251529 618332. 2139.56 2.48 0.345504 0.310017 25762 151098 -1 2225 24 1781 2546 222546 49444 3.3365 3.3365 -133.232 -3.3365 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0513225 0.0459169 124 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30200 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 17.4 MiB 2.65 1427 16858 5256 9636 1966 55.9 MiB 0.31 0.01 5.58608 -163.667 -5.58608 5.58608 1.12 0.00130956 0.00119393 0.116751 0.106994 34 3599 26 6.87369e+06 335372 618332. 2139.56 2.40 0.400091 0.360503 25762 151098 -1 2933 22 2135 3307 260209 58698 4.8184 4.8184 -161.399 -4.8184 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0565629 0.0509837 166 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30248 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 16.9 MiB 2.71 968 18998 5516 10575 2907 55.6 MiB 0.26 0.00 4.31005 -135.578 -4.31005 4.31005 1.15 0.00114826 0.00105287 0.10061 0.0921914 28 2295 25 6.87369e+06 475111 531479. 1839.03 1.43 0.254037 0.229213 24610 126494 -1 2110 22 1551 2528 176522 41622 3.19176 3.19176 -124.427 -3.19176 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0497725 0.0447427 137 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30344 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 16.6 MiB 0.69 634 6615 1367 5002 246 55.2 MiB 0.10 0.00 3.6392 -108.305 -3.6392 3.6392 1.12 0.000949142 0.000870264 0.0351363 0.0322151 26 2210 35 6.87369e+06 349346 503264. 1741.40 1.89 0.179869 0.160598 24322 120374 -1 1732 22 1273 2053 177294 42109 3.24486 3.24486 -115.112 -3.24486 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0409999 0.0366091 104 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18040 1 0.03 -1 -1 30148 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 17.5 MiB 4.62 1457 14543 4326 8631 1586 56.0 MiB 0.25 0.00 5.90291 -175.463 -5.90291 5.90291 1.15 0.00140404 0.00128981 0.106924 0.098195 34 3438 35 6.87369e+06 349346 618332. 2139.56 2.82 0.450574 0.404975 25762 151098 -1 2911 20 2264 3374 276997 62014 4.9852 4.9852 -172.57 -4.9852 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0567522 0.0510925 171 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.20 17512 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 17.1 MiB 2.91 1003 17199 4580 10530 2089 55.8 MiB 0.22 0.00 4.63938 -140.336 -4.63938 4.63938 1.09 0.00113653 0.00104279 0.086217 0.0790462 32 2464 25 6.87369e+06 489084 586450. 2029.24 1.30 0.235118 0.211893 25474 144626 -1 2095 23 1635 2729 201771 45578 3.7433 3.7433 -131.792 -3.7433 0 0 744469. 2576.02 0.25 0.14 0.25 -1 -1 0.25 0.0583252 0.0523287 135 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.21 17004 1 0.03 -1 -1 30300 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.6 MiB 0.60 878 10618 2802 6933 883 55.1 MiB 0.13 0.00 3.66956 -107.639 -3.66956 3.66956 1.09 0.000842428 0.000772955 0.0483077 0.0443019 30 1958 22 6.87369e+06 335372 556674. 1926.21 1.20 0.153992 0.137786 25186 138497 -1 1653 18 727 1303 82483 19055 2.69971 2.69971 -100.23 -2.69971 0 0 706193. 2443.58 0.24 0.07 0.22 -1 -1 0.24 0.0301438 0.0269005 94 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30088 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 17.2 MiB 1.91 1091 19371 5911 10963 2497 55.8 MiB 0.29 0.00 5.19487 -138.438 -5.19487 5.19487 1.09 0.00119073 0.00109154 0.107031 0.0981231 28 2690 23 6.87369e+06 517032 531479. 1839.03 1.92 0.258793 0.233494 24610 126494 -1 2422 22 1633 3034 222693 49806 4.75015 4.75015 -146.366 -4.75015 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0504607 0.0453269 145 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17020 1 0.03 -1 -1 29900 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.9 MiB 0.70 765 8363 1967 5928 468 55.4 MiB 0.12 0.00 3.6502 -113.574 -3.6502 3.6502 1.14 0.000890535 0.000816823 0.0436033 0.0399958 34 2139 22 6.87369e+06 265503 618332. 2139.56 1.94 0.230874 0.206007 25762 151098 -1 1778 19 1158 2038 144835 33647 2.93826 2.93826 -111.413 -2.93826 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0333727 0.0298343 98 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30260 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 16.8 MiB 2.14 687 8418 1716 5962 740 55.4 MiB 0.11 0.00 3.88482 -111.398 -3.88482 3.88482 1.10 0.000952754 0.000872315 0.0402322 0.0367669 28 2032 22 6.87369e+06 475111 531479. 1839.03 1.77 0.160885 0.14387 24610 126494 -1 1732 18 1171 2098 140097 34058 3.01326 3.01326 -110.382 -3.01326 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0341463 0.0305437 109 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.23 17824 1 0.03 -1 -1 30200 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 17.3 MiB 3.37 1118 13105 3443 8133 1529 55.9 MiB 0.22 0.00 4.10563 -124.474 -4.10563 4.10563 1.08 0.00117506 0.00107908 0.0855685 0.0785651 34 2878 24 6.87369e+06 335372 618332. 2139.56 2.29 0.344993 0.309998 25762 151098 -1 2350 23 1916 2927 214977 49304 3.34511 3.34511 -121.343 -3.34511 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0515055 0.0461992 138 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30116 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 17.3 MiB 1.97 806 8532 1884 6173 475 55.9 MiB 0.13 0.00 4.39805 -136.981 -4.39805 4.39805 1.09 0.00117657 0.0010785 0.0530477 0.0486391 34 2439 23 6.87369e+06 363320 618332. 2139.56 2.09 0.299316 0.267767 25762 151098 -1 1892 22 1562 2465 167343 39695 4.014 4.014 -132.895 -4.014 0 0 787024. 2723.27 0.26 0.11 0.20 -1 -1 0.26 0.0503472 0.0451689 132 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 29964 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 16.9 MiB 1.96 1121 14983 4753 8344 1886 55.6 MiB 0.23 0.00 4.71348 -141.457 -4.71348 4.71348 1.08 0.00117336 0.00107288 0.089057 0.0814205 32 3230 48 6.87369e+06 377294 586450. 2029.24 1.72 0.230021 0.20632 25474 144626 -1 2572 20 1540 2596 302466 61481 4.17136 4.17136 -144.462 -4.17136 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0466228 0.0418861 133 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30204 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.8 MiB 3.01 883 12923 4460 6401 2062 55.2 MiB 0.18 0.00 4.76482 -134.311 -4.76482 4.76482 1.11 0.000942363 0.000863762 0.0748571 0.0686393 34 2173 23 6.87369e+06 209608 618332. 2139.56 2.03 0.275504 0.246284 25762 151098 -1 1919 24 1085 1501 133785 29128 3.40117 3.40117 -117.767 -3.40117 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0436354 0.0389494 103 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 16.8 MiB 2.36 973 14184 4741 7494 1949 55.5 MiB 0.20 0.00 3.76746 -124.928 -3.76746 3.76746 1.11 0.00104036 0.000952347 0.0890098 0.0815109 34 2486 19 6.87369e+06 237555 618332. 2139.56 2.15 0.311427 0.278515 25762 151098 -1 2089 19 1315 1949 148629 34679 3.2835 3.2835 -124.572 -3.2835 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0397929 0.0356554 114 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30248 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 17.3 MiB 2.32 925 17835 5186 10054 2595 55.8 MiB 0.23 0.00 3.47005 -102.148 -3.47005 3.47005 1.12 0.00109299 0.000990592 0.0916177 0.0835937 32 2458 31 6.87369e+06 475111 586450. 2029.24 1.35 0.246458 0.221357 25474 144626 -1 1948 22 1270 2371 177844 39960 2.91726 2.91726 -101.622 -2.91726 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464306 0.0415659 124 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.20 17204 1 0.03 -1 -1 30228 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 16.9 MiB 1.66 875 14783 4032 9129 1622 55.5 MiB 0.18 0.00 4.05975 -105.458 -4.05975 4.05975 1.12 0.000964005 0.00088451 0.0674525 0.0617504 26 2270 25 6.87369e+06 489084 503264. 1741.40 1.63 0.198666 0.178204 24322 120374 -1 2027 21 1268 2387 205598 45639 3.972 3.972 -115.213 -3.972 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0397022 0.0354872 117 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30284 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 2.48 802 13599 4534 7471 1594 55.4 MiB 0.20 0.00 4.04073 -123.042 -4.04073 4.04073 1.10 0.00104353 0.000956607 0.0865742 0.0793737 28 2087 22 6.87369e+06 237555 531479. 1839.03 1.61 0.221733 0.199532 24610 126494 -1 1892 21 1343 2306 173766 40652 3.29986 3.29986 -123.134 -3.29986 0 0 648988. 2245.63 0.23 0.11 0.17 -1 -1 0.23 0.0433918 0.0388331 105 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.18 17492 1 0.03 -1 -1 29956 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 17.1 MiB 2.50 1020 11806 3110 7534 1162 55.6 MiB 0.19 0.00 3.6756 -125.066 -3.6756 3.6756 1.11 0.00115759 0.00106548 0.0776347 0.0711589 34 2679 22 6.87369e+06 237555 618332. 2139.56 2.27 0.3156 0.282166 25762 151098 -1 2172 18 1392 2053 173685 39227 3.20081 3.20081 -127.632 -3.20081 0 0 787024. 2723.27 0.27 0.10 0.25 -1 -1 0.27 0.0407596 0.0366541 122 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17216 1 0.03 -1 -1 30240 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 17.2 MiB 0.70 1014 15430 4861 8054 2515 55.7 MiB 0.21 0.00 4.6284 -133.663 -4.6284 4.6284 1.08 0.00103659 0.000950404 0.0778856 0.0713369 32 2693 29 6.87369e+06 433189 586450. 2029.24 1.45 0.2229 0.200597 25474 144626 -1 2134 19 1219 2210 164082 37394 3.5018 3.5018 -123.469 -3.5018 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0394341 0.0354115 129 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.1 MiB 2.97 1172 16215 5632 8430 2153 55.8 MiB 0.28 0.01 4.82738 -155.303 -4.82738 4.82738 1.08 0.00118466 0.00108712 0.102786 0.0943375 34 3239 22 6.87369e+06 321398 618332. 2139.56 2.29 0.351728 0.316263 25762 151098 -1 2741 20 1767 2644 217703 50575 4.30086 4.30086 -152.489 -4.30086 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0471756 0.0424646 147 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30156 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 17.5 MiB 3.44 951 10308 2331 7565 412 55.9 MiB 0.17 0.00 5.39654 -155.229 -5.39654 5.39654 1.08 0.00125147 0.00114661 0.0602278 0.0551991 34 2817 24 6.87369e+06 503058 618332. 2139.56 2.75 0.326765 0.292969 25762 151098 -1 2165 23 1634 2704 199475 48470 4.14135 4.14135 -141.69 -4.14135 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.056744 0.0509518 147 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17612 1 0.03 -1 -1 30200 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 17.2 MiB 2.80 1114 12702 3372 8526 804 55.9 MiB 0.20 0.00 4.59844 -147.406 -4.59844 4.59844 1.10 0.00127091 0.00116653 0.0701108 0.0641225 28 3068 25 6.87369e+06 572927 531479. 1839.03 2.18 0.240863 0.216813 24610 126494 -1 2645 25 1813 3370 330481 68782 3.96 3.96 -145.051 -3.96 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.0596606 0.0535772 148 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17224 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 17.0 MiB 2.21 643 13768 5811 6950 1007 55.6 MiB 0.17 0.00 4.04073 -117.599 -4.04073 4.04073 1.12 0.000933645 0.000855475 0.0788415 0.0722911 36 1975 29 6.87369e+06 237555 648988. 2245.63 3.07 0.292429 0.261508 26050 158493 -1 1437 20 958 1552 107805 26738 3.17261 3.17261 -106.943 -3.17261 0 0 828058. 2865.25 0.25 0.04 0.13 -1 -1 0.25 0.015893 0.0140921 99 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30204 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 17.2 MiB 3.14 958 7038 1640 4840 558 55.8 MiB 0.13 0.00 4.57902 -143.19 -4.57902 4.57902 1.15 0.00122002 0.00111677 0.050452 0.0462371 34 2472 21 6.87369e+06 307425 618332. 2139.56 2.20 0.308633 0.276604 25762 151098 -1 1990 20 1617 2540 179225 41610 3.7651 3.7651 -137.998 -3.7651 0 0 787024. 2723.27 0.26 0.12 0.26 -1 -1 0.26 0.0489913 0.0441345 136 63 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30100 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.1 MiB 2.30 1035 6615 1396 4961 258 55.7 MiB 0.13 0.00 5.21006 -150.271 -5.21006 5.21006 1.09 0.00116252 0.00106808 0.0434835 0.0399114 34 2845 24 6.87369e+06 321398 618332. 2139.56 2.44 0.292221 0.261153 25762 151098 -1 2413 22 1704 2806 223267 50806 4.44196 4.44196 -146.742 -4.44196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0490046 0.0440331 140 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30200 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1178 17839 5313 10611 1915 55.8 MiB 0.26 0.00 5.241 -151.339 -5.241 5.241 1.09 0.00112774 0.00103357 0.102139 0.0936497 36 2587 21 6.87369e+06 391268 648988. 2245.63 2.24 0.339207 0.304504 26050 158493 -1 2283 20 1514 2383 165366 37937 4.261 4.261 -144.483 -4.261 0 0 828058. 2865.25 0.28 0.11 0.24 -1 -1 0.28 0.0454221 0.040835 141 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 17.2 MiB 2.34 1032 10531 2482 6524 1525 55.7 MiB 0.16 0.00 4.69758 -143.214 -4.69758 4.69758 1.10 0.0012019 0.00110052 0.0626885 0.0574338 32 2579 23 6.87369e+06 447163 586450. 2029.24 1.35 0.220934 0.198548 25474 144626 -1 2142 21 1344 2275 193292 43208 3.4535 3.4535 -131.105 -3.4535 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0501669 0.045029 135 83 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17788 1 0.03 -1 -1 30120 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1030 11245 3242 7121 882 55.7 MiB 0.19 0.00 4.79284 -145.044 -4.79284 4.79284 1.09 0.00120243 0.00110169 0.0754728 0.0691563 34 2708 22 6.87369e+06 293451 618332. 2139.56 2.20 0.328567 0.294923 25762 151098 -1 2211 24 1772 3172 252269 55262 3.84946 3.84946 -137.262 -3.84946 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0549061 0.0492868 132 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.18 17780 1 0.02 -1 -1 30104 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 17.0 MiB 2.35 973 10944 3003 6644 1297 55.6 MiB 0.17 0.00 4.08063 -124.263 -4.08063 4.08063 1.10 0.00119469 0.00109372 0.0683323 0.0626063 34 2457 23 6.87369e+06 405241 618332. 2139.56 2.19 0.326548 0.29268 25762 151098 -1 2069 23 1652 2711 206508 47762 3.11951 3.11951 -119.044 -3.11951 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0535818 0.0480871 132 85 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.16 17040 1 0.03 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.7 MiB 0.60 780 13906 5362 7318 1226 55.1 MiB 0.18 0.00 4.08063 -122.384 -4.08063 4.08063 1.23 0.00088075 0.000808531 0.0728737 0.0668639 34 1855 45 6.87369e+06 237555 618332. 2139.56 1.90 0.289997 0.259228 25762 151098 -1 1545 20 890 1368 99226 22570 2.94401 2.94401 -106.567 -2.94401 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0347832 0.0310972 96 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.16 17632 1 0.02 -1 -1 30136 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 17.4 MiB 4.09 1081 9548 2182 6489 877 55.9 MiB 0.15 0.00 4.62608 -140.581 -4.62608 4.62608 1.08 0.00121786 0.0011163 0.0547578 0.0501773 28 2635 30 6.87369e+06 475111 531479. 1839.03 1.49 0.225313 0.202471 24610 126494 -1 2394 20 1652 2696 203697 47134 4.0193 4.0193 -140.548 -4.0193 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.047923 0.04307 137 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30208 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 17.2 MiB 3.47 1050 13477 3452 8462 1563 55.9 MiB 0.24 0.00 4.60818 -154.696 -4.60818 4.60818 1.08 0.0012808 0.001174 0.0963612 0.0883918 34 2764 25 6.87369e+06 293451 618332. 2139.56 2.80 0.383849 0.344758 25762 151098 -1 2341 19 1705 2865 213262 48811 3.7531 3.7531 -149.559 -3.7531 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488461 0.0440008 142 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17504 1 0.02 -1 -1 29888 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 16.8 MiB 2.79 803 10744 3029 6489 1226 55.3 MiB 0.16 0.00 4.47622 -122.656 -4.47622 4.47622 1.09 0.000939872 0.000862157 0.0608998 0.0558999 34 2330 21 6.87369e+06 223581 618332. 2139.56 2.08 0.227181 0.202151 25762 151098 -1 1874 19 1142 1513 111450 26852 3.4908 3.4908 -118.606 -3.4908 0 0 787024. 2723.27 0.28 0.04 0.25 -1 -1 0.28 0.0160197 0.0142619 106 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30232 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 17.0 MiB 0.64 704 7103 1505 5021 577 55.5 MiB 0.11 0.00 4.06963 -117.109 -4.06963 4.06963 1.09 0.00088824 0.000815197 0.0371049 0.0340427 30 1825 19 6.87369e+06 279477 556674. 1926.21 1.18 0.142927 0.127765 25186 138497 -1 1577 16 870 1445 78907 18836 2.91301 2.91301 -105.151 -2.91301 0 0 706193. 2443.58 0.25 0.07 0.22 -1 -1 0.25 0.0292888 0.0262723 99 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17544 1 0.04 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 17.3 MiB 2.65 1122 16407 5100 9312 1995 55.9 MiB 0.27 0.00 4.76368 -149.576 -4.76368 4.76368 1.10 0.00116865 0.00107344 0.103522 0.0950554 34 3132 23 6.87369e+06 321398 618332. 2139.56 2.46 0.359398 0.323537 25762 151098 -1 2492 20 1868 2567 249452 54373 4.30566 4.30566 -151.517 -4.30566 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0469041 0.0421885 145 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 17.3 MiB 2.30 1027 10087 2665 7077 345 55.9 MiB 0.16 0.00 5.28228 -152.543 -5.28228 5.28228 1.12 0.00138567 0.00128784 0.0614257 0.0563639 36 2623 39 6.87369e+06 377294 648988. 2245.63 2.62 0.344948 0.308984 26050 158493 -1 2094 19 1245 1937 117668 28657 4.6349 4.6349 -144.976 -4.6349 0 0 828058. 2865.25 0.29 0.10 0.25 -1 -1 0.29 0.0445001 0.0400465 142 56 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 29956 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.1 MiB 0.93 1027 19820 5642 10737 3441 55.8 MiB 0.29 0.00 5.45503 -148.146 -5.45503 5.45503 1.08 0.00121612 0.00111807 0.107206 0.098231 30 3056 37 6.87369e+06 503058 556674. 1926.21 1.58 0.292952 0.26461 25186 138497 -1 2126 21 1515 2796 169916 40317 4.54885 4.54885 -143.677 -4.54885 0 0 706193. 2443.58 0.26 0.12 0.21 -1 -1 0.26 0.05014 0.0451766 157 3 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29952 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 17.2 MiB 2.23 803 13893 3888 7187 2818 55.6 MiB 0.18 0.00 3.64131 -107.005 -3.64131 3.64131 1.09 0.00105043 0.000962367 0.0692627 0.0634947 32 2150 23 6.87369e+06 475111 586450. 2029.24 1.33 0.204167 0.183648 25474 144626 -1 1779 22 1365 2449 186602 43150 2.93196 2.93196 -102.245 -2.93196 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0445553 0.0398193 119 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17396 1 0.03 -1 -1 30448 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 16.7 MiB 0.89 507 7132 1637 4881 614 55.2 MiB 0.09 0.00 3.6605 -96.1635 -3.6605 3.6605 1.08 0.000876497 0.000803229 0.0385784 0.035388 30 1496 20 6.87369e+06 293451 556674. 1926.21 1.23 0.147884 0.132483 25186 138497 -1 1196 17 785 1135 70779 17542 2.76101 2.76101 -92.6515 -2.76101 0 0 706193. 2443.58 0.25 0.06 0.22 -1 -1 0.25 0.0302516 0.0270396 96 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.22 18076 1 0.03 -1 -1 30104 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 3.22 1378 10228 2746 6595 887 56.2 MiB 0.20 0.01 4.35815 -140.01 -4.35815 4.35815 1.08 0.000949139 0.000853683 0.0530295 0.047898 34 3944 37 6.87369e+06 335372 618332. 2139.56 4.04 0.378197 0.338351 25762 151098 -1 3174 19 1978 3279 270018 60360 4.54246 4.54246 -148.713 -4.54246 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515533 0.0464878 165 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17728 1 0.04 -1 -1 30128 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 17.3 MiB 3.75 1036 15709 5736 7909 2064 55.9 MiB 0.24 0.00 5.60997 -168.26 -5.60997 5.60997 1.09 0.00118652 0.00108835 0.103341 0.0947328 34 2870 35 6.87369e+06 307425 618332. 2139.56 2.65 0.384237 0.345103 25762 151098 -1 2240 23 2002 3041 253136 56900 4.5866 4.5866 -154.916 -4.5866 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0533136 0.0479038 139 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.18 17616 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 17.0 MiB 3.86 954 12542 3477 7836 1229 55.6 MiB 0.18 0.00 4.34735 -144.276 -4.34735 4.34735 1.06 0.00107359 0.000982983 0.0781178 0.0715394 34 2396 24 6.87369e+06 251529 618332. 2139.56 2.40 0.311446 0.278793 25762 151098 -1 1977 20 1353 1987 138164 34066 3.5981 3.5981 -140.671 -3.5981 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.042494 0.0380972 118 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30228 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 17.3 MiB 1.02 986 18523 6141 9875 2507 55.9 MiB 0.24 0.00 5.03998 -136.555 -5.03998 5.03998 1.09 0.00111349 0.00101161 0.0951427 0.0870949 28 2617 26 6.87369e+06 461137 531479. 1839.03 1.68 0.242867 0.21878 24610 126494 -1 2265 23 1411 2278 185501 41444 3.8566 3.8566 -128.643 -3.8566 0 0 648988. 2245.63 0.25 0.12 0.20 -1 -1 0.25 0.0481912 0.0431683 129 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17620 1 0.03 -1 -1 30028 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 17.3 MiB 1.74 1064 18301 5445 10263 2593 55.9 MiB 0.26 0.00 4.47348 -130.92 -4.47348 4.47348 1.08 0.00123397 0.0011278 0.104567 0.0959235 32 2670 22 6.87369e+06 475111 586450. 2029.24 1.32 0.263812 0.238508 25474 144626 -1 2206 21 1472 2558 198438 45014 3.63536 3.63536 -124.973 -3.63536 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0509373 0.045852 149 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 29960 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1005 13953 3900 8706 1347 55.7 MiB 0.19 0.00 3.71604 -108.811 -3.71604 3.71604 1.09 0.00109393 0.00100419 0.0751879 0.0689936 34 2309 22 6.87369e+06 433189 618332. 2139.56 1.97 0.302462 0.270903 25762 151098 -1 1950 17 1067 1860 124922 29376 2.93031 2.93031 -104.331 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0372075 0.0333996 124 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17552 1 0.03 -1 -1 30196 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 17.3 MiB 2.95 1158 14261 4788 7245 2228 56.0 MiB 0.24 0.00 4.84864 -152.871 -4.84864 4.84864 1.12 0.0011773 0.00108035 0.0944781 0.0867188 34 3462 28 6.87369e+06 307425 618332. 2139.56 3.68 0.362373 0.325262 25762 151098 -1 2628 23 2062 3235 287780 62306 4.17495 4.17495 -148.162 -4.17495 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0525623 0.0472511 148 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 29960 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 2.79 1138 19124 5521 11431 2172 56.0 MiB 0.27 0.00 4.13563 -138.632 -4.13563 4.13563 1.09 0.00125792 0.00115354 0.106942 0.0980626 28 2715 22 6.87369e+06 503058 531479. 1839.03 1.39 0.26827 0.24226 24610 126494 -1 2408 19 1498 2419 164089 37336 3.12431 3.12431 -127.083 -3.12431 0 0 648988. 2245.63 0.20 0.06 0.10 -1 -1 0.20 0.0200243 0.0178352 147 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30208 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 1.67 666 12120 4433 5222 2465 55.2 MiB 0.15 0.00 3.97634 -118.279 -3.97634 3.97634 1.10 0.000929794 0.000851847 0.0688721 0.0631396 32 1713 25 6.87369e+06 265503 586450. 2029.24 1.25 0.19052 0.171138 25474 144626 -1 1450 16 1051 1510 102810 24073 2.88196 2.88196 -105.209 -2.88196 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0303425 0.0272215 101 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.14 17548 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 17.0 MiB 1.49 954 14256 4666 7594 1996 55.7 MiB 0.21 0.00 4.32352 -124.508 -4.32352 4.32352 1.11 0.00102158 0.000935586 0.0956169 0.0875227 30 2387 23 6.87369e+06 237555 556674. 1926.21 1.27 0.226536 0.203784 25186 138497 -1 2015 15 856 1149 82635 18383 3.26184 3.26184 -123.375 -3.26184 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0317896 0.0285409 112 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.16 17776 1 0.03 -1 -1 30352 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1008 17238 4626 10206 2406 55.5 MiB 0.22 0.00 4.58512 -131.297 -4.58512 4.58512 1.10 0.00110649 0.00101395 0.083692 0.0766199 28 2463 22 6.87369e+06 544980 531479. 1839.03 1.52 0.225352 0.203057 24610 126494 -1 2321 20 1520 2685 209113 46179 4.2616 4.2616 -136.339 -4.2616 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0448876 0.0404245 135 33 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.20 17340 1 0.03 -1 -1 30248 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 766 12464 3650 7053 1761 55.5 MiB 0.18 0.00 4.72278 -121.674 -4.72278 4.72278 1.09 0.000899171 0.000824059 0.0680569 0.0624196 36 2048 24 6.87369e+06 265503 648988. 2245.63 2.22 0.259798 0.23211 26050 158493 -1 1693 19 1092 1446 93186 24458 3.45685 3.45685 -110.754 -3.45685 0 0 828058. 2865.25 0.28 0.08 0.25 -1 -1 0.28 0.0344255 0.0307369 107 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17292 1 0.03 -1 -1 29988 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 16.6 MiB 2.82 839 11909 3234 7671 1004 55.3 MiB 0.16 0.00 4.09853 -129.483 -4.09853 4.09853 1.09 0.000955564 0.000875816 0.0697271 0.0639335 34 2157 23 6.87369e+06 209608 618332. 2139.56 2.01 0.271515 0.242682 25762 151098 -1 1820 21 1422 2436 176587 40630 2.89096 2.89096 -115.541 -2.89096 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0388064 0.0346758 101 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30048 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 17.1 MiB 2.53 942 11236 2692 7798 746 55.8 MiB 0.18 0.00 3.93572 -125.697 -3.93572 3.93572 1.10 0.00121872 0.00111753 0.0625795 0.0573494 30 2084 23 6.87369e+06 517032 556674. 1926.21 1.28 0.219862 0.197751 25186 138497 -1 1755 22 1427 2345 123843 30179 2.85066 2.85066 -111.306 -2.85066 0 0 706193. 2443.58 0.26 0.11 0.22 -1 -1 0.26 0.052524 0.0471849 141 64 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17608 1 0.02 -1 -1 30212 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 17.0 MiB 2.70 854 11604 2702 8073 829 55.4 MiB 0.15 0.00 3.71466 -115.66 -3.71466 3.71466 1.09 0.000909409 0.000834046 0.0640496 0.0587601 34 2121 22 6.87369e+06 237555 618332. 2139.56 1.85 0.254782 0.227738 25762 151098 -1 1793 24 1269 1863 147188 34139 3.22491 3.22491 -116.376 -3.22491 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0421916 0.0375718 105 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.13 17656 1 0.03 -1 -1 29856 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 17.5 MiB 2.67 1000 15215 3699 9919 1597 55.8 MiB 0.21 0.00 3.6733 -115.913 -3.6733 3.6733 1.09 0.001153 0.00105707 0.0841343 0.0771503 28 2463 22 6.87369e+06 433189 531479. 1839.03 1.49 0.229766 0.206956 24610 126494 -1 2134 17 1072 1687 130609 29568 3.23291 3.23291 -117.711 -3.23291 0 0 648988. 2245.63 0.23 0.09 0.20 -1 -1 0.23 0.0396763 0.0356484 129 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 17.3 MiB 2.98 1013 12839 3510 8051 1278 55.9 MiB 0.19 0.00 3.7214 -127.022 -3.7214 3.7214 1.08 0.00124903 0.00114422 0.0775456 0.0710626 26 2613 33 6.87369e+06 447163 503264. 1741.40 1.73 0.258758 0.232835 24322 120374 -1 2318 22 1836 2739 240609 53381 3.49736 3.49736 -136.167 -3.49736 0 0 618332. 2139.56 0.25 0.13 0.21 -1 -1 0.25 0.0455104 0.0407095 137 91 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17352 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 17.0 MiB 2.09 868 13324 3871 8104 1349 55.4 MiB 0.18 0.00 3.6034 -114.008 -3.6034 3.6034 1.08 0.000996912 0.000912568 0.0799895 0.0732793 34 2053 23 6.87369e+06 223581 618332. 2139.56 1.91 0.28921 0.258746 25762 151098 -1 1867 20 1096 1750 148394 33483 2.93031 2.93031 -111.865 -2.93031 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0394106 0.035257 99 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30100 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.9 MiB 1.58 974 10050 2495 6517 1038 55.6 MiB 0.16 0.00 4.16989 -130.796 -4.16989 4.16989 1.11 0.00098787 0.000905254 0.0631511 0.0579007 34 2564 21 6.87369e+06 251529 618332. 2139.56 2.08 0.27106 0.242437 25762 151098 -1 2158 22 1584 2433 195283 44249 3.42321 3.42321 -125.2 -3.42321 0 0 787024. 2723.27 0.31 0.11 0.24 -1 -1 0.31 0.0424128 0.0379621 114 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30108 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 17.1 MiB 2.48 1073 14072 3847 8138 2087 55.7 MiB 0.20 0.00 4.82103 -137.111 -4.82103 4.82103 1.11 0.00109851 0.00100928 0.0844716 0.0775679 34 2766 23 6.87369e+06 307425 618332. 2139.56 2.08 0.315806 0.283463 25762 151098 -1 2315 22 1603 2279 167129 38418 3.85576 3.85576 -132.18 -3.85576 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0193705 0.0171787 132 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17836 1 0.03 -1 -1 29992 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 17.3 MiB 2.49 938 11346 3139 7252 955 55.8 MiB 0.16 0.00 4.10263 -113.928 -4.10263 4.10263 1.11 0.00107475 0.000986281 0.0640514 0.0588362 34 2292 21 6.87369e+06 405241 618332. 2139.56 1.93 0.289988 0.259928 25762 151098 -1 1865 18 985 1663 101328 25310 3.08831 3.08831 -105.918 -3.08831 0 0 787024. 2723.27 0.26 0.08 0.25 -1 -1 0.26 0.0389622 0.0349934 123 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.22 17824 1 0.03 -1 -1 30260 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.79 1137 15773 5092 8347 2334 56.0 MiB 0.28 0.00 5.16181 -165.054 -5.16181 5.16181 1.09 0.00130906 0.00119311 0.112351 0.102992 34 3224 24 6.87369e+06 307425 618332. 2139.56 2.61 0.388666 0.349664 25762 151098 -1 2506 23 1972 3000 246393 55956 4.23626 4.23626 -156.047 -4.23626 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.0569407 0.0512193 151 65 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17100 1 0.03 -1 -1 30280 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.7 MiB 0.60 812 10400 2700 6281 1419 55.1 MiB 0.12 0.00 3.6213 -110.383 -3.6213 3.6213 1.11 0.000842088 0.000771452 0.0527955 0.0484241 34 1771 19 6.87369e+06 237555 618332. 2139.56 1.82 0.225149 0.200948 25762 151098 -1 1572 19 861 1344 90065 21187 2.78501 2.78501 -102.459 -2.78501 0 0 787024. 2723.27 0.26 0.07 0.25 -1 -1 0.26 0.0318271 0.0284424 92 4 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17728 1 0.03 -1 -1 30128 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 17.3 MiB 1.69 1097 18567 5571 11084 1912 55.9 MiB 0.27 0.00 4.4584 -148.753 -4.4584 4.4584 1.12 0.00130361 0.0011944 0.109622 0.100463 30 2603 24 6.87369e+06 489084 556674. 1926.21 1.43 0.280123 0.252783 25186 138497 -1 2091 22 1434 2068 140013 31232 3.72316 3.72316 -139.913 -3.72316 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0410474 0.0364312 145 90 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 3.91 823 13152 5512 7421 219 55.7 MiB 0.20 0.00 3.7595 -132.319 -3.7595 3.7595 1.10 0.00118193 0.00108238 0.0939533 0.08612 34 2123 27 6.87369e+06 223581 618332. 2139.56 2.13 0.351096 0.314821 25762 151098 -1 1805 19 1496 2160 182254 40246 3.05731 3.05731 -125.203 -3.05731 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0447468 0.0401457 114 96 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 29960 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 17.1 MiB 2.57 1010 10827 2581 6963 1283 55.6 MiB 0.17 0.00 4.11773 -126.026 -4.11773 4.11773 1.08 0.00118874 0.00109018 0.0620615 0.0569473 34 2332 20 6.87369e+06 447163 618332. 2139.56 2.01 0.307847 0.276149 25762 151098 -1 1913 20 1166 1887 120654 28634 2.75641 2.75641 -108.206 -2.75641 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0468096 0.0420486 134 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.23 18084 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 17.7 MiB 3.64 1280 16127 4711 8958 2458 56.1 MiB 0.28 0.00 5.89191 -180.703 -5.89191 5.89191 1.09 0.00132585 0.00121743 0.111749 0.102668 34 3352 23 6.87369e+06 349346 618332. 2139.56 2.41 0.395509 0.356546 25762 151098 -1 2806 23 2166 3316 300140 64406 5.0795 5.0795 -171.863 -5.0795 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0604442 0.0546346 171 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.19 17480 1 0.02 -1 -1 29964 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 16.5 MiB 1.17 668 8716 2078 6018 620 55.1 MiB 0.11 0.00 3.01966 -95.583 -3.01966 3.01966 1.10 0.000781149 0.000715061 0.0441248 0.0404433 30 1784 17 6.87369e+06 209608 556674. 1926.21 1.18 0.135647 0.121124 25186 138497 -1 1450 18 757 999 78556 18489 2.57366 2.57366 -100.628 -2.57366 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0279875 0.0249234 81 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30028 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 16.8 MiB 1.00 599 7081 1635 4909 537 55.3 MiB 0.11 0.00 4.05453 -121.132 -4.05453 4.05453 1.10 0.000976291 0.000894533 0.0419876 0.0385206 34 1802 23 6.87369e+06 265503 618332. 2139.56 1.89 0.249608 0.222525 25762 151098 -1 1344 22 1125 1743 107136 27099 2.90001 2.90001 -110.666 -2.90001 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419196 0.0374511 105 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 29852 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 16.9 MiB 0.90 913 15639 4952 8936 1751 55.5 MiB 0.21 0.00 3.6323 -121.89 -3.6323 3.6323 1.14 0.00100898 0.000923269 0.0854976 0.0783747 32 2483 25 6.87369e+06 321398 586450. 2029.24 1.37 0.220001 0.197839 25474 144626 -1 2082 23 1398 2534 242205 51921 3.19991 3.19991 -122.936 -3.19991 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.0444065 0.0396879 109 34 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17272 1 0.03 -1 -1 30108 -1 -1 29 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 16.6 MiB 0.67 516 9536 2821 4714 2001 55.2 MiB 0.10 0.00 3.5473 -82.6349 -3.5473 3.5473 1.08 0.000754772 0.000691971 0.0398559 0.0364914 28 1443 23 6.87369e+06 405241 531479. 1839.03 1.19 0.140077 0.125285 24610 126494 -1 1276 16 742 1274 86553 21057 3.05256 3.05256 -82.6649 -3.05256 0 0 648988. 2245.63 0.23 0.06 0.20 -1 -1 0.23 0.0246274 0.0219489 87 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30056 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 2.39 974 10332 2610 6542 1180 55.8 MiB 0.19 0.00 4.3434 -128.294 -4.3434 4.3434 1.14 0.00121372 0.00111187 0.0751841 0.0689215 34 2904 44 6.87369e+06 279477 618332. 2139.56 2.51 0.375446 0.336266 25762 151098 -1 2481 22 1620 2847 226586 52091 3.79676 3.79676 -132.011 -3.79676 0 0 787024. 2723.27 0.28 0.13 0.24 -1 -1 0.28 0.0523892 0.0470825 133 72 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30072 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 17.3 MiB 2.74 978 9679 2433 6610 636 56.0 MiB 0.17 0.00 4.12463 -132.597 -4.12463 4.12463 1.12 0.00129922 0.00119127 0.0622183 0.0570443 28 2440 23 6.87369e+06 433189 531479. 1839.03 1.50 0.231302 0.207896 24610 126494 -1 2090 22 1828 2808 189300 45189 3.19976 3.19976 -123.169 -3.19976 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0554607 0.049848 143 90 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 29852 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 16.9 MiB 2.41 1101 11203 3178 6921 1104 55.7 MiB 0.20 0.00 5.42457 -156.316 -5.42457 5.42457 1.10 0.00116999 0.00107401 0.0707159 0.0648736 34 2918 37 6.89349e+06 338252 618332. 2139.56 2.53 0.34045 0.304834 25762 151098 -1 2330 21 1708 2520 163764 40336 4.34515 4.34515 -149.16 -4.34515 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.048453 0.043536 149 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17488 1 0.03 -1 -1 30368 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 17.1 MiB 1.57 1174 12178 3196 7626 1356 55.6 MiB 0.18 0.00 4.90208 -149.95 -4.90208 4.90208 1.08 0.00118351 0.00108464 0.0616883 0.0564942 34 3129 45 6.89349e+06 366440 618332. 2139.56 2.46 0.357007 0.319714 25762 151098 -1 2525 20 1896 2817 195635 44278 4.54103 4.54103 -152.393 -4.54103 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0467514 0.042037 156 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17812 1 0.03 -1 -1 30128 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1048 13663 4160 7949 1554 55.5 MiB 0.19 0.00 4.2044 -120.612 -4.2044 4.2044 1.11 0.00102325 0.000938471 0.0781961 0.0716981 34 2461 28 6.89349e+06 295971 618332. 2139.56 2.12 0.303587 0.271854 25762 151098 -1 2068 17 1174 1629 125136 28487 3.6043 3.6043 -118.534 -3.6043 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0354234 0.0317938 125 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30288 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 16.6 MiB 1.52 1070 14593 4351 8219 2023 55.4 MiB 0.21 0.00 4.83618 -131.951 -4.83618 4.83618 1.09 0.00105111 0.000963304 0.0852205 0.0782145 34 2512 27 6.89349e+06 338252 618332. 2139.56 2.06 0.31508 0.282658 25762 151098 -1 2085 21 1310 2112 150521 33470 3.83566 3.83566 -123.468 -3.83566 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429473 0.0385581 134 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30044 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 17.1 MiB 1.32 1121 10839 3086 5720 2033 55.5 MiB 0.19 0.00 5.28221 -151.791 -5.28221 5.28221 0.97 0.00113639 0.00103991 0.0670779 0.0614667 36 3048 26 6.89349e+06 324158 648988. 2245.63 3.55 0.31048 0.27811 26050 158493 -1 2547 20 1919 3437 271377 58237 4.29409 4.29409 -144.18 -4.29409 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0432058 0.0385289 142 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17584 1 0.02 -1 -1 30204 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1263 20077 7001 10670 2406 55.7 MiB 0.30 0.00 3.92406 -127.128 -3.92406 3.92406 1.15 0.00120144 0.00110244 0.11208 0.102649 34 3484 24 6.89349e+06 465097 618332. 2139.56 2.61 0.371212 0.333474 25762 151098 -1 2789 22 1642 2691 272873 55199 3.27965 3.27965 -126.713 -3.27965 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0515025 0.0462788 162 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30380 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 16.9 MiB 1.19 795 13496 4096 7659 1741 55.3 MiB 0.16 0.00 4.14623 -113.724 -4.14623 4.14623 1.09 0.000888098 0.000815107 0.0721262 0.0661767 34 1922 21 6.89349e+06 295971 618332. 2139.56 2.00 0.258775 0.231576 25762 151098 -1 1665 19 1209 1767 145110 32540 3.09466 3.09466 -107.031 -3.09466 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0335578 0.0299897 107 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 29928 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.67 908 11759 3095 6971 1693 55.3 MiB 0.15 0.00 3.40307 -102.549 -3.40307 3.40307 1.10 0.000971539 0.000889757 0.0555657 0.0508322 26 2334 21 6.89349e+06 451003 503264. 1741.40 1.43 0.176757 0.158589 24322 120374 -1 2119 20 1170 2104 171783 38298 2.69355 2.69355 -101.086 -2.69355 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0377604 0.0337631 119 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30120 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 16.7 MiB 1.53 1042 10703 3845 4978 1880 55.4 MiB 0.20 0.00 3.68945 -124.167 -3.68945 3.68945 1.11 0.00103459 0.000947371 0.0793581 0.0726625 34 2732 28 6.89349e+06 281877 618332. 2139.56 2.36 0.305437 0.273044 25762 151098 -1 2160 20 1579 2113 170875 38070 2.94946 2.94946 -119.188 -2.94946 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0408479 0.0365779 130 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.21 17500 1 0.03 -1 -1 29944 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 16.9 MiB 1.88 928 7914 1841 5211 862 55.6 MiB 0.13 0.00 4.05148 -133.476 -4.05148 4.05148 1.13 0.00101975 0.000935752 0.0477819 0.0438732 34 2363 46 6.89349e+06 253689 618332. 2139.56 2.37 0.290287 0.258505 25762 151098 -1 1967 18 1068 1435 118944 26570 3.2697 3.2697 -123.949 -3.2697 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0365416 0.0327777 120 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.21 17684 1 0.03 -1 -1 30200 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 16.8 MiB 1.96 867 6563 1487 4637 439 55.5 MiB 0.11 0.00 4.47797 -127.666 -4.47797 4.47797 1.12 0.000994547 0.000910901 0.0389475 0.0356947 34 2468 30 6.89349e+06 295971 618332. 2139.56 2.23 0.257033 0.22862 25762 151098 -1 1954 18 1246 1652 117850 27065 3.58625 3.58625 -124.145 -3.58625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0371875 0.0332689 124 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30016 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.9 MiB 1.45 849 7781 1935 5506 340 55.4 MiB 0.12 0.00 3.6807 -111.961 -3.6807 3.6807 1.09 0.000929661 0.000850217 0.0449377 0.0412336 34 2156 24 6.89349e+06 239595 618332. 2139.56 2.36 0.246374 0.219598 25762 151098 -1 1837 18 1097 1520 113918 26887 3.08901 3.08901 -112.434 -3.08901 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0341546 0.0305702 108 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30072 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 17.0 MiB 1.90 1060 16407 4994 8930 2483 55.4 MiB 0.26 0.00 4.09068 -131.143 -4.09068 4.09068 1.09 0.00115792 0.00106196 0.101972 0.0935371 34 2942 46 6.89349e+06 324158 618332. 2139.56 2.63 0.393758 0.353569 25762 151098 -1 2312 19 1654 2518 184499 42386 3.22401 3.22401 -123.401 -3.22401 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0449367 0.040455 143 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30132 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 17.2 MiB 1.62 1222 15298 4935 8519 1844 55.7 MiB 0.24 0.00 5.57191 -161.898 -5.57191 5.57191 1.17 0.00118854 0.00108913 0.0975506 0.0893348 38 2640 21 6.89349e+06 338252 678818. 2348.85 2.56 0.345164 0.310073 26626 170182 -1 2332 20 1682 2320 155536 33971 4.52865 4.52865 -151.53 -4.52865 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0536948 0.0483999 153 61 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.11 17604 1 0.03 -1 -1 30256 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 16.6 MiB 1.70 847 11909 3522 6229 2158 55.1 MiB 0.14 0.00 3.19582 -98.7926 -3.19582 3.19582 1.10 0.000872989 0.000788946 0.0631276 0.0578404 34 1978 21 6.89349e+06 253689 618332. 2139.56 1.98 0.242886 0.216685 25762 151098 -1 1713 20 983 1407 102917 23465 2.73986 2.73986 -96.8501 -2.73986 0 0 787024. 2723.27 0.23 0.04 0.12 -1 -1 0.23 0.0143751 0.0126857 102 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30164 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 17.1 MiB 2.01 1270 15103 4761 8086 2256 55.6 MiB 0.24 0.00 4.1162 -136.486 -4.1162 4.1162 1.09 0.0012161 0.00111529 0.0979038 0.0897764 38 3035 24 6.89349e+06 338252 678818. 2348.85 2.57 0.356769 0.320539 26626 170182 -1 2635 18 1851 2943 211103 45834 3.459 3.459 -129.009 -3.459 0 0 902133. 3121.57 0.28 0.12 0.23 -1 -1 0.28 0.0438613 0.0394882 159 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17768 1 0.03 -1 -1 29896 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1061 15017 4935 7452 2630 55.4 MiB 0.14 0.00 4.12104 -133.123 -4.12104 4.12104 0.96 0.000419707 0.000379457 0.0429257 0.0388442 36 2514 26 6.89349e+06 310065 648988. 2245.63 2.59 0.29294 0.261586 26050 158493 -1 2201 18 1382 2001 156507 34318 3.04636 3.04636 -120.145 -3.04636 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0432386 0.0388841 142 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30172 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 17.2 MiB 1.61 1121 14407 4796 7561 2050 55.7 MiB 0.22 0.00 3.60799 -127.319 -3.60799 3.60799 1.16 0.00106225 0.000973792 0.0847125 0.0776114 36 2593 20 6.89349e+06 295971 648988. 2245.63 3.04 0.304621 0.272792 26050 158493 -1 2266 19 1560 2114 154286 34059 3.02646 3.02646 -124.23 -3.02646 0 0 828058. 2865.25 0.27 0.10 0.29 -1 -1 0.27 0.0402344 0.0360718 131 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17348 1 0.02 -1 -1 30120 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 16.3 MiB 0.92 565 9205 3754 4929 522 54.9 MiB 0.10 0.00 2.67033 -85.3827 -2.67033 2.67033 1.11 0.000766292 0.000701186 0.0453218 0.041492 38 1394 30 6.89349e+06 211408 678818. 2348.85 2.35 0.215072 0.191016 26626 170182 -1 1159 13 560 635 58152 13020 2.05307 2.05307 -80.887 -2.05307 0 0 902133. 3121.57 0.30 0.05 0.27 -1 -1 0.30 0.0214664 0.0192116 82 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30208 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 16.6 MiB 1.95 986 14322 4290 8044 1988 55.3 MiB 0.20 0.00 4.76552 -144.771 -4.76552 4.76552 1.08 0.000993936 0.00091169 0.0824551 0.0756243 34 2322 29 6.89349e+06 267783 618332. 2139.56 2.35 0.301307 0.269772 25762 151098 -1 2014 20 1276 1972 146102 33382 3.479 3.479 -129.696 -3.479 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0391706 0.0350955 117 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30324 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 16.9 MiB 1.05 1121 13823 3432 8585 1806 55.4 MiB 0.21 0.00 4.71322 -150.624 -4.71322 4.71322 1.11 0.00115309 0.00105758 0.0808698 0.0741945 34 2727 22 6.89349e+06 479191 618332. 2139.56 2.45 0.325451 0.292304 25762 151098 -1 2334 20 1481 2227 174544 39115 4.00824 4.00824 -143.79 -4.00824 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.045417 0.0408348 151 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17532 1 0.04 -1 -1 30056 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 17.0 MiB 1.27 1277 12375 3467 7863 1045 55.6 MiB 0.21 0.00 4.43295 -138.206 -4.43295 4.43295 1.09 0.00120896 0.00110818 0.0814355 0.0747213 36 3078 26 6.89349e+06 324158 648988. 2245.63 2.91 0.344704 0.309478 26050 158493 -1 2617 21 2034 3206 249894 52894 3.89554 3.89554 -137.73 -3.89554 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0498654 0.044811 155 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17364 1 0.02 -1 -1 30480 -1 -1 19 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 16.4 MiB 1.15 448 11324 4682 5071 1571 55.0 MiB 0.11 0.00 2.70371 -73.039 -2.70371 2.70371 1.10 0.000668651 0.000611422 0.048423 0.0443188 36 1409 29 6.89349e+06 267783 648988. 2245.63 2.16 0.194675 0.172987 26050 158493 -1 1053 24 894 1077 88226 21748 2.34066 2.34066 -71.8008 -2.34066 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0301797 0.0267521 76 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17024 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.6 MiB 0.77 989 9879 2312 6247 1320 55.1 MiB 0.15 0.00 4.42392 -127.052 -4.42392 4.42392 1.06 0.00100943 0.000925967 0.0545601 0.0500587 34 2328 22 6.89349e+06 324158 618332. 2139.56 2.17 0.268062 0.240014 25762 151098 -1 1979 21 1206 2295 156747 36159 3.50885 3.50885 -121.305 -3.50885 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0416674 0.0374105 119 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 17112 1 0.02 -1 -1 29876 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 16.2 MiB 0.32 477 9356 3828 5185 343 54.6 MiB 0.09 0.00 2.35052 -74.7133 -2.35052 2.35052 1.08 0.000639511 0.000582364 0.038773 0.03532 30 1271 33 6.89349e+06 169126 556674. 1926.21 1.14 0.129711 0.115253 25186 138497 -1 917 13 471 601 34359 9289 1.85746 1.85746 -71.2035 -1.85746 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0140638 0.0124422 65 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 1.48 1046 9966 2582 6701 683 55.3 MiB 0.15 0.00 4.91481 -138.303 -4.91481 4.91481 1.09 0.00101862 0.000931057 0.0586525 0.0537516 34 2316 22 6.89349e+06 281877 618332. 2139.56 2.14 0.277801 0.248581 25762 151098 -1 1980 19 1004 1540 102606 24225 3.76736 3.76736 -123.228 -3.76736 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0391267 0.0351274 125 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17012 1 0.03 -1 -1 30240 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.64 1030 18239 5331 10544 2364 55.3 MiB 0.24 0.00 3.48935 -111.917 -3.48935 3.48935 1.09 0.0010491 0.000962946 0.0915034 0.0839396 30 2299 29 6.89349e+06 436909 556674. 1926.21 1.34 0.23682 0.213464 25186 138497 -1 1943 18 1002 1825 117062 25649 2.62651 2.62651 -101.154 -2.62651 0 0 706193. 2443.58 0.26 0.08 0.21 -1 -1 0.26 0.0375984 0.0337884 130 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 17.2 MiB 2.02 1031 15255 4057 8092 3106 55.7 MiB 0.23 0.00 4.82008 -133.501 -4.82008 4.82008 1.12 0.00112104 0.0010277 0.0930646 0.0853435 34 2929 28 6.89349e+06 324158 618332. 2139.56 2.78 0.342166 0.307 25762 151098 -1 2406 20 1641 2502 180517 44433 4.15846 4.15846 -138.48 -4.15846 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0443954 0.0399037 142 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.11 17224 1 0.03 -1 -1 29900 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1042 13556 4378 7182 1996 55.2 MiB 0.19 0.00 3.7536 -126.104 -3.7536 3.7536 1.10 0.00113128 0.00105035 0.0803766 0.0736858 34 2426 26 6.89349e+06 239595 618332. 2139.56 2.04 0.290635 0.25973 25762 151098 -1 2062 21 1231 1775 140537 30780 3.10151 3.10151 -121.28 -3.10151 0 0 787024. 2723.27 0.24 0.05 0.12 -1 -1 0.24 0.0166746 0.0147078 112 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17336 1 0.03 -1 -1 30004 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 16.8 MiB 1.63 868 13092 4092 7012 1988 55.3 MiB 0.17 0.00 4.03552 -117.607 -4.03552 4.03552 1.09 0.000896087 0.00082059 0.071822 0.065778 34 2273 22 6.89349e+06 239595 618332. 2139.56 2.25 0.267221 0.238698 25762 151098 -1 1875 20 958 1604 132449 28430 3.37775 3.37775 -111.98 -3.37775 0 0 787024. 2723.27 0.28 0.09 0.25 -1 -1 0.28 0.0357378 0.0319324 104 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17460 1 0.02 -1 -1 29920 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 16.7 MiB 1.48 757 6960 1669 4834 457 55.1 MiB 0.12 0.00 4.17394 -114.526 -4.17394 4.17394 1.09 0.000893271 0.000819668 0.0403095 0.037033 30 2142 28 6.89349e+06 281877 556674. 1926.21 1.39 0.168933 0.150963 25186 138497 -1 1666 20 1033 1810 114421 26114 3.22555 3.22555 -108.797 -3.22555 0 0 706193. 2443.58 0.24 0.08 0.22 -1 -1 0.24 0.0352533 0.0314846 107 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17028 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.55 835 13031 3792 7568 1671 55.1 MiB 0.17 0.00 3.90738 -121.629 -3.90738 3.90738 1.12 0.000908942 0.000833344 0.0704029 0.0646176 32 2291 36 6.89349e+06 239595 586450. 2029.24 1.41 0.206848 0.185739 25474 144626 -1 1971 20 1241 2047 177578 39376 2.97946 2.97946 -115.239 -2.97946 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0359568 0.032174 101 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17456 1 0.03 -1 -1 30048 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 16.7 MiB 1.41 912 9006 2499 5943 564 55.2 MiB 0.13 0.00 3.63671 -112.55 -3.63671 3.63671 1.13 0.000933996 0.000856839 0.0519347 0.0476752 30 2196 23 6.89349e+06 253689 556674. 1926.21 1.26 0.174399 0.156414 25186 138497 -1 1882 16 885 1325 85929 19971 2.81636 2.81636 -109.416 -2.81636 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0305519 0.0273845 108 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.12 17860 1 0.03 -1 -1 30236 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 16.6 MiB 1.65 982 10163 2807 6505 851 55.3 MiB 0.14 0.00 3.48715 -105.954 -3.48715 3.48715 0.99 0.00096495 0.000884049 0.0570174 0.0522218 36 2114 24 6.89349e+06 310065 648988. 2245.63 2.45 0.26291 0.234465 26050 158493 -1 1893 17 1056 1446 109106 24335 2.53636 2.53636 -101.077 -2.53636 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0336119 0.0301273 120 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17724 1 0.03 -1 -1 30264 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1339 15137 4138 9246 1753 55.5 MiB 0.24 0.00 4.47915 -132.321 -4.47915 4.47915 1.15 0.000855396 0.000769602 0.0922264 0.0843865 34 2963 23 6.89349e+06 352346 618332. 2139.56 2.18 0.353305 0.317536 25762 151098 -1 2512 21 1427 2365 176883 38523 3.84576 3.84576 -128.825 -3.84576 0 0 787024. 2723.27 0.24 0.06 0.13 -1 -1 0.24 0.0212141 0.0188836 159 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30192 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 16.9 MiB 2.00 1289 13933 4065 8243 1625 55.9 MiB 0.13 0.00 4.58977 -156.464 -4.58977 4.58977 0.75 0.000474319 0.000428862 0.0356744 0.0323105 36 2961 23 6.89349e+06 338252 648988. 2245.63 1.70 0.136686 0.120035 26050 158493 -1 2768 19 2118 2977 227249 49577 3.80435 3.80435 -151.02 -3.80435 0 0 828058. 2865.25 0.24 0.06 0.13 -1 -1 0.24 0.0203993 0.0182145 168 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17768 1 0.04 -1 -1 29988 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 765 12506 3068 7484 1954 55.2 MiB 0.17 0.00 3.98848 -116.551 -3.98848 3.98848 1.12 0.000891858 0.000819741 0.0645346 0.0593975 36 1999 20 6.89349e+06 253689 648988. 2245.63 2.38 0.266121 0.238064 26050 158493 -1 1708 21 1218 1874 142062 32163 3.20796 3.20796 -111.26 -3.20796 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0388434 0.034696 109 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 17.2 MiB 2.00 1249 10813 2744 7185 884 56.0 MiB 0.18 0.00 4.24063 -135.696 -4.24063 4.24063 1.08 0.00120535 0.00110488 0.0702303 0.0644228 34 3153 26 6.89349e+06 352346 618332. 2139.56 2.41 0.329828 0.295815 25762 151098 -1 2661 18 1662 2449 211819 44945 3.88885 3.88885 -140.681 -3.88885 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0437508 0.0393666 160 61 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 17.0 MiB 2.38 1247 16273 5220 8383 2670 55.9 MiB 0.27 0.00 5.45989 -162.138 -5.45989 5.45989 1.08 0.0012211 0.00111937 0.105353 0.0966131 36 3304 23 6.89349e+06 352346 648988. 2245.63 3.32 0.353796 0.317752 26050 158493 -1 2788 22 2139 3182 279459 58032 4.86768 4.86768 -161.55 -4.86768 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.052753 0.0474798 163 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.21 17780 1 0.03 -1 -1 30268 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1201 15298 5197 6778 3323 55.7 MiB 0.24 0.00 5.99918 -171.098 -5.99918 5.99918 1.16 0.00123778 0.00113383 0.100202 0.0918153 36 3723 40 6.89349e+06 352346 648988. 2245.63 4.55 0.404594 0.363088 26050 158493 -1 2576 21 1820 2714 210431 54047 5.27384 5.27384 -170.652 -5.27384 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0515743 0.0464016 166 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17488 1 0.03 -1 -1 30164 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 17.1 MiB 1.77 1173 16983 5747 8489 2747 55.6 MiB 0.27 0.00 4.05378 -126.496 -4.05378 4.05378 1.08 0.00116965 0.00107433 0.106959 0.0982259 36 2746 23 6.89349e+06 338252 648988. 2245.63 2.73 0.353406 0.317592 26050 158493 -1 2384 20 1786 2593 194371 42478 3.12356 3.12356 -117.448 -3.12356 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0462309 0.0414668 148 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17876 1 0.02 -1 -1 30208 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 16.6 MiB 1.60 909 14358 5137 7007 2214 55.2 MiB 0.19 0.00 4.5826 -118.27 -4.5826 4.5826 1.08 0.000998695 0.000915126 0.0811198 0.0743818 34 2771 28 6.89349e+06 281877 618332. 2139.56 2.41 0.294353 0.263015 25762 151098 -1 2020 19 1141 1651 146263 32423 3.57426 3.57426 -114.046 -3.57426 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.038271 0.0343332 120 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17752 1 0.03 -1 -1 30152 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 17.3 MiB 2.05 1620 14567 4267 9425 875 56.2 MiB 0.27 0.01 5.31355 -171.75 -5.31355 5.31355 1.09 0.00147407 0.00135318 0.10254 0.0941982 36 4099 33 6.89349e+06 436909 648988. 2245.63 3.86 0.444167 0.399597 26050 158493 -1 3468 24 2609 3895 304456 64358 4.55769 4.55769 -169.039 -4.55769 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0679045 0.0610306 203 87 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17392 1 0.03 -1 -1 30084 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 16.8 MiB 1.47 935 8481 2198 5465 818 55.2 MiB 0.12 0.00 3.78206 -112.802 -3.78206 3.78206 1.09 0.000901648 0.000826247 0.0460245 0.042173 36 2118 26 6.89349e+06 253689 648988. 2245.63 1.98 0.24184 0.215381 26050 158493 -1 1959 17 1073 1447 108695 23866 3.15881 3.15881 -112.939 -3.15881 0 0 828058. 2865.25 0.32 0.08 0.25 -1 -1 0.32 0.032574 0.0292587 106 28 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30084 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1159 12749 3392 7336 2021 55.5 MiB 0.20 0.00 4.75882 -144.088 -4.75882 4.75882 1.08 0.00114351 0.0010499 0.0797735 0.0732509 30 3158 41 6.89349e+06 324158 556674. 1926.21 1.67 0.260217 0.234343 25186 138497 -1 2457 20 1461 2296 169002 35554 3.7423 3.7423 -131.29 -3.7423 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0450009 0.0404774 140 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30152 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 16.9 MiB 2.01 1195 16023 5389 8481 2153 55.7 MiB 0.25 0.00 4.23925 -128.06 -4.23925 4.23925 1.08 0.00116091 0.00106515 0.0999448 0.0916985 36 2964 25 6.89349e+06 324158 648988. 2245.63 3.12 0.348356 0.31266 26050 158493 -1 2426 20 1358 2187 165444 36651 3.58905 3.58905 -124.791 -3.58905 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0454442 0.0408217 149 53 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17196 1 0.03 -1 -1 29928 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.9 MiB 0.52 1056 13758 4414 7436 1908 55.5 MiB 0.22 0.00 4.26729 -130.845 -4.26729 4.26729 1.08 0.00103553 0.000950333 0.072062 0.065766 30 2527 28 6.89349e+06 366440 556674. 1926.21 1.49 0.21441 0.192667 25186 138497 -1 2219 22 1208 2191 168479 35056 3.595 3.595 -126.769 -3.595 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.050425 0.045185 123 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 17.3 MiB 1.59 1207 10455 2579 6753 1123 55.8 MiB 0.19 0.00 4.44301 -131.225 -4.44301 4.44301 1.15 0.00117647 0.00107753 0.0664174 0.060915 36 2616 21 6.89349e+06 324158 648988. 2245.63 2.57 0.298249 0.267177 26050 158493 -1 2300 19 1441 2046 153148 33477 3.18886 3.18886 -120.986 -3.18886 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0439393 0.0394968 148 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 29848 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 17.2 MiB 1.81 1187 14518 4859 6825 2834 55.7 MiB 0.23 0.00 4.27293 -132.833 -4.27293 4.27293 1.23 0.000724823 0.000662557 0.0905631 0.0830478 34 3445 26 6.89349e+06 338252 618332. 2139.56 2.74 0.341746 0.306188 25762 151098 -1 2538 19 1645 2465 186566 42784 3.4704 3.4704 -126.55 -3.4704 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0447007 0.0401598 154 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30124 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1246 9336 2230 6513 593 55.7 MiB 0.18 0.00 4.12904 -136.238 -4.12904 4.12904 1.09 0.00124278 0.00113943 0.0610888 0.0560132 34 3265 27 6.89349e+06 366440 618332. 2139.56 2.69 0.330859 0.296061 25762 151098 -1 2627 24 1955 2681 199538 45676 3.39606 3.39606 -133.734 -3.39606 0 0 787024. 2723.27 0.27 0.14 0.26 -1 -1 0.27 0.0581061 0.0522693 164 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30176 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 16.6 MiB 1.47 1001 8641 2091 5830 720 55.3 MiB 0.14 0.00 4.50695 -131.282 -4.50695 4.50695 0.78 0.00105837 0.000971311 0.0517961 0.0475275 34 2625 20 6.89349e+06 295971 618332. 2139.56 2.18 0.272077 0.243768 25762 151098 -1 2079 21 1304 2062 140160 33197 3.71836 3.71836 -125.299 -3.71836 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0433547 0.0388887 128 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.17 17476 1 0.03 -1 -1 30220 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.9 MiB 1.41 1119 14450 4565 7826 2059 55.6 MiB 0.22 0.00 4.84598 -139.753 -4.84598 4.84598 1.19 0.00109075 0.00100168 0.0866617 0.0796073 34 2751 32 6.89349e+06 310065 618332. 2139.56 2.30 0.333766 0.299695 25762 151098 -1 2320 19 1445 2039 150966 33994 3.94096 3.94096 -133.357 -3.94096 0 0 787024. 2723.27 0.30 0.10 0.26 -1 -1 0.30 0.041807 0.0376525 135 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.24 17572 1 0.03 -1 -1 30160 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1292 15447 4870 8199 2378 55.8 MiB 0.26 0.00 4.72898 -145.597 -4.72898 4.72898 1.11 0.00123611 0.00113449 0.103256 0.094687 34 3305 38 6.89349e+06 338252 618332. 2139.56 2.54 0.390856 0.351186 25762 151098 -1 2664 22 1683 2685 217728 46549 4.1093 4.1093 -142.399 -4.1093 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0524522 0.0472068 156 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.23 17664 1 0.03 -1 -1 30164 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 16.9 MiB 2.33 1374 13553 4031 8630 892 55.9 MiB 0.23 0.00 4.3848 -136.299 -4.3848 4.3848 1.09 0.00124247 0.00113959 0.0882048 0.0808459 36 3546 21 6.89349e+06 352346 648988. 2245.63 3.48 0.351194 0.315358 26050 158493 -1 3131 35 2877 4359 347677 74272 3.85536 3.85536 -136.421 -3.85536 0 0 828058. 2865.25 0.29 0.21 0.25 -1 -1 0.29 0.0808083 0.0725246 166 77 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17604 1 0.03 -1 -1 29976 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 16.4 MiB 1.48 841 8022 2262 5194 566 55.0 MiB 0.13 0.00 3.56029 -109.346 -3.56029 3.56029 1.16 0.000883411 0.000809987 0.0549251 0.0504957 36 1876 16 6.89349e+06 211408 648988. 2245.63 2.26 0.23208 0.207068 26050 158493 -1 1781 20 889 1394 102255 23750 2.58651 2.58651 -99.1772 -2.58651 0 0 828058. 2865.25 0.27 0.08 0.25 -1 -1 0.27 0.0345974 0.0308863 96 23 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.21 17776 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 17.1 MiB 1.17 1155 11979 3435 7133 1411 55.6 MiB 0.20 0.00 4.30741 -149.256 -4.30741 4.30741 1.10 0.000768415 0.00069094 0.0779058 0.0712932 34 2804 26 6.89349e+06 281877 618332. 2139.56 2.80 0.323667 0.289729 25762 151098 -1 2340 20 1904 2594 200265 44004 3.6786 3.6786 -144.817 -3.6786 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0437806 0.0392591 138 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 17.3 MiB 1.60 1337 12167 3186 7820 1161 55.9 MiB 0.23 0.00 5.53202 -162.159 -5.53202 5.53202 1.09 0.0013021 0.00119542 0.0840893 0.077258 34 3534 45 6.89349e+06 352346 618332. 2139.56 3.05 0.416164 0.374672 25762 151098 -1 2896 34 2519 3992 292876 64073 4.7323 4.7323 -160.064 -4.7323 0 0 787024. 2723.27 0.28 0.19 0.24 -1 -1 0.28 0.0840971 0.075715 168 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17468 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 17.2 MiB 1.65 981 15773 5650 7566 2557 55.7 MiB 0.24 0.00 4.48922 -138.529 -4.48922 4.48922 1.08 0.00115238 0.00105737 0.098635 0.09051 36 2706 29 6.89349e+06 310065 648988. 2245.63 3.37 0.304545 0.273462 26050 158493 -1 2148 21 1650 2368 177031 41003 3.31991 3.31991 -126.449 -3.31991 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0473415 0.042564 144 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.20 17400 1 0.03 -1 -1 30156 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 16.6 MiB 1.28 892 10781 3144 6961 676 55.2 MiB 0.15 0.00 4.18863 -126.692 -4.18863 4.18863 1.08 0.000955152 0.000876612 0.0546745 0.0501891 36 2083 22 6.89349e+06 380534 648988. 2245.63 2.38 0.253849 0.226662 26050 158493 -1 1865 22 1178 1877 144664 32149 3.40385 3.40385 -122.331 -3.40385 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407685 0.0362451 118 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.10 17972 1 0.04 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 17.4 MiB 2.92 1573 16207 5526 8946 1735 56.1 MiB 0.31 0.01 6.36902 -185.345 -6.36902 6.36902 1.09 0.00140613 0.00129097 0.116052 0.10659 34 4174 50 6.89349e+06 380534 618332. 2139.56 4.29 0.479939 0.431456 25762 151098 -1 3178 20 2450 3885 284990 62516 5.14154 5.14154 -178.922 -5.14154 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0558795 0.0503519 188 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 16.8 MiB 1.38 1035 15151 5099 7891 2161 55.5 MiB 0.22 0.00 4.71732 -144.131 -4.71732 4.71732 1.09 0.00114887 0.00105479 0.0956945 0.0878042 34 2637 24 6.89349e+06 295971 618332. 2139.56 2.12 0.339297 0.304871 25762 151098 -1 2128 21 1700 2398 160101 36685 3.8815 3.8815 -138.492 -3.8815 0 0 787024. 2723.27 0.29 0.11 0.24 -1 -1 0.29 0.0471434 0.0424314 139 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17336 1 0.02 -1 -1 30212 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.4 MiB 0.49 851 9838 2581 6658 599 55.1 MiB 0.13 0.00 3.70876 -106.292 -3.70876 3.70876 1.10 0.000848183 0.000778133 0.0470929 0.0431697 26 2030 30 6.89349e+06 338252 503264. 1741.40 1.59 0.142728 0.12733 24322 120374 -1 1868 17 917 1511 170021 48717 2.84421 2.84421 -106.234 -2.84421 0 0 618332. 2139.56 0.22 0.09 0.19 -1 -1 0.22 0.0288283 0.0257271 94 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17444 1 0.03 -1 -1 29940 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.67 1097 14679 5479 6928 2272 55.5 MiB 0.22 0.00 5.34057 -137.648 -5.34057 5.34057 1.09 0.00119873 0.00110036 0.0943147 0.0866212 34 3407 33 6.89349e+06 324158 618332. 2139.56 3.52 0.367357 0.330197 25762 151098 -1 2311 21 1355 2353 209044 46222 4.38625 4.38625 -135.864 -4.38625 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0489609 0.044052 149 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17232 1 0.03 -1 -1 29996 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.5 MiB 0.59 790 8543 2077 5745 721 55.2 MiB 0.13 0.00 3.60525 -112.744 -3.60525 3.60525 1.11 0.000913453 0.000839247 0.0453249 0.0415761 34 2095 22 6.89349e+06 267783 618332. 2139.56 1.93 0.240818 0.21456 25762 151098 -1 1917 20 1208 2137 152743 35026 2.88036 2.88036 -109.901 -2.88036 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0350841 0.0313417 98 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.11 17500 1 0.03 -1 -1 30108 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 16.8 MiB 1.18 900 11118 2938 7199 981 55.3 MiB 0.17 0.00 4.05078 -116.815 -4.05078 4.05078 1.10 0.000952766 0.000873973 0.0618767 0.0567659 34 2168 28 6.89349e+06 281877 618332. 2139.56 1.91 0.221406 0.19735 25762 151098 -1 1812 20 1256 1803 152268 33469 3.11246 3.11246 -112.985 -3.11246 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0373236 0.0333897 113 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17664 1 0.05 -1 -1 30092 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 17.1 MiB 2.75 1189 14871 4290 8850 1731 55.7 MiB 0.23 0.00 4.52181 -133.377 -4.52181 4.52181 1.08 0.00115559 0.00105984 0.0928489 0.085095 34 2841 25 6.89349e+06 366440 618332. 2139.56 2.31 0.343479 0.308345 25762 151098 -1 2250 19 1473 2119 135906 32124 3.54234 3.54234 -126.145 -3.54234 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0440198 0.0395896 154 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 30112 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1209 16340 4806 9520 2014 55.8 MiB 0.26 0.00 5.15268 -160.098 -5.15268 5.15268 1.08 0.00118291 0.00108443 0.105334 0.0966296 36 2942 21 6.89349e+06 310065 648988. 2245.63 2.86 0.351313 0.315832 26050 158493 -1 2466 20 1667 2432 179214 39064 4.17665 4.17665 -150.568 -4.17665 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0465594 0.0418274 151 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 29968 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 17.2 MiB 1.43 1151 8919 1954 6160 805 55.7 MiB 0.16 0.00 5.44797 -153.538 -5.44797 5.44797 1.08 0.00117374 0.00107264 0.0573715 0.0526439 36 2961 43 6.89349e+06 324158 648988. 2245.63 3.34 0.336899 0.301325 26050 158493 -1 2536 20 1772 2694 216458 46150 4.81329 4.81329 -151.9 -4.81329 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.046228 0.0415657 150 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17400 1 0.03 -1 -1 30188 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.7 MiB 1.52 948 12416 4023 6894 1499 55.2 MiB 0.17 0.00 4.44301 -126.97 -4.44301 4.44301 1.10 0.000948983 0.00086885 0.0723819 0.0663195 34 2281 31 6.89349e+06 211408 618332. 2139.56 2.32 0.286003 0.255589 25762 151098 -1 1975 18 938 1316 114947 24563 3.09196 3.09196 -114.975 -3.09196 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0348069 0.0311816 105 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.11 17768 1 0.03 -1 -1 30304 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.44 1059 14483 4851 7224 2408 55.6 MiB 0.20 0.00 3.67535 -124.181 -3.67535 3.67535 1.09 0.00104314 0.000955214 0.0866914 0.0794359 34 2699 22 6.89349e+06 281877 618332. 2139.56 2.15 0.307214 0.275288 25762 151098 -1 2149 19 1458 2031 146792 32793 3.23845 3.23845 -122.463 -3.23845 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0395283 0.0354068 131 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17840 1 0.03 -1 -1 30376 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 16.9 MiB 1.91 1024 15493 4307 9520 1666 55.4 MiB 0.22 0.00 3.806 -108.658 -3.806 3.806 1.10 0.00108611 0.000996156 0.0896019 0.0821112 36 2360 20 6.89349e+06 366440 648988. 2245.63 2.34 0.316454 0.284059 26050 158493 -1 2000 19 1287 2025 142728 32893 3.04661 3.04661 -105.245 -3.04661 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0414765 0.0372677 142 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17480 1 0.03 -1 -1 30248 -1 -1 23 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 16.7 MiB 1.17 918 12323 3941 6490 1892 55.3 MiB 0.16 0.00 4.39675 -112.391 -4.39675 4.39675 1.08 0.000961852 0.000882625 0.0682823 0.0626789 34 2147 21 6.89349e+06 324158 618332. 2139.56 2.02 0.266577 0.238596 25762 151098 -1 1908 20 1138 1995 161837 33568 3.70146 3.70146 -109.98 -3.70146 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0366972 0.0327904 119 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30304 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 16.7 MiB 2.14 924 9083 2508 6037 538 55.4 MiB 0.15 0.00 4.56532 -133.276 -4.56532 4.56532 1.08 0.0010441 0.000958277 0.0556726 0.0510844 34 2736 29 6.89349e+06 295971 618332. 2139.56 2.42 0.287636 0.257305 25762 151098 -1 2186 20 1812 2507 189331 42418 4.31514 4.31514 -143.22 -4.31514 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0413347 0.0370753 130 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1216 6123 1500 4259 364 55.8 MiB 0.12 0.00 3.91264 -134.898 -3.91264 3.91264 1.13 0.00109608 0.00100447 0.039762 0.0364779 36 2645 23 6.89349e+06 281877 648988. 2245.63 3.03 0.26999 0.241045 26050 158493 -1 2362 29 2125 2874 333718 104841 3.00176 3.00176 -122.65 -3.00176 0 0 828058. 2865.25 0.28 0.18 0.25 -1 -1 0.28 0.0593119 0.0529909 138 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.18 17244 1 0.03 -1 -1 30212 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.6 MiB 0.59 941 8614 1787 6108 719 55.2 MiB 0.14 0.00 4.73282 -132.206 -4.73282 4.73282 1.10 0.00104357 0.00095941 0.0460406 0.0423262 30 2255 21 6.89349e+06 436909 556674. 1926.21 1.29 0.18407 0.165448 25186 138497 -1 1974 21 1018 1913 116086 27921 3.52565 3.52565 -121.514 -3.52565 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.042592 0.0382072 129 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.11 17784 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 17.0 MiB 1.82 946 14295 4865 6147 3283 55.5 MiB 0.21 0.00 4.80372 -148.142 -4.80372 4.80372 1.11 0.0011768 0.0010799 0.0911294 0.0836614 38 2827 33 6.89349e+06 324158 678818. 2348.85 3.44 0.361363 0.324472 26626 170182 -1 2148 20 1613 2415 172416 40549 3.8457 3.8457 -136.281 -3.8457 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0465798 0.041915 148 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30092 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1348 15391 4691 8221 2479 55.9 MiB 0.27 0.00 5.48061 -170.804 -5.48061 5.48061 1.09 0.00124834 0.00114546 0.0937368 0.0858667 36 2971 28 6.89349e+06 380534 648988. 2245.63 3.26 0.369819 0.332446 26050 158493 -1 2521 21 1856 2673 200167 44694 4.23189 4.23189 -155.088 -4.23189 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517851 0.0465814 164 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17468 1 0.04 -1 -1 30136 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1348 16572 5279 8759 2534 55.6 MiB 0.28 0.00 4.59633 -149.535 -4.59633 4.59633 1.12 0.0012643 0.00115992 0.103201 0.094526 36 3220 22 6.89349e+06 366440 648988. 2245.63 3.14 0.372703 0.335138 26050 158493 -1 2729 22 1927 2866 248487 51644 3.7334 3.7334 -140.921 -3.7334 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0543725 0.0489658 164 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.17 17336 1 0.03 -1 -1 30044 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.66 929 11603 3304 7249 1050 55.4 MiB 0.17 0.00 4.22559 -126.079 -4.22559 4.22559 1.08 0.000938198 0.000860531 0.0626658 0.0575044 34 2274 21 6.89349e+06 295971 618332. 2139.56 2.17 0.263443 0.235101 25762 151098 -1 1994 21 1138 1586 126934 27558 3.29711 3.29711 -116.443 -3.29711 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0467676 0.0417308 112 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.21 17544 1 0.03 -1 -1 30328 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 17.3 MiB 2.37 1157 9838 2412 6479 947 56.0 MiB 0.18 0.00 5.48387 -163.439 -5.48387 5.48387 1.12 0.00123527 0.00113314 0.0664573 0.0609724 34 2914 31 6.89349e+06 366440 618332. 2139.56 2.23 0.339188 0.304036 25762 151098 -1 2394 19 1932 2689 190948 42993 4.36915 4.36915 -156.668 -4.36915 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0465631 0.041938 162 63 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30132 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1128 9303 2368 6110 825 55.7 MiB 0.09 0.00 5.14805 -150.89 -5.14805 5.14805 0.74 0.000426038 0.000385701 0.0227853 0.0206836 34 2876 34 6.89349e+06 324158 618332. 2139.56 1.73 0.12133 0.106238 25762 151098 -1 2362 19 1593 2666 208387 46147 3.97449 3.97449 -137.61 -3.97449 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0430147 0.0386471 139 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30220 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1160 14828 4291 8520 2017 55.4 MiB 0.12 0.00 5.04939 -147.832 -5.04939 5.04939 1.08 0.000417431 0.000376219 0.0349946 0.0316536 34 2696 30 6.89349e+06 324158 618332. 2139.56 1.77 0.191222 0.169166 25762 151098 -1 2222 21 1562 2377 151469 35667 4.18485 4.18485 -141.313 -4.18485 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0468229 0.0420262 142 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30304 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.85 1280 15731 5729 7457 2545 56.1 MiB 0.25 0.00 4.67272 -140.819 -4.67272 4.67272 1.09 0.00120405 0.00110401 0.100307 0.0919408 36 2891 31 6.89349e+06 380534 648988. 2245.63 2.89 0.372239 0.334125 26050 158493 -1 2460 19 1798 2628 192195 42175 3.84329 3.84329 -132.966 -3.84329 0 0 828058. 2865.25 0.28 0.12 0.27 -1 -1 0.28 0.0460554 0.0413954 162 83 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30148 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 17.2 MiB 2.69 1143 12183 3367 8279 537 55.8 MiB 0.21 0.00 5.41467 -156.077 -5.41467 5.41467 1.09 0.0012044 0.00110516 0.079676 0.0730619 34 3317 24 6.89349e+06 324158 618332. 2139.56 2.74 0.336842 0.302282 25762 151098 -1 2550 21 1877 2841 221059 51776 4.56189 4.56189 -155.485 -4.56189 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0488384 0.0438697 155 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.12 17816 1 0.03 -1 -1 30312 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 16.9 MiB 1.54 1279 8047 1945 5583 519 55.6 MiB 0.15 0.00 4.65125 -137.416 -4.65125 4.65125 1.11 0.00121351 0.00110824 0.0513959 0.0471627 36 2926 21 6.89349e+06 422815 648988. 2245.63 2.62 0.303817 0.272058 26050 158493 -1 2441 18 1475 2021 137313 30895 3.6201 3.6201 -125.951 -3.6201 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0438801 0.0394947 166 85 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17376 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.5 MiB 0.49 782 13906 5117 6523 2266 55.2 MiB 0.18 0.00 4.15903 -122.769 -4.15903 4.15903 1.10 0.000877319 0.000804706 0.0641473 0.0584948 30 2007 46 6.89349e+06 239595 556674. 1926.21 1.31 0.210262 0.188098 25186 138497 -1 1575 20 861 1362 93836 21337 2.75456 2.75456 -106.315 -2.75456 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0345416 0.0308819 96 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17828 1 0.03 -1 -1 30232 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 17.2 MiB 1.54 1307 13157 3552 8195 1410 55.8 MiB 0.22 0.00 5.64852 -169.418 -5.64852 5.64852 1.11 0.00121488 0.00111406 0.0839158 0.0769762 36 3147 47 6.89349e+06 352346 648988. 2245.63 3.39 0.384854 0.345013 26050 158493 -1 2616 22 1989 2734 228443 48831 4.51639 4.51639 -156.045 -4.51639 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0517209 0.0464841 156 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17660 1 0.03 -1 -1 30184 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 17.1 MiB 2.83 1377 7415 1651 5387 377 55.8 MiB 0.08 0.00 5.30157 -175.126 -5.30157 5.30157 1.07 0.000477715 0.000431872 0.0201641 0.0182806 36 3393 25 6.89349e+06 352346 648988. 2245.63 3.21 0.299802 0.267912 26050 158493 -1 2835 22 2229 3205 258901 54853 4.72005 4.72005 -173.543 -4.72005 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0554302 0.049939 171 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17208 1 0.03 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 16.6 MiB 2.32 743 12720 4130 6895 1695 55.2 MiB 0.17 0.00 4.14342 -113.505 -4.14342 4.14342 1.11 0.000926878 0.000848793 0.0690049 0.0632568 30 2176 39 6.89349e+06 253689 556674. 1926.21 1.48 0.214882 0.192427 25186 138497 -1 1608 19 847 1143 74159 17662 2.99811 2.99811 -101.39 -2.99811 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0348487 0.0311628 108 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17212 1 0.03 -1 -1 30284 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.4 MiB 0.53 706 7823 1736 5421 666 55.1 MiB 0.11 0.00 4.10083 -117.838 -4.10083 4.10083 1.08 0.000882209 0.000809218 0.0404985 0.0371904 30 1853 22 6.89349e+06 281877 556674. 1926.21 1.23 0.152973 0.136936 25186 138497 -1 1635 19 956 1623 99531 23093 2.83491 2.83491 -105.508 -2.83491 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.033349 0.0297928 99 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.7 MiB 2.00 1103 13719 4794 6980 1945 55.5 MiB 0.22 0.00 4.58942 -145.059 -4.58942 4.58942 1.08 0.00117705 0.00108049 0.0870629 0.0799649 34 2800 20 6.89349e+06 324158 618332. 2139.56 2.30 0.338571 0.304228 25762 151098 -1 2436 19 1793 2593 211212 45957 3.5781 3.5781 -137.613 -3.5781 0 0 787024. 2723.27 0.28 0.12 0.24 -1 -1 0.28 0.044499 0.0400557 145 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17556 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1083 8919 2056 5474 1389 55.7 MiB 0.14 0.00 4.89424 -142.728 -4.89424 4.89424 1.09 0.0011682 0.00106993 0.0572894 0.0525096 34 3008 43 6.89349e+06 324158 618332. 2139.56 2.44 0.342917 0.306635 25762 151098 -1 2323 19 1527 2220 172266 41413 4.43665 4.43665 -142.524 -4.43665 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0444122 0.0399439 149 56 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17312 1 0.03 -1 -1 30004 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 17.0 MiB 0.66 1033 19356 5199 10890 3267 55.5 MiB 0.29 0.00 5.32917 -146.087 -5.32917 5.32917 1.08 0.00121833 0.00111805 0.105021 0.0963905 30 3041 40 6.89349e+06 507378 556674. 1926.21 1.89 0.298615 0.269499 25186 138497 -1 2185 22 1788 3363 221964 52375 4.11544 4.11544 -138.805 -4.11544 0 0 706193. 2443.58 0.24 0.13 0.21 -1 -1 0.24 0.0519902 0.0468244 157 3 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17764 1 0.04 -1 -1 29960 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 16.9 MiB 1.32 1151 13143 3782 7948 1413 55.3 MiB 0.20 0.00 3.95739 -118.903 -3.95739 3.95739 1.09 0.00104572 0.000959095 0.0744934 0.0682735 34 2659 22 6.89349e+06 352346 618332. 2139.56 1.99 0.249457 0.222321 25762 151098 -1 2150 18 1518 2207 150480 33588 3.0457 3.0457 -108.49 -3.0457 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0381575 0.0342386 136 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.19 17376 1 0.02 -1 -1 30448 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 16.6 MiB 1.23 755 13768 6057 6665 1046 55.1 MiB 0.15 0.00 4.43859 -116.143 -4.43859 4.43859 1.08 0.000875089 0.0008023 0.073587 0.0674984 34 2141 23 6.89349e+06 281877 618332. 2139.56 2.25 0.261479 0.233849 25762 151098 -1 1630 19 1192 1703 130803 31060 3.6153 3.6153 -113.605 -3.6153 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0331051 0.0295649 106 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30136 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 17.2 MiB 2.57 1514 18043 5658 10071 2314 56.2 MiB 0.32 0.01 4.58581 -147.507 -4.58581 4.58581 1.09 0.00137617 0.00126337 0.124848 0.114545 34 4194 50 6.89349e+06 380534 618332. 2139.56 3.49 0.48125 0.43293 25762 151098 -1 3210 21 1923 3102 270129 56903 4.10359 4.10359 -149.648 -4.10359 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0563725 0.0507173 185 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30128 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 17.1 MiB 1.76 1122 15639 4714 8375 2550 55.6 MiB 0.27 0.00 5.51467 -162.715 -5.51467 5.51467 1.11 0.00118606 0.00108775 0.107686 0.0987502 34 2973 28 6.89349e+06 338252 618332. 2139.56 2.71 0.371948 0.334208 25762 151098 -1 2496 20 2015 2776 220362 49269 4.51165 4.51165 -152.253 -4.51165 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0470024 0.0422855 155 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17472 1 0.04 -1 -1 30268 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 16.9 MiB 1.76 1207 14779 4497 8341 1941 55.4 MiB 0.22 0.00 4.36565 -143.578 -4.36565 4.36565 1.09 0.00108419 0.000994226 0.0888276 0.0814078 34 2807 25 6.89349e+06 295971 618332. 2139.56 2.36 0.323658 0.289998 25762 151098 -1 2289 22 1533 2072 160406 36055 3.3748 3.3748 -129.801 -3.3748 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0463618 0.0415261 137 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 30244 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 16.6 MiB 1.78 1106 13291 3686 7595 2010 55.3 MiB 0.20 0.00 5.17406 -143.598 -5.17406 5.17406 1.09 0.00110295 0.00101178 0.0817427 0.0750086 30 2835 35 6.89349e+06 295971 556674. 1926.21 1.53 0.246432 0.221943 25186 138497 -1 2176 19 1108 1682 108723 25154 3.8055 3.8055 -132.53 -3.8055 0 0 706193. 2443.58 0.26 0.09 0.24 -1 -1 0.26 0.0421416 0.0379175 135 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17756 1 0.03 -1 -1 30012 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1277 13949 4663 6540 2746 55.8 MiB 0.22 0.00 4.6119 -129.607 -4.6119 4.6119 1.19 0.00123402 0.00113278 0.0913764 0.0838517 34 2960 24 6.89349e+06 366440 618332. 2139.56 2.24 0.357564 0.321417 25762 151098 -1 2590 20 1709 2564 186340 41948 3.79686 3.79686 -129.409 -3.79686 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0489338 0.0440311 163 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30036 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 17.1 MiB 1.63 1057 10103 2410 7187 506 55.6 MiB 0.16 0.00 4.37294 -118.646 -4.37294 4.37294 1.08 0.00108246 0.000992013 0.0609446 0.0559031 34 2982 24 6.89349e+06 338252 618332. 2139.56 2.44 0.29327 0.262579 25762 151098 -1 2173 23 1384 2295 155687 36909 3.6794 3.6794 -116.416 -3.6794 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0480546 0.0430392 140 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30140 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 17.3 MiB 2.18 1146 16340 5897 7961 2482 55.8 MiB 0.14 0.00 4.90628 -154.007 -4.90628 4.90628 0.74 0.000439789 0.000397445 0.0396115 0.0358868 34 3223 50 6.89349e+06 310065 618332. 2139.56 3.41 0.341116 0.304782 25762 151098 -1 2505 20 1732 2711 217498 48057 3.8815 3.8815 -143.675 -3.8815 0 0 787024. 2723.27 0.23 0.06 0.12 -1 -1 0.23 0.0193985 0.01724 148 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30024 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 17.0 MiB 2.27 1236 16371 6869 8593 909 55.8 MiB 0.26 0.00 4.19324 -136.834 -4.19324 4.19324 1.08 0.00126145 0.00115529 0.106768 0.0979564 36 2890 25 6.89349e+06 366440 648988. 2245.63 3.22 0.378062 0.340137 26050 158493 -1 2431 20 1700 2341 156685 36663 3.17181 3.17181 -126.921 -3.17181 0 0 828058. 2865.25 0.29 0.12 0.27 -1 -1 0.29 0.0527547 0.0475385 167 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.19 17476 1 0.03 -1 -1 30088 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 16.8 MiB 1.18 881 7081 1573 4782 726 55.3 MiB 0.11 0.00 4.21387 -125.832 -4.21387 4.21387 1.12 0.000927657 0.000851548 0.042257 0.0388987 34 1947 20 6.89349e+06 281877 618332. 2139.56 1.93 0.235977 0.210551 25762 151098 -1 1668 20 1336 1773 132678 29656 3.02156 3.02156 -111.286 -3.02156 0 0 787024. 2723.27 0.26 0.09 0.26 -1 -1 0.26 0.0369402 0.0330465 110 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30172 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.07 868 7770 1747 5581 442 55.5 MiB 0.13 0.00 4.24583 -126.348 -4.24583 4.24583 1.09 0.00101712 0.000931314 0.0461002 0.0421894 36 2425 28 6.89349e+06 281877 648988. 2245.63 2.79 0.270924 0.241424 26050 158493 -1 1953 21 1685 2287 171941 40763 3.4029 3.4029 -121.453 -3.4029 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0419361 0.0375195 125 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.17 17820 1 0.03 -1 -1 30216 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 17.0 MiB 1.35 954 15337 5910 7043 2384 55.5 MiB 0.22 0.00 4.83108 -133.604 -4.83108 4.83108 1.10 0.00111441 0.00102255 0.094812 0.0869954 34 3035 40 6.89349e+06 310065 618332. 2139.56 2.67 0.360756 0.323688 25762 151098 -1 2125 23 1627 2422 177736 47190 3.74936 3.74936 -130.315 -3.74936 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0492344 0.0441637 137 33 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.12 17576 1 0.03 -1 -1 30224 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.7 MiB 2.51 859 12636 4650 6385 1601 55.2 MiB 0.17 0.00 4.13932 -113.849 -4.13932 4.13932 1.10 0.000902765 0.000826873 0.0691321 0.0630881 34 2181 32 6.89349e+06 267783 618332. 2139.56 2.06 0.274757 0.24522 25762 151098 -1 1805 22 1129 1557 124622 29306 2.97321 2.97321 -102.396 -2.97321 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0385886 0.0344814 108 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17276 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 16.5 MiB 1.74 931 12898 3547 7775 1576 55.1 MiB 0.18 0.00 4.14413 -130.005 -4.14413 4.14413 1.09 0.000953427 0.000874011 0.0721013 0.0661601 36 2328 29 6.89349e+06 253689 648988. 2245.63 2.53 0.274588 0.245138 26050 158493 -1 2011 21 1443 2040 168261 36117 3.30996 3.30996 -124.621 -3.30996 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0388748 0.0347116 114 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17740 1 0.03 -1 -1 29920 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 17.1 MiB 1.52 1223 9197 2351 6452 394 55.6 MiB 0.17 0.00 4.60737 -145.998 -4.60737 4.60737 1.09 0.00122981 0.00111744 0.0611364 0.0560149 34 2913 27 6.89349e+06 366440 618332. 2139.56 2.56 0.32771 0.293593 25762 151098 -1 2414 23 2100 2928 239147 52425 4.03295 4.03295 -146.125 -4.03295 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0542474 0.0487761 160 64 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17212 1 0.03 -1 -1 30208 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 16.5 MiB 1.70 913 11088 2855 7004 1229 55.0 MiB 0.16 0.00 3.57635 -113.738 -3.57635 3.57635 1.08 0.000925147 0.000849174 0.0623222 0.0572577 30 2273 20 6.89349e+06 239595 556674. 1926.21 1.22 0.1749 0.156996 25186 138497 -1 1905 20 1065 1491 97174 22413 2.89331 2.89331 -107.732 -2.89331 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0260025 0.0230214 108 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 29840 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1210 14261 3846 8261 2154 55.6 MiB 0.22 0.00 4.18989 -126.928 -4.18989 4.18989 1.09 0.00114421 0.00104683 0.0894508 0.0818736 34 3022 24 6.89349e+06 310065 618332. 2139.56 2.12 0.335277 0.300757 25762 151098 -1 2489 20 1414 2094 158378 34676 3.45175 3.45175 -125.893 -3.45175 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0455679 0.0409383 146 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17616 1 0.03 -1 -1 30092 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 17.2 MiB 1.77 1307 17117 5534 9059 2524 55.9 MiB 0.27 0.00 4.84686 -157.681 -4.84686 4.84686 0.74 0.00125898 0.00115312 0.0995143 0.0910091 34 3332 30 6.89349e+06 366440 618332. 2139.56 2.65 0.382723 0.343429 25762 151098 -1 2667 23 2249 3229 236032 53031 4.41039 4.41039 -159.173 -4.41039 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0558373 0.0501819 170 91 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 16.9 MiB 2.24 1086 13432 3424 8813 1195 55.6 MiB 0.19 0.00 3.821 -117.953 -3.821 3.821 1.09 0.000998871 0.000915616 0.078255 0.0716897 34 2606 27 6.89349e+06 253689 618332. 2139.56 2.11 0.296116 0.264715 25762 151098 -1 2143 20 1427 1932 136459 31615 2.80696 2.80696 -111.298 -2.80696 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.039341 0.0351813 124 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30296 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.5 MiB 1.00 871 12898 3868 7278 1752 55.1 MiB 0.18 0.00 4.12213 -126.038 -4.12213 4.12213 1.09 0.000770918 0.00069411 0.0738288 0.0676884 36 2177 21 6.89349e+06 253689 648988. 2245.63 2.53 0.281728 0.252013 26050 158493 -1 1933 21 1325 1987 169565 36435 3.23035 3.23035 -113.999 -3.23035 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0407813 0.0365321 115 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17868 1 0.17 -1 -1 29828 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 16.7 MiB 1.52 1006 10292 2539 6455 1298 55.3 MiB 0.15 0.00 4.93133 -134.302 -4.93133 4.93133 1.09 0.00109231 0.0010033 0.0618925 0.0568162 34 2482 22 6.89349e+06 310065 618332. 2139.56 2.02 0.291169 0.260972 25762 151098 -1 2102 18 1269 1785 114938 27680 3.75856 3.75856 -129.967 -3.75856 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0395842 0.0356244 133 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.11 17824 1 0.27 -1 -1 30012 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 17.2 MiB 1.72 1105 14450 4218 8203 2029 55.6 MiB 0.22 0.00 4.04968 -110.899 -4.04968 4.04968 1.09 0.0010719 0.000983018 0.0852688 0.0782581 34 2657 23 6.89349e+06 352346 618332. 2139.56 2.14 0.310813 0.27853 25762 151098 -1 2195 21 1346 1980 146862 32855 3.15146 3.15146 -109.077 -3.15146 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0509434 0.0456467 138 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17516 1 0.27 -1 -1 30008 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1170 10033 2409 6880 744 55.8 MiB 0.18 0.00 5.6505 -176.695 -5.6505 5.6505 1.08 0.00127428 0.00116832 0.0689066 0.0631954 34 3979 39 6.89349e+06 338252 618332. 2139.56 4.19 0.38311 0.34286 25762 151098 -1 2902 23 2152 3336 270669 62426 4.84719 4.84719 -171.492 -4.84719 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0570891 0.0513345 166 65 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17156 1 0.27 -1 -1 30004 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 16.5 MiB 0.50 815 9368 2443 5733 1192 55.1 MiB 0.11 0.00 3.49795 -108.682 -3.49795 3.49795 1.09 0.000834867 0.000765601 0.0475319 0.0436072 34 1814 25 6.89349e+06 239595 618332. 2139.56 1.91 0.226291 0.20168 25762 151098 -1 1577 19 774 1207 83395 19438 2.56436 2.56436 -99.3758 -2.56436 0 0 787024. 2723.27 0.28 0.07 0.23 -1 -1 0.28 0.0314812 0.0281193 92 4 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17472 1 0.04 -1 -1 30260 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 17.0 MiB 1.75 1425 17431 5130 10160 2141 56.0 MiB 0.30 0.01 5.66786 -177.951 -5.66786 5.66786 1.09 0.00131256 0.00120346 0.115788 0.106181 34 3494 40 6.89349e+06 380534 618332. 2139.56 2.82 0.440468 0.396133 25762 151098 -1 2800 23 2105 2897 221520 49926 5.00324 5.00324 -174.642 -5.00324 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.05917 0.0532553 175 90 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.18 17468 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 17.1 MiB 1.92 1387 11223 3117 6896 1210 56.0 MiB 0.18 0.00 4.854 -168.258 -4.854 4.854 1.09 0.00118103 0.0010814 0.0725653 0.0664608 38 2917 25 6.89349e+06 324158 678818. 2348.85 2.60 0.321593 0.287639 26626 170182 -1 2562 24 1921 2497 168616 37648 4.42073 4.42073 -166.036 -4.42073 0 0 902133. 3121.57 0.29 0.12 0.28 -1 -1 0.29 0.0546332 0.0489311 160 96 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17788 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 17.0 MiB 1.65 1228 16529 5130 9253 2146 55.5 MiB 0.26 0.00 4.18062 -130.52 -4.18062 4.18062 1.10 0.0011807 0.00108173 0.106084 0.0972041 36 2679 46 6.89349e+06 310065 648988. 2245.63 2.61 0.402196 0.360902 26050 158493 -1 2371 19 1474 2061 158969 34359 3.14201 3.14201 -122.314 -3.14201 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0450346 0.04049 152 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.21 17784 1 0.03 -1 -1 30404 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 17.4 MiB 2.27 1277 13758 3654 8100 2004 56.1 MiB 0.28 0.01 5.8432 -174.13 -5.8432 5.8432 1.09 0.0013463 0.00123563 0.0954653 0.0875724 36 3134 30 6.89349e+06 366440 648988. 2245.63 3.32 0.397751 0.358195 26050 158493 -1 2741 21 2065 3322 272282 57654 4.69455 4.69455 -160.869 -4.69455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.055002 0.0496374 172 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.14 17352 1 0.02 -1 -1 30128 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 16.4 MiB 0.76 693 11650 3455 7011 1184 54.9 MiB 0.13 0.00 3.03066 -95.0101 -3.03066 3.03066 1.08 0.000775434 0.00070975 0.057383 0.0525581 34 1802 38 6.89349e+06 211408 618332. 2139.56 1.92 0.238286 0.211855 25762 151098 -1 1455 17 687 909 76685 16928 2.15212 2.15212 -89.3307 -2.15212 0 0 787024. 2723.27 0.31 0.06 0.23 -1 -1 0.31 0.0267014 0.0237879 82 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30388 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 16.8 MiB 1.07 726 8270 1936 5996 338 55.4 MiB 0.13 0.00 4.60327 -135.822 -4.60327 4.60327 1.08 0.00097829 0.000897998 0.0479814 0.0440291 34 1980 21 6.89349e+06 281877 618332. 2139.56 2.04 0.251619 0.224638 25762 151098 -1 1602 32 1870 2906 352863 137449 3.522 3.522 -126.735 -3.522 0 0 787024. 2723.27 0.26 0.19 0.20 -1 -1 0.26 0.0581864 0.0519421 119 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30280 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1036 12008 3645 6699 1664 55.5 MiB 0.20 0.00 4.33865 -139.218 -4.33865 4.33865 1.08 0.00100995 0.000927069 0.0705449 0.0647264 34 2978 44 6.89349e+06 253689 618332. 2139.56 2.73 0.317903 0.284049 25762 151098 -1 2428 21 1589 2812 229790 50098 3.72055 3.72055 -142.277 -3.72055 0 0 787024. 2723.27 0.28 0.12 0.25 -1 -1 0.28 0.0417233 0.0373486 120 34 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17396 1 0.02 -1 -1 30372 -1 -1 21 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 16.5 MiB 1.01 532 11034 4110 4271 2653 55.2 MiB 0.11 0.00 3.6784 -85.8398 -3.6784 3.6784 1.09 0.000749817 0.000686466 0.0517791 0.0474192 34 1620 27 6.89349e+06 295971 618332. 2139.56 2.02 0.214637 0.191026 25762 151098 -1 1248 20 849 1302 92392 24875 2.98371 2.98371 -81.2823 -2.98371 0 0 787024. 2723.27 0.26 0.07 0.24 -1 -1 0.26 0.0294776 0.0262638 92 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.17 17548 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 17.1 MiB 2.10 1378 14871 4869 7700 2302 55.6 MiB 0.25 0.00 4.565 -139.747 -4.565 4.565 1.11 0.00121068 0.0011095 0.0975763 0.0894915 38 3057 23 6.89349e+06 324158 678818. 2348.85 2.59 0.365731 0.328429 26626 170182 -1 2632 19 1727 2576 176374 38187 3.68256 3.68256 -131.929 -3.68256 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0460028 0.0413809 161 72 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17856 1 0.03 -1 -1 30432 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 17.4 MiB 2.03 1414 15617 4439 9113 2065 56.2 MiB 0.28 0.00 4.8901 -157.733 -4.8901 4.8901 1.09 0.0012968 0.00118873 0.107379 0.098359 34 3269 24 6.89349e+06 408721 618332. 2139.56 2.33 0.386272 0.34697 25762 151098 -1 2694 20 1849 2547 181701 41207 4.21289 4.21289 -153.322 -4.21289 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0512767 0.0461771 179 90 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.21 17596 14 0.25 -1 -1 32760 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 16.3 MiB 0.38 1279 6823 1440 4905 478 54.8 MiB 0.11 0.00 7.95704 -163.811 -7.95704 7.95704 0.79 0.000984759 0.000910867 0.0381719 0.0352979 36 3219 22 6.55708e+06 325485 612192. 2118.31 2.57 0.243153 0.212586 22750 144809 -1 2793 14 1121 3464 231852 49153 6.88996 6.88996 -154.206 -6.88996 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0317897 0.0283088 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.27 17948 14 0.28 -1 -1 32888 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 16.2 MiB 0.47 1272 10173 2471 6545 1157 54.8 MiB 0.14 0.00 8.16064 -158.468 -8.16064 8.16064 0.76 0.000998788 0.000922465 0.0519287 0.0480374 36 3308 34 6.55708e+06 373705 612192. 2118.31 2.28 0.26675 0.2333 22750 144809 -1 2873 17 1249 3680 243327 52457 7.09116 7.09116 -148.024 -7.09116 0 0 782063. 2706.10 0.26 0.10 0.13 -1 -1 0.26 0.0359244 0.0318249 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17640 11 0.22 -1 -1 33120 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1375 11748 3042 6701 2005 54.7 MiB 0.16 0.00 6.90223 -139.699 -6.90223 6.90223 0.82 0.000987244 0.000911379 0.061711 0.0570203 28 4035 48 6.55708e+06 313430 500653. 1732.36 4.08 0.230392 0.202784 21310 115450 -1 3354 32 1957 7088 740412 223421 6.62198 6.62198 -146.058 -6.62198 0 0 612192. 2118.31 0.21 0.24 0.12 -1 -1 0.21 0.0594965 0.0520907 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.20 17776 12 0.31 -1 -1 32816 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 16.4 MiB 0.51 1263 4783 870 3608 305 54.9 MiB 0.08 0.00 7.83974 -145.087 -7.83974 7.83974 0.77 0.00100446 0.000928813 0.0273904 0.0253788 36 3154 31 6.55708e+06 361650 612192. 2118.31 2.88 0.250102 0.218076 22750 144809 -1 2710 17 1151 3764 244856 52011 7.0397 7.0397 -138.841 -7.0397 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0369192 0.0327797 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.27 17660 13 0.28 -1 -1 32768 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 16.4 MiB 0.45 1445 11111 2879 6967 1265 54.9 MiB 0.16 0.00 7.83935 -165.421 -7.83935 7.83935 0.75 0.00108933 0.00100791 0.0599553 0.0554518 30 3665 20 6.55708e+06 373705 526063. 1820.29 3.82 0.361225 0.316 21886 126133 -1 3117 28 1489 4362 393839 142248 6.8385 6.8385 -155.896 -6.8385 0 0 666494. 2306.21 0.23 0.17 0.13 -1 -1 0.23 0.0583069 0.0513483 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.28 17636 13 0.24 -1 -1 32724 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 16.3 MiB 0.32 1337 11046 2900 6780 1366 54.8 MiB 0.14 0.00 7.78297 -154.862 -7.78297 7.78297 0.83 0.00107372 0.00099376 0.0487944 0.0448312 34 3479 24 6.55708e+06 385760 585099. 2024.56 2.46 0.220452 0.194036 22462 138074 -1 2970 29 1600 5681 523331 166012 6.9613 6.9613 -152.092 -6.9613 0 0 742403. 2568.87 0.25 0.20 0.14 -1 -1 0.25 0.0596879 0.0525411 198 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.23 17636 12 0.19 -1 -1 32552 -1 -1 27 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55616 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 15.8 MiB 0.26 1022 8969 2278 5945 746 54.3 MiB 0.11 0.00 7.21391 -130.754 -7.21391 7.21391 0.80 0.000814565 0.000753405 0.0420232 0.0388449 30 2509 31 6.55708e+06 325485 526063. 1820.29 1.22 0.138316 0.123145 21886 126133 -1 2156 15 914 2493 142845 32222 6.43104 6.43104 -124.628 -6.43104 0 0 666494. 2306.21 0.23 0.07 0.09 -1 -1 0.23 0.0272569 0.0242341 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.23 17324 12 0.19 -1 -1 32800 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 15.9 MiB 0.23 1233 12733 3609 7498 1626 54.4 MiB 0.15 0.00 6.32286 -134.975 -6.32286 6.32286 0.78 0.000813036 0.000750843 0.0600043 0.0554236 36 3024 41 6.55708e+06 265210 612192. 2118.31 3.78 0.252414 0.221844 22750 144809 -1 2626 16 1067 3234 210967 44833 5.53052 5.53052 -129.691 -5.53052 0 0 782063. 2706.10 0.26 0.08 0.15 -1 -1 0.26 0.0274469 0.0243764 140 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.25 17724 12 0.17 -1 -1 32828 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55740 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1203 13157 3412 7574 2171 54.4 MiB 0.15 0.00 6.35469 -136.224 -6.35469 6.35469 0.77 0.000832738 0.000769324 0.0586898 0.0542162 34 3035 46 6.55708e+06 313430 585099. 2024.56 2.14 0.224951 0.197978 22462 138074 -1 2537 17 1057 2686 182904 40316 5.84992 5.84992 -131.816 -5.84992 0 0 742403. 2568.87 0.30 0.08 0.16 -1 -1 0.30 0.0313661 0.0278807 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.23 17520 13 0.19 -1 -1 32608 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55716 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1164 8207 1986 5229 992 54.4 MiB 0.11 0.00 7.79043 -163.222 -7.79043 7.79043 0.79 0.000891415 0.000824264 0.040442 0.0374105 28 3528 36 6.55708e+06 301375 500653. 1732.36 1.88 0.178931 0.157746 21310 115450 -1 2905 29 1262 3548 483224 193094 6.58844 6.58844 -158.82 -6.58844 0 0 612192. 2118.31 0.21 0.18 0.12 -1 -1 0.21 0.049251 0.0431411 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17676 12 0.18 -1 -1 32424 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55520 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 15.8 MiB 0.25 1043 7646 1812 5284 550 54.2 MiB 0.09 0.00 6.98257 -137.016 -6.98257 6.98257 0.76 0.000778931 0.000719907 0.0344424 0.0318115 30 2447 18 6.55708e+06 289320 526063. 1820.29 3.25 0.245353 0.213451 21886 126133 -1 2171 14 836 2245 127590 28176 5.86158 5.86158 -128.53 -5.86158 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.024711 0.0219749 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17540 12 0.15 -1 -1 32576 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1210 6701 1475 4829 397 54.4 MiB 0.09 0.00 6.74278 -155.388 -6.74278 6.74278 0.77 0.00081719 0.000755208 0.0319589 0.0295284 28 3168 38 6.55708e+06 265210 500653. 1732.36 1.91 0.157208 0.138095 21310 115450 -1 2810 17 1023 2808 192059 42007 5.92832 5.92832 -148.513 -5.92832 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0292624 0.0258616 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.28 17836 13 0.24 -1 -1 32500 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1329 9892 2541 6359 992 54.8 MiB 0.14 0.00 8.09466 -168.958 -8.09466 8.09466 0.75 0.00101526 0.000939857 0.0508492 0.0470403 28 3771 29 6.55708e+06 361650 500653. 1732.36 1.59 0.185799 0.163738 21310 115450 -1 3142 16 1289 3750 257725 55464 6.96836 6.96836 -162.05 -6.96836 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0361386 0.0321454 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17912 14 0.30 -1 -1 32808 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1640 11170 2650 7415 1105 55.2 MiB 0.16 0.00 9.0039 -186.596 -9.0039 9.0039 0.77 0.00107344 0.000992611 0.0606502 0.055992 30 4010 33 6.55708e+06 361650 526063. 1820.29 1.73 0.21713 0.191974 21886 126133 -1 3203 18 1424 4077 243425 51823 7.64835 7.64835 -170.548 -7.64835 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0417054 0.0370175 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.16 17384 11 0.17 -1 -1 32620 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55724 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 15.9 MiB 0.24 878 5158 949 3601 608 54.4 MiB 0.07 0.00 6.71354 -123.992 -6.71354 6.71354 0.77 0.0007973 0.000736464 0.0240902 0.0222512 26 3504 48 6.55708e+06 325485 477104. 1650.88 5.89 0.279043 0.241286 21022 109990 -1 2457 17 1122 3018 217974 53103 6.13918 6.13918 -130.631 -6.13918 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0287359 0.0254033 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.26 17608 12 0.27 -1 -1 32808 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 16.3 MiB 0.35 1420 10309 2435 6528 1346 54.9 MiB 0.15 0.00 7.45763 -153.823 -7.45763 7.45763 0.89 0.000881941 0.000799693 0.0542385 0.0501209 36 3993 50 6.55708e+06 397815 612192. 2118.31 4.99 0.433135 0.377727 22750 144809 -1 3285 24 1419 4886 395690 104132 6.55124 6.55124 -145.671 -6.55124 0 0 782063. 2706.10 0.28 0.15 0.15 -1 -1 0.28 0.0512536 0.0452693 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.26 17732 14 0.24 -1 -1 32776 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 16.3 MiB 0.25 1436 5553 1081 4073 399 54.7 MiB 0.09 0.00 7.42808 -156.41 -7.42808 7.42808 0.83 0.000894838 0.000837499 0.0290405 0.0268344 34 4139 50 6.55708e+06 349595 585099. 2024.56 8.85 0.403369 0.349754 22462 138074 -1 3140 20 1373 4145 301435 70795 6.46824 6.46824 -149.425 -6.46824 0 0 742403. 2568.87 0.25 0.12 0.14 -1 -1 0.25 0.0411348 0.0363701 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.25 17608 12 0.16 -1 -1 32404 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 15.9 MiB 0.32 1097 11991 2937 7207 1847 54.4 MiB 0.14 0.00 7.19884 -160.926 -7.19884 7.19884 0.77 0.000820979 0.000757069 0.0543526 0.050155 30 2410 15 6.55708e+06 277265 526063. 1820.29 3.09 0.237812 0.208689 21886 126133 -1 2154 13 869 2459 125597 28989 5.9625 5.9625 -147.462 -5.9625 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0254836 0.0227791 140 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17256 10 0.10 -1 -1 32168 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55176 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 15.2 MiB 0.16 733 7548 1614 5464 470 53.9 MiB 0.08 0.00 5.36346 -120.328 -5.36346 5.36346 0.77 0.000616945 0.000569361 0.0301969 0.0279025 28 1922 22 6.55708e+06 192880 500653. 1732.36 0.94 0.105286 0.0925152 21310 115450 -1 1660 13 688 1641 98697 23666 4.61634 4.61634 -115.034 -4.61634 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0181607 0.0160641 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.25 17464 13 0.18 -1 -1 32572 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 16.1 MiB 0.36 1075 12951 3421 7713 1817 54.6 MiB 0.15 0.00 6.90774 -144.707 -6.90774 6.90774 0.75 0.000831541 0.000767833 0.0591875 0.0546223 28 3303 39 6.55708e+06 289320 500653. 1732.36 1.82 0.181894 0.160601 21310 115450 -1 2428 17 1121 2973 212649 50376 6.37958 6.37958 -145.211 -6.37958 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0303248 0.0269006 144 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17588 13 0.27 -1 -1 32792 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1429 6575 1166 5105 304 55.0 MiB 0.10 0.00 8.01121 -157.98 -8.01121 8.01121 0.74 0.00106851 0.000984491 0.0365227 0.0338042 28 4041 48 6.55708e+06 373705 500653. 1732.36 5.97 0.365975 0.318556 21310 115450 -1 3295 18 1665 5085 363431 76695 7.3213 7.3213 -157.006 -7.3213 0 0 612192. 2118.31 0.23 0.13 0.10 -1 -1 0.23 0.0412778 0.0366169 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.28 17604 13 0.28 -1 -1 32400 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 16.3 MiB 0.40 1433 6823 1289 5315 219 55.0 MiB 0.11 0.00 7.886 -165.604 -7.886 7.886 0.76 0.00102679 0.00094941 0.0384083 0.0355428 46 3341 19 6.55708e+06 325485 782063. 2706.10 5.21 0.374055 0.325265 24766 183262 -1 2864 15 1173 3988 254281 51482 7.0397 7.0397 -154.052 -7.0397 0 0 958460. 3316.47 0.32 0.10 0.20 -1 -1 0.32 0.0327946 0.0295436 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.19 17412 9 0.09 -1 -1 32280 -1 -1 24 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55072 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 15.2 MiB 0.18 744 10762 3120 6243 1399 53.8 MiB 0.09 0.00 5.06374 -98.4324 -5.06374 5.06374 0.77 0.000557344 0.000515085 0.0358642 0.0331439 26 1886 19 6.55708e+06 289320 477104. 1650.88 1.28 0.10303 0.0907058 21022 109990 -1 1707 15 646 1578 114900 25248 4.50014 4.50014 -97.7303 -4.50014 0 0 585099. 2024.56 0.20 0.05 0.12 -1 -1 0.20 0.0185466 0.0162997 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17500 13 0.27 -1 -1 32848 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1381 10781 2930 5957 1894 54.8 MiB 0.15 0.00 7.83519 -151.249 -7.83519 7.83519 0.77 0.00101778 0.000941176 0.0596504 0.055195 30 3912 26 6.55708e+06 301375 526063. 1820.29 2.88 0.200179 0.177324 21886 126133 -1 3195 29 1437 4348 352112 101634 6.9653 6.9653 -149.679 -6.9653 0 0 666494. 2306.21 0.23 0.15 0.13 -1 -1 0.23 0.0558183 0.0490328 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17256 8 0.09 -1 -1 32836 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 15.1 MiB 0.13 553 7648 2806 3716 1126 53.7 MiB 0.07 0.00 4.12642 -89.8462 -4.12642 4.12642 0.76 0.00055145 0.000508926 0.0263338 0.0242747 30 1765 28 6.55708e+06 192880 526063. 1820.29 1.00 0.0982299 0.0858389 21886 126133 -1 1245 13 543 1161 69082 16964 3.73148 3.73148 -89.2084 -3.73148 0 0 666494. 2306.21 0.23 0.04 0.13 -1 -1 0.23 0.0160926 0.0141944 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.24 17516 15 0.23 -1 -1 32928 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 16.0 MiB 0.32 1321 6923 1475 4903 545 54.6 MiB 0.10 0.00 8.32249 -162.146 -8.32249 8.32249 0.78 0.000925807 0.000855914 0.0350719 0.0324665 36 3201 36 6.55708e+06 337540 612192. 2118.31 2.42 0.247855 0.215985 22750 144809 -1 2775 17 1219 3721 267825 54860 7.4009 7.4009 -156.759 -7.4009 0 0 782063. 2706.10 0.25 0.10 0.14 -1 -1 0.25 0.0335965 0.029715 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17644 13 0.26 -1 -1 32700 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 16.0 MiB 0.28 1319 5919 1133 4327 459 54.7 MiB 0.09 0.00 7.07675 -156.6 -7.07675 7.07675 0.81 0.000938563 0.000868565 0.0317805 0.0294058 44 2889 17 6.55708e+06 313430 742403. 2568.87 3.91 0.288695 0.251137 24478 177802 -1 2443 18 900 2794 186788 38159 6.20852 6.20852 -144.17 -6.20852 0 0 937218. 3242.97 0.31 0.08 0.17 -1 -1 0.31 0.0354752 0.0314085 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17784 13 0.26 -1 -1 32872 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1276 11223 2538 6825 1860 54.8 MiB 0.15 0.00 7.85647 -160.581 -7.85647 7.85647 0.88 0.0010048 0.000928799 0.0580195 0.0536841 30 3277 23 6.55708e+06 349595 526063. 1820.29 1.43 0.187479 0.165969 21886 126133 -1 2550 15 1111 3417 193372 42481 6.7183 6.7183 -150.515 -6.7183 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.033509 0.0298685 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.23 17576 12 0.16 -1 -1 32620 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1153 7191 1558 5291 342 54.4 MiB 0.10 0.00 6.57592 -147.41 -6.57592 6.57592 0.80 0.000834462 0.000769759 0.0329033 0.0303058 36 3133 23 6.55708e+06 277265 612192. 2118.31 3.34 0.209622 0.183263 22750 144809 -1 2619 23 1094 3280 293185 95953 5.60692 5.60692 -136.156 -5.60692 0 0 782063. 2706.10 0.26 0.12 0.14 -1 -1 0.26 0.0376565 0.0331896 147 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17460 11 0.15 -1 -1 32712 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55472 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 15.8 MiB 0.19 963 12919 3847 7319 1753 54.2 MiB 0.14 0.00 6.46503 -135.82 -6.46503 6.46503 0.79 0.000773299 0.000715046 0.0545577 0.0504587 28 2554 23 6.55708e+06 277265 500653. 1732.36 1.19 0.154043 0.13679 21310 115450 -1 2217 15 894 2387 153269 34658 5.86158 5.86158 -134.024 -5.86158 0 0 612192. 2118.31 0.22 0.07 0.10 -1 -1 0.22 0.0254012 0.0225318 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.25 17344 11 0.17 -1 -1 32604 -1 -1 28 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55604 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 15.7 MiB 0.39 1010 6913 1544 4325 1044 54.3 MiB 0.09 0.00 6.38158 -126.573 -6.38158 6.38158 0.76 0.000807654 0.00074635 0.0315635 0.0291601 26 3292 49 6.55708e+06 337540 477104. 1650.88 2.63 0.179838 0.158725 21022 109990 -1 2691 49 2039 6322 853481 351910 5.49132 5.49132 -126.633 -5.49132 0 0 585099. 2024.56 0.20 0.30 0.11 -1 -1 0.20 0.0685787 0.0595654 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.22 17372 12 0.20 -1 -1 32696 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1304 6321 1255 4617 449 54.6 MiB 0.09 0.00 7.16635 -157.812 -7.16635 7.16635 0.76 0.00096188 0.000890327 0.0338785 0.0313821 26 3730 50 6.55708e+06 313430 477104. 1650.88 2.46 0.194309 0.169975 21022 109990 -1 3126 19 1505 4080 298026 66261 6.4035 6.4035 -160.609 -6.4035 0 0 585099. 2024.56 0.20 0.11 0.12 -1 -1 0.20 0.0380187 0.033583 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.23 17672 12 0.16 -1 -1 32756 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55556 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 15.8 MiB 0.54 980 5567 1150 4291 126 54.3 MiB 0.08 0.00 7.18658 -144.693 -7.18658 7.18658 0.76 0.000817077 0.000753978 0.0271374 0.0250875 28 3030 21 6.55708e+06 277265 500653. 1732.36 1.67 0.129414 0.113512 21310 115450 -1 2505 32 1468 4279 456054 161539 6.14118 6.14118 -141.809 -6.14118 0 0 612192. 2118.31 0.22 0.18 0.12 -1 -1 0.22 0.0520163 0.0457616 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.25 17560 10 0.14 -1 -1 32608 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55524 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 15.8 MiB 0.18 1013 6563 1489 4557 517 54.2 MiB 0.08 0.00 5.76546 -121.445 -5.76546 5.76546 0.77 0.00079112 0.000731006 0.031858 0.029446 28 2690 47 6.55708e+06 265210 500653. 1732.36 3.97 0.241262 0.209517 21310 115450 -1 2253 14 837 2399 159822 34768 5.27986 5.27986 -119.779 -5.27986 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0253068 0.0225176 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18180 13 0.30 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 16.3 MiB 0.24 1488 10247 2366 6979 902 55.1 MiB 0.15 0.00 7.78037 -164.973 -7.78037 7.78037 0.76 0.00110618 0.00102146 0.0570093 0.0526389 30 3533 45 6.55708e+06 373705 526063. 1820.29 6.40 0.405318 0.353874 21886 126133 -1 3052 14 1271 3998 227953 49965 6.7967 6.7967 -153.763 -6.7967 0 0 666494. 2306.21 0.23 0.09 0.12 -1 -1 0.23 0.0357189 0.0318744 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.27 18196 14 0.31 -1 -1 33356 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 16.2 MiB 0.46 1341 7544 1708 5122 714 54.7 MiB 0.12 0.00 7.48711 -165.315 -7.48711 7.48711 0.76 0.00102361 0.000946336 0.0413146 0.0382218 30 3697 31 6.55708e+06 337540 526063. 1820.29 1.63 0.181994 0.160072 21886 126133 -1 2911 17 1300 3826 220011 48624 6.65518 6.65518 -156.988 -6.65518 0 0 666494. 2306.21 0.23 0.10 0.12 -1 -1 0.23 0.0375668 0.0333888 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.23 17404 12 0.19 -1 -1 32632 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55600 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 15.8 MiB 0.25 1061 14582 3956 8171 2455 54.3 MiB 0.16 0.00 7.55424 -147.694 -7.55424 7.55424 0.76 0.000834995 0.00077072 0.0625872 0.0576838 36 2600 19 6.55708e+06 349595 612192. 2118.31 2.36 0.227118 0.199771 22750 144809 -1 2215 15 875 2445 149898 32986 6.4819 6.4819 -137.119 -6.4819 0 0 782063. 2706.10 0.26 0.07 0.15 -1 -1 0.26 0.0275492 0.0244894 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.25 17616 12 0.32 -1 -1 32860 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 16.4 MiB 0.41 1440 9951 2153 6171 1627 55.1 MiB 0.14 0.00 7.66392 -155.521 -7.66392 7.66392 0.77 0.00107633 0.000995556 0.0533209 0.0493394 30 3824 20 6.55708e+06 397815 526063. 1820.29 1.47 0.186679 0.165242 21886 126133 -1 3051 18 1411 4017 226662 50953 6.6419 6.6419 -148.935 -6.6419 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0417374 0.0370663 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17996 14 0.33 -1 -1 33164 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 16.3 MiB 0.29 1368 10442 2445 6848 1149 54.8 MiB 0.15 0.00 8.27333 -162.102 -8.27333 8.27333 0.77 0.00106854 0.000989693 0.0577895 0.0535158 28 4284 50 6.55708e+06 349595 500653. 1732.36 11.03 0.388427 0.340419 21310 115450 -1 3323 58 1613 4947 868929 448272 7.6387 7.6387 -164.973 -7.6387 0 0 612192. 2118.31 0.21 0.35 0.12 -1 -1 0.21 0.102688 0.0892433 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.28 18048 13 0.25 -1 -1 32896 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 16.2 MiB 0.33 1406 11311 2955 7221 1135 54.7 MiB 0.16 0.00 7.94497 -159.991 -7.94497 7.94497 0.77 0.00100032 0.000925428 0.0591204 0.0545927 34 3666 25 6.55708e+06 337540 585099. 2024.56 2.55 0.228172 0.201653 22462 138074 -1 3213 17 1392 3934 289139 61315 7.0005 7.0005 -154.566 -7.0005 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0369516 0.03283 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.29 17816 13 0.22 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 16.3 MiB 0.34 1345 7613 1868 4862 883 54.8 MiB 0.11 0.00 7.08841 -141.492 -7.08841 7.08841 0.77 0.000999481 0.000925317 0.041324 0.0381903 36 3402 23 6.55708e+06 313430 612192. 2118.31 4.07 0.260245 0.226784 22750 144809 -1 2892 19 1179 3717 240140 50722 6.18098 6.18098 -138.007 -6.18098 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0382406 0.0338537 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.23 17640 12 0.19 -1 -1 32760 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 16.0 MiB 0.21 1315 5548 1167 3981 400 54.7 MiB 0.09 0.00 7.00741 -145.329 -7.00741 7.00741 0.76 0.000922934 0.000853736 0.0314836 0.0291596 28 3354 21 6.55708e+06 289320 500653. 1732.36 1.67 0.142643 0.125181 21310 115450 -1 2882 18 1347 4054 281572 60880 6.10198 6.10198 -140.685 -6.10198 0 0 612192. 2118.31 0.23 0.11 0.12 -1 -1 0.23 0.0371487 0.0330237 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.31 18400 14 0.38 -1 -1 32924 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 16.7 MiB 0.38 1670 9383 2100 6642 641 55.2 MiB 0.15 0.00 8.23218 -176.173 -8.23218 8.23218 0.75 0.00115029 0.00106338 0.054706 0.0505108 36 4413 27 6.55708e+06 373705 612192. 2118.31 4.92 0.394375 0.344365 22750 144809 -1 3591 15 1435 4642 300124 63754 7.28976 7.28976 -168.351 -7.28976 0 0 782063. 2706.10 0.28 0.11 0.15 -1 -1 0.28 0.0393235 0.0352724 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.23 17556 11 0.21 -1 -1 32476 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55848 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 15.9 MiB 0.33 1051 8603 2089 5379 1135 54.5 MiB 0.12 0.00 6.74223 -137.589 -6.74223 6.74223 0.76 0.000884023 0.000817482 0.0417229 0.0385902 30 2962 18 6.55708e+06 313430 526063. 1820.29 1.25 0.144351 0.12725 21886 126133 -1 2424 34 1146 3298 332117 129087 6.06278 6.06278 -136.328 -6.06278 0 0 666494. 2306.21 0.23 0.15 0.12 -1 -1 0.23 0.0546499 0.0476761 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17840 13 0.26 -1 -1 33416 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1315 7435 1572 5156 707 55.0 MiB 0.11 0.00 8.06447 -154.642 -8.06447 8.06447 0.76 0.0010064 0.000929508 0.0406087 0.0375255 28 3622 39 6.55708e+06 337540 500653. 1732.36 2.36 0.198677 0.174704 21310 115450 -1 3104 19 1298 4356 369368 97364 7.17156 7.17156 -152.309 -7.17156 0 0 612192. 2118.31 0.21 0.13 0.12 -1 -1 0.21 0.0402282 0.0356167 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.27 17608 12 0.25 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 16.4 MiB 0.42 1532 15213 4154 8657 2402 55.0 MiB 0.20 0.00 7.13712 -150.826 -7.13712 7.13712 0.76 0.00106653 0.000985351 0.0816381 0.0753758 36 3927 38 6.55708e+06 349595 612192. 2118.31 3.78 0.334917 0.295074 22750 144809 -1 3320 17 1267 4413 298784 61529 6.19264 6.19264 -141.092 -6.19264 0 0 782063. 2706.10 0.26 0.11 0.15 -1 -1 0.26 0.0397094 0.0352952 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.23 17548 13 0.30 -1 -1 32844 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1350 5133 911 3808 414 54.7 MiB 0.08 0.00 7.54057 -158.305 -7.54057 7.54057 0.77 0.00099126 0.000917313 0.0285159 0.0263753 28 3699 48 6.55708e+06 349595 500653. 1732.36 7.11 0.329248 0.286392 21310 115450 -1 3121 21 1279 3597 285111 75696 6.90724 6.90724 -158.654 -6.90724 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0423699 0.037394 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.21 17608 13 0.22 -1 -1 32796 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 16.2 MiB 0.36 1371 12351 2891 7373 2087 54.7 MiB 0.16 0.00 7.1188 -155.865 -7.1188 7.1188 0.78 0.000960562 0.000887046 0.062679 0.0579119 36 3362 27 6.55708e+06 313430 612192. 2118.31 3.32 0.26911 0.235925 22750 144809 -1 2806 14 1094 3228 209014 44109 6.17898 6.17898 -145.094 -6.17898 0 0 782063. 2706.10 0.25 0.08 0.14 -1 -1 0.25 0.030338 0.0269839 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.21 17808 12 0.25 -1 -1 32628 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 16.4 MiB 0.48 1446 11170 2757 7067 1346 54.9 MiB 0.15 0.00 7.31654 -157.818 -7.31654 7.31654 0.78 0.00103487 0.000954669 0.0581472 0.0536718 38 3358 31 6.55708e+06 361650 638502. 2209.35 2.35 0.281326 0.246344 23326 155178 -1 2773 14 1140 3887 218758 46560 6.26904 6.26904 -146.884 -6.26904 0 0 851065. 2944.86 0.27 0.09 0.16 -1 -1 0.27 0.0345761 0.0309569 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.28 18068 13 0.29 -1 -1 32824 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1513 7223 1461 5178 584 55.1 MiB 0.12 0.00 7.58438 -161.714 -7.58438 7.58438 0.77 0.00108175 0.0009985 0.0405452 0.0374443 34 4148 44 6.55708e+06 373705 585099. 2024.56 2.98 0.266168 0.233718 22462 138074 -1 3416 16 1468 4525 314604 66645 6.58844 6.58844 -153.738 -6.58844 0 0 742403. 2568.87 0.24 0.11 0.12 -1 -1 0.24 0.0390279 0.0347628 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.25 17744 14 0.27 -1 -1 33028 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 16.1 MiB 0.24 1215 10813 2361 6891 1561 54.8 MiB 0.14 0.00 8.31609 -163.248 -8.31609 8.31609 0.76 0.000949584 0.00087883 0.0563306 0.0521136 30 3177 22 6.55708e+06 289320 526063. 1820.29 1.67 0.172662 0.152738 21886 126133 -1 2674 20 1152 3504 205428 44313 7.08916 7.08916 -154.463 -7.08916 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0386199 0.0341416 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17744 13 0.26 -1 -1 32752 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1503 5206 957 3956 293 54.9 MiB 0.09 0.00 8.07478 -162.365 -8.07478 8.07478 0.77 0.00103049 0.000953262 0.0290366 0.0269017 28 4350 40 6.55708e+06 361650 500653. 1732.36 3.07 0.191726 0.168016 21310 115450 -1 3385 20 1884 5661 374533 80186 7.05196 7.05196 -158.662 -7.05196 0 0 612192. 2118.31 0.24 0.13 0.12 -1 -1 0.24 0.0428747 0.0379467 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.30 18028 13 0.27 -1 -1 32716 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 16.2 MiB 0.27 1405 8401 1949 5780 672 54.8 MiB 0.13 0.00 7.80415 -160.841 -7.80415 7.80415 0.77 0.00107589 0.000990364 0.0466773 0.0431335 30 3626 43 6.55708e+06 373705 526063. 1820.29 10.15 0.383218 0.334103 21886 126133 -1 2951 15 1328 3924 228405 49825 6.8411 6.8411 -153.151 -6.8411 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0360117 0.0321037 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.27 18076 12 0.32 -1 -1 32788 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1438 11641 3058 7283 1300 55.0 MiB 0.16 0.00 7.70272 -159.771 -7.70272 7.70272 0.75 0.00107075 0.000989789 0.060481 0.055855 30 3684 22 6.55708e+06 397815 526063. 1820.29 1.19 0.144344 0.128422 21886 126133 -1 2973 17 1421 3947 222213 49985 6.6419 6.6419 -151.956 -6.6419 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0394409 0.0350696 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.22 17456 11 0.13 -1 -1 32616 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55500 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 15.6 MiB 0.23 1054 3998 719 2985 294 54.2 MiB 0.06 0.00 6.14869 -128.86 -6.14869 6.14869 0.79 0.000759751 0.000701786 0.0193828 0.0179259 28 2511 17 6.55708e+06 216990 500653. 1732.36 2.80 0.184603 0.160176 21310 115450 -1 2318 15 917 2377 154005 34831 5.41032 5.41032 -131.217 -5.41032 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0249949 0.022128 125 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17728 13 0.21 -1 -1 32916 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 16.0 MiB 0.32 1266 7888 1808 5375 705 54.6 MiB 0.11 0.00 7.4424 -157.565 -7.4424 7.4424 0.76 0.000918509 0.0008505 0.040729 0.0376874 28 3381 49 6.55708e+06 289320 500653. 1732.36 2.01 0.191899 0.168089 21310 115450 -1 2910 22 1248 3612 274851 68361 6.74784 6.74784 -151.854 -6.74784 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0399729 0.0351548 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.27 18328 14 0.43 -1 -1 32856 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1601 9199 2042 6426 731 55.3 MiB 0.15 0.00 8.66873 -176.87 -8.66873 8.66873 0.76 0.0012113 0.00111459 0.0549201 0.0507048 28 4784 40 6.55708e+06 397815 500653. 1732.36 10.38 0.403908 0.353326 21310 115450 -1 4067 19 2277 7432 516165 110855 7.60916 7.60916 -171.292 -7.60916 0 0 612192. 2118.31 0.21 0.20 0.12 -1 -1 0.21 0.0499553 0.0446019 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.27 17820 13 0.31 -1 -1 32720 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.2 MiB 0.39 1376 4579 799 3553 227 54.6 MiB 0.08 0.00 8.02278 -172.696 -8.02278 8.02278 0.77 0.000998313 0.000916052 0.0261086 0.024143 36 3295 17 6.55708e+06 325485 612192. 2118.31 2.38 0.223815 0.195341 22750 144809 -1 2835 14 1157 3318 205823 44827 7.0769 7.0769 -162.862 -7.0769 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0341679 0.0306123 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.25 17536 11 0.17 -1 -1 32572 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55544 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 15.8 MiB 0.17 1035 10687 2518 6679 1490 54.2 MiB 0.13 0.00 6.59735 -138.464 -6.59735 6.59735 0.74 0.00080732 0.000744776 0.0499696 0.0461216 32 2909 38 6.55708e+06 277265 554710. 1919.41 2.34 0.233368 0.203944 22174 131602 -1 2333 16 1038 2920 213757 46434 5.97918 5.97918 -136.584 -5.97918 0 0 701300. 2426.64 0.23 0.08 0.13 -1 -1 0.23 0.0276717 0.0245139 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.30 18184 15 0.50 -1 -1 32792 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1771 9773 2274 6549 950 55.2 MiB 0.16 0.00 9.55013 -184.943 -9.55013 9.55013 0.77 0.00124224 0.00114569 0.059072 0.0545759 36 4527 28 6.55708e+06 409870 612192. 2118.31 4.21 0.334434 0.294768 22750 144809 -1 3824 19 2003 6661 469916 96499 8.37721 8.37721 -174.058 -8.37721 0 0 782063. 2706.10 0.26 0.16 0.15 -1 -1 0.26 0.051269 0.0456223 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.27 17808 13 0.30 -1 -1 32736 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1402 7958 1933 5289 736 54.9 MiB 0.12 0.00 7.87358 -164.462 -7.87358 7.87358 0.76 0.00106132 0.000981734 0.0460784 0.0426104 30 3399 29 6.55708e+06 337540 526063. 1820.29 1.24 0.186736 0.164541 21886 126133 -1 2875 16 1243 3754 208526 46327 6.73256 6.73256 -153.852 -6.73256 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0370922 0.0329822 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.14 17056 11 0.13 -1 -1 32116 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 15.8 MiB 0.29 1082 11804 3066 7108 1630 54.4 MiB 0.14 0.00 6.28346 -137.062 -6.28346 6.28346 0.77 0.000802894 0.000741154 0.0533096 0.0492138 28 2920 40 6.55708e+06 265210 500653. 1732.36 7.02 0.276428 0.242511 21310 115450 -1 2550 31 1064 3131 371230 151237 5.40772 5.40772 -132.404 -5.40772 0 0 612192. 2118.31 0.21 0.15 0.12 -1 -1 0.21 0.0461013 0.0403508 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.14 17592 12 0.29 -1 -1 32792 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 16.5 MiB 0.40 1459 6058 1136 4425 497 55.3 MiB 0.10 0.00 7.4882 -153.189 -7.4882 7.4882 0.77 0.00106867 0.000986391 0.0344741 0.0318975 36 3684 49 6.55708e+06 361650 612192. 2118.31 5.09 0.450635 0.389937 22750 144809 -1 3201 19 1364 4385 307670 63006 6.55124 6.55124 -146.013 -6.55124 0 0 782063. 2706.10 0.28 0.11 0.14 -1 -1 0.28 0.0377226 0.0340234 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.21 17660 12 0.19 -1 -1 32636 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55848 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 16.0 MiB 0.37 1183 11346 2851 6780 1715 54.5 MiB 0.15 0.00 7.37351 -152.427 -7.37351 7.37351 0.76 0.000866373 0.000800355 0.0538861 0.0497912 28 3297 24 6.55708e+06 313430 500653. 1732.36 1.44 0.16982 0.150403 21310 115450 -1 2787 15 1113 3099 198463 44702 6.78964 6.78964 -150.547 -6.78964 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290847 0.0259122 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17388 12 0.23 -1 -1 32600 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55612 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 15.9 MiB 0.20 948 9803 2338 5714 1751 54.3 MiB 0.12 0.00 7.00946 -139.977 -7.00946 7.00946 0.80 0.000821322 0.000757841 0.0486987 0.0449793 28 2596 19 6.55708e+06 253155 500653. 1732.36 3.01 0.240619 0.209674 21310 115450 -1 2292 19 1093 3331 217494 47871 6.63164 6.63164 -138.214 -6.63164 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.032622 0.0288071 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.29 17768 12 0.27 -1 -1 32664 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 16.2 MiB 0.24 1279 5474 1033 4128 313 54.7 MiB 0.09 0.00 6.7577 -128.343 -6.7577 6.7577 0.82 0.00100753 0.000932131 0.0309157 0.0286555 30 3450 25 6.55708e+06 373705 526063. 1820.29 1.86 0.165358 0.145269 21886 126133 -1 2922 36 1329 4674 608592 271973 5.94258 5.94258 -125.513 -5.94258 0 0 666494. 2306.21 0.23 0.23 0.13 -1 -1 0.23 0.0656742 0.0573929 191 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.16 17652 13 0.33 -1 -1 32668 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 16.7 MiB 0.53 1641 6757 1409 4886 462 55.3 MiB 0.11 0.00 8.4108 -177.204 -8.4108 8.4108 0.85 0.00114083 0.00105424 0.0379068 0.0350432 28 5055 43 6.55708e+06 397815 500653. 1732.36 11.75 0.403609 0.351837 21310 115450 -1 4036 58 1957 5520 1027903 442188 7.49096 7.49096 -175.291 -7.49096 0 0 612192. 2118.31 0.21 0.40 0.12 -1 -1 0.21 0.114794 0.100239 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17616 12 0.23 -1 -1 32936 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 16.2 MiB 0.39 1388 15645 4295 9025 2325 54.8 MiB 0.20 0.00 7.61066 -152.509 -7.61066 7.61066 0.84 0.000759349 0.000686701 0.0691713 0.0629579 34 3849 45 6.55708e+06 385760 585099. 2024.56 4.84 0.412425 0.358996 22462 138074 -1 3075 18 1337 4050 287225 60488 6.46964 6.46964 -143.99 -6.46964 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0389844 0.0345546 200 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.24 17640 12 0.15 -1 -1 32572 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55552 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 15.8 MiB 0.48 1058 4842 1062 3260 520 54.2 MiB 0.07 0.00 6.82123 -141.643 -6.82123 6.82123 0.84 0.000580894 0.000527945 0.0190119 0.017413 28 2811 22 6.55708e+06 241100 500653. 1732.36 8.04 0.214564 0.185966 21310 115450 -1 2480 23 915 2670 299066 108458 6.18098 6.18098 -141.314 -6.18098 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0350044 0.0307789 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.25 17664 12 0.21 -1 -1 32552 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55700 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 15.9 MiB 0.26 1176 10455 2348 6392 1715 54.4 MiB 0.13 0.00 7.13387 -142.33 -7.13387 7.13387 0.76 0.000875234 0.000800882 0.0505455 0.046709 28 3425 28 6.55708e+06 289320 500653. 1732.36 1.68 0.171298 0.151493 21310 115450 -1 2767 18 1094 3319 205347 46242 6.18298 6.18298 -138.064 -6.18298 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0330371 0.0292546 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.26 17568 11 0.19 -1 -1 32760 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 16.2 MiB 0.15 1196 13547 4241 6931 2375 54.8 MiB 0.17 0.00 6.85121 -131.802 -6.85121 6.85121 0.77 0.0009606 0.000888062 0.066856 0.0617984 36 3367 29 6.55708e+06 361650 612192. 2118.31 3.54 0.279566 0.245181 22750 144809 -1 2664 15 1174 3683 226718 49964 6.03324 6.03324 -125.968 -6.03324 0 0 782063. 2706.10 0.27 0.09 0.15 -1 -1 0.27 0.0328141 0.0291524 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.24 17680 11 0.20 -1 -1 32672 -1 -1 27 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55900 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 16.0 MiB 0.15 1080 10647 2769 6876 1002 54.6 MiB 0.13 0.00 6.62889 -122.091 -6.62889 6.62889 0.77 0.000896615 0.000829705 0.0536159 0.0495545 34 2821 25 6.55708e+06 325485 585099. 2024.56 2.30 0.244214 0.213902 22462 138074 -1 2518 18 1076 3605 242853 51517 5.95726 5.95726 -117.922 -5.95726 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0345617 0.0305475 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.13 17816 13 0.20 -1 -1 32816 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55792 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 16.0 MiB 0.27 1040 5271 1036 3997 238 54.5 MiB 0.07 0.00 7.2482 -136.339 -7.2482 7.2482 0.77 0.000840293 0.000776592 0.0263066 0.0243322 34 2823 31 6.55708e+06 301375 585099. 2024.56 2.23 0.175432 0.15334 22462 138074 -1 2301 18 922 2793 178174 39082 6.67144 6.67144 -135.989 -6.67144 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0317059 0.0281101 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.25 17616 12 0.21 -1 -1 32680 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55840 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 16.1 MiB 0.28 1203 11270 2888 6672 1710 54.5 MiB 0.14 0.00 7.39203 -156.297 -7.39203 7.39203 0.76 0.000938864 0.000867077 0.0548002 0.0506476 36 2927 15 6.55708e+06 337540 612192. 2118.31 3.69 0.305515 0.266872 22750 144809 -1 2455 16 1096 3084 188642 43052 6.0821 6.0821 -140.726 -6.0821 0 0 782063. 2706.10 0.28 0.08 0.14 -1 -1 0.28 0.0327878 0.0290926 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17388 13 0.28 -1 -1 32796 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1314 8130 1959 5459 712 54.8 MiB 0.12 0.00 8.02027 -155.447 -8.02027 8.02027 0.79 0.000997373 0.00092154 0.0446344 0.0412885 30 3068 42 6.55708e+06 325485 526063. 1820.29 1.35 0.19823 0.174159 21886 126133 -1 2544 14 999 2954 170537 37023 6.97036 6.97036 -145.255 -6.97036 0 0 666494. 2306.21 0.23 0.08 0.12 -1 -1 0.23 0.0316662 0.028203 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.24 18208 14 0.30 -1 -1 32776 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 16.3 MiB 0.24 1224 14168 3595 8187 2386 54.8 MiB 0.18 0.00 8.42547 -164.88 -8.42547 8.42547 0.77 0.00102158 0.000944282 0.0741125 0.0683797 26 3996 49 6.55708e+06 337540 477104. 1650.88 3.01 0.250141 0.221038 21022 109990 -1 3152 20 1367 3841 293142 66365 7.66262 7.66262 -167.887 -7.66262 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0424032 0.037484 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18028 14 0.26 -1 -1 32840 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1263 9791 2392 5641 1758 54.8 MiB 0.13 0.00 7.61341 -152.493 -7.61341 7.61341 0.77 0.000962996 0.000889773 0.0518211 0.0479273 30 3127 19 6.55708e+06 301375 526063. 1820.29 1.46 0.170013 0.150352 21886 126133 -1 2591 15 1107 3283 199524 43164 6.54724 6.54724 -143.895 -6.54724 0 0 666494. 2306.21 0.23 0.08 0.12 -1 -1 0.23 0.0318681 0.0282915 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.26 18116 13 0.35 -1 -1 32688 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1335 6813 1455 4737 621 55.0 MiB 0.10 0.00 7.97606 -158.638 -7.97606 7.97606 0.77 0.00106769 0.000986621 0.0385962 0.0356998 30 3616 21 6.55708e+06 349595 526063. 1820.29 3.73 0.335293 0.291719 21886 126133 -1 2923 30 1636 5311 525544 199055 6.97036 6.97036 -150.359 -6.97036 0 0 666494. 2306.21 0.23 0.20 0.13 -1 -1 0.23 0.0605475 0.0531885 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.22 17400 13 0.19 -1 -1 32364 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55720 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 15.9 MiB 0.48 1181 4811 970 3437 404 54.4 MiB 0.07 0.00 7.32681 -149.503 -7.32681 7.32681 0.77 0.000837904 0.000771274 0.0244194 0.0225557 26 3368 40 6.55708e+06 289320 477104. 1650.88 5.52 0.256339 0.222627 21022 109990 -1 2758 18 1249 3270 238881 53595 6.50744 6.50744 -148.896 -6.50744 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0317478 0.0280816 147 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.28 18084 13 0.41 -1 -1 32884 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1409 6058 1135 4495 428 55.0 MiB 0.10 0.00 8.2444 -163.721 -8.2444 8.2444 0.76 0.0010653 0.000985209 0.035706 0.0330796 36 3353 18 6.55708e+06 385760 612192. 2118.31 3.40 0.248094 0.218728 22750 144809 -1 3022 16 1375 3907 259776 55993 7.28976 7.28976 -154.724 -7.28976 0 0 782063. 2706.10 0.37 0.10 0.15 -1 -1 0.37 0.0392249 0.0350867 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.27 17648 14 0.30 -1 -1 32728 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55960 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 16.2 MiB 0.43 1264 7231 1520 5560 151 54.6 MiB 0.11 0.00 8.00109 -166.402 -8.00109 8.00109 0.76 0.000993233 0.00091465 0.0399917 0.0369258 30 3454 43 6.55708e+06 325485 526063. 1820.29 1.82 0.191625 0.167767 21886 126133 -1 2830 16 1236 4070 235392 51684 7.0005 7.0005 -159.939 -7.0005 0 0 666494. 2306.21 0.25 0.10 0.12 -1 -1 0.25 0.0369126 0.0329817 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17784 13 0.22 -1 -1 32800 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1305 14323 3915 8229 2179 54.8 MiB 0.18 0.00 7.86768 -158.537 -7.86768 7.86768 0.76 0.000970253 0.00089848 0.0747887 0.0692361 38 3113 23 6.55708e+06 301375 638502. 2209.35 2.63 0.274897 0.242224 23326 155178 -1 2612 14 1050 3203 206966 42192 7.01838 7.01838 -151.342 -7.01838 0 0 851065. 2944.86 0.27 0.09 0.15 -1 -1 0.27 0.031252 0.0278483 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.28 18088 13 0.21 -1 -1 32728 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55948 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 16.0 MiB 0.36 1164 9989 2471 5804 1714 54.6 MiB 0.14 0.00 7.4808 -136.781 -7.4808 7.4808 0.77 0.00094578 0.000874864 0.0523309 0.0483589 36 3098 16 6.55708e+06 325485 612192. 2118.31 4.53 0.361378 0.314532 22750 144809 -1 2629 16 1257 3780 247946 54103 6.6047 6.6047 -133.533 -6.6047 0 0 782063. 2706.10 0.28 0.10 0.14 -1 -1 0.28 0.0348971 0.0311018 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17812 14 0.35 -1 -1 32864 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 16.4 MiB 0.34 1476 8091 1866 5495 730 55.2 MiB 0.12 0.00 7.88885 -165.953 -7.88885 7.88885 0.77 0.00110896 0.00102499 0.0425686 0.0394032 28 4340 34 6.55708e+06 446035 500653. 1732.36 7.43 0.339868 0.297041 21310 115450 -1 3570 32 2202 6795 628220 202187 6.98824 6.98824 -163.228 -6.98824 0 0 612192. 2118.31 0.22 0.23 0.12 -1 -1 0.22 0.0660018 0.0585678 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.27 17840 11 0.27 -1 -1 32688 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 16.4 MiB 0.40 1160 8130 1856 5819 455 54.8 MiB 0.11 0.00 6.86478 -134.007 -6.86478 6.86478 0.77 0.000970896 0.000895865 0.0430517 0.0397226 28 3792 47 6.55708e+06 349595 500653. 1732.36 2.73 0.205971 0.180744 21310 115450 -1 3088 19 1559 4520 315845 69631 6.22218 6.22218 -135.386 -6.22218 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0389519 0.0344384 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17280 13 0.16 -1 -1 32592 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55564 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 15.8 MiB 0.28 1142 8083 2034 5178 871 54.3 MiB 0.10 0.00 7.01052 -158.499 -7.01052 7.01052 0.78 0.00080438 0.00074373 0.0357135 0.0329976 28 3197 32 6.55708e+06 289320 500653. 1732.36 2.75 0.149323 0.131357 21310 115450 -1 2761 15 1103 2870 205190 44547 6.01958 6.01958 -154.979 -6.01958 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0264098 0.0234392 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.23 17784 14 0.23 -1 -1 32892 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 16.3 MiB 0.49 1316 5267 941 3849 477 54.8 MiB 0.08 0.00 8.08175 -166.146 -8.08175 8.08175 0.79 0.000954755 0.000883002 0.0280019 0.0258933 36 3260 50 6.55708e+06 337540 612192. 2118.31 3.62 0.253764 0.220286 22750 144809 -1 2849 19 1129 3361 242469 50390 7.1997 7.1997 -157.776 -7.1997 0 0 782063. 2706.10 0.25 0.10 0.14 -1 -1 0.25 0.0373789 0.0330302 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.27 18252 15 0.45 -1 -1 32824 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1738 9421 2028 6135 1258 55.3 MiB 0.15 0.00 9.11118 -191.695 -9.11118 9.11118 0.76 0.00118797 0.00109763 0.0550931 0.0509976 30 4786 29 6.55708e+06 397815 526063. 1820.29 2.19 0.218572 0.193032 21886 126133 -1 3874 27 1739 5356 457794 143809 7.85982 7.85982 -181.429 -7.85982 0 0 666494. 2306.21 0.23 0.18 0.13 -1 -1 0.23 0.0625786 0.0552761 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17376 11 0.16 -1 -1 32728 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55428 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 15.5 MiB 0.37 1015 8213 1831 5887 495 54.1 MiB 0.10 0.00 6.43354 -132.345 -6.43354 6.43354 0.77 0.000783876 0.000722896 0.0367508 0.0339406 28 2606 17 6.55708e+06 265210 500653. 1732.36 3.10 0.210253 0.183259 21310 115450 -1 2248 15 817 2392 162402 36217 5.46178 5.46178 -127.983 -5.46178 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0259337 0.0230305 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17452 12 0.22 -1 -1 32836 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 16.0 MiB 0.24 1181 9395 2257 5715 1423 54.6 MiB 0.12 0.00 7.12111 -149.72 -7.12111 7.12111 0.76 0.000863108 0.000796499 0.0438865 0.0405597 28 3562 31 6.55708e+06 313430 500653. 1732.36 5.93 0.296769 0.258819 21310 115450 -1 2956 16 1351 3839 275530 59469 6.25678 6.25678 -148.984 -6.25678 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.030078 0.0266715 156 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.27 17804 12 0.29 -1 -1 32768 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1374 9732 2347 6008 1377 55.0 MiB 0.14 0.00 7.22518 -156.32 -7.22518 7.22518 0.77 0.00108585 0.00100373 0.0523153 0.0483237 30 3779 48 6.55708e+06 385760 526063. 1820.29 2.07 0.234782 0.206552 21886 126133 -1 2928 17 1428 4220 246015 54621 6.2807 6.2807 -146.832 -6.2807 0 0 666494. 2306.21 0.25 0.11 0.14 -1 -1 0.25 0.0403084 0.0358446 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.27 17608 12 0.23 -1 -1 32856 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 16.4 MiB 0.30 1295 7929 1664 5456 809 54.9 MiB 0.12 0.00 7.52995 -159.234 -7.52995 7.52995 0.77 0.000980321 0.000899966 0.0423395 0.0391539 34 3597 23 6.55708e+06 313430 585099. 2024.56 2.20 0.192971 0.169061 22462 138074 -1 3042 15 1213 3696 259075 55304 6.8431 6.8431 -153.255 -6.8431 0 0 742403. 2568.87 0.26 0.09 0.14 -1 -1 0.26 0.0333329 0.0298112 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.27 18020 14 0.43 -1 -1 32920 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 16.7 MiB 0.49 1613 7655 1578 5578 499 55.2 MiB 0.13 0.00 9.00229 -179.771 -9.00229 9.00229 0.77 0.00118144 0.00108757 0.0465392 0.0430205 36 4283 33 6.55708e+06 373705 612192. 2118.31 5.43 0.314803 0.276701 22750 144809 -1 3750 15 1581 5168 352126 73835 7.89841 7.89841 -171.192 -7.89841 0 0 782063. 2706.10 0.25 0.12 0.09 -1 -1 0.25 0.0398858 0.035635 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17940 12 0.20 -1 -1 32628 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 16.0 MiB 0.40 1246 9687 2384 6348 955 54.7 MiB 0.13 0.00 7.02918 -135.408 -7.02918 7.02918 0.76 0.000908129 0.000840219 0.0502524 0.0464327 30 3093 30 6.55708e+06 301375 526063. 1820.29 3.66 0.32267 0.280534 21886 126133 -1 2601 14 952 2992 171304 37135 6.01898 6.01898 -129.144 -6.01898 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0296314 0.0263982 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.23 17552 11 0.18 -1 -1 32552 -1 -1 26 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55708 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 16.0 MiB 0.27 833 9013 2082 5123 1808 54.4 MiB 0.10 0.00 7.08055 -122.398 -7.08055 7.08055 0.76 0.000786855 0.000727039 0.0408917 0.0377973 26 2813 40 6.55708e+06 313430 477104. 1650.88 3.73 0.267408 0.232649 21022 109990 -1 2171 17 937 2761 165712 39057 6.03064 6.03064 -119.504 -6.03064 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0285235 0.025197 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.31 18348 13 0.41 -1 -1 32884 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 17.1 MiB 0.41 1984 9864 2435 6697 732 55.3 MiB 0.16 0.00 7.66038 -164.562 -7.66038 7.66038 0.76 0.00130225 0.0012032 0.0578459 0.0534482 36 5188 30 6.55708e+06 482200 612192. 2118.31 4.47 0.27703 0.243411 22750 144809 -1 4134 18 1859 6040 418294 86378 6.62764 6.62764 -156.827 -6.62764 0 0 782063. 2706.10 0.26 0.15 0.15 -1 -1 0.26 0.0520067 0.0462014 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.28 17936 14 0.25 -1 -1 33164 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.3 MiB 0.20 1315 7027 1431 4957 639 54.7 MiB 0.10 0.00 8.27869 -161.961 -8.27869 8.27869 0.76 0.000995658 0.000920803 0.0380324 0.0352165 30 3164 21 6.55708e+06 337540 526063. 1820.29 3.50 0.319079 0.277616 21886 126133 -1 2717 20 1228 3374 190005 42260 7.16956 7.16956 -152.488 -7.16956 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0406289 0.035913 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.21 17800 12 0.15 -1 -1 32484 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55724 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 15.9 MiB 0.35 1196 5395 963 4230 202 54.4 MiB 0.08 0.00 7.24055 -154.388 -7.24055 7.24055 0.77 0.000825436 0.0007617 0.0249829 0.0231189 28 2993 38 6.55708e+06 325485 500653. 1732.36 5.06 0.247538 0.214845 21310 115450 -1 2606 20 1043 2890 276023 83400 6.19064 6.19064 -146.431 -6.19064 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0339723 0.0300235 145 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.25 17724 13 0.27 -1 -1 32824 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55932 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 16.0 MiB 0.39 1201 6321 1371 4614 336 54.6 MiB 0.09 0.00 7.64034 -157.02 -7.64034 7.64034 0.81 0.000829424 0.000745973 0.0329533 0.0304048 30 3239 27 6.55708e+06 313430 526063. 1820.29 1.45 0.166763 0.146556 21886 126133 -1 2588 16 1130 3396 196248 42669 6.6419 6.6419 -146.146 -6.6419 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0338772 0.0301208 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.27 18032 13 0.31 -1 -1 32988 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 16.7 MiB 0.26 1537 8423 1899 6115 409 55.2 MiB 0.13 0.00 7.71709 -159.898 -7.71709 7.71709 0.76 0.00112546 0.00103971 0.0467505 0.0432169 36 4093 31 6.55708e+06 421925 612192. 2118.31 3.25 0.29141 0.255521 22750 144809 -1 3395 17 1591 4790 312816 69074 6.7601 6.7601 -150.455 -6.7601 0 0 782063. 2706.10 0.26 0.12 0.14 -1 -1 0.26 0.0413583 0.0367709 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.26 17804 11 0.24 -1 -1 32756 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1421 8703 2291 5674 738 54.9 MiB 0.12 0.00 6.43018 -129.379 -6.43018 6.43018 0.76 0.00102909 0.000951972 0.0462748 0.0428257 40 3001 24 6.55708e+06 373705 666494. 2306.21 4.90 0.356035 0.310586 23614 160646 -1 2974 15 1197 4141 296225 60365 5.62318 5.62318 -121.676 -5.62318 0 0 872365. 3018.56 0.28 0.10 0.16 -1 -1 0.28 0.0349424 0.0311931 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 17728 15 0.33 -1 -1 32720 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 16.4 MiB 0.46 1495 8283 1832 5858 593 55.0 MiB 0.13 0.00 9.21891 -185.491 -9.21891 9.21891 0.78 0.00105795 0.000976715 0.0463133 0.0428196 36 3629 25 6.55708e+06 349595 612192. 2118.31 2.06 0.237376 0.208276 22750 144809 -1 3145 15 1242 3969 246033 52639 8.05581 8.05581 -173.206 -8.05581 0 0 782063. 2706.10 0.27 0.11 0.15 -1 -1 0.27 0.0388671 0.0348013 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.28 18072 13 0.31 -1 -1 32756 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 16.2 MiB 0.41 1391 6271 1140 4757 374 54.8 MiB 0.10 0.00 8.07023 -173.04 -8.07023 8.07023 0.77 0.00103057 0.000952423 0.0345129 0.0319456 30 3630 21 6.55708e+06 361650 526063. 1820.29 1.55 0.166045 0.146111 21886 126133 -1 2799 15 1183 3641 199500 43520 7.10844 7.10844 -158.375 -7.10844 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0348435 0.0310295 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.23 17636 12 0.19 -1 -1 32628 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 15.8 MiB 0.42 1116 9738 2558 6406 774 54.4 MiB 0.12 0.00 7.61081 -154.169 -7.61081 7.61081 0.76 0.00084993 0.000785824 0.0444997 0.0411203 28 3426 49 6.55708e+06 349595 500653. 1732.36 7.29 0.287761 0.251739 21310 115450 -1 2754 16 1368 3692 243882 53409 6.5609 6.5609 -147.08 -6.5609 0 0 612192. 2118.31 0.31 0.09 0.13 -1 -1 0.31 0.0304782 0.0271796 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.25 17804 11 0.15 -1 -1 32676 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 15.9 MiB 0.21 1023 14221 4533 7413 2275 54.4 MiB 0.16 0.00 6.85492 -138.928 -6.85492 6.85492 0.77 0.00080621 0.000743424 0.0653552 0.0602265 30 2930 42 6.55708e+06 253155 526063. 1820.29 1.40 0.191054 0.168794 21886 126133 -1 2272 16 1010 2648 158319 35228 6.10198 6.10198 -136.908 -6.10198 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0277642 0.0245955 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.27 17588 13 0.31 -1 -1 32788 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 16.2 MiB 0.46 1413 7544 1727 4833 984 54.8 MiB 0.11 0.00 7.87899 -160.785 -7.87899 7.87899 0.76 0.000957142 0.000878103 0.0418682 0.0387176 36 3790 32 6.55708e+06 349595 612192. 2118.31 3.33 0.26763 0.233174 22750 144809 -1 3125 19 1393 4393 303298 63499 6.7993 6.7993 -152.763 -6.7993 0 0 782063. 2706.10 0.25 0.11 0.14 -1 -1 0.25 0.0411044 0.0364077 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.14 17460 10 0.20 -1 -1 32712 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55548 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 15.8 MiB 0.18 868 12919 4781 6181 1957 54.2 MiB 0.15 0.00 5.78714 -114.742 -5.78714 5.78714 0.76 0.000777303 0.000716986 0.0577241 0.0532563 34 2470 50 6.55708e+06 289320 585099. 2024.56 2.17 0.214464 0.188326 22462 138074 -1 1935 15 911 2794 179000 41152 5.29412 5.29412 -110.78 -5.29412 0 0 742403. 2568.87 0.22 0.04 0.09 -1 -1 0.22 0.0142756 0.0128895 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17648 14 0.19 -1 -1 32644 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 16.0 MiB 0.49 1127 8083 1934 5578 571 54.5 MiB 0.11 0.00 7.89252 -162.804 -7.89252 7.89252 0.90 0.000851279 0.00077954 0.0385098 0.0355103 28 3256 30 6.55708e+06 289320 500653. 1732.36 7.30 0.291356 0.253265 21310 115450 -1 2737 54 1406 4279 758399 408959 7.54663 7.54663 -173.635 -7.54663 0 0 612192. 2118.31 0.21 0.31 0.12 -1 -1 0.21 0.0791408 0.0689162 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.28 17908 13 0.26 -1 -1 32796 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 16.2 MiB 0.31 1259 5343 1011 3807 525 54.6 MiB 0.08 0.00 7.51815 -158.387 -7.51815 7.51815 0.77 0.000957283 0.000886109 0.0278983 0.0258651 28 4167 47 6.55708e+06 361650 500653. 1732.36 9.75 0.308787 0.26846 21310 115450 -1 3217 32 1909 5802 618583 179366 6.90984 6.90984 -164.55 -6.90984 0 0 612192. 2118.31 0.21 0.21 0.12 -1 -1 0.21 0.0561366 0.0490595 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.24 17680 12 0.15 -1 -1 32744 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 15.9 MiB 0.31 1126 6425 1245 4721 459 54.4 MiB 0.08 0.00 6.61153 -138.873 -6.61153 6.61153 0.76 0.000783666 0.00072345 0.0285058 0.0263254 28 2952 49 6.55708e+06 313430 500653. 1732.36 3.50 0.285736 0.248251 21310 115450 -1 2480 19 1002 2687 179971 39952 5.84992 5.84992 -135.976 -5.84992 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0312698 0.0276753 138 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.26 17724 12 0.20 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1378 9336 2424 5781 1131 54.8 MiB 0.13 0.00 6.98257 -148.375 -6.98257 6.98257 0.77 0.00100735 0.00093027 0.051796 0.047842 28 4032 47 6.55708e+06 313430 500653. 1732.36 3.63 0.221428 0.194725 21310 115450 -1 3404 59 2269 9727 1442664 630702 6.27364 6.27364 -149.385 -6.27364 0 0 612192. 2118.31 0.21 0.43 0.14 -1 -1 0.21 0.0857584 0.0750464 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.29 18052 13 0.28 -1 -1 32776 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 16.3 MiB 0.44 1315 8372 1899 5332 1141 54.8 MiB 0.12 0.00 7.89081 -157.415 -7.89081 7.89081 0.76 0.00102642 0.000942731 0.0454524 0.0420606 34 3815 32 6.55708e+06 349595 585099. 2024.56 3.81 0.341817 0.297531 22462 138074 -1 3093 15 1250 3818 259898 56129 6.9587 6.9587 -152.888 -6.9587 0 0 742403. 2568.87 0.31 0.11 0.13 -1 -1 0.31 0.0377937 0.0341178 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.24 17388 11 0.17 -1 -1 32608 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55568 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 15.8 MiB 0.23 1172 8405 1842 5723 840 54.3 MiB 0.11 0.00 6.25963 -142.54 -6.25963 6.25963 0.78 0.000835636 0.000761279 0.0385444 0.0356087 28 3073 20 6.55708e+06 301375 500653. 1732.36 1.20 0.139297 0.122997 21310 115450 -1 2664 14 1131 3062 212948 46443 5.57032 5.57032 -137.998 -5.57032 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0263276 0.0234293 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.24 17640 13 0.21 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 15.8 MiB 0.28 1201 7888 1972 5242 674 54.4 MiB 0.12 0.00 7.53481 -156.077 -7.53481 7.53481 0.77 0.00112391 0.00103584 0.043625 0.0403991 34 3242 33 6.55708e+06 289320 585099. 2024.56 2.89 0.222155 0.194572 22462 138074 -1 2877 16 1211 3490 243388 53393 6.66944 6.66944 -148.41 -6.66944 0 0 742403. 2568.87 0.28 0.10 0.14 -1 -1 0.28 0.033038 0.0293553 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.26 17608 13 0.25 -1 -1 32812 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 16.3 MiB 0.63 1318 8165 2007 5452 706 54.8 MiB 0.12 0.00 7.90343 -168.183 -7.90343 7.90343 0.76 0.00115908 0.00105261 0.0440366 0.0406882 28 3970 28 6.55708e+06 337540 500653. 1732.36 6.27 0.275414 0.241348 21310 115450 -1 3208 17 1516 4107 297089 65138 7.0005 7.0005 -163.012 -7.0005 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0370687 0.0328973 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.27 17728 11 0.19 -1 -1 32568 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55856 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 16.0 MiB 0.19 1119 12568 3466 6955 2147 54.5 MiB 0.15 0.00 6.27069 -123.259 -6.27069 6.27069 0.76 0.000884093 0.000815713 0.060604 0.0559511 30 2935 21 6.55708e+06 325485 526063. 1820.29 1.26 0.170404 0.150939 21886 126133 -1 2411 14 1001 2976 188340 40356 5.50298 5.50298 -119.827 -5.50298 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0289185 0.0257856 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.27 18476 14 0.31 -1 -1 33412 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 16.6 MiB 0.33 1606 6711 1323 5111 277 55.0 MiB 0.11 0.00 8.36721 -183.374 -8.36721 8.36721 0.77 0.00114347 0.00105625 0.0377935 0.034976 38 3726 19 6.55708e+06 421925 638502. 2209.35 4.84 0.424133 0.368999 23326 155178 -1 3185 16 1378 4337 255001 53870 7.2389 7.2389 -167.665 -7.2389 0 0 851065. 2944.86 0.31 0.11 0.17 -1 -1 0.31 0.0415163 0.0371027 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.21 17272 12 0.15 -1 -1 32696 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55560 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 15.8 MiB 0.26 1117 4987 873 3940 174 54.3 MiB 0.07 0.00 6.95154 -148.876 -6.95154 6.95154 0.76 0.000786561 0.00072585 0.0226556 0.0209489 38 2516 15 6.55708e+06 337540 638502. 2209.35 3.93 0.200312 0.174263 23326 155178 -1 2216 13 879 2347 142957 30755 5.97978 5.97978 -136.726 -5.97978 0 0 851065. 2944.86 0.27 0.07 0.15 -1 -1 0.27 0.0247074 0.0220928 138 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18364 13 0.28 -1 -1 32688 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 16.3 MiB 0.38 1370 8603 2025 5470 1108 54.8 MiB 0.13 0.00 7.91043 -160.998 -7.91043 7.91043 0.76 0.000846336 0.000768381 0.0476674 0.0440579 36 3418 18 6.55708e+06 301375 612192. 2118.31 4.79 0.391853 0.34236 22750 144809 -1 2949 18 1257 3976 251333 53693 6.6393 6.6393 -147.171 -6.6393 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0391225 0.0346989 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.25 17836 13 0.18 -1 -1 32520 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55672 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 15.9 MiB 0.32 1056 8130 1788 5768 574 54.4 MiB 0.11 0.00 7.50778 -157.173 -7.50778 7.50778 0.77 0.000840552 0.000774374 0.0370781 0.0341746 28 3093 39 6.55708e+06 313430 500653. 1732.36 6.07 0.258483 0.2253 21310 115450 -1 2607 17 1178 3193 208622 47484 6.6419 6.6419 -154.137 -6.6419 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0300857 0.0266646 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.27 17724 12 0.21 -1 -1 32752 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 16.0 MiB 0.24 1163 6723 1513 4783 427 54.7 MiB 0.10 0.00 6.89912 -149.425 -6.89912 6.89912 0.77 0.000990115 0.000915854 0.037203 0.0344209 36 2903 29 6.55708e+06 313430 612192. 2118.31 4.12 0.383563 0.333293 22750 144809 -1 2532 14 1065 3266 195192 42981 6.23184 6.23184 -144.415 -6.23184 0 0 782063. 2706.10 0.26 0.09 0.14 -1 -1 0.26 0.0329943 0.0293403 176 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.16 18356 15 0.47 -1 -1 33220 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 16.8 MiB 0.26 1744 7060 1356 4899 805 55.2 MiB 0.12 0.00 8.47263 -171.112 -8.47263 8.47263 0.77 0.00126637 0.00117029 0.0436216 0.0403654 34 5204 46 6.55708e+06 433980 585099. 2024.56 7.39 0.49772 0.434695 22462 138074 -1 4243 20 2158 7167 529539 109270 7.49096 7.49096 -167.785 -7.49096 0 0 742403. 2568.87 0.25 0.17 0.14 -1 -1 0.25 0.0547475 0.0486133 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.21 17312 10 0.11 -1 -1 32288 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55176 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 15.4 MiB 0.12 585 9368 2413 5125 1830 53.9 MiB 0.09 0.00 5.46394 -116.249 -5.46394 5.46394 0.76 0.000614962 0.000567782 0.0357427 0.0330088 34 1920 45 6.55708e+06 216990 585099. 2024.56 1.77 0.1795 0.155993 22462 138074 -1 1463 19 711 1661 124699 39257 5.08126 5.08126 -119.154 -5.08126 0 0 742403. 2568.87 0.25 0.07 0.14 -1 -1 0.25 0.0238369 0.0209297 90 84 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.25 17340 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55732 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 15.9 MiB 0.17 1072 8919 2278 5395 1246 54.4 MiB 0.11 0.00 7.24406 -148.604 -7.24406 7.24406 0.77 0.000823859 0.000761988 0.0412403 0.0381504 36 2526 27 6.55708e+06 301375 612192. 2118.31 1.89 0.215164 0.188243 22750 144809 -1 2335 17 912 2575 175739 37484 6.41738 6.41738 -142.708 -6.41738 0 0 782063. 2706.10 0.26 0.08 0.15 -1 -1 0.26 0.0299496 0.0265867 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.25 17396 12 0.20 -1 -1 32612 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 15.9 MiB 0.26 1142 5938 1144 4647 147 54.6 MiB 0.09 0.00 7.66077 -153.727 -7.66077 7.66077 0.78 0.000928905 0.000859118 0.031932 0.0295537 28 3628 41 6.55708e+06 289320 500653. 1732.36 1.73 0.177337 0.155169 21310 115450 -1 2912 23 1518 4174 322873 84612 7.18944 7.18944 -159.062 -7.18944 0 0 612192. 2118.31 0.21 0.13 0.12 -1 -1 0.21 0.0427002 0.0375249 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17280 9 0.13 -1 -1 32504 -1 -1 22 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55336 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 15.5 MiB 0.17 820 8191 2009 5395 787 54.0 MiB 0.09 0.00 5.29417 -99.0147 -5.29417 5.29417 0.71 0.00066591 0.000615713 0.034961 0.0323471 28 2308 25 6.55708e+06 265210 500653. 1732.36 1.10 0.12054 0.105947 21310 115450 -1 1932 18 785 2178 133992 30209 4.72266 4.72266 -97.6141 -4.72266 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0253673 0.0223377 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.26 17840 12 0.26 -1 -1 32792 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1501 7867 1766 5013 1088 55.1 MiB 0.12 0.00 7.24465 -156.602 -7.24465 7.24465 0.77 0.00105247 0.000972013 0.0415288 0.0384381 36 4175 37 6.55708e+06 397815 612192. 2118.31 4.38 0.291173 0.254878 22750 144809 -1 3350 16 1474 4135 290389 62058 6.4035 6.4035 -150.788 -6.4035 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0364601 0.0324036 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.28 18196 13 0.34 -1 -1 32740 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 16.4 MiB 0.30 1408 5343 959 3971 413 55.1 MiB 0.09 0.00 8.27458 -166.489 -8.27458 8.27458 0.76 0.00105397 0.000974496 0.0327611 0.0303198 30 3486 45 6.55708e+06 361650 526063. 1820.29 1.61 0.204894 0.17961 21886 126133 -1 3007 23 1388 4410 289765 85521 7.2801 7.2801 -158.739 -7.2801 0 0 666494. 2306.21 0.23 0.12 0.13 -1 -1 0.23 0.0481446 0.0424488 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.18 17640 1 0.03 -1 -1 30152 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1124 13017 3784 8461 772 54.9 MiB 0.20 0.00 5.44269 -161.211 -5.44269 5.44269 0.78 0.000771963 0.00071519 0.0490788 0.0454548 32 2550 23 6.64007e+06 401856 554710. 1919.41 1.01 0.14271 0.126276 22834 132086 -1 2172 18 1212 1884 164997 35561 4.29988 4.29988 -143.672 -4.29988 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0285056 0.0251436 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30392 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1017 14639 5117 7505 2017 55.1 MiB 0.23 0.00 4.98742 -150.865 -4.98742 4.98742 0.80 0.000767435 0.000709113 0.0602722 0.0557145 32 2375 21 6.64007e+06 301392 554710. 1919.41 1.01 0.151381 0.134258 22834 132086 -1 2047 19 1527 2279 201948 43748 4.10369 4.10369 -142.541 -4.10369 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0296717 0.0261265 139 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30272 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.1 MiB 0.23 982 7575 1808 5319 448 54.7 MiB 0.13 0.00 4.35696 -123.732 -4.35696 4.35696 0.92 0.000689179 0.00063762 0.0293983 0.0272228 26 2577 25 6.64007e+06 288834 477104. 1650.88 1.41 0.121274 0.106587 21682 110474 -1 2177 17 1235 1719 152604 32598 3.81383 3.81383 -127.345 -3.81383 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0242698 0.0213771 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.21 17800 1 0.03 -1 -1 30448 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.2 MiB 0.07 985 10228 2796 6251 1181 54.7 MiB 0.15 0.00 4.65835 -126.219 -4.65835 4.65835 0.77 0.000692197 0.000640284 0.038574 0.0357228 32 2207 22 6.64007e+06 339066 554710. 1919.41 0.97 0.114304 0.101155 22834 132086 -1 1994 22 1592 2950 265283 52876 3.77583 3.77583 -120.786 -3.77583 0 0 701300. 2426.64 0.29 0.09 0.14 -1 -1 0.29 0.0271965 0.023895 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.1 MiB 0.09 1007 9687 2297 6508 882 54.7 MiB 0.16 0.00 4.57112 -133.029 -4.57112 4.57112 0.76 0.000747223 0.000691949 0.0401282 0.0371847 30 2238 20 6.64007e+06 288834 526063. 1820.29 0.97 0.126805 0.112008 22546 126617 -1 2014 19 1192 2343 155025 33688 3.60343 3.60343 -127.177 -3.60343 0 0 666494. 2306.21 0.31 0.08 0.13 -1 -1 0.31 0.0285087 0.025049 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30348 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 16.5 MiB 0.12 1031 10673 2804 7227 642 54.9 MiB 0.17 0.00 3.47522 -121.603 -3.47522 3.47522 0.76 0.000784295 0.000725266 0.0398097 0.0368467 26 2777 27 6.64007e+06 426972 477104. 1650.88 1.37 0.138933 0.122286 21682 110474 -1 2338 20 1396 2195 197847 43441 3.32777 3.32777 -125.918 -3.32777 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0283205 0.0249207 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30628 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 15.8 MiB 0.11 589 11532 3345 7374 813 54.4 MiB 0.14 0.00 4.00878 -100.807 -4.00878 4.00878 0.77 0.00060163 0.000557016 0.0441794 0.0408923 32 1466 22 6.64007e+06 238602 554710. 1919.41 0.92 0.116424 0.10267 22834 132086 -1 1231 17 805 1337 106071 24416 2.72777 2.72777 -90.0797 -2.72777 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0211907 0.0185223 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17140 1 0.03 -1 -1 30076 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55772 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.0 MiB 0.08 892 10318 2381 7361 576 54.5 MiB 0.15 0.00 3.4251 -99.9264 -3.4251 3.4251 0.77 0.000653564 0.000604586 0.0337302 0.0312019 28 2021 22 6.64007e+06 389298 500653. 1732.36 0.94 0.112207 0.0987525 21970 115934 -1 1834 17 990 1745 128616 28196 2.77597 2.77597 -98.1348 -2.77597 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0227383 0.019952 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17652 1 0.03 -1 -1 30292 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56000 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 16.2 MiB 0.21 960 9623 2754 6116 753 54.7 MiB 0.14 0.00 3.62801 -120.96 -3.62801 3.62801 0.76 0.000689464 0.000637471 0.0394163 0.0365165 28 2146 20 6.64007e+06 251160 500653. 1732.36 0.95 0.120783 0.106462 21970 115934 -1 1941 17 1044 1501 123286 27361 3.02763 3.02763 -117.434 -3.02763 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0244085 0.0214669 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.11 17256 1 0.03 -1 -1 30048 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.2 MiB 0.18 841 12506 4273 6237 1996 54.7 MiB 0.17 0.00 3.87558 -126.558 -3.87558 3.87558 0.77 0.00067923 0.000626854 0.0507412 0.0469777 28 1958 17 6.64007e+06 213486 500653. 1732.36 0.96 0.127351 0.112916 21970 115934 -1 1869 15 1067 1685 150058 32012 2.97697 2.97697 -120.246 -2.97697 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0218457 0.0192708 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.20 17544 1 0.03 -1 -1 30192 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 15.9 MiB 0.16 796 12078 3517 6936 1625 54.6 MiB 0.15 0.00 4.09995 -113.228 -4.09995 4.09995 0.76 0.000668637 0.000618661 0.0500118 0.0463071 32 1623 18 6.64007e+06 213486 554710. 1919.41 0.90 0.125749 0.111407 22834 132086 -1 1529 16 712 1116 92863 19394 2.79276 2.79276 -103.097 -2.79276 0 0 701300. 2426.64 0.24 0.05 0.13 -1 -1 0.24 0.0220819 0.019356 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17260 1 0.03 -1 -1 30172 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 16.1 MiB 0.27 811 8448 2011 5971 466 54.5 MiB 0.12 0.00 3.76138 -119.223 -3.76138 3.76138 0.77 0.000641863 0.000594243 0.0327725 0.0303192 32 1944 19 6.64007e+06 226044 554710. 1919.41 0.92 0.108253 0.0953799 22834 132086 -1 1745 18 967 1299 113827 24663 3.01937 3.01937 -112.241 -3.01937 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0234275 0.02057 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30212 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1094 10228 2675 6918 635 55.0 MiB 0.18 0.00 4.45106 -144.281 -4.45106 4.45106 0.77 0.000763116 0.000706973 0.0429728 0.039868 28 2628 20 6.64007e+06 301392 500653. 1732.36 0.98 0.132352 0.117161 21970 115934 -1 2363 18 1454 2162 180559 38789 3.51177 3.51177 -134.568 -3.51177 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0279014 0.0245458 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.2 MiB 0.17 940 8735 2013 6355 367 54.9 MiB 0.15 0.00 5.05578 -142.31 -5.05578 5.05578 0.76 0.000802986 0.000744267 0.0354271 0.0328931 26 2666 23 6.64007e+06 389298 477104. 1650.88 1.38 0.132034 0.11646 21682 110474 -1 2278 17 1396 2314 208312 43981 3.98282 3.98282 -140.561 -3.98282 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0268378 0.0236158 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30456 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55584 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 15.8 MiB 0.11 637 6668 1590 4651 427 54.3 MiB 0.09 0.00 3.28519 -90.5035 -3.28519 3.28519 0.76 0.000593809 0.000549559 0.0241147 0.0223337 28 1644 21 6.64007e+06 263718 500653. 1732.36 0.88 0.0936188 0.0818763 21970 115934 -1 1513 16 792 1313 101726 22731 2.87117 2.87117 -92.2316 -2.87117 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0195118 0.0170882 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 16.2 MiB 0.16 961 6890 1523 4904 463 54.8 MiB 0.13 0.00 4.06512 -124.686 -4.06512 4.06512 0.76 0.000787367 0.000727987 0.0313741 0.0290808 32 2340 17 6.64007e+06 276276 554710. 1919.41 0.98 0.120857 0.10649 22834 132086 -1 2039 22 1441 2590 227119 48157 3.13317 3.13317 -116.667 -3.13317 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0336537 0.0294518 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.16 17700 1 0.03 -1 -1 30020 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1114 15447 4373 9239 1835 54.9 MiB 0.23 0.00 4.49004 -144.522 -4.49004 4.49004 0.76 0.000741545 0.00068612 0.0627745 0.0581076 30 2390 20 6.64007e+06 288834 526063. 1820.29 0.93 0.150731 0.134113 22546 126617 -1 1950 18 1125 1577 120243 24951 3.38803 3.38803 -129.694 -3.38803 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0275385 0.0242867 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.14 17760 1 0.03 -1 -1 30320 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.1 MiB 0.14 723 8493 1892 6266 335 54.6 MiB 0.13 0.00 2.85064 -99.9956 -2.85064 2.85064 0.76 0.000707706 0.000653292 0.0308837 0.0285726 26 2030 24 6.64007e+06 364182 477104. 1650.88 1.07 0.117315 0.102901 21682 110474 -1 1685 19 1040 1658 138036 31095 2.31871 2.31871 -98.4227 -2.31871 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0262765 0.0229657 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17528 1 0.02 -1 -1 30124 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55484 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.6 MiB 0.06 681 12139 4399 6260 1480 54.2 MiB 0.12 0.00 2.38033 -81.64 -2.38033 2.38033 0.82 0.00053968 0.00049809 0.0414821 0.0383149 32 1419 21 6.64007e+06 188370 554710. 1919.41 0.92 0.10196 0.0901283 22834 132086 -1 1333 20 700 1006 96941 20931 2.06331 2.06331 -84.2899 -2.06331 0 0 701300. 2426.64 0.25 0.06 0.13 -1 -1 0.25 0.0213272 0.0185432 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30540 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 16.2 MiB 0.24 706 14123 4873 6572 2678 54.7 MiB 0.17 0.00 4.95769 -142.332 -4.95769 4.95769 0.85 0.000660094 0.000609877 0.0543555 0.0502452 34 2331 41 6.64007e+06 251160 585099. 2024.56 1.93 0.172825 0.15193 23122 138558 -1 1678 19 890 1238 131309 32432 3.80983 3.80983 -131.646 -3.80983 0 0 742403. 2568.87 0.25 0.07 0.11 -1 -1 0.25 0.0254744 0.0223702 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.12 17692 1 0.03 -1 -1 30360 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.2 MiB 0.07 905 8735 1899 5951 885 54.9 MiB 0.13 0.00 4.18572 -129.145 -4.18572 4.18572 0.77 0.000761394 0.00070471 0.0330949 0.0306233 30 2128 19 6.64007e+06 389298 526063. 1820.29 0.98 0.119334 0.10508 22546 126617 -1 1803 22 1159 1811 134866 28963 3.46843 3.46843 -122.128 -3.46843 0 0 666494. 2306.21 0.26 0.07 0.14 -1 -1 0.26 0.0275085 0.0243232 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30260 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1203 12167 3358 7515 1294 55.1 MiB 0.21 0.00 4.64616 -143.706 -4.64616 4.64616 0.81 0.000798089 0.00073782 0.0467426 0.0430318 26 3134 27 6.64007e+06 313950 477104. 1650.88 2.22 0.151731 0.133843 21682 110474 -1 2630 20 1634 2552 241312 49583 4.05669 4.05669 -143.007 -4.05669 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0315351 0.0277176 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17404 1 0.02 -1 -1 30548 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55332 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 15.4 MiB 0.15 410 10636 4183 5187 1266 54.0 MiB 0.09 0.00 2.43955 -66.7065 -2.43955 2.43955 0.77 0.000464534 0.000428745 0.0324296 0.0299533 26 1174 20 6.64007e+06 226044 477104. 1650.88 0.98 0.0888932 0.0784439 21682 110474 -1 919 18 612 858 73700 19326 1.99631 1.99631 -68.342 -1.99631 0 0 585099. 2024.56 0.22 0.05 0.12 -1 -1 0.22 0.0168004 0.0146292 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.2 MiB 0.06 995 7897 1725 4978 1194 54.7 MiB 0.12 0.00 5.05066 -128.356 -5.05066 5.05066 0.77 0.000672976 0.000622841 0.0307496 0.0284963 28 2244 18 6.64007e+06 263718 500653. 1732.36 0.92 0.108194 0.0951945 21970 115934 -1 2010 16 968 1776 137020 29117 3.78882 3.78882 -124.106 -3.78882 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0229264 0.0202089 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 17004 1 0.02 -1 -1 30040 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55348 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.5 MiB 0.06 661 11200 3826 5626 1748 54.1 MiB 0.10 0.00 2.56853 -79.0193 -2.56853 2.56853 0.77 0.000459799 0.000423087 0.0329119 0.0303138 28 1296 14 6.64007e+06 175812 500653. 1732.36 0.84 0.0825455 0.0728726 21970 115934 -1 1197 18 426 474 43613 9748 2.02211 2.02211 -77.8483 -2.02211 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0166138 0.0145153 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30368 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.2 MiB 0.06 831 10318 2723 6880 715 54.7 MiB 0.15 0.00 4.58015 -125.342 -4.58015 4.58015 0.77 0.000688844 0.000637513 0.0358768 0.0332002 28 2083 19 6.64007e+06 376740 500653. 1732.36 0.92 0.116578 0.102832 21970 115934 -1 1797 19 1054 1726 131288 30343 3.53343 3.53343 -115.275 -3.53343 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0261466 0.0229287 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17268 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.2 MiB 0.06 850 7439 1494 5462 483 54.7 MiB 0.12 0.00 3.82887 -106.637 -3.82887 3.82887 0.76 0.000700385 0.000648792 0.025884 0.0239693 28 2249 21 6.64007e+06 389298 500653. 1732.36 0.95 0.10822 0.0949726 21970 115934 -1 1911 21 1256 2200 153079 36769 2.88296 2.88296 -105.593 -2.88296 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290171 0.0254535 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30376 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 16.2 MiB 0.14 906 17635 6157 8662 2816 54.8 MiB 0.25 0.00 4.78135 -133.838 -4.78135 4.78135 0.77 0.000743443 0.000681554 0.0662391 0.0612154 28 2683 40 6.64007e+06 339066 500653. 1732.36 1.46 0.177363 0.156812 21970 115934 -1 2074 22 1304 2253 192629 40359 3.56623 3.56623 -126.679 -3.56623 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0311941 0.0273318 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17320 1 0.03 -1 -1 30068 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 15.9 MiB 0.08 735 5928 1206 4471 251 54.5 MiB 0.09 0.00 3.02179 -99.7239 -3.02179 3.02179 0.76 0.000654695 0.000606494 0.0247336 0.0229345 26 2127 25 6.64007e+06 200928 477104. 1650.88 1.05 0.105486 0.0922527 21682 110474 -1 1767 20 1070 1711 140098 31087 2.80397 2.80397 -106.344 -2.80397 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.025852 0.0225805 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17288 1 0.03 -1 -1 30156 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55672 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 15.8 MiB 0.09 661 11617 2521 8405 691 54.4 MiB 0.13 0.00 3.24119 -97.0143 -3.24119 3.24119 0.77 0.000618876 0.00057246 0.0404628 0.0374287 28 1736 19 6.64007e+06 288834 500653. 1732.36 1.04 0.112185 0.0989686 21970 115934 -1 1497 16 837 1281 109010 24192 2.92317 2.92317 -99.5865 -2.92317 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0204666 0.0179469 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30064 -1 -1 23 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 15.9 MiB 0.06 583 14123 3845 8834 1444 54.4 MiB 0.15 0.00 3.43604 -94.4648 -3.43604 3.43604 0.79 0.000602663 0.000557295 0.0495191 0.0458057 28 1810 25 6.64007e+06 288834 500653. 1732.36 1.01 0.124989 0.110461 21970 115934 -1 1533 20 872 1484 107810 26926 2.70157 2.70157 -94.7151 -2.70157 0 0 612192. 2118.31 0.21 0.06 0.13 -1 -1 0.21 0.023982 0.0209374 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30340 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 15.8 MiB 0.06 702 4763 881 3747 135 54.4 MiB 0.08 0.00 3.98575 -113.461 -3.98575 3.98575 0.77 0.000627723 0.000580328 0.018531 0.0171794 26 2431 46 6.64007e+06 238602 477104. 1650.88 1.36 0.115079 0.0998834 21682 110474 -1 1806 21 1375 2211 187597 42728 3.13137 3.13137 -116.342 -3.13137 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0252591 0.0220589 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30076 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55748 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 15.8 MiB 0.06 705 6924 1381 5320 223 54.4 MiB 0.10 0.00 3.56847 -102.973 -3.56847 3.56847 0.77 0.000635997 0.000588278 0.0239399 0.0221772 26 2138 23 6.64007e+06 339066 477104. 1650.88 1.11 0.10954 0.0956655 21682 110474 -1 1650 15 903 1521 121231 27356 2.92897 2.92897 -101.966 -2.92897 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.0201321 0.017689 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.15 17652 1 0.02 -1 -1 30380 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 16.2 MiB 0.10 800 11799 3784 6073 1942 54.6 MiB 0.15 0.00 3.4791 -109.298 -3.4791 3.4791 0.77 0.000649115 0.000600362 0.0422126 0.0390693 28 1933 17 6.64007e+06 326508 500653. 1732.36 0.91 0.115364 0.10195 21970 115934 -1 1682 18 971 1397 112716 24417 2.48317 2.48317 -98.0695 -2.48317 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0234876 0.0205435 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.16 17516 1 0.03 -1 -1 30592 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 16.6 MiB 0.11 1109 16524 4269 9768 2487 55.2 MiB 0.23 0.00 4.35696 -124.032 -4.35696 4.35696 0.77 0.000800948 0.00074126 0.058645 0.0542584 32 2587 22 6.64007e+06 477204 554710. 1919.41 0.98 0.155821 0.138397 22834 132086 -1 2249 18 1220 2102 167513 35060 3.68263 3.68263 -120.104 -3.68263 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.029599 0.0261027 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.16 17668 1 0.03 -1 -1 30368 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 16.6 MiB 0.14 1062 10676 2654 7216 806 55.0 MiB 0.17 0.00 3.87558 -130.413 -3.87558 3.87558 0.81 0.000828721 0.000765445 0.0405288 0.0374622 26 2643 30 6.64007e+06 464646 477104. 1650.88 1.15 0.150674 0.132638 21682 110474 -1 2136 21 1582 2596 238300 48102 2.92737 2.92737 -119.055 -2.92737 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.033801 0.0296777 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17704 1 0.03 -1 -1 30200 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 16.1 MiB 0.25 894 10228 3268 4917 2043 54.6 MiB 0.14 0.00 4.39381 -127.308 -4.39381 4.39381 0.80 0.000648438 0.000599911 0.0396621 0.0367461 32 2023 18 6.64007e+06 238602 554710. 1919.41 0.92 0.113375 0.100174 22834 132086 -1 1772 20 1001 1397 116873 25431 3.09363 3.09363 -113.953 -3.09363 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.0252281 0.0220392 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30416 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 16.3 MiB 0.12 1026 15298 5172 7552 2574 54.9 MiB 0.22 0.00 4.30797 -133.38 -4.30797 4.30797 0.85 0.000785464 0.000726394 0.0571251 0.0525492 32 2284 23 6.64007e+06 313950 554710. 1919.41 1.01 0.153079 0.135809 22834 132086 -1 1999 20 1273 2309 187819 39170 3.01497 3.01497 -115.569 -3.01497 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0310289 0.0272529 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30264 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1296 14996 4340 8343 2313 55.1 MiB 0.25 0.00 5.87616 -177.472 -5.87616 5.87616 0.76 0.000791322 0.00073174 0.0602957 0.0558029 32 3076 21 6.64007e+06 364182 554710. 1919.41 1.05 0.155411 0.138047 22834 132086 -1 2576 19 1734 2595 225169 47218 4.76615 4.76615 -164.427 -4.76615 0 0 701300. 2426.64 0.26 0.10 0.15 -1 -1 0.26 0.0293039 0.0260916 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30420 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1150 16974 4810 10660 1504 55.1 MiB 0.26 0.00 5.08852 -153.875 -5.08852 5.08852 0.77 0.000819263 0.000757859 0.0711731 0.0658168 28 3002 21 6.64007e+06 339066 500653. 1732.36 1.09 0.168437 0.150017 21970 115934 -1 2585 20 1650 2586 239810 49614 4.41208 4.41208 -151.011 -4.41208 0 0 612192. 2118.31 0.22 0.11 0.13 -1 -1 0.22 0.0341505 0.0302533 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30456 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 16.3 MiB 0.16 1075 13513 3858 8482 1173 54.9 MiB 0.21 0.00 4.68524 -137.744 -4.68524 4.68524 0.77 0.000768348 0.000711161 0.0510149 0.0472075 30 2319 19 6.64007e+06 389298 526063. 1820.29 0.92 0.139182 0.123218 22546 126617 -1 1953 15 828 1329 83006 18733 3.23063 3.23063 -122.092 -3.23063 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0244742 0.0216663 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 16.2 MiB 0.22 975 7767 1720 5470 577 54.7 MiB 0.12 0.00 4.38513 -117.551 -4.38513 4.38513 0.76 0.000667153 0.000618108 0.0294368 0.0272749 26 2756 21 6.64007e+06 288834 477104. 1650.88 1.52 0.109394 0.0960362 21682 110474 -1 2177 19 1264 1860 168046 35620 3.71263 3.71263 -120.577 -3.71263 0 0 585099. 2024.56 0.22 0.09 0.12 -1 -1 0.22 0.0269038 0.0235375 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17964 1 0.03 -1 -1 30400 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1225 15720 4488 9844 1388 55.1 MiB 0.26 0.01 5.18355 -167.471 -5.18355 5.18355 0.77 0.000953365 0.00088395 0.0644167 0.0596889 26 3254 33 6.64007e+06 502320 477104. 1650.88 1.26 0.195354 0.172713 21682 110474 -1 2754 20 1681 2544 220010 46718 4.34089 4.34089 -158.554 -4.34089 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0373665 0.0328339 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30244 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55784 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 15.9 MiB 0.10 755 11064 4559 5783 722 54.5 MiB 0.11 0.00 3.8227 -103.618 -3.8227 3.8227 0.77 0.000614627 0.000567907 0.0390023 0.0360394 30 1707 20 6.64007e+06 263718 526063. 1820.29 0.93 0.110995 0.0977842 22546 126617 -1 1417 18 836 1343 95100 21157 2.91997 2.91997 -101.306 -2.91997 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0225946 0.0197707 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30132 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1189 14518 4594 8025 1899 55.0 MiB 0.24 0.01 5.24081 -156.256 -5.24081 5.24081 0.77 0.000748612 0.000693272 0.0581841 0.0538982 28 2921 32 6.64007e+06 313950 500653. 1732.36 1.17 0.16109 0.142849 21970 115934 -1 2430 20 1241 1747 157442 32455 4.46928 4.46928 -147.999 -4.46928 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0300517 0.0264294 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.17 17508 1 0.03 -1 -1 30300 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.2 MiB 0.14 1030 10531 2414 7661 456 54.9 MiB 0.18 0.01 4.0171 -121.213 -4.0171 4.0171 0.77 0.000758281 0.000701226 0.0383618 0.0354875 26 3141 41 6.64007e+06 414414 477104. 1650.88 2.52 0.15529 0.136193 21682 110474 -1 2278 24 1451 2764 275335 62648 3.06917 3.06917 -117.495 -3.06917 0 0 585099. 2024.56 0.20 0.11 0.12 -1 -1 0.20 0.0345053 0.0301551 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17252 1 0.03 -1 -1 30016 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.2 MiB 0.06 891 13153 4464 6066 2623 54.7 MiB 0.18 0.00 4.20356 -126.138 -4.20356 4.20356 0.77 0.000680713 0.000629638 0.0482979 0.044718 32 2099 22 6.64007e+06 301392 554710. 1919.41 0.96 0.130688 0.115704 22834 132086 -1 1739 19 1019 1895 147772 32249 3.58443 3.58443 -116.918 -3.58443 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0260574 0.0228688 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30444 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 16.6 MiB 0.28 1089 13933 3596 8128 2209 55.1 MiB 0.20 0.00 4.81394 -142.313 -4.81394 4.81394 0.76 0.000756093 0.000699466 0.0568901 0.0526632 28 2433 18 6.64007e+06 301392 500653. 1732.36 2.74 0.229502 0.201011 21970 115934 -1 2240 16 1130 1585 128561 27963 3.52543 3.52543 -129.485 -3.52543 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0256317 0.0226662 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30220 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 16.2 MiB 0.17 935 7980 1596 5688 696 54.8 MiB 0.13 0.00 3.76946 -120.7 -3.76946 3.76946 0.78 0.000777577 0.000719865 0.0313787 0.028793 30 2166 18 6.64007e+06 401856 526063. 1820.29 0.96 0.120723 0.106037 22546 126617 -1 1892 20 1014 1872 115915 26009 2.97297 2.97297 -110.413 -2.97297 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0305117 0.0268046 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.17 17632 1 0.03 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 16.6 MiB 0.12 901 8796 1803 6364 629 55.0 MiB 0.16 0.00 4.787 -140.677 -4.787 4.787 0.77 0.000808734 0.000747838 0.0336025 0.0311113 32 2374 22 6.64007e+06 464646 554710. 1919.41 0.97 0.131143 0.115456 22834 132086 -1 1947 17 1067 1566 109849 26349 3.48202 3.48202 -123.833 -3.48202 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0284533 0.0250535 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.16 17320 1 0.03 -1 -1 30368 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.1 MiB 0.06 902 12903 3419 8175 1309 54.7 MiB 0.18 0.00 4.24273 -122.494 -4.24273 4.24273 0.77 0.000702958 0.000650427 0.045521 0.0421137 32 1993 23 6.64007e+06 364182 554710. 1919.41 0.94 0.130921 0.115731 22834 132086 -1 1766 19 1117 1798 148531 31791 3.67963 3.67963 -117.81 -3.67963 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0281614 0.0246138 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.16 17876 1 0.02 -1 -1 30388 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 16.2 MiB 0.26 983 6913 1568 4936 409 55.0 MiB 0.12 0.00 5.07997 -139.694 -5.07997 5.07997 0.77 0.000730288 0.00067653 0.0280513 0.0259707 32 2325 21 6.64007e+06 301392 554710. 1919.41 0.95 0.116506 0.10263 22834 132086 -1 2028 20 1330 1914 154691 34739 3.73882 3.73882 -128.095 -3.73882 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0287845 0.0253193 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.13 17820 1 0.03 -1 -1 30260 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 16.5 MiB 0.30 1148 9058 2364 5808 886 55.2 MiB 0.16 0.00 5.0113 -149.211 -5.0113 5.0113 0.82 0.000794388 0.00073521 0.0397359 0.0367823 26 3365 45 6.64007e+06 313950 477104. 1650.88 2.45 0.16876 0.148244 21682 110474 -1 2652 21 1775 2874 255464 53663 3.83983 3.83983 -140.735 -3.83983 0 0 585099. 2024.56 0.21 0.10 0.13 -1 -1 0.21 0.0337875 0.0297865 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30224 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 16.4 MiB 0.17 977 15962 5144 8098 2720 54.8 MiB 0.28 0.00 4.21776 -130.397 -4.21776 4.21776 0.78 0.000815895 0.000754642 0.069382 0.0640063 32 2689 22 6.64007e+06 276276 554710. 1919.41 1.14 0.16954 0.150496 22834 132086 -1 2234 15 1264 2270 188583 40020 3.76882 3.76882 -127.791 -3.76882 0 0 701300. 2426.64 0.27 0.08 0.13 -1 -1 0.27 0.0262987 0.0232634 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17496 1 0.03 -1 -1 30072 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 15.9 MiB 0.06 763 11398 3223 7297 878 54.4 MiB 0.14 0.00 3.46744 -102.907 -3.46744 3.46744 0.77 0.000608134 0.000562231 0.0378053 0.0349512 26 2000 19 6.64007e+06 301392 477104. 1650.88 1.04 0.106376 0.0937479 21682 110474 -1 1712 18 739 1128 95890 20589 2.91697 2.91697 -100.816 -2.91697 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0220628 0.0193036 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 16.2 MiB 0.24 982 8969 2347 6212 410 54.8 MiB 0.15 0.00 4.05536 -139.886 -4.05536 4.05536 0.76 0.000733358 0.00067809 0.0374995 0.0346935 30 2225 19 6.64007e+06 276276 526063. 1820.29 0.98 0.118623 0.104496 22546 126617 -1 1870 19 1195 1706 124980 26064 2.95297 2.95297 -122.01 -2.95297 0 0 666494. 2306.21 0.25 0.10 0.14 -1 -1 0.25 0.0376808 0.033625 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30336 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1389 7443 1662 5262 519 54.8 MiB 0.17 0.01 5.61123 -170.011 -5.61123 5.61123 0.78 0.000837666 0.000775074 0.033003 0.0306001 28 3591 30 6.64007e+06 364182 500653. 1732.36 1.63 0.147769 0.129926 21970 115934 -1 2995 23 1956 3151 291032 60986 4.66969 4.66969 -162.725 -4.66969 0 0 612192. 2118.31 0.22 0.15 0.12 -1 -1 0.22 0.0446507 0.039974 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30388 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 16.2 MiB 0.14 962 14988 4939 7718 2331 54.8 MiB 0.21 0.00 4.60549 -136.553 -4.60549 4.60549 0.77 0.000751085 0.000694277 0.0544051 0.0503803 30 2069 19 6.64007e+06 401856 526063. 1820.29 0.94 0.142047 0.126091 22546 126617 -1 1800 19 942 1516 110249 23080 2.99716 2.99716 -115.233 -2.99716 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0290367 0.0255554 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30516 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55804 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 15.9 MiB 0.07 702 10423 3012 6489 922 54.5 MiB 0.14 0.00 3.51327 -104.848 -3.51327 3.51327 0.76 0.000646819 0.000598486 0.0363368 0.0336244 28 1759 19 6.64007e+06 326508 500653. 1732.36 0.94 0.110354 0.0972194 21970 115934 -1 1558 17 970 1537 113431 25439 2.70177 2.70177 -99.0046 -2.70177 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0225369 0.019741 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 17900 1 0.03 -1 -1 30392 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1216 15187 4686 7965 2536 55.1 MiB 0.27 0.01 6.49087 -185.665 -6.49087 6.49087 0.78 0.000901481 0.000834513 0.0708973 0.0656875 30 3342 26 6.64007e+06 339066 526063. 1820.29 1.02 0.146657 0.131169 22546 126617 -1 2518 20 1804 2589 197145 41428 5.13774 5.13774 -169.39 -5.13774 0 0 666494. 2306.21 0.27 0.10 0.13 -1 -1 0.27 0.0374075 0.033037 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30420 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 16.2 MiB 0.15 903 6979 1333 5401 245 54.8 MiB 0.12 0.00 4.64606 -138.337 -4.64606 4.64606 0.76 0.000742748 0.000687417 0.0259126 0.0240312 26 2500 22 6.64007e+06 414414 477104. 1650.88 1.14 0.115021 0.100908 21682 110474 -1 2128 19 1514 2351 189939 42004 3.78863 3.78863 -136.839 -3.78863 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0282256 0.0248005 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17276 1 0.02 -1 -1 30472 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55552 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 15.7 MiB 0.07 832 12375 4208 6622 1545 54.2 MiB 0.15 0.00 3.58247 -103.673 -3.58247 3.58247 0.77 0.000581064 0.000537336 0.0401938 0.0371634 28 1995 23 6.64007e+06 288834 500653. 1732.36 0.93 0.11048 0.0973842 21970 115934 -1 1752 16 769 1302 113847 24507 2.80577 2.80577 -102.049 -2.80577 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0194857 0.0170871 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30132 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.5 MiB 0.12 993 9098 1971 6187 940 54.9 MiB 0.13 0.00 5.56744 -134.001 -5.56744 5.56744 0.77 0.00077403 0.000715466 0.0339581 0.0314468 28 2587 23 6.64007e+06 426972 500653. 1732.36 1.37 0.131654 0.115894 21970 115934 -1 2118 20 1378 2653 199052 42950 4.64748 4.64748 -135.366 -4.64748 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0302487 0.026566 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17192 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 15.9 MiB 0.06 822 7770 1860 5212 698 54.4 MiB 0.11 0.00 3.4291 -106.218 -3.4291 3.4291 0.78 0.00060711 0.000561869 0.0278507 0.0257743 26 2049 18 6.64007e+06 251160 477104. 1650.88 0.90 0.0972704 0.0853579 21682 110474 -1 1809 19 1131 1920 173764 36505 2.97817 2.97817 -110.221 -2.97817 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.023215 0.0202647 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30256 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.2 MiB 0.13 857 12839 3557 7998 1284 54.6 MiB 0.16 0.00 4.12483 -113.809 -4.12483 4.12483 0.78 0.000932044 0.000880152 0.0412646 0.038223 26 1886 20 6.64007e+06 414414 477104. 1650.88 0.98 0.11618 0.102616 21682 110474 -1 1635 17 771 1478 116961 24792 2.82057 2.82057 -104.832 -2.82057 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.0221964 0.0194477 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17808 1 0.02 -1 -1 30360 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1104 17175 4885 10433 1857 55.1 MiB 0.27 0.01 4.60024 -135.427 -4.60024 4.60024 0.76 0.000765701 0.000709673 0.0705305 0.0653524 28 2668 19 6.64007e+06 326508 500653. 1732.36 0.93 0.15849 0.141319 21970 115934 -1 2329 19 1368 2039 148072 32702 3.93303 3.93303 -133.456 -3.93303 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0287933 0.0253098 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17876 1 0.02 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56028 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.2 MiB 0.13 772 4768 876 3724 168 54.7 MiB 0.09 0.00 4.51224 -132.005 -4.51224 4.51224 0.76 0.000779358 0.000721722 0.0216243 0.020068 32 2086 23 6.64007e+06 301392 554710. 1919.41 0.98 0.115455 0.101038 22834 132086 -1 1816 20 1530 2338 210280 47236 3.71463 3.71463 -127.441 -3.71463 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0304801 0.0267057 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.16 17672 1 0.03 -1 -1 30280 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 16.1 MiB 0.14 1030 11891 3350 7362 1179 54.8 MiB 0.19 0.00 4.72138 -141.993 -4.72138 4.72138 0.78 0.000763013 0.000705781 0.0461091 0.0426542 32 2322 20 6.64007e+06 351624 554710. 1919.41 0.97 0.135423 0.119679 22834 132086 -1 2037 19 1181 2057 179847 37039 3.52022 3.52022 -129.639 -3.52022 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0297926 0.026218 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55876 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 16.2 MiB 0.25 799 9356 2375 6010 971 54.6 MiB 0.13 0.00 4.79432 -131.982 -4.79432 4.79432 0.82 0.000642996 0.000595096 0.0306527 0.0281649 26 2233 17 6.64007e+06 213486 477104. 1650.88 1.01 0.0944984 0.0831108 21682 110474 -1 1883 18 1035 1431 120707 27475 3.28603 3.28603 -117.064 -3.28603 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.0233765 0.0204431 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17708 1 0.03 -1 -1 30572 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.3 MiB 0.24 899 12898 4205 6789 1904 54.8 MiB 0.16 0.00 3.96736 -127.03 -3.96736 3.96736 0.80 0.000452739 0.000408982 0.0436183 0.0400029 32 2108 17 6.64007e+06 238602 554710. 1919.41 0.94 0.121429 0.107025 22834 132086 -1 1843 17 1137 1680 149473 31039 2.91843 2.91843 -115.406 -2.91843 0 0 701300. 2426.64 0.25 0.07 0.15 -1 -1 0.25 0.0244173 0.0214557 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30380 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.2 MiB 0.13 857 8087 1703 5875 509 54.7 MiB 0.12 0.00 3.59243 -98.9543 -3.59243 3.59243 0.83 0.00071631 0.000661936 0.0295572 0.0273738 26 2424 27 6.64007e+06 414414 477104. 1650.88 1.41 0.120216 0.105683 21682 110474 -1 1960 18 1138 2044 166962 35789 2.87397 2.87397 -101.793 -2.87397 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0262883 0.0230752 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30376 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.1 MiB 0.10 873 14567 3705 9538 1324 54.6 MiB 0.17 0.00 4.33724 -105.319 -4.33724 4.33724 0.86 0.00045753 0.000417577 0.0388569 0.0356628 26 2057 22 6.64007e+06 439530 477104. 1650.88 0.95 0.106028 0.0933689 21682 110474 -1 1832 19 897 1814 149714 30199 3.52642 3.52642 -105.5 -3.52642 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0243338 0.0212799 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30288 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 16.2 MiB 0.16 857 12980 4441 6366 2173 54.7 MiB 0.18 0.00 4.19523 -120.389 -4.19523 4.19523 0.76 0.000688773 0.000636868 0.0543584 0.0503336 32 2008 22 6.64007e+06 226044 554710. 1919.41 0.97 0.13817 0.122615 22834 132086 -1 1778 19 1127 1866 181399 36724 2.95877 2.95877 -112.488 -2.95877 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0230113 0.0201991 108 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.17 17524 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 16.2 MiB 0.23 1011 9385 2419 5667 1299 54.8 MiB 0.16 0.00 4.0237 -135.679 -4.0237 4.0237 0.77 0.0007257 0.000671 0.0391484 0.036259 32 2279 19 6.64007e+06 263718 554710. 1919.41 0.96 0.123876 0.109304 22834 132086 -1 1965 16 1071 1551 126273 26817 3.33403 3.33403 -130.264 -3.33403 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0242867 0.0213472 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.20 17104 1 0.03 -1 -1 30348 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.2 MiB 0.06 926 9383 1965 6366 1052 54.8 MiB 0.13 0.00 4.61041 -129.144 -4.61041 4.61041 0.77 0.000692083 0.000640758 0.0322338 0.0298704 28 2406 22 6.64007e+06 401856 500653. 1732.36 1.21 0.116187 0.102241 21970 115934 -1 1977 19 1279 2219 164594 36382 3.48123 3.48123 -119.082 -3.48123 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0262836 0.0230722 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30408 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1230 14128 4435 7821 1872 55.0 MiB 0.25 0.01 5.3267 -167.408 -5.3267 5.3267 0.77 0.000766224 0.000709211 0.0583648 0.0540379 32 3155 19 6.64007e+06 301392 554710. 1919.41 1.10 0.14819 0.131708 22834 132086 -1 2642 19 1485 2160 248463 47046 4.32488 4.32488 -156.864 -4.32488 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0297838 0.0262528 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17904 1 0.03 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 16.6 MiB 0.20 846 12473 3077 8180 1216 55.3 MiB 0.19 0.00 5.24026 -142.21 -5.24026 5.24026 0.76 0.000815329 0.000754557 0.0476793 0.044096 30 2292 20 6.64007e+06 426972 526063. 1820.29 1.13 0.142468 0.126001 22546 126617 -1 1759 17 1000 1800 107420 25785 3.79508 3.79508 -132.554 -3.79508 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0281383 0.0247988 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.4 MiB 0.15 1088 19136 5971 10565 2600 54.8 MiB 0.28 0.01 4.47484 -142.459 -4.47484 4.47484 0.76 0.000815825 0.000754529 0.0710775 0.065465 28 2787 21 6.64007e+06 464646 500653. 1732.36 1.14 0.167127 0.14848 21970 115934 -1 2447 19 1322 2375 188094 40229 3.54723 3.54723 -134.645 -3.54723 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.031543 0.0277949 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17360 1 0.03 -1 -1 30104 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55644 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 15.8 MiB 0.12 810 10756 3573 5296 1887 54.3 MiB 0.14 0.00 3.86158 -115.559 -3.86158 3.86158 0.77 0.000634072 0.000587344 0.0411136 0.0380691 28 1977 21 6.64007e+06 238602 500653. 1732.36 0.94 0.116068 0.102497 21970 115934 -1 1807 18 1039 1739 151334 31305 3.01497 3.01497 -109.983 -3.01497 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0231313 0.020272 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30428 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 16.3 MiB 0.17 996 11989 3165 6999 1825 55.0 MiB 0.20 0.00 4.82523 -141.177 -4.82523 4.82523 0.76 0.000792887 0.000733919 0.0539746 0.0500235 32 2398 20 6.64007e+06 288834 554710. 1919.41 0.99 0.146438 0.129893 22834 132086 -1 1979 20 1637 2528 204944 43440 3.73163 3.73163 -134.148 -3.73163 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0313977 0.027604 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.12 17888 1 0.03 -1 -1 30436 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1103 10743 2816 7025 902 55.0 MiB 0.17 0.00 5.45357 -158.764 -5.45357 5.45357 0.77 0.000751967 0.000695763 0.0431969 0.0399945 26 2875 26 6.64007e+06 326508 477104. 1650.88 1.48 0.140767 0.124242 21682 110474 -1 2572 20 1641 2546 243935 50788 4.09409 4.09409 -144.082 -4.09409 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0298964 0.0262621 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30568 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1102 15423 4945 8075 2403 55.0 MiB 0.22 0.00 5.30601 -154.372 -5.30601 5.30601 0.77 0.000905981 0.000838396 0.0578657 0.0535534 28 2987 22 6.64007e+06 376740 500653. 1732.36 1.25 0.149721 0.132918 21970 115934 -1 2475 17 1341 2067 194220 38613 4.45548 4.45548 -149.53 -4.45548 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0263819 0.0232645 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.22 17780 1 0.03 -1 -1 30320 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 16.3 MiB 0.23 960 11975 3127 7423 1425 55.1 MiB 0.19 0.00 4.52304 -132.575 -4.52304 4.52304 0.76 0.000790388 0.000727188 0.0461694 0.0427042 32 2098 19 6.64007e+06 414414 554710. 1919.41 0.94 0.136454 0.120617 22834 132086 -1 1818 20 890 1486 121550 25918 3.18863 3.18863 -115.814 -3.18863 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0310959 0.0272555 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.17 17508 1 0.02 -1 -1 30216 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 16.2 MiB 0.15 891 9571 2183 6911 477 54.8 MiB 0.17 0.00 5.02278 -140.291 -5.02278 5.02278 0.76 0.000776346 0.000718154 0.0428914 0.0396939 30 2474 22 6.64007e+06 263718 526063. 1820.29 1.04 0.136908 0.120826 22546 126617 -1 2061 16 1038 1779 125250 28343 3.96303 3.96303 -139.2 -3.96303 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0259176 0.0228664 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30460 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 16.3 MiB 0.18 875 11270 2503 8088 679 55.0 MiB 0.18 0.00 4.91881 -136.338 -4.91881 4.91881 0.77 0.00078563 0.000726376 0.0461361 0.0427375 32 2083 16 6.64007e+06 389298 554710. 1919.41 0.94 0.133352 0.118082 22834 132086 -1 1814 22 1150 1918 137928 31127 3.66743 3.66743 -125.099 -3.66743 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0333617 0.0291501 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17196 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55704 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 15.9 MiB 0.05 680 10219 2541 6421 1257 54.4 MiB 0.13 0.00 3.88758 -112.502 -3.88758 3.88758 0.78 0.000603289 0.000558823 0.0385573 0.0356933 28 1722 20 6.64007e+06 188370 500653. 1732.36 0.92 0.109485 0.096727 21970 115934 -1 1581 16 756 1127 91972 20919 2.91797 2.91797 -107.341 -2.91797 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0202253 0.0177737 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30276 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1003 15426 4168 9105 2153 54.9 MiB 0.22 0.00 4.65236 -140.168 -4.65236 4.65236 0.86 0.000793637 0.000734005 0.0590994 0.0546883 28 2211 31 6.64007e+06 401856 500653. 1732.36 1.28 0.166444 0.147497 21970 115934 -1 1941 20 1275 2099 149859 32629 3.69643 3.69643 -131.023 -3.69643 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0309998 0.0272172 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 16.6 MiB 0.19 1074 11237 2615 7354 1268 55.2 MiB 0.20 0.00 4.84723 -152.835 -4.84723 4.84723 0.82 0.000635238 0.000576621 0.0481586 0.0442289 32 2662 20 6.64007e+06 276276 554710. 1919.41 1.06 0.142703 0.125932 22834 132086 -1 2233 22 1832 2973 276763 56868 3.79463 3.79463 -142.429 -3.79463 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0356978 0.0313584 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.17 17612 1 0.03 -1 -1 30164 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 16.3 MiB 0.25 745 8136 1743 5584 809 54.8 MiB 0.10 0.00 4.31784 -119.848 -4.31784 4.31784 0.77 0.000635237 0.00058767 0.0301567 0.0279252 28 2297 24 6.64007e+06 251160 500653. 1732.36 1.33 0.109457 0.0962023 21970 115934 -1 1809 18 1050 1376 111464 26964 3.43323 3.43323 -118.752 -3.43323 0 0 612192. 2118.31 0.22 0.06 0.12 -1 -1 0.22 0.0236126 0.020878 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17196 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55576 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 15.7 MiB 0.06 720 11430 2918 7192 1320 54.3 MiB 0.15 0.00 3.81035 -108.914 -3.81035 3.81035 0.78 0.000611212 0.000558961 0.0397137 0.0367683 26 1922 20 6.64007e+06 263718 477104. 1650.88 0.87 0.110676 0.0977913 21682 110474 -1 1684 16 959 1521 119249 26450 3.04337 3.04337 -105.439 -3.04337 0 0 585099. 2024.56 0.26 0.06 0.12 -1 -1 0.26 0.0203389 0.0179035 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30372 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1132 12753 3748 7734 1271 55.1 MiB 0.20 0.00 5.06147 -160.912 -5.06147 5.06147 0.76 0.000767037 0.000710378 0.0513522 0.0475722 26 2971 33 6.64007e+06 326508 477104. 1650.88 1.92 0.158834 0.140826 21682 110474 -1 2422 20 1828 2405 225095 45942 4.07489 4.07489 -147.788 -4.07489 0 0 585099. 2024.56 0.23 0.09 0.12 -1 -1 0.23 0.031044 0.0273022 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17808 1 0.03 -1 -1 30444 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1035 16893 5570 8364 2959 55.1 MiB 0.24 0.00 5.02458 -149.361 -5.02458 5.02458 0.77 0.00077004 0.000712837 0.0646822 0.059854 32 2671 23 6.64007e+06 364182 554710. 1919.41 1.00 0.158204 0.140561 22834 132086 -1 2196 19 1320 2074 170752 37927 4.38708 4.38708 -146.433 -4.38708 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.029339 0.0257967 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.18 17348 1 0.03 -1 -1 30180 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.5 MiB 0.09 1057 12164 2729 8794 641 55.1 MiB 0.19 0.00 5.48474 -146.154 -5.48474 5.48474 0.77 0.000790205 0.000730894 0.0451059 0.0416274 28 3217 24 6.64007e+06 452088 500653. 1732.36 1.90 0.148401 0.131259 21970 115934 -1 2513 17 1493 2631 238238 50683 4.50928 4.50928 -146.356 -4.50928 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0275836 0.0243708 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 30160 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 16.1 MiB 0.15 890 11170 2805 7440 925 54.7 MiB 0.15 0.00 3.51924 -105.227 -3.51924 3.51924 0.77 0.000695839 0.000644093 0.0389201 0.0360184 26 2119 24 6.64007e+06 401856 477104. 1650.88 0.93 0.124966 0.109956 21682 110474 -1 1899 20 1162 2065 170166 35763 2.88697 2.88697 -103.914 -2.88697 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0272632 0.0238469 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.17 17256 1 0.03 -1 -1 30580 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55616 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 15.8 MiB 0.07 645 11948 3714 6556 1678 54.3 MiB 0.13 0.00 3.4543 -94.7001 -3.4543 3.4543 0.77 0.000591415 0.000547112 0.0431146 0.0398934 26 1602 19 6.64007e+06 263718 477104. 1650.88 0.94 0.111901 0.0988588 21682 110474 -1 1457 20 947 1352 131524 28075 2.84797 2.84797 -93.8144 -2.84797 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.023228 0.0202052 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 18172 1 0.03 -1 -1 30288 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 16.8 MiB 0.24 1270 10743 2480 7803 460 55.0 MiB 0.19 0.01 4.37195 -138.919 -4.37195 4.37195 0.77 0.000879241 0.0008138 0.0501572 0.0464833 32 3443 20 6.64007e+06 326508 554710. 1919.41 1.06 0.154393 0.136564 22834 132086 -1 2834 21 1902 3097 261667 54988 4.05623 4.05623 -139.747 -4.05623 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0376464 0.0330241 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.12 17672 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 16.3 MiB 0.32 989 14828 4611 8220 1997 55.2 MiB 0.22 0.00 5.41669 -159.225 -5.41669 5.41669 0.76 0.000773332 0.000715868 0.063545 0.0588276 28 2480 21 6.64007e+06 288834 500653. 1732.36 0.96 0.155241 0.138038 21970 115934 -1 2122 20 1580 2465 195223 43164 4.74788 4.74788 -154.179 -4.74788 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0309388 0.0272067 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 16.2 MiB 0.33 825 13583 3778 7563 2242 54.7 MiB 0.20 0.00 4.65475 -131.833 -4.65475 4.65475 0.76 0.00072007 0.000664639 0.0562608 0.0520186 30 2025 18 6.64007e+06 238602 526063. 1820.29 0.96 0.138974 0.123425 22546 126617 -1 1649 17 765 1154 85908 18646 3.57043 3.57043 -124.729 -3.57043 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0251938 0.0221788 128 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30380 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.2 MiB 0.10 911 16708 5166 8976 2566 54.8 MiB 0.23 0.00 5.41998 -135.015 -5.41998 5.41998 0.77 0.000730947 0.000676285 0.0600635 0.0555108 28 2817 28 6.64007e+06 376740 500653. 1732.36 1.59 0.157321 0.139316 21970 115934 -1 2169 19 1096 1797 163285 36015 3.85882 3.85882 -126.873 -3.85882 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0279912 0.0246095 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30156 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1048 7423 1517 5297 609 55.1 MiB 0.14 0.01 5.01701 -136.816 -5.01701 5.01701 0.77 0.000804979 0.000744831 0.0295391 0.0273844 26 2731 27 6.64007e+06 426972 477104. 1650.88 1.46 0.134708 0.118322 21682 110474 -1 2256 20 1367 2432 219066 45531 3.79683 3.79683 -130.791 -3.79683 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0313277 0.027496 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30092 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.2 MiB 0.14 829 7233 1598 5117 518 54.7 MiB 0.06 0.00 3.67989 -107.648 -3.67989 3.67989 0.63 0.000311766 0.000283773 0.0126652 0.0115707 30 2031 17 6.64007e+06 389298 526063. 1820.29 0.71 0.0530082 0.0463786 22546 126617 -1 1650 18 943 1689 119647 26604 2.87297 2.87297 -101.585 -2.87297 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0258692 0.0227153 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.15 17780 1 0.03 -1 -1 30216 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1174 10979 2913 7012 1054 55.1 MiB 0.19 0.01 5.12747 -161.736 -5.12747 5.12747 0.76 0.000774896 0.000717246 0.0450268 0.041669 26 3429 34 6.64007e+06 313950 477104. 1650.88 2.17 0.157091 0.138591 21682 110474 -1 2659 23 2025 3125 262798 56887 4.48129 4.48129 -151.356 -4.48129 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0340444 0.0298646 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30248 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 16.6 MiB 0.17 1093 17036 4934 9564 2538 55.1 MiB 0.25 0.01 4.75546 -148.188 -4.75546 4.75546 0.84 0.00082768 0.000766184 0.0637934 0.0590492 28 2558 22 6.64007e+06 452088 500653. 1732.36 1.06 0.163297 0.145251 21970 115934 -1 2272 21 1341 2156 179040 38559 3.49322 3.49322 -131.253 -3.49322 0 0 612192. 2118.31 0.21 0.09 0.11 -1 -1 0.21 0.0333455 0.0292388 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17640 1 0.02 -1 -1 30380 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 15.9 MiB 0.09 731 10536 4018 5581 937 54.5 MiB 0.15 0.00 3.74538 -111.28 -3.74538 3.74538 0.88 0.000623972 0.000577362 0.0495617 0.0458357 30 1417 21 6.64007e+06 213486 526063. 1820.29 0.94 0.123272 0.109101 22546 126617 -1 1304 18 822 1209 100830 20945 2.68177 2.68177 -98.8953 -2.68177 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0224711 0.0196519 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 16.3 MiB 0.19 882 13849 5109 6856 1884 54.8 MiB 0.21 0.00 4.03956 -127.808 -4.03956 4.03956 0.79 0.000697674 0.000644986 0.0483464 0.0444614 28 2040 18 6.64007e+06 263718 500653. 1732.36 1.11 0.124667 0.110199 21970 115934 -1 1847 20 1219 1631 155506 32429 3.14383 3.14383 -116.845 -3.14383 0 0 612192. 2118.31 0.21 0.07 0.08 -1 -1 0.21 0.0268921 0.0235172 117 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30448 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.2 MiB 0.09 954 14020 3601 8035 2384 54.8 MiB 0.19 0.00 4.80044 -128.284 -4.80044 4.80044 0.81 0.000722235 0.000668107 0.0462957 0.0427789 32 2146 21 6.64007e+06 464646 554710. 1919.41 1.03 0.129649 0.114842 22834 132086 -1 1934 19 1266 2210 206688 41986 3.70963 3.70963 -123.707 -3.70963 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0276387 0.0242609 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17260 1 0.03 -1 -1 30360 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 16.2 MiB 0.25 763 7103 1547 5010 546 54.6 MiB 0.10 0.00 4.32884 -114.709 -4.32884 4.32884 0.77 0.000617585 0.000572782 0.0261367 0.0242197 26 2151 28 6.64007e+06 276276 477104. 1650.88 1.17 0.101733 0.0884461 21682 110474 -1 1825 17 978 1246 99702 22292 3.45323 3.45323 -116.199 -3.45323 0 0 585099. 2024.56 0.22 0.05 0.11 -1 -1 0.22 0.0192747 0.0169554 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.17 17368 1 0.03 -1 -1 30060 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 15.8 MiB 0.16 634 12856 3328 7254 2274 54.4 MiB 0.16 0.00 3.90075 -115.478 -3.90075 3.90075 0.76 0.000639972 0.000592102 0.049784 0.0460826 28 2075 28 6.64007e+06 213486 500653. 1732.36 0.99 0.133686 0.118126 21970 115934 -1 1693 19 1228 2048 165998 37391 3.12337 3.12337 -110.644 -3.12337 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0243866 0.0213518 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.11 17796 1 0.03 -1 -1 30248 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 16.3 MiB 0.15 1014 15147 3968 9710 1469 55.0 MiB 0.21 0.00 4.15695 -125.813 -4.15695 4.15695 0.77 0.000789792 0.000731157 0.0552826 0.0511425 32 1992 22 6.64007e+06 452088 554710. 1919.41 0.97 0.150035 0.132937 22834 132086 -1 1818 16 973 1536 142925 28418 3.03097 3.03097 -112.493 -3.03097 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0267481 0.0236436 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 16.2 MiB 0.21 920 10163 2724 6503 936 54.7 MiB 0.13 0.00 4.05252 -124.711 -4.05252 4.05252 0.77 0.000618629 0.000572465 0.0370109 0.0342401 30 1917 19 6.64007e+06 251160 526063. 1820.29 0.90 0.108933 0.0960772 22546 126617 -1 1686 17 726 1061 75053 16352 2.96343 2.96343 -111.291 -2.96343 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0218064 0.0191278 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30108 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 16.3 MiB 0.15 987 10827 2770 6959 1098 54.9 MiB 0.16 0.00 3.75038 -118.864 -3.75038 3.75038 0.76 0.00075715 0.000700298 0.0400374 0.0370487 26 2416 19 6.64007e+06 401856 477104. 1650.88 1.28 0.126736 0.111727 21682 110474 -1 2002 18 1151 1997 161455 34636 2.86217 2.86217 -109.179 -2.86217 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0273011 0.0239835 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17804 1 0.03 -1 -1 30472 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.6 MiB 0.30 927 10247 2394 7169 684 55.0 MiB 0.17 0.01 4.34696 -134.379 -4.34696 4.34696 0.77 0.000828049 0.000766206 0.042268 0.0391241 32 2153 15 6.64007e+06 401856 554710. 1919.41 0.95 0.131903 0.116682 22834 132086 -1 1927 19 1227 1751 140447 31625 3.33103 3.33103 -129.428 -3.33103 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0309281 0.0271596 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30312 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 15.9 MiB 0.17 835 12681 3362 7951 1368 54.5 MiB 0.16 0.00 3.3851 -106.107 -3.3851 3.3851 0.77 0.000667548 0.000615852 0.051194 0.0473462 26 2061 16 6.64007e+06 213486 477104. 1650.88 1.01 0.12636 0.111941 21682 110474 -1 1826 18 940 1445 124698 26541 2.87497 2.87497 -108.411 -2.87497 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0243518 0.0213164 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30320 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 16.3 MiB 0.22 876 14407 4775 7452 2180 54.8 MiB 0.19 0.00 4.41384 -136.056 -4.41384 4.41384 0.77 0.000663549 0.000613885 0.0537023 0.0496739 30 2265 19 6.64007e+06 263718 526063. 1820.29 0.94 0.130446 0.115713 22546 126617 -1 1808 20 1086 1608 120566 26265 3.07143 3.07143 -117.332 -3.07143 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0260905 0.0228305 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 16.2 MiB 0.21 1070 9111 2300 6161 650 55.0 MiB 0.14 0.00 4.68344 -140.114 -4.68344 4.68344 0.77 0.000711189 0.000657626 0.0363118 0.0335852 32 2426 23 6.64007e+06 288834 554710. 1919.41 0.97 0.123538 0.10884 22834 132086 -1 2104 17 1195 1614 152050 32680 3.78882 3.78882 -131.62 -3.78882 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0253593 0.0223494 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17796 1 0.03 -1 -1 30204 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 16.2 MiB 0.18 969 13959 4223 8147 1589 54.8 MiB 0.18 0.00 4.71146 -123.714 -4.71146 4.71146 0.77 0.000712949 0.000660228 0.0520416 0.0481977 32 2051 16 6.64007e+06 364182 554710. 1919.41 0.90 0.130865 0.116193 22834 132086 -1 1782 15 752 1297 91896 20239 3.07743 3.07743 -107.178 -3.07743 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.0223984 0.0197509 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30508 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 16.5 MiB 0.28 1164 12568 3311 8092 1165 55.2 MiB 0.23 0.00 5.44678 -170.492 -5.44678 5.44678 0.77 0.0008342 0.000772482 0.0568986 0.0527433 28 2974 42 6.64007e+06 301392 500653. 1732.36 1.23 0.182712 0.161278 21970 115934 -1 2499 21 1757 2585 254156 52048 4.07889 4.07889 -152.434 -4.07889 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0346132 0.0304702 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17084 1 0.02 -1 -1 30464 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 15.9 MiB 0.05 802 9356 2223 6300 833 54.4 MiB 0.11 0.00 3.65167 -102.287 -3.65167 3.65167 0.76 0.000576693 0.000533649 0.0326876 0.0302814 32 1748 20 6.64007e+06 226044 554710. 1919.41 0.90 0.10054 0.0885755 22834 132086 -1 1525 20 733 1201 101327 21564 2.85597 2.85597 -99.3863 -2.85597 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0227139 0.0198056 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30240 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 16.5 MiB 0.16 1014 15173 4325 8191 2657 55.0 MiB 0.22 0.00 4.24115 -141.749 -4.24115 4.24115 0.77 0.000844902 0.000780012 0.0598179 0.0553405 32 2483 25 6.64007e+06 426972 554710. 1919.41 1.05 0.164968 0.146184 22834 132086 -1 2189 21 1591 2389 235026 48198 3.64763 3.64763 -138.572 -3.64763 0 0 701300. 2426.64 0.24 0.10 0.11 -1 -1 0.24 0.0343416 0.0301556 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.15 17776 1 0.03 -1 -1 30148 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.2 MiB 0.25 854 11456 4252 5499 1705 54.7 MiB 0.16 0.00 3.5233 -125.693 -3.5233 3.5233 0.77 0.000780264 0.000720696 0.0535006 0.0494968 32 1950 21 6.64007e+06 213486 554710. 1919.41 0.97 0.145175 0.128541 22834 132086 -1 1773 18 1222 1762 174963 34250 2.90777 2.90777 -120.796 -2.90777 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0287597 0.0253152 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17808 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 16.3 MiB 0.16 993 15864 4238 9461 2165 54.9 MiB 0.15 0.00 4.43584 -134.986 -4.43584 4.43584 0.82 0.000772205 0.000714188 0.0348714 0.0320449 26 2487 29 6.64007e+06 401856 477104. 1650.88 1.26 0.138085 0.121018 21682 110474 -1 2097 20 1015 1538 125489 27573 3.19363 3.19363 -117.496 -3.19363 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0301615 0.0264371 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17792 1 0.03 -1 -1 30340 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1309 17635 5897 9510 2228 55.1 MiB 0.33 0.01 6.39084 -191.431 -6.39084 6.39084 0.80 0.000850645 0.000787832 0.0763289 0.0706682 28 3179 24 6.64007e+06 339066 500653. 1732.36 1.20 0.175201 0.156711 21970 115934 -1 2818 20 1830 2657 250768 50556 5.32394 5.32394 -179.585 -5.32394 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0346363 0.0305675 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17500 1 0.02 -1 -1 30272 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55484 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 15.7 MiB 0.17 697 8680 1945 6222 513 54.2 MiB 0.10 0.00 3.31307 -102.387 -3.31307 3.31307 0.76 0.000544154 0.000503469 0.0291827 0.0270194 28 1613 18 6.64007e+06 226044 500653. 1732.36 0.93 0.0905458 0.0797825 21970 115934 -1 1455 19 653 834 78603 17174 2.27697 2.27697 -93.8231 -2.27697 0 0 612192. 2118.31 0.24 0.05 0.14 -1 -1 0.24 0.0204839 0.017838 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30064 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55700 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 15.7 MiB 0.10 791 11864 3247 7177 1440 54.4 MiB 0.15 0.00 4.38638 -124.628 -4.38638 4.38638 0.77 0.000657503 0.000607998 0.0487522 0.045151 32 1633 19 6.64007e+06 200928 554710. 1919.41 0.93 0.117771 0.104426 22834 132086 -1 1508 21 934 1483 152390 31334 3.18337 3.18337 -113.669 -3.18337 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0275813 0.0240915 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17596 1 0.03 -1 -1 30028 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.2 MiB 0.09 807 14407 3847 9113 1447 54.7 MiB 0.19 0.00 3.46104 -112.673 -3.46104 3.46104 0.76 0.00067484 0.00062378 0.0544829 0.050376 28 2101 20 6.64007e+06 263718 500653. 1732.36 0.91 0.13436 0.119241 21970 115934 -1 1790 20 1206 2123 154386 34202 2.76577 2.76577 -107.564 -2.76577 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0261993 0.0228973 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17380 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55564 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 15.8 MiB 0.06 469 9234 3273 3848 2113 54.3 MiB 0.08 0.00 3.37029 -77.6943 -3.37029 3.37029 0.77 0.000515593 0.000475793 0.0280013 0.0258123 28 1583 37 6.64007e+06 339066 500653. 1732.36 3.46 0.167787 0.144762 21970 115934 -1 1237 21 725 1183 107639 29315 2.94117 2.94117 -80.592 -2.94117 0 0 612192. 2118.31 0.22 0.06 0.12 -1 -1 0.22 0.0212789 0.0185172 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 16.3 MiB 0.18 937 9571 2534 6630 407 55.0 MiB 0.16 0.00 4.28889 -129.632 -4.28889 4.28889 0.77 0.000795126 0.000735573 0.043449 0.0402202 30 2301 18 6.64007e+06 263718 526063. 1820.29 0.96 0.133866 0.118313 22546 126617 -1 1977 18 1120 1943 122247 27258 3.57043 3.57043 -122.066 -3.57043 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0292244 0.0257475 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17864 1 0.03 -1 -1 30280 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 16.6 MiB 0.20 1018 17423 5293 9473 2657 55.1 MiB 0.25 0.00 4.47881 -144.552 -4.47881 4.47881 0.77 0.000838285 0.000775592 0.0675235 0.0624435 32 2272 20 6.64007e+06 439530 554710. 1919.41 0.98 0.165583 0.147234 22834 132086 -1 1933 20 1210 1856 171720 34016 3.26436 3.26436 -125.974 -3.26436 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0331586 0.0291304 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30272 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56044 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 16.3 MiB 0.34 962 17134 5020 8898 3216 54.7 MiB 0.24 0.00 5.27972 -153.369 -5.27972 5.27972 0.77 0.000767429 0.000709841 0.0641812 0.0593852 32 2834 29 6.65987e+06 380340 554710. 1919.41 1.10 0.165973 0.147372 22834 132086 -1 2238 23 1690 2556 226648 51397 4.50923 4.50923 -145.399 -4.50923 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0352002 0.030961 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17804 1 0.03 -1 -1 30544 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1040 12361 3404 6762 2195 54.9 MiB 0.19 0.00 4.63676 -143.523 -4.63676 4.63676 0.77 0.000769857 0.00071252 0.0540329 0.0500766 32 2308 22 6.65987e+06 291594 554710. 1919.41 0.98 0.146073 0.129451 22834 132086 -1 2100 18 1574 2379 219609 46855 4.01197 4.01197 -140.509 -4.01197 0 0 701300. 2426.64 0.21 0.05 0.09 -1 -1 0.21 0.0151146 0.0134799 138 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30444 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 15.9 MiB 0.11 1057 9111 2109 6460 542 54.5 MiB 0.14 0.00 4.05544 -117.725 -4.05544 4.05544 0.76 0.000682485 0.000631286 0.0350019 0.0324227 26 2981 38 6.65987e+06 291594 477104. 1650.88 1.72 0.133993 0.117532 21682 110474 -1 2293 17 1336 1804 175136 37912 3.78111 3.78111 -125.406 -3.78111 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0244993 0.0216086 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30376 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 15.9 MiB 0.09 995 11593 2944 7290 1359 54.5 MiB 0.18 0.00 4.34155 -118.133 -4.34155 4.34155 0.77 0.000697405 0.000637527 0.0435432 0.0402384 32 2260 22 6.65987e+06 342306 554710. 1919.41 1.00 0.126831 0.111978 22834 132086 -1 2127 23 1483 2699 273208 55417 3.68451 3.68451 -117.2 -3.68451 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0310322 0.0271729 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30260 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 15.9 MiB 0.11 1007 8919 2464 5628 827 54.5 MiB 0.15 0.00 4.36781 -127.596 -4.36781 4.36781 0.80 0.000744839 0.000689179 0.0378797 0.0350894 32 2654 28 6.65987e+06 291594 554710. 1919.41 1.51 0.155808 0.136811 22834 132086 -1 2219 22 1600 3132 273090 58758 3.57525 3.57525 -124.801 -3.57525 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0320939 0.0281562 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30324 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 16.4 MiB 0.15 1045 18079 5207 10774 2098 55.0 MiB 0.27 0.01 3.41904 -120.465 -3.41904 3.41904 0.77 0.000780573 0.000721316 0.0665297 0.0615404 30 2105 15 6.65987e+06 418374 526063. 1820.29 0.95 0.153472 0.136807 22546 126617 -1 1835 19 1130 1801 122462 26648 2.71771 2.71771 -112.169 -2.71771 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.030073 0.0264866 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.17 17320 1 0.03 -1 -1 30588 -1 -1 18 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55492 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 15.6 MiB 0.17 496 10509 2613 7281 615 54.2 MiB 0.13 0.00 3.88752 -95.8054 -3.88752 3.88752 0.76 0.000606546 0.000562104 0.040838 0.0378418 30 1256 19 6.65987e+06 228204 526063. 1820.29 0.88 0.110092 0.0972055 22546 126617 -1 1030 19 571 972 62106 14193 2.45611 2.45611 -82.6065 -2.45611 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.023178 0.0203077 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30104 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55720 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 15.9 MiB 0.06 903 9466 2130 6738 598 54.4 MiB 0.14 0.00 3.22661 -96.4595 -3.22661 3.22661 0.76 0.000656926 0.000602811 0.0310118 0.0286434 30 1917 23 6.65987e+06 393018 526063. 1820.29 0.90 0.109594 0.096263 22546 126617 -1 1627 17 736 1279 86552 19318 2.34911 2.34911 -89.871 -2.34911 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0228911 0.0201569 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30284 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 15.9 MiB 0.16 765 13788 3701 7917 2170 54.6 MiB 0.18 0.00 3.4209 -112.776 -3.4209 3.4209 0.87 0.000689237 0.000637225 0.0533385 0.049183 32 2117 21 6.65987e+06 240882 554710. 1919.41 0.97 0.134486 0.119059 22834 132086 -1 1724 17 1043 1533 140831 31284 3.10471 3.10471 -111.199 -3.10471 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0243641 0.021429 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30128 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.0 MiB 0.26 876 13906 4295 8097 1514 54.5 MiB 0.20 0.00 3.72312 -122.883 -3.72312 3.72312 0.81 0.000680095 0.000628912 0.0551567 0.0509621 32 2031 21 6.65987e+06 215526 554710. 1919.41 1.07 0.135137 0.120047 22834 132086 -1 1760 18 1165 1807 168349 35708 2.87071 2.87071 -113.882 -2.87071 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0252044 0.022148 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.10 17592 1 0.03 -1 -1 30524 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55720 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.0 MiB 0.24 696 7008 1825 4747 436 54.4 MiB 0.10 0.00 4.00989 -109.174 -4.00989 4.00989 0.83 0.00066902 0.00061975 0.0302944 0.0280765 30 1506 17 6.65987e+06 215526 526063. 1820.29 0.90 0.102145 0.0899455 22546 126617 -1 1362 14 539 809 56624 12454 2.68271 2.68271 -95.9706 -2.68271 0 0 666494. 2306.21 0.24 0.05 0.13 -1 -1 0.24 0.0196107 0.0173181 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17324 1 0.03 -1 -1 30092 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 15.9 MiB 0.23 721 6381 1297 4466 618 54.4 MiB 0.09 0.00 3.89466 -119.961 -3.89466 3.89466 0.80 0.000640636 0.000592895 0.0257813 0.0236224 32 1992 19 6.65987e+06 215526 554710. 1919.41 1.00 0.0897937 0.0785861 22834 132086 -1 1677 19 1111 1528 143289 32666 2.64999 2.64999 -104.367 -2.64999 0 0 701300. 2426.64 0.29 0.07 0.14 -1 -1 0.29 0.0250305 0.0219252 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30252 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55960 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.2 MiB 0.23 1056 16468 6105 8420 1943 54.6 MiB 0.26 0.00 4.37712 -140.294 -4.37712 4.37712 0.77 0.000761596 0.000704719 0.0662657 0.061302 34 2391 22 6.65987e+06 304272 585099. 2024.56 3.25 0.248477 0.218041 23122 138558 -1 2084 21 1535 2316 225353 45146 3.18051 3.18051 -122.931 -3.18051 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0322031 0.0283219 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30284 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 16.4 MiB 0.18 951 14365 3991 8802 1572 54.8 MiB 0.22 0.01 4.63803 -131.953 -4.63803 4.63803 0.77 0.00077585 0.000717777 0.0553572 0.0512236 28 2416 43 6.65987e+06 380340 500653. 1732.36 1.11 0.174155 0.153668 21970 115934 -1 2120 21 1416 2197 197038 42108 3.61105 3.61105 -126.538 -3.61105 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.031644 0.0277081 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30292 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55516 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 15.6 MiB 0.14 640 7914 1978 5337 599 54.2 MiB 0.10 0.00 3.16393 -88.5429 -3.16393 3.16393 0.75 0.000585406 0.000541804 0.0280582 0.0259797 28 1674 18 6.65987e+06 266238 500653. 1732.36 0.85 0.0953717 0.0837333 21970 115934 -1 1535 20 879 1500 129553 28758 2.88391 2.88391 -89.6862 -2.88391 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0232423 0.0202793 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30316 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 16.4 MiB 0.36 1044 14035 4479 7571 1985 54.9 MiB 0.22 0.00 3.91387 -124.268 -3.91387 3.91387 0.76 0.000787643 0.000729223 0.0622644 0.0576573 32 2423 17 6.65987e+06 266238 554710. 1919.41 0.97 0.15152 0.13487 22834 132086 -1 2070 21 1249 2316 194613 42443 3.14137 3.14137 -116.748 -3.14137 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0330477 0.0290132 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30180 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1069 12919 3925 6776 2218 54.8 MiB 0.19 0.00 4.31458 -139.268 -4.31458 4.31458 0.79 0.000746929 0.000690699 0.0545226 0.0504657 28 2537 20 6.65987e+06 266238 500653. 1732.36 1.07 0.143858 0.127523 21970 115934 -1 2344 20 1477 2177 194768 41510 3.19377 3.19377 -122.298 -3.19377 0 0 612192. 2118.31 0.22 0.09 0.12 -1 -1 0.22 0.030275 0.0266333 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30392 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.2 MiB 0.20 695 9543 2025 7276 242 54.7 MiB 0.14 0.00 2.85064 -99.0938 -2.85064 2.85064 0.77 0.000722196 0.00066811 0.0345264 0.0319326 30 1687 22 6.65987e+06 367662 526063. 1820.29 0.91 0.119238 0.10488 22546 126617 -1 1439 18 750 1104 69696 16424 2.15051 2.15051 -92.2769 -2.15051 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0258655 0.0227382 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17496 1 0.02 -1 -1 30104 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55300 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.6 MiB 0.11 717 11976 4624 5984 1368 54.0 MiB 0.12 0.00 2.25907 -80.296 -2.25907 2.25907 0.77 0.000536279 0.000495358 0.0412293 0.0381215 26 1494 19 6.65987e+06 190170 477104. 1650.88 0.80 0.102949 0.0909643 21682 110474 -1 1378 17 660 917 79845 17879 1.87505 1.87505 -81.3725 -1.87505 0 0 585099. 2024.56 0.20 0.05 0.11 -1 -1 0.20 0.0185735 0.0162035 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30456 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55596 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 15.8 MiB 0.31 848 12008 3931 5654 2423 54.3 MiB 0.17 0.00 4.81535 -141.646 -4.81535 4.81535 0.77 0.000672525 0.000619536 0.0479373 0.0444211 32 2102 23 6.65987e+06 240882 554710. 1919.41 0.97 0.129205 0.11438 22834 132086 -1 1848 20 1308 1848 184309 40178 3.41997 3.41997 -124.163 -3.41997 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0267482 0.0234265 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.17 17852 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.4 MiB 0.07 910 8087 1796 5473 818 54.8 MiB 0.13 0.00 4.13176 -127.852 -4.13176 4.13176 0.77 0.000754538 0.000698228 0.0309506 0.0286679 28 2441 20 6.65987e+06 393018 500653. 1732.36 1.04 0.12085 0.106369 21970 115934 -1 2044 21 1282 1990 180030 39392 3.47643 3.47643 -125.666 -3.47643 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.031293 0.0274753 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1181 9303 2469 6067 767 54.9 MiB 0.16 0.00 4.32644 -135.633 -4.32644 4.32644 0.77 0.000789789 0.000729277 0.0413681 0.0382508 30 2567 32 6.65987e+06 291594 526063. 1820.29 1.03 0.149472 0.131649 22546 126617 -1 2121 20 1153 1831 148276 29447 3.42557 3.42557 -121.926 -3.42557 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0314107 0.0276534 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.15 17368 1 0.02 -1 -1 30480 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55236 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 15.5 MiB 0.23 356 10636 3977 4816 1843 53.9 MiB 0.09 0.00 2.4343 -65.7683 -2.4343 2.4343 0.78 0.000464828 0.000429164 0.0324471 0.0299659 28 1469 49 6.65987e+06 228204 500653. 1732.36 2.54 0.160383 0.138751 21970 115934 -1 969 20 669 911 81155 21747 2.53711 2.53711 -71.5854 -2.53711 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0184164 0.0160269 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.12 17196 1 0.04 -1 -1 30232 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55768 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.11 978 9571 2391 5607 1573 54.5 MiB 0.14 0.00 4.9364 -125.004 -4.9364 4.9364 0.77 0.000675156 0.000625175 0.0371259 0.0343931 32 2165 21 6.65987e+06 266238 554710. 1919.41 0.93 0.109702 0.0969782 22834 132086 -1 1940 21 1076 2014 171337 37468 3.80891 3.80891 -119.896 -3.80891 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0280698 0.0246266 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.12 16868 1 0.03 -1 -1 29976 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55168 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.3 MiB 0.04 681 11200 3514 6177 1509 53.9 MiB 0.09 0.00 2.44727 -77.3331 -2.44727 2.44727 0.76 0.000457192 0.000421074 0.032475 0.0299123 26 1386 14 6.65987e+06 177492 477104. 1650.88 0.83 0.0825365 0.0728497 21682 110474 -1 1289 13 490 554 51108 11319 1.94011 1.94011 -78.3107 -1.94011 0 0 585099. 2024.56 0.20 0.04 0.11 -1 -1 0.20 0.013184 0.0115953 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17596 1 0.04 -1 -1 30308 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55780 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 15.9 MiB 0.13 819 10531 2694 7192 645 54.5 MiB 0.15 0.00 4.34174 -119.601 -4.34174 4.34174 0.76 0.000692162 0.000640697 0.0371999 0.0344825 32 2037 22 6.65987e+06 380340 554710. 1919.41 0.95 0.121337 0.10713 22834 132086 -1 1815 18 1014 1669 144667 33612 3.52111 3.52111 -115.647 -3.52111 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0256492 0.0225636 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.19 17292 1 0.04 -1 -1 30432 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.0 MiB 0.10 841 8087 1664 5850 573 54.6 MiB 0.12 0.00 3.58635 -102.903 -3.58635 3.58635 0.85 0.000576692 0.000530396 0.0283385 0.0261995 28 2204 20 6.65987e+06 393018 500653. 1732.36 1.06 0.111037 0.0975948 21970 115934 -1 2003 21 1169 2237 169582 39220 2.84977 2.84977 -105.901 -2.84977 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290266 0.0254937 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30260 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 16.2 MiB 0.13 1047 15165 4413 8666 2086 54.8 MiB 0.22 0.00 4.3944 -130.237 -4.3944 4.3944 0.84 0.000738373 0.000683146 0.0590816 0.0546704 32 2495 22 6.65987e+06 329628 554710. 1919.41 1.09 0.144793 0.128818 22834 132086 -1 2091 21 1403 2426 214081 46721 3.43285 3.43285 -119.642 -3.43285 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0161869 0.0143574 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.17 17372 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55648 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 15.9 MiB 0.06 780 6100 1392 4485 223 54.3 MiB 0.10 0.00 2.90053 -100.349 -2.90053 2.90053 0.77 0.000655003 0.00060593 0.0254882 0.0236222 32 1955 21 6.65987e+06 202848 554710. 1919.41 0.99 0.099008 0.0868388 22834 132086 -1 1623 18 986 1581 154671 34208 2.55251 2.55251 -100.201 -2.55251 0 0 701300. 2426.64 0.33 0.05 0.16 -1 -1 0.33 0.0153636 0.013735 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30144 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 15.8 MiB 0.10 630 9199 2049 6385 765 54.5 MiB 0.11 0.00 2.99867 -92.259 -2.99867 2.99867 0.77 0.000615965 0.000569828 0.0325722 0.0301424 32 1798 21 6.65987e+06 291594 554710. 1919.41 0.92 0.105025 0.0923489 22834 132086 -1 1458 20 987 1519 134780 30339 2.72271 2.72271 -95.8258 -2.72271 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0248362 0.0217883 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30144 -1 -1 23 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55528 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 15.6 MiB 0.05 575 14123 3775 8918 1430 54.2 MiB 0.15 0.00 3.31478 -91.535 -3.31478 3.31478 0.77 0.000609317 0.000563359 0.0498805 0.0460757 32 1800 24 6.65987e+06 291594 554710. 1919.41 0.95 0.124639 0.110188 22834 132086 -1 1434 22 1070 1785 152134 36346 2.67071 2.67071 -91.242 -2.67071 0 0 701300. 2426.64 0.29 0.07 0.17 -1 -1 0.29 0.0258546 0.0225162 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.15 17272 1 0.03 -1 -1 30280 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.0 MiB 0.10 714 4763 885 3714 164 54.4 MiB 0.08 0.00 3.74323 -109.194 -3.74323 3.74323 0.76 0.000616095 0.000570157 0.0184569 0.0171185 30 1829 20 6.65987e+06 240882 526063. 1820.29 0.99 0.0916357 0.0801037 22546 126617 -1 1506 20 1007 1686 118482 26578 2.52931 2.52931 -100.847 -2.52931 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0245217 0.0214668 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30148 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55624 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 15.9 MiB 0.09 740 8130 1715 6151 264 54.3 MiB 0.11 0.00 3.32595 -98.9982 -3.32595 3.32595 0.77 0.000634602 0.000586842 0.0277928 0.0257296 32 1843 17 6.65987e+06 342306 554710. 1919.41 0.91 0.0992516 0.0872107 22834 132086 -1 1567 20 1064 1713 146570 32203 2.60031 2.60031 -96.6785 -2.60031 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0248827 0.021726 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30392 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55704 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 15.9 MiB 0.22 874 10103 2597 6479 1027 54.4 MiB 0.14 0.00 3.27578 -104.365 -3.27578 3.27578 0.77 0.000650532 0.000602035 0.0372001 0.0344588 32 1830 18 6.65987e+06 316950 554710. 1919.41 0.93 0.112721 0.0991694 22834 132086 -1 1602 17 962 1412 119745 26386 2.27985 2.27985 -95.4327 -2.27985 0 0 701300. 2426.64 0.26 0.06 0.13 -1 -1 0.26 0.0230348 0.0202026 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17580 1 0.03 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1205 9971 2413 6766 792 55.1 MiB 0.15 0.00 4.35696 -124.779 -4.35696 4.35696 0.77 0.000810684 0.000746497 0.0370803 0.0343473 30 2391 20 6.65987e+06 469086 526063. 1820.29 0.93 0.132014 0.116589 22546 126617 -1 2187 17 905 1665 110473 23523 3.81183 3.81183 -120.239 -3.81183 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0291884 0.0258966 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30340 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1009 12860 3291 8398 1171 54.9 MiB 0.20 0.01 3.75432 -126.947 -3.75432 3.75432 0.77 0.000837786 0.000775499 0.0492261 0.0455947 26 2418 22 6.65987e+06 456408 477104. 1650.88 1.16 0.149882 0.132672 21682 110474 -1 2162 22 1538 2375 203416 43592 2.97197 2.97197 -118.377 -2.97197 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0355473 0.031247 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17328 1 0.03 -1 -1 30112 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55640 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 15.9 MiB 0.24 731 8852 2206 5531 1115 54.3 MiB 0.13 0.00 4.21752 -119.384 -4.21752 4.21752 0.76 0.000640341 0.000592464 0.0353163 0.0327174 28 1997 22 6.65987e+06 215526 500653. 1732.36 0.99 0.11262 0.0991444 21970 115934 -1 1839 18 1040 1439 122864 28169 3.22477 3.22477 -112.881 -3.22477 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.023866 0.0209413 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30440 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 16.4 MiB 0.24 838 9687 2447 6341 899 55.0 MiB 0.17 0.00 4.30117 -127.913 -4.30117 4.30117 0.76 0.000792661 0.000732359 0.0428894 0.0396896 28 2432 23 6.65987e+06 304272 500653. 1732.36 1.13 0.139199 0.122724 21970 115934 -1 1992 19 1278 2215 178328 40975 3.24137 3.24137 -118.419 -3.24137 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.030941 0.0272457 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30344 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 16.6 MiB 0.32 1313 13758 3781 7541 2436 54.8 MiB 0.23 0.01 5.77198 -171.36 -5.77198 5.77198 0.76 0.000800214 0.000740325 0.0573104 0.0530576 32 3100 25 6.65987e+06 342306 554710. 1919.41 1.05 0.156537 0.138836 22834 132086 -1 2515 19 1986 2878 241968 53738 4.70894 4.70894 -162.113 -4.70894 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0312079 0.0275706 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 30404 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 16.2 MiB 1.07 956 15103 4666 7688 2749 55.0 MiB 0.24 0.00 4.78629 -143.571 -4.78629 4.78629 0.77 0.000798662 0.000738159 0.0650457 0.0601535 32 2895 24 6.65987e+06 316950 554710. 1919.41 1.11 0.168971 0.149859 22834 132086 -1 2105 20 1571 2376 219313 47169 4.09557 4.09557 -140.918 -4.09557 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0323611 0.0285027 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30560 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 16.2 MiB 0.23 864 6095 1129 4612 354 54.6 MiB 0.12 0.00 4.47092 -130.094 -4.47092 4.47092 0.76 0.000759828 0.00070328 0.025144 0.0233242 26 2773 50 6.65987e+06 367662 477104. 1650.88 5.32 0.23961 0.207574 21682 110474 -1 2246 23 1385 2287 210288 50008 3.20871 3.20871 -121.379 -3.20871 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.034131 0.0299607 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.16 17408 1 0.03 -1 -1 30408 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55932 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 16.0 MiB 0.20 918 12371 3407 6390 2574 54.6 MiB 0.17 0.00 4.0455 -110.07 -4.0455 4.0455 0.78 0.00066977 0.000619158 0.0468507 0.0433543 26 3035 37 6.65987e+06 278916 477104. 1650.88 4.37 0.227796 0.198278 21682 110474 -1 2306 24 1546 2271 259911 67221 3.98499 3.98499 -121.66 -3.98499 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0311252 0.0272024 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17916 1 0.03 -1 -1 30452 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 16.8 MiB 0.28 1184 10336 2301 7496 539 55.1 MiB 0.19 0.01 5.18869 -164.242 -5.18869 5.18869 0.80 0.000936365 0.000866367 0.0429521 0.0397067 26 3309 32 6.65987e+06 481764 477104. 1650.88 1.94 0.178258 0.157344 21682 110474 -1 2702 21 1806 2788 269893 58457 4.36497 4.36497 -157.991 -4.36497 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0392045 0.0344499 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.17 17628 1 0.03 -1 -1 30152 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55564 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 15.7 MiB 0.12 660 11064 4480 5786 798 54.3 MiB 0.11 0.00 3.61218 -99.209 -3.61218 3.61218 0.77 0.000611172 0.000563949 0.0386887 0.0357281 32 1831 18 6.65987e+06 266238 554710. 1919.41 0.98 0.113967 0.100227 22834 132086 -1 1537 23 1174 1900 181403 42106 2.92905 2.92905 -100.176 -2.92905 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.025012 0.0217948 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30148 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 16.4 MiB 0.21 1031 5756 1118 4418 220 55.1 MiB 0.12 0.00 5.03726 -146.602 -5.03726 5.03726 0.77 0.00074188 0.000687065 0.025457 0.0236188 28 2823 22 6.65987e+06 291594 500653. 1732.36 1.56 0.118761 0.104682 21970 115934 -1 2222 22 1316 1872 151206 33962 4.21688 4.21688 -140.981 -4.21688 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0277203 0.0245811 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17752 1 0.03 -1 -1 30220 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55872 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.1 MiB 0.15 975 10087 2133 7508 446 54.6 MiB 0.17 0.00 3.91407 -118.639 -3.91407 3.91407 0.77 0.000755506 0.000698542 0.0368872 0.0341304 28 2731 23 6.65987e+06 418374 500653. 1732.36 1.24 0.12857 0.11318 21970 115934 -1 2057 20 1108 1918 158606 34327 3.08711 3.08711 -113.733 -3.08711 0 0 612192. 2118.31 0.25 0.08 0.13 -1 -1 0.25 0.0307685 0.0271144 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17292 1 0.03 -1 -1 30096 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 15.9 MiB 0.10 889 13153 5130 6680 1343 54.5 MiB 0.18 0.00 4.00941 -121.212 -4.00941 4.00941 0.76 0.00068391 0.000632583 0.0487526 0.0451453 36 2058 25 6.65987e+06 304272 612192. 2118.31 3.34 0.250477 0.218197 23410 145293 -1 1756 22 1169 2078 177723 38783 3.19465 3.19465 -111.854 -3.19465 0 0 782063. 2706.10 0.28 0.11 0.14 -1 -1 0.28 0.0279006 0.0244395 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30444 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55900 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 16.1 MiB 0.32 1135 8213 1899 5522 792 54.6 MiB 0.14 0.00 4.53182 -135.539 -4.53182 4.53182 0.77 0.000758055 0.000700954 0.0356852 0.033012 26 2623 18 6.65987e+06 278916 477104. 1650.88 1.18 0.12572 0.110973 21682 110474 -1 2368 21 1303 1831 165388 35688 3.40711 3.40711 -123.324 -3.40711 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0320751 0.028189 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17528 1 0.03 -1 -1 30376 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1054 11759 3077 7738 944 54.8 MiB 0.18 0.00 3.70469 -122.012 -3.70469 3.70469 0.76 0.000774069 0.00071626 0.0450054 0.0416505 26 2603 20 6.65987e+06 393018 477104. 1650.88 1.23 0.135751 0.119997 21682 110474 -1 2276 20 1247 2070 193989 40883 3.19031 3.19031 -120.444 -3.19031 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0310789 0.0273123 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30340 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1080 10772 2746 7404 622 54.9 MiB 0.18 0.01 4.49669 -137.938 -4.49669 4.49669 0.76 0.000806952 0.000746924 0.0405584 0.0375022 26 2753 20 6.65987e+06 456408 477104. 1650.88 1.14 0.135511 0.119575 21682 110474 -1 2430 19 1356 2027 187831 40752 3.34871 3.34871 -125.16 -3.34871 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0312106 0.0274915 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30204 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.0 MiB 0.10 888 10593 2829 7083 681 54.6 MiB 0.15 0.00 3.98836 -118.206 -3.98836 3.98836 0.77 0.00069574 0.000643958 0.0376345 0.0348176 32 2047 27 6.65987e+06 367662 554710. 1919.41 0.96 0.127631 0.112319 22834 132086 -1 1762 21 1185 1905 150952 34082 3.31585 3.31585 -110.543 -3.31585 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0289385 0.0253488 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30316 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 16.3 MiB 0.12 1026 6999 1560 5055 384 54.9 MiB 0.13 0.00 4.76946 -136.875 -4.76946 4.76946 0.76 0.000712978 0.000659602 0.0286601 0.0265653 32 2509 22 6.65987e+06 291594 554710. 1919.41 0.97 0.11494 0.10104 22834 132086 -1 2253 21 1645 2367 215984 47407 3.86471 3.86471 -132.099 -3.86471 0 0 701300. 2426.64 0.23 0.09 0.13 -1 -1 0.23 0.0297745 0.0261222 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1149 15584 5177 7856 2551 55.1 MiB 0.27 0.01 4.99307 -147.134 -4.99307 4.99307 0.76 0.000788153 0.000729192 0.0681744 0.0631118 32 3069 42 6.65987e+06 291594 554710. 1919.41 1.17 0.186142 0.164826 22834 132086 -1 2399 17 1438 2208 208470 43963 4.12863 4.12863 -134.556 -4.12863 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0280267 0.0247871 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 16.4 MiB 0.17 1089 11245 3394 6770 1081 54.8 MiB 0.19 0.00 3.85398 -125.73 -3.85398 3.85398 0.78 0.000807642 0.000747188 0.0516639 0.047823 32 2730 18 6.65987e+06 266238 554710. 1919.41 1.00 0.143683 0.127395 22834 132086 -1 2398 18 1451 2567 233088 49790 3.40505 3.40505 -122.013 -3.40505 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0300601 0.0265131 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17524 1 0.03 -1 -1 30172 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55396 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 15.5 MiB 0.10 769 15493 4232 9363 1898 54.1 MiB 0.18 0.00 3.34618 -101.012 -3.34618 3.34618 0.76 0.000604774 0.000559074 0.0501089 0.0463725 28 1826 30 6.65987e+06 304272 500653. 1732.36 2.60 0.192324 0.167659 21970 115934 -1 1625 14 694 1078 90111 19721 2.44711 2.44711 -93.0968 -2.44711 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0184864 0.0162985 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.14 17624 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 16.3 MiB 0.15 904 12345 3635 7531 1179 54.7 MiB 0.19 0.00 3.9733 -136.305 -3.9733 3.9733 0.77 0.000737857 0.00068236 0.0523758 0.0484676 26 2727 37 6.65987e+06 253560 477104. 1650.88 3.67 0.241981 0.211199 21682 110474 -1 2212 21 1517 2090 206262 44954 3.65937 3.65937 -135.532 -3.65937 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0302991 0.026563 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17880 1 0.03 -1 -1 30348 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 16.6 MiB 0.17 1234 10649 2580 7238 831 54.8 MiB 0.21 0.01 5.507 -161.149 -5.507 5.507 0.84 0.000830255 0.000766597 0.0408497 0.0376464 32 3264 39 6.65987e+06 354984 554710. 1919.41 1.25 0.151341 0.133208 22834 132086 -1 2595 17 1763 2839 245826 54662 4.57622 4.57622 -149.311 -4.57622 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0302308 0.0268017 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30368 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 16.3 MiB 0.23 868 6791 1309 5265 217 54.8 MiB 0.11 0.00 4.3812 -128.187 -4.3812 4.3812 0.80 0.000754655 0.00069787 0.0260179 0.0240794 30 2014 17 6.65987e+06 393018 526063. 1820.29 1.05 0.0960009 0.0849562 22546 126617 -1 1689 12 782 1245 70711 17188 2.83751 2.83751 -109.167 -2.83751 0 0 666494. 2306.21 0.25 0.05 0.13 -1 -1 0.25 0.0219093 0.0195696 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30324 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 15.9 MiB 0.06 691 10228 2870 6479 879 54.4 MiB 0.14 0.00 3.33678 -100.638 -3.33678 3.33678 0.76 0.000640247 0.000592661 0.0356667 0.0330178 26 1930 26 6.65987e+06 329628 477104. 1650.88 1.28 0.124574 0.110233 21682 110474 -1 1706 20 1049 1658 153560 34748 2.70071 2.70071 -101.414 -2.70071 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0220872 0.0193663 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18008 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1262 6623 1301 4680 642 54.9 MiB 0.15 0.01 6.41663 -184.149 -6.41663 6.41663 0.77 0.000913629 0.00084658 0.0337729 0.0313542 30 3208 24 6.65987e+06 316950 526063. 1820.29 1.42 0.156139 0.13881 22546 126617 -1 2520 18 1429 2091 168446 34365 4.94434 4.94434 -166.344 -4.94434 0 0 666494. 2306.21 0.24 0.09 0.14 -1 -1 0.24 0.0340628 0.0301283 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17648 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 16.0 MiB 0.26 921 16959 4303 11211 1445 54.7 MiB 0.21 0.00 4.44175 -133.512 -4.44175 4.44175 0.77 0.00032144 0.00029402 0.0558002 0.0516661 26 2337 25 6.65987e+06 405696 477104. 1650.88 0.95 0.14852 0.131662 21682 110474 -1 1867 21 1104 1793 141106 32255 3.95091 3.95091 -125.833 -3.95091 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0310634 0.0272435 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17056 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55508 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 15.7 MiB 0.05 793 12375 3802 6579 1994 54.2 MiB 0.14 0.00 3.21869 -96.935 -3.21869 3.21869 0.77 0.000595213 0.000550638 0.0398871 0.0369499 30 1751 15 6.65987e+06 291594 526063. 1820.29 0.88 0.103758 0.0918224 22546 126617 -1 1572 12 644 1061 84679 17571 2.40905 2.40905 -93.077 -2.40905 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.016195 0.0143576 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30212 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.3 MiB 0.14 997 10448 2232 7093 1123 55.0 MiB 0.14 0.00 5.44618 -130.736 -5.44618 5.44618 0.77 0.000767356 0.000709003 0.0386703 0.0357849 28 3007 35 6.65987e+06 431052 500653. 1732.36 5.70 0.24615 0.214605 21970 115934 -1 2343 23 1462 2748 236954 52951 4.89482 4.89482 -137.056 -4.89482 0 0 612192. 2118.31 0.21 0.10 0.13 -1 -1 0.21 0.0343689 0.0301899 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17124 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55516 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 15.6 MiB 0.09 805 9600 2394 6142 1064 54.2 MiB 0.13 0.00 3.39504 -104.25 -3.39504 3.39504 0.78 0.000612991 0.000566853 0.0345364 0.0319848 30 1782 20 6.65987e+06 253560 526063. 1820.29 1.02 0.108491 0.0955983 22546 126617 -1 1546 18 834 1415 101768 21800 2.62751 2.62751 -99.5778 -2.62751 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0221063 0.0193589 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17248 1 0.03 -1 -1 30360 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55712 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.0 MiB 0.15 870 16295 4607 9720 1968 54.4 MiB 0.19 0.00 3.88231 -108.178 -3.88231 3.88231 0.76 0.0006428 0.000595526 0.0510136 0.0472439 26 1944 27 6.65987e+06 418374 477104. 1650.88 1.04 0.132683 0.117318 21682 110474 -1 1689 19 761 1386 110592 23531 2.60605 2.60605 -99.3901 -2.60605 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0247794 0.0216797 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30316 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 16.2 MiB 0.25 1186 15151 5050 8219 1882 54.9 MiB 0.24 0.00 4.37661 -129.138 -4.37661 4.37661 0.76 0.00075078 0.000694784 0.0641139 0.0594109 26 3119 40 6.65987e+06 304272 477104. 1650.88 3.68 0.268818 0.235149 21682 110474 -1 2478 20 1563 2368 224172 47722 3.52557 3.52557 -122.515 -3.52557 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0308295 0.0271518 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.0 MiB 0.17 884 5548 1103 3958 487 54.7 MiB 0.10 0.00 4.37207 -129.772 -4.37207 4.37207 0.77 0.000784523 0.000725871 0.0249249 0.0231271 32 2111 21 6.65987e+06 304272 554710. 1919.41 0.97 0.116448 0.102176 22834 132086 -1 1777 21 1262 1916 174451 37937 3.69957 3.69957 -126.807 -3.69957 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0320268 0.0281471 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.10 17908 1 0.03 -1 -1 30376 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 16.3 MiB 0.20 1040 15391 4199 8930 2262 54.7 MiB 0.23 0.00 4.54089 -136.701 -4.54089 4.54089 0.78 0.000762513 0.000705371 0.0605882 0.0560587 32 2278 21 6.65987e+06 342306 554710. 1919.41 0.96 0.152172 0.135142 22834 132086 -1 2054 18 1085 1880 153375 33556 3.67131 3.67131 -128.336 -3.67131 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0286702 0.0253405 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.19 17232 1 0.03 -1 -1 30492 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55652 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 15.9 MiB 0.24 821 7476 1923 4958 595 54.3 MiB 0.12 0.00 4.66411 -131.468 -4.66411 4.66411 0.79 0.000641925 0.000594175 0.0302543 0.028047 30 1894 22 6.65987e+06 202848 526063. 1820.29 0.90 0.107874 0.0948136 22546 126617 -1 1624 14 710 974 70441 15044 3.08625 3.08625 -109.988 -3.08625 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0199318 0.0176383 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.16 17860 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.0 MiB 0.23 768 7736 1918 4969 849 54.6 MiB 0.13 0.00 3.69598 -115.422 -3.69598 3.69598 0.76 0.00070283 0.00065072 0.0328115 0.0303987 30 1921 19 6.65987e+06 240882 526063. 1820.29 0.92 0.113229 0.0996431 22546 126617 -1 1619 18 932 1376 92580 20719 2.92851 2.92851 -107.297 -2.92851 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0255908 0.0224945 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.17 17800 1 0.03 -1 -1 30340 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.2 MiB 0.23 822 9815 2052 6788 975 54.8 MiB 0.12 0.00 3.34001 -95.394 -3.34001 3.34001 0.76 0.000727649 0.0006728 0.0358061 0.0332055 28 2229 22 6.65987e+06 418374 500653. 1732.36 1.16 0.122325 0.107742 21970 115934 -1 1832 22 1224 2130 173905 38710 2.64939 2.64939 -93.3317 -2.64939 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0307324 0.0268705 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.14 17588 1 0.03 -1 -1 30384 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55612 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 15.8 MiB 0.14 864 12623 3003 8699 921 54.3 MiB 0.15 0.00 4.17801 -101.983 -4.17801 4.17801 0.80 0.000639483 0.000591309 0.0400542 0.0370786 26 2239 22 6.65987e+06 443730 477104. 1650.88 1.21 0.118702 0.104634 21682 110474 -1 1914 19 1015 2039 186440 38393 3.35097 3.35097 -103.612 -3.35097 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0242591 0.0212259 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 16.0 MiB 0.25 739 8360 2842 3913 1605 54.5 MiB 0.13 0.00 4.07397 -113.958 -4.07397 4.07397 0.77 0.000687463 0.000634999 0.0368094 0.0340855 32 2005 22 6.65987e+06 215526 554710. 1919.41 1.00 0.120032 0.105662 22834 132086 -1 1763 20 1303 2240 242408 51707 3.03391 3.03391 -107.365 -3.03391 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0273356 0.0239013 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17864 1 0.03 -1 -1 30212 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 15.9 MiB 0.21 854 4110 634 3368 108 54.5 MiB 0.09 0.00 3.78604 -125.597 -3.78604 3.78604 0.82 0.000724509 0.00067035 0.0187171 0.0173754 26 2646 39 6.65987e+06 253560 477104. 1650.88 1.45 0.125932 0.109484 21682 110474 -1 2026 18 1241 1781 164641 37062 2.92531 2.92531 -120.458 -2.92531 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0264559 0.0232472 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17192 1 0.03 -1 -1 30364 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55780 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 15.9 MiB 0.09 847 5711 1070 3973 668 54.5 MiB 0.09 0.00 4.49904 -123.598 -4.49904 4.49904 0.76 0.000685113 0.000634184 0.0205412 0.0190361 30 2271 20 6.65987e+06 405696 526063. 1820.29 1.04 0.10496 0.0919124 22546 126617 -1 1806 19 1021 1834 122434 29360 3.63843 3.63843 -114.998 -3.63843 0 0 666494. 2306.21 0.24 0.07 0.13 -1 -1 0.24 0.0273021 0.02414 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30400 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1096 14639 4278 7910 2451 55.1 MiB 0.24 0.00 5.13815 -159.632 -5.13815 5.13815 0.77 0.00076672 0.000710121 0.0626556 0.0578066 32 2952 19 6.65987e+06 278916 554710. 1919.41 1.03 0.147954 0.131701 22834 132086 -1 2538 22 1784 2655 251222 54380 4.33371 4.33371 -147.171 -4.33371 0 0 701300. 2426.64 0.34 0.10 0.15 -1 -1 0.34 0.0333906 0.029369 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1097 14331 4044 8499 1788 54.8 MiB 0.22 0.00 4.9662 -142.984 -4.9662 4.9662 0.77 0.000808877 0.000748042 0.0563854 0.0521996 28 2661 22 6.65987e+06 405696 500653. 1732.36 1.21 0.155773 0.138239 21970 115934 -1 2152 17 1066 1871 159197 33794 3.78603 3.78603 -129.572 -3.78603 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0288827 0.0255429 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1087 19136 6054 10420 2662 54.9 MiB 0.26 0.00 4.23232 -136.463 -4.23232 4.23232 0.76 0.000808387 0.000747277 0.0692832 0.06409 28 2731 22 6.65987e+06 469086 500653. 1732.36 1.19 0.16767 0.149278 21970 115934 -1 2390 22 1466 2513 234998 50095 3.45091 3.45091 -131.675 -3.45091 0 0 612192. 2118.31 0.24 0.10 0.12 -1 -1 0.24 0.0356979 0.0314049 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30224 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55632 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 15.7 MiB 0.21 753 14081 4985 6810 2286 54.3 MiB 0.18 0.00 3.61906 -107.365 -3.61906 3.61906 0.77 0.000633124 0.000585615 0.0531786 0.0491447 32 1906 21 6.65987e+06 240882 554710. 1919.41 0.95 0.128142 0.113549 22834 132086 -1 1766 19 1120 1834 183572 38638 2.64945 2.64945 -99.7845 -2.64945 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0242527 0.02124 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30436 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 16.4 MiB 0.24 993 13583 3880 7603 2100 54.9 MiB 0.21 0.00 4.75724 -141.541 -4.75724 4.75724 0.77 0.0007912 0.000732214 0.0627559 0.0581492 32 2153 21 6.65987e+06 266238 554710. 1919.41 0.99 0.157815 0.140337 22834 132086 -1 1973 20 1599 2484 209175 45109 3.74357 3.74357 -135.301 -3.74357 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0315909 0.027776 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 16.3 MiB 0.26 984 6328 1212 4906 210 55.0 MiB 0.12 0.00 5.08874 -146.537 -5.08874 5.08874 0.79 0.000755643 0.000699221 0.0271358 0.0251332 30 2626 26 6.65987e+06 304272 526063. 1820.29 1.05 0.12217 0.107201 22546 126617 -1 2149 21 1230 1862 158097 33471 4.07225 4.07225 -137.514 -4.07225 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0310913 0.0273526 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30180 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1115 15391 3929 9868 1594 54.8 MiB 0.23 0.00 5.2191 -153.261 -5.2191 5.2191 0.77 0.000742932 0.000686475 0.0588374 0.0544235 32 2747 20 6.65987e+06 354984 554710. 1919.41 0.98 0.146972 0.130513 22834 132086 -1 2305 20 1311 2029 178409 39289 4.38123 4.38123 -147.75 -4.38123 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0299712 0.0263609 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30340 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 16.4 MiB 0.86 822 9963 2514 6047 1402 55.0 MiB 0.16 0.00 4.35758 -125.649 -4.35758 4.35758 0.77 0.000785263 0.000726654 0.0398707 0.0368972 30 1974 19 6.65987e+06 393018 526063. 1820.29 0.94 0.130531 0.11521 22546 126617 -1 1495 15 828 1360 91727 21330 2.81791 2.81791 -104.887 -2.81791 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.025557 0.0226478 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30472 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1042 15822 5317 8613 1892 54.8 MiB 0.26 0.00 4.76549 -137.992 -4.76549 4.76549 0.77 0.00078703 0.000728051 0.071293 0.0660154 30 2488 24 6.65987e+06 253560 526063. 1820.29 1.06 0.16958 0.150993 22546 126617 -1 2069 21 1149 2057 150180 31960 3.72731 3.72731 -128.729 -3.72731 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0343766 0.0302769 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30304 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 16.4 MiB 0.33 913 8934 2134 6274 526 54.8 MiB 0.15 0.00 4.51892 -126.294 -4.51892 4.51892 0.77 0.000781044 0.000722184 0.0378366 0.0350734 26 2645 30 6.65987e+06 367662 477104. 1650.88 1.54 0.145572 0.128037 21682 110474 -1 2121 19 1386 2170 170633 39427 3.37797 3.37797 -121.483 -3.37797 0 0 585099. 2024.56 0.22 0.08 0.12 -1 -1 0.22 0.0298733 0.0262529 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17104 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 15.8 MiB 0.09 724 12416 3530 7132 1754 54.3 MiB 0.15 0.00 3.74649 -112.139 -3.74649 3.74649 0.77 0.000596479 0.000551931 0.0460438 0.0426373 32 1700 22 6.65987e+06 190170 554710. 1919.41 0.90 0.118458 0.104936 22834 132086 -1 1534 21 929 1380 130480 28595 2.72685 2.72685 -103.991 -2.72685 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0258915 0.0226593 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30312 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 16.4 MiB 0.27 989 15430 4612 8155 2663 54.8 MiB 0.22 0.00 4.41154 -133.367 -4.41154 4.41154 0.77 0.000793534 0.000733063 0.0604122 0.0558985 32 2380 21 6.65987e+06 380340 554710. 1919.41 1.00 0.155177 0.137527 22834 132086 -1 2073 18 1303 2138 187834 41244 3.62951 3.62951 -127.335 -3.62951 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0293171 0.025864 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.14 17636 1 0.04 -1 -1 30360 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 16.4 MiB 0.27 902 8685 2007 6399 279 54.9 MiB 0.17 0.00 4.76517 -143.598 -4.76517 4.76517 0.78 0.000827864 0.000764376 0.0427972 0.0396032 32 2498 23 6.65987e+06 253560 554710. 1919.41 1.04 0.145132 0.128099 22834 132086 -1 2151 22 1941 3080 276712 61374 3.89397 3.89397 -141.306 -3.89397 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0359772 0.0316647 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.12 17500 1 0.03 -1 -1 30092 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55780 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 16.0 MiB 0.23 946 12143 3182 7420 1541 54.5 MiB 0.16 0.00 4.15372 -120.605 -4.15372 4.15372 0.77 0.000634524 0.000587129 0.0451712 0.041801 28 2198 21 6.65987e+06 240882 500653. 1732.36 2.75 0.188076 0.164066 21970 115934 -1 1957 19 1048 1356 127513 26648 3.03971 3.03971 -111.986 -3.03971 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0241174 0.0211209 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17068 1 0.03 -1 -1 30372 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55612 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 15.6 MiB 0.09 732 8685 2467 5468 750 54.3 MiB 0.13 0.00 3.75938 -108.757 -3.75938 3.75938 0.77 0.000601426 0.000556468 0.0304195 0.028138 30 1696 18 6.65987e+06 266238 526063. 1820.29 0.93 0.0984783 0.0866847 22546 126617 -1 1507 18 803 1368 104175 22539 2.55231 2.55231 -96.7374 -2.55231 0 0 666494. 2306.21 0.24 0.06 0.14 -1 -1 0.24 0.0227844 0.0200464 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30480 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 16.3 MiB 0.15 1015 15533 4784 8284 2465 55.1 MiB 0.24 0.00 4.92983 -152.714 -4.92983 4.92983 0.76 0.000780698 0.000723661 0.0641891 0.0595642 28 2926 29 6.65987e+06 316950 500653. 1732.36 1.36 0.167291 0.149303 21970 115934 -1 2292 19 1614 2091 197374 43264 4.29003 4.29003 -152.823 -4.29003 0 0 612192. 2118.31 0.24 0.09 0.12 -1 -1 0.24 0.0313037 0.0279471 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30288 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1191 12305 3278 8039 988 54.9 MiB 0.18 0.00 4.93544 -150.743 -4.93544 4.93544 0.77 0.000770512 0.000712585 0.0486234 0.0450216 26 3092 31 6.65987e+06 354984 477104. 1650.88 1.62 0.15547 0.137476 21682 110474 -1 2655 20 1573 2503 218256 47338 4.62757 4.62757 -153.114 -4.62757 0 0 585099. 2024.56 0.21 0.09 0.12 -1 -1 0.21 0.0306479 0.0269718 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30316 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.4 MiB 0.07 1117 11004 2566 7834 604 55.1 MiB 0.18 0.00 5.28255 -141.369 -5.28255 5.28255 0.77 0.00079252 0.000734156 0.0403576 0.0373295 28 3039 24 6.65987e+06 456408 500653. 1732.36 3.32 0.236855 0.206417 21970 115934 -1 2567 21 1611 2858 271772 56783 4.58042 4.58042 -139.995 -4.58042 0 0 612192. 2118.31 0.21 0.11 0.08 -1 -1 0.21 0.0340429 0.0300298 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30112 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55772 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 15.9 MiB 0.21 750 7863 1674 5072 1117 54.5 MiB 0.12 0.00 3.28175 -94.6726 -3.28175 3.28175 0.77 0.000697817 0.000645292 0.0286817 0.0265623 30 1773 20 6.65987e+06 393018 526063. 1820.29 0.94 0.110303 0.0968998 22546 126617 -1 1473 17 889 1474 88770 20453 2.72971 2.72971 -90.9982 -2.72971 0 0 666494. 2306.21 0.22 0.07 0.08 -1 -1 0.22 0.0287211 0.025466 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30536 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55428 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 15.6 MiB 0.05 638 11948 3525 6694 1729 54.1 MiB 0.13 0.00 3.4543 -94.1654 -3.4543 3.4543 0.76 0.000588701 0.000545278 0.0430848 0.0399194 28 1534 21 6.65987e+06 266238 500653. 1732.36 0.87 0.114116 0.100727 21970 115934 -1 1368 19 861 1262 113980 25373 2.77177 2.77177 -90.9328 -2.77177 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0231014 0.0202493 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 18044 1 0.03 -1 -1 30300 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 16.7 MiB 0.17 1319 10542 2869 6884 789 55.0 MiB 0.19 0.00 4.22384 -138.261 -4.22384 4.22384 0.76 0.000880843 0.000816188 0.0495142 0.0459215 26 4079 35 6.65987e+06 329628 477104. 1650.88 6.62 0.287046 0.250927 21682 110474 -1 3170 20 1944 3172 299188 64276 4.28457 4.28457 -143.573 -4.28457 0 0 585099. 2024.56 0.21 0.11 0.11 -1 -1 0.21 0.0361701 0.0319107 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.15 17808 1 0.03 -1 -1 30300 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 16.3 MiB 0.83 967 9417 2580 6478 359 54.9 MiB 0.16 0.00 5.3126 -152.671 -5.3126 5.3126 0.77 0.000782616 0.000724374 0.0429554 0.039779 30 2338 19 6.65987e+06 266238 526063. 1820.29 1.04 0.135188 0.11964 22546 126617 -1 1893 17 956 1461 106897 22664 4.14583 4.14583 -139.043 -4.14583 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0277293 0.0245035 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 15.9 MiB 0.80 910 12186 3808 6300 2078 54.5 MiB 0.18 0.00 4.17204 -128.915 -4.17204 4.17204 0.77 0.000718046 0.00066393 0.0518166 0.0479523 30 2041 19 6.65987e+06 228204 526063. 1820.29 0.94 0.135279 0.119931 22546 126617 -1 1736 17 890 1321 91024 19426 3.15477 3.15477 -122.128 -3.15477 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0253459 0.0223544 126 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 15.9 MiB 0.11 997 13726 4134 8495 1097 54.5 MiB 0.21 0.00 4.87399 -127.071 -4.87399 4.87399 0.78 0.000727608 0.000672155 0.0495784 0.0457557 30 2088 17 6.65987e+06 380340 526063. 1820.29 0.92 0.131832 0.11678 22546 126617 -1 1865 15 741 1209 95124 20350 3.25465 3.25465 -111.005 -3.25465 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0233893 0.0206984 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30128 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 16.3 MiB 0.21 1094 9732 2284 6801 647 55.1 MiB 0.17 0.01 4.71929 -136.272 -4.71929 4.71929 0.78 0.00079886 0.000739044 0.0388886 0.036061 26 2678 25 6.65987e+06 418374 477104. 1650.88 1.34 0.142207 0.125129 21682 110474 -1 2393 24 1582 2602 223423 48566 3.68851 3.68851 -129.214 -3.68851 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0371082 0.0325453 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30132 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.0 MiB 0.15 968 12693 2914 8596 1183 54.6 MiB 0.20 0.01 3.66981 -110.801 -3.66981 3.66981 0.78 0.000714571 0.00066093 0.0457877 0.0423628 32 2210 17 6.65987e+06 393018 554710. 1919.41 0.96 0.124548 0.110273 22834 132086 -1 1958 18 1098 1903 171607 35985 3.11751 3.11751 -113.125 -3.11751 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0260866 0.0229206 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 16.4 MiB 0.17 1162 15493 5220 7522 2751 55.1 MiB 0.25 0.01 4.81692 -150.127 -4.81692 4.81692 0.76 0.000921068 0.000852665 0.0656821 0.0607486 32 2948 29 6.65987e+06 304272 554710. 1919.41 1.09 0.166592 0.147972 22834 132086 -1 2546 20 1885 2878 274744 57194 4.24783 4.24783 -147.506 -4.24783 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0314779 0.0277685 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.17 17492 1 0.03 -1 -1 30088 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 16.5 MiB 0.35 1013 10448 2457 7443 548 55.2 MiB 0.19 0.01 4.61703 -140.056 -4.61703 4.61703 0.78 0.000811164 0.000750146 0.0410989 0.0380342 26 2897 45 6.65987e+06 431052 477104. 1650.88 1.84 0.174978 0.153783 21682 110474 -1 2365 22 1399 2180 199139 43479 3.54965 3.54965 -133.05 -3.54965 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0346405 0.0304155 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17240 1 0.03 -1 -1 30268 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55536 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 15.7 MiB 0.12 669 12030 4965 6160 905 54.2 MiB 0.14 0.00 3.76255 -110.557 -3.76255 3.76255 0.82 0.000624945 0.000577847 0.0472565 0.043742 32 1503 23 6.65987e+06 215526 554710. 1919.41 0.96 0.120647 0.106724 22834 132086 -1 1397 23 1059 1512 176285 36274 2.60471 2.60471 -95.6277 -2.60471 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0273273 0.0238118 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 16.1 MiB 0.24 897 13992 5018 7267 1707 54.6 MiB 0.18 0.00 3.93547 -124.701 -3.93547 3.93547 0.85 0.000417228 0.000380653 0.0536353 0.0495528 28 2133 20 6.65987e+06 253560 500653. 1732.36 0.94 0.132493 0.117544 21970 115934 -1 1904 19 1303 1735 158871 33826 3.09557 3.09557 -116.003 -3.09557 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0263024 0.0230607 116 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.20 17636 1 0.05 -1 -1 30376 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.3 MiB 0.12 945 14020 3581 8011 2428 54.9 MiB 0.18 0.00 4.66818 -124.475 -4.66818 4.66818 0.78 0.000512854 0.000467553 0.0380232 0.0348792 32 2158 20 6.65987e+06 469086 554710. 1919.41 1.05 0.112396 0.0992742 22834 132086 -1 1982 21 1363 2327 223016 46242 3.90897 3.90897 -120.541 -3.90897 0 0 701300. 2426.64 0.26 0.09 0.16 -1 -1 0.26 0.0310017 0.0272195 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.15 17408 1 0.03 -1 -1 30408 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 16.0 MiB 0.21 809 8448 1963 6049 436 54.4 MiB 0.12 0.00 4.16472 -111.492 -4.16472 4.16472 0.80 0.000461542 0.000419726 0.0297058 0.0274769 26 2270 36 6.65987e+06 266238 477104. 1650.88 1.47 0.11785 0.103533 21682 110474 -1 1871 19 1206 1526 157886 36317 3.17891 3.17891 -109.354 -3.17891 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0237135 0.0207374 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.17 17552 1 0.03 -1 -1 30044 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 15.7 MiB 0.20 618 8852 1890 6315 647 54.4 MiB 0.11 0.00 3.69503 -110.464 -3.69503 3.69503 0.77 0.000646591 0.000598668 0.035527 0.0329103 32 2186 22 6.65987e+06 202848 554710. 1919.41 1.02 0.113618 0.100086 22834 132086 -1 1635 22 1401 2382 209459 47901 3.00105 3.00105 -106.146 -3.00105 0 0 701300. 2426.64 0.25 0.09 0.14 -1 -1 0.25 0.0278298 0.0243351 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17684 1 0.03 -1 -1 30088 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 16.3 MiB 0.23 938 16973 4485 9905 2583 55.0 MiB 0.23 0.00 4.16177 -122.328 -4.16177 4.16177 0.77 0.000790111 0.000731071 0.062721 0.0580224 32 2145 19 6.65987e+06 443730 554710. 1919.41 0.97 0.154529 0.137367 22834 132086 -1 1880 20 1316 1998 180565 38329 2.84876 2.84876 -107.858 -2.84876 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0319293 0.0280211 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17540 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 16.0 MiB 0.17 818 9872 2327 5876 1669 54.5 MiB 0.12 0.00 3.9535 -119.787 -3.9535 3.9535 0.77 0.000623683 0.000577144 0.0367224 0.0340029 28 2124 19 6.65987e+06 240882 500653. 1732.36 0.91 0.108963 0.0960765 21970 115934 -1 1806 17 995 1465 131415 28443 3.01857 3.01857 -110.007 -3.01857 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0220066 0.0193276 108 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.18 17660 1 0.03 -1 -1 30064 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56044 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 16.1 MiB 0.25 854 7007 1324 4687 996 54.7 MiB 0.09 0.00 3.67932 -112.828 -3.67932 3.67932 0.76 0.000753761 0.000696277 0.0275192 0.0254942 28 2383 21 6.65987e+06 393018 500653. 1732.36 3.10 0.216377 0.187505 21970 115934 -1 1909 18 1080 1892 145796 33897 2.91691 2.91691 -104.075 -2.91691 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0277866 0.0244885 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.3 MiB 0.75 956 13055 3385 8531 1139 54.8 MiB 0.19 0.00 4.2257 -136.613 -4.2257 4.2257 0.76 0.000816244 0.000754954 0.0521716 0.048256 32 2201 21 6.65987e+06 405696 554710. 1919.41 0.95 0.148348 0.131374 22834 132086 -1 1941 18 1308 1778 151826 32964 3.21883 3.21883 -125.923 -3.21883 0 0 701300. 2426.64 0.23 0.08 0.09 -1 -1 0.23 0.0300691 0.0265156 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17364 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55624 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 15.9 MiB 0.23 770 8481 2112 5900 469 54.3 MiB 0.12 0.00 3.26384 -102.093 -3.26384 3.26384 0.76 0.000679099 0.000627875 0.0350929 0.0324858 30 1729 18 6.65987e+06 215526 526063. 1820.29 0.80 0.0846616 0.0750279 22546 126617 -1 1503 19 761 1221 95092 19735 2.55631 2.55631 -95.6342 -2.55631 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0256021 0.0224129 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30228 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55784 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 15.9 MiB 0.14 877 7823 1725 5526 572 54.5 MiB 0.12 0.00 4.21052 -129.412 -4.21052 4.21052 0.76 0.000666672 0.000617124 0.0311439 0.0288463 28 2285 20 6.65987e+06 240882 500653. 1732.36 0.95 0.1099 0.0966055 21970 115934 -1 2078 20 1248 1836 166912 36505 3.20805 3.20805 -121.542 -3.20805 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.026711 0.0233997 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17880 1 0.03 -1 -1 30308 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 16.1 MiB 0.13 1033 8591 2028 5962 601 54.7 MiB 0.14 0.00 4.5425 -136.752 -4.5425 4.5425 0.77 0.000714334 0.00066099 0.035096 0.0325124 26 2664 26 6.65987e+06 278916 477104. 1650.88 1.36 0.128947 0.113499 21682 110474 -1 2367 21 1690 2368 211167 46647 3.95911 3.95911 -137.483 -3.95911 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0305109 0.0268279 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30156 -1 -1 28 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55856 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 15.9 MiB 0.37 878 11177 3323 6945 909 54.5 MiB 0.16 0.00 4.7062 -118.142 -4.7062 4.7062 0.76 0.000708593 0.00065643 0.0426392 0.0395104 30 1879 16 6.65987e+06 354984 526063. 1820.29 0.87 0.121444 0.107425 22546 126617 -1 1638 14 670 1208 68806 16483 3.29783 3.29783 -105.768 -3.29783 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0217812 0.0192698 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30440 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56144 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 16.7 MiB 0.24 1007 9495 2407 6691 397 54.8 MiB 0.17 0.00 5.16517 -161.462 -5.16517 5.16517 0.77 0.00082328 0.000761992 0.0439348 0.0407053 32 2678 20 6.65987e+06 291594 554710. 1919.41 1.02 0.14093 0.124675 22834 132086 -1 2222 20 1679 2362 195393 44802 3.92137 3.92137 -142.329 -3.92137 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0331861 0.0292534 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.13 17080 1 0.03 -1 -1 30364 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 15.6 MiB 0.09 794 9181 2203 6150 828 54.2 MiB 0.11 0.00 3.53041 -99.5418 -3.53041 3.53041 0.77 0.000583201 0.000540212 0.0323373 0.0299758 32 1773 16 6.65987e+06 228204 554710. 1919.41 0.89 0.0966891 0.0852805 22834 132086 -1 1604 19 752 1211 102513 23097 2.60551 2.60551 -94.248 -2.60551 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.0219334 0.0191637 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.16 17768 1 0.03 -1 -1 30288 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 16.5 MiB 0.36 947 7201 1402 5250 549 54.9 MiB 0.07 0.00 4.0805 -134.669 -4.0805 4.0805 0.62 0.000365854 0.000334086 0.01409 0.0128704 32 2473 21 6.65987e+06 418374 554710. 1919.41 1.06 0.114927 0.10011 22834 132086 -1 2156 19 1545 2160 210192 45671 3.54537 3.54537 -132.541 -3.54537 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.032589 0.0287233 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.17 17764 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.2 MiB 0.28 692 9368 2494 5834 1040 54.7 MiB 0.17 0.00 3.5233 -119.857 -3.5233 3.5233 0.77 0.000776205 0.000716377 0.0510597 0.0471848 32 1760 21 6.65987e+06 202848 554710. 1919.41 0.98 0.143502 0.127001 22834 132086 -1 1558 19 1364 1892 193443 41146 2.89597 2.89597 -118.248 -2.89597 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0297268 0.0260989 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.17 17520 1 0.04 -1 -1 30432 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 16.1 MiB 0.37 963 9383 2362 6118 903 54.7 MiB 0.15 0.01 4.19332 -127.565 -4.19332 4.19332 0.77 0.000775219 0.000716745 0.0370017 0.0342115 32 2277 22 6.65987e+06 393018 554710. 1919.41 0.94 0.130342 0.114762 22834 132086 -1 1855 20 990 1457 109425 25577 2.97111 2.97111 -108.933 -2.97111 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0307276 0.0270048 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30376 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 16.6 MiB 0.35 1323 16127 4193 10390 1544 54.8 MiB 0.33 0.01 6.49946 -194.782 -6.49946 6.49946 0.76 0.00085013 0.000786691 0.0729305 0.0675961 28 3841 27 6.65987e+06 316950 500653. 1732.36 2.24 0.188181 0.167723 21970 115934 -1 2905 21 1839 2628 251972 52299 5.45214 5.45214 -181.895 -5.45214 0 0 612192. 2118.31 0.21 0.11 0.09 -1 -1 0.21 0.0363132 0.0320901 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.19 17552 1 0.02 -1 -1 30116 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55460 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 15.6 MiB 0.16 701 10895 2966 6376 1553 54.2 MiB 0.12 0.00 3.19181 -99.2246 -3.19181 3.19181 0.77 0.000531922 0.000487938 0.0370055 0.0342751 32 1547 19 6.65987e+06 215526 554710. 1919.41 0.95 0.0944989 0.0836373 22834 132086 -1 1375 19 694 910 86162 19123 2.17571 2.17571 -87.755 -2.17571 0 0 701300. 2426.64 0.24 0.05 0.14 -1 -1 0.24 0.0170711 0.0150569 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30428 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 15.8 MiB 0.11 559 11200 4645 5368 1187 54.4 MiB 0.12 0.00 4.03052 -111.683 -4.03052 4.03052 0.77 0.000651949 0.00060283 0.0461642 0.0427021 32 1739 26 6.65987e+06 202848 554710. 1919.41 1.04 0.128746 0.113609 22834 132086 -1 1404 24 1150 1712 179758 44272 2.91997 2.91997 -103.917 -2.91997 0 0 701300. 2426.64 0.31 0.05 0.14 -1 -1 0.31 0.0161876 0.0143175 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.1 MiB 0.07 882 13663 3967 7775 1921 54.6 MiB 0.21 0.00 3.38183 -111.047 -3.38183 3.38183 0.78 0.000685702 0.00063466 0.0522859 0.0483939 32 2151 26 6.65987e+06 266238 554710. 1919.41 1.02 0.137654 0.121803 22834 132086 -1 1916 20 1255 2221 219353 46775 2.62237 2.62237 -107.809 -2.62237 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0269857 0.0236376 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30320 -1 -1 27 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55452 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 15.6 MiB 0.08 461 9234 2985 4025 2224 54.2 MiB 0.08 0.00 3.09981 -73.1644 -3.09981 3.09981 0.76 0.000515556 0.000476172 0.0278046 0.0256839 34 1293 24 6.65987e+06 342306 585099. 2024.56 3.01 0.189014 0.162718 23122 138558 -1 1035 19 702 1212 90133 22435 2.45825 2.45825 -69.0516 -2.45825 0 0 742403. 2568.87 0.25 0.05 0.15 -1 -1 0.25 0.0199335 0.01743 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30236 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 16.3 MiB 0.19 1082 15273 5386 7964 1923 54.8 MiB 0.25 0.01 3.97418 -128.905 -3.97418 3.97418 0.77 0.000789744 0.000730121 0.068954 0.0637759 32 2806 20 6.65987e+06 253560 554710. 1919.41 1.03 0.162831 0.144993 22834 132086 -1 2392 18 1427 2545 248890 50807 3.21465 3.21465 -124.458 -3.21465 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0295226 0.026025 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17524 1 0.04 -1 -1 30288 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 16.4 MiB 0.34 841 9951 2183 7152 616 55.1 MiB 0.17 0.00 4.37472 -138.365 -4.37472 4.37472 0.77 0.000821721 0.000758146 0.0406932 0.0376333 32 2351 24 6.65987e+06 418374 554710. 1919.41 1.01 0.144295 0.127138 22834 132086 -1 1885 17 1371 1959 157602 36595 3.31083 3.31083 -127.706 -3.31083 0 0 701300. 2426.64 0.21 0.04 0.09 -1 -1 0.21 0.0161903 0.0144927 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30040 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 17.0 MiB 2.02 849 12139 5116 6732 291 55.5 MiB 0.16 0.00 5.4594 -159.287 -5.4594 5.4594 0.79 0.000768915 0.000710674 0.0603732 0.0559147 44 2858 34 6.95648e+06 188184 787024. 2723.27 3.32 0.239234 0.210168 27778 195446 -1 2054 23 1595 2412 261819 50714 4.52711 4.52711 -154.66 -4.52711 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0346282 0.0304093 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30412 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 17.0 MiB 1.97 750 10998 3991 5243 1764 55.6 MiB 0.14 0.00 4.63092 -138.355 -4.63092 4.63092 0.78 0.000771748 0.000714638 0.05465 0.0506452 38 2853 47 6.95648e+06 217135 678818. 2348.85 2.23 0.213403 0.187085 26626 170182 -1 1996 20 1649 2307 235074 48987 4.63691 4.63691 -157.132 -4.63691 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0309417 0.0271952 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30468 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 16.9 MiB 1.07 1011 6839 1853 4585 401 55.3 MiB 0.10 0.00 3.76508 -124.296 -3.76508 3.76508 0.79 0.000683983 0.000631612 0.0301797 0.0279608 46 2328 26 6.95648e+06 217135 828058. 2865.25 3.98 0.233763 0.202217 28066 200906 -1 2008 21 1082 1436 128834 25005 3.73092 3.73092 -122.715 -3.73092 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0287021 0.025218 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.17 17812 1 0.03 -1 -1 30348 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 16.8 MiB 0.30 653 13152 5791 6666 695 55.2 MiB 0.14 0.00 4.18338 -115.281 -4.18338 4.18338 0.78 0.000687236 0.000635535 0.055216 0.0510828 44 2618 34 6.95648e+06 275038 787024. 2723.27 2.82 0.207192 0.18168 27778 195446 -1 1711 25 1275 2118 201415 44152 3.99732 3.99732 -126.497 -3.99732 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0342989 0.0299916 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17696 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 16.9 MiB 0.72 735 12120 5042 6627 451 55.5 MiB 0.17 0.00 4.33299 -127.984 -4.33299 4.33299 0.79 0.000743818 0.000687902 0.0633305 0.0586378 48 2223 44 6.95648e+06 231611 865456. 2994.66 5.13 0.30551 0.26645 28354 207349 -1 1884 22 1358 2334 259214 50944 4.28441 4.28441 -139.666 -4.28441 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0325216 0.0286974 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 16.9 MiB 1.03 762 14779 6278 7942 559 55.5 MiB 0.16 0.00 3.0584 -114.242 -3.0584 3.0584 0.78 0.000784383 0.00072424 0.065219 0.0603168 46 2225 43 6.95648e+06 303989 828058. 2865.25 3.01 0.244774 0.214864 28066 200906 -1 1539 19 1196 1756 159826 32984 3.17337 3.17337 -115.942 -3.17337 0 0 1.01997e+06 3529.29 0.31 0.08 0.20 -1 -1 0.31 0.030091 0.0265541 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17356 1 0.03 -1 -1 30632 -1 -1 13 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 16.6 MiB 3.88 400 8118 3296 4253 569 55.0 MiB 0.08 0.00 3.56899 -93.1575 -3.56899 3.56899 0.78 0.000598375 0.000553472 0.0348554 0.0322904 38 1674 44 6.95648e+06 188184 678818. 2348.85 1.95 0.169046 0.146956 26626 170182 -1 1241 41 1298 2086 188726 43940 3.23833 3.23833 -100.228 -3.23833 0 0 902133. 3121.57 0.30 0.09 0.16 -1 -1 0.30 0.0364965 0.0316285 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30288 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.8 MiB 0.36 691 11983 4028 5840 2115 55.3 MiB 0.13 0.00 3.0166 -94.5957 -3.0166 3.0166 0.78 0.000647265 0.000598135 0.0421227 0.0389754 36 2604 43 6.95648e+06 361892 648988. 2245.63 2.85 0.18605 0.162088 26050 158493 -1 1741 22 1182 1828 208037 47635 3.52522 3.52522 -111.226 -3.52522 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0280363 0.0245189 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30052 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 16.7 MiB 1.90 579 9684 3905 5251 528 55.1 MiB 0.11 0.00 3.39469 -115.112 -3.39469 3.39469 0.79 0.000687922 0.000635758 0.0455465 0.0421659 44 2480 47 6.95648e+06 159232 787024. 2723.27 12.08 0.351182 0.302997 27778 195446 -1 1497 26 1302 1844 174865 38864 3.14846 3.14846 -119.064 -3.14846 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0333048 0.0289949 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.13 17316 1 0.03 -1 -1 30052 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 16.6 MiB 1.24 566 8134 3343 4546 245 55.2 MiB 0.10 0.00 3.30928 -114.291 -3.30928 3.30928 0.80 0.000676109 0.000625096 0.0377321 0.034919 42 1842 37 6.95648e+06 144757 744469. 2576.02 1.84 0.187923 0.163593 27202 183097 -1 1419 16 1009 1395 118038 26270 2.79112 2.79112 -111.706 -2.79112 0 0 949917. 3286.91 0.29 0.06 0.18 -1 -1 0.29 0.023147 0.0204045 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30444 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 16.6 MiB 1.75 471 10304 4280 5549 475 55.2 MiB 0.13 0.00 3.43453 -102.366 -3.43453 3.43453 0.82 0.000621069 0.000568656 0.0376706 0.0344468 46 1480 22 6.95648e+06 173708 828058. 2865.25 4.34 0.224516 0.193819 28066 200906 -1 1176 21 995 1393 121126 27567 2.95857 2.95857 -100.855 -2.95857 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0274923 0.0240197 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30248 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 16.4 MiB 1.40 590 10614 3394 4881 2339 55.1 MiB 0.09 0.00 3.37833 -114.652 -3.37833 3.37833 0.83 0.000453923 0.000411433 0.0323588 0.0295784 48 1986 30 6.95648e+06 144757 865456. 2994.66 3.74 0.174863 0.152428 28354 207349 -1 1425 18 1188 1515 160333 36502 2.83957 2.83957 -112.63 -2.83957 0 0 1.05005e+06 3633.38 0.35 0.07 0.20 -1 -1 0.35 0.0235972 0.0206995 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 17.0 MiB 1.87 833 13261 5618 7295 348 55.6 MiB 0.17 0.00 3.96008 -134.144 -3.96008 3.96008 0.80 0.000758271 0.000700593 0.062527 0.0578414 48 2714 45 6.95648e+06 217135 865456. 2994.66 5.29 0.296199 0.25906 28354 207349 -1 2164 32 1834 2694 471430 150384 3.49286 3.49286 -130.799 -3.49286 0 0 1.05005e+06 3633.38 0.35 0.18 0.20 -1 -1 0.35 0.0435375 0.0381562 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 17.0 MiB 0.85 789 9158 3216 4675 1267 55.5 MiB 0.11 0.00 4.48063 -134.265 -4.48063 4.48063 0.79 0.000790275 0.000730322 0.0412917 0.0381982 44 2194 24 6.95648e+06 318465 787024. 2723.27 2.06 0.163286 0.14324 27778 195446 -1 1772 20 1567 2172 223495 47699 4.00836 4.00836 -134.997 -4.00836 0 0 997811. 3452.63 0.32 0.09 0.20 -1 -1 0.32 0.0308287 0.0270883 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17512 1 0.02 -1 -1 30324 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 16.5 MiB 1.22 470 8444 3456 4562 426 55.0 MiB 0.09 0.00 3.10275 -88.0296 -3.10275 3.10275 0.78 0.000585782 0.000541475 0.0340096 0.0314838 42 1987 42 6.95648e+06 188184 744469. 2576.02 4.45 0.230935 0.199075 27202 183097 -1 1416 26 1145 1687 164036 38436 3.14317 3.14317 -102.033 -3.14317 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0287378 0.0249504 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 16.8 MiB 1.08 736 13381 4767 6091 2523 55.3 MiB 0.16 0.00 3.0625 -113.087 -3.0625 3.0625 0.80 0.000789121 0.000729461 0.063739 0.0590126 42 2677 40 6.95648e+06 246087 744469. 2576.02 12.56 0.437247 0.380638 27202 183097 -1 1865 20 1472 2293 212818 48336 3.69447 3.69447 -126.046 -3.69447 0 0 949917. 3286.91 0.32 0.09 0.21 -1 -1 0.32 0.0318322 0.0280422 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 30112 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 16.9 MiB 2.03 821 11698 3981 5913 1804 55.4 MiB 0.16 0.00 4.42651 -139.682 -4.42651 4.42651 0.79 0.000747187 0.000690694 0.0554872 0.051395 36 2915 48 6.95648e+06 202660 648988. 2245.63 3.05 0.209785 0.184234 26050 158493 -1 1982 25 1718 2260 270345 85452 3.97412 3.97412 -142.14 -3.97412 0 0 828058. 2865.25 0.26 0.12 0.17 -1 -1 0.26 0.0365591 0.0320283 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17852 1 0.03 -1 -1 30288 -1 -1 9 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 16.8 MiB 0.90 568 11625 5013 6229 383 55.4 MiB 0.13 0.00 2.28966 -90.0891 -2.28966 2.28966 0.83 0.000700672 0.000647031 0.0561065 0.0518781 46 1933 39 6.95648e+06 130281 828058. 2865.25 3.10 0.219198 0.191818 28066 200906 -1 1409 20 1149 1678 183343 40642 2.44443 2.44443 -97.5086 -2.44443 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0292239 0.0255339 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17240 1 0.02 -1 -1 30092 -1 -1 9 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55944 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 16.1 MiB 0.33 438 9707 4039 5351 317 54.6 MiB 0.13 0.00 2.22846 -79.3536 -2.22846 2.22846 0.79 0.0005356 0.000492794 0.0423243 0.0390389 38 1472 33 6.95648e+06 130281 678818. 2348.85 1.84 0.154111 0.13407 26626 170182 -1 1076 15 578 661 61859 14476 2.22483 2.22483 -81.55 -2.22483 0 0 902133. 3121.57 0.27 0.04 0.17 -1 -1 0.27 0.0172534 0.015167 43 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30104 -1 -1 12 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 16.8 MiB 2.02 900 8449 3439 4770 240 55.3 MiB 0.10 0.00 4.11557 -135.517 -4.11557 4.11557 0.79 0.000660998 0.000611133 0.0377826 0.03501 40 2137 24 6.95648e+06 173708 706193. 2443.58 2.61 0.174583 0.152864 26914 176310 -1 2023 22 1541 2050 276891 53583 4.21986 4.21986 -152.912 -4.21986 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0284194 0.0248515 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30520 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 16.9 MiB 0.61 691 13626 5075 6512 2039 55.4 MiB 0.15 0.00 3.69419 -120.83 -3.69419 3.69419 0.79 0.00075325 0.000695933 0.058753 0.0543068 44 2233 28 6.95648e+06 289514 787024. 2723.27 3.11 0.221711 0.19452 27778 195446 -1 1643 25 1717 2348 215187 48285 3.98141 3.98141 -131.142 -3.98141 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0354619 0.0310313 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 17.0 MiB 1.41 803 10868 4396 5912 560 55.6 MiB 0.15 0.00 4.7576 -138.082 -4.7576 4.7576 0.79 0.000784509 0.000724816 0.0549421 0.0508637 48 2862 47 6.95648e+06 202660 865456. 2994.66 3.85 0.249989 0.218797 28354 207349 -1 2165 23 1772 2628 309431 66098 4.04242 4.04242 -140.886 -4.04242 0 0 1.05005e+06 3633.38 0.35 0.15 0.20 -1 -1 0.35 0.0447752 0.0393009 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17536 1 0.02 -1 -1 30564 -1 -1 13 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 16.0 MiB 0.86 416 8539 3544 4471 524 54.6 MiB 0.07 0.00 2.23646 -66.7931 -2.23646 2.23646 0.77 0.00046123 0.000425171 0.028635 0.0264432 36 1092 23 6.95648e+06 188184 648988. 2245.63 3.41 0.15359 0.132622 26050 158493 -1 921 18 585 753 72680 15035 2.25003 2.25003 -70.2741 -2.25003 0 0 828058. 2865.25 0.26 0.04 0.15 -1 -1 0.26 0.0169307 0.0147583 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17292 1 0.03 -1 -1 30316 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 16.7 MiB 0.67 670 9543 3600 4533 1410 55.3 MiB 0.11 0.00 4.68425 -117.235 -4.68425 4.68425 0.79 0.000671969 0.000621111 0.0424705 0.039326 44 2547 50 6.95648e+06 217135 787024. 2723.27 3.23 0.214906 0.187618 27778 195446 -1 1676 21 1215 2017 168258 41601 4.04746 4.04746 -122.981 -4.04746 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0279711 0.0245457 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.14 16980 1 0.03 -1 -1 29976 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.1 MiB 0.28 360 10055 3887 4514 1654 54.6 MiB 0.08 0.00 2.15326 -68.8392 -2.15326 2.15326 0.79 0.000455886 0.000418905 0.0320786 0.0295195 38 1119 24 6.95648e+06 115805 678818. 2348.85 1.73 0.12454 0.10825 26626 170182 -1 811 15 575 656 53605 13550 2.05738 2.05738 -71.8829 -2.05738 0 0 902133. 3121.57 0.27 0.04 0.17 -1 -1 0.27 0.0147836 0.0129973 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17408 1 0.03 -1 -1 30008 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 16.9 MiB 0.96 746 14106 6043 7637 426 55.3 MiB 0.16 0.00 4.49111 -123.956 -4.49111 4.49111 0.81 0.000687622 0.00063594 0.0602985 0.0558331 44 2596 25 6.95648e+06 217135 787024. 2723.27 4.54 0.280188 0.244217 27778 195446 -1 1859 20 1082 1757 198531 39005 3.77786 3.77786 -124.349 -3.77786 0 0 997811. 3452.63 0.32 0.08 0.20 -1 -1 0.32 0.0276266 0.0242492 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.20 17196 1 0.04 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 16.8 MiB 0.48 675 10873 4420 6034 419 55.3 MiB 0.11 0.00 2.9573 -100.116 -2.9573 2.9573 0.86 0.000691809 0.000639201 0.034925 0.0320139 48 1987 42 6.95648e+06 303989 865456. 2994.66 4.79 0.258156 0.223787 28354 207349 -1 1472 20 1236 2001 178021 38876 2.83657 2.83657 -103.581 -2.83657 0 0 1.05005e+06 3633.38 0.32 0.08 0.20 -1 -1 0.32 0.0278343 0.0244855 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30316 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 17.0 MiB 0.77 795 15383 6700 8206 477 55.5 MiB 0.18 0.00 4.43549 -130.994 -4.43549 4.43549 0.80 0.000792479 0.000736745 0.0656762 0.0607475 46 2322 47 6.95648e+06 275038 828058. 2865.25 2.87 0.230405 0.203152 28066 200906 -1 1796 21 1186 1946 186301 39234 3.84402 3.84402 -129.923 -3.84402 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0383551 0.0338084 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30216 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 16.5 MiB 0.83 836 12164 3915 6903 1346 55.1 MiB 0.13 0.00 3.08875 -104.395 -3.08875 3.08875 0.81 0.000654114 0.000604411 0.0540151 0.0499619 36 2212 27 6.95648e+06 144757 648988. 2245.63 1.81 0.167309 0.147195 26050 158493 -1 1908 21 1087 1657 196072 37878 3.05892 3.05892 -116.928 -3.05892 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0268264 0.0233842 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30244 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 486 10916 4488 5855 573 55.0 MiB 0.11 0.00 3.37953 -96.5612 -3.37953 3.37953 0.78 0.000622468 0.000575797 0.0413975 0.0383099 42 1636 22 6.95648e+06 260562 744469. 2576.02 1.59 0.134569 0.117686 27202 183097 -1 1183 19 794 1097 105217 25231 2.85937 2.85937 -95.8482 -2.85937 0 0 949917. 3286.91 0.31 0.06 0.18 -1 -1 0.31 0.0238623 0.0209234 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.21 17384 1 0.03 -1 -1 30164 -1 -1 16 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 16.5 MiB 0.45 447 10796 4457 5651 688 55.1 MiB 0.11 0.00 2.9532 -88.5671 -2.9532 2.9532 0.79 0.000605297 0.000560514 0.0430879 0.0399101 44 1810 28 6.95648e+06 231611 787024. 2723.27 2.31 0.170545 0.148587 27778 195446 -1 1158 18 924 1432 121868 29817 2.78637 2.78637 -89.4136 -2.78637 0 0 997811. 3452.63 0.31 0.06 0.19 -1 -1 0.31 0.0221727 0.0193913 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30324 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 16.5 MiB 0.41 490 8754 2672 4372 1710 55.0 MiB 0.09 0.00 3.37459 -106.603 -3.37459 3.37459 0.79 0.00062473 0.000578048 0.0372664 0.0345271 46 1586 42 6.95648e+06 144757 828058. 2865.25 3.14 0.184095 0.160382 28066 200906 -1 1170 21 1114 1603 134101 32154 2.99282 2.99282 -105.733 -2.99282 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0255875 0.0223849 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.14 17240 1 0.03 -1 -1 30324 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 16.4 MiB 0.41 514 10050 3328 4861 1861 55.0 MiB 0.11 0.00 3.16614 -99.0057 -3.16614 3.16614 0.85 0.000417014 0.000375234 0.0357921 0.0326943 46 1706 32 6.95648e+06 275038 828058. 2865.25 4.79 0.225251 0.194721 28066 200906 -1 1262 18 958 1407 124264 28663 2.80352 2.80352 -100.011 -2.80352 0 0 1.01997e+06 3529.29 0.31 0.06 0.19 -1 -1 0.31 0.0231212 0.0202304 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30572 -1 -1 12 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 16.6 MiB 1.23 761 12537 5784 6209 544 55.2 MiB 0.13 0.00 2.98425 -104.866 -2.98425 2.98425 0.94 0.000651009 0.000600732 0.0486577 0.0446072 48 1640 16 6.95648e+06 173708 865456. 2994.66 4.08 0.239795 0.208124 28354 207349 -1 1579 19 974 1375 189986 35287 2.47942 2.47942 -100.544 -2.47942 0 0 1.05005e+06 3633.38 0.36 0.07 0.20 -1 -1 0.36 0.0250485 0.0219626 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30512 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 17.0 MiB 0.86 827 14593 4666 7411 2516 55.6 MiB 0.17 0.00 4.22723 -122.469 -4.22723 4.22723 0.79 0.000545099 0.000495871 0.0626402 0.0578283 38 3101 32 6.95648e+06 303989 678818. 2348.85 3.35 0.214237 0.190108 26626 170182 -1 2044 21 1398 2419 200438 42840 3.78111 3.78111 -123.209 -3.78111 0 0 902133. 3121.57 0.32 0.09 0.19 -1 -1 0.32 0.0351349 0.0310786 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30320 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 17.0 MiB 0.85 745 13738 4997 6870 1871 55.6 MiB 0.17 0.00 3.2962 -117.206 -3.2962 3.2962 0.78 0.000822108 0.000758264 0.0610136 0.0563288 38 2875 40 6.95648e+06 347416 678818. 2348.85 2.59 0.216667 0.190291 26626 170182 -1 1920 24 1872 2626 281799 58430 3.33157 3.33157 -129.56 -3.33157 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0374788 0.0328251 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17700 1 0.03 -1 -1 30100 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 16.6 MiB 1.78 860 8754 2885 4850 1019 55.2 MiB 0.11 0.00 4.04047 -132.719 -4.04047 4.04047 0.78 0.000668913 0.000610893 0.0397017 0.036784 38 2275 39 6.95648e+06 159232 678818. 2348.85 2.03 0.163495 0.143099 26626 170182 -1 1961 24 1287 1791 205094 37905 3.68852 3.68852 -133.621 -3.68852 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0294899 0.0257374 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30368 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 16.9 MiB 0.86 747 9036 3143 4486 1407 55.5 MiB 0.12 0.00 3.76434 -122.812 -3.76434 3.76434 0.80 0.000783935 0.000724764 0.0447681 0.0414411 38 2525 25 6.95648e+06 231611 678818. 2348.85 3.68 0.210582 0.183886 26626 170182 -1 1875 23 1595 2325 235170 49274 3.52523 3.52523 -123.26 -3.52523 0 0 902133. 3121.57 0.28 0.10 0.17 -1 -1 0.28 0.0354521 0.0311141 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17864 1 0.03 -1 -1 30240 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 17.3 MiB 2.25 943 12585 5266 6878 441 56.0 MiB 0.17 0.00 5.54066 -172.627 -5.54066 5.54066 0.79 0.000796786 0.000735096 0.062528 0.057868 48 2871 41 6.95648e+06 231611 865456. 2994.66 15.06 0.445125 0.386789 28354 207349 -1 2430 22 2185 3127 430456 88164 5.17695 5.17695 -176.467 -5.17695 0 0 1.05005e+06 3633.38 0.32 0.14 0.20 -1 -1 0.32 0.0353013 0.0310754 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17616 1 0.07 -1 -1 30420 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 17.1 MiB 2.68 938 15120 6700 8021 399 55.5 MiB 0.19 0.00 4.47954 -148.558 -4.47954 4.47954 0.78 0.000801326 0.000741156 0.0749868 0.0693659 38 3275 38 6.95648e+06 231611 678818. 2348.85 1.97 0.221884 0.195846 26626 170182 -1 2433 19 1642 2364 237007 47242 4.92386 4.92386 -165.869 -4.92386 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0314629 0.0277629 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.10 17804 1 0.03 -1 -1 30388 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 16.9 MiB 1.42 806 12733 4192 6306 2235 55.5 MiB 0.16 0.00 4.14583 -131.471 -4.14583 4.14583 0.81 0.000759034 0.000702376 0.0559362 0.0518774 46 2200 24 6.95648e+06 318465 828058. 2865.25 4.56 0.26608 0.232281 28066 200906 -1 1757 18 1220 1800 147983 31138 3.60242 3.60242 -126.697 -3.60242 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0278559 0.0245213 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30380 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 16.6 MiB 1.23 717 8212 2161 5077 974 55.1 MiB 0.15 0.00 4.19005 -113.386 -4.19005 4.19005 0.80 0.000669514 0.00061902 0.0356867 0.0330168 46 1875 23 6.95648e+06 202660 828058. 2865.25 2.97 0.166498 0.145353 28066 200906 -1 1552 21 1204 1637 160753 33380 3.83421 3.83421 -115.087 -3.83421 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0279101 0.02447 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17900 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 17.4 MiB 1.74 969 15017 6294 8197 526 55.9 MiB 0.21 0.00 4.79262 -158.033 -4.79262 4.79262 0.78 0.000943361 0.000874103 0.0786083 0.0728849 46 2761 26 6.95648e+06 318465 828058. 2865.25 5.15 0.384367 0.335568 28066 200906 -1 2141 31 2095 3019 331122 87131 4.33341 4.33341 -157.452 -4.33341 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0529613 0.0461585 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17244 1 0.03 -1 -1 30212 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 16.5 MiB 0.74 451 10702 3732 4796 2174 55.0 MiB 0.10 0.00 3.25706 -97.1743 -3.25706 3.25706 0.79 0.000616617 0.000570669 0.0416935 0.0385805 40 1681 34 6.95648e+06 217135 706193. 2443.58 1.69 0.151849 0.13282 26914 176310 -1 1260 21 1119 1553 125884 31938 3.18847 3.18847 -107.382 -3.18847 0 0 926341. 3205.33 0.28 0.07 0.17 -1 -1 0.28 0.0250771 0.0218369 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30152 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 16.9 MiB 1.26 1043 13358 5192 6540 1626 55.5 MiB 0.17 0.00 4.83562 -153.036 -4.83562 4.83562 0.79 0.000744698 0.000689492 0.0633615 0.0587083 40 2912 43 6.95648e+06 217135 706193. 2443.58 2.79 0.237388 0.20844 26914 176310 -1 2504 20 1741 2521 299747 55800 4.51186 4.51186 -153.565 -4.51186 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0299358 0.0263422 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30440 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 17.0 MiB 1.01 832 15481 6850 8276 355 55.5 MiB 0.10 0.00 3.22585 -113.908 -3.22585 3.22585 0.64 0.000322999 0.00029389 0.0313432 0.0286099 40 2646 23 6.95648e+06 246087 706193. 2443.58 2.04 0.107269 0.0934196 26914 176310 -1 2134 22 1625 2634 261329 52818 3.17132 3.17132 -121.838 -3.17132 0 0 926341. 3205.33 0.25 0.06 0.11 -1 -1 0.25 0.0167767 0.0148445 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.16 17196 1 0.03 -1 -1 30244 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 16.8 MiB 1.00 692 9712 3251 4487 1974 55.3 MiB 0.12 0.00 4.55274 -121.613 -4.55274 4.55274 0.79 0.00068221 0.000630465 0.0414289 0.0383962 44 2345 26 6.95648e+06 231611 787024. 2723.27 3.01 0.186973 0.163293 27778 195446 -1 1650 21 1027 1766 165271 36035 4.03752 4.03752 -125.743 -4.03752 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0285882 0.0250914 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 17.0 MiB 2.66 796 11532 3820 5366 2346 55.6 MiB 0.15 0.00 4.43423 -134.57 -4.43423 4.43423 0.79 0.000765053 0.000707334 0.0561101 0.0519777 38 2865 31 6.95648e+06 202660 678818. 2348.85 2.65 0.219855 0.192697 26626 170182 -1 2082 24 1535 2108 204539 43475 3.78266 3.78266 -135.522 -3.78266 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0350343 0.0306907 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.10 17636 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 16.9 MiB 1.85 763 10406 4042 5595 769 55.7 MiB 0.13 0.00 3.235 -115.411 -3.235 3.235 0.78 0.000788636 0.000729903 0.04961 0.0459906 44 2506 31 6.95648e+06 246087 787024. 2723.27 4.23 0.302363 0.263388 27778 195446 -1 1827 20 1399 2156 194970 39601 3.12007 3.12007 -117.373 -3.12007 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.03116 0.0273898 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17848 1 0.03 -1 -1 30288 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 17.0 MiB 1.00 832 13758 4740 6643 2375 55.7 MiB 0.18 0.00 4.17869 -135.166 -4.17869 4.17869 0.79 0.000813466 0.000752683 0.0587264 0.054377 48 2348 28 6.95648e+06 376368 865456. 2994.66 4.85 0.322597 0.28113 28354 207349 -1 1917 21 1387 2021 205840 42281 3.60616 3.60616 -131.841 -3.60616 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0347221 0.0304108 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17400 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 16.9 MiB 0.93 704 11804 4117 5540 2147 55.3 MiB 0.12 0.00 4.32723 -118.436 -4.32723 4.32723 0.79 0.000707575 0.000654688 0.0464179 0.0429662 44 2015 30 6.95648e+06 318465 787024. 2723.27 4.46 0.252846 0.219742 27778 195446 -1 1595 21 1100 1751 160487 34105 4.02206 4.02206 -123.995 -4.02206 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0291872 0.0257146 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30472 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 16.7 MiB 2.23 822 10020 3444 5308 1268 55.3 MiB 0.13 0.00 4.15778 -128.101 -4.15778 4.15778 0.82 0.000719489 0.000665317 0.0463485 0.0429403 38 2840 28 6.95648e+06 188184 678818. 2348.85 2.43 0.169405 0.148914 26626 170182 -1 1971 24 1766 2374 231200 50060 4.23357 4.23357 -142.472 -4.23357 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0334257 0.029318 79 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.15 17860 1 0.03 -1 -1 30420 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 17.0 MiB 1.40 847 12030 5014 6584 432 55.7 MiB 0.16 0.00 4.57287 -144.308 -4.57287 4.57287 0.80 0.000784903 0.000724559 0.0603328 0.0558486 46 3104 41 6.95648e+06 217135 828058. 2865.25 4.31 0.252211 0.221384 28066 200906 -1 2278 20 1812 2837 306709 60756 4.22031 4.22031 -146.229 -4.22031 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0323256 0.0284754 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.15 17700 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 17.1 MiB 2.28 757 13443 5119 6395 1929 55.6 MiB 0.17 0.00 4.08826 -130.07 -4.08826 4.08826 0.81 0.000817531 0.000755232 0.0703365 0.0650658 54 2412 23 6.95648e+06 188184 949917. 3286.91 5.55 0.339298 0.296004 29506 232905 -1 1836 17 1376 2241 202857 43317 3.86727 3.86727 -126.415 -3.86727 0 0 1.17392e+06 4061.99 0.36 0.08 0.23 -1 -1 0.36 0.0290261 0.0256322 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17388 1 0.03 -1 -1 30028 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 16.6 MiB 0.28 503 12542 4062 6070 2410 55.1 MiB 0.12 0.00 3.14908 -92.6386 -3.14908 3.14908 0.85 0.000606814 0.000560143 0.0416324 0.0383634 40 1842 34 6.95648e+06 260562 706193. 2443.58 3.67 0.179397 0.156129 26914 176310 -1 1377 24 1087 1601 218661 67065 3.48782 3.48782 -109.872 -3.48782 0 0 926341. 3205.33 0.28 0.09 0.18 -1 -1 0.28 0.0276183 0.0240456 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30436 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 16.8 MiB 1.36 674 9676 3990 5312 374 55.4 MiB 0.12 0.00 3.76865 -134.987 -3.76865 3.76865 0.82 0.000731068 0.000675073 0.0469434 0.0434385 60 1890 50 6.95648e+06 173708 1.01997e+06 3529.29 2.59 0.225326 0.196386 30658 258169 -1 1495 20 1336 1884 183262 40247 3.69992 3.69992 -130.369 -3.69992 0 0 1.27783e+06 4421.56 0.39 0.08 0.25 -1 -1 0.39 0.0298168 0.0262269 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.21 17688 1 0.03 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 17.2 MiB 1.81 1197 6788 1593 4785 410 55.9 MiB 0.12 0.00 4.81732 -154.887 -4.81732 4.81732 0.84 0.0008393 0.000777242 0.0369545 0.0343331 56 2828 29 6.95648e+06 231611 973134. 3367.25 2.67 0.215392 0.188568 29794 239141 -1 2531 20 1798 2687 390100 89685 4.60701 4.60701 -157.299 -4.60701 0 0 1.19926e+06 4149.71 0.37 0.12 0.23 -1 -1 0.37 0.034033 0.0300835 97 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17772 1 0.03 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 16.9 MiB 1.01 755 11806 4947 6514 345 55.4 MiB 0.14 0.00 4.55181 -144.133 -4.55181 4.55181 0.79 0.00076281 0.000705846 0.0540188 0.0500306 44 2442 36 6.95648e+06 246087 787024. 2723.27 2.64 0.217485 0.190808 27778 195446 -1 1744 23 1332 1785 195480 40211 3.51206 3.51206 -132.781 -3.51206 0 0 997811. 3452.63 0.33 0.09 0.19 -1 -1 0.33 0.0338371 0.0296959 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30296 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 16.6 MiB 0.48 536 11296 4661 6055 580 55.2 MiB 0.11 0.00 2.9714 -97.779 -2.9714 2.9714 0.78 0.000640521 0.000591028 0.0428317 0.0395861 44 1776 44 6.95648e+06 289514 787024. 2723.27 2.80 0.188484 0.164051 27778 195446 -1 1295 21 1102 1617 151786 34451 3.32957 3.32957 -102.955 -3.32957 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0264357 0.0230957 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 18136 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 17.4 MiB 1.87 1154 14782 4940 8104 1738 56.1 MiB 0.22 0.00 6.12641 -181.225 -6.12641 6.12641 0.78 0.000905435 0.000838484 0.0824346 0.0764507 48 2961 29 6.95648e+06 217135 865456. 2994.66 5.27 0.376568 0.329427 28354 207349 -1 2396 21 1934 2976 285074 59094 5.01785 5.01785 -171.528 -5.01785 0 0 1.05005e+06 3633.38 0.33 0.11 0.20 -1 -1 0.33 0.0382591 0.0337259 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 16.7 MiB 1.39 717 11799 3733 5850 2216 55.2 MiB 0.14 0.00 4.62806 -129.887 -4.62806 4.62806 0.79 0.000749529 0.00069245 0.0487753 0.0450267 38 2342 43 6.95648e+06 332941 678818. 2348.85 2.16 0.205489 0.179806 26626 170182 -1 1801 23 1318 2018 220965 43554 3.91232 3.91232 -133.377 -3.91232 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0331746 0.0290868 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17308 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.5 MiB 0.27 514 10509 3980 5034 1495 54.9 MiB 0.10 0.00 2.96656 -92.2738 -2.96656 2.96656 0.79 0.000577103 0.000533675 0.039065 0.0361472 40 1486 26 6.95648e+06 188184 706193. 2443.58 8.06 0.289019 0.248278 26914 176310 -1 1191 17 815 1217 92108 24698 3.16847 3.16847 -99.1993 -3.16847 0 0 926341. 3205.33 0.28 0.05 0.17 -1 -1 0.28 0.0206829 0.0181642 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30184 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 17.0 MiB 0.55 1076 14908 4738 8798 1372 55.6 MiB 0.21 0.00 4.96917 -138.118 -4.96917 4.96917 0.82 0.000592719 0.000535182 0.0663074 0.061158 44 2795 22 6.95648e+06 347416 787024. 2723.27 5.46 0.3011 0.263676 27778 195446 -1 2264 21 1249 2279 232200 41831 4.64636 4.64636 -141.78 -4.64636 0 0 997811. 3452.63 0.31 0.09 0.20 -1 -1 0.31 0.0318093 0.027974 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17416 1 0.03 -1 -1 30012 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.6 MiB 0.89 492 11034 4564 6063 407 55.1 MiB 0.11 0.00 2.9972 -99.2597 -2.9972 2.9972 0.79 0.000606523 0.0005607 0.041862 0.0386886 42 1759 27 6.95648e+06 202660 744469. 2576.02 4.25 0.234414 0.202813 27202 183097 -1 1397 24 1340 1894 196806 45892 3.21527 3.21527 -112.469 -3.21527 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0276645 0.0241079 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30420 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 16.6 MiB 0.92 565 8867 3613 4967 287 55.1 MiB 0.10 0.00 3.45473 -106.167 -3.45473 3.45473 0.78 0.000637886 0.000589839 0.0358507 0.0332051 38 1870 25 6.95648e+06 246087 678818. 2348.85 3.15 0.167267 0.146042 26626 170182 -1 1448 21 1211 1744 159941 32862 3.17897 3.17897 -109.41 -3.17897 0 0 902133. 3121.57 0.31 0.08 0.17 -1 -1 0.31 0.0268443 0.023474 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30320 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 16.9 MiB 1.48 851 11487 4862 6149 476 55.5 MiB 0.15 0.00 3.95502 -124.066 -3.95502 3.95502 0.79 0.000757969 0.000701388 0.0562361 0.0521026 46 2484 24 6.95648e+06 231611 828058. 2865.25 4.78 0.279489 0.243607 28066 200906 -1 2066 24 1689 2573 256391 48525 3.59036 3.59036 -125.502 -3.59036 0 0 1.01997e+06 3529.29 0.34 0.10 0.19 -1 -1 0.34 0.0332203 0.0294278 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17524 1 0.03 -1 -1 30456 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 16.9 MiB 1.23 719 14528 6712 7344 472 55.5 MiB 0.16 0.00 4.55468 -132.882 -4.55468 4.55468 0.80 0.000773928 0.000715711 0.0680056 0.0628904 46 2095 25 6.95648e+06 231611 828058. 2865.25 4.58 0.300829 0.262556 28066 200906 -1 1600 23 1410 2046 186668 39862 4.25697 4.25697 -138.118 -4.25697 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0341239 0.0299275 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17672 1 0.03 -1 -1 30052 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 16.9 MiB 1.76 751 11200 4198 5153 1849 55.4 MiB 0.15 0.00 4.43749 -136.856 -4.43749 4.43749 0.83 0.000759585 0.000702565 0.0542174 0.0502022 44 2753 24 6.95648e+06 202660 787024. 2723.27 2.21 0.191752 0.1686 27778 195446 -1 2006 22 1455 2249 219633 44769 4.12616 4.12616 -142.016 -4.12616 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0329382 0.0289121 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17452 1 0.03 -1 -1 30440 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 16.5 MiB 2.89 640 8909 3664 5023 222 55.1 MiB 0.11 0.00 4.07418 -127.444 -4.07418 4.07418 0.81 0.000640908 0.000592372 0.0391822 0.0362438 40 2054 24 6.95648e+06 144757 706193. 2443.58 2.40 0.171412 0.149417 26914 176310 -1 1837 22 1228 1614 181504 39075 4.00671 4.00671 -130.053 -4.00671 0 0 926341. 3205.33 0.29 0.08 0.17 -1 -1 0.29 0.0277673 0.0242755 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30420 -1 -1 12 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 16.9 MiB 2.09 607 11925 5002 6435 488 55.3 MiB 0.13 0.00 3.79972 -120.636 -3.79972 3.79972 0.79 0.00069004 0.000638046 0.0546889 0.0505894 46 1973 30 6.95648e+06 173708 828058. 2865.25 2.14 0.184272 0.161702 28066 200906 -1 1405 24 1298 1895 159942 35669 3.57017 3.57017 -116.122 -3.57017 0 0 1.01997e+06 3529.29 0.28 0.05 0.13 -1 -1 0.28 0.0166893 0.0146831 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17852 1 0.03 -1 -1 30364 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 16.8 MiB 0.82 673 11064 3726 5225 2113 55.3 MiB 0.13 0.00 3.0162 -94.6102 -3.0162 3.0162 0.78 0.000730456 0.000676021 0.046577 0.0431732 40 1973 21 6.95648e+06 318465 706193. 2443.58 4.10 0.243603 0.212128 26914 176310 -1 1803 19 1154 1810 176961 38398 2.93367 2.93367 -103.314 -2.93367 0 0 926341. 3205.33 0.29 0.08 0.18 -1 -1 0.29 0.02761 0.0242438 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30380 -1 -1 28 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 16.5 MiB 0.62 661 10813 4387 5735 691 55.2 MiB 0.11 0.00 3.6526 -99.519 -3.6526 3.6526 0.79 0.000636239 0.000588153 0.0385225 0.03572 44 1716 21 6.95648e+06 405319 787024. 2723.27 4.46 0.21298 0.184734 27778 195446 -1 1398 18 998 1578 144554 30794 3.54436 3.54436 -101.653 -3.54436 0 0 997811. 3452.63 0.43 0.07 0.20 -1 -1 0.43 0.024489 0.0215541 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.18 17760 1 0.03 -1 -1 30384 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 16.5 MiB 0.84 539 10769 4210 5259 1300 55.2 MiB 0.12 0.00 3.44073 -108.225 -3.44073 3.44073 0.79 0.000692187 0.00063967 0.0505367 0.0467952 46 1801 46 6.95648e+06 173708 828058. 2865.25 2.16 0.196321 0.171329 28066 200906 -1 1329 55 1751 2496 238790 52349 3.05087 3.05087 -110.628 -3.05087 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0636125 0.0549053 60 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17672 1 0.03 -1 -1 30200 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 17.0 MiB 1.62 645 12715 5333 6940 442 55.5 MiB 0.15 0.00 3.42769 -121.093 -3.42769 3.42769 0.79 0.000728539 0.000672597 0.0609187 0.0563724 60 1672 34 6.95648e+06 159232 1.01997e+06 3529.29 5.27 0.31169 0.271131 30658 258169 -1 1297 22 1266 1843 162051 35947 3.24756 3.24756 -117.699 -3.24756 0 0 1.27783e+06 4421.56 0.39 0.08 0.25 -1 -1 0.39 0.0312846 0.027408 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.17 17408 1 0.02 -1 -1 30332 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 16.9 MiB 0.42 742 11799 3162 6813 1824 55.3 MiB 0.15 0.00 4.51778 -120.862 -4.51778 4.51778 0.81 0.000684221 0.000630621 0.0448308 0.0414404 38 2647 38 6.95648e+06 347416 678818. 2348.85 4.15 0.20053 0.175068 26626 170182 -1 1928 21 1335 2205 239116 49594 3.91616 3.91616 -126.842 -3.91616 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0288697 0.0253546 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17704 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 16.9 MiB 1.91 848 13606 5964 7217 425 55.7 MiB 0.19 0.00 4.62557 -150.036 -4.62557 4.62557 0.81 0.000769344 0.000711692 0.0740003 0.0685164 48 3004 39 6.95648e+06 188184 865456. 2994.66 3.59 0.25278 0.222431 28354 207349 -1 2182 18 1452 2100 227729 46102 4.48296 4.48296 -151.71 -4.48296 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.02852 0.0251739 82 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.14 17776 1 0.03 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 17.0 MiB 1.57 797 15688 5451 7649 2588 55.6 MiB 0.19 0.00 4.33979 -134.933 -4.33979 4.33979 0.87 0.000809252 0.000748399 0.0685211 0.0633649 48 2263 23 6.95648e+06 347416 865456. 2994.66 5.23 0.306941 0.268492 28354 207349 -1 1865 22 1276 2294 364776 108463 3.85666 3.85666 -138.898 -3.85666 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0353475 0.0310709 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17792 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 17.1 MiB 1.15 866 12951 5370 7312 269 55.6 MiB 0.17 0.00 4.06852 -135.722 -4.06852 4.06852 0.79 0.000816469 0.000753954 0.0579029 0.0535578 44 2867 29 6.95648e+06 332941 787024. 2723.27 3.02 0.22324 0.196057 27778 195446 -1 2076 25 1814 3009 305320 59024 3.69801 3.69801 -137 -3.69801 0 0 997811. 3452.63 0.35 0.12 0.18 -1 -1 0.35 0.0398067 0.0348577 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17528 1 0.03 -1 -1 30188 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 16.6 MiB 0.91 535 10769 4485 5866 418 55.1 MiB 0.12 0.00 3.76076 -107.124 -3.76076 3.76076 0.79 0.0006353 0.000587567 0.0463391 0.0429414 38 1877 28 6.95648e+06 173708 678818. 2348.85 1.74 0.153796 0.134888 26626 170182 -1 1473 22 1145 1745 172549 35836 3.04067 3.04067 -103.94 -3.04067 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0270797 0.0236438 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30452 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 16.9 MiB 1.03 646 9676 4013 5115 548 55.5 MiB 0.12 0.00 4.36203 -132.758 -4.36203 4.36203 0.78 0.000801325 0.000741603 0.0511378 0.0473721 44 2453 48 6.95648e+06 202660 787024. 2723.27 12.23 0.402145 0.348862 27778 195446 -1 1588 22 1754 2466 211095 48434 3.98016 3.98016 -136.668 -3.98016 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0342475 0.0300811 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30284 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 16.9 MiB 1.59 811 10204 3614 5065 1525 55.5 MiB 0.13 0.00 4.885 -145.205 -4.885 4.885 0.79 0.000756555 0.000698979 0.048981 0.045356 46 2692 34 6.95648e+06 202660 828058. 2865.25 2.94 0.191892 0.168764 28066 200906 -1 1986 23 1769 2853 260236 54420 4.51661 4.51661 -152.905 -4.51661 0 0 1.01997e+06 3529.29 0.32 0.11 0.19 -1 -1 0.32 0.0338866 0.0298374 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30460 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 16.8 MiB 2.10 840 10509 4398 5789 322 55.5 MiB 0.13 0.00 5.54805 -153.523 -5.54805 5.54805 0.78 0.000743795 0.00068846 0.0513383 0.0475937 40 2668 44 6.95648e+06 202660 706193. 2443.58 4.21 0.231873 0.202685 26914 176310 -1 2096 20 1330 1980 203495 43949 4.80967 4.80967 -153.148 -4.80967 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0299492 0.0263755 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17584 1 0.03 -1 -1 30376 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 16.9 MiB 1.70 981 8543 2209 4916 1418 55.6 MiB 0.11 0.00 4.87546 -153.661 -4.87546 4.87546 0.83 0.000785976 0.000726429 0.0400782 0.0371103 38 2348 25 6.95648e+06 303989 678818. 2348.85 3.21 0.199611 0.174133 26626 170182 -1 1852 15 989 1494 128620 25183 4.18706 4.18706 -149.867 -4.18706 0 0 902133. 3121.57 0.29 0.07 0.19 -1 -1 0.29 0.0254444 0.0225261 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30300 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 17.1 MiB 1.13 757 8390 3202 4298 890 55.7 MiB 0.11 0.00 4.41913 -136.437 -4.41913 4.41913 0.78 0.000777423 0.000718362 0.0429558 0.0397923 44 2450 22 6.95648e+06 188184 787024. 2723.27 2.33 0.19703 0.17232 27778 195446 -1 1754 20 1576 2619 220593 45217 3.65547 3.65547 -129.946 -3.65547 0 0 997811. 3452.63 0.34 0.09 0.19 -1 -1 0.34 0.0315302 0.0277254 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30288 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 16.9 MiB 1.22 676 7412 2307 3688 1417 55.5 MiB 0.10 0.00 4.03938 -124.354 -4.03938 4.03938 0.78 0.000780267 0.000721682 0.0383979 0.035592 38 2492 38 6.95648e+06 231611 678818. 2348.85 2.49 0.181309 0.158191 26626 170182 -1 1658 21 1346 1997 179785 38321 3.53222 3.53222 -123.967 -3.53222 0 0 902133. 3121.57 0.28 0.08 0.16 -1 -1 0.28 0.0320861 0.0281538 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17136 1 0.02 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 16.5 MiB 0.76 565 8134 3323 4613 198 55.0 MiB 0.09 0.00 3.56099 -106.975 -3.56099 3.56099 0.79 0.000604867 0.000559502 0.0339626 0.0314652 38 2318 48 6.95648e+06 144757 678818. 2348.85 2.96 0.180523 0.156865 26626 170182 -1 1523 18 1017 1481 151133 31500 2.97857 2.97857 -109.151 -2.97857 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0223255 0.0196135 53 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17636 1 0.04 -1 -1 30444 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 16.9 MiB 3.16 780 14679 6171 7995 513 55.4 MiB 0.17 0.00 4.81946 -134.729 -4.81946 4.81946 0.79 0.000789652 0.000729541 0.0630382 0.0582918 46 2503 49 6.95648e+06 332941 828058. 2865.25 16.18 0.466403 0.403949 28066 200906 -1 1717 19 1153 1902 170438 35172 3.87886 3.87886 -130.737 -3.87886 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0300485 0.026427 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.12 17516 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 16.9 MiB 0.72 707 10672 3433 5510 1729 55.5 MiB 0.15 0.00 4.24958 -138.057 -4.24958 4.24958 0.85 0.000834596 0.000771082 0.0580816 0.0538044 46 2130 40 6.95648e+06 188184 828058. 2865.25 3.08 0.252242 0.221279 28066 200906 -1 1497 21 1470 2122 175907 39622 3.98496 3.98496 -139.107 -3.98496 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0346563 0.0305094 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17264 1 0.03 -1 -1 30032 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 16.6 MiB 1.43 678 11925 5137 6457 331 55.2 MiB 0.12 0.00 4.05037 -122.042 -4.05037 4.05037 0.89 0.000432424 0.000394559 0.0484424 0.0447685 46 2027 26 6.95648e+06 159232 828058. 2865.25 4.44 0.235525 0.204479 28066 200906 -1 1499 21 1062 1332 128879 26573 3.54322 3.54322 -119.355 -3.54322 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0261585 0.0228808 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17252 1 0.02 -1 -1 30408 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.5 MiB 0.98 478 11916 5026 6437 453 55.0 MiB 0.12 0.00 3.32523 -101.355 -3.32523 3.32523 0.79 0.000598459 0.000553631 0.0467628 0.043259 40 1850 33 6.95648e+06 188184 706193. 2443.58 8.36 0.303829 0.262955 26914 176310 -1 1531 21 1300 1792 176086 42663 3.39082 3.39082 -120.096 -3.39082 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0251594 0.0220194 57 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30584 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 16.9 MiB 1.52 850 12416 5241 6727 448 55.5 MiB 0.15 0.00 4.62707 -149.564 -4.62707 4.62707 0.79 0.000764182 0.00070662 0.0592576 0.0548715 56 2118 22 6.95648e+06 217135 973134. 3367.25 5.42 0.344476 0.300361 29794 239141 -1 1799 20 1634 2192 220057 45895 4.25321 4.25321 -143.6 -4.25321 0 0 1.19926e+06 4149.71 0.37 0.09 0.28 -1 -1 0.37 0.029391 0.0260803 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30244 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 16.9 MiB 1.12 1128 10536 3281 5855 1400 55.5 MiB 0.14 0.00 4.81844 -154.124 -4.81844 4.81844 0.79 0.000762421 0.000705515 0.0517246 0.0479066 38 2947 25 6.95648e+06 202660 678818. 2348.85 3.65 0.211779 0.185733 26626 170182 -1 2550 23 1532 2285 284216 52115 4.55896 4.55896 -161.138 -4.55896 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0341321 0.0299235 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 16.9 MiB 0.42 843 11456 4360 5763 1333 55.5 MiB 0.15 0.00 4.93982 -142.75 -4.93982 4.93982 0.78 0.000787559 0.000729463 0.0533596 0.0494482 46 2858 50 6.95648e+06 246087 828058. 2865.25 3.66 0.242291 0.212123 28066 200906 -1 1936 21 1602 2690 238590 54490 4.30461 4.30461 -143.025 -4.30461 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0326005 0.028692 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17792 1 0.03 -1 -1 30188 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 16.8 MiB 0.90 630 11063 3050 5652 2361 55.3 MiB 0.13 0.00 3.41127 -97.5363 -3.41127 3.41127 0.82 0.00064631 0.000592863 0.045935 0.0426092 38 2169 39 6.95648e+06 303989 678818. 2348.85 1.94 0.178284 0.156185 26626 170182 -1 1481 23 1281 2045 172575 37977 3.22442 3.22442 -104.225 -3.22442 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0319689 0.0280504 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17548 1 0.03 -1 -1 30524 -1 -1 14 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 16.4 MiB 0.44 487 8585 3718 4335 532 54.9 MiB 0.08 0.00 2.94405 -89.6154 -2.94405 2.94405 0.79 0.000590308 0.000546078 0.0355086 0.0329216 36 1822 47 6.95648e+06 202660 648988. 2245.63 1.92 0.165293 0.143666 26050 158493 -1 1203 17 933 1148 131523 29611 3.17312 3.17312 -102.454 -3.17312 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0207898 0.0182131 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17940 1 0.03 -1 -1 30292 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1018 15904 6884 8410 610 55.7 MiB 0.23 0.00 3.84665 -134.608 -3.84665 3.84665 0.79 0.000880363 0.00081458 0.0844825 0.078234 46 4242 40 6.95648e+06 231611 828058. 2865.25 22.96 0.483507 0.422169 28066 200906 -1 2845 24 2133 3416 370752 77350 4.35302 4.35302 -154.257 -4.35302 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0406115 0.0355575 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30260 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 16.9 MiB 4.56 805 13026 5515 7018 493 55.5 MiB 0.16 0.00 5.43776 -152.039 -5.43776 5.43776 0.79 0.000773972 0.000714787 0.063707 0.0588593 48 2597 25 6.95648e+06 217135 865456. 2994.66 5.38 0.31326 0.27348 28354 207349 -1 2126 21 1459 2260 353661 66712 4.45371 4.45371 -148.451 -4.45371 0 0 1.05005e+06 3633.38 0.33 0.11 0.20 -1 -1 0.33 0.0322117 0.0283193 82 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.15 17700 1 0.03 -1 -1 30460 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 16.9 MiB 3.33 636 10029 4132 5585 312 55.4 MiB 0.12 0.00 3.67834 -124.027 -3.67834 3.67834 0.79 0.000716621 0.000661771 0.0480762 0.0444872 48 2275 44 6.95648e+06 159232 865456. 2994.66 3.03 0.219463 0.191739 28354 207349 -1 1599 22 1391 1986 205612 45996 3.70796 3.70796 -132.564 -3.70796 0 0 1.05005e+06 3633.38 0.33 0.09 0.21 -1 -1 0.33 0.0309048 0.0270495 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30396 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 16.9 MiB 0.30 731 15206 6549 8090 567 55.3 MiB 0.18 0.00 4.25273 -121.678 -4.25273 4.25273 0.79 0.000723927 0.000668252 0.0611412 0.0565579 46 2429 27 6.95648e+06 318465 828058. 2865.25 2.18 0.185294 0.163439 28066 200906 -1 1712 29 1122 1690 261473 87697 3.92896 3.92896 -126.032 -3.92896 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0392458 0.0342673 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30188 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 17.1 MiB 0.86 751 14323 4212 7223 2888 55.8 MiB 0.16 0.00 4.42633 -128.985 -4.42633 4.42633 0.79 0.000815283 0.000754711 0.0628211 0.0582329 40 2471 47 6.95648e+06 361892 706193. 2443.58 3.31 0.258021 0.226596 26914 176310 -1 1782 21 1363 2105 187315 41520 4.11587 4.11587 -130.419 -4.11587 0 0 926341. 3205.33 0.29 0.09 0.17 -1 -1 0.29 0.0333959 0.0293774 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30148 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 16.8 MiB 1.09 713 11034 4424 5642 968 55.2 MiB 0.13 0.00 3.35027 -102.373 -3.35027 3.35027 0.80 0.000705549 0.000652225 0.0502272 0.0465189 38 2562 40 6.95648e+06 231611 678818. 2348.85 4.30 0.215931 0.188534 26626 170182 -1 1857 24 1407 2299 226374 45691 3.72767 3.72767 -116.727 -3.72767 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0328901 0.0287387 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30456 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 16.9 MiB 1.60 907 11200 3286 6600 1314 55.6 MiB 0.16 0.00 4.64467 -151.435 -4.64467 4.64467 0.79 0.000772158 0.000714582 0.0549162 0.0508706 48 2684 29 6.95648e+06 202660 865456. 2994.66 3.68 0.222505 0.195314 28354 207349 -1 2184 19 1770 2628 289937 56714 4.54272 4.54272 -149.301 -4.54272 0 0 1.05005e+06 3633.38 0.37 0.10 0.20 -1 -1 0.37 0.0299286 0.0264244 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30092 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 16.9 MiB 1.02 748 12542 5225 6709 608 55.5 MiB 0.15 0.00 4.47033 -145.191 -4.47033 4.47033 0.78 0.000813083 0.00075153 0.0602258 0.055753 48 2680 47 6.95648e+06 260562 865456. 2994.66 2.82 0.259152 0.227296 28354 207349 -1 1992 23 1553 2067 230282 52289 3.98206 3.98206 -145.39 -3.98206 0 0 1.05005e+06 3633.38 0.34 0.11 0.20 -1 -1 0.34 0.0363872 0.0318192 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30340 -1 -1 12 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 16.5 MiB 3.85 466 10105 4186 5463 456 55.0 MiB 0.10 0.00 3.92822 -103.3 -3.92822 3.92822 0.79 0.000623479 0.00057659 0.0435806 0.0403578 36 1635 39 6.95648e+06 173708 648988. 2245.63 1.97 0.182741 0.159165 26050 158493 -1 1237 17 794 1018 104038 21847 3.08517 3.08517 -101.588 -3.08517 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0211759 0.0188797 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.22 17596 1 0.03 -1 -1 30460 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 16.6 MiB 1.11 606 9397 3361 4720 1316 55.3 MiB 0.11 0.00 3.68935 -126.523 -3.68935 3.68935 0.79 0.000684821 0.000628113 0.0429559 0.0397275 44 1972 25 6.95648e+06 159232 787024. 2723.27 4.45 0.243436 0.210977 27778 195446 -1 1434 21 1064 1373 145325 30210 3.43512 3.43512 -121.758 -3.43512 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0281629 0.0246475 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30356 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 16.9 MiB 0.89 743 11993 4026 5805 2162 55.4 MiB 0.14 0.00 4.14331 -121.523 -4.14331 4.14331 0.78 0.000732318 0.000676707 0.0491816 0.0455474 46 2150 30 6.95648e+06 332941 828058. 2865.25 4.72 0.268581 0.233642 28066 200906 -1 1642 21 1171 1831 161306 34320 3.90312 3.90312 -123.564 -3.90312 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0303731 0.0266681 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.16 17596 1 0.03 -1 -1 30452 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 16.5 MiB 1.43 616 10459 4329 5659 471 55.1 MiB 0.11 0.00 4.04737 -116.055 -4.04737 4.04737 0.79 0.000609079 0.000563116 0.0433729 0.0401621 42 1991 29 6.95648e+06 188184 744469. 2576.02 1.83 0.172332 0.150059 27202 183097 -1 1494 18 1051 1319 128607 26634 3.28962 3.28962 -109.516 -3.28962 0 0 949917. 3286.91 0.29 0.06 0.18 -1 -1 0.29 0.0229318 0.0201206 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.11 17592 1 0.03 -1 -1 30064 -1 -1 9 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 16.6 MiB 1.21 561 11321 4813 6209 299 55.1 MiB 0.12 0.00 3.85356 -111.135 -3.85356 3.85356 0.78 0.000645787 0.000596691 0.0503171 0.0465798 40 1749 28 6.95648e+06 130281 706193. 2443.58 1.88 0.183817 0.160778 26914 176310 -1 1421 20 1056 1589 160453 33374 3.00867 3.00867 -107.34 -3.00867 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0260288 0.0228068 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30116 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 16.9 MiB 1.14 696 13719 4819 6392 2508 55.5 MiB 0.16 0.00 3.46983 -115.227 -3.46983 3.46983 0.79 0.000788428 0.000727603 0.0597807 0.0553364 42 2316 38 6.95648e+06 347416 744469. 2576.02 1.92 0.206122 0.181177 27202 183097 -1 1762 18 1409 1913 211809 43083 3.27792 3.27792 -118.506 -3.27792 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0293472 0.0259062 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17320 1 0.03 -1 -1 30416 -1 -1 12 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 16.5 MiB 2.37 587 9081 3433 3891 1757 55.0 MiB 0.09 0.00 3.99537 -118.981 -3.99537 3.99537 0.84 0.00041175 0.000374525 0.0343732 0.0317329 44 2241 46 6.95648e+06 173708 787024. 2723.27 2.35 0.175803 0.152555 27778 195446 -1 1536 22 1174 1620 156272 34098 3.38212 3.38212 -116.13 -3.38212 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0265669 0.0231933 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30040 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 17.0 MiB 1.49 827 13505 5541 6681 1283 55.5 MiB 0.16 0.00 3.208 -113.036 -3.208 3.208 0.79 0.000761961 0.000703892 0.0573283 0.0530617 38 2407 41 6.95648e+06 318465 678818. 2348.85 2.36 0.201164 0.176835 26626 170182 -1 1814 18 1166 1858 166259 32920 2.91457 2.91457 -113.162 -2.91457 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0274916 0.0241861 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30296 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 17.1 MiB 2.05 717 9706 3985 5340 381 55.6 MiB 0.13 0.00 3.995 -134.818 -3.995 3.995 0.79 0.000821027 0.000758659 0.0509295 0.0471514 44 2035 25 6.95648e+06 217135 787024. 2723.27 4.46 0.323799 0.281417 27778 195446 -1 1527 17 1154 1606 131633 28364 3.61547 3.61547 -132.603 -3.61547 0 0 997811. 3452.63 0.32 0.07 0.19 -1 -1 0.32 0.026656 0.0238333 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17360 1 0.03 -1 -1 30432 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 16.6 MiB 1.25 546 10149 3579 4930 1640 55.2 MiB 0.12 0.00 2.9023 -96.8242 -2.9023 2.9023 0.79 0.000673893 0.000622687 0.0459667 0.0425574 48 1361 22 6.95648e+06 144757 865456. 2994.66 4.55 0.25226 0.21869 28354 207349 -1 1158 21 1034 1602 135039 30850 3.09002 3.09002 -99.1884 -3.09002 0 0 1.05005e+06 3633.38 0.32 0.07 0.20 -1 -1 0.32 0.0273414 0.0238776 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.17 17424 1 0.03 -1 -1 30360 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 16.8 MiB 1.49 688 11293 4712 6328 253 55.3 MiB 0.13 0.00 4.09973 -130.941 -4.09973 4.09973 0.79 0.00066531 0.000615224 0.0502362 0.0464795 46 2044 24 6.95648e+06 159232 828058. 2865.25 2.41 0.190854 0.167043 28066 200906 -1 1690 20 1284 1830 166544 35646 3.82482 3.82482 -131.012 -3.82482 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0264815 0.0232036 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 16.9 MiB 2.14 759 11034 4566 6063 405 55.3 MiB 0.13 0.00 4.18668 -129.57 -4.18668 4.18668 0.79 0.000714568 0.000660195 0.0505238 0.0467754 40 2779 29 6.95648e+06 202660 706193. 2443.58 3.15 0.202812 0.177469 26914 176310 -1 2052 22 1818 2425 253091 53728 4.06941 4.06941 -138.827 -4.06941 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0311055 0.0272955 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30088 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 16.9 MiB 1.18 716 10228 3612 4706 1910 55.4 MiB 0.12 0.00 4.16289 -113.847 -4.16289 4.16289 0.81 0.000708273 0.000654948 0.0436 0.0404384 38 2394 48 6.95648e+06 303989 678818. 2348.85 2.49 0.198991 0.174868 26626 170182 -1 1788 20 1212 1834 174345 35954 3.58236 3.58236 -113.332 -3.58236 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0297831 0.0262837 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30424 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 17.2 MiB 1.43 846 13524 5903 7163 458 55.6 MiB 0.17 0.00 4.885 -157.826 -4.885 4.885 0.79 0.00082598 0.000763811 0.0704118 0.0651986 50 2997 36 6.95648e+06 202660 902133. 3121.57 17.41 0.414559 0.361189 28642 213929 -1 2359 22 1925 2843 337537 67957 4.75402 4.75402 -165.328 -4.75402 0 0 1.08113e+06 3740.92 0.45 0.11 0.21 -1 -1 0.45 0.0311158 0.0276155 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17208 1 0.03 -1 -1 30528 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.5 MiB 1.21 501 12076 4244 5318 2514 54.9 MiB 0.11 0.00 3.74884 -94.0057 -3.74884 3.74884 0.80 0.000581887 0.000538074 0.0460091 0.0423125 40 1850 50 6.95648e+06 188184 706193. 2443.58 2.14 0.188377 0.16401 26914 176310 -1 1447 21 981 1472 136596 32641 3.34677 3.34677 -105.484 -3.34677 0 0 926341. 3205.33 0.29 0.07 0.17 -1 -1 0.29 0.0240231 0.0209811 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17508 1 0.03 -1 -1 30272 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 17.1 MiB 1.15 1008 14543 5389 7197 1957 55.7 MiB 0.18 0.00 3.70954 -138.278 -3.70954 3.70954 0.78 0.000849414 0.000782243 0.0650247 0.0599286 38 2533 46 6.95648e+06 361892 678818. 2348.85 2.94 0.236306 0.208132 26626 170182 -1 2192 20 1645 2191 224606 41915 4.39036 4.39036 -148.967 -4.39036 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0329908 0.0289964 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.17 17504 1 0.03 -1 -1 30176 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.0 MiB 2.92 599 11389 4446 5401 1542 55.4 MiB 0.14 0.00 2.96105 -112.244 -2.96105 2.96105 0.79 0.000776779 0.000716248 0.0596723 0.0551825 38 1891 33 6.95648e+06 144757 678818. 2348.85 3.13 0.237276 0.208416 26626 170182 -1 1515 21 1433 1901 200187 40417 3.35642 3.35642 -130.365 -3.35642 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0317295 0.027784 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 16.9 MiB 1.26 728 11993 4280 5583 2130 55.4 MiB 0.14 0.00 4.11943 -125.672 -4.11943 4.11943 0.81 0.000769861 0.000711192 0.0520896 0.0482295 44 2442 24 6.95648e+06 318465 787024. 2723.27 2.17 0.209302 0.183361 27778 195446 -1 1784 23 1133 1696 143497 31926 4.23371 4.23371 -129.551 -4.23371 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0340728 0.0298656 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 17704 1 0.03 -1 -1 30400 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 1.84 1133 13599 5570 7048 981 55.9 MiB 0.20 0.00 6.01533 -177.28 -6.01533 6.01533 0.79 0.000850773 0.000787499 0.0721475 0.0668532 48 2879 24 6.95648e+06 217135 865456. 2994.66 5.14 0.316857 0.277867 28354 207349 -1 2528 44 3093 4309 892165 389394 5.04205 5.04205 -173.275 -5.04205 0 0 1.05005e+06 3633.38 0.33 0.30 0.19 -1 -1 0.33 0.064447 0.056214 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17516 1 0.02 -1 -1 30092 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 16.2 MiB 2.25 506 10409 4642 5419 348 54.9 MiB 0.10 0.00 2.68965 -94.6691 -2.68965 2.68965 0.79 0.000537613 0.000496749 0.038918 0.0359738 38 1497 25 6.95648e+06 159232 678818. 2348.85 1.86 0.13873 0.121041 26626 170182 -1 1198 18 806 1040 105999 21900 2.74713 2.74713 -101.013 -2.74713 0 0 902133. 3121.57 0.32 0.06 0.18 -1 -1 0.32 0.0201265 0.0176227 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30104 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 16.6 MiB 1.25 453 9649 4016 5181 452 55.1 MiB 0.10 0.00 3.70034 -111.62 -3.70034 3.70034 0.79 0.00064911 0.000600273 0.0437275 0.0404881 42 1876 41 6.95648e+06 159232 744469. 2576.02 9.37 0.340201 0.293651 27202 183097 -1 1367 23 1185 1738 194735 45414 3.56002 3.56002 -116.751 -3.56002 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0289591 0.0252665 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17240 1 0.04 -1 -1 30256 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 16.5 MiB 0.43 657 10304 4396 5657 251 55.1 MiB 0.11 0.00 3.0756 -108.291 -3.0756 3.0756 0.79 0.000676504 0.000625799 0.0474628 0.0439658 52 1974 26 6.95648e+06 144757 926341. 3205.33 5.09 0.275922 0.239233 29218 227130 -1 1511 20 1104 1776 163287 34476 3.02397 3.02397 -108.728 -3.02397 0 0 1.14541e+06 3963.36 0.35 0.07 0.21 -1 -1 0.35 0.0267578 0.0234627 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30296 -1 -1 18 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 16.4 MiB 0.43 433 7975 3255 4078 642 54.8 MiB 0.08 0.00 3.29759 -76.2304 -3.29759 3.29759 0.82 0.000513919 0.000474193 0.0283626 0.0262272 38 1408 30 6.95648e+06 260562 678818. 2348.85 2.00 0.138014 0.11943 26626 170182 -1 1050 18 712 1068 78963 19092 2.93162 2.93162 -79.1333 -2.93162 0 0 902133. 3121.57 0.27 0.05 0.16 -1 -1 0.27 0.0189213 0.0165042 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30252 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 16.9 MiB 1.72 736 10796 3697 5176 1923 55.5 MiB 0.16 0.00 3.75962 -125.032 -3.75962 3.75962 0.79 0.00078976 0.000730042 0.0643986 0.0596333 56 2402 21 6.95648e+06 173708 973134. 3367.25 5.70 0.364527 0.317257 29794 239141 -1 1955 21 1434 2403 282384 57974 3.72812 3.72812 -131.522 -3.72812 0 0 1.19926e+06 4149.71 0.36 0.10 0.23 -1 -1 0.36 0.0329943 0.0290107 73 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17760 1 0.03 -1 -1 30300 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 17.0 MiB 1.17 761 10744 4472 5806 466 55.7 MiB 0.14 0.00 4.07648 -139.886 -4.07648 4.07648 0.79 0.000838398 0.000774575 0.0552485 0.0511658 42 2788 40 6.95648e+06 246087 744469. 2576.02 4.86 0.367794 0.3194 27202 183097 -1 1918 22 1661 2201 256107 52353 3.65472 3.65472 -137.544 -3.65472 0 0 949917. 3286.91 0.30 0.11 0.18 -1 -1 0.30 0.0362494 0.0318115 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30068 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 16.7 MiB 1.48 820 12416 4576 5562 2278 55.3 MiB 0.15 0.00 5.01635 -146.768 -5.01635 5.01635 0.86 0.000670332 0.000611307 0.0524089 0.0481117 46 2741 39 6.99608e+06 220735 828058. 2865.25 4.00 0.229243 0.20052 28066 200906 -1 1929 22 1538 2123 196600 43474 4.52981 4.52981 -148.966 -4.52981 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0343862 0.0302653 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17880 1 0.03 -1 -1 30400 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 16.9 MiB 1.27 962 11233 3707 5934 1592 55.7 MiB 0.16 0.00 5.03284 -151.156 -5.03284 5.03284 0.81 0.000767574 0.000710195 0.0539295 0.0499461 48 2921 37 6.99608e+06 250167 865456. 2994.66 3.45 0.227927 0.200209 28354 207349 -1 2393 26 2159 3185 483133 120214 5.00304 5.00304 -162.401 -5.00304 0 0 1.05005e+06 3633.38 0.33 0.16 0.20 -1 -1 0.33 0.0388511 0.0340403 99 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17776 1 0.03 -1 -1 30316 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 16.5 MiB 0.70 839 12196 5162 6681 353 55.0 MiB 0.14 0.00 3.55379 -113.123 -3.55379 3.55379 0.79 0.000682786 0.000631077 0.052304 0.0483667 46 2218 48 6.99608e+06 206020 828058. 2865.25 5.16 0.315169 0.273334 28066 200906 -1 1603 20 1125 1520 120975 25477 3.58566 3.58566 -112.965 -3.58566 0 0 1.01997e+06 3529.29 0.33 0.07 0.19 -1 -1 0.33 0.0272342 0.0238968 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17796 1 0.03 -1 -1 30424 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 16.7 MiB 1.18 700 12302 4830 6041 1431 55.2 MiB 0.15 0.00 4.05128 -116.185 -4.05128 4.05128 0.78 0.000688223 0.000636309 0.0557429 0.0516151 40 2878 47 6.99608e+06 235451 706193. 2443.58 12.22 0.38334 0.332017 26914 176310 -1 2019 20 1583 2407 255374 56091 3.85182 3.85182 -128.793 -3.85182 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0274718 0.0240975 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.16 17780 1 0.03 -1 -1 30300 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 16.8 MiB 2.20 903 10204 4241 5732 231 55.3 MiB 0.14 0.00 4.44731 -141.413 -4.44731 4.44731 0.80 0.000744077 0.000688109 0.0489365 0.0450495 42 3290 34 6.99608e+06 206020 744469. 2576.02 5.15 0.327934 0.284428 27202 183097 -1 2392 21 1605 2736 255249 51331 4.36961 4.36961 -149.56 -4.36961 0 0 949917. 3286.91 0.29 0.10 0.18 -1 -1 0.29 0.0312369 0.0274225 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.16 17508 1 0.03 -1 -1 30328 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 16.8 MiB 2.50 903 12506 4545 6575 1386 55.4 MiB 0.16 0.00 3.38924 -119.322 -3.38924 3.38924 0.79 0.000783967 0.000725006 0.0590297 0.0546119 50 2556 28 6.99608e+06 250167 902133. 3121.57 2.75 0.225688 0.198218 28642 213929 -1 2002 26 1690 2628 331662 99314 3.38101 3.38101 -122.328 -3.38101 0 0 1.08113e+06 3740.92 0.33 0.12 0.20 -1 -1 0.33 0.0382031 0.0334547 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.17 17436 1 0.03 -1 -1 30636 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 16.4 MiB 1.32 527 10769 4406 5481 882 54.9 MiB 0.10 0.00 3.89582 -110.808 -3.89582 3.89582 0.87 0.000457524 0.000416314 0.0332104 0.0303319 38 1709 26 6.99608e+06 220735 678818. 2348.85 4.06 0.216741 0.186817 26626 170182 -1 1314 18 1002 1502 133887 28870 3.41986 3.41986 -110.556 -3.41986 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0219492 0.0192083 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.16 17236 1 0.03 -1 -1 30088 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.3 MiB 0.32 664 11203 3028 6067 2108 54.9 MiB 0.12 0.00 2.75465 -88.1636 -2.75465 2.75465 0.79 0.00064386 0.000595298 0.0393718 0.0364097 40 2096 25 6.99608e+06 367892 706193. 2443.58 2.70 0.174926 0.152554 26914 176310 -1 1705 19 1082 1751 177750 38304 2.56867 2.56867 -95.5867 -2.56867 0 0 926341. 3205.33 0.29 0.07 0.17 -1 -1 0.29 0.0222886 0.0198516 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30272 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 16.7 MiB 0.87 886 12302 5141 6872 289 55.2 MiB 0.15 0.00 3.35914 -124.887 -3.35914 3.35914 0.78 0.000694926 0.000641985 0.0544855 0.0503868 40 2507 21 6.99608e+06 206020 706193. 2443.58 4.46 0.27812 0.241492 26914 176310 -1 2169 21 1707 2314 272347 53432 3.34457 3.34457 -128.383 -3.34457 0 0 926341. 3205.33 0.29 0.10 0.19 -1 -1 0.29 0.0289771 0.0253901 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30076 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 16.7 MiB 0.82 886 11650 3739 6142 1769 55.1 MiB 0.14 0.00 3.93292 -137.573 -3.93292 3.93292 0.83 0.000676421 0.000626167 0.0510292 0.0472576 36 2508 45 6.99608e+06 191304 648988. 2245.63 6.12 0.290156 0.251921 26050 158493 -1 2011 21 1436 1814 180100 35063 3.47486 3.47486 -135.96 -3.47486 0 0 828058. 2865.25 0.28 0.08 0.18 -1 -1 0.28 0.0288824 0.0254111 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17680 1 0.03 -1 -1 30564 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 16.7 MiB 0.76 675 11436 3956 5372 2108 55.2 MiB 0.13 0.00 3.86033 -123.728 -3.86033 3.86033 0.79 0.000667173 0.000616663 0.0501897 0.0464381 44 2821 39 6.99608e+06 206020 787024. 2723.27 2.79 0.204664 0.178686 27778 195446 -1 1647 24 1475 2120 178578 40687 3.6697 3.6697 -127.023 -3.6697 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0308886 0.0269559 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17260 1 0.03 -1 -1 30288 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 16.4 MiB 0.64 784 8133 1910 6031 192 55.0 MiB 0.10 0.00 3.27288 -116.653 -3.27288 3.27288 0.78 0.000639556 0.000591984 0.0351726 0.032602 38 2353 50 6.99608e+06 161872 678818. 2348.85 3.38 0.18751 0.162697 26626 170182 -1 1854 20 1218 1534 166621 32010 3.03762 3.03762 -121.779 -3.03762 0 0 902133. 3121.57 0.28 0.08 0.17 -1 -1 0.28 0.0256879 0.0224857 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 16.6 MiB 0.83 822 13937 5978 7482 477 55.2 MiB 0.18 0.00 3.95082 -133.749 -3.95082 3.95082 0.80 0.000751711 0.000694763 0.0649374 0.0601058 44 2812 28 6.99608e+06 220735 787024. 2723.27 2.39 0.225144 0.197947 27778 195446 -1 2093 21 1841 2677 249858 51575 3.62816 3.62816 -128.38 -3.62816 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0317808 0.0278951 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30212 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 16.6 MiB 1.32 975 9706 2651 5494 1561 55.2 MiB 0.14 0.00 4.79397 -141.28 -4.79397 4.79397 0.82 0.000784442 0.00072582 0.0460711 0.0426856 44 3143 23 6.99608e+06 250167 787024. 2723.27 5.55 0.339686 0.295112 27778 195446 -1 2289 21 1985 2696 301373 57476 4.62311 4.62311 -151.178 -4.62311 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0323942 0.0284989 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30268 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 16.3 MiB 2.51 630 8909 3655 4893 361 54.9 MiB 0.10 0.00 3.0564 -89.3526 -3.0564 3.0564 0.90 0.00058479 0.000540497 0.0360233 0.0333696 38 1931 43 6.99608e+06 191304 678818. 2348.85 2.80 0.178084 0.154523 26626 170182 -1 1629 18 1056 1501 141701 29697 3.08397 3.08397 -99.6496 -3.08397 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0214979 0.0188012 64 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30396 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 16.9 MiB 1.23 999 13840 5885 7630 325 55.5 MiB 0.18 0.00 3.63599 -124.523 -3.63599 3.63599 0.78 0.000789728 0.000730188 0.0665629 0.0615658 46 2731 22 6.99608e+06 235451 828058. 2865.25 4.79 0.329196 0.287278 28066 200906 -1 2050 20 1706 2585 214097 43654 4.05881 4.05881 -132.374 -4.05881 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0317649 0.0279485 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 16.7 MiB 0.72 791 13092 5076 6583 1433 55.2 MiB 0.16 0.00 4.34151 -134.806 -4.34151 4.34151 0.79 0.000755126 0.000697341 0.0606538 0.0561429 46 2293 26 6.99608e+06 220735 828058. 2865.25 2.47 0.217599 0.191165 28066 200906 -1 1757 18 1380 1834 164641 35453 3.23226 3.23226 -122.94 -3.23226 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.027968 0.0246652 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17904 1 0.03 -1 -1 30436 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 16.6 MiB 0.61 778 13261 3730 7601 1930 55.1 MiB 0.16 0.00 3.17504 -117.557 -3.17504 3.17504 0.82 0.000699627 0.00064641 0.0577225 0.05339 50 2267 48 6.99608e+06 220735 902133. 3121.57 3.03 0.230941 0.201857 28642 213929 -1 1564 19 1536 1931 170074 37129 3.11816 3.11816 -117.854 -3.11816 0 0 1.08113e+06 3740.92 0.33 0.08 0.21 -1 -1 0.33 0.0273539 0.0240188 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30152 -1 -1 10 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 16.0 MiB 1.50 513 10949 4743 5895 311 54.7 MiB 0.10 0.00 2.33546 -88.3817 -2.33546 2.33546 0.79 0.00053649 0.000495241 0.0414038 0.0382798 44 1275 15 6.99608e+06 147157 787024. 2723.27 4.07 0.199174 0.17252 27778 195446 -1 1060 18 585 656 74549 15706 2.21773 2.21773 -83.141 -2.21773 0 0 997811. 3452.63 0.31 0.05 0.19 -1 -1 0.31 0.0194668 0.0169978 52 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30316 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 16.5 MiB 2.00 843 8236 2227 5366 643 54.9 MiB 0.10 0.00 3.78247 -126.288 -3.78247 3.78247 0.82 0.000667002 0.000616255 0.0367303 0.0340026 36 2561 50 6.99608e+06 191304 648988. 2245.63 2.69 0.183386 0.16015 26050 158493 -1 2140 20 1472 2061 241995 46488 3.62641 3.62641 -139.224 -3.62641 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0267746 0.02348 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 16.7 MiB 1.27 802 15273 5455 7440 2378 55.2 MiB 0.18 0.00 3.98218 -132.203 -3.98218 3.98218 0.80 0.000759388 0.00070012 0.066056 0.061065 44 2545 30 6.99608e+06 294314 787024. 2723.27 2.14 0.227077 0.199591 27778 195446 -1 1915 30 2270 3284 294218 60497 3.87455 3.87455 -137.345 -3.87455 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.0412612 0.0360106 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1225 15044 5236 8229 1579 55.5 MiB 0.20 0.00 4.6726 -146.803 -4.6726 4.6726 0.80 0.000790523 0.000730435 0.0733367 0.0679308 40 3327 23 6.99608e+06 235451 706193. 2443.58 4.98 0.225999 0.199474 26914 176310 -1 2935 19 1980 2868 350897 65007 4.18241 4.18241 -146.179 -4.18241 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0303097 0.0266959 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17244 1 0.02 -1 -1 30552 -1 -1 13 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 16.0 MiB 1.79 422 8539 3493 4523 523 54.6 MiB 0.08 0.00 2.7298 -77.3475 -2.7298 2.7298 0.82 0.000462738 0.000425612 0.0289059 0.0266901 36 1382 43 6.99608e+06 191304 648988. 2245.63 1.64 0.11702 0.101804 26050 158493 -1 1060 19 745 836 84204 18820 2.38147 2.38147 -77.79 -2.38147 0 0 828058. 2865.25 0.26 0.05 0.15 -1 -1 0.26 0.0175306 0.0152767 53 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17084 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 16.3 MiB 0.82 692 10050 3569 4878 1603 55.0 MiB 0.12 0.00 4.56174 -113.848 -4.56174 4.56174 0.78 0.000668861 0.000618897 0.0421991 0.0391039 38 2743 49 6.99608e+06 220735 678818. 2348.85 2.29 0.175432 0.15337 26626 170182 -1 1511 18 1175 1986 128543 31154 3.71441 3.71441 -118.868 -3.71441 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0245339 0.0215706 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.15 16972 1 0.02 -1 -1 30160 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.0 MiB 0.19 399 10055 4241 5582 232 54.5 MiB 0.08 0.00 2.06111 -67.7592 -2.06111 2.06111 0.79 0.000455687 0.000418796 0.0326681 0.0301084 38 1078 20 6.99608e+06 117725 678818. 2348.85 3.56 0.15633 0.135295 26626 170182 -1 908 16 573 628 62468 15355 1.94502 1.94502 -73.9368 -1.94502 0 0 902133. 3121.57 0.28 0.04 0.17 -1 -1 0.28 0.015414 0.0134521 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17428 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 16.6 MiB 1.12 805 13358 5696 7249 413 55.1 MiB 0.16 0.00 4.47086 -121.677 -4.47086 4.47086 0.80 0.00068981 0.000638077 0.0585964 0.0542654 44 2222 36 6.99608e+06 206020 787024. 2723.27 4.09 0.282052 0.245761 27778 195446 -1 1673 19 1007 1423 125511 26002 3.97211 3.97211 -118.972 -3.97211 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0266427 0.0234328 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.16 17372 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 16.4 MiB 0.45 715 11617 3653 5870 2094 55.1 MiB 0.14 0.00 2.89821 -97.4108 -2.89821 2.89821 0.78 0.00069165 0.000640841 0.0457801 0.0424202 42 2494 32 6.99608e+06 309029 744469. 2576.02 4.10 0.26439 0.229728 27202 183097 -1 1580 18 1186 1962 147644 35928 2.82232 2.82232 -102.18 -2.82232 0 0 949917. 3286.91 0.29 0.07 0.18 -1 -1 0.29 0.0255661 0.0224733 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30264 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 16.6 MiB 1.41 800 6839 1729 4140 970 55.2 MiB 0.11 0.00 4.20669 -125.419 -4.20669 4.20669 0.83 0.000733923 0.000678435 0.0327717 0.0303454 46 3002 45 6.99608e+06 220735 828058. 2865.25 5.28 0.212753 0.184949 28066 200906 -1 1856 31 2083 3178 287656 64461 3.75951 3.75951 -127.059 -3.75951 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0416392 0.0362627 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30076 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 16.5 MiB 2.09 688 11116 4644 6232 240 55.1 MiB 0.14 0.00 3.13575 -107.33 -3.13575 3.13575 0.80 0.00095284 0.000886096 0.0537862 0.0496608 40 2104 22 6.99608e+06 176588 706193. 2443.58 1.95 0.191252 0.167415 26914 176310 -1 1708 20 1139 1575 153976 33615 3.28862 3.28862 -115.849 -3.28862 0 0 926341. 3205.33 0.28 0.07 0.17 -1 -1 0.28 0.0260008 0.0227549 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17532 1 0.03 -1 -1 30436 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 16.3 MiB 1.24 579 8876 3271 4297 1308 54.9 MiB 0.08 0.00 3.70857 -107.816 -3.70857 3.70857 0.89 0.000442193 0.000405847 0.0267742 0.0244534 46 2312 50 6.99608e+06 206020 828058. 2865.25 3.95 0.181466 0.157194 28066 200906 -1 1534 21 1120 1684 160563 36201 3.53561 3.53561 -116.222 -3.53561 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0257524 0.0225042 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30116 -1 -1 18 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 16.4 MiB 0.73 581 9540 3893 5214 433 55.0 MiB 0.10 0.00 3.25804 -101.918 -3.25804 3.25804 0.79 0.000606772 0.000562001 0.0368865 0.0341414 40 2153 24 6.99608e+06 264882 706193. 2443.58 2.27 0.161494 0.14071 26914 176310 -1 1691 21 1204 1900 191413 39673 3.38701 3.38701 -114.28 -3.38701 0 0 926341. 3205.33 0.30 0.10 0.17 -1 -1 0.30 0.0290947 0.0256464 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.11 17120 1 0.02 -1 -1 30364 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 16.3 MiB 0.34 677 11234 4696 6284 254 54.7 MiB 0.12 0.00 3.31833 -109.934 -3.31833 3.31833 0.78 0.000625458 0.000579084 0.0471109 0.0436392 44 1857 24 6.99608e+06 147157 787024. 2723.27 3.84 0.229418 0.199341 27778 195446 -1 1469 22 1048 1536 156100 30082 2.94767 2.94767 -108.899 -2.94767 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.026249 0.022922 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30136 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 16.3 MiB 0.84 656 7596 1857 5260 479 54.9 MiB 0.10 0.00 3.30918 -105.476 -3.30918 3.30918 0.79 0.000634652 0.000587474 0.0327408 0.030363 38 2472 28 6.99608e+06 191304 678818. 2348.85 3.98 0.220701 0.190796 26626 170182 -1 1747 20 1277 1724 138688 32519 3.11412 3.11412 -112.524 -3.11412 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0253731 0.0221888 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.18 17408 1 0.03 -1 -1 30364 -1 -1 15 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 16.5 MiB 2.34 919 9036 2362 6094 580 55.3 MiB 0.11 0.00 2.93125 -106.214 -2.93125 2.93125 0.80 0.000639125 0.000589253 0.0393237 0.0364452 36 2586 32 6.99608e+06 220735 648988. 2245.63 2.30 0.153719 0.134497 26050 158493 -1 2092 21 1338 1741 179520 36127 3.04192 3.04192 -111.467 -3.04192 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0268442 0.0235044 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30588 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 16.8 MiB 1.07 980 13324 5630 7408 286 55.4 MiB 0.19 0.00 4.30703 -125.875 -4.30703 4.30703 0.82 0.00080689 0.000746524 0.0674893 0.0623045 44 3404 41 6.99608e+06 235451 787024. 2723.27 20.43 0.412482 0.359526 27778 195446 -1 2219 18 1470 2257 199350 40383 3.61357 3.61357 -126.136 -3.61357 0 0 997811. 3452.63 0.32 0.09 0.19 -1 -1 0.32 0.0307631 0.0272285 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17580 1 0.03 -1 -1 30424 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 17.1 MiB 1.36 1014 12683 4657 5804 2222 55.6 MiB 0.18 0.00 4.21676 -146.737 -4.21676 4.21676 0.78 0.000827495 0.000764891 0.0609526 0.0564296 40 3412 46 6.99608e+06 279598 706193. 2443.58 4.64 0.278943 0.246868 26914 176310 -1 2631 27 2589 3584 425847 96050 4.0781 4.0781 -154.785 -4.0781 0 0 926341. 3205.33 0.29 0.15 0.18 -1 -1 0.29 0.0428517 0.0375909 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30092 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 16.4 MiB 1.13 880 9374 3265 4936 1173 55.1 MiB 0.11 0.00 3.62727 -120.557 -3.62727 3.62727 0.80 0.000642142 0.000593895 0.0412306 0.0381905 40 2098 50 6.99608e+06 161872 706193. 2443.58 4.30 0.258251 0.223488 26914 176310 -1 1866 21 1295 1888 201651 38178 3.18921 3.18921 -118.521 -3.18921 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0268797 0.0235278 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 16.7 MiB 1.42 969 14528 6235 7667 626 55.4 MiB 0.18 0.00 3.54759 -121.928 -3.54759 3.54759 0.78 0.000791189 0.00073259 0.0698192 0.0646251 44 3010 33 6.99608e+06 250167 787024. 2723.27 2.94 0.238277 0.209479 27778 195446 -1 2103 22 1697 2386 242121 51268 3.43716 3.43716 -125.259 -3.43716 0 0 997811. 3452.63 0.35 0.10 0.19 -1 -1 0.35 0.0344892 0.030344 99 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30424 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 17.0 MiB 1.39 989 9196 3129 4406 1661 55.5 MiB 0.13 0.00 5.24281 -163.942 -5.24281 5.24281 0.79 0.000797389 0.000737285 0.0456733 0.0422817 54 2651 21 6.99608e+06 250167 949917. 3286.91 5.26 0.314115 0.272972 29506 232905 -1 2111 20 1745 2551 297020 55994 4.6735 4.6735 -157.07 -4.6735 0 0 1.17392e+06 4061.99 0.35 0.10 0.22 -1 -1 0.35 0.0321446 0.0283506 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30448 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 17.1 MiB 2.84 930 9881 4037 5524 320 55.6 MiB 0.14 0.00 5.08213 -159.731 -5.08213 5.08213 0.79 0.000806894 0.000745969 0.049614 0.0458753 40 3219 48 6.99608e+06 264882 706193. 2443.58 13.66 0.412762 0.358234 26914 176310 -1 2689 26 2464 3469 449049 92426 5.08669 5.08669 -172.13 -5.08669 0 0 926341. 3205.33 0.28 0.14 0.17 -1 -1 0.28 0.0395853 0.0346638 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30548 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 16.7 MiB 1.81 879 13768 5339 6393 2036 55.3 MiB 0.18 0.00 3.89582 -126.245 -3.89582 3.89582 0.87 0.000541411 0.000490196 0.0615171 0.0564353 46 3210 29 6.99608e+06 235451 828058. 2865.25 2.56 0.197312 0.173829 28066 200906 -1 2172 21 1624 2210 233179 46282 3.69046 3.69046 -128.461 -3.69046 0 0 1.01997e+06 3529.29 0.31 0.09 0.20 -1 -1 0.31 0.0314977 0.0276702 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.17 17372 1 0.03 -1 -1 30408 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 16.4 MiB 0.92 818 11864 4957 6528 379 55.1 MiB 0.13 0.00 3.99218 -112.33 -3.99218 3.99218 0.79 0.000677189 0.000626108 0.0504415 0.0466659 38 2868 31 6.99608e+06 206020 678818. 2348.85 3.25 0.186707 0.164085 26626 170182 -1 1987 23 1434 2025 193989 39975 3.77776 3.77776 -117.811 -3.77776 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0301788 0.0263674 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.20 17792 1 0.03 -1 -1 30440 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 17.4 MiB 1.22 1337 8083 1871 5905 307 55.6 MiB 0.16 0.00 5.02 -170.696 -5.02 5.02 0.78 0.000939421 0.000870431 0.0444667 0.041264 48 3633 25 6.99608e+06 309029 865456. 2994.66 2.42 0.196924 0.173171 28354 207349 -1 3223 22 2612 3732 456936 87788 4.76344 4.76344 -172.859 -4.76344 0 0 1.05005e+06 3633.38 0.39 0.15 0.22 -1 -1 0.39 0.0426481 0.037629 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17384 1 0.03 -1 -1 30320 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 16.3 MiB 2.72 589 8599 2844 4344 1411 54.8 MiB 0.10 0.00 3.01 -97.4254 -3.01 3.01 0.79 0.000614542 0.000568243 0.0363075 0.0336223 38 1901 48 6.99608e+06 161872 678818. 2348.85 1.92 0.145129 0.126436 26626 170182 -1 1359 19 1109 1445 122526 27424 2.89867 2.89867 -98.6061 -2.89867 0 0 902133. 3121.57 0.32 0.07 0.14 -1 -1 0.32 0.0308447 0.027441 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30208 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 16.7 MiB 0.64 792 13524 5096 6588 1840 55.2 MiB 0.16 0.00 4.60267 -142.66 -4.60267 4.60267 0.79 0.000754734 0.000697568 0.0633084 0.0586194 50 2831 42 6.99608e+06 220735 902133. 3121.57 3.08 0.240307 0.211081 28642 213929 -1 2077 21 1622 2283 244753 54981 4.12001 4.12001 -141.916 -4.12001 0 0 1.08113e+06 3740.92 0.33 0.10 0.21 -1 -1 0.33 0.0313531 0.027557 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17888 1 0.02 -1 -1 30308 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 16.8 MiB 1.19 1020 12416 4555 6119 1742 55.3 MiB 0.17 0.00 3.83208 -127.177 -3.83208 3.83208 0.79 0.000758147 0.000701403 0.0585528 0.0541887 46 2814 24 6.99608e+06 220735 828058. 2865.25 5.39 0.310323 0.270744 28066 200906 -1 2229 16 1283 1960 176230 34745 3.28682 3.28682 -124.537 -3.28682 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0259467 0.022957 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17084 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 16.5 MiB 0.79 673 10228 2970 5232 2026 55.2 MiB 0.12 0.00 4.31309 -118.378 -4.31309 4.31309 0.79 0.00068007 0.000628763 0.0433506 0.0402097 42 2384 31 6.99608e+06 235451 744469. 2576.02 4.26 0.22193 0.192854 27202 183097 -1 1663 21 1122 1937 161525 35561 3.86381 3.86381 -124.361 -3.86381 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0280861 0.0246401 68 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.18 17672 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 16.9 MiB 1.17 915 11571 4863 6343 365 55.4 MiB 0.15 0.00 4.31005 -133.816 -4.31005 4.31005 0.80 0.000760224 0.000702939 0.0555384 0.0514173 40 2777 49 6.99608e+06 220735 706193. 2443.58 2.85 0.243413 0.212954 26914 176310 -1 2134 22 1677 2241 241726 52187 3.71446 3.71446 -130.17 -3.71446 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0326263 0.0286366 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30212 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 16.9 MiB 1.45 1099 13430 4920 6010 2500 55.5 MiB 0.18 0.00 3.65969 -129.38 -3.65969 3.65969 0.78 0.000774735 0.000716628 0.0645268 0.0597391 40 2888 23 6.99608e+06 220735 706193. 2443.58 2.63 0.221403 0.194954 26914 176310 -1 2610 19 1645 2432 276762 54268 3.80996 3.80996 -141.664 -3.80996 0 0 926341. 3205.33 0.31 0.10 0.18 -1 -1 0.31 0.0284183 0.0253291 92 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 17.1 MiB 2.07 1101 15216 5672 7066 2478 55.7 MiB 0.20 0.00 3.74401 -128.073 -3.74401 3.74401 0.78 0.000815397 0.000755 0.0750762 0.0695119 40 3082 23 6.99608e+06 235451 706193. 2443.58 4.52 0.32351 0.283027 26914 176310 -1 2762 21 2030 2616 297583 57824 3.42052 3.42052 -129.621 -3.42052 0 0 926341. 3205.33 0.32 0.11 0.17 -1 -1 0.32 0.0336072 0.0295555 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30464 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 16.7 MiB 0.88 743 11034 4121 5253 1660 55.1 MiB 0.14 0.00 4.35583 -118.93 -4.35583 4.35583 0.79 0.000693575 0.000641376 0.0486292 0.0450209 44 2692 29 6.99608e+06 206020 787024. 2723.27 4.59 0.300457 0.260686 27778 195446 -1 1799 21 1203 1849 151880 32717 3.82976 3.82976 -122.649 -3.82976 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0285005 0.0251126 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17672 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 16.7 MiB 1.69 793 9042 2962 4450 1630 55.2 MiB 0.11 0.00 4.21168 -126.242 -4.21168 4.21168 0.79 0.000714233 0.000660751 0.0422707 0.0391547 44 2846 49 6.99608e+06 191304 787024. 2723.27 4.83 0.29531 0.256155 27778 195446 -1 1831 19 1322 1846 172348 35974 4.11036 4.11036 -132.013 -4.11036 0 0 997811. 3452.63 0.35 0.07 0.19 -1 -1 0.35 0.0251946 0.0223634 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30272 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 17.0 MiB 0.70 950 10726 4120 5384 1222 55.5 MiB 0.08 0.00 4.31211 -136.261 -4.31211 4.31211 0.63 0.000341642 0.000312046 0.0238051 0.0217946 48 3211 44 6.99608e+06 235451 865456. 2994.66 3.42 0.157672 0.137125 28354 207349 -1 2511 19 1967 2954 314696 68011 4.48185 4.48185 -140.556 -4.48185 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0303893 0.0267887 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 17.2 MiB 1.01 977 12980 5460 6998 522 55.7 MiB 0.17 0.00 3.94476 -129.858 -3.94476 3.94476 0.79 0.00080747 0.000745757 0.0639857 0.0591685 54 3303 23 6.99608e+06 235451 949917. 3286.91 3.12 0.224671 0.19738 29506 232905 -1 2409 21 2127 3080 328714 69584 3.78082 3.78082 -135.324 -3.78082 0 0 1.17392e+06 4061.99 0.36 0.12 0.22 -1 -1 0.36 0.0347121 0.0305564 104 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17428 1 0.03 -1 -1 30184 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 16.5 MiB 0.60 645 10769 4489 5977 303 55.0 MiB 0.11 0.00 3.21628 -99.3334 -3.21628 3.21628 0.81 0.000607251 0.000561471 0.0443355 0.0410209 44 1739 25 6.99608e+06 147157 787024. 2723.27 3.74 0.224234 0.194617 27778 195446 -1 1343 18 890 1168 95157 20436 2.92272 2.92272 -97.1845 -2.92272 0 0 997811. 3452.63 0.31 0.06 0.19 -1 -1 0.31 0.0227283 0.0199812 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30280 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 16.6 MiB 0.79 827 10726 4440 5997 289 55.2 MiB 0.13 0.00 4.06528 -146.791 -4.06528 4.06528 0.84 0.000534456 0.000484879 0.0458149 0.0422489 50 2262 20 6.99608e+06 220735 902133. 3121.57 4.98 0.279595 0.242703 28642 213929 -1 1950 21 1962 2613 293493 56334 3.79505 3.79505 -142.048 -3.79505 0 0 1.08113e+06 3740.92 0.34 0.10 0.21 -1 -1 0.34 0.0304864 0.026758 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 17.0 MiB 0.95 950 12808 5316 6896 596 55.4 MiB 0.17 0.00 4.80548 -149.393 -4.80548 4.80548 0.79 0.000840169 0.00077764 0.0656315 0.0607953 50 3167 49 6.99608e+06 235451 902133. 3121.57 3.74 0.277966 0.245029 28642 213929 -1 2451 22 2176 3243 318302 67590 5.14411 5.14411 -160.436 -5.14411 0 0 1.08113e+06 3740.92 0.38 0.12 0.22 -1 -1 0.38 0.035578 0.0313622 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 16.7 MiB 0.59 849 13599 4722 6429 2448 55.2 MiB 0.17 0.00 4.35389 -139.539 -4.35389 4.35389 0.78 0.000753489 0.000697477 0.0636117 0.0589544 38 2638 26 6.99608e+06 220735 678818. 2348.85 4.04 0.218019 0.191709 26626 170182 -1 2029 21 1716 2355 220233 45004 3.71446 3.71446 -137.305 -3.71446 0 0 902133. 3121.57 0.35 0.09 0.19 -1 -1 0.35 0.0297762 0.0263466 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30384 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 16.4 MiB 1.17 640 11474 4735 6197 542 55.1 MiB 0.12 0.00 3.65345 -112.727 -3.65345 3.65345 0.79 0.000648329 0.000599873 0.0438857 0.0406286 48 1959 46 6.99608e+06 294314 865456. 2994.66 3.48 0.201485 0.175791 28354 207349 -1 1523 18 1033 1599 166251 37115 3.11421 3.11421 -112.137 -3.11421 0 0 1.05005e+06 3633.38 0.32 0.07 0.21 -1 -1 0.32 0.0235936 0.0207108 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.22 18028 1 0.03 -1 -1 30404 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 17.2 MiB 1.51 1528 15924 5227 8931 1766 56.0 MiB 0.23 0.00 6.09323 -187.636 -6.09323 6.09323 0.79 0.000903496 0.000837074 0.0786339 0.0727389 40 4078 39 6.99608e+06 264882 706193. 2443.58 4.74 0.28081 0.246563 26914 176310 -1 3507 53 4086 5989 1451432 683932 5.97714 5.97714 -195.907 -5.97714 0 0 926341. 3205.33 0.28 0.49 0.17 -1 -1 0.28 0.084631 0.073712 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 16.8 MiB 0.58 768 13524 5053 6623 1848 55.3 MiB 0.16 0.00 4.76624 -142.397 -4.76624 4.76624 0.78 0.000749168 0.000693009 0.0636308 0.0589261 46 2640 34 6.99608e+06 206020 828058. 2865.25 3.14 0.224305 0.197097 28066 200906 -1 1845 24 1621 2196 220558 45578 4.17065 4.17065 -141.691 -4.17065 0 0 1.01997e+06 3529.29 0.31 0.11 0.20 -1 -1 0.31 0.0428179 0.0375079 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.16 17120 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.0 MiB 0.23 516 10672 4080 5320 1272 54.7 MiB 0.10 0.00 2.96036 -91.6204 -2.96036 2.96036 0.79 0.000582606 0.000538995 0.0402856 0.0372918 40 1510 37 6.99608e+06 191304 706193. 2443.58 2.64 0.171297 0.149175 26914 176310 -1 1197 20 797 1221 91258 24839 3.27957 3.27957 -97.7866 -3.27957 0 0 926341. 3205.33 0.29 0.06 0.18 -1 -1 0.29 0.0229646 0.0200474 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 16.7 MiB 1.19 903 15560 6646 7056 1858 55.3 MiB 0.18 0.00 4.75332 -131.249 -4.75332 4.75332 0.82 0.000780189 0.000721555 0.0729261 0.0674309 52 2533 26 6.99608e+06 235451 926341. 3205.33 5.26 0.373068 0.325288 29218 227130 -1 1932 23 1562 2646 249813 51787 5.03906 5.03906 -139.751 -5.03906 0 0 1.14541e+06 3963.36 0.35 0.10 0.22 -1 -1 0.35 0.0344774 0.0302804 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17372 1 0.03 -1 -1 30052 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.3 MiB 0.73 493 9540 2740 5276 1524 54.8 MiB 0.05 0.00 2.966 -97.1273 -2.966 2.966 0.64 0.000262436 0.000239196 0.0166025 0.015188 38 1725 38 6.99608e+06 206020 678818. 2348.85 2.42 0.110166 0.0952423 26626 170182 -1 1173 20 1005 1484 114153 25972 3.35957 3.35957 -106.253 -3.35957 0 0 902133. 3121.57 0.29 0.06 0.18 -1 -1 0.29 0.0243099 0.0212664 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17432 1 0.03 -1 -1 30356 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 16.4 MiB 0.57 768 9081 3737 5047 297 55.0 MiB 0.11 0.00 3.80347 -118.428 -3.80347 3.80347 0.78 0.000642278 0.000594171 0.0391185 0.0362303 38 2377 43 6.99608e+06 191304 678818. 2348.85 3.71 0.19443 0.169685 26626 170182 -1 1727 20 1223 1678 159981 30976 3.20221 3.20221 -113.559 -3.20221 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0255271 0.0223539 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30356 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 16.8 MiB 1.59 956 12416 5112 6468 836 55.4 MiB 0.16 0.00 4.12666 -129.088 -4.12666 4.12666 0.80 0.000756038 0.000699238 0.058569 0.0542082 40 2907 37 6.99608e+06 264882 706193. 2443.58 5.06 0.336009 0.292434 26914 176310 -1 2556 20 1847 2717 295332 58804 4.1019 4.1019 -136.467 -4.1019 0 0 926341. 3205.33 0.30 0.11 0.17 -1 -1 0.30 0.0319998 0.0282672 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 16.7 MiB 1.31 974 13599 5339 6861 1399 55.2 MiB 0.18 0.00 4.25698 -140.266 -4.25698 4.25698 0.78 0.000771279 0.000713207 0.0647369 0.0598942 38 3028 28 6.99608e+06 220735 678818. 2348.85 4.01 0.23137 0.203606 26626 170182 -1 2332 20 1708 2334 226850 45518 4.507 4.507 -154.11 -4.507 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0308339 0.0271301 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.17 17672 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 16.7 MiB 1.90 1087 13768 5458 5698 2612 55.2 MiB 0.18 0.00 4.58577 -147.33 -4.58577 4.58577 0.79 0.000761473 0.000704577 0.0651162 0.0602629 38 3096 26 6.99608e+06 220735 678818. 2348.85 4.34 0.22637 0.198918 26626 170182 -1 2466 20 1814 2610 251857 48193 4.75571 4.75571 -154.189 -4.75571 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0307373 0.0270107 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30356 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 16.3 MiB 1.78 854 11609 4663 6043 903 54.9 MiB 0.13 0.00 3.95082 -130.122 -3.95082 3.95082 0.79 0.000639979 0.000591591 0.0495743 0.0458941 34 2604 47 6.99608e+06 161872 618332. 2139.56 10.39 0.285963 0.248158 25762 151098 -1 2102 18 1330 1792 219031 44109 3.37756 3.37756 -126.516 -3.37756 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0238626 0.0209349 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30364 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 16.6 MiB 0.85 785 11813 4965 6422 426 55.1 MiB 0.14 0.00 3.70143 -122.026 -3.70143 3.70143 0.78 0.000696758 0.00064427 0.0530558 0.0491151 48 2211 39 6.99608e+06 206020 865456. 2994.66 5.12 0.297426 0.258151 28354 207349 -1 1741 23 1459 1999 246730 54114 3.45626 3.45626 -122.353 -3.45626 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.030938 0.0270719 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30476 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 16.6 MiB 1.13 809 10756 2943 5618 2195 55.2 MiB 0.14 0.00 3.4598 -111.751 -3.4598 3.4598 0.79 0.000714607 0.000660528 0.0465888 0.0431165 46 2301 24 6.99608e+06 279598 828058. 2865.25 2.66 0.196242 0.171967 28066 200906 -1 1649 19 1348 1977 162099 34833 3.22771 3.22771 -109.144 -3.22771 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.0279878 0.0245994 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17496 1 0.03 -1 -1 30588 -1 -1 17 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 16.3 MiB 0.46 678 13280 5850 6635 795 55.0 MiB 0.13 0.00 3.68935 -104.602 -3.68935 3.68935 0.80 0.000638484 0.00059068 0.0542505 0.0502284 48 1851 19 6.99608e+06 250167 865456. 2994.66 4.23 0.240537 0.209562 28354 207349 -1 1500 19 1188 1740 171222 35559 3.67976 3.67976 -109.04 -3.67976 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0255342 0.022485 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17580 1 0.03 -1 -1 30452 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 16.6 MiB 1.73 779 10020 4070 5537 413 55.2 MiB 0.13 0.00 4.56081 -142.799 -4.56081 4.56081 0.79 0.000694183 0.000642673 0.0451144 0.0417705 44 2675 39 6.99608e+06 220735 787024. 2723.27 2.77 0.203864 0.177818 27778 195446 -1 1893 21 1619 2174 205884 42939 4.46875 4.46875 -140.284 -4.46875 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0285452 0.0250456 87 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17572 1 0.03 -1 -1 30200 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 16.7 MiB 0.83 988 11366 4377 5078 1911 55.3 MiB 0.15 0.00 3.4477 -126.272 -3.4477 3.4477 0.79 0.00073466 0.000679988 0.052343 0.0484483 40 3137 31 6.99608e+06 206020 706193. 2443.58 4.09 0.209385 0.183386 26914 176310 -1 2781 18 1974 2685 368178 68668 3.87777 3.87777 -146.089 -3.87777 0 0 926341. 3205.33 0.28 0.11 0.12 -1 -1 0.28 0.0272604 0.0239751 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.20 17268 1 0.03 -1 -1 30384 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 16.4 MiB 0.36 735 13335 5144 6746 1445 55.1 MiB 0.14 0.00 4.50448 -121.497 -4.50448 4.50448 0.79 0.000684745 0.000633686 0.0502739 0.046554 48 2068 19 6.99608e+06 353176 865456. 2994.66 4.85 0.276839 0.24083 28354 207349 -1 1751 21 1197 2068 234774 53689 4.15372 4.15372 -124.025 -4.15372 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.028509 0.0249447 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30384 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 16.9 MiB 1.83 849 9872 4071 5471 330 55.4 MiB 0.14 0.00 4.41391 -145.413 -4.41391 4.41391 0.79 0.000773611 0.000715529 0.0493469 0.0457457 44 3443 43 6.99608e+06 206020 787024. 2723.27 2.73 0.233934 0.204739 27778 195446 -1 2114 21 1817 2729 244368 50711 4.04535 4.04535 -142.241 -4.04535 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.032241 0.0283785 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30260 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 17.1 MiB 0.75 1031 9706 3955 5323 428 55.6 MiB 0.14 0.00 5.10216 -163.017 -5.10216 5.10216 0.78 0.000816723 0.000755682 0.0485707 0.0449645 50 3244 37 6.99608e+06 250167 902133. 3121.57 6.41 0.344461 0.299444 28642 213929 -1 2455 20 2012 2762 304973 62062 4.90074 4.90074 -171.425 -4.90074 0 0 1.08113e+06 3740.92 0.33 0.11 0.21 -1 -1 0.33 0.0333006 0.0293803 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30428 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 17.2 MiB 0.81 1043 9881 4045 5563 273 55.6 MiB 0.14 0.00 4.39921 -147.12 -4.39921 4.39921 0.79 0.000813595 0.000751462 0.0487918 0.0451218 44 3708 29 6.99608e+06 250167 787024. 2723.27 3.14 0.204087 0.178989 27778 195446 -1 2517 22 1964 2832 294232 56669 4.1458 4.1458 -149.795 -4.1458 0 0 997811. 3452.63 0.43 0.08 0.22 -1 -1 0.43 0.0254109 0.022484 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30220 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 16.4 MiB 0.85 639 8765 3407 4448 910 55.0 MiB 0.11 0.00 4.31695 -124.149 -4.31695 4.31695 0.79 0.00063322 0.000585455 0.037347 0.0345845 46 1976 22 6.99608e+06 191304 828058. 2865.25 4.75 0.241014 0.208413 28066 200906 -1 1531 21 1047 1503 136703 28602 3.32756 3.32756 -116.967 -3.32756 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0258883 0.022611 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.12 17776 1 0.03 -1 -1 30420 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 17.0 MiB 0.96 919 12808 4622 5804 2382 55.6 MiB 0.16 0.00 5.00926 -154.589 -5.00926 5.00926 0.81 0.000788018 0.000728865 0.0624701 0.0578911 50 2419 37 6.99608e+06 264882 902133. 3121.57 5.31 0.328257 0.286217 28642 213929 -1 2145 21 2091 2916 263971 60571 4.782 4.782 -160.623 -4.782 0 0 1.08113e+06 3740.92 0.35 0.10 0.20 -1 -1 0.35 0.0342523 0.0302475 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.14 17640 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 16.7 MiB 1.06 773 12860 5275 6775 810 55.3 MiB 0.15 0.00 4.8046 -140.908 -4.8046 4.8046 0.79 0.00075971 0.000703179 0.0617989 0.057303 48 2795 40 6.99608e+06 206020 865456. 2994.66 3.11 0.241643 0.212722 28354 207349 -1 2142 22 1789 2884 287795 64057 4.40296 4.40296 -145.429 -4.40296 0 0 1.05005e+06 3633.38 0.33 0.11 0.20 -1 -1 0.33 0.0330099 0.02904 82 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.18 17652 1 0.03 -1 -1 30388 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 16.8 MiB 1.16 794 10228 3166 5486 1576 55.3 MiB 0.14 0.00 5.19565 -143.212 -5.19565 5.19565 0.79 0.000740991 0.000685331 0.0470597 0.0435765 42 2916 38 6.99608e+06 250167 744469. 2576.02 5.16 0.327588 0.284146 27202 183097 -1 2068 19 1339 1953 197673 41638 4.71926 4.71926 -144.669 -4.71926 0 0 949917. 3286.91 0.30 0.08 0.18 -1 -1 0.30 0.0285529 0.0251109 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30132 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 17.0 MiB 2.08 966 13788 4937 6208 2643 55.5 MiB 0.17 0.00 4.24398 -133.079 -4.24398 4.24398 0.79 0.000788785 0.000729952 0.0646056 0.0598362 48 2998 28 6.99608e+06 294314 865456. 2994.66 4.82 0.281502 0.24577 28354 207349 -1 2362 30 2713 3784 546086 159173 3.9203 3.9203 -137.458 -3.9203 0 0 1.05005e+06 3633.38 0.33 0.18 0.20 -1 -1 0.33 0.0443345 0.0388105 108 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30356 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1164 15481 5166 8845 1470 55.6 MiB 0.19 0.00 4.66597 -153.274 -4.66597 4.66597 0.83 0.000555766 0.00050334 0.0600251 0.0550462 40 3109 40 6.99608e+06 250167 706193. 2443.58 3.22 0.247893 0.216666 26914 176310 -1 2752 20 2067 3004 343436 64757 4.76555 4.76555 -163.065 -4.76555 0 0 926341. 3205.33 0.28 0.14 0.17 -1 -1 0.28 0.0379098 0.0332209 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30464 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 16.9 MiB 2.25 970 14431 6168 7633 630 55.5 MiB 0.19 0.00 3.80498 -123.528 -3.80498 3.80498 0.78 0.000784081 0.000725297 0.067409 0.0623454 46 2955 26 6.99608e+06 294314 828058. 2865.25 2.53 0.233256 0.205299 28066 200906 -1 2262 19 1754 2267 239314 46501 3.92726 3.92726 -128.956 -3.92726 0 0 1.01997e+06 3529.29 0.35 0.09 0.19 -1 -1 0.35 0.030641 0.0270793 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17272 1 0.02 -1 -1 30336 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 16.1 MiB 1.03 673 8289 1936 5635 718 54.8 MiB 0.10 0.00 3.54309 -104.459 -3.54309 3.54309 0.79 0.000618389 0.000572729 0.0352027 0.0326175 36 1999 50 6.99608e+06 147157 648988. 2245.63 2.45 0.186023 0.162012 26050 158493 -1 1642 24 1158 1803 183079 35786 3.23397 3.23397 -112.574 -3.23397 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0273909 0.0238318 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17856 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 17.2 MiB 0.66 998 13731 5201 6084 2446 55.8 MiB 0.19 0.00 5.23946 -166.614 -5.23946 5.23946 0.79 0.000793274 0.000733565 0.0652738 0.0604415 46 2962 49 6.99608e+06 250167 828058. 2865.25 4.64 0.26264 0.230332 28066 200906 -1 2377 19 1940 2741 328487 62525 4.52184 4.52184 -158.442 -4.52184 0 0 1.01997e+06 3529.29 0.36 0.12 0.20 -1 -1 0.36 0.0329323 0.0291504 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 17.2 MiB 0.92 1023 11631 4065 5883 1683 55.6 MiB 0.17 0.00 4.8947 -165.145 -4.8947 4.8947 0.80 0.000831217 0.000769485 0.0587527 0.0544118 40 3843 32 6.99608e+06 250167 706193. 2443.58 5.00 0.244769 0.214775 26914 176310 -1 3015 22 2838 3929 488187 95868 4.96931 4.96931 -178.451 -4.96931 0 0 926341. 3205.33 0.28 0.15 0.18 -1 -1 0.28 0.0365471 0.0321678 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.16 17260 1 0.03 -1 -1 30044 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 16.4 MiB 0.93 649 12083 5091 6584 408 55.1 MiB 0.13 0.00 3.80367 -112.996 -3.80367 3.80367 0.78 0.000625981 0.000578069 0.0501253 0.0463332 42 2455 34 6.99608e+06 161872 744469. 2576.02 2.73 0.192136 0.168002 27202 183097 -1 1766 22 1346 1706 176560 46525 3.43781 3.43781 -119.584 -3.43781 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0270124 0.0236099 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17136 1 0.03 -1 -1 30372 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.3 MiB 0.45 500 9836 4038 5376 422 54.8 MiB 0.11 0.00 3.32523 -100.829 -3.32523 3.32523 0.79 0.000599194 0.000553911 0.0392858 0.0363711 42 2036 49 6.99608e+06 191304 744469. 2576.02 2.11 0.174408 0.151842 27202 183097 -1 1450 23 1306 1998 189746 45572 3.02592 3.02592 -108.538 -3.02592 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0262929 0.0228864 56 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.16 17904 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 16.8 MiB 0.83 868 11909 4701 5758 1450 55.4 MiB 0.14 0.00 4.58703 -149.04 -4.58703 4.58703 0.78 0.000757547 0.000700875 0.0562966 0.0521294 44 2916 30 6.99608e+06 220735 787024. 2723.27 2.09 0.19137 0.168391 27778 195446 -1 1948 21 1717 2217 174954 38475 4.35445 4.35445 -150.842 -4.35445 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0317837 0.0279675 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30388 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 16.7 MiB 1.61 896 11571 3933 6047 1591 55.3 MiB 0.15 0.00 4.54977 -137.477 -4.54977 4.54977 0.79 0.000767472 0.000710065 0.0554269 0.0513072 46 2877 29 6.99608e+06 220735 828058. 2865.25 3.59 0.218811 0.192348 28066 200906 -1 1973 20 1520 2071 200425 42079 4.23615 4.23615 -139.98 -4.23615 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0306571 0.0269436 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17500 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 16.8 MiB 0.38 847 13556 4796 7036 1724 55.3 MiB 0.19 0.00 4.71017 -139.049 -4.71017 4.71017 0.79 0.000798613 0.000740536 0.0650001 0.0603182 44 2807 41 6.99608e+06 250167 787024. 2723.27 3.04 0.256127 0.225894 27778 195446 -1 2040 20 1714 2852 267002 53718 4.29535 4.29535 -138.372 -4.29535 0 0 997811. 3452.63 0.36 0.10 0.19 -1 -1 0.36 0.0308916 0.0273468 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30108 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 16.7 MiB 1.07 742 9042 3157 4137 1748 55.2 MiB 0.10 0.00 3.64737 -104.512 -3.64737 3.64737 0.79 0.000703669 0.000649749 0.0403835 0.0374027 48 2409 24 6.99608e+06 235451 865456. 2994.66 2.61 0.184648 0.16127 28354 207349 -1 1849 20 1526 2243 226871 48612 3.39976 3.39976 -110.919 -3.39976 0 0 1.05005e+06 3633.38 0.37 0.08 0.20 -1 -1 0.37 0.025819 0.0228868 86 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30672 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 16.3 MiB 0.85 490 9374 3097 4710 1567 54.9 MiB 0.10 0.00 3.44679 -100.328 -3.44679 3.44679 0.78 0.000592373 0.000548722 0.0379799 0.0352084 44 1561 25 6.99608e+06 220735 787024. 2723.27 3.73 0.218988 0.189247 27778 195446 -1 951 20 829 1241 88211 21100 3.46242 3.46242 -103.149 -3.46242 0 0 997811. 3452.63 0.31 0.06 0.19 -1 -1 0.31 0.0237165 0.0207207 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.17 17788 1 0.03 -1 -1 30312 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 17.1 MiB 0.89 1154 16102 6967 8731 404 55.6 MiB 0.24 0.00 4.18254 -144.202 -4.18254 4.18254 0.79 0.00087467 0.000809264 0.0834015 0.0772418 48 3756 32 6.99608e+06 264882 865456. 2994.66 4.83 0.30573 0.267803 28354 207349 -1 2830 22 2333 3612 389312 76161 4.29751 4.29751 -146.025 -4.29751 0 0 1.05005e+06 3633.38 0.32 0.13 0.20 -1 -1 0.32 0.0377757 0.0331859 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17700 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 16.7 MiB 1.69 1126 13496 4705 6380 2411 55.4 MiB 0.18 0.00 5.49463 -159.408 -5.49463 5.49463 0.80 0.000774462 0.00071658 0.063615 0.0588768 44 2958 24 6.99608e+06 250167 787024. 2723.27 4.65 0.305449 0.26687 27778 195446 -1 2443 22 2065 2917 318457 57977 4.52184 4.52184 -153.088 -4.52184 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0338205 0.0297176 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.18 17524 1 0.03 -1 -1 30424 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 16.8 MiB 0.98 926 14354 6182 7861 311 55.3 MiB 0.17 0.00 4.28347 -151.804 -4.28347 4.28347 0.82 0.000718428 0.000663879 0.0649567 0.0600967 44 2617 27 6.99608e+06 206020 787024. 2723.27 13.55 0.361709 0.314534 27778 195446 -1 1889 17 1327 1663 152812 30476 3.62281 3.62281 -139.68 -3.62281 0 0 997811. 3452.63 0.34 0.07 0.19 -1 -1 0.34 0.0231426 0.0205231 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30532 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 16.8 MiB 0.65 1057 13599 5180 6238 2181 55.3 MiB 0.17 0.00 4.11318 -134.456 -4.11318 4.11318 0.78 0.000728132 0.000673815 0.0614443 0.0568982 38 2724 22 6.99608e+06 220735 678818. 2348.85 2.75 0.204217 0.180184 26626 170182 -1 2219 23 1406 1908 186707 34935 3.88782 3.88782 -135.588 -3.88782 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0330762 0.0290347 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30108 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 16.8 MiB 1.28 870 12120 4959 6494 667 55.4 MiB 0.16 0.00 4.09557 -123.875 -4.09557 4.09557 0.79 0.000792307 0.000732409 0.0593251 0.0549449 48 2403 23 6.99608e+06 250167 865456. 2994.66 4.30 0.299844 0.261615 28354 207349 -1 2004 20 1817 2524 240340 48804 3.59652 3.59652 -123.201 -3.59652 0 0 1.05005e+06 3633.38 0.35 0.09 0.21 -1 -1 0.35 0.0305462 0.0273684 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17916 1 0.03 -1 -1 30120 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 16.6 MiB 1.34 825 9205 3109 4150 1946 55.2 MiB 0.12 0.00 3.47679 -109.391 -3.47679 3.47679 0.80 0.000711059 0.000657138 0.0419916 0.0389057 46 2489 25 6.99608e+06 250167 828058. 2865.25 2.82 0.19275 0.16833 28066 200906 -1 1901 22 1648 2475 219123 46343 3.35106 3.35106 -110.893 -3.35106 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0310176 0.0271707 88 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.10 17824 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 16.8 MiB 0.81 918 10536 3621 5008 1907 55.3 MiB 0.14 0.00 4.39601 -144.18 -4.39601 4.39601 0.80 0.000752492 0.00069454 0.0517949 0.0480226 44 3680 31 6.99608e+06 206020 787024. 2723.27 3.53 0.18971 0.167041 27778 195446 -1 2434 20 1885 2744 281061 56772 4.44125 4.44125 -154.958 -4.44125 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.030635 0.0269534 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30160 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 17.2 MiB 2.28 942 12292 4666 5756 1870 55.6 MiB 0.16 0.00 3.70017 -126.602 -3.70017 3.70017 0.80 0.000826069 0.000764591 0.0619251 0.0573491 56 2610 30 6.99608e+06 235451 973134. 3367.25 5.52 0.390595 0.339902 29794 239141 -1 2038 20 1778 2459 237594 53289 3.29786 3.29786 -122.948 -3.29786 0 0 1.19926e+06 4149.71 0.36 0.09 0.23 -1 -1 0.36 0.0327392 0.0288414 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.17 17316 1 0.03 -1 -1 30316 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 16.4 MiB 1.26 638 10503 3616 4659 2228 55.0 MiB 0.11 0.00 4.33189 -121.838 -4.33189 4.33189 0.79 0.000626327 0.000579997 0.043636 0.0404233 38 1790 34 6.99608e+06 206020 678818. 2348.85 1.95 0.180041 0.157185 26626 170182 -1 1379 18 1150 1531 123037 26099 3.33656 3.33656 -114.568 -3.33656 0 0 902133. 3121.57 0.27 0.06 0.17 -1 -1 0.27 0.023078 0.0202353 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30392 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 16.6 MiB 1.92 733 10370 4308 5800 262 55.1 MiB 0.12 0.01 4.00228 -133.8 -4.00228 4.00228 0.88 0.0021236 0.0019625 0.0376894 0.0345049 46 2368 49 6.99608e+06 206020 828058. 2865.25 4.89 0.268191 0.23247 28066 200906 -1 1634 20 1398 1889 180642 37048 3.72005 3.72005 -128.689 -3.72005 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.0272054 0.0238837 79 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30380 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 16.7 MiB 0.61 764 12362 5067 6494 801 55.2 MiB 0.15 0.00 4.07608 -123.99 -4.07608 4.07608 0.79 0.00072938 0.000674265 0.0567159 0.0524709 46 2519 33 6.99608e+06 220735 828058. 2865.25 3.34 0.216826 0.190332 28066 200906 -1 1836 21 1593 2316 234084 49256 3.83282 3.83282 -131.376 -3.83282 0 0 1.01997e+06 3529.29 0.31 0.09 0.17 -1 -1 0.31 0.0298716 0.0261879 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17448 1 0.03 -1 -1 30468 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 16.4 MiB 0.88 586 8909 3659 4796 454 55.0 MiB 0.10 0.00 3.79267 -108.98 -3.79267 3.79267 0.85 0.000613622 0.000567642 0.0375116 0.0347385 48 1967 34 6.99608e+06 191304 865456. 2994.66 4.87 0.249177 0.215223 28354 207349 -1 1510 20 1179 1527 153227 34946 3.41881 3.41881 -113.302 -3.41881 0 0 1.05005e+06 3633.38 0.33 0.07 0.20 -1 -1 0.33 0.0246297 0.0215078 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30116 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 16.3 MiB 0.76 860 12076 5115 6633 328 54.9 MiB 0.14 0.00 4.30315 -133.848 -4.30315 4.30315 0.81 0.000643035 0.000594587 0.0509321 0.0471294 38 2432 35 6.99608e+06 176588 678818. 2348.85 2.81 0.195376 0.170787 26626 170182 -1 1940 19 1333 1781 167567 32858 3.62841 3.62841 -133.931 -3.62841 0 0 902133. 3121.57 0.30 0.08 0.16 -1 -1 0.30 0.0222868 0.0198111 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30068 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 16.8 MiB 0.86 1156 13840 5407 6744 1689 55.5 MiB 0.19 0.00 4.42187 -150.582 -4.42187 4.42187 0.79 0.000791459 0.000731985 0.0667515 0.0617634 46 2859 23 6.99608e+06 250167 828058. 2865.25 3.00 0.231125 0.203264 28066 200906 -1 2311 20 1788 2437 225063 43912 3.88435 3.88435 -144.912 -3.88435 0 0 1.01997e+06 3529.29 0.31 0.09 0.20 -1 -1 0.31 0.0321912 0.028366 101 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30492 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 16.5 MiB 0.74 820 12876 4559 5981 2336 55.1 MiB 0.14 0.00 3.74867 -118.743 -3.74867 3.74867 0.79 0.000619771 0.000573462 0.0525878 0.0487128 36 2448 46 6.99608e+06 191304 648988. 2245.63 3.79 0.198716 0.173325 26050 158493 -1 1978 21 1207 1679 188797 34831 3.28871 3.28871 -121.086 -3.28871 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0255756 0.0223423 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 29960 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 16.7 MiB 0.97 889 10726 4477 5918 331 55.3 MiB 0.13 0.00 3.49879 -116.053 -3.49879 3.49879 0.79 0.000758013 0.00070093 0.0509276 0.0471548 46 2316 38 6.99608e+06 220735 828058. 2865.25 2.17 0.193004 0.169472 28066 200906 -1 1760 20 1261 1702 138405 29461 3.03316 3.03316 -111.255 -3.03316 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0299398 0.0262862 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17576 1 0.03 -1 -1 30300 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 17.1 MiB 2.52 1223 9263 3795 5242 226 55.6 MiB 0.14 0.00 4.74537 -163.238 -4.74537 4.74537 0.79 0.000819675 0.000758009 0.0450863 0.0417442 48 3578 39 6.99608e+06 294314 865456. 2994.66 3.68 0.23881 0.208995 28354 207349 -1 2904 25 2601 3684 576874 130247 4.67164 4.67164 -170.268 -4.67164 0 0 1.05005e+06 3633.38 0.33 0.17 0.20 -1 -1 0.33 0.0397803 0.0349296 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30288 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 16.8 MiB 1.66 727 10316 3968 5326 1022 55.2 MiB 0.12 0.00 3.38944 -114.889 -3.38944 3.38944 0.79 0.000668737 0.000617383 0.04579 0.0423578 48 2268 38 6.99608e+06 176588 865456. 2994.66 4.92 0.259634 0.225135 28354 207349 -1 1746 18 1500 1961 207105 42998 3.29171 3.29171 -119.312 -3.29171 0 0 1.05005e+06 3633.38 0.32 0.08 0.20 -1 -1 0.32 0.0249296 0.0218996 80 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.17 17556 1 0.03 -1 -1 30256 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 16.4 MiB 0.66 695 11609 4409 5699 1501 55.0 MiB 0.14 0.00 3.88892 -124.254 -3.88892 3.88892 0.78 0.000663816 0.000613385 0.0512596 0.0473904 42 3090 44 6.99608e+06 161872 744469. 2576.02 4.90 0.286991 0.249577 27202 183097 -1 1991 22 1651 2379 295891 64850 3.71141 3.71141 -131.394 -3.71141 0 0 949917. 3286.91 0.29 0.10 0.12 -1 -1 0.29 0.028436 0.0248723 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17820 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 16.6 MiB 1.14 729 11034 3646 5163 2225 55.1 MiB 0.12 0.00 4.07043 -123.448 -4.07043 4.07043 0.65 0.000714212 0.000660758 0.0501356 0.0464225 48 2318 36 6.99608e+06 206020 865456. 2994.66 4.90 0.314736 0.273144 28354 207349 -1 1874 20 1486 2131 201474 44978 4.02642 4.02642 -128.541 -4.02642 0 0 1.05005e+06 3633.38 0.33 0.08 0.20 -1 -1 0.33 0.0284618 0.0250046 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.15 17640 1 0.03 -1 -1 30056 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 16.7 MiB 1.38 807 9881 4044 5289 548 55.2 MiB 0.13 0.00 3.78147 -112.033 -3.78147 3.78147 0.79 0.000705927 0.000653214 0.0443194 0.0410787 40 2784 40 6.99608e+06 264882 706193. 2443.58 4.00 0.203847 0.177511 26914 176310 -1 2174 22 1567 2244 318710 82637 3.54711 3.54711 -122.467 -3.54711 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0306126 0.0268326 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.12 17648 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1189 13031 5003 6393 1635 55.4 MiB 0.19 0.00 5.55394 -180.701 -5.55394 5.55394 0.79 0.000825285 0.00076371 0.0648721 0.0600323 40 3687 40 6.99608e+06 250167 706193. 2443.58 4.65 0.21003 0.185167 26914 176310 -1 3048 30 3074 4613 677928 207788 5.0141 5.0141 -180.26 -5.0141 0 0 926341. 3205.33 0.28 0.21 0.17 -1 -1 0.28 0.045245 0.0395708 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.16 17088 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.2 MiB 0.80 678 10796 4152 4483 2161 54.8 MiB 0.11 0.00 3.34663 -92.0539 -3.34663 3.34663 0.80 0.000572789 0.000529805 0.0406938 0.0376753 34 1883 37 6.99608e+06 191304 618332. 2139.56 1.92 0.169023 0.147017 25762 151098 -1 1561 20 982 1561 148985 29275 2.92262 2.92262 -104.737 -2.92262 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0226388 0.0197357 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30288 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 17.1 MiB 2.44 1002 14907 4915 7817 2175 55.8 MiB 0.22 0.00 4.76623 -160.299 -4.76623 4.76623 0.86 0.000852429 0.000787447 0.0736469 0.0681556 44 3595 43 6.99608e+06 294314 787024. 2723.27 15.68 0.450367 0.39254 27778 195446 -1 2405 22 2264 2869 306499 60619 5.2299 5.2299 -170.912 -5.2299 0 0 997811. 3452.63 0.31 0.11 0.20 -1 -1 0.31 0.0369365 0.0325276 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.11 17776 1 0.03 -1 -1 30052 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.0 MiB 0.86 1317 10744 3615 5258 1871 55.7 MiB 0.15 0.00 4.50112 -167.331 -4.50112 4.50112 0.82 0.000779767 0.00072126 0.0515347 0.0476739 46 3157 29 6.99608e+06 235451 828058. 2865.25 4.65 0.288707 0.250929 28066 200906 -1 2655 22 2707 3376 391670 69371 4.41995 4.41995 -169.687 -4.41995 0 0 1.01997e+06 3529.29 0.32 0.14 0.17 -1 -1 0.32 0.0337909 0.0299834 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 16.9 MiB 1.27 944 9712 3948 5370 394 55.5 MiB 0.13 0.00 3.79657 -123.64 -3.79657 3.79657 0.79 0.000780016 0.000721277 0.0473127 0.0438014 44 2897 36 6.99608e+06 220735 787024. 2723.27 3.16 0.22299 0.195141 27778 195446 -1 1972 20 1500 1976 185004 40839 3.33551 3.33551 -118.345 -3.33551 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0307504 0.0270277 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17704 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 17.2 MiB 0.91 1078 15796 7109 8306 381 55.7 MiB 0.23 0.00 5.81442 -170.312 -5.81442 5.81442 0.78 0.00085408 0.000790072 0.0824353 0.0763563 46 3030 22 6.99608e+06 220735 828058. 2865.25 3.91 0.262509 0.2323 28066 200906 -1 2508 24 2058 3019 313939 59277 4.8675 4.8675 -163.012 -4.8675 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0390516 0.0343469 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.15 17540 1 0.02 -1 -1 30040 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 16.1 MiB 0.61 501 9684 3375 4762 1547 54.7 MiB 0.10 0.00 2.78575 -96.9119 -2.78575 2.78575 0.79 0.00053704 0.000495674 0.0354503 0.0327502 36 1699 34 6.99608e+06 176588 648988. 2245.63 1.72 0.141852 0.123335 26050 158493 -1 1329 18 831 1034 117346 25415 2.68802 2.68802 -104.094 -2.68802 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.019687 0.0171698 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30440 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 16.2 MiB 3.14 598 11756 4032 5894 1830 54.9 MiB 0.12 0.00 3.77712 -117.524 -3.77712 3.77712 0.79 0.000648 0.000598988 0.0501695 0.0464104 38 1820 24 6.99608e+06 206020 678818. 2348.85 1.98 0.180647 0.157932 26626 170182 -1 1388 20 1130 1682 155185 32066 3.28746 3.28746 -117.563 -3.28746 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0262861 0.0229832 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17432 1 0.03 -1 -1 29996 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 16.4 MiB 0.60 791 12331 4777 6250 1304 55.1 MiB 0.15 0.00 3.68644 -122.952 -3.68644 3.68644 0.79 0.000672195 0.000621643 0.0502301 0.0464872 40 2615 41 6.99608e+06 250167 706193. 2443.58 13.97 0.361167 0.31309 26914 176310 -1 2133 19 1471 2299 333928 96667 3.88656 3.88656 -140.476 -3.88656 0 0 926341. 3205.33 0.28 0.13 0.18 -1 -1 0.28 0.0366182 0.0328122 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30244 -1 -1 16 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 16.3 MiB 0.91 448 7369 2953 3764 652 54.7 MiB 0.07 0.00 3.31959 -76.8944 -3.31959 3.31959 0.78 0.000514702 0.00047561 0.0267698 0.0247737 38 1711 40 6.99608e+06 235451 678818. 2348.85 2.67 0.143034 0.123644 26626 170182 -1 1021 22 774 1010 80804 19966 3.08392 3.08392 -81.3246 -3.08392 0 0 902133. 3121.57 0.34 0.05 0.14 -1 -1 0.34 0.0179443 0.0157552 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 17.0 MiB 2.58 1245 8306 2489 4423 1394 55.5 MiB 0.13 0.00 4.0386 -139.855 -4.0386 4.0386 0.77 0.000789411 0.000729299 0.0404599 0.0374788 46 3408 46 6.99608e+06 250167 828058. 2865.25 2.63 0.181408 0.159422 28066 200906 -1 2723 23 1959 2884 314415 56704 3.66072 3.66072 -134.916 -3.66072 0 0 1.01997e+06 3529.29 0.33 0.11 0.16 -1 -1 0.33 0.0355792 0.0312437 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17872 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 17.1 MiB 2.11 1163 15568 6109 7919 1540 55.8 MiB 0.21 0.00 4.35051 -150.242 -4.35051 4.35051 0.78 0.000846702 0.000783653 0.0770123 0.0713282 40 3606 40 6.99608e+06 279598 706193. 2443.58 3.27 0.244504 0.21552 26914 176310 -1 2938 22 2570 3491 389073 80203 4.56835 4.56835 -164.431 -4.56835 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0362086 0.0318596 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.28 17668 14 0.27 -1 -1 32976 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 16.5 MiB 1.49 1276 8543 2090 5594 859 55.1 MiB 0.13 0.00 8.38905 -176.577 -8.38905 8.38905 0.78 0.000983732 0.000909512 0.05063 0.0468863 36 3501 22 6.79088e+06 255968 648988. 2245.63 5.31 0.257839 0.226095 25390 158009 -1 2996 25 1551 4647 533385 189563 7.33618 7.33618 -171.051 -7.33618 0 0 828058. 2865.25 0.26 0.18 0.16 -1 -1 0.26 0.0485714 0.0427147 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.24 17636 14 0.29 -1 -1 32792 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 16.3 MiB 2.04 1147 12331 4133 6053 2145 54.8 MiB 0.17 0.00 7.6097 -157.374 -7.6097 7.6097 0.78 0.000981806 0.000908066 0.0735448 0.0679177 34 3355 26 6.79088e+06 255968 618332. 2139.56 3.21 0.281136 0.247033 25102 150614 -1 2618 18 1299 3451 231995 49881 6.94554 6.94554 -154.164 -6.94554 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0375714 0.03326 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.25 17900 11 0.22 -1 -1 32984 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 16.3 MiB 3.12 1231 6383 1494 4487 402 55.0 MiB 0.14 0.01 6.81003 -148.008 -6.81003 6.81003 0.80 0.00330818 0.00307279 0.0471039 0.0434695 36 3279 22 6.79088e+06 255968 648988. 2245.63 4.04 0.250745 0.218986 25390 158009 -1 2791 18 1368 4186 280724 58772 6.14674 6.14674 -145.626 -6.14674 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0385994 0.0342619 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.26 17612 12 0.29 -1 -1 32772 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 16.4 MiB 0.98 1099 5293 1100 3885 308 54.9 MiB 0.08 0.00 7.28153 -143.815 -7.28153 7.28153 0.78 0.00099973 0.000925067 0.0322674 0.0299324 44 2848 30 6.79088e+06 323328 787024. 2723.27 4.51 0.32471 0.282092 27118 194962 -1 2243 16 1047 2983 216741 43423 6.61998 6.61998 -138.903 -6.61998 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0351765 0.0312897 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.26 17664 13 0.27 -1 -1 32864 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1401 5756 1163 4305 288 55.2 MiB 0.10 0.00 8.2885 -175.09 -8.2885 8.2885 0.78 0.00108509 0.00100408 0.0374463 0.0347172 40 3527 47 6.79088e+06 296384 706193. 2443.58 2.48 0.299086 0.261887 26254 175826 -1 3329 19 1520 3953 313320 63996 7.63711 7.63711 -174.358 -7.63711 0 0 926341. 3205.33 0.32 0.12 0.19 -1 -1 0.32 0.0437371 0.0388268 152 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.27 17636 13 0.24 -1 -1 32820 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 16.6 MiB 1.44 1243 11063 3086 5977 2000 55.2 MiB 0.15 0.00 7.40767 -155.099 -7.40767 7.40767 0.79 0.00045143 0.000411923 0.0638865 0.0590364 44 3205 16 6.79088e+06 255968 787024. 2723.27 4.23 0.344119 0.300728 27118 194962 -1 2626 15 1244 3607 234577 48036 6.58427 6.58427 -147.065 -6.58427 0 0 997811. 3452.63 0.36 0.09 0.19 -1 -1 0.36 0.0358735 0.0319858 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.24 17348 12 0.19 -1 -1 32600 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55980 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 16.0 MiB 1.23 831 9024 2147 6104 773 54.7 MiB 0.11 0.00 7.03512 -124.15 -7.03512 7.03512 0.79 0.000802037 0.000740484 0.0457803 0.0423735 36 2326 50 6.79088e+06 282912 648988. 2245.63 3.15 0.245918 0.214671 25390 158009 -1 1839 18 935 2168 150752 35998 6.02914 6.02914 -117.3 -6.02914 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0311054 0.0275795 106 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.22 17520 12 0.18 -1 -1 32844 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 16.1 MiB 2.52 997 12636 5258 7154 224 54.7 MiB 0.15 0.00 6.42294 -136.16 -6.42294 6.42294 0.78 0.000811091 0.000748617 0.0628198 0.058038 46 2357 17 6.79088e+06 229024 828058. 2865.25 4.57 0.28159 0.246484 27406 200422 -1 2043 16 974 2626 159242 34234 5.65861 5.65861 -131.355 -5.65861 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0286435 0.025461 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.25 17728 12 0.18 -1 -1 32596 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 16.2 MiB 2.78 1116 6203 1235 4627 341 54.6 MiB 0.09 0.00 7.04997 -146.463 -7.04997 7.04997 0.78 0.00083425 0.000769996 0.0320899 0.0296962 38 2830 16 6.79088e+06 269440 678818. 2348.85 2.92 0.194485 0.169934 25966 169698 -1 2402 16 1117 2793 186932 39580 6.25178 6.25178 -138.535 -6.25178 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0291308 0.0259313 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.24 17352 13 0.19 -1 -1 32680 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 16.3 MiB 1.90 1109 7177 1737 4800 640 54.7 MiB 0.11 0.00 7.59858 -166.488 -7.59858 7.59858 0.79 0.000890844 0.000819305 0.0414842 0.0383853 36 2916 24 6.79088e+06 202080 648988. 2245.63 3.56 0.233225 0.203989 25390 158009 -1 2435 17 1025 2377 177631 37271 6.91327 6.91327 -162.009 -6.91327 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0324783 0.0287751 106 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17320 12 0.18 -1 -1 32516 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55868 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 16.0 MiB 1.53 935 11402 3533 6247 1622 54.6 MiB 0.12 0.00 7.11778 -148.236 -7.11778 7.11778 0.82 0.000573579 0.00052131 0.0488442 0.0448207 30 2503 47 6.79088e+06 229024 556674. 1926.21 1.26 0.175178 0.153677 24526 138013 -1 1951 14 856 2022 111924 24776 6.24408 6.24408 -141.523 -6.24408 0 0 706193. 2443.58 0.23 0.06 0.09 -1 -1 0.23 0.0248492 0.0221406 96 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17312 12 0.15 -1 -1 32524 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55944 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 16.0 MiB 2.08 937 12856 4731 5927 2198 54.6 MiB 0.15 0.00 5.84661 -143.137 -5.84661 5.84661 0.79 0.000809411 0.00074663 0.0628048 0.0579926 46 2552 15 6.79088e+06 229024 828058. 2865.25 4.15 0.272835 0.238998 27406 200422 -1 1955 16 894 2437 164096 33756 5.18431 5.18431 -134.024 -5.18431 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0287163 0.025524 101 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.27 17724 13 0.24 -1 -1 32500 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 16.6 MiB 1.69 1258 8319 2303 5000 1016 55.2 MiB 0.13 0.00 7.91028 -166.355 -7.91028 7.91028 0.78 0.00103255 0.000946907 0.0515207 0.0476957 38 3285 23 6.79088e+06 269440 678818. 2348.85 2.03 0.207347 0.182458 25966 169698 -1 2676 16 1210 3225 212164 43654 6.88526 6.88526 -158.623 -6.88526 0 0 902133. 3121.57 0.30 0.09 0.17 -1 -1 0.30 0.03577 0.0318469 134 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17856 14 0.30 -1 -1 32968 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 16.7 MiB 1.70 1345 7268 1767 5038 463 55.2 MiB 0.12 0.00 8.74626 -182.518 -8.74626 8.74626 0.78 0.00106658 0.000985041 0.0456398 0.0421754 36 3534 21 6.79088e+06 296384 648988. 2245.63 2.37 0.263465 0.229996 25390 158009 -1 2963 16 1332 3396 229727 49960 7.56225 7.56225 -173.31 -7.56225 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0384613 0.034238 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.22 17400 11 0.17 -1 -1 32700 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 16.1 MiB 2.12 987 12186 3908 6119 2159 54.6 MiB 0.14 0.00 6.7187 -136.52 -6.7187 6.7187 0.79 0.00079832 0.000736984 0.0580459 0.0536367 46 2308 16 6.79088e+06 282912 828058. 2865.25 3.97 0.273568 0.238932 27406 200422 -1 1972 14 943 2327 160913 32338 5.91503 5.91503 -129.718 -5.91503 0 0 1.01997e+06 3529.29 0.31 0.07 0.20 -1 -1 0.31 0.0260022 0.0232107 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.25 17900 12 0.37 -1 -1 32804 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 16.8 MiB 1.28 1224 13348 3764 6998 2586 55.5 MiB 0.19 0.00 7.24781 -156.42 -7.24781 7.24781 0.78 0.00107925 0.000997788 0.0788415 0.0729505 38 3602 44 6.79088e+06 323328 678818. 2348.85 2.96 0.311867 0.274676 25966 169698 -1 2860 18 1413 4427 279784 59066 6.58078 6.58078 -153.511 -6.58078 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0413673 0.0367797 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.27 17816 14 0.24 -1 -1 32712 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 16.4 MiB 2.25 1311 6743 1544 4772 427 55.0 MiB 0.11 0.00 8.47078 -173.752 -8.47078 8.47078 0.80 0.000990191 0.000915759 0.0421304 0.039067 36 3798 42 6.79088e+06 255968 648988. 2245.63 3.84 0.244215 0.213141 25390 158009 -1 3058 27 1353 3875 509402 196667 7.22545 7.22545 -164.392 -7.22545 0 0 828058. 2865.25 0.26 0.18 0.15 -1 -1 0.26 0.0513971 0.0451861 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.24 17764 12 0.16 -1 -1 32444 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 15.9 MiB 1.53 1008 11740 3543 6499 1698 54.6 MiB 0.14 0.00 7.24148 -161.628 -7.24148 7.24148 0.92 0.000816047 0.000753088 0.0600514 0.0554737 34 2783 17 6.79088e+06 202080 618332. 2139.56 2.51 0.208023 0.183018 25102 150614 -1 2379 15 959 2452 167430 36072 6.21607 6.21607 -155.277 -6.21607 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.027767 0.0247096 105 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.21 17372 10 0.10 -1 -1 32220 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55620 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 15.7 MiB 1.79 679 4973 1078 3739 156 54.3 MiB 0.06 0.00 4.83286 -114.815 -4.83286 4.83286 0.77 0.000613568 0.000567029 0.0215867 0.0199515 34 2157 28 6.79088e+06 175136 618332. 2139.56 5.19 0.22858 0.196916 25102 150614 -1 1828 28 756 1705 271371 110327 4.29586 4.29586 -116.956 -4.29586 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0324829 0.0283032 66 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.24 17344 13 0.18 -1 -1 32636 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55980 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 16.0 MiB 1.91 997 12331 4111 5801 2419 54.7 MiB 0.15 0.00 7.54752 -160.268 -7.54752 7.54752 0.78 0.000826192 0.000762735 0.0615951 0.0569132 36 2658 28 6.79088e+06 242496 648988. 2245.63 2.66 0.237942 0.208935 25390 158009 -1 2340 19 1195 2820 193432 41368 6.41633 6.41633 -149.84 -6.41633 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.033148 0.0293394 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17764 13 0.27 -1 -1 32832 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 16.5 MiB 1.69 1287 9943 2672 5830 1441 55.1 MiB 0.15 0.00 7.66212 -166.709 -7.66212 7.66212 0.78 0.00106982 0.000989095 0.0611745 0.056637 44 3435 33 6.79088e+06 282912 787024. 2723.27 5.13 0.38692 0.337717 27118 194962 -1 2653 16 1234 3562 263352 51175 6.75652 6.75652 -154.939 -6.75652 0 0 997811. 3452.63 0.31 0.10 0.20 -1 -1 0.31 0.0352544 0.0318143 143 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.24 17840 13 0.28 -1 -1 32408 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 16.4 MiB 2.07 1366 11989 3183 6998 1808 55.2 MiB 0.18 0.00 7.56666 -167.812 -7.56666 7.56666 0.79 0.00104378 0.000966535 0.0758478 0.0704649 38 3748 34 6.79088e+06 282912 678818. 2348.85 5.14 0.31051 0.273506 25966 169698 -1 3111 32 1408 4169 528617 227059 6.59202 6.59202 -157.06 -6.59202 0 0 902133. 3121.57 0.27 0.21 0.16 -1 -1 0.27 0.0613733 0.0538563 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.16 17056 9 0.11 -1 -1 32288 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55556 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 15.6 MiB 1.08 700 7596 2556 3853 1187 54.3 MiB 0.07 0.00 4.83723 -93.7879 -4.83723 4.83723 0.79 0.000560235 0.000517706 0.0288248 0.0266921 34 1695 24 6.79088e+06 242496 618332. 2139.56 1.69 0.142808 0.123994 25102 150614 -1 1584 18 688 1651 118198 25269 4.3539 4.3539 -98.5304 -4.3539 0 0 787024. 2723.27 0.25 0.06 0.16 -1 -1 0.25 0.0208894 0.01832 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17572 13 0.27 -1 -1 32664 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 16.4 MiB 1.76 1263 10263 2709 7113 441 55.0 MiB 0.15 0.00 8.1433 -166.845 -8.1433 8.1433 0.87 0.00101265 0.000936692 0.0585903 0.0542254 40 3155 20 6.79088e+06 309856 706193. 2443.58 2.61 0.269495 0.237238 26254 175826 -1 3050 17 1505 4075 308519 63019 7.08214 7.08214 -160.5 -7.08214 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0375197 0.0333364 136 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17192 8 0.09 -1 -1 32660 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55372 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 15.6 MiB 1.76 633 5921 1256 4594 71 54.1 MiB 0.07 0.00 4.18492 -95.1021 -4.18492 4.18492 0.79 0.000552049 0.000508942 0.0226908 0.0209313 34 1897 28 6.79088e+06 148192 618332. 2139.56 1.73 0.114086 0.0985562 25102 150614 -1 1559 21 694 1624 104857 24022 4.12782 4.12782 -101.602 -4.12782 0 0 787024. 2723.27 0.30 0.05 0.16 -1 -1 0.30 0.0190046 0.0167417 60 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.24 17460 15 0.23 -1 -1 32920 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 16.4 MiB 2.00 1197 14144 5293 7084 1767 54.9 MiB 0.19 0.00 8.89118 -178.017 -8.89118 8.89118 0.78 0.000933057 0.000863202 0.0779819 0.0721828 36 3835 32 6.79088e+06 242496 648988. 2245.63 6.14 0.284954 0.250794 25390 158009 -1 3072 18 1334 3748 291916 60438 7.89901 7.89901 -172.866 -7.89901 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.035967 0.0318751 121 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.24 17536 13 0.22 -1 -1 32848 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 16.3 MiB 1.70 1207 12898 3890 6827 2181 54.8 MiB 0.17 0.00 6.79894 -149.553 -6.79894 6.79894 0.81 0.0009314 0.000860978 0.0714799 0.0661488 36 3299 30 6.79088e+06 242496 648988. 2245.63 6.89 0.288469 0.253957 25390 158009 -1 2825 23 1285 3716 505813 199805 5.82898 5.82898 -143.772 -5.82898 0 0 828058. 2865.25 0.31 0.18 0.16 -1 -1 0.31 0.0445407 0.0395234 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17784 13 0.26 -1 -1 32804 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 16.4 MiB 1.43 1179 7024 1686 4552 786 55.0 MiB 0.11 0.00 7.81323 -165.772 -7.81323 7.81323 0.78 0.0010028 0.000927948 0.0435563 0.0403568 38 3643 49 6.79088e+06 242496 678818. 2348.85 4.27 0.287511 0.250693 25966 169698 -1 2698 29 1426 4050 422160 149696 6.74112 6.74112 -158.957 -6.74112 0 0 902133. 3121.57 0.27 0.17 0.16 -1 -1 0.27 0.0571866 0.0503787 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.24 17404 12 0.16 -1 -1 32748 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55944 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 15.9 MiB 1.76 1077 9024 2472 4753 1799 54.6 MiB 0.11 0.00 6.90294 -154.176 -6.90294 6.90294 0.79 0.00083279 0.000768938 0.0467537 0.0432259 36 3085 40 6.79088e+06 215552 648988. 2245.63 2.32 0.214368 0.188016 25390 158009 -1 2399 27 1095 2648 302475 111183 5.99004 5.99004 -144.9 -5.99004 0 0 828058. 2865.25 0.26 0.13 0.16 -1 -1 0.26 0.0429024 0.0377233 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.21 17344 11 0.15 -1 -1 32684 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 16.0 MiB 1.67 910 12120 3870 6285 1965 54.6 MiB 0.14 0.00 6.3635 -135.496 -6.3635 6.3635 0.78 0.000753896 0.000696175 0.0558103 0.051565 36 2657 41 6.79088e+06 242496 648988. 2245.63 2.73 0.231981 0.203058 25390 158009 -1 2177 15 979 2374 172658 36547 5.69238 5.69238 -132.508 -5.69238 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0254215 0.022618 95 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.23 17572 11 0.17 -1 -1 32836 -1 -1 21 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 15.9 MiB 1.40 934 11106 3231 6003 1872 54.5 MiB 0.13 0.00 7.04953 -133.904 -7.04953 7.04953 0.78 0.000802824 0.000741681 0.0540168 0.0499262 36 2542 18 6.79088e+06 282912 648988. 2245.63 2.36 0.212837 0.187285 25390 158009 -1 2074 17 945 2463 170056 35783 6.24403 6.24403 -127.696 -6.24403 0 0 828058. 2865.25 0.27 0.08 0.14 -1 -1 0.27 0.0295499 0.02623 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.21 17476 12 0.20 -1 -1 32664 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 16.4 MiB 2.27 1143 7431 2070 3957 1404 54.9 MiB 0.11 0.00 7.03679 -162.788 -7.03679 7.03679 0.75 0.000944265 0.000872439 0.0441558 0.0408968 38 3426 38 6.79088e+06 229024 678818. 2348.85 4.35 0.267653 0.233616 25966 169698 -1 2622 22 1412 3514 343557 100252 6.58078 6.58078 -167.458 -6.58078 0 0 902133. 3121.57 0.33 0.14 0.16 -1 -1 0.33 0.044214 0.0391044 119 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.20 17556 12 0.19 -1 -1 32668 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 16.0 MiB 2.08 1005 7304 1599 5397 308 54.6 MiB 0.10 0.00 6.85818 -143.144 -6.85818 6.85818 0.78 0.000816408 0.000753615 0.0380214 0.0351626 38 2861 25 6.79088e+06 229024 678818. 2348.85 4.15 0.286146 0.248475 25966 169698 -1 2321 19 1087 2707 187096 38088 5.92738 5.92738 -137.921 -5.92738 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0328844 0.0291027 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.25 17540 10 0.14 -1 -1 32816 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 15.9 MiB 1.39 942 8378 2178 5592 608 54.6 MiB 0.11 0.00 6.16888 -135.594 -6.16888 6.16888 0.85 0.000799333 0.000737937 0.043346 0.0400531 34 2791 42 6.79088e+06 229024 618332. 2139.56 3.09 0.23306 0.203804 25102 150614 -1 2265 29 963 2673 331562 132087 5.36338 5.36338 -129.251 -5.36338 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0441693 0.0387875 103 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18332 13 0.29 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 16.8 MiB 1.67 1312 13663 4088 7126 2449 55.2 MiB 0.20 0.00 8.09614 -166.803 -8.09614 8.09614 0.85 0.00110463 0.00102007 0.0819633 0.0756118 38 3598 50 6.79088e+06 282912 678818. 2348.85 15.17 0.516507 0.451017 25966 169698 -1 2788 16 1383 4013 256749 54724 7.0141 7.0141 -153.927 -7.0141 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0400155 0.0356406 149 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.28 18108 14 0.31 -1 -1 33300 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 16.5 MiB 2.01 1261 10584 2627 7173 784 55.2 MiB 0.16 0.00 7.68903 -168.897 -7.68903 7.68903 0.78 0.00102219 0.000945081 0.0653405 0.0603563 40 3438 36 6.79088e+06 242496 706193. 2443.58 20.43 0.495767 0.431413 26254 175826 -1 3285 49 1656 4986 1174795 622841 6.95258 6.95258 -169.158 -6.95258 0 0 926341. 3205.33 0.28 0.42 0.17 -1 -1 0.28 0.0880823 0.076844 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.23 17640 12 0.15 -1 -1 32600 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 16.0 MiB 1.91 1099 9036 2242 5503 1291 54.6 MiB 0.12 0.00 7.11595 -155.813 -7.11595 7.11595 0.78 0.000823739 0.000759514 0.0472541 0.0436507 30 2846 40 6.79088e+06 215552 556674. 1926.21 2.83 0.174734 0.153973 24526 138013 -1 2358 19 1048 2722 194032 39793 6.20488 6.20488 -150.044 -6.20488 0 0 706193. 2443.58 0.25 0.09 0.13 -1 -1 0.25 0.0325469 0.0287783 101 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.28 18104 12 0.24 -1 -1 32884 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 16.8 MiB 2.15 1467 6039 1319 4287 433 55.2 MiB 0.10 0.00 7.47278 -158.083 -7.47278 7.47278 0.80 0.00108749 0.00100678 0.0383861 0.0356142 44 3602 28 6.79088e+06 323328 787024. 2723.27 3.17 0.273934 0.239696 27118 194962 -1 2932 15 1270 3790 264837 52111 6.54502 6.54502 -147.889 -6.54502 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0369465 0.03296 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17992 14 0.33 -1 -1 33176 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 16.5 MiB 1.23 1271 10129 2796 6287 1046 55.1 MiB 0.15 0.00 8.30959 -169.599 -8.30959 8.30959 0.78 0.00104518 0.000966937 0.0611773 0.0566269 40 2772 17 6.79088e+06 296384 706193. 2443.58 4.66 0.436399 0.379943 26254 175826 -1 2870 18 1434 4094 290241 60193 7.5622 7.5622 -163.755 -7.5622 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0406256 0.036085 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.25 17880 13 0.31 -1 -1 32720 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1280 4811 900 3622 289 55.0 MiB 0.08 0.00 8.58767 -169.841 -8.58767 8.58767 0.78 0.000996909 0.000921184 0.0292413 0.0271058 38 3438 18 6.79088e+06 309856 678818. 2348.85 2.61 0.225279 0.196566 25966 169698 -1 2928 16 1366 3595 229767 48338 7.47267 7.47267 -159.93 -7.47267 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0353419 0.0314273 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.26 17652 13 0.25 -1 -1 32812 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 16.4 MiB 1.93 1180 11979 3854 6305 1820 54.9 MiB 0.09 0.00 7.68398 -158.005 -7.68398 7.68398 0.80 0.000434215 0.000390192 0.0311924 0.0284224 44 3199 17 6.79088e+06 282912 787024. 2723.27 2.74 0.204912 0.178833 27118 194962 -1 2562 17 1199 3542 226538 46861 6.96798 6.96798 -148.562 -6.96798 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0360983 0.0320434 125 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.23 17560 12 0.18 -1 -1 32732 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 16.4 MiB 1.78 851 11432 3292 6222 1918 54.9 MiB 0.15 0.00 6.74005 -141.479 -6.74005 6.74005 0.78 0.000913671 0.000844752 0.0640901 0.0592973 38 2815 34 6.79088e+06 215552 678818. 2348.85 4.08 0.272763 0.239864 25966 169698 -1 1976 15 1023 2779 160650 36721 6.06839 6.06839 -139.29 -6.06839 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0308587 0.0274334 111 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.30 18700 14 0.38 -1 -1 32792 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 16.8 MiB 1.07 1525 8269 1990 5730 549 55.3 MiB 0.14 0.00 8.76146 -179.232 -8.76146 8.76146 0.78 0.00115797 0.00106127 0.0559708 0.0516645 40 3926 31 6.79088e+06 282912 706193. 2443.58 3.46 0.318453 0.280262 26254 175826 -1 3663 19 1623 4761 365140 75075 7.59797 7.59797 -175.41 -7.59797 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0459168 0.0407933 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.22 17340 11 0.19 -1 -1 32316 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 16.3 MiB 2.02 1083 5656 1222 4312 122 54.7 MiB 0.09 0.00 6.44427 -138.672 -6.44427 6.44427 0.78 0.000895016 0.000827673 0.0335571 0.031088 38 3163 21 6.79088e+06 215552 678818. 2348.85 2.18 0.180773 0.15804 25966 169698 -1 2597 18 1233 3449 240915 48934 5.60634 5.60634 -133.181 -5.60634 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0340285 0.0301094 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.15 17840 13 0.26 -1 -1 33336 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 16.5 MiB 1.61 1224 12683 3651 6628 2404 55.1 MiB 0.17 0.00 8.19665 -170.984 -8.19665 8.19665 0.78 0.00100264 0.000921455 0.0746888 0.0690142 34 3606 33 6.79088e+06 269440 618332. 2139.56 4.34 0.26912 0.237213 25102 150614 -1 2783 18 1196 3838 266925 55339 7.08552 7.08552 -162.344 -7.08552 0 0 787024. 2723.27 0.27 0.13 0.15 -1 -1 0.27 0.0411903 0.0369013 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.25 17804 12 0.25 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 16.8 MiB 1.79 1183 14221 4949 6932 2340 55.2 MiB 0.20 0.00 7.19197 -155.782 -7.19197 7.19197 0.78 0.00106739 0.000982048 0.085607 0.0790643 46 3294 19 6.79088e+06 282912 828058. 2865.25 2.65 0.247785 0.21936 27406 200422 -1 2569 18 1326 4271 261575 56224 6.41972 6.41972 -147.141 -6.41972 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0413312 0.0367071 146 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.23 17384 13 0.26 -1 -1 32764 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 16.4 MiB 1.31 1273 10103 2600 6194 1309 55.0 MiB 0.14 0.00 8.00961 -170.987 -8.00961 8.00961 0.80 0.000989611 0.00091586 0.0570271 0.0527755 40 2854 20 6.79088e+06 296384 706193. 2443.58 4.41 0.346449 0.302277 26254 175826 -1 2797 15 1174 3111 232362 47684 6.72081 6.72081 -157.501 -6.72081 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.033348 0.0296669 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.25 17788 13 0.21 -1 -1 32864 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 16.5 MiB 2.38 1094 12364 4318 5742 2304 55.1 MiB 0.17 0.00 7.6093 -157.428 -7.6093 7.6093 0.82 0.000954265 0.000881488 0.070276 0.0649665 42 3571 49 6.79088e+06 242496 744469. 2576.02 5.48 0.419916 0.366628 26542 182613 -1 2466 16 1275 3331 225822 49614 6.50936 6.50936 -147.774 -6.50936 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0341849 0.0303785 124 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.27 17824 12 0.24 -1 -1 32740 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 16.5 MiB 1.82 1339 6489 1417 4538 534 55.1 MiB 0.11 0.00 7.45027 -163.951 -7.45027 7.45027 0.78 0.00102323 0.000945651 0.0406574 0.0376267 44 3364 18 6.79088e+06 269440 787024. 2723.27 5.22 0.336395 0.292815 27118 194962 -1 2717 20 1156 3817 249781 49754 6.33367 6.33367 -150.396 -6.33367 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0428637 0.0379522 140 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.27 17916 13 0.29 -1 -1 32900 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 16.8 MiB 1.47 1312 5757 1265 4157 335 55.2 MiB 0.10 0.00 7.77691 -170.238 -7.77691 7.77691 0.78 0.00109642 0.00101407 0.0389971 0.0361188 44 3387 19 6.79088e+06 269440 787024. 2723.27 4.25 0.349565 0.303994 27118 194962 -1 2791 15 1245 3581 244115 50196 6.84611 6.84611 -161.067 -6.84611 0 0 997811. 3452.63 0.37 0.10 0.20 -1 -1 0.37 0.0385219 0.0345157 145 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17820 14 0.27 -1 -1 33036 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 16.4 MiB 1.33 1196 9783 2600 6598 585 54.9 MiB 0.14 0.00 8.29092 -170.108 -8.29092 8.29092 0.80 0.000948342 0.0008772 0.0546423 0.0505708 36 3354 28 6.79088e+06 269440 648988. 2245.63 2.51 0.224278 0.197278 25390 158009 -1 2802 19 1399 3804 276087 57490 7.17167 7.17167 -161.862 -7.17167 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0380665 0.033748 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17944 13 0.26 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 16.6 MiB 2.02 1239 12547 3128 7964 1455 55.2 MiB 0.18 0.00 8.02156 -162.008 -8.02156 8.02156 0.78 0.001028 0.000951339 0.0734895 0.0679951 36 3591 27 6.79088e+06 282912 648988. 2245.63 7.50 0.296719 0.261267 25390 158009 -1 3107 20 1785 5158 359317 73582 7.08896 7.08896 -161.04 -7.08896 0 0 828058. 2865.25 0.27 0.13 0.16 -1 -1 0.27 0.0429847 0.0380496 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.26 17888 13 0.32 -1 -1 32668 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 16.7 MiB 1.72 1309 8319 2069 5720 530 55.1 MiB 0.13 0.00 7.83086 -168.91 -7.83086 7.83086 0.79 0.00106757 0.000987585 0.0537668 0.0497332 44 3344 19 6.79088e+06 282912 787024. 2723.27 4.16 0.351704 0.306834 27118 194962 -1 2743 16 1196 3428 251887 49443 6.83492 6.83492 -158.577 -6.83492 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.037216 0.0332254 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.29 17884 12 0.29 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 16.7 MiB 1.42 1321 14779 4130 8902 1747 55.1 MiB 0.21 0.00 7.66848 -162.706 -7.66848 7.66848 0.86 0.00106359 0.000982657 0.089093 0.0823237 46 3195 21 6.79088e+06 282912 828058. 2865.25 4.55 0.399688 0.350413 27406 200422 -1 2726 15 1250 3510 236355 48155 6.86299 6.86299 -155.257 -6.86299 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0366532 0.0327488 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.22 17372 11 0.12 -1 -1 32596 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 16.0 MiB 1.16 752 5224 962 4133 129 54.5 MiB 0.08 0.00 6.41251 -131.25 -6.41251 6.41251 0.78 0.000751261 0.000692482 0.0266408 0.0245763 34 2625 35 6.79088e+06 188608 618332. 2139.56 2.69 0.174496 0.152076 25102 150614 -1 1896 15 933 2253 147769 35005 5.48098 5.48098 -131.524 -5.48098 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0254194 0.0225906 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17616 13 0.20 -1 -1 32676 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 16.4 MiB 1.64 1180 7221 1648 4796 777 54.9 MiB 0.10 0.00 7.59268 -164.24 -7.59268 7.59268 0.78 0.000915945 0.00084636 0.0396334 0.0366962 36 3211 26 6.79088e+06 269440 648988. 2245.63 4.40 0.236455 0.207364 25390 158009 -1 2638 14 1144 2969 213116 44458 6.74539 6.74539 -157.91 -6.74539 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0297187 0.0264889 118 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.28 18356 14 0.42 -1 -1 32812 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 16.9 MiB 1.09 1584 7108 1588 4936 584 55.5 MiB 0.13 0.00 9.32595 -187.261 -9.32595 9.32595 0.78 0.00120493 0.00111311 0.0502848 0.0465126 46 3849 31 6.79088e+06 323328 828058. 2865.25 4.26 0.318716 0.279668 27406 200422 -1 3095 17 1519 4597 314099 61494 8.0201 8.0201 -170.73 -8.0201 0 0 1.01997e+06 3529.29 0.32 0.12 0.20 -1 -1 0.32 0.0452282 0.0406344 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.26 17604 13 0.28 -1 -1 32852 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 16.6 MiB 1.44 1314 12733 3340 7297 2096 55.2 MiB 0.17 0.00 7.97246 -177.126 -7.97246 7.97246 0.79 0.000986814 0.000912333 0.0715615 0.0662069 38 3385 26 6.79088e+06 282912 678818. 2348.85 4.01 0.285082 0.251027 25966 169698 -1 2807 15 1312 3531 218408 45844 6.96022 6.96022 -168.922 -6.96022 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.033359 0.0296964 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17548 11 0.20 -1 -1 32572 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 16.1 MiB 0.67 915 4304 849 3239 216 54.7 MiB 0.07 0.00 6.78614 -143.669 -6.78614 6.78614 0.73 0.000827548 0.000764361 0.0237028 0.0219683 36 2654 29 6.79088e+06 229024 648988. 2245.63 3.00 0.19846 0.172803 25390 158009 -1 2145 18 1008 2741 195708 40401 6.06839 6.06839 -136.309 -6.06839 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0305515 0.0270631 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.28 18576 15 0.54 -1 -1 32820 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 16.9 MiB 1.12 1525 5039 926 3796 317 55.5 MiB 0.10 0.00 9.59451 -195.342 -9.59451 9.59451 0.78 0.00123917 0.0011447 0.0367969 0.0340532 38 4028 23 6.79088e+06 336800 678818. 2348.85 5.83 0.448561 0.390262 25966 169698 -1 3340 17 1730 4867 308181 63984 8.35685 8.35685 -184.172 -8.35685 0 0 902133. 3121.57 0.27 0.12 0.16 -1 -1 0.27 0.0479049 0.0428512 179 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.26 17720 13 0.30 -1 -1 32856 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 16.7 MiB 1.14 1281 8502 2158 5508 836 55.1 MiB 0.13 0.00 8.03603 -175.042 -8.03603 8.03603 0.79 0.00106414 0.000984256 0.0541769 0.0502012 36 3659 43 6.79088e+06 269440 648988. 2245.63 2.78 0.251207 0.220738 25390 158009 -1 3090 19 1420 3741 261146 54094 7.22201 7.22201 -170.83 -7.22201 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0424935 0.0376983 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.22 17104 11 0.13 -1 -1 32324 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 16.1 MiB 1.15 1102 10183 2765 6008 1410 54.6 MiB 0.12 0.00 6.80233 -145.463 -6.80233 6.80233 0.89 0.000551241 0.000501244 0.0512127 0.0472109 30 2710 17 6.79088e+06 175136 556674. 1926.21 1.47 0.149785 0.132584 24526 138013 -1 2258 15 938 2326 139157 30554 5.65673 5.65673 -139.992 -5.65673 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0267835 0.02381 94 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.27 17628 12 0.29 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 16.8 MiB 1.05 1332 7953 2031 5347 575 55.3 MiB 0.12 0.00 7.73069 -165.16 -7.73069 7.73069 0.78 0.00106469 0.000981623 0.0507066 0.0468112 38 3591 21 6.79088e+06 269440 678818. 2348.85 2.83 0.269994 0.236096 25966 169698 -1 2827 18 1341 4507 292238 58584 6.54507 6.54507 -155.173 -6.54507 0 0 902133. 3121.57 0.30 0.11 0.16 -1 -1 0.30 0.041068 0.0372105 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.22 17636 12 0.17 -1 -1 32632 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 16.4 MiB 1.13 1053 12008 3553 6389 2066 54.8 MiB 0.15 0.00 7.28149 -150.89 -7.28149 7.28149 0.80 0.000868718 0.000801463 0.0621805 0.0574721 46 2565 20 6.79088e+06 242496 828058. 2865.25 4.81 0.320344 0.280067 27406 200422 -1 2042 17 1063 2852 176731 37737 6.20493 6.20493 -139.057 -6.20493 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0324034 0.0288082 113 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17544 12 0.18 -1 -1 32624 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 16.0 MiB 0.91 903 6163 1336 4643 184 54.7 MiB 0.09 0.00 7.56546 -146.033 -7.56546 7.56546 0.78 0.000817775 0.000755244 0.0331116 0.0305923 38 2247 14 6.79088e+06 229024 678818. 2348.85 3.94 0.292088 0.253413 25966 169698 -1 1824 14 729 2078 118094 25388 6.54507 6.54507 -136.622 -6.54507 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0263037 0.0234348 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 18228 12 0.28 -1 -1 32860 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 16.5 MiB 1.97 1197 6039 1341 4100 598 55.1 MiB 0.10 0.00 7.39356 -141.853 -7.39356 7.39356 0.81 0.00100127 0.000926091 0.0362163 0.0335995 36 3368 49 6.79088e+06 350272 648988. 2245.63 8.48 0.390954 0.338222 25390 158009 -1 2733 27 1496 4752 551271 201694 6.59197 6.59197 -137.24 -6.59197 0 0 828058. 2865.25 0.26 0.19 0.15 -1 -1 0.26 0.0525527 0.0461641 140 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.27 17572 13 0.33 -1 -1 32944 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 16.9 MiB 1.00 1362 9111 2298 6252 561 55.3 MiB 0.15 0.00 7.91407 -168.647 -7.91407 7.91407 0.90 0.00114586 0.00105854 0.0524876 0.0482808 38 3894 45 6.79088e+06 309856 678818. 2348.85 5.75 0.468146 0.406822 25966 169698 -1 3114 36 2339 6533 573839 161801 7.20738 7.20738 -164.31 -7.20738 0 0 902133. 3121.57 0.27 0.22 0.16 -1 -1 0.27 0.0755048 0.0662013 160 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17812 12 0.22 -1 -1 32704 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 16.3 MiB 1.18 1278 7770 1751 5660 359 54.9 MiB 0.15 0.00 7.73336 -164.138 -7.73336 7.73336 0.78 0.000817523 0.000748926 0.047223 0.0435862 44 3450 24 6.79088e+06 269440 787024. 2723.27 4.60 0.339094 0.295978 27118 194962 -1 2722 17 1326 3789 273671 53269 6.53737 6.53737 -153.32 -6.53737 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0381451 0.0339134 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.23 17372 12 0.14 -1 -1 32580 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55716 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 15.9 MiB 1.80 988 4473 916 3372 185 54.4 MiB 0.07 0.00 7.24997 -147.671 -7.24997 7.24997 0.72 0.000768831 0.000709439 0.0245229 0.0227 36 2589 21 6.79088e+06 202080 648988. 2245.63 3.90 0.183004 0.159546 25390 158009 -1 2160 15 897 2477 169152 36106 5.99697 5.99697 -138.191 -5.99697 0 0 828058. 2865.25 0.28 0.04 0.15 -1 -1 0.28 0.0143037 0.0129497 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.25 17636 12 0.21 -1 -1 32416 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 16.1 MiB 1.31 1084 12898 3877 6797 2224 54.7 MiB 0.16 0.00 7.21455 -151.198 -7.21455 7.21455 0.79 0.000866613 0.000801071 0.0660277 0.0609771 36 3019 27 6.79088e+06 255968 648988. 2245.63 3.72 0.250804 0.220324 25390 158009 -1 2450 18 1117 3143 217102 44447 6.41628 6.41628 -148.507 -6.41628 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0333225 0.0295188 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.26 17944 11 0.18 -1 -1 32924 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 16.5 MiB 1.34 1115 8626 2299 5376 951 55.0 MiB 0.12 0.00 6.84847 -137.093 -6.84847 6.84847 0.78 0.000965871 0.000893199 0.0503512 0.0466144 44 2722 15 6.79088e+06 269440 787024. 2723.27 3.91 0.303964 0.264923 27118 194962 -1 2230 15 894 2899 195610 39265 5.91846 5.91846 -129.703 -5.91846 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0329404 0.0293465 125 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.22 17460 11 0.20 -1 -1 32740 -1 -1 19 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 16.3 MiB 1.16 1077 4642 990 3215 437 54.8 MiB 0.07 0.00 6.39394 -126.807 -6.39394 6.39394 0.79 0.000895408 0.000828123 0.0280848 0.0260892 36 2907 20 6.79088e+06 255968 648988. 2245.63 4.25 0.211579 0.184115 25390 158009 -1 2506 42 1209 3560 623393 302999 5.48104 5.48104 -123.736 -5.48104 0 0 828058. 2865.25 0.26 0.25 0.16 -1 -1 0.26 0.066788 0.0581094 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.24 17800 13 0.21 -1 -1 32740 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 16.1 MiB 1.61 1115 9196 2684 4764 1748 54.8 MiB 0.11 0.00 7.27805 -147.461 -7.27805 7.27805 0.78 0.000834058 0.000770008 0.0480134 0.0443873 36 2777 20 6.79088e+06 242496 648988. 2245.63 3.74 0.283286 0.246635 25390 158009 -1 2393 21 975 2760 276993 96393 6.5774 6.5774 -142.863 -6.5774 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0360984 0.031908 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.26 17940 12 0.19 -1 -1 32764 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.3 MiB 2.00 1193 6490 1485 4564 441 54.9 MiB 0.10 0.00 7.26273 -167.563 -7.26273 7.26273 0.78 0.000948876 0.000877703 0.0384852 0.0356408 38 2903 16 6.79088e+06 242496 678818. 2348.85 2.14 0.170604 0.149921 25966 169698 -1 2559 18 1165 3061 185681 39779 6.16912 6.16912 -154.734 -6.16912 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0357735 0.0316605 120 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17544 13 0.28 -1 -1 32812 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 16.4 MiB 1.59 1194 6123 1343 4442 338 55.0 MiB 0.10 0.00 8.79477 -171.911 -8.79477 8.79477 0.78 0.00100959 0.000933947 0.0377319 0.0349687 34 3215 32 6.79088e+06 282912 618332. 2139.56 3.26 0.258809 0.226726 25102 150614 -1 2816 23 1185 3253 326129 102386 7.51535 7.51535 -160.017 -7.51535 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0462805 0.0408075 137 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.28 17640 14 0.25 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 16.4 MiB 1.20 1287 8685 2330 5621 734 55.0 MiB 0.13 0.00 8.66267 -183.033 -8.66267 8.66267 0.79 0.00106946 0.000984242 0.0526954 0.0487316 36 3758 44 6.79088e+06 269440 648988. 2245.63 3.90 0.254471 0.223562 25390 158009 -1 3043 29 1419 4016 493922 187097 7.71556 7.71556 -176.238 -7.71556 0 0 828058. 2865.25 0.26 0.20 0.15 -1 -1 0.26 0.0605601 0.0535688 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18204 14 0.24 -1 -1 32784 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1083 11456 4044 5385 2027 55.0 MiB 0.16 0.00 7.96611 -159.164 -7.96611 7.96611 0.79 0.000961476 0.000888443 0.0669289 0.0617295 38 2997 43 6.79088e+06 229024 678818. 2348.85 4.41 0.291215 0.255458 25966 169698 -1 2603 27 1239 3702 403974 150974 6.58781 6.58781 -145.712 -6.58781 0 0 902133. 3121.57 0.35 0.16 0.17 -1 -1 0.35 0.0503636 0.0442741 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.28 17988 13 0.32 -1 -1 32688 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 16.7 MiB 1.62 1338 8024 1861 5707 456 55.1 MiB 0.13 0.00 8.29812 -170.177 -8.29812 8.29812 0.78 0.00105757 0.000977061 0.0495014 0.0458108 46 3069 15 6.79088e+06 296384 828058. 2865.25 2.82 0.252285 0.221338 27406 200422 -1 2645 15 1239 3568 233438 47563 7.42576 7.42576 -159.884 -7.42576 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0362424 0.032368 144 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.24 17400 13 0.18 -1 -1 32344 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 16.1 MiB 1.86 919 12292 3407 6536 2349 54.7 MiB 0.15 0.00 7.20737 -146.133 -7.20737 7.20737 0.78 0.000832144 0.000768083 0.0628628 0.0579876 36 2653 46 6.79088e+06 242496 648988. 2245.63 3.03 0.267945 0.235245 25390 158009 -1 2204 16 999 2529 173589 37222 6.16917 6.16917 -139.987 -6.16917 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0292801 0.0260124 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.29 17988 13 0.43 -1 -1 32824 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 16.7 MiB 1.71 1350 9234 2593 5787 854 55.2 MiB 0.08 0.00 8.31996 -168.69 -8.31996 8.31996 0.63 0.000472206 0.000433282 0.0271754 0.0249544 38 4110 34 6.79088e+06 296384 678818. 2348.85 4.01 0.219001 0.19108 25966 169698 -1 3008 22 1754 4923 338501 67349 7.59786 7.59786 -163.53 -7.59786 0 0 902133. 3121.57 0.27 0.13 0.16 -1 -1 0.27 0.0484431 0.0428802 145 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.27 17904 14 0.30 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 16.4 MiB 1.60 1251 6312 1329 4019 964 55.0 MiB 0.10 0.00 8.37235 -176.058 -8.37235 8.37235 0.78 0.000993469 0.000913909 0.0392016 0.0362496 38 3322 32 6.79088e+06 242496 678818. 2348.85 2.46 0.208995 0.183226 25966 169698 -1 2696 16 1223 3584 241136 49067 7.13248 7.13248 -167.848 -7.13248 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0355391 0.0316231 128 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17904 13 0.22 -1 -1 32872 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 16.5 MiB 1.67 1125 7914 1884 5216 814 55.0 MiB 0.12 0.00 7.39828 -160.2 -7.39828 7.39828 0.83 0.0009604 0.000888333 0.047186 0.043702 36 3403 34 6.79088e+06 255968 648988. 2245.63 3.19 0.219898 0.193283 25390 158009 -1 2796 17 1255 3416 240021 49376 6.6558 6.6558 -155.662 -6.6558 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0357302 0.0317347 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.28 17932 13 0.21 -1 -1 32872 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 16.5 MiB 1.54 1096 8306 2939 4353 1014 55.0 MiB 0.12 0.00 7.45237 -146.107 -7.45237 7.45237 0.78 0.000938781 0.000867508 0.0484678 0.0448449 38 2984 47 6.79088e+06 255968 678818. 2348.85 3.23 0.274845 0.239853 25966 169698 -1 2441 17 1176 3157 208119 44056 6.43207 6.43207 -139.313 -6.43207 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.03501 0.031096 121 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17724 14 0.34 -1 -1 32940 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 16.7 MiB 1.49 1434 9943 2708 5582 1653 55.2 MiB 0.16 0.00 8.52022 -179.043 -8.52022 8.52022 0.78 0.00112523 0.00104196 0.0645341 0.0598396 44 3873 20 6.79088e+06 282912 787024. 2723.27 2.87 0.278832 0.245547 27118 194962 -1 3159 26 1471 4434 488358 181346 7.46497 7.46497 -166.976 -7.46497 0 0 997811. 3452.63 0.31 0.18 0.19 -1 -1 0.31 0.0562429 0.0496338 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.25 17784 11 0.29 -1 -1 32752 -1 -1 23 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 16.4 MiB 1.89 1077 10149 2679 5779 1691 55.1 MiB 0.14 0.00 7.52622 -140.559 -7.52622 7.52622 0.80 0.000996201 0.000913936 0.0594241 0.0549548 36 3321 35 6.79088e+06 309856 648988. 2245.63 5.85 0.291484 0.255832 25390 158009 -1 2710 17 1377 3839 257487 56039 6.50587 6.50587 -135.711 -6.50587 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.035749 0.0317484 136 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.23 17556 13 0.16 -1 -1 32564 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 16.0 MiB 2.80 972 6054 1229 4689 136 54.6 MiB 0.09 0.00 6.97458 -160.094 -6.97458 6.97458 0.78 0.000796256 0.000726968 0.0327318 0.0302528 36 3060 37 6.79088e+06 188608 648988. 2245.63 11.96 0.335333 0.29118 25390 158009 -1 2432 35 1496 3596 408145 150497 6.11534 6.11534 -155.592 -6.11534 0 0 828058. 2865.25 0.27 0.17 0.16 -1 -1 0.27 0.0510536 0.0446681 98 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.29 17876 14 0.23 -1 -1 32796 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 16.5 MiB 1.54 963 3581 624 2890 67 55.0 MiB 0.07 0.00 8.38402 -165.799 -8.38402 8.38402 0.84 0.000955038 0.000882928 0.0233882 0.0216955 44 2556 17 6.79088e+06 229024 787024. 2723.27 4.05 0.282234 0.244723 27118 194962 -1 2060 14 986 2604 164919 36272 7.42577 7.42577 -156.252 -7.42577 0 0 997811. 3452.63 0.32 0.08 0.19 -1 -1 0.32 0.0310104 0.0277007 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.28 18164 15 0.40 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 16.8 MiB 1.40 1424 5271 949 4056 266 55.5 MiB 0.11 0.00 9.1358 -193.594 -9.1358 9.1358 0.81 0.00123099 0.0011407 0.0392632 0.0364307 46 3599 25 6.79088e+06 309856 828058. 2865.25 4.61 0.392801 0.34319 27406 200422 -1 3082 21 1609 4402 313149 62047 7.55804 7.55804 -173.908 -7.55804 0 0 1.01997e+06 3529.29 0.32 0.13 0.19 -1 -1 0.32 0.056217 0.049789 163 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.24 17560 11 0.16 -1 -1 32604 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 16.1 MiB 1.48 958 10726 3368 5272 2086 54.6 MiB 0.13 0.00 6.79222 -142.45 -6.79222 6.79222 0.78 0.000774682 0.000715018 0.0523639 0.0483516 30 2658 41 6.79088e+06 202080 556674. 1926.21 2.09 0.170678 0.150554 24526 138013 -1 2141 17 898 2397 151531 32382 5.75402 5.75402 -137.04 -5.75402 0 0 706193. 2443.58 0.27 0.07 0.09 -1 -1 0.27 0.0284099 0.0251328 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17340 12 0.18 -1 -1 32828 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 16.3 MiB 1.44 1114 10400 2653 5866 1881 54.8 MiB 0.14 0.00 6.63358 -148.815 -6.63358 6.63358 0.78 0.000858579 0.000792826 0.0556391 0.0514266 44 3021 49 6.79088e+06 229024 787024. 2723.27 4.25 0.332444 0.289181 27118 194962 -1 2366 16 1031 2871 201052 39859 5.82549 5.82549 -142.258 -5.82549 0 0 997811. 3452.63 0.31 0.08 0.18 -1 -1 0.31 0.0303141 0.026942 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.28 17824 12 0.29 -1 -1 32868 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 16.7 MiB 1.12 1409 5123 1016 3643 464 55.1 MiB 0.09 0.00 7.37446 -165.375 -7.37446 7.37446 0.78 0.0010864 0.00100344 0.0352833 0.0326616 38 3485 31 6.79088e+06 255968 678818. 2348.85 2.99 0.277565 0.242307 25966 169698 -1 2894 17 1352 4084 260820 53416 6.54851 6.54851 -153.142 -6.54851 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0411371 0.0365699 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.25 17784 12 0.24 -1 -1 32860 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 16.5 MiB 1.80 1290 8804 2224 5446 1134 55.0 MiB 0.13 0.00 7.66631 -156.992 -7.66631 7.66631 0.78 0.000978672 0.000903887 0.0521403 0.0482478 38 3888 34 6.79088e+06 242496 678818. 2348.85 4.47 0.221186 0.194475 25966 169698 -1 2960 23 1380 4104 353752 106232 6.58427 6.58427 -151.636 -6.58427 0 0 902133. 3121.57 0.27 0.14 0.16 -1 -1 0.27 0.0447773 0.0394803 130 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.27 18164 14 0.46 -1 -1 32768 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 16.9 MiB 1.78 1339 6323 1159 4879 285 55.4 MiB 0.11 0.00 9.2305 -183.989 -9.2305 9.2305 0.78 0.00118839 0.00109908 0.0446402 0.0413655 38 3629 50 6.79088e+06 296384 678818. 2348.85 3.46 0.341518 0.298872 25966 169698 -1 2982 16 1452 4240 260207 54550 7.89131 7.89131 -171.147 -7.89131 0 0 902133. 3121.57 0.28 0.10 0.16 -1 -1 0.28 0.0424039 0.0378903 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17796 12 0.20 -1 -1 32632 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.3 MiB 1.46 1023 10231 4165 5804 262 54.8 MiB 0.14 0.00 7.21752 -140.072 -7.21752 7.21752 0.78 0.000911413 0.00084225 0.0572178 0.0529645 38 3000 24 6.79088e+06 255968 678818. 2348.85 4.82 0.315414 0.27527 25966 169698 -1 2318 15 1083 3058 185975 40387 6.16142 6.16142 -133.899 -6.16142 0 0 902133. 3121.57 0.30 0.08 0.16 -1 -1 0.30 0.0307872 0.0273869 121 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.24 17552 11 0.18 -1 -1 32616 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.1 MiB 1.87 852 9208 3256 4555 1397 54.8 MiB 0.11 0.00 7.04622 -127.422 -7.04622 7.04622 0.78 0.000781494 0.000721322 0.0469853 0.0434635 30 2201 30 6.79088e+06 255968 556674. 1926.21 1.13 0.153612 0.135581 24526 138013 -1 1762 16 906 2341 116512 27555 5.91852 5.91852 -119.41 -5.91852 0 0 706193. 2443.58 0.25 0.07 0.15 -1 -1 0.25 0.0285319 0.0254128 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.30 18240 13 0.41 -1 -1 32836 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 17.3 MiB 1.49 1698 8532 2074 5800 658 55.8 MiB 0.15 0.00 7.91451 -163.387 -7.91451 7.91451 0.78 0.00130168 0.00120241 0.0608702 0.0563299 54 4065 18 6.79088e+06 350272 949917. 3286.91 5.97 0.477462 0.417484 28846 232421 -1 3509 19 1733 5490 399894 74707 7.04627 7.04627 -155.686 -7.04627 0 0 1.17392e+06 4061.99 0.35 0.14 0.22 -1 -1 0.35 0.0529446 0.0471493 188 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 18204 14 0.25 -1 -1 33172 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 16.3 MiB 1.58 1264 9385 2554 5852 979 54.9 MiB 0.07 0.00 8.41881 -168.357 -8.41881 8.41881 0.77 0.000433509 0.000396418 0.0252325 0.023072 30 3517 49 6.79088e+06 296384 556674. 1926.21 2.38 0.196849 0.172127 24526 138013 -1 2792 18 1308 3547 217927 45744 7.26121 7.26121 -163.217 -7.26121 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.0383003 0.0339588 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17608 12 0.17 -1 -1 32440 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 16.1 MiB 1.49 1075 7736 1882 5428 426 54.7 MiB 0.10 0.00 7.20863 -155.968 -7.20863 7.20863 0.78 0.000829095 0.000765 0.0393963 0.0363784 38 2582 27 6.79088e+06 242496 678818. 2348.85 2.75 0.213097 0.186169 25966 169698 -1 2195 18 999 2535 168706 35330 6.21602 6.21602 -149.287 -6.21602 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0317303 0.0281334 109 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.26 17664 13 0.27 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 16.5 MiB 1.37 1233 12542 3940 6787 1815 55.0 MiB 0.17 0.00 8.09146 -166.475 -8.09146 8.09146 0.78 0.000966612 0.000893338 0.0715264 0.0661501 36 3146 30 6.79088e+06 242496 648988. 2245.63 4.36 0.283741 0.249487 25390 158009 -1 2654 17 1158 3172 204764 44621 6.65929 6.65929 -154.125 -6.65929 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0354915 0.0315274 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.28 18044 13 0.31 -1 -1 32776 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 16.8 MiB 1.53 1392 4695 845 3563 287 55.4 MiB 0.09 0.00 7.47587 -155.329 -7.47587 7.47587 0.78 0.00113539 0.00105006 0.0325912 0.0302655 40 3629 19 6.79088e+06 323328 706193. 2443.58 2.88 0.243337 0.212877 26254 175826 -1 3296 16 1607 4548 340592 70114 6.54507 6.54507 -152.358 -6.54507 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0428127 0.0383221 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.25 17772 11 0.24 -1 -1 32684 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 16.3 MiB 1.54 1218 4659 929 3342 388 55.0 MiB 0.08 0.00 7.06923 -144.171 -7.06923 7.06923 0.77 0.00102594 0.000950054 0.0299269 0.0277524 34 3429 40 6.79088e+06 296384 618332. 2139.56 2.79 0.21366 0.186632 25102 150614 -1 2895 34 1288 3966 485387 195891 6.16912 6.16912 -141.172 -6.16912 0 0 787024. 2723.27 0.28 0.20 0.15 -1 -1 0.28 0.0652099 0.0571879 141 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.27 18188 15 0.34 -1 -1 32736 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 16.8 MiB 1.37 1290 8402 2178 5761 463 55.2 MiB 0.13 0.00 8.74612 -186.954 -8.74612 8.74612 0.78 0.00106758 0.000986272 0.0519736 0.0480184 38 3570 36 6.79088e+06 296384 678818. 2348.85 21.63 0.497789 0.433761 25966 169698 -1 2806 19 1363 4173 254014 53917 7.50422 7.50422 -172.162 -7.50422 0 0 902133. 3121.57 0.31 0.12 0.17 -1 -1 0.31 0.0471647 0.0423372 147 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.27 18000 13 0.31 -1 -1 32688 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.81 1316 8641 2148 5636 857 55.3 MiB 0.13 0.00 8.07216 -175.63 -8.07216 8.07216 0.79 0.00104037 0.000960754 0.0531553 0.0491738 36 3600 39 6.79088e+06 282912 648988. 2245.63 6.56 0.4177 0.36411 25390 158009 -1 2956 17 1458 4125 272551 57655 7.04981 7.04981 -167.321 -7.04981 0 0 828058. 2865.25 0.26 0.10 0.15 -1 -1 0.26 0.038717 0.034442 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17512 12 0.20 -1 -1 32692 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 16.4 MiB 1.62 864 9543 2234 6923 386 54.8 MiB 0.13 0.00 7.58072 -150.751 -7.58072 7.58072 0.78 0.00085046 0.000786059 0.0514618 0.0476037 38 2803 37 6.79088e+06 242496 678818. 2348.85 3.59 0.249048 0.218589 25966 169698 -1 2097 16 1017 2511 169327 35969 6.83831 6.83831 -144.976 -6.83831 0 0 902133. 3121.57 0.29 0.08 0.16 -1 -1 0.29 0.0305192 0.0272038 111 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.24 17944 11 0.16 -1 -1 32900 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55876 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 16.0 MiB 1.50 1018 5722 1217 4259 246 54.6 MiB 0.08 0.00 6.71746 -144.764 -6.71746 6.71746 0.78 0.000803135 0.000740602 0.0308286 0.0284898 44 2467 16 6.79088e+06 188608 787024. 2723.27 3.72 0.241342 0.209559 27118 194962 -1 2039 14 912 2314 159381 32640 5.86813 5.86813 -137.908 -5.86813 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0260327 0.0231858 98 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.25 17716 13 0.31 -1 -1 32732 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 16.8 MiB 1.07 1236 5940 1259 4215 466 55.2 MiB 0.10 0.00 8.31912 -162.691 -8.31912 8.31912 0.84 0.00103473 0.000954242 0.0384405 0.0355593 38 3244 23 6.79088e+06 282912 678818. 2348.85 2.76 0.256648 0.224266 25966 169698 -1 2838 17 1329 3742 255221 51210 7.6875 7.6875 -158.721 -7.6875 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0387235 0.0344109 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.22 17688 10 0.16 -1 -1 32652 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55724 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 15.9 MiB 1.69 951 4560 1025 3135 400 54.4 MiB 0.06 0.00 6.21922 -128.027 -6.21922 6.21922 0.78 0.000791037 0.000723436 0.0245086 0.0226766 30 2562 41 6.79088e+06 229024 556674. 1926.21 1.47 0.141709 0.123679 24526 138013 -1 2086 17 942 2423 142861 31196 5.53902 5.53902 -127.63 -5.53902 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0289114 0.0257265 101 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17572 14 0.19 -1 -1 32640 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 16.4 MiB 2.44 984 4532 878 3142 512 54.8 MiB 0.07 0.00 7.85466 -160.915 -7.85466 7.85466 0.78 0.000847046 0.000780901 0.0248637 0.0229715 36 2860 24 6.79088e+06 242496 648988. 2245.63 4.23 0.275618 0.238847 25390 158009 -1 2383 16 1107 2918 219609 46595 6.87418 6.87418 -156.765 -6.87418 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0297026 0.0263948 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.27 18052 13 0.31 -1 -1 32764 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 16.6 MiB 2.33 1210 8183 2048 5045 1090 55.2 MiB 0.12 0.00 7.80505 -164.773 -7.80505 7.80505 0.79 0.000955485 0.000883715 0.0475545 0.0440271 36 3527 45 6.79088e+06 269440 648988. 2245.63 2.69 0.245058 0.214323 25390 158009 -1 2771 14 1240 3186 227205 47730 6.72425 6.72425 -159.222 -6.72425 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0308111 0.0274762 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.23 17572 12 0.16 -1 -1 32760 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 16.0 MiB 3.23 940 12120 3498 6380 2242 54.5 MiB 0.14 0.00 6.85518 -144.407 -6.85518 6.85518 0.78 0.000784626 0.000723808 0.0587335 0.0542126 38 2511 37 6.79088e+06 229024 678818. 2348.85 11.81 0.359206 0.313166 25966 169698 -1 2116 14 973 2469 159079 33999 5.99343 5.99343 -139.266 -5.99343 0 0 902133. 3121.57 0.24 0.04 0.11 -1 -1 0.24 0.0149056 0.0135946 99 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.26 17608 12 0.19 -1 -1 32992 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 16.5 MiB 1.83 1190 9694 2639 6567 488 55.1 MiB 0.14 0.00 7.04874 -155.773 -7.04874 7.04874 0.78 0.000991052 0.000914338 0.0582209 0.0537546 38 3107 40 6.79088e+06 242496 678818. 2348.85 15.96 0.484191 0.420075 25966 169698 -1 2378 17 1167 3257 189847 40795 6.20488 6.20488 -148.757 -6.20488 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0377373 0.0335457 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.28 18068 13 0.28 -1 -1 32704 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 16.4 MiB 1.05 1303 8543 2004 5667 872 55.0 MiB 0.13 0.00 7.83951 -165.716 -7.83951 7.83951 0.78 0.00102764 0.000950001 0.0526988 0.0486834 44 3079 26 6.79088e+06 269440 787024. 2723.27 4.63 0.347514 0.303363 27118 194962 -1 2662 14 1284 3529 223467 46322 6.69391 6.69391 -154.311 -6.69391 0 0 997811. 3452.63 0.32 0.09 0.19 -1 -1 0.32 0.0345332 0.0309297 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.11 17556 11 0.17 -1 -1 32676 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 16.1 MiB 1.74 1116 6616 1429 3881 1306 54.7 MiB 0.09 0.00 6.2158 -147.345 -6.2158 6.2158 0.76 0.000825634 0.00076317 0.0349854 0.0323505 36 3228 27 6.79088e+06 215552 648988. 2245.63 3.59 0.205726 0.179368 25390 158009 -1 2578 15 1127 2883 205821 43128 5.35995 5.35995 -141.451 -5.35995 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0278486 0.0248071 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.12 17504 13 0.19 -1 -1 32636 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 16.3 MiB 2.30 994 9543 2876 4545 2122 54.8 MiB 0.13 0.00 7.66009 -161.63 -7.66009 7.66009 0.78 0.000922909 0.000853236 0.0559103 0.0516635 38 3005 31 6.79088e+06 202080 678818. 2348.85 3.75 0.258229 0.226199 25966 169698 -1 2266 18 1119 2990 178065 38884 6.67042 6.67042 -149.653 -6.67042 0 0 902133. 3121.57 0.30 0.12 0.17 -1 -1 0.30 0.0310566 0.0277092 113 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.24 17608 13 0.28 -1 -1 32776 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 16.4 MiB 1.11 1317 8183 2040 5445 698 55.0 MiB 0.13 0.00 7.48608 -168.657 -7.48608 7.48608 0.78 0.0010129 0.000935789 0.0505127 0.0467367 36 3537 24 6.79088e+06 255968 648988. 2245.63 1.87 0.15904 0.140748 25390 158009 -1 3017 16 1381 3683 253385 53888 6.57319 6.57319 -161.391 -6.57319 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0361934 0.0322638 136 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.26 17612 11 0.19 -1 -1 32608 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 16.4 MiB 1.98 932 11088 4572 6163 353 54.8 MiB 0.14 0.00 6.40374 -127.638 -6.40374 6.40374 0.79 0.000880304 0.000813218 0.0602854 0.0557231 44 2714 22 6.79088e+06 255968 787024. 2723.27 4.34 0.322759 0.280944 27118 194962 -1 1998 24 1023 2968 258341 85276 5.38344 5.38344 -118.912 -5.38344 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0416075 0.0365176 116 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.29 18332 14 0.30 -1 -1 33248 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1275 12567 3064 6849 2654 55.3 MiB 0.18 0.00 8.90517 -187.129 -8.90517 8.90517 0.87 0.00113572 0.00104942 0.0780626 0.0723738 38 3509 26 6.79088e+06 309856 678818. 2348.85 2.63 0.316481 0.278882 25966 169698 -1 2732 15 1365 3515 227280 47992 8.06351 8.06351 -177.215 -8.06351 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0390245 0.0348911 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17300 12 0.15 -1 -1 32564 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 16.1 MiB 2.21 1076 14144 4263 7957 1924 54.6 MiB 0.16 0.00 6.67019 -155.032 -6.67019 6.67019 0.89 0.000787139 0.000726241 0.065177 0.060305 38 2703 34 6.79088e+06 255968 678818. 2348.85 3.14 0.241623 0.212396 25966 169698 -1 2286 15 994 2350 155213 32345 5.86469 5.86469 -142.962 -5.86469 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0269219 0.0239971 106 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18104 13 0.28 -1 -1 32836 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 16.6 MiB 1.36 1249 10698 2850 6495 1353 55.1 MiB 0.16 0.00 8.17702 -169.59 -8.17702 8.17702 0.79 0.00100381 0.000927456 0.0632951 0.0585637 38 3542 32 6.79088e+06 269440 678818. 2348.85 3.35 0.295375 0.259801 25966 169698 -1 2866 18 1322 3760 246091 51279 7.25008 7.25008 -163.926 -7.25008 0 0 902133. 3121.57 0.28 0.11 0.19 -1 -1 0.28 0.0395443 0.0354536 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.17 17780 13 0.18 -1 -1 32500 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 16.2 MiB 1.07 988 12528 4457 5893 2178 54.8 MiB 0.15 0.00 7.60722 -166.135 -7.60722 7.60722 0.79 0.000834443 0.000769347 0.0609137 0.0562512 36 2877 24 6.79088e+06 269440 648988. 2245.63 1.84 0.199697 0.176249 25390 158009 -1 2421 18 1114 2893 209080 44334 6.33367 6.33367 -155.37 -6.33367 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0319966 0.0283831 107 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.27 17724 12 0.21 -1 -1 32764 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 16.4 MiB 1.42 1129 6563 1390 4948 225 55.0 MiB 0.10 0.00 7.37103 -160.155 -7.37103 7.37103 0.78 0.00097701 0.000902802 0.0395002 0.036549 30 3299 39 6.79088e+06 255968 556674. 1926.21 2.70 0.191095 0.167634 24526 138013 -1 2630 16 1200 3562 219576 47212 6.37287 6.37287 -151.405 -6.37287 0 0 706193. 2443.58 0.26 0.09 0.13 -1 -1 0.26 0.0347927 0.0308843 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.29 18560 15 0.47 -1 -1 33312 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 17.0 MiB 0.98 1461 7019 1723 4462 834 55.6 MiB 0.13 0.00 9.4802 -194.196 -9.4802 9.4802 0.78 0.00125763 0.00116072 0.0513526 0.0475158 40 3950 24 6.79088e+06 336800 706193. 2443.58 3.38 0.317481 0.278583 26254 175826 -1 3698 21 1825 5435 427527 86387 8.23914 8.23914 -185.372 -8.23914 0 0 926341. 3205.33 0.28 0.15 0.17 -1 -1 0.28 0.0557085 0.0494893 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.09 17196 10 0.10 -1 -1 32292 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55460 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 15.6 MiB 1.56 790 7049 2015 4252 782 54.2 MiB 0.08 0.00 4.74332 -119.113 -4.74332 4.74332 0.79 0.000612019 0.000564701 0.0302389 0.027951 30 1998 32 6.79088e+06 161664 556674. 1926.21 1.44 0.116437 0.102015 24526 138013 -1 1712 13 682 1504 103228 21764 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0185464 0.0164523 66 84 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17540 13 0.18 -1 -1 32616 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 16.1 MiB 1.59 974 10050 2926 5436 1688 54.7 MiB 0.12 0.00 7.74787 -157.983 -7.74787 7.74787 0.78 0.000818885 0.000756901 0.0520761 0.0481323 36 2710 16 6.79088e+06 229024 648988. 2245.63 3.57 0.215222 0.189336 25390 158009 -1 2255 20 1072 2695 188949 39981 6.7811 6.7811 -154.238 -6.7811 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0338317 0.0299488 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.24 17336 12 0.20 -1 -1 32552 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.3 MiB 1.87 1289 8448 2191 5318 939 55.1 MiB 0.11 0.00 7.18863 -160.485 -7.18863 7.18863 0.78 0.000931881 0.000861097 0.0425352 0.0392124 40 2814 20 6.79088e+06 242496 706193. 2443.58 4.51 0.295389 0.257176 26254 175826 -1 2662 18 1163 2869 231749 46398 6.07953 6.07953 -151.667 -6.07953 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0355489 0.0314936 117 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.21 17412 9 0.13 -1 -1 32388 -1 -1 18 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55620 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 15.9 MiB 0.81 752 9555 2712 5903 940 54.3 MiB 0.10 0.00 5.16629 -99.605 -5.16629 5.16629 0.79 0.000666026 0.000615292 0.0428769 0.0396451 28 2307 37 6.79088e+06 242496 531479. 1839.03 7.93 0.223502 0.194281 23950 126010 -1 2004 25 1138 3274 306738 76425 4.52189 4.52189 -102.526 -4.52189 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0324394 0.0283281 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.27 17796 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 16.5 MiB 1.44 1312 13291 3621 7142 2528 55.2 MiB 0.20 0.00 7.35568 -164.212 -7.35568 7.35568 0.78 0.001049 0.000966817 0.0793164 0.0732425 38 3599 20 6.79088e+06 282912 678818. 2348.85 4.20 0.29553 0.260399 25966 169698 -1 3049 16 1469 4123 269087 55658 6.67037 6.67037 -158.269 -6.67037 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0375675 0.0334351 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.28 18260 13 0.30 -1 -1 32820 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 16.8 MiB 1.77 1311 13291 3763 7122 2406 55.2 MiB 0.19 0.00 8.3208 -173.057 -8.3208 8.3208 0.66 0.00104619 0.000966446 0.0795135 0.0735636 36 4263 48 6.79088e+06 296384 648988. 2245.63 4.74 0.380766 0.33318 25390 158009 -1 3126 20 1397 3984 284820 59897 7.3039 7.3039 -167.258 -7.3039 0 0 828058. 2865.25 0.26 0.14 0.15 -1 -1 0.26 0.0473773 0.0421856 147 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30376 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 16.5 MiB 2.71 1137 15768 5063 8031 2674 55.1 MiB 0.24 0.00 5.46262 -163.811 -5.46262 5.46262 0.82 0.000767918 0.000705934 0.0627088 0.0580145 34 2873 22 6.87369e+06 363320 618332. 2139.56 1.80 0.21332 0.187424 25762 151098 -1 2319 19 1603 2512 213614 47266 4.4033 4.4033 -151.648 -4.4033 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0285017 0.024966 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.11 17828 1 0.03 -1 -1 30408 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 16.7 MiB 2.19 995 9347 2406 6094 847 55.3 MiB 0.16 0.00 4.40625 -134.148 -4.40625 4.40625 0.79 0.000775727 0.000717832 0.0407528 0.0377409 34 2606 27 6.87369e+06 335372 618332. 2139.56 1.84 0.197549 0.172276 25762 151098 -1 2164 22 1821 2787 238667 52216 4.07426 4.07426 -140.439 -4.07426 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0322649 0.0282244 138 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30348 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.6 MiB 2.27 954 15337 4637 8345 2355 55.0 MiB 0.21 0.00 4.42735 -120.659 -4.42735 4.42735 0.88 0.000683031 0.000632001 0.0590153 0.0546077 34 2346 24 6.87369e+06 293451 618332. 2139.56 1.55 0.194645 0.170681 25762 151098 -1 1976 19 1197 1599 145457 32350 3.67436 3.67436 -120.995 -3.67436 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.025597 0.0223677 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17868 1 0.03 -1 -1 30380 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 16.6 MiB 0.87 990 16170 4805 9691 1674 55.0 MiB 0.26 0.00 4.56722 -126.881 -4.56722 4.56722 0.78 0.00068653 0.000634731 0.0582738 0.0537338 34 2382 23 6.87369e+06 405241 618332. 2139.56 1.75 0.18721 0.164723 25762 151098 -1 2037 21 1538 2789 253309 52551 3.6791 3.6791 -122.023 -3.6791 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0277615 0.0242387 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17612 1 0.03 -1 -1 30272 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 16.7 MiB 1.11 1020 12127 3332 7989 806 55.2 MiB 0.20 0.00 4.58138 -135.491 -4.58138 4.58138 0.79 0.000574129 0.000521137 0.0421178 0.0386295 26 3185 45 6.87369e+06 377294 503264. 1741.40 4.57 0.251861 0.219415 24322 120374 -1 2670 26 2057 3977 449702 93745 4.3809 4.3809 -147.996 -4.3809 0 0 618332. 2139.56 0.21 0.14 0.12 -1 -1 0.21 0.0353469 0.0307839 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17744 1 0.03 -1 -1 30316 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 16.7 MiB 1.25 1076 15643 4151 9274 2218 55.2 MiB 0.21 0.00 3.36233 -119.977 -3.36233 3.36233 0.78 0.000777181 0.00071902 0.0596797 0.055232 28 2626 20 6.87369e+06 419215 531479. 1839.03 1.02 0.149662 0.133019 24610 126494 -1 2359 20 1391 2179 196134 41848 3.24391 3.24391 -127.678 -3.24391 0 0 648988. 2245.63 0.28 0.09 0.15 -1 -1 0.28 0.0285879 0.0253797 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17284 1 0.03 -1 -1 30752 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 16.4 MiB 1.89 768 11200 3422 6221 1557 54.8 MiB 0.13 0.00 3.88482 -108.503 -3.88482 3.88482 0.79 0.000596963 0.000552567 0.0422345 0.0391316 34 1744 22 6.87369e+06 265503 618332. 2139.56 1.51 0.161114 0.140322 25762 151098 -1 1471 15 927 1480 121443 26999 3.06926 3.06926 -106.276 -3.06926 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0189396 0.0165978 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17252 1 0.03 -1 -1 30064 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.2 MiB 0.77 962 13487 3595 7903 1989 54.8 MiB 0.16 0.00 3.53179 -106.578 -3.53179 3.53179 0.78 0.000651758 0.000603556 0.0426753 0.0394415 34 2238 23 6.87369e+06 447163 618332. 2139.56 1.50 0.171006 0.149407 25762 151098 -1 1926 17 1001 1664 141448 30123 2.72166 2.72166 -100.006 -2.72166 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0220708 0.0192938 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17488 1 0.03 -1 -1 30120 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 16.4 MiB 2.05 925 12636 4369 6197 2070 54.9 MiB 0.17 0.00 3.30197 -112.873 -3.30197 3.30197 0.78 0.000690441 0.000638197 0.0531638 0.0491902 34 2421 20 6.87369e+06 237555 618332. 2139.56 1.56 0.156038 0.137315 25762 151098 -1 1976 19 1199 1755 174504 37502 3.08261 3.08261 -118.233 -3.08261 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0256752 0.0224223 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.17 17224 1 0.03 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 16.3 MiB 3.29 866 10916 3152 5921 1843 54.9 MiB 0.16 0.00 4.09393 -136.454 -4.09393 4.09393 0.79 0.000676425 0.000625102 0.045244 0.0418558 30 2126 27 6.87369e+06 223581 556674. 1926.21 2.65 0.209117 0.182095 25186 138497 -1 1767 19 969 1666 137788 28235 3.09176 3.09176 -120.49 -3.09176 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0252019 0.0220232 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30400 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 16.2 MiB 2.90 765 11532 2973 7641 918 54.7 MiB 0.08 0.00 4.09699 -119.415 -4.09699 4.09699 0.80 0.000282868 0.000258106 0.0213229 0.0194867 34 1834 23 6.87369e+06 223581 618332. 2139.56 1.06 0.0823716 0.0711887 25762 151098 -1 1573 22 1136 1776 156646 34521 2.98846 2.98846 -106.512 -2.98846 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0276709 0.0240799 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30084 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.3 MiB 2.09 706 8306 1954 5512 840 54.8 MiB 0.11 0.00 3.6525 -111.833 -3.6525 3.6525 0.80 0.000642708 0.000594796 0.0328318 0.0303972 34 2284 21 6.87369e+06 237555 618332. 2139.56 1.57 0.132715 0.115791 25762 151098 -1 1725 20 1163 1610 134407 31848 3.07561 3.07561 -112.864 -3.07561 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0246962 0.0215187 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 16.5 MiB 3.41 1028 16599 6315 8361 1923 55.0 MiB 0.26 0.01 4.13563 -133.6 -4.13563 4.13563 0.78 0.000758636 0.000701435 0.0678372 0.0627482 34 3060 24 6.87369e+06 321398 618332. 2139.56 1.95 0.218902 0.192511 25762 151098 -1 2380 20 1923 2900 301371 62480 3.25911 3.25911 -127.17 -3.25911 0 0 787024. 2723.27 0.25 0.10 0.16 -1 -1 0.25 0.0292848 0.025642 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30276 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.6 MiB 2.04 989 10031 2534 6882 615 55.1 MiB 0.16 0.00 4.81484 -142.23 -4.81484 4.81484 0.81 0.000778841 0.000720561 0.0382022 0.0353488 32 2626 26 6.87369e+06 433189 586450. 2029.24 1.14 0.126274 0.111309 25474 144626 -1 2196 18 1485 2341 226192 48136 4.14106 4.14106 -139.588 -4.14106 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0277552 0.024361 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30320 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55920 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 16.2 MiB 1.41 614 5068 1019 3719 330 54.6 MiB 0.06 0.00 3.26207 -95.0897 -3.26207 3.26207 0.78 0.000587511 0.000543671 0.0153844 0.0142245 26 1942 26 6.87369e+06 265503 503264. 1741.40 0.91 0.089792 0.0779165 24322 120374 -1 1748 20 1067 1620 151018 35309 3.07461 3.07461 -101.519 -3.07461 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0227223 0.0197378 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 16.6 MiB 1.72 1007 16078 5563 8042 2473 55.1 MiB 0.24 0.00 3.7063 -122.467 -3.7063 3.7063 0.78 0.000783154 0.000724375 0.0671341 0.0621061 34 2693 19 6.87369e+06 335372 618332. 2139.56 1.68 0.217391 0.191101 25762 151098 -1 2061 21 1607 2834 259059 54890 2.98231 2.98231 -118.066 -2.98231 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0314796 0.0274695 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17840 1 0.04 -1 -1 30056 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 16.6 MiB 3.40 1032 15523 6549 8204 770 55.1 MiB 0.20 0.00 4.15353 -134.149 -4.15353 4.15353 0.79 0.000750909 0.000693614 0.0647755 0.0598637 34 2809 25 6.87369e+06 293451 618332. 2139.56 2.03 0.215054 0.188752 25762 151098 -1 2093 20 1610 2286 208765 46779 3.14081 3.14081 -120.34 -3.14081 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0292143 0.0255872 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30448 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 16.3 MiB 2.14 847 14168 4025 7985 2158 55.0 MiB 0.17 0.00 3.09156 -110.795 -3.09156 3.09156 0.79 0.000702826 0.000649593 0.0505301 0.0466702 34 2063 23 6.87369e+06 391268 618332. 2139.56 1.57 0.189998 0.166117 25762 151098 -1 1721 25 1276 1992 190021 41985 2.19587 2.19587 -101.842 -2.19587 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0321912 0.027928 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17524 1 0.02 -1 -1 30108 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 16.0 MiB 0.51 656 11276 3436 6760 1080 54.6 MiB 0.11 0.00 2.61023 -88.8242 -2.61023 2.61023 0.80 0.000540265 0.000499792 0.0397729 0.0368029 32 1587 22 6.87369e+06 195634 586450. 2029.24 0.95 0.106024 0.0934682 25474 144626 -1 1372 20 681 972 99269 20789 2.09232 2.09232 -88.4849 -2.09232 0 0 744469. 2576.02 0.24 0.05 0.17 -1 -1 0.24 0.0203694 0.0176325 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.14 17804 1 0.03 -1 -1 30308 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 16.3 MiB 2.59 778 9338 2420 6492 426 54.9 MiB 0.09 0.00 4.95513 -145.252 -4.95513 4.95513 0.80 0.000298987 0.000273939 0.0180699 0.0165742 34 2119 18 6.87369e+06 265503 618332. 2139.56 1.51 0.144331 0.124621 25762 151098 -1 1752 21 1302 1891 154901 35940 3.6071 3.6071 -132.304 -3.6071 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0269769 0.0235432 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17612 1 0.03 -1 -1 30452 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 16.6 MiB 0.81 985 11499 2787 8050 662 55.2 MiB 0.17 0.00 4.26399 -136.517 -4.26399 4.26399 0.85 0.00075749 0.000700542 0.0408511 0.037795 32 2630 49 6.87369e+06 489084 586450. 2029.24 1.22 0.1615 0.141685 25474 144626 -1 2128 21 1516 2241 241869 50347 3.6901 3.6901 -132.893 -3.6901 0 0 744469. 2576.02 0.24 0.09 0.14 -1 -1 0.24 0.0293998 0.0256974 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30276 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 16.6 MiB 1.83 995 6701 1305 5169 227 55.2 MiB 0.13 0.00 4.31715 -129.69 -4.31715 4.31715 0.84 0.000789784 0.000730498 0.0282742 0.0261122 34 3078 23 6.87369e+06 307425 618332. 2139.56 2.19 0.184764 0.160528 25762 151098 -1 2333 21 1728 2776 298422 61705 3.97706 3.97706 -134.601 -3.97706 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0321867 0.0281944 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17604 1 0.02 -1 -1 30552 -1 -1 17 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 15.8 MiB 1.47 371 10977 3839 5013 2125 54.4 MiB 0.10 0.00 2.58413 -70.3474 -2.58413 2.58413 0.82 0.000462359 0.000426535 0.0324555 0.0298698 28 1279 23 6.87369e+06 237555 531479. 1839.03 0.92 0.0851969 0.0748117 24610 126494 -1 1094 21 747 1060 104450 25499 2.26442 2.26442 -77.8295 -2.26442 0 0 648988. 2245.63 0.22 0.06 0.12 -1 -1 0.22 0.0185989 0.0160996 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.19 17336 1 0.04 -1 -1 30484 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.3 MiB 0.90 952 5847 1159 4467 221 54.9 MiB 0.10 0.00 4.63338 -129.909 -4.63338 4.63338 0.78 0.000670407 0.000620511 0.0229472 0.0212656 30 2274 21 6.87369e+06 321398 556674. 1926.21 1.05 0.102261 0.0892841 25186 138497 -1 1955 19 1098 1973 177517 35865 3.4535 3.4535 -121.669 -3.4535 0 0 706193. 2443.58 0.27 0.08 0.15 -1 -1 0.27 0.0294074 0.0260016 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 16836 1 0.02 -1 -1 30036 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55700 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 15.9 MiB 0.38 704 9676 3283 5033 1360 54.4 MiB 0.08 0.00 2.58823 -84.5042 -2.58823 2.58823 0.80 0.000459188 0.0004229 0.0289562 0.0266788 28 1434 16 6.87369e+06 167686 531479. 1839.03 0.89 0.0795192 0.0699035 24610 126494 -1 1321 16 534 624 54657 12809 2.15017 2.15017 -85.8056 -2.15017 0 0 648988. 2245.63 0.21 0.04 0.11 -1 -1 0.21 0.0149017 0.0130111 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17488 1 0.03 -1 -1 30012 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 16.4 MiB 0.73 922 10744 2499 7805 440 55.1 MiB 0.15 0.00 4.70738 -131.097 -4.70738 4.70738 0.76 0.000691014 0.000640249 0.037553 0.0347555 26 2445 42 6.87369e+06 419215 503264. 1741.40 1.60 0.141436 0.124018 24322 120374 -1 2140 17 1076 1699 164156 34320 3.7561 3.7561 -124.703 -3.7561 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0234874 0.0205663 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.17 17376 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.76 1018 15215 4457 9037 1721 55.1 MiB 0.20 0.00 3.58631 -115.037 -3.58631 3.58631 0.79 0.000690796 0.000639117 0.0509444 0.0471019 28 2343 22 6.87369e+06 433189 531479. 1839.03 1.04 0.133992 0.118648 24610 126494 -1 2056 19 1145 2028 162590 34432 2.72986 2.72986 -109.933 -2.72986 0 0 648988. 2245.63 0.21 0.07 0.13 -1 -1 0.21 0.0257136 0.0224899 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30420 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 16.7 MiB 1.53 1070 17066 5177 9769 2120 55.2 MiB 0.24 0.00 4.79173 -136.462 -4.79173 4.79173 0.78 0.000735867 0.000679993 0.0633213 0.0585623 30 2556 22 6.87369e+06 391268 556674. 1926.21 1.03 0.151416 0.134406 25186 138497 -1 2022 19 1093 2038 138250 30522 3.58686 3.58686 -127.237 -3.58686 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0270921 0.0237016 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30032 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 16.4 MiB 0.79 703 9368 2220 5797 1351 54.9 MiB 0.13 0.00 3.24007 -107.338 -3.24007 3.24007 0.79 0.000657193 0.000607827 0.0377599 0.0349578 34 1971 21 6.87369e+06 223581 618332. 2139.56 1.49 0.164951 0.143728 25762 151098 -1 1583 19 955 1580 129919 28891 2.83326 2.83326 -105.785 -2.83326 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0241754 0.0210964 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17204 1 0.03 -1 -1 30172 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 16.2 MiB 1.02 624 12763 3540 6427 2796 54.8 MiB 0.14 0.00 3.24697 -98.9537 -3.24697 3.24697 0.79 0.000618006 0.000570463 0.0423381 0.0391484 34 1613 28 6.87369e+06 363320 618332. 2139.56 1.55 0.167795 0.146251 25762 151098 -1 1271 17 804 1171 89871 21811 2.67371 2.67371 -91.7866 -2.67371 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.020939 0.018279 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30200 -1 -1 18 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55952 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 16.1 MiB 0.79 763 12694 4114 7113 1467 54.6 MiB 0.15 0.00 3.5993 -104.629 -3.5993 3.5993 0.78 0.000605015 0.000560199 0.0480921 0.044544 32 2164 20 6.87369e+06 251529 586450. 2029.24 1.00 0.118635 0.104955 25474 144626 -1 1839 20 1091 1916 194276 41596 2.98226 2.98226 -107.915 -2.98226 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.023245 0.0201966 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17112 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.64 834 13031 3636 7853 1542 54.7 MiB 0.15 0.00 3.99153 -123.226 -3.99153 3.99153 0.84 0.000441317 0.000400467 0.0398043 0.0364912 30 2010 19 6.87369e+06 237555 556674. 1926.21 0.95 0.111685 0.0982023 25186 138497 -1 1773 19 1026 1698 122763 26658 2.97031 2.97031 -115.778 -2.97031 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0233177 0.0203815 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30216 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 16.3 MiB 0.76 614 5831 1071 4187 573 54.8 MiB 0.08 0.00 3.5993 -104.92 -3.5993 3.5993 0.81 0.000642314 0.000594738 0.0213624 0.0198192 34 1825 20 6.87369e+06 363320 618332. 2139.56 1.57 0.124049 0.107485 25762 151098 -1 1488 19 985 1618 129852 31260 3.07156 3.07156 -107.422 -3.07156 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0232581 0.0202685 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17480 1 0.03 -1 -1 30480 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 16.3 MiB 2.59 863 14072 4376 7539 2157 54.9 MiB 0.17 0.00 3.04756 -100.489 -3.04756 3.04756 0.79 0.00064856 0.000598802 0.0504009 0.0465651 34 1951 21 6.87369e+06 349346 618332. 2139.56 1.49 0.176335 0.154078 25762 151098 -1 1706 18 1100 1630 136450 31150 2.34737 2.34737 -100.171 -2.34737 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0263292 0.0231301 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30428 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 16.8 MiB 2.99 1118 10108 2278 7040 790 55.4 MiB 0.16 0.00 4.17389 -123.088 -4.17389 4.17389 0.78 0.000800659 0.000740571 0.0358186 0.0331055 26 3092 33 6.87369e+06 558954 503264. 1741.40 2.14 0.146899 0.129365 24322 120374 -1 2701 19 1492 2797 286314 60183 4.0633 4.0633 -131.632 -4.0633 0 0 618332. 2139.56 0.21 0.10 0.13 -1 -1 0.21 0.0300027 0.0263195 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.15 17588 1 0.03 -1 -1 30328 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 16.8 MiB 2.74 1050 18428 5889 9545 2994 55.5 MiB 0.24 0.00 3.99748 -134.85 -3.99748 3.99748 0.78 0.000823697 0.000762093 0.0667533 0.0616498 30 2332 22 6.87369e+06 531006 556674. 1926.21 1.02 0.164583 0.146091 25186 138497 -1 1909 19 1440 2159 153604 33317 2.87086 2.87086 -116.284 -2.87086 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0303104 0.0265832 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30048 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.2 MiB 1.84 729 12681 4828 6102 1751 55.0 MiB 0.16 0.00 4.09163 -121.55 -4.09163 4.09163 0.79 0.000647382 0.000598786 0.0495061 0.0458251 36 2171 27 6.87369e+06 251529 648988. 2245.63 1.83 0.181015 0.158175 26050 158493 -1 1727 19 1282 1879 167208 38057 3.3035 3.3035 -116.628 -3.3035 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.0238575 0.0208055 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30408 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 16.6 MiB 2.20 953 14543 4925 6755 2863 55.2 MiB 0.22 0.00 3.78134 -121.658 -3.78134 3.78134 0.79 0.000787117 0.000727702 0.0603401 0.0558103 34 2816 24 6.87369e+06 363320 618332. 2139.56 1.76 0.217495 0.190595 25762 151098 -1 2094 18 1503 2504 205905 45373 3.31711 3.31711 -124.723 -3.31711 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0280412 0.0245809 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30288 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 16.8 MiB 3.57 1511 10033 2621 6359 1053 55.4 MiB 0.19 0.01 5.60672 -170.903 -5.60672 5.60672 0.80 0.000803195 0.000743296 0.0437935 0.0405585 34 3954 28 6.87369e+06 349346 618332. 2139.56 2.06 0.175773 0.15408 25762 151098 -1 3066 21 2390 3461 350056 73185 5.1218 5.1218 -179.423 -5.1218 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0323436 0.0283341 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30412 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 16.6 MiB 3.19 1142 14964 4330 8425 2209 55.2 MiB 0.23 0.00 5.2871 -162.814 -5.2871 5.2871 0.79 0.000807336 0.000746032 0.0627504 0.0580498 34 2820 21 6.87369e+06 377294 618332. 2139.56 1.73 0.219773 0.192994 25762 151098 -1 2350 20 1310 2107 191714 40506 4.53985 4.53985 -153.056 -4.53985 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0312623 0.0274052 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30336 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 16.8 MiB 2.58 964 8863 1996 5999 868 55.3 MiB 0.16 0.00 4.10673 -127.256 -4.10673 4.10673 0.79 0.000759327 0.000702779 0.0369588 0.0342274 32 3095 46 6.87369e+06 349346 586450. 2029.24 1.76 0.176923 0.154545 25474 144626 -1 2290 22 1592 2605 279320 60909 3.59151 3.59151 -131.08 -3.59151 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.0318414 0.0278357 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17464 1 0.03 -1 -1 30444 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 16.3 MiB 2.21 831 14175 5092 5953 3130 55.0 MiB 0.21 0.00 4.31305 -113.651 -4.31305 4.31305 0.79 0.000672863 0.000621828 0.0624627 0.0577319 34 2771 30 6.87369e+06 279477 618332. 2139.56 1.87 0.208938 0.183159 25762 151098 -1 1790 20 1251 1826 158537 38460 3.60416 3.60416 -113.005 -3.60416 0 0 787024. 2723.27 0.26 0.08 0.17 -1 -1 0.26 0.0268065 0.0234611 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17992 1 0.03 -1 -1 30408 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 17.0 MiB 2.89 1125 12954 3388 8890 676 55.8 MiB 0.23 0.01 4.84068 -153.465 -4.84068 4.84068 0.78 0.000942132 0.000871632 0.0543368 0.0503586 30 2879 22 6.87369e+06 531006 556674. 1926.21 1.32 0.170291 0.150207 25186 138497 -1 2175 18 1391 2286 139976 34285 3.81736 3.81736 -146.255 -3.81736 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.033105 0.0290377 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17332 1 0.03 -1 -1 30148 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 16.3 MiB 1.47 779 13291 4134 7087 2070 54.8 MiB 0.16 0.00 3.55895 -107.74 -3.55895 3.55895 0.78 0.000613883 0.000567645 0.0457164 0.0422648 32 2013 37 6.87369e+06 307425 586450. 2029.24 1.03 0.133708 0.1176 25474 144626 -1 1737 19 1072 1866 185613 38055 2.75796 2.75796 -104.179 -2.75796 0 0 744469. 2576.02 0.24 0.07 0.15 -1 -1 0.24 0.0226517 0.0197082 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30320 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 16.5 MiB 2.02 1055 8969 2107 6380 482 55.1 MiB 0.16 0.00 4.79158 -142.334 -4.79158 4.79158 0.78 0.000743718 0.000688472 0.037599 0.034843 30 2699 23 6.87369e+06 321398 556674. 1926.21 1.11 0.127743 0.112547 25186 138497 -1 2114 22 1391 2067 162370 36370 3.98476 3.98476 -136.47 -3.98476 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0311411 0.0272116 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30392 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 16.7 MiB 1.66 980 9951 2142 7372 437 55.2 MiB 0.16 0.01 3.6843 -115.486 -3.6843 3.6843 0.79 0.000767819 0.000710132 0.0368917 0.0341409 32 2937 23 6.87369e+06 447163 586450. 2029.24 1.10 0.128191 0.112813 25474 144626 -1 2257 20 1524 2526 256077 54124 3.11061 3.11061 -118.14 -3.11061 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0290713 0.0254283 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17160 1 0.03 -1 -1 30160 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.7 MiB 0.60 972 9537 2296 6533 708 55.1 MiB 0.15 0.00 4.25479 -129.925 -4.25479 4.25479 0.78 0.000680201 0.000629266 0.0344205 0.0318377 34 2341 21 6.87369e+06 363320 618332. 2139.56 1.60 0.167246 0.145789 25762 151098 -1 2009 17 1159 2165 205575 41762 3.5678 3.5678 -123.729 -3.5678 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0232888 0.0204093 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 16.5 MiB 2.74 1122 14450 4547 7634 2269 55.0 MiB 0.22 0.00 5.14049 -153.237 -5.14049 5.14049 0.78 0.000765851 0.000708548 0.0608022 0.0562543 34 2662 24 6.87369e+06 307425 618332. 2139.56 1.63 0.213255 0.187295 25762 151098 -1 2176 23 1254 1711 159288 34301 3.7151 3.7151 -134.093 -3.7151 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0330349 0.0288625 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17620 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 16.7 MiB 3.00 990 17178 5882 8168 3128 55.4 MiB 0.20 0.00 3.6884 -118.378 -3.6884 3.6884 0.79 0.000774395 0.000715189 0.0633953 0.0586238 30 2852 47 6.87369e+06 447163 556674. 1926.21 1.62 0.186427 0.164458 25186 138497 -1 2105 17 1293 2261 173113 38661 3.50851 3.50851 -118.088 -3.50851 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.026707 0.0234826 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30452 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 16.7 MiB 2.63 922 18795 6474 8507 3814 55.3 MiB 0.24 0.00 4.11773 -131.117 -4.11773 4.11773 0.79 0.000811388 0.000750078 0.0697982 0.0645045 36 2424 25 6.87369e+06 489084 648988. 2245.63 4.05 0.293695 0.256856 26050 158493 -1 1930 21 1438 2353 198873 45138 3.10161 3.10161 -117.184 -3.10161 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0318474 0.0278658 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30448 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 16.4 MiB 0.76 881 12751 3354 7696 1701 54.9 MiB 0.18 0.00 4.26989 -123.123 -4.26989 4.26989 0.80 0.000699267 0.000645446 0.0425087 0.0392681 30 2185 19 6.87369e+06 461137 556674. 1926.21 0.98 0.123047 0.108658 25186 138497 -1 1717 18 907 1567 101341 22483 3.8314 3.8314 -121.581 -3.8314 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.024602 0.021528 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17664 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.6 MiB 1.89 1140 14450 4739 7431 2280 55.1 MiB 0.21 0.00 4.86398 -140.272 -4.86398 4.86398 0.84 0.000714098 0.00066073 0.057275 0.0530007 34 2760 22 6.87369e+06 307425 618332. 2139.56 1.68 0.19904 0.17472 25762 151098 -1 2395 18 1530 2209 214766 44749 4.02406 4.02406 -138.329 -4.02406 0 0 787024. 2723.27 0.25 0.08 0.12 -1 -1 0.25 0.0257529 0.0225885 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30332 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 16.6 MiB 1.84 912 13105 4297 5300 3508 55.2 MiB 0.18 0.00 4.74348 -140.694 -4.74348 4.74348 0.78 0.000788309 0.000729069 0.0581236 0.0537578 36 3215 46 6.87369e+06 307425 648988. 2245.63 4.49 0.246671 0.215969 26050 158493 -1 2319 21 1853 2913 258482 60033 4.20666 4.20666 -138.262 -4.20666 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0316818 0.027711 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 16.7 MiB 2.36 1089 15709 4726 9045 1938 55.2 MiB 0.24 0.00 4.3693 -136.102 -4.3693 4.3693 0.79 0.000803574 0.000742666 0.0703278 0.0650339 34 2877 23 6.87369e+06 293451 618332. 2139.56 1.76 0.228556 0.200955 25762 151098 -1 2332 23 1605 2903 256169 54217 3.70946 3.70946 -133.233 -3.70946 0 0 787024. 2723.27 0.27 0.10 0.15 -1 -1 0.27 0.0346956 0.0302635 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30024 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 16.3 MiB 0.63 730 9914 2670 6709 535 54.7 MiB 0.12 0.00 3.5583 -105.077 -3.5583 3.5583 0.79 0.000605906 0.000560565 0.0338155 0.031262 28 1862 20 6.87369e+06 307425 531479. 1839.03 0.94 0.103996 0.0913903 24610 126494 -1 1710 21 1002 1616 145849 32601 2.75801 2.75801 -102.554 -2.75801 0 0 648988. 2245.63 0.21 0.07 0.13 -1 -1 0.21 0.0241702 0.0210139 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.16 17756 1 0.03 -1 -1 30376 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 16.6 MiB 1.51 968 15568 5616 7798 2154 55.1 MiB 0.22 0.00 3.7434 -130.891 -3.7434 3.7434 0.79 0.000731788 0.000675496 0.066353 0.0612662 34 2736 21 6.87369e+06 251529 618332. 2139.56 1.80 0.208934 0.183268 25762 151098 -1 2207 22 1706 2426 247787 53492 3.46621 3.46621 -137.04 -3.46621 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0301851 0.0263091 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 16.8 MiB 2.72 1427 16858 5256 9636 1966 55.4 MiB 0.31 0.01 5.58608 -163.667 -5.58608 5.58608 0.78 0.000849646 0.000777608 0.0753533 0.0694854 34 3497 22 6.87369e+06 335372 618332. 2139.56 1.94 0.240857 0.212078 25762 151098 -1 2844 20 1965 3010 262410 56302 4.8272 4.8272 -160.952 -4.8272 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0324079 0.0284196 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 16.6 MiB 2.59 968 18998 5516 10575 2907 55.1 MiB 0.29 0.00 4.31005 -135.578 -4.31005 4.31005 0.79 0.000754667 0.000697627 0.0778759 0.071932 34 2218 23 6.87369e+06 475111 618332. 2139.56 3.09 0.291972 0.255501 25762 151098 -1 1837 19 1198 1991 151786 33496 3.06026 3.06026 -119.164 -3.06026 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0276111 0.0241823 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17460 1 0.03 -1 -1 30392 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 16.3 MiB 0.67 634 6615 1367 5002 246 54.9 MiB 0.10 0.00 3.6392 -108.305 -3.6392 3.6392 0.79 0.000637473 0.000590012 0.0240134 0.0222288 26 2267 37 6.87369e+06 349346 503264. 1741.40 1.48 0.115856 0.101036 24322 120374 -1 1765 25 1377 2177 211153 47713 3.18891 3.18891 -115.234 -3.18891 0 0 618332. 2139.56 0.21 0.09 0.12 -1 -1 0.21 0.02851 0.024745 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18008 1 0.03 -1 -1 30288 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 17.0 MiB 4.41 1457 14543 4326 8631 1586 55.5 MiB 0.25 0.00 5.90291 -175.463 -5.90291 5.90291 0.78 0.000901554 0.000835077 0.0690612 0.0640029 34 3350 23 6.87369e+06 349346 618332. 2139.56 2.39 0.24222 0.212963 25762 151098 -1 2872 22 2351 3592 368354 76432 5.0605 5.0605 -170.333 -5.0605 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0381865 0.0334352 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30320 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 16.7 MiB 2.76 1003 17199 4580 10530 2089 55.2 MiB 0.21 0.00 4.63938 -140.336 -4.63938 4.63938 0.79 0.000749741 0.000694449 0.0589629 0.0545451 32 2576 26 6.87369e+06 489084 586450. 2029.24 1.07 0.152512 0.13528 25474 144626 -1 2075 21 1548 2528 252483 52523 4.1273 4.1273 -136.216 -4.1273 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.029759 0.026019 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17080 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.3 MiB 0.59 878 10618 2802 6933 883 54.8 MiB 0.13 0.00 3.66956 -107.639 -3.66956 3.66956 0.79 0.000582185 0.000538709 0.0333424 0.0308431 30 1968 19 6.87369e+06 335372 556674. 1926.21 0.95 0.0997713 0.0877631 25186 138497 -1 1619 18 729 1340 99674 21860 2.68771 2.68771 -100.733 -2.68771 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0203788 0.0177573 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.16 17868 1 0.03 -1 -1 30328 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 16.6 MiB 1.87 1091 19371 5911 10963 2497 55.3 MiB 0.27 0.00 5.19487 -138.438 -5.19487 5.19487 0.79 0.000769631 0.000711412 0.0658507 0.060824 26 3227 32 6.87369e+06 517032 503264. 1741.40 6.37 0.264401 0.231389 24322 120374 -1 2661 23 1767 3166 319786 66540 4.80315 4.80315 -149.277 -4.80315 0 0 618332. 2139.56 0.20 0.11 0.12 -1 -1 0.20 0.0329108 0.0287151 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.16 17056 1 0.03 -1 -1 30232 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.3 MiB 0.68 765 8363 1967 5928 468 54.8 MiB 0.12 0.00 3.6502 -113.574 -3.6502 3.6502 0.79 0.000608368 0.000562695 0.0299749 0.0277117 34 2132 18 6.87369e+06 265503 618332. 2139.56 1.54 0.145616 0.126584 25762 151098 -1 1790 18 1063 1872 169298 36292 2.83496 2.83496 -109.251 -2.83496 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0216666 0.0189042 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.17 17324 1 0.03 -1 -1 30452 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 16.3 MiB 2.15 687 8418 1716 5962 740 54.9 MiB 0.11 0.00 3.88482 -111.398 -3.88482 3.88482 0.78 0.000646162 0.000596208 0.0274272 0.0252644 28 2038 23 6.87369e+06 475111 531479. 1839.03 1.27 0.105616 0.0923542 24610 126494 -1 1754 21 1213 2169 178075 41017 3.00526 3.00526 -109.857 -3.00526 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.025468 0.0221427 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30316 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 16.8 MiB 3.51 1118 13105 3443 8133 1529 55.4 MiB 0.22 0.00 4.10563 -124.474 -4.10563 4.10563 0.78 0.000757283 0.000700957 0.0560258 0.0518777 34 2884 25 6.87369e+06 335372 618332. 2139.56 1.94 0.208602 0.182622 25762 151098 -1 2365 17 1576 2391 213034 46026 3.41741 3.41741 -123.553 -3.41741 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0257429 0.0225953 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17460 1 0.03 -1 -1 30468 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 16.6 MiB 1.92 806 8532 1884 6173 475 55.1 MiB 0.13 0.00 4.39805 -136.981 -4.39805 4.39805 0.79 0.000772659 0.00071472 0.0350457 0.0324336 34 2227 20 6.87369e+06 363320 618332. 2139.56 1.63 0.181298 0.157905 25762 151098 -1 1865 19 1457 2282 193980 42933 3.7634 3.7634 -131.216 -3.7634 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0287146 0.025141 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1121 14983 4753 8344 1886 55.1 MiB 0.23 0.00 4.71348 -141.457 -4.71348 4.71348 0.78 0.000769746 0.000711655 0.0590828 0.0545672 34 2966 45 6.87369e+06 377294 618332. 2139.56 3.62 0.270491 0.236097 25762 151098 -1 2502 20 1539 2548 280499 56605 4.18336 4.18336 -143.844 -4.18336 0 0 787024. 2723.27 0.30 0.10 0.16 -1 -1 0.30 0.0298593 0.0261492 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17340 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.4 MiB 2.86 883 12923 4460 6401 2062 54.9 MiB 0.17 0.00 4.76482 -134.311 -4.76482 4.76482 0.79 0.000638988 0.000590771 0.0509684 0.047158 30 2315 27 6.87369e+06 209608 556674. 1926.21 3.22 0.204199 0.17795 25186 138497 -1 1867 16 922 1282 118853 24361 3.15856 3.15856 -115.925 -3.15856 0 0 706193. 2443.58 0.23 0.06 0.16 -1 -1 0.23 0.0212164 0.0186489 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30540 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 16.3 MiB 2.21 973 14184 4741 7494 1949 54.9 MiB 0.19 0.00 3.76746 -124.928 -3.76746 3.76746 0.79 0.000689458 0.000637267 0.0595847 0.0551359 34 2511 24 6.87369e+06 237555 618332. 2139.56 1.67 0.198306 0.173545 25762 151098 -1 2098 18 1238 1833 173133 37828 3.5541 3.5541 -127.567 -3.5541 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0247002 0.0215918 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30452 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 16.7 MiB 2.22 925 17835 5186 10054 2595 55.2 MiB 0.23 0.00 3.47005 -102.148 -3.47005 3.47005 0.78 0.000724192 0.000662235 0.060825 0.0560412 32 2417 24 6.87369e+06 475111 586450. 2029.24 1.00 0.148305 0.131263 25474 144626 -1 1872 21 1155 2062 190251 40479 2.64466 2.64466 -98.9225 -2.64466 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.028677 0.0249833 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.14 17520 1 0.03 -1 -1 30452 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 16.2 MiB 1.68 875 14783 4032 9129 1622 54.9 MiB 0.18 0.00 4.05975 -105.458 -4.05975 4.05975 0.79 0.00066407 0.00061603 0.0461848 0.0426757 26 2144 23 6.87369e+06 489084 503264. 1741.40 1.26 0.124064 0.109255 24322 120374 -1 2072 21 1308 2403 245967 51198 4 4 -116.43 -4 0 0 618332. 2139.56 0.21 0.09 0.13 -1 -1 0.21 0.0255476 0.0221877 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.18 17724 1 0.03 -1 -1 30364 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 16.3 MiB 2.56 802 13599 4534 7471 1594 54.9 MiB 0.20 0.00 4.04073 -123.042 -4.04073 4.04073 0.78 0.000686804 0.000635217 0.0580588 0.0537486 28 2214 21 6.87369e+06 237555 531479. 1839.03 1.18 0.142599 0.126259 24610 126494 -1 1921 19 1247 2121 199277 43494 3.18556 3.18556 -121.147 -3.18556 0 0 648988. 2245.63 0.22 0.08 0.13 -1 -1 0.22 0.0253085 0.0220635 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.10 17764 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 16.6 MiB 2.56 1020 11806 3110 7534 1162 55.1 MiB 0.18 0.00 3.6756 -125.066 -3.6756 3.6756 0.78 0.000722021 0.000667866 0.0509871 0.0471645 34 2658 20 6.87369e+06 237555 618332. 2139.56 1.65 0.19254 0.1685 25762 151098 -1 2253 18 1383 2054 199620 42959 3.18891 3.18891 -127.917 -3.18891 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0257113 0.0224833 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30492 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.6 MiB 0.68 1014 15430 4861 8054 2515 55.0 MiB 0.21 0.00 4.6284 -133.663 -4.6284 4.6284 0.79 0.000690833 0.000638873 0.052397 0.0483852 32 2515 23 6.87369e+06 433189 586450. 2029.24 1.05 0.135238 0.119699 25474 144626 -1 2125 18 1202 2198 207291 43577 3.7321 3.7321 -124.249 -3.7321 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0244163 0.0213611 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 16.6 MiB 2.85 1172 16215 5632 8430 2153 55.3 MiB 0.33 0.01 4.82738 -155.303 -4.82738 4.82738 0.78 0.000591381 0.000539522 0.0651895 0.0599413 34 3418 27 6.87369e+06 321398 618332. 2139.56 1.91 0.213323 0.187758 25762 151098 -1 2702 23 1861 2795 309121 66328 4.34186 4.34186 -153.291 -4.34186 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0334158 0.029234 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30300 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 16.6 MiB 3.35 951 10308 2331 7565 412 55.2 MiB 0.17 0.00 5.39654 -155.229 -5.39654 5.39654 0.78 0.000840946 0.000779454 0.0406021 0.0376248 34 2729 25 6.87369e+06 503058 618332. 2139.56 2.32 0.211204 0.18476 25762 151098 -1 2127 20 1457 2434 198025 46439 4.29385 4.29385 -142.531 -4.29385 0 0 787024. 2723.27 0.27 0.10 0.15 -1 -1 0.27 0.033516 0.0294199 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30356 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 16.6 MiB 2.73 1114 12702 3372 8526 804 55.2 MiB 0.20 0.00 4.59844 -147.406 -4.59844 4.59844 0.79 0.000816734 0.000756042 0.0452898 0.0417541 26 3564 40 6.87369e+06 572927 503264. 1741.40 5.90 0.277915 0.241585 24322 120374 -1 2730 22 1706 3094 442520 107084 4.2043 4.2043 -149.557 -4.2043 0 0 618332. 2139.56 0.23 0.14 0.11 -1 -1 0.23 0.0338409 0.0295926 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30148 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 16.3 MiB 2.08 643 13768 5811 6950 1007 54.8 MiB 0.16 0.00 4.04073 -117.599 -4.04073 4.04073 0.78 0.000634039 0.000587085 0.0537119 0.0496988 34 2265 49 6.87369e+06 237555 618332. 2139.56 2.15 0.185755 0.162415 25762 151098 -1 1568 22 1174 1884 163558 38771 3.78711 3.78711 -115.234 -3.78711 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0262858 0.0228629 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 16.6 MiB 2.98 958 7038 1640 4840 558 55.1 MiB 0.13 0.00 4.57902 -143.19 -4.57902 4.57902 0.78 0.000791892 0.000732991 0.032801 0.030365 34 2460 20 6.87369e+06 307425 618332. 2139.56 1.63 0.1844 0.16057 25762 151098 -1 2045 21 1697 2678 247203 52809 3.8466 3.8466 -138.477 -3.8466 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0316721 0.0277122 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17728 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 16.6 MiB 2.39 1035 6615 1396 4961 258 55.2 MiB 0.12 0.00 5.21006 -150.271 -5.21006 5.21006 0.79 0.000753238 0.000697322 0.0282862 0.0262072 34 2933 25 6.87369e+06 321398 618332. 2139.56 1.90 0.178872 0.155554 25762 151098 -1 2378 21 1565 2616 254111 54747 4.14826 4.14826 -142.534 -4.14826 0 0 787024. 2723.27 0.26 0.10 0.15 -1 -1 0.26 0.0300276 0.0262801 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17616 1 0.03 -1 -1 30116 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 16.6 MiB 2.09 1178 17839 5313 10611 1915 55.2 MiB 0.24 0.00 5.241 -151.339 -5.241 5.241 0.84 0.000475577 0.000432603 0.0612435 0.0564786 34 2793 42 6.87369e+06 391268 618332. 2139.56 1.69 0.186154 0.163656 25762 151098 -1 2415 21 1675 2650 239961 52013 4.4876 4.4876 -149.105 -4.4876 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0298792 0.0261135 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30196 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 16.6 MiB 2.29 1032 10531 2482 6524 1525 55.2 MiB 0.14 0.00 4.69758 -143.214 -4.69758 4.69758 0.81 0.000570256 0.000519124 0.031842 0.029098 32 2649 22 6.87369e+06 447163 586450. 2029.24 1.12 0.104759 0.0918583 25474 144626 -1 2165 18 1193 1995 198202 42198 3.3252 3.3252 -126.75 -3.3252 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.02773 0.0242945 135 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17744 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 16.7 MiB 2.01 1030 11245 3242 7121 882 55.2 MiB 0.19 0.00 4.79284 -145.044 -4.79284 4.79284 0.78 0.000781736 0.000723188 0.0496677 0.0459695 34 2767 21 6.87369e+06 293451 618332. 2139.56 1.75 0.200943 0.176108 25762 151098 -1 2198 20 1605 2853 272820 56461 3.84846 3.84846 -137.776 -3.84846 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0305322 0.026776 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17732 1 0.03 -1 -1 30324 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 16.6 MiB 2.28 973 10944 3003 6644 1297 55.1 MiB 0.17 0.00 4.08063 -124.263 -4.08063 4.08063 0.79 0.000783081 0.000724055 0.0452132 0.041839 34 2375 25 6.87369e+06 405241 618332. 2139.56 1.69 0.201622 0.176096 25762 151098 -1 2054 22 1650 2711 240957 52569 3.15261 3.15261 -116.306 -3.15261 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0324066 0.0282625 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17100 1 0.04 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.2 MiB 0.57 780 13906 5362 7318 1226 54.6 MiB 0.17 0.00 4.08063 -122.384 -4.08063 4.08063 0.78 0.000600421 0.000554565 0.0496579 0.0458892 34 1821 16 6.87369e+06 237555 618332. 2139.56 1.45 0.162157 0.142048 25762 151098 -1 1580 15 832 1234 109171 23146 2.81871 2.81871 -105.67 -2.81871 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.018803 0.0164978 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30324 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 16.8 MiB 3.92 1081 9548 2182 6489 877 55.5 MiB 0.15 0.00 4.62608 -140.581 -4.62608 4.62608 0.78 0.000791511 0.000732271 0.0362245 0.0335017 28 2637 28 6.87369e+06 475111 531479. 1839.03 1.27 0.137014 0.120336 24610 126494 -1 2352 19 1632 2677 249398 54317 3.8154 3.8154 -139.271 -3.8154 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.028725 0.0250744 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 16.8 MiB 3.39 1050 13477 3452 8462 1563 55.3 MiB 0.23 0.00 4.60818 -154.696 -4.60818 4.60818 0.78 0.000827039 0.000764896 0.0626697 0.0580116 34 2777 21 6.87369e+06 293451 618332. 2139.56 1.76 0.224237 0.197181 25762 151098 -1 2348 17 1579 2619 240169 51231 4.0009 4.0009 -153.927 -4.0009 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0286224 0.0252107 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.17 17284 1 0.03 -1 -1 30064 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 16.2 MiB 2.87 803 10744 3029 6489 1226 54.7 MiB 0.16 0.00 4.47622 -122.656 -4.47622 4.47622 0.78 0.000629276 0.000582027 0.0413736 0.0382846 34 2299 20 6.87369e+06 223581 618332. 2139.56 1.62 0.163656 0.142817 25762 151098 -1 1880 17 1049 1363 126073 28333 3.3535 3.3535 -115.074 -3.3535 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0215458 0.0188177 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17024 1 0.03 -1 -1 30376 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.3 MiB 0.67 704 7103 1505 5021 577 54.8 MiB 0.11 0.00 4.06963 -117.109 -4.06963 4.06963 0.81 0.00059784 0.000552741 0.0258178 0.023918 30 1829 19 6.87369e+06 279477 556674. 1926.21 0.94 0.0946993 0.0829682 25186 138497 -1 1581 19 973 1662 120925 26171 2.80771 2.80771 -104.161 -2.80771 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.022079 0.0192299 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30396 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.7 MiB 2.69 1122 16407 5100 9312 1995 55.5 MiB 0.27 0.00 4.76368 -149.576 -4.76368 4.76368 0.78 0.000766495 0.000709483 0.068143 0.0631072 34 3071 36 6.87369e+06 321398 618332. 2139.56 2.06 0.234146 0.205519 25762 151098 -1 2522 23 2027 2756 320107 65024 4.18536 4.18536 -153.538 -4.18536 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0330417 0.0288879 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30256 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 16.7 MiB 2.25 1027 10087 2665 7077 345 55.2 MiB 0.16 0.00 5.28228 -152.543 -5.28228 5.28228 0.79 0.000766589 0.000709099 0.0403469 0.037347 34 2886 39 6.87369e+06 377294 618332. 2139.56 1.85 0.195246 0.170406 25762 151098 -1 2270 21 1506 2357 192803 44412 4.40635 4.40635 -144.809 -4.40635 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0307811 0.026908 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17288 1 0.03 -1 -1 30164 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.7 MiB 0.69 1027 19820 5642 10737 3441 55.3 MiB 0.29 0.00 5.45503 -148.146 -5.45503 5.45503 0.79 0.000787298 0.000729121 0.0700969 0.0647133 30 3122 38 6.87369e+06 503058 556674. 1926.21 1.33 0.18419 0.163186 25186 138497 -1 1998 20 1432 2666 194652 42403 4.31395 4.31395 -139.634 -4.31395 0 0 706193. 2443.58 0.23 0.09 0.09 -1 -1 0.23 0.0310249 0.0272463 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30256 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 16.5 MiB 2.03 803 13893 3888 7187 2818 54.9 MiB 0.18 0.00 3.64131 -107.005 -3.64131 3.64131 0.79 0.000692073 0.000639864 0.0461889 0.0427343 32 2171 23 6.87369e+06 475111 586450. 2029.24 1.03 0.12987 0.114644 25474 144626 -1 1687 19 1214 2168 206254 44780 2.92396 2.92396 -102.045 -2.92396 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0256814 0.0223609 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30668 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 16.3 MiB 0.82 507 7132 1637 4881 614 54.8 MiB 0.09 0.00 3.6605 -96.1635 -3.6605 3.6605 0.78 0.000599354 0.000553635 0.0264762 0.0245155 30 1501 23 6.87369e+06 293451 556674. 1926.21 0.96 0.0990302 0.0866653 25186 138497 -1 1219 18 773 1109 83785 19295 3.05561 3.05561 -95.6095 -3.05561 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0209282 0.0182134 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30368 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 17.2 MiB 3.13 1378 10228 2746 6595 887 55.8 MiB 0.20 0.01 4.35815 -140.01 -4.35815 4.35815 0.78 0.000879275 0.000813856 0.0488755 0.0452802 34 3992 28 6.87369e+06 335372 618332. 2139.56 3.41 0.234341 0.204835 25762 151098 -1 3126 20 1988 3301 325180 68753 4.12156 4.12156 -143.545 -4.12156 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0338712 0.0296783 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.15 17784 1 0.03 -1 -1 30356 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 16.6 MiB 3.68 1036 15709 5736 7909 2064 55.2 MiB 0.24 0.00 5.60997 -168.26 -5.60997 5.60997 0.78 0.000775636 0.00071669 0.0683018 0.0632074 34 2852 20 6.87369e+06 307425 618332. 2139.56 1.97 0.218699 0.192367 25762 151098 -1 2273 23 1918 2961 288732 61573 4.71195 4.71195 -153.274 -4.71195 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.032983 0.028831 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 30392 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 16.5 MiB 3.88 954 12542 3477 7836 1229 55.2 MiB 0.17 0.00 4.34735 -144.276 -4.34735 4.34735 0.79 0.000712382 0.00065879 0.0527926 0.0488423 34 2379 22 6.87369e+06 251529 618332. 2139.56 1.66 0.193162 0.168984 25762 151098 -1 2012 21 1300 1903 167462 37973 3.43686 3.43686 -136.272 -3.43686 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.028877 0.0252287 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17724 1 0.03 -1 -1 30344 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 16.6 MiB 1.00 986 18523 6141 9875 2507 55.1 MiB 0.25 0.00 5.03998 -136.555 -5.03998 5.03998 0.83 0.000735834 0.000672518 0.0647826 0.0597158 28 2645 21 6.87369e+06 461137 531479. 1839.03 1.16 0.149852 0.132978 24610 126494 -1 2206 21 1293 2060 191492 39919 3.7713 3.7713 -127.772 -3.7713 0 0 648988. 2245.63 0.22 0.09 0.13 -1 -1 0.22 0.0291479 0.0254584 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17632 1 0.03 -1 -1 30252 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 16.7 MiB 1.61 1064 18301 5445 10263 2593 55.2 MiB 0.26 0.00 4.47348 -130.92 -4.47348 4.47348 0.78 0.000805863 0.000746226 0.068701 0.063597 32 2598 30 6.87369e+06 475111 586450. 2029.24 1.06 0.173802 0.15429 25474 144626 -1 2183 19 1330 2244 204431 44075 3.62616 3.62616 -124.571 -3.62616 0 0 744469. 2576.02 0.25 0.09 0.16 -1 -1 0.25 0.0301333 0.0264456 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17728 1 0.03 -1 -1 30152 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 16.6 MiB 1.81 1005 13953 3900 8706 1347 55.0 MiB 0.18 0.00 3.71604 -108.811 -3.71604 3.71604 0.78 0.000719863 0.000666696 0.0500149 0.0463018 34 2293 20 6.87369e+06 433189 618332. 2139.56 1.61 0.193572 0.169138 25762 151098 -1 1979 18 1160 2021 179758 38158 2.93031 2.93031 -104.42 -2.93031 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0259633 0.0227942 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30244 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 16.7 MiB 2.87 1158 14261 4788 7245 2228 55.3 MiB 0.24 0.01 4.84864 -152.871 -4.84864 4.84864 0.78 0.000776269 0.000714346 0.0604535 0.0559371 34 3299 34 6.87369e+06 307425 618332. 2139.56 2.78 0.229474 0.201458 25762 151098 -1 2647 22 2008 3157 333419 68097 4.42025 4.42025 -152.064 -4.42025 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0324248 0.0284131 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30184 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 16.8 MiB 2.72 1138 19124 5521 11431 2172 55.6 MiB 0.27 0.00 4.13563 -138.632 -4.13563 4.13563 0.79 0.000811438 0.000750428 0.0700092 0.0647629 28 2703 21 6.87369e+06 503058 531479. 1839.03 1.09 0.165742 0.14742 24610 126494 -1 2437 21 1569 2526 209983 44516 3.06531 3.06531 -129.289 -3.06531 0 0 648988. 2245.63 0.21 0.10 0.13 -1 -1 0.21 0.0325266 0.0284416 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30448 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 16.1 MiB 1.65 666 12120 4433 5222 2465 54.6 MiB 0.14 0.00 3.97634 -118.279 -3.97634 3.97634 0.78 0.000622229 0.00057551 0.0459561 0.0425279 32 1767 29 6.87369e+06 265503 586450. 2029.24 1.01 0.126606 0.111689 25474 144626 -1 1380 19 1122 1645 149206 31090 3.12946 3.12946 -109.963 -3.12946 0 0 744469. 2576.02 0.24 0.07 0.15 -1 -1 0.24 0.0233161 0.0203349 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30364 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 16.2 MiB 1.43 954 14256 4666 7594 1996 54.8 MiB 0.18 0.00 4.32352 -124.508 -4.32352 4.32352 0.79 0.00068408 0.000632561 0.0551503 0.050898 30 2361 35 6.87369e+06 237555 556674. 1926.21 1.02 0.149703 0.131955 25186 138497 -1 1936 13 821 1094 85189 18643 3.26184 3.26184 -121.634 -3.26184 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0188626 0.0166003 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.17 17816 1 0.03 -1 -1 30516 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 16.7 MiB 1.68 1008 17238 4626 10206 2406 55.2 MiB 0.21 0.00 4.58512 -131.297 -4.58512 4.58512 0.78 0.000726886 0.00067277 0.0553792 0.0511993 26 2724 28 6.87369e+06 544980 503264. 1741.40 4.31 0.230973 0.201529 24322 120374 -1 2380 22 1659 2995 315081 65064 3.9277 3.9277 -133.428 -3.9277 0 0 618332. 2139.56 0.21 0.11 0.12 -1 -1 0.21 0.0299732 0.0261621 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 2.93 766 12464 3650 7053 1761 54.9 MiB 0.18 0.00 4.72278 -121.674 -4.72278 4.72278 0.81 0.0006114 0.00056568 0.0465344 0.0431149 34 2130 23 6.87369e+06 265503 618332. 2139.56 1.57 0.137777 0.121063 25762 151098 -1 1773 17 1103 1464 120197 29021 3.56846 3.56846 -113.356 -3.56846 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.021039 0.0183781 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 16.2 MiB 2.75 839 11909 3234 7671 1004 54.8 MiB 0.15 0.00 4.09853 -129.483 -4.09853 4.09853 0.84 0.000648237 0.00059935 0.0464869 0.0429603 34 2136 25 6.87369e+06 209608 618332. 2139.56 1.59 0.169168 0.147822 25762 151098 -1 1828 20 1336 2295 210483 44710 3.04931 3.04931 -117.728 -3.04931 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0249445 0.0217414 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30048 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 16.7 MiB 2.48 942 11236 2692 7798 746 55.2 MiB 0.21 0.01 3.93572 -125.697 -3.93572 3.93572 0.79 0.000542142 0.000493912 0.0355761 0.0326372 28 2323 24 6.87369e+06 517032 531479. 1839.03 2.87 0.223505 0.194098 24610 126494 -1 1995 21 1626 2418 213889 46283 3.09026 3.09026 -122.731 -3.09026 0 0 648988. 2245.63 0.24 0.09 0.13 -1 -1 0.24 0.0313608 0.0273958 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17520 1 0.03 -1 -1 30472 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 16.3 MiB 2.62 854 11604 2702 8073 829 54.8 MiB 0.14 0.00 3.71466 -115.66 -3.71466 3.71466 0.80 0.000628174 0.000581627 0.0448328 0.0415326 34 2035 25 6.87369e+06 237555 618332. 2139.56 1.50 0.170119 0.14858 25762 151098 -1 1806 20 1105 1591 152375 33045 3.11961 3.11961 -115.519 -3.11961 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0238922 0.0208125 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30088 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 16.8 MiB 2.59 1000 15215 3699 9919 1597 55.3 MiB 0.20 0.00 3.6733 -115.913 -3.6733 3.6733 0.78 0.000758708 0.00069801 0.0555947 0.0514337 26 2695 30 6.87369e+06 433189 503264. 1741.40 3.89 0.252299 0.220265 24322 120374 -1 2322 21 1246 2023 188836 40715 3.12761 3.12761 -117.135 -3.12761 0 0 618332. 2139.56 0.20 0.08 0.12 -1 -1 0.20 0.0297935 0.0259419 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30380 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 16.7 MiB 2.92 1013 12839 3510 8051 1278 55.3 MiB 0.19 0.00 3.7214 -127.022 -3.7214 3.7214 0.78 0.000814373 0.000753409 0.0511377 0.0473279 26 2611 23 6.87369e+06 447163 503264. 1741.40 1.22 0.149208 0.131879 24322 120374 -1 2271 21 1758 2648 263248 55673 3.44716 3.44716 -134.752 -3.44716 0 0 618332. 2139.56 0.21 0.10 0.13 -1 -1 0.21 0.0324866 0.0283977 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30216 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 16.3 MiB 2.03 868 13324 3871 8104 1349 54.9 MiB 0.17 0.00 3.6034 -114.008 -3.6034 3.6034 0.78 0.000669704 0.000618695 0.053967 0.0498879 34 2142 27 6.87369e+06 223581 618332. 2139.56 1.53 0.190091 0.166205 25762 151098 -1 1823 20 1049 1726 175953 37323 2.78486 2.78486 -110.654 -2.78486 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.026027 0.0226741 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17328 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.3 MiB 1.47 974 10050 2495 6517 1038 55.0 MiB 0.15 0.00 4.16989 -130.796 -4.16989 4.16989 0.79 0.000671126 0.000621317 0.0405366 0.0373995 34 2533 27 6.87369e+06 251529 618332. 2139.56 1.82 0.176513 0.153694 25762 151098 -1 2221 20 1459 2248 221047 47022 3.29781 3.29781 -125.565 -3.29781 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.025875 0.0226162 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17572 1 0.03 -1 -1 30292 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 16.7 MiB 2.41 1073 14072 3847 8138 2087 55.2 MiB 0.20 0.00 4.82103 -137.111 -4.82103 4.82103 0.79 0.000573811 0.000525469 0.0557007 0.0514979 34 2673 20 6.87369e+06 307425 618332. 2139.56 1.60 0.194238 0.170469 25762 151098 -1 2265 19 1421 2013 187893 39991 4.01606 4.01606 -132.938 -4.01606 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0266683 0.0233786 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17788 1 0.03 -1 -1 30196 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 16.6 MiB 2.37 938 11346 3139 7252 955 55.0 MiB 0.16 0.00 4.10263 -113.928 -4.10263 4.10263 0.84 0.000707338 0.00065509 0.0418031 0.0386655 34 2265 24 6.87369e+06 405241 618332. 2139.56 1.48 0.152576 0.133453 25762 151098 -1 1875 19 989 1572 123246 28321 3.09131 3.09131 -107.638 -3.09131 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0260711 0.0227648 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17744 1 0.03 -1 -1 30412 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 16.7 MiB 2.60 1137 15773 5092 8347 2334 55.5 MiB 0.26 0.00 5.16181 -165.054 -5.16181 5.16181 0.83 0.000838252 0.000766858 0.0697302 0.0642758 34 3068 29 6.87369e+06 307425 618332. 2139.56 1.99 0.226967 0.199388 25762 151098 -1 2467 21 1805 2787 277326 58554 4.16526 4.16526 -156.689 -4.16526 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0327074 0.0285941 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30368 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 15.9 MiB 0.59 812 10400 2700 6281 1419 54.5 MiB 0.12 0.00 3.6213 -110.383 -3.6213 3.6213 0.79 0.000580077 0.000535288 0.0368236 0.0340954 34 1813 21 6.87369e+06 237555 618332. 2139.56 1.43 0.14926 0.130222 25762 151098 -1 1553 19 832 1285 110003 23425 2.68771 2.68771 -101.176 -2.68771 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0212629 0.018534 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17644 1 0.03 -1 -1 30332 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1097 18567 5571 11084 1912 55.3 MiB 0.26 0.00 4.4584 -148.753 -4.4584 4.4584 0.79 0.000842114 0.000778822 0.0713545 0.0659995 30 2544 21 6.87369e+06 489084 556674. 1926.21 1.17 0.170401 0.151418 25186 138497 -1 2038 20 1221 1808 161009 31836 3.76546 3.76546 -140.021 -3.76546 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0323505 0.0283364 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30048 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 16.6 MiB 3.76 823 13152 5512 7421 219 55.0 MiB 0.18 0.00 3.7595 -132.319 -3.7595 3.7595 0.78 0.000777786 0.000719258 0.0618584 0.0572394 34 2095 27 6.87369e+06 223581 618332. 2139.56 1.63 0.22447 0.19669 25762 151098 -1 1802 21 1625 2362 252462 51847 3.17461 3.17461 -130.163 -3.17461 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0307117 0.0268011 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30332 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 16.7 MiB 2.47 1010 10827 2581 6963 1283 55.2 MiB 0.17 0.00 4.11773 -126.026 -4.11773 4.11773 0.78 0.000772854 0.000714732 0.0405983 0.0375379 34 2344 17 6.87369e+06 447163 618332. 2139.56 1.52 0.185416 0.161881 25762 151098 -1 1950 20 1065 1720 137618 30356 2.88171 2.88171 -109.119 -2.88171 0 0 787024. 2723.27 0.25 0.08 0.10 -1 -1 0.25 0.0296061 0.0258744 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.16 17756 1 0.03 -1 -1 30540 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 16.9 MiB 3.59 1280 16127 4711 8958 2458 55.4 MiB 0.28 0.00 5.89191 -180.703 -5.89191 5.89191 0.78 0.000848719 0.000785444 0.0724947 0.0670649 34 3312 21 6.87369e+06 349346 618332. 2139.56 1.81 0.23829 0.210053 25762 151098 -1 2676 24 2148 3310 328679 67506 5.0595 5.0595 -167.914 -5.0595 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0380757 0.0333294 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17560 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55892 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 15.9 MiB 1.18 668 8716 2078 6018 620 54.6 MiB 0.10 0.00 3.01966 -95.583 -3.01966 3.01966 0.79 0.000541578 0.00050093 0.0306933 0.0283826 30 1709 25 6.87369e+06 209608 556674. 1926.21 0.97 0.0977245 0.0856429 25186 138497 -1 1446 18 737 976 85204 19020 2.35106 2.35106 -95.3586 -2.35106 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0190766 0.0165911 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30252 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 16.1 MiB 0.97 599 7081 1635 4909 537 54.7 MiB 0.11 0.00 4.05453 -121.132 -4.05453 4.05453 0.80 0.000652072 0.000602686 0.028918 0.026815 34 1718 36 6.87369e+06 265503 618332. 2139.56 1.56 0.170487 0.147757 25762 151098 -1 1353 22 1116 1746 142600 33133 2.94596 2.94596 -111.915 -2.94596 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0272101 0.0236882 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17348 1 0.03 -1 -1 30100 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 16.4 MiB 0.88 913 15639 4952 8936 1751 55.0 MiB 0.21 0.00 3.6323 -121.89 -3.6323 3.6323 0.84 0.000683689 0.000631353 0.0583924 0.0540587 32 2464 24 6.87369e+06 321398 586450. 2029.24 1.06 0.140855 0.124849 25474 144626 -1 2073 24 1461 2584 281254 57771 3.13856 3.13856 -124.168 -3.13856 0 0 744469. 2576.02 0.24 0.10 0.14 -1 -1 0.24 0.0299028 0.0259561 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17604 1 0.02 -1 -1 30280 -1 -1 29 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55872 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 16.2 MiB 0.66 516 9536 2821 4714 2001 54.6 MiB 0.09 0.00 3.5473 -82.6349 -3.5473 3.5473 0.78 0.000514392 0.000476075 0.0276814 0.0255816 28 1408 22 6.87369e+06 405241 531479. 1839.03 0.91 0.0892133 0.0781475 24610 126494 -1 1243 17 757 1286 101378 23170 2.81396 2.81396 -81.2726 -2.81396 0 0 648988. 2245.63 0.22 0.05 0.14 -1 -1 0.22 0.0173918 0.0151692 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 16.5 MiB 2.30 974 10332 2610 6542 1180 55.1 MiB 0.18 0.00 4.3434 -128.294 -4.3434 4.3434 0.79 0.000788216 0.000728321 0.0470848 0.0435686 34 2973 20 6.87369e+06 279477 618332. 2139.56 1.91 0.200594 0.175541 25762 151098 -1 2409 18 1444 2552 235233 51456 3.96806 3.96806 -135.268 -3.96806 0 0 787024. 2723.27 0.28 0.09 0.15 -1 -1 0.28 0.0270739 0.0236358 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 30352 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 16.6 MiB 2.61 978 9679 2433 6610 636 55.2 MiB 0.17 0.00 4.12463 -132.597 -4.12463 4.12463 0.78 0.000840473 0.000777998 0.0413388 0.0382498 28 2519 43 6.87369e+06 433189 531479. 1839.03 1.15 0.166514 0.146026 24610 126494 -1 2144 23 1764 2699 230233 50737 3.19976 3.19976 -125.836 -3.19976 0 0 648988. 2245.63 0.21 0.10 0.13 -1 -1 0.21 0.0359282 0.0313733 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30116 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 16.3 MiB 2.36 1101 11203 3178 6921 1104 55.1 MiB 0.20 0.00 5.42457 -156.316 -5.42457 5.42457 0.78 0.000765508 0.000707919 0.0466609 0.0431669 34 2900 26 6.89349e+06 338252 618332. 2139.56 1.78 0.202515 0.176813 25762 151098 -1 2350 21 1619 2387 194540 44376 4.30515 4.30515 -147.891 -4.30515 0 0 787024. 2723.27 0.27 0.09 0.15 -1 -1 0.27 0.0314799 0.0276091 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30412 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 16.6 MiB 1.46 1174 12178 3196 7626 1356 55.1 MiB 0.21 0.00 4.90208 -149.95 -4.90208 4.90208 0.80 0.000781682 0.000723944 0.0512459 0.0475046 34 3106 42 6.89349e+06 366440 618332. 2139.56 1.96 0.226426 0.197651 25762 151098 -1 2496 21 2013 3021 272095 57373 4.34073 4.34073 -147.657 -4.34073 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0308678 0.0269854 156 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.15 17840 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.1 MiB 1.63 1048 13663 4160 7949 1554 54.8 MiB 0.19 0.00 4.2044 -120.612 -4.2044 4.2044 0.78 0.000679634 0.000628412 0.0520984 0.0481525 34 2464 18 6.89349e+06 295971 618332. 2139.56 1.65 0.181395 0.158912 25762 151098 -1 2033 21 1206 1689 155324 33569 3.65845 3.65845 -118.393 -3.65845 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0273038 0.0237986 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.16 17868 1 0.04 -1 -1 30344 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 16.2 MiB 1.57 1070 14593 4351 8219 2023 54.9 MiB 0.21 0.00 4.83618 -131.951 -4.83618 4.83618 0.79 0.000686718 0.00063539 0.0563645 0.0521831 34 2576 32 6.89349e+06 338252 618332. 2139.56 1.66 0.21054 0.183469 25762 151098 -1 2081 20 1237 2036 175544 36938 3.77646 3.77646 -123.332 -3.77646 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0267852 0.0233736 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 16.6 MiB 1.26 1121 10839 3086 5720 2033 55.1 MiB 0.19 0.01 5.28221 -151.791 -5.28221 5.28221 0.81 0.000750925 0.000694828 0.0443644 0.041033 38 2745 27 6.89349e+06 324158 678818. 2348.85 4.82 0.312063 0.271246 26626 170182 -1 2393 19 1788 3185 288407 57810 4.39639 4.39639 -145.081 -4.39639 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0276586 0.0242119 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30452 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 16.6 MiB 1.83 1263 20077 7001 10670 2406 55.1 MiB 0.30 0.01 3.92406 -127.128 -3.92406 3.92406 0.81 0.000605592 0.000552312 0.0615628 0.0562376 34 3547 50 6.89349e+06 465097 618332. 2139.56 2.45 0.248838 0.2175 25762 151098 -1 2727 21 1556 2455 281603 54937 3.43895 3.43895 -127.883 -3.43895 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0309165 0.0269677 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17480 1 0.03 -1 -1 30584 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 16.1 MiB 1.13 795 13496 4096 7659 1741 54.6 MiB 0.16 0.00 4.14623 -113.724 -4.14623 4.14623 0.78 0.000596968 0.000552393 0.0488545 0.0452342 34 1868 19 6.89349e+06 295971 618332. 2139.56 1.70 0.153954 0.135168 25762 151098 -1 1569 18 1068 1552 152024 31999 3.05536 3.05536 -107.187 -3.05536 0 0 787024. 2723.27 0.31 0.07 0.16 -1 -1 0.31 0.0218142 0.0190571 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17244 1 0.03 -1 -1 30076 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.1 MiB 0.67 908 11759 3095 6971 1693 54.6 MiB 0.15 0.00 3.40307 -102.549 -3.40307 3.40307 0.78 0.00064959 0.000600011 0.0382911 0.0353539 26 2403 22 6.89349e+06 451003 503264. 1741.40 1.26 0.114967 0.101091 24322 120374 -1 2050 18 1102 1922 177973 38280 2.61161 2.61161 -98.9938 -2.61161 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0222623 0.0193921 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17880 1 0.03 -1 -1 30200 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 16.5 MiB 1.49 1042 10703 3845 4978 1880 54.9 MiB 0.17 0.00 3.68945 -124.167 -3.68945 3.68945 0.79 0.000697829 0.000644453 0.0437393 0.0404827 34 2656 22 6.89349e+06 281877 618332. 2139.56 1.74 0.179049 0.156148 25762 151098 -1 2190 20 1584 2134 222783 45513 3.33016 3.33016 -122.167 -3.33016 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0268147 0.0233911 130 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30064 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 16.1 MiB 1.92 928 7914 1841 5211 862 54.8 MiB 0.14 0.00 4.05148 -133.476 -4.05148 4.05148 0.79 0.000693168 0.000642297 0.0323748 0.0300096 34 2434 23 6.89349e+06 253689 618332. 2139.56 1.58 0.16748 0.145817 25762 151098 -1 1974 16 988 1317 137346 28549 3.30611 3.30611 -127.849 -3.30611 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0220162 0.0192158 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17612 1 0.03 -1 -1 30528 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 16.1 MiB 1.87 867 6563 1487 4637 439 54.8 MiB 0.06 0.00 4.47797 -127.666 -4.47797 4.47797 0.79 0.000290948 0.000266427 0.0120783 0.0110626 34 2302 19 6.89349e+06 295971 618332. 2139.56 1.26 0.0713784 0.0612348 25762 151098 -1 1991 20 1260 1682 158798 33426 3.43465 3.43465 -122.024 -3.43465 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0257813 0.0224683 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17304 1 0.03 -1 -1 30108 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.1 MiB 1.38 849 7781 1935 5506 340 54.7 MiB 0.12 0.00 3.6807 -111.961 -3.6807 3.6807 0.79 0.000643874 0.000596371 0.0305726 0.0282861 34 2149 22 6.89349e+06 239595 618332. 2139.56 1.85 0.157189 0.136548 25762 151098 -1 1845 18 1090 1524 130872 29496 3.13401 3.13401 -114.433 -3.13401 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0225864 0.0197212 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 16.4 MiB 1.79 1060 16407 4994 8930 2483 54.9 MiB 0.26 0.00 4.09068 -131.143 -4.09068 4.09068 0.79 0.000755547 0.000698338 0.0674987 0.0624582 34 2868 25 6.89349e+06 324158 618332. 2139.56 1.95 0.220731 0.193966 25762 151098 -1 2349 21 1695 2567 243888 51563 3.23296 3.23296 -123.491 -3.23296 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0302385 0.0264265 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 16.6 MiB 1.70 1222 15298 4935 8519 1844 55.1 MiB 0.24 0.00 5.57191 -161.898 -5.57191 5.57191 0.79 0.000779248 0.000720383 0.0636055 0.0588071 36 2787 20 6.89349e+06 338252 648988. 2245.63 1.87 0.180885 0.159688 26050 158493 -1 2471 21 1644 2293 218877 43654 4.48145 4.48145 -153.522 -4.48145 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0308966 0.0270236 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30424 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55840 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 16.1 MiB 1.69 847 11909 3522 6229 2158 54.5 MiB 0.14 0.00 3.19582 -98.7926 -3.19582 3.19582 0.82 0.000588003 0.000543953 0.0431956 0.0399967 34 1996 21 6.89349e+06 253689 618332. 2139.56 1.51 0.157943 0.13792 25762 151098 -1 1687 20 999 1417 122855 26518 2.97046 2.97046 -99.9161 -2.97046 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.024451 0.0212988 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 16.6 MiB 1.93 1270 15103 4761 8086 2256 55.1 MiB 0.24 0.00 4.1162 -136.486 -4.1162 4.1162 0.89 0.000783599 0.000724792 0.0630786 0.0583099 38 2902 23 6.89349e+06 338252 678818. 2348.85 2.01 0.219404 0.19264 26626 170182 -1 2643 21 2009 3247 300586 59062 3.57525 3.57525 -132.089 -3.57525 0 0 902133. 3121.57 0.27 0.11 0.17 -1 -1 0.27 0.0319993 0.0279861 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 16.5 MiB 1.70 1061 15017 4935 7452 2630 54.9 MiB 0.21 0.00 4.12104 -133.123 -4.12104 4.12104 0.79 0.00074761 0.000692248 0.0618783 0.0573104 34 2751 22 6.89349e+06 310065 618332. 2139.56 1.72 0.175169 0.154659 25762 151098 -1 2301 19 1459 2161 208814 44093 2.98516 2.98516 -119.03 -2.98516 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.02754 0.0241013 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30308 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 16.5 MiB 1.53 1121 14407 4796 7561 2050 54.9 MiB 0.21 0.00 3.60799 -127.319 -3.60799 3.60799 0.78 0.000710158 0.000656883 0.0574978 0.053196 36 2473 41 6.89349e+06 295971 648988. 2245.63 2.16 0.216594 0.189517 26050 158493 -1 2243 19 1528 2068 189669 38790 3.15176 3.15176 -122.813 -3.15176 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.026247 0.0229387 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.12 17204 1 0.03 -1 -1 30108 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55844 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 16.0 MiB 0.92 565 9205 3754 4929 522 54.5 MiB 0.09 0.00 2.67033 -85.3827 -2.67033 2.67033 0.79 0.000535769 0.000494803 0.0319756 0.0295583 40 1238 17 6.89349e+06 211408 706193. 2443.58 3.77 0.159536 0.138183 26914 176310 -1 1221 20 744 875 95593 21663 2.26447 2.26447 -85.8781 -2.26447 0 0 926341. 3205.33 0.28 0.05 0.17 -1 -1 0.28 0.0206112 0.0178911 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30420 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 16.3 MiB 1.97 986 14322 4290 8044 1988 54.8 MiB 0.19 0.00 4.76552 -144.771 -4.76552 4.76552 0.79 0.000663296 0.000613236 0.0555454 0.0514124 36 2182 23 6.89349e+06 267783 648988. 2245.63 3.85 0.234239 0.204145 26050 158493 -1 1935 20 1077 1666 155241 32652 3.72966 3.72966 -132.609 -3.72966 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0255753 0.0223127 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.14 17544 1 0.03 -1 -1 30344 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 16.6 MiB 1.01 1121 13823 3432 8585 1806 55.1 MiB 0.19 0.00 4.71322 -150.624 -4.71322 4.71322 0.79 0.000771502 0.000713493 0.0494804 0.0458004 34 2705 21 6.89349e+06 479191 618332. 2139.56 1.64 0.165167 0.145094 25762 151098 -1 2337 20 1450 2226 217266 44909 4.11354 4.11354 -144.112 -4.11354 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.028904 0.0252536 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 16.6 MiB 1.27 1277 12375 3467 7863 1045 55.1 MiB 0.21 0.00 4.43295 -138.206 -4.43295 4.43295 0.79 0.000791421 0.000732162 0.0539287 0.0499493 34 3317 28 6.89349e+06 324158 618332. 2139.56 2.32 0.188172 0.165418 25762 151098 -1 2685 23 1988 3084 282774 57936 4.1183 4.1183 -145.964 -4.1183 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0340539 0.0296836 155 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30556 -1 -1 19 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55488 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 15.6 MiB 1.09 448 11324 4682 5071 1571 54.2 MiB 0.10 0.00 2.70371 -73.039 -2.70371 2.70371 0.83 0.000473832 0.000437804 0.0341173 0.031515 36 1359 25 6.89349e+06 267783 648988. 2245.63 1.79 0.127464 0.110931 26050 158493 -1 1096 26 911 1105 115271 27252 2.27195 2.27195 -71.7362 -2.27195 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.02211 0.0190991 76 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17272 1 0.03 -1 -1 30224 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56004 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.2 MiB 0.75 989 9879 2312 6247 1320 54.7 MiB 0.15 0.01 4.42392 -127.052 -4.42392 4.42392 0.85 0.000677276 0.000627395 0.0354557 0.0327612 34 2302 20 6.89349e+06 324158 618332. 2139.56 1.68 0.165531 0.144167 25762 151098 -1 2025 19 1082 2022 175032 37394 3.92365 3.92365 -124.871 -3.92365 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0246841 0.0215642 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 17008 1 0.02 -1 -1 30100 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55420 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 15.7 MiB 0.33 477 9356 3828 5185 343 54.1 MiB 0.08 0.00 2.35052 -74.7133 -2.35052 2.35052 0.78 0.000457823 0.000421309 0.0280158 0.0257807 30 1331 30 6.89349e+06 169126 556674. 1926.21 0.91 0.0879319 0.0769543 25186 138497 -1 924 17 552 705 49755 12854 2.00476 2.00476 -72.3791 -2.00476 0 0 706193. 2443.58 0.23 0.04 0.14 -1 -1 0.23 0.0155767 0.013573 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30068 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 16.2 MiB 1.43 1046 9966 2582 6701 683 54.8 MiB 0.15 0.00 4.91481 -138.303 -4.91481 4.91481 0.79 0.000694499 0.000643219 0.0400186 0.0370579 34 2325 19 6.89349e+06 281877 618332. 2139.56 1.62 0.172452 0.150739 25762 151098 -1 1962 18 957 1429 114565 25342 3.57006 3.57006 -122.351 -3.57006 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0253543 0.0223255 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17232 1 0.03 -1 -1 30564 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.1 MiB 0.64 1030 18239 5331 10544 2364 54.7 MiB 0.23 0.00 3.48935 -111.917 -3.48935 3.48935 0.79 0.000690312 0.00063866 0.0606289 0.0560412 30 2225 23 6.89349e+06 436909 556674. 1926.21 1.09 0.144317 0.128013 25186 138497 -1 1880 19 972 1696 128016 27044 2.60651 2.60651 -101.777 -2.60651 0 0 706193. 2443.58 0.23 0.07 0.15 -1 -1 0.23 0.0255915 0.0223903 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 16.5 MiB 1.93 1031 15255 4057 8092 3106 54.9 MiB 0.22 0.00 4.82008 -133.501 -4.82008 4.82008 0.78 0.000743675 0.000687603 0.0615408 0.0569308 34 3081 28 6.89349e+06 324158 618332. 2139.56 2.10 0.217158 0.190335 25762 151098 -1 2359 19 1593 2434 199578 46789 4.07706 4.07706 -131.861 -4.07706 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0275542 0.0241343 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 16.2 MiB 1.52 1042 13556 4378 7182 1996 54.8 MiB 0.17 0.00 3.7536 -126.104 -3.7536 3.7536 0.78 0.000659006 0.000610204 0.0529039 0.0489095 34 2374 27 6.89349e+06 239595 618332. 2139.56 1.77 0.186209 0.162866 25762 151098 -1 2140 22 1280 1823 189398 39167 3.13396 3.13396 -122.884 -3.13396 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0271644 0.0236456 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30500 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 16.2 MiB 1.59 868 13092 4092 7012 1988 54.7 MiB 0.17 0.00 4.03552 -117.607 -4.03552 4.03552 0.79 0.000626523 0.000580483 0.0496668 0.0459835 34 2199 20 6.89349e+06 239595 618332. 2139.56 1.60 0.16854 0.147307 25762 151098 -1 1919 19 946 1553 148941 30971 3.3025 3.3025 -115.099 -3.3025 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0228258 0.0198812 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17216 1 0.03 -1 -1 30116 -1 -1 20 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 16.2 MiB 1.44 757 6960 1669 4834 457 54.6 MiB 0.11 0.00 4.17394 -114.526 -4.17394 4.17394 0.78 0.000605943 0.000561059 0.0263801 0.0244561 30 2118 23 6.89349e+06 281877 556674. 1926.21 1.07 0.0999092 0.0874194 25186 138497 -1 1614 16 923 1562 111332 23948 3.11125 3.11125 -106.205 -3.11125 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0196945 0.017232 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17072 1 0.03 -1 -1 30348 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55832 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 15.8 MiB 0.57 835 13031 3792 7568 1671 54.5 MiB 0.16 0.00 3.90738 -121.629 -3.90738 3.90738 0.79 0.000618711 0.000571557 0.0479406 0.0443231 30 2112 18 6.89349e+06 239595 556674. 1926.21 2.40 0.18801 0.163958 25186 138497 -1 1789 21 1103 1892 145578 31191 2.82006 2.82006 -112.77 -2.82006 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0246104 0.0213905 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 30112 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55964 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 16.2 MiB 1.37 912 9006 2499 5943 564 54.7 MiB 0.11 0.00 3.63671 -112.55 -3.63671 3.63671 0.82 0.000464283 0.000416813 0.0249435 0.0227055 30 2225 23 6.89349e+06 253689 556674. 1926.21 1.06 0.101277 0.0880708 25186 138497 -1 1877 17 967 1423 107801 23900 2.92736 2.92736 -111.081 -2.92736 0 0 706193. 2443.58 0.25 0.06 0.14 -1 -1 0.25 0.0218741 0.0191501 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30360 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55948 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 16.1 MiB 1.61 982 10163 2807 6505 851 54.6 MiB 0.14 0.00 3.48715 -105.954 -3.48715 3.48715 0.81 0.000650707 0.000602578 0.0390931 0.0361987 36 2182 23 6.89349e+06 310065 648988. 2245.63 1.80 0.162134 0.141104 26050 158493 -1 1893 18 1075 1497 132676 28135 2.53636 2.53636 -101.771 -2.53636 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0231092 0.0201407 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30432 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 16.7 MiB 1.43 1339 15137 4138 9246 1753 55.2 MiB 0.26 0.01 4.47915 -132.321 -4.47915 4.47915 0.82 0.00260183 0.00242615 0.0701298 0.0648628 34 3051 48 6.89349e+06 352346 618332. 2139.56 2.19 0.255644 0.224598 25762 151098 -1 2486 14 1264 2001 159776 34161 3.71566 3.71566 -127.87 -3.71566 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0238398 0.0210356 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.18 17620 1 0.03 -1 -1 30220 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 16.6 MiB 1.79 1289 13933 4065 8243 1625 55.1 MiB 0.24 0.00 4.58977 -156.464 -4.58977 4.58977 0.74 0.000824635 0.000763012 0.0615789 0.0569863 36 3058 26 6.89349e+06 338252 648988. 2245.63 2.00 0.228083 0.200247 26050 158493 -1 2714 20 2098 2952 287483 58492 3.68805 3.68805 -147.233 -3.68805 0 0 828058. 2865.25 0.30 0.11 0.15 -1 -1 0.30 0.0328097 0.0288112 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17328 1 0.03 -1 -1 30052 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.2 MiB 1.07 765 12506 3068 7484 1954 54.7 MiB 0.16 0.00 3.98848 -116.551 -3.98848 3.98848 0.78 0.000649244 0.000600884 0.0482202 0.0446537 34 2023 27 6.89349e+06 253689 618332. 2139.56 1.63 0.153674 0.134832 25762 151098 -1 1804 21 1273 1965 195807 41775 3.00756 3.00756 -110.762 -3.00756 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.025521 0.0221609 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.19 17528 1 0.03 -1 -1 30412 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 16.6 MiB 1.91 1249 10813 2744 7185 884 55.1 MiB 0.18 0.01 4.24063 -135.696 -4.24063 4.24063 0.78 0.000792452 0.000733154 0.0460442 0.0426143 34 3168 46 6.89349e+06 352346 618332. 2139.56 2.00 0.231036 0.201288 25762 151098 -1 2556 18 1541 2256 224074 45084 3.65835 3.65835 -135.604 -3.65835 0 0 787024. 2723.27 0.22 0.05 0.10 -1 -1 0.22 0.0143217 0.0126485 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30436 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 16.6 MiB 2.26 1247 16273 5220 8383 2670 55.3 MiB 0.28 0.01 5.45989 -162.138 -5.45989 5.45989 0.79 0.000800465 0.000740703 0.0695827 0.0644115 36 3297 30 6.89349e+06 352346 648988. 2245.63 2.55 0.237403 0.208478 26050 158493 -1 2695 21 1897 2794 281166 55567 4.76158 4.76158 -162.233 -4.76158 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0320188 0.0280502 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30420 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 16.6 MiB 2.02 1201 15298 5197 6778 3323 55.1 MiB 0.23 0.01 5.99918 -171.098 -5.99918 5.99918 0.78 0.000805915 0.00074581 0.0660523 0.0611661 36 3654 35 6.89349e+06 352346 648988. 2245.63 3.47 0.246265 0.21624 26050 158493 -1 2564 21 1793 2652 231705 51179 5.15654 5.15654 -165.565 -5.15654 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0325435 0.0284969 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30380 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 16.5 MiB 1.84 1173 16983 5747 8489 2747 55.2 MiB 0.27 0.00 4.05378 -126.496 -4.05378 4.05378 0.78 0.000768165 0.000706976 0.0704729 0.0652408 34 3035 25 6.89349e+06 338252 618332. 2139.56 1.78 0.188965 0.167033 25762 151098 -1 2528 20 1842 2683 245407 51883 3.15186 3.15186 -119.284 -3.15186 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0293844 0.0257187 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30432 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 16.2 MiB 1.71 909 14358 5137 7007 2214 54.8 MiB 0.19 0.00 4.5826 -118.27 -4.5826 4.5826 0.79 0.0006734 0.000622953 0.0547396 0.0506581 34 2734 45 6.89349e+06 281877 618332. 2139.56 2.10 0.20962 0.183061 25762 151098 -1 2078 24 1228 1796 184414 39176 3.7789 3.7789 -115.84 -3.7789 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0298904 0.0259676 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17900 1 0.03 -1 -1 30548 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 17.0 MiB 1.96 1620 14567 4267 9425 875 55.5 MiB 0.27 0.01 5.31355 -171.75 -5.31355 5.31355 0.78 0.000947098 0.000878219 0.0670329 0.0621441 36 4072 23 6.89349e+06 436909 648988. 2245.63 3.28 0.267724 0.235471 26050 158493 -1 3370 20 2494 3810 363649 72258 4.50875 4.50875 -166.78 -4.50875 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.0363667 0.031859 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17500 1 0.03 -1 -1 30140 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55880 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 16.1 MiB 1.44 935 8481 2198 5465 818 54.6 MiB 0.12 0.00 3.78206 -112.802 -3.78206 3.78206 0.78 0.000613863 0.000567971 0.0316809 0.029315 34 2160 17 6.89349e+06 253689 618332. 2139.56 1.45 0.118905 0.103896 25762 151098 -1 2004 20 1186 1621 152392 32274 2.85716 2.85716 -106.558 -2.85716 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0240979 0.0210015 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30252 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 16.5 MiB 1.29 1159 12749 3392 7336 2021 54.9 MiB 0.20 0.00 4.75882 -144.088 -4.75882 4.75882 0.79 0.000747257 0.000692369 0.0528251 0.0489424 30 3089 23 6.89349e+06 324158 556674. 1926.21 1.14 0.143118 0.126792 25186 138497 -1 2397 17 1368 2101 181011 35793 4.0599 4.0599 -133.7 -4.0599 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0255219 0.0224466 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30220 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 16.5 MiB 1.90 1195 16023 5389 8481 2153 55.2 MiB 0.25 0.00 4.23925 -128.06 -4.23925 4.23925 0.79 0.00076514 0.000708198 0.0664016 0.0614939 36 2899 23 6.89349e+06 324158 648988. 2245.63 2.32 0.218053 0.191636 26050 158493 -1 2493 21 1379 2266 219413 45856 3.78085 3.78085 -128.303 -3.78085 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0303994 0.0265721 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30104 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.1 MiB 0.54 1056 13758 4414 7436 1908 54.7 MiB 0.20 0.00 4.26729 -130.845 -4.26729 4.26729 0.79 0.00068374 0.000631899 0.0492913 0.0455803 30 2439 19 6.89349e+06 366440 556674. 1926.21 1.01 0.127679 0.113024 25186 138497 -1 2178 17 1084 1982 179895 35124 3.4587 3.4587 -124.08 -3.4587 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0229941 0.0201146 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 16.6 MiB 1.57 1207 10455 2579 6753 1123 55.1 MiB 0.20 0.00 4.44301 -131.225 -4.44301 4.44301 0.79 0.000762989 0.000705895 0.0477428 0.0441753 36 2530 28 6.89349e+06 324158 648988. 2245.63 2.08 0.205045 0.179197 26050 158493 -1 2334 19 1387 1968 179068 36516 3.02916 3.02916 -118.026 -3.02916 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0281691 0.0246116 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 16.7 MiB 1.97 1187 14518 4859 6825 2834 55.3 MiB 0.23 0.01 4.27293 -132.833 -4.27293 4.27293 0.79 0.000777275 0.000713937 0.0603512 0.0558102 36 2917 26 6.89349e+06 338252 648988. 2245.63 3.97 0.284966 0.248147 26050 158493 -1 2424 20 1565 2391 193078 42305 3.64125 3.64125 -128.972 -3.64125 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0302256 0.0264641 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17588 1 0.03 -1 -1 30440 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 16.7 MiB 1.73 1246 9336 2230 6513 593 55.3 MiB 0.19 0.01 4.12904 -136.238 -4.12904 4.12904 0.79 0.000813798 0.000753404 0.0404248 0.0374188 34 3453 26 6.89349e+06 366440 618332. 2139.56 2.15 0.205772 0.17945 25762 151098 -1 2648 22 1898 2627 237765 50821 3.23311 3.23311 -127.805 -3.23311 0 0 787024. 2723.27 0.26 0.10 0.15 -1 -1 0.26 0.0337495 0.0295258 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17492 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 16.2 MiB 1.42 1001 8641 2091 5830 720 54.8 MiB 0.13 0.00 4.50695 -131.282 -4.50695 4.50695 0.87 0.000709664 0.000656266 0.0271588 0.0248211 34 2525 20 6.89349e+06 295971 618332. 2139.56 1.68 0.16123 0.139918 25762 151098 -1 2138 19 1171 1796 149066 33377 3.94276 3.94276 -129.585 -3.94276 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0255807 0.0223363 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.3 MiB 1.47 1119 14450 4565 7826 2059 54.9 MiB 0.21 0.00 4.84598 -139.753 -4.84598 4.84598 0.78 0.000721487 0.000667465 0.0571194 0.0528397 34 2671 46 6.89349e+06 310065 618332. 2139.56 2.09 0.226812 0.198815 25762 151098 -1 2321 20 1429 2038 210418 42638 3.73036 3.73036 -129.617 -3.73036 0 0 787024. 2723.27 0.28 0.09 0.18 -1 -1 0.28 0.0283727 0.0248514 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.21 17744 1 0.03 -1 -1 30368 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 16.6 MiB 1.18 1292 15447 4870 8199 2378 55.1 MiB 0.25 0.01 4.72898 -145.597 -4.72898 4.72898 0.79 0.000792465 0.00073378 0.0664152 0.0614989 34 3387 32 6.89349e+06 338252 618332. 2139.56 1.92 0.233671 0.205042 25762 151098 -1 2716 21 1560 2468 240857 47709 3.7643 3.7643 -137.875 -3.7643 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.031742 0.0277481 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.22 17824 1 0.03 -1 -1 30244 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 16.6 MiB 2.19 1374 13553 4031 8630 892 55.2 MiB 0.20 0.00 4.3848 -136.299 -4.3848 4.3848 0.63 0.000815473 0.000754545 0.0469191 0.0432832 36 3611 23 6.89349e+06 352346 648988. 2245.63 2.55 0.208559 0.182131 26050 158493 -1 3107 22 2148 3175 333393 64914 3.7649 3.7649 -135.968 -3.7649 0 0 828058. 2865.25 0.30 0.12 0.16 -1 -1 0.30 0.0326093 0.0284805 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30160 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55844 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 15.8 MiB 1.41 841 8022 2262 5194 566 54.5 MiB 0.11 0.00 3.56029 -109.346 -3.56029 3.56029 0.79 0.00060789 0.000562375 0.0307286 0.0284279 36 1879 21 6.89349e+06 211408 648988. 2245.63 1.79 0.148004 0.128479 26050 158493 -1 1766 18 852 1314 115264 25455 2.63981 2.63981 -99.9879 -2.63981 0 0 828058. 2865.25 0.23 0.03 0.10 -1 -1 0.23 0.0110726 0.00973233 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30364 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 16.6 MiB 1.16 1155 11979 3435 7133 1411 55.0 MiB 0.19 0.00 4.30741 -149.256 -4.30741 4.30741 0.78 0.000733299 0.000677411 0.0502075 0.0463894 34 2798 41 6.89349e+06 281877 618332. 2139.56 1.90 0.214419 0.186871 25762 151098 -1 2317 20 1881 2526 236930 48455 3.4952 3.4952 -141.789 -3.4952 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0280315 0.0244733 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.17 17764 1 0.03 -1 -1 30300 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 16.6 MiB 1.73 1337 12167 3186 7820 1161 55.2 MiB 0.23 0.00 5.53202 -162.159 -5.53202 5.53202 0.78 0.000841096 0.000778639 0.0547798 0.0507612 34 3541 44 6.89349e+06 352346 618332. 2139.56 2.16 0.24949 0.218363 25762 151098 -1 2988 22 1999 3161 283539 58507 4.6899 4.6899 -161.719 -4.6899 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0348315 0.0305423 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17468 1 0.04 -1 -1 30480 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 16.4 MiB 1.66 981 15773 5650 7566 2557 54.8 MiB 0.24 0.00 4.48922 -138.529 -4.48922 4.48922 0.78 0.00075233 0.000695365 0.0655043 0.0606305 36 2731 25 6.89349e+06 310065 648988. 2245.63 2.27 0.220312 0.193627 26050 158493 -1 2216 20 1657 2295 215721 46661 3.15446 3.15446 -123.423 -3.15446 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0289891 0.0253723 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17204 1 0.03 -1 -1 30388 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 16.1 MiB 1.25 892 10781 3144 6961 676 54.7 MiB 0.15 0.00 4.18863 -126.692 -4.18863 4.18863 0.87 0.000644825 0.000593561 0.0366086 0.0338642 34 2225 40 6.89349e+06 380534 618332. 2139.56 1.81 0.151136 0.131831 25762 151098 -1 1876 19 1123 1724 156301 33699 3.23935 3.23935 -118.319 -3.23935 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0235502 0.0204863 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 18028 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 17.0 MiB 2.79 1573 16207 5526 8946 1735 55.7 MiB 0.31 0.01 6.36902 -185.345 -6.36902 6.36902 0.81 0.000812384 0.000763076 0.0730101 0.0675712 36 3708 43 6.89349e+06 380534 648988. 2245.63 4.52 0.360222 0.314286 26050 158493 -1 3055 20 2226 3590 322328 64675 5.07229 5.07229 -173.869 -5.07229 0 0 828058. 2865.25 0.27 0.11 0.16 -1 -1 0.27 0.0350168 0.0306582 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 16.3 MiB 1.25 1035 15151 5099 7891 2161 55.0 MiB 0.22 0.00 4.71732 -144.131 -4.71732 4.71732 0.79 0.000748248 0.000692027 0.0633193 0.0586024 34 2593 25 6.89349e+06 295971 618332. 2139.56 1.67 0.213193 0.187431 25762 151098 -1 2111 21 1539 2185 178777 38646 3.76686 3.76686 -133.698 -3.76686 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0296067 0.0258628 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17216 1 0.03 -1 -1 30504 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 15.8 MiB 0.50 851 9838 2581 6658 599 54.4 MiB 0.12 0.00 3.70876 -106.292 -3.70876 3.70876 0.78 0.000580032 0.000537063 0.0309851 0.0286626 26 2052 29 6.89349e+06 338252 503264. 1741.40 1.23 0.10683 0.0934846 24322 120374 -1 1860 49 1327 2210 662031 396460 3.06361 3.06361 -108.905 -3.06361 0 0 618332. 2139.56 0.21 0.25 0.12 -1 -1 0.21 0.0474681 0.0407485 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17588 1 0.03 -1 -1 30068 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 16.6 MiB 1.62 1097 14679 5479 6928 2272 55.1 MiB 0.22 0.00 5.34057 -137.648 -5.34057 5.34057 0.78 0.000781575 0.000723987 0.0625399 0.0579186 36 2898 29 6.89349e+06 324158 648988. 2245.63 3.87 0.26699 0.233296 26050 158493 -1 2343 22 1283 2430 208993 44115 4.31715 4.31715 -136.909 -4.31715 0 0 828058. 2865.25 0.26 0.09 0.13 -1 -1 0.26 0.0310083 0.0272802 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17156 1 0.03 -1 -1 30168 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.0 MiB 0.57 790 8543 2077 5745 721 54.6 MiB 0.07 0.00 3.60525 -112.744 -3.60525 3.60525 0.72 0.000262032 0.000239338 0.013582 0.0123843 34 1965 20 6.89349e+06 267783 618332. 2139.56 1.46 0.129943 0.111838 25762 151098 -1 1867 18 1136 1994 182191 38924 2.89096 2.89096 -110.716 -2.89096 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0213217 0.0186103 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.14 17600 1 0.03 -1 -1 30480 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 16.0 MiB 1.16 900 11118 2938 7199 981 54.5 MiB 0.17 0.00 4.05078 -116.815 -4.05078 4.05078 0.78 0.000642528 0.000595002 0.0424723 0.0393539 34 2166 46 6.89349e+06 281877 618332. 2139.56 1.83 0.191232 0.166366 25762 151098 -1 1864 15 1106 1550 148460 31964 3.00716 3.00716 -111.504 -3.00716 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0197562 0.0173049 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.16 17824 1 0.03 -1 -1 30396 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 16.6 MiB 2.66 1189 14871 4290 8850 1731 55.1 MiB 0.23 0.00 4.52181 -133.377 -4.52181 4.52181 0.81 0.000756778 0.000700255 0.0609176 0.0563731 34 2898 45 6.89349e+06 366440 618332. 2139.56 1.89 0.235181 0.205784 25762 151098 -1 2270 18 1429 2066 166279 36344 3.52234 3.52234 -123.546 -3.52234 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0270919 0.0237525 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 16.6 MiB 1.73 1209 16340 4806 9520 2014 55.0 MiB 0.25 0.00 5.15268 -160.098 -5.15268 5.15268 0.78 0.000769149 0.000710734 0.0695867 0.0644063 36 2870 26 6.89349e+06 310065 648988. 2245.63 2.15 0.226832 0.199366 26050 158493 -1 2482 19 1599 2344 226236 45501 4.21705 4.21705 -150.98 -4.21705 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0287313 0.0251904 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 16.5 MiB 1.39 1151 8919 1954 6160 805 54.9 MiB 0.16 0.00 5.44797 -153.538 -5.44797 5.44797 0.81 0.000766575 0.000709764 0.0383473 0.0355161 38 2766 21 6.89349e+06 324158 678818. 2348.85 4.11 0.242164 0.210951 26626 170182 -1 2470 19 1608 2451 241684 48348 4.56669 4.56669 -149.824 -4.56669 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0283655 0.0248202 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.12 17400 1 0.03 -1 -1 30336 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55980 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.2 MiB 1.43 948 12416 4023 6894 1499 54.7 MiB 0.17 0.00 4.44301 -126.97 -4.44301 4.44301 0.78 0.00064536 0.000597283 0.0491732 0.0455155 32 2425 31 6.89349e+06 211408 586450. 2029.24 1.56 0.150356 0.132081 25474 144626 -1 2070 18 1101 1550 193559 45742 3.30235 3.30235 -117.204 -3.30235 0 0 744469. 2576.02 0.25 0.07 0.15 -1 -1 0.25 0.018892 0.0165706 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30360 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 16.4 MiB 1.41 1059 14483 4851 7224 2408 55.0 MiB 0.19 0.00 3.67535 -124.181 -3.67535 3.67535 0.78 0.000695666 0.00064299 0.0582178 0.0538498 34 2620 21 6.89349e+06 281877 618332. 2139.56 1.78 0.19636 0.172313 25762 151098 -1 2184 20 1565 2177 190861 40408 3.15235 3.15235 -122.228 -3.15235 0 0 787024. 2723.27 0.26 0.08 0.15 -1 -1 0.26 0.0254806 0.0224468 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17724 1 0.03 -1 -1 30348 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 16.5 MiB 1.85 1024 15493 4307 9520 1666 54.9 MiB 0.21 0.00 3.806 -108.658 -3.806 3.806 0.78 0.000716285 0.000662887 0.0594073 0.0549874 34 2511 22 6.89349e+06 366440 618332. 2139.56 1.76 0.169642 0.149584 25762 151098 -1 1996 18 1308 2013 164221 35650 3.36441 3.36441 -112.814 -3.36441 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0256069 0.0224361 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17572 1 0.02 -1 -1 30376 -1 -1 23 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55868 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 16.0 MiB 1.05 918 12323 3941 6490 1892 54.6 MiB 0.15 0.00 4.39675 -112.391 -4.39675 4.39675 0.78 0.000636818 0.00058998 0.0456617 0.0422935 34 2258 19 6.89349e+06 324158 618332. 2139.56 1.54 0.167335 0.146281 25762 151098 -1 1875 18 983 1637 145509 29659 3.49006 3.49006 -108.345 -3.49006 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0230519 0.0200668 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30528 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 16.1 MiB 2.08 924 9083 2508 6037 538 54.7 MiB 0.15 0.00 4.56532 -133.276 -4.56532 4.56532 0.78 0.000692033 0.000640556 0.0371386 0.0343747 34 2691 25 6.89349e+06 295971 618332. 2139.56 2.10 0.175647 0.152952 25762 151098 -1 2178 21 1788 2503 248736 50810 3.84214 3.84214 -135.517 -3.84214 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0275038 0.0239505 130 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17840 1 0.03 -1 -1 30112 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 16.6 MiB 1.79 1216 6123 1500 4259 364 55.0 MiB 0.12 0.00 3.91264 -134.898 -3.91264 3.91264 0.78 0.000733018 0.000678466 0.0265492 0.0245904 36 2678 28 6.89349e+06 281877 648988. 2245.63 2.33 0.174895 0.151663 26050 158493 -1 2324 19 1558 2116 208436 41862 3.07466 3.07466 -123.771 -3.07466 0 0 828058. 2865.25 0.25 0.08 0.16 -1 -1 0.25 0.0268836 0.0235179 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17336 1 0.03 -1 -1 30488 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.2 MiB 0.64 941 8614 1787 6108 719 54.8 MiB 0.14 0.00 4.73282 -132.206 -4.73282 4.73282 0.80 0.0006877 0.000637288 0.0303985 0.0281524 30 2253 29 6.89349e+06 436909 556674. 1926.21 1.02 0.120892 0.106141 25186 138497 -1 1946 18 932 1745 124139 28347 3.40035 3.40035 -117.828 -3.40035 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0242024 0.0211526 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.11 17768 1 0.03 -1 -1 30548 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 16.5 MiB 1.84 946 14295 4865 6147 3283 55.2 MiB 0.20 0.00 4.80372 -148.142 -4.80372 4.80372 0.78 0.000746832 0.000688696 0.0597249 0.0552179 38 2688 28 6.89349e+06 324158 678818. 2348.85 2.74 0.221066 0.193767 26626 170182 -1 2147 16 1387 2074 176201 39433 4.0871 4.0871 -141.421 -4.0871 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0250763 0.0220831 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.18 17620 1 0.03 -1 -1 30488 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 16.5 MiB 1.61 1348 15391 4691 8221 2479 55.0 MiB 0.25 0.01 5.48061 -170.804 -5.48061 5.48061 0.86 0.000819204 0.000758269 0.0587272 0.0541853 36 2943 34 6.89349e+06 380534 648988. 2245.63 2.31 0.203345 0.178467 26050 158493 -1 2538 20 1840 2654 239893 50547 4.38925 4.38925 -155.569 -4.38925 0 0 828058. 2865.25 0.26 0.10 0.15 -1 -1 0.26 0.0314555 0.0275201 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30348 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 16.7 MiB 1.71 1348 16572 5279 8759 2534 55.3 MiB 0.27 0.00 4.59633 -149.535 -4.59633 4.59633 0.79 0.000810514 0.000749843 0.0695477 0.0643419 36 3155 34 6.89349e+06 366440 648988. 2245.63 2.62 0.248008 0.218188 26050 158493 -1 2683 20 1761 2621 275602 53917 3.6673 3.6673 -137.527 -3.6673 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0317879 0.0278947 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30248 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 16.0 MiB 1.61 929 11603 3304 7249 1050 54.5 MiB 0.17 0.00 4.22559 -126.079 -4.22559 4.22559 0.79 0.000634364 0.000587572 0.0427523 0.0396032 34 2271 23 6.89349e+06 295971 618332. 2139.56 1.71 0.167829 0.146536 25762 151098 -1 1980 18 1068 1494 146883 30253 3.09191 3.09191 -114.049 -3.09191 0 0 787024. 2723.27 0.27 0.07 0.15 -1 -1 0.27 0.0243782 0.0212432 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17612 1 0.03 -1 -1 30476 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 16.7 MiB 2.29 1157 9838 2412 6479 947 55.2 MiB 0.17 0.00 5.48387 -163.439 -5.48387 5.48387 0.78 0.00079267 0.000733334 0.042594 0.0394109 34 2929 25 6.89349e+06 366440 618332. 2139.56 1.75 0.20134 0.175549 25762 151098 -1 2373 18 1808 2501 225708 47079 4.40345 4.40345 -157.52 -4.40345 0 0 787024. 2723.27 0.29 0.10 0.15 -1 -1 0.29 0.034313 0.0306582 162 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17488 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 16.6 MiB 1.14 1128 9303 2368 6110 825 55.0 MiB 0.16 0.00 5.14805 -150.89 -5.14805 5.14805 0.78 0.000754746 0.000698754 0.0378461 0.0350134 34 2762 23 6.89349e+06 324158 618332. 2139.56 2.10 0.186059 0.162423 25762 151098 -1 2410 23 1815 3085 298518 62575 4.2958 4.2958 -144.727 -4.2958 0 0 787024. 2723.27 0.25 0.11 0.11 -1 -1 0.25 0.0319822 0.0279197 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.15 17636 1 0.03 -1 -1 30376 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 16.4 MiB 1.65 1160 14828 4291 8520 2017 54.8 MiB 0.22 0.00 5.04939 -147.832 -5.04939 5.04939 0.78 0.000741436 0.000686088 0.0605709 0.056045 34 2794 26 6.89349e+06 324158 618332. 2139.56 1.77 0.211135 0.185279 25762 151098 -1 2198 19 1418 2085 164236 36013 4.19685 4.19685 -142.279 -4.19685 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0275657 0.0241475 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.16 17544 1 0.03 -1 -1 30532 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 16.6 MiB 1.76 1280 15731 5729 7457 2545 55.1 MiB 0.25 0.00 4.67272 -140.819 -4.67272 4.67272 0.78 0.000789187 0.000730586 0.0653933 0.0605646 36 2924 44 6.89349e+06 380534 648988. 2245.63 2.60 0.247591 0.217015 26050 158493 -1 2490 18 1653 2406 211382 43712 3.71799 3.71799 -132.766 -3.71799 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.028355 0.0248901 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17592 1 0.02 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 16.6 MiB 2.57 1143 12183 3367 8279 537 55.1 MiB 0.21 0.00 5.41467 -156.077 -5.41467 5.41467 0.78 0.000784236 0.000725485 0.0522658 0.0483433 36 2977 21 6.89349e+06 324158 648988. 2245.63 3.89 0.265689 0.231795 26050 158493 -1 2412 19 1715 2519 209627 45247 4.58675 4.58675 -151.472 -4.58675 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0290992 0.0255145 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17472 1 0.03 -1 -1 30276 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 16.7 MiB 1.62 1279 8047 1945 5583 519 55.3 MiB 0.16 0.01 4.65125 -137.416 -4.65125 4.65125 0.78 0.000798583 0.000739808 0.0342506 0.0317813 34 3210 50 6.89349e+06 422815 618332. 2139.56 1.79 0.187347 0.162906 25762 151098 -1 2563 20 1687 2308 201096 43031 3.50286 3.50286 -125.623 -3.50286 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0302962 0.0264873 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.16 17276 1 0.02 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 15.8 MiB 0.47 782 13906 5117 6523 2266 54.4 MiB 0.17 0.00 4.15903 -122.769 -4.15903 4.15903 0.76 0.000602473 0.000557561 0.0503165 0.0465922 30 1858 34 6.89349e+06 239595 556674. 1926.21 1.00 0.133986 0.118367 25186 138497 -1 1598 21 873 1422 107736 23996 2.87686 2.87686 -109.351 -2.87686 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0239033 0.0208039 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30308 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 16.6 MiB 1.51 1307 13157 3552 8195 1410 55.1 MiB 0.22 0.00 5.64852 -169.418 -5.64852 5.64852 0.79 0.000797558 0.000737742 0.0550823 0.0509861 34 3303 46 6.89349e+06 352346 618332. 2139.56 2.25 0.205895 0.180527 25762 151098 -1 2630 19 1847 2519 248851 50878 4.6276 4.6276 -160.319 -4.6276 0 0 787024. 2723.27 0.25 0.09 0.12 -1 -1 0.25 0.0283992 0.0249708 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30344 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 16.7 MiB 2.75 1377 7415 1651 5387 377 55.3 MiB 0.16 0.01 5.30157 -175.126 -5.30157 5.30157 0.78 0.00083642 0.000770584 0.0340109 0.0314804 36 3400 28 6.89349e+06 352346 648988. 2245.63 2.35 0.208441 0.181387 26050 158493 -1 2918 21 2080 2984 318649 62006 4.49619 4.49619 -168.451 -4.49619 0 0 828058. 2865.25 0.28 0.11 0.16 -1 -1 0.28 0.0322282 0.0284055 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 30032 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55808 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 16.0 MiB 2.17 743 12720 4130 6895 1695 54.5 MiB 0.16 0.00 4.14342 -113.505 -4.14342 4.14342 0.79 0.00062575 0.000578156 0.0468576 0.0433278 34 2134 32 6.89349e+06 253689 618332. 2139.56 3.30 0.237932 0.206247 25762 151098 -1 1688 17 942 1253 118325 26644 2.86816 2.86816 -102.729 -2.86816 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0216047 0.0188801 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17216 1 0.03 -1 -1 30344 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.0 MiB 0.49 706 7823 1736 5421 666 54.6 MiB 0.12 0.00 4.10083 -117.838 -4.10083 4.10083 0.79 0.000597661 0.000552934 0.028388 0.0262913 30 1868 20 6.89349e+06 281877 556674. 1926.21 0.96 0.0979684 0.0858732 25186 138497 -1 1612 19 954 1595 113373 24932 2.86611 2.86611 -106.175 -2.86611 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0220792 0.0192057 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30596 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.5 MiB 1.71 1103 13719 4794 6980 1945 54.9 MiB 0.22 0.00 4.58942 -145.059 -4.58942 4.58942 0.79 0.000762849 0.000705892 0.057349 0.0531048 34 2793 23 6.89349e+06 324158 618332. 2139.56 1.94 0.209696 0.183736 25762 151098 -1 2438 18 1670 2403 241102 48275 3.96665 3.96665 -143.731 -3.96665 0 0 787024. 2723.27 0.24 0.09 0.10 -1 -1 0.24 0.0270915 0.0237505 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.14 17600 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 16.7 MiB 1.61 1083 8919 2056 5474 1389 55.1 MiB 0.14 0.00 4.89424 -142.728 -4.89424 4.89424 0.79 0.000770001 0.000711051 0.0381642 0.0353062 34 2874 33 6.89349e+06 324158 618332. 2139.56 2.06 0.201887 0.175618 25762 151098 -1 2297 20 1524 2218 195852 43464 4.54369 4.54369 -143.657 -4.54369 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0296494 0.0259551 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17348 1 0.03 -1 -1 30192 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.6 MiB 0.63 1033 19356 5199 10890 3267 55.0 MiB 0.27 0.01 5.32917 -146.087 -5.32917 5.32917 0.82 0.000614667 0.000561518 0.0526885 0.0481426 28 3392 46 6.89349e+06 507378 531479. 1839.03 7.11 0.280401 0.244989 24610 126494 -1 2612 28 2502 4620 496154 131216 4.58844 4.58844 -154.062 -4.58844 0 0 648988. 2245.63 0.22 0.16 0.13 -1 -1 0.22 0.0390661 0.0340282 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17544 1 0.03 -1 -1 30092 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 16.5 MiB 1.28 1151 13143 3782 7948 1413 54.9 MiB 0.20 0.00 3.95739 -118.903 -3.95739 3.95739 0.90 0.000533548 0.000488091 0.0458955 0.0422142 34 2667 19 6.89349e+06 352346 618332. 2139.56 1.62 0.168959 0.147345 25762 151098 -1 2153 21 1641 2457 218428 45162 3.03081 3.03081 -106.049 -3.03081 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0281368 0.0245663 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30636 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 16.2 MiB 1.20 755 13768 6057 6665 1046 54.6 MiB 0.14 0.00 4.43859 -116.143 -4.43859 4.43859 0.78 0.00059421 0.000549242 0.0487611 0.0450288 34 2120 39 6.89349e+06 281877 618332. 2139.56 1.98 0.179728 0.156628 25762 151098 -1 1578 20 1087 1507 130411 28788 3.525 3.525 -112.022 -3.525 0 0 787024. 2723.27 0.34 0.07 0.15 -1 -1 0.34 0.023172 0.0203406 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 18136 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 16.7 MiB 2.50 1514 18043 5658 10071 2314 55.6 MiB 0.32 0.01 4.58581 -147.507 -4.58581 4.58581 0.78 0.000885491 0.000820675 0.0805898 0.0746341 36 3636 22 6.89349e+06 380534 648988. 2245.63 4.26 0.328217 0.287518 26050 158493 -1 3117 21 1927 3102 291831 58467 4.28325 4.28325 -146.44 -4.28325 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.035368 0.0309989 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17548 1 0.03 -1 -1 30320 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 16.6 MiB 1.67 1122 15639 4714 8375 2550 55.1 MiB 0.25 0.00 5.51467 -162.715 -5.51467 5.51467 0.78 0.000779949 0.000722276 0.0660387 0.0610961 34 2933 25 6.89349e+06 338252 618332. 2139.56 2.06 0.222258 0.195203 25762 151098 -1 2488 23 2116 2909 285758 59983 4.71389 4.71389 -158.12 -4.71389 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0335212 0.0292595 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30356 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 16.5 MiB 1.68 1207 14779 4497 8341 1941 54.9 MiB 0.22 0.00 4.36565 -143.578 -4.36565 4.36565 0.78 0.000715844 0.000661782 0.0595974 0.0551201 36 2574 44 6.89349e+06 295971 648988. 2245.63 3.93 0.278671 0.242422 26050 158493 -1 2245 18 1455 1922 178755 37114 3.7507 3.7507 -132.268 -3.7507 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0254988 0.0223425 137 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17740 1 0.03 -1 -1 30380 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 16.2 MiB 1.74 1106 13291 3686 7595 2010 54.9 MiB 0.20 0.00 5.17406 -143.598 -5.17406 5.17406 0.78 0.000725273 0.000671154 0.0542565 0.0502251 30 2759 30 6.89349e+06 295971 556674. 1926.21 1.14 0.149717 0.132335 25186 138497 -1 2198 19 1097 1615 124061 27188 3.9036 3.9036 -132.781 -3.9036 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0270251 0.0236557 135 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.16 17596 1 0.03 -1 -1 30164 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 16.6 MiB 1.65 1277 13949 4663 6540 2746 55.1 MiB 0.22 0.00 4.6119 -129.607 -4.6119 4.6119 0.79 0.00080453 0.000744716 0.0594723 0.0551087 34 3046 23 6.89349e+06 366440 618332. 2139.56 1.86 0.218166 0.191618 25762 151098 -1 2608 20 1702 2627 242952 50795 4.10556 4.10556 -129.781 -4.10556 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0309214 0.0271069 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17616 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 16.3 MiB 1.72 1057 10103 2410 7187 506 54.7 MiB 0.16 0.00 4.37294 -118.646 -4.37294 4.37294 0.78 0.000713564 0.000660463 0.040739 0.0377418 34 2806 27 6.89349e+06 338252 618332. 2139.56 1.73 0.185975 0.162124 25762 151098 -1 2177 20 1308 2155 169565 37866 3.6344 3.6344 -116.258 -3.6344 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0274316 0.0239478 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30376 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 16.6 MiB 2.14 1146 16340 5897 7961 2482 55.1 MiB 0.25 0.00 4.90628 -154.007 -4.90628 4.90628 0.81 0.000527282 0.000478379 0.0607341 0.0558784 34 3165 42 6.89349e+06 310065 618332. 2139.56 2.32 0.232969 0.204044 25762 151098 -1 2461 19 1655 2566 235885 48685 3.9288 3.9288 -143.715 -3.9288 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0284834 0.0249472 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.12 17780 1 0.03 -1 -1 30276 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 16.7 MiB 2.20 1236 16371 6869 8593 909 55.3 MiB 0.25 0.00 4.19324 -136.834 -4.19324 4.19324 0.82 0.00081924 0.000755968 0.0680164 0.0628757 36 2892 25 6.89349e+06 366440 648988. 2245.63 2.43 0.229116 0.201818 26050 158493 -1 2422 30 1993 2877 348274 98608 3.23035 3.23035 -128.251 -3.23035 0 0 828058. 2865.25 0.26 0.14 0.16 -1 -1 0.26 0.0437845 0.0381869 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 30404 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55812 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 16.1 MiB 1.14 881 7081 1573 4782 726 54.5 MiB 0.10 0.00 4.21387 -125.832 -4.21387 4.21387 0.79 0.000626704 0.00058045 0.0272924 0.0252922 34 1964 20 6.89349e+06 281877 618332. 2139.56 1.62 0.146273 0.1269 25762 151098 -1 1661 16 1087 1426 129081 27255 3.17801 3.17801 -114.411 -3.17801 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0213036 0.0187355 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 16.2 MiB 1.07 868 7770 1747 5581 442 54.8 MiB 0.13 0.00 4.24583 -126.348 -4.24583 4.24583 0.78 0.000682503 0.00063092 0.0310809 0.0287113 36 2453 27 6.89349e+06 281877 648988. 2245.63 2.07 0.1692 0.146801 26050 158493 -1 1956 23 1716 2336 226457 49334 3.76665 3.76665 -126.182 -3.76665 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0292153 0.0253963 125 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 16.4 MiB 1.30 954 15337 5910 7043 2384 54.9 MiB 0.21 0.00 4.83108 -133.604 -4.83108 4.83108 0.79 0.000730871 0.000676208 0.0623922 0.0577463 34 2786 24 6.89349e+06 310065 618332. 2139.56 2.19 0.208495 0.183048 25762 151098 -1 2085 20 1533 2273 186807 41446 3.93276 3.93276 -131.609 -3.93276 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0280752 0.0245612 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.10 17556 1 0.03 -1 -1 30404 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.1 MiB 2.47 859 12636 4650 6385 1601 54.6 MiB 0.16 0.00 4.13932 -113.849 -4.13932 4.13932 0.78 0.000610423 0.000565111 0.0468434 0.0433582 34 2166 28 6.89349e+06 267783 618332. 2139.56 1.61 0.172486 0.150582 25762 151098 -1 1770 19 961 1323 112677 26117 2.95785 2.95785 -101.925 -2.95785 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0226611 0.0197228 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30112 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 16.2 MiB 1.69 931 12898 3547 7775 1576 54.7 MiB 0.17 0.00 4.14413 -130.005 -4.14413 4.14413 0.79 0.000640376 0.000592665 0.0486285 0.0449955 34 2433 48 6.89349e+06 253689 618332. 2139.56 1.78 0.167067 0.146364 25762 151098 -1 2119 19 1326 1886 197553 40520 3.13871 3.13871 -121.88 -3.13871 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0237401 0.0206686 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.14 17760 1 0.03 -1 -1 30104 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 16.4 MiB 1.48 1223 9197 2351 6452 394 54.9 MiB 0.17 0.00 4.60737 -145.998 -4.60737 4.60737 0.78 0.000809062 0.000740517 0.0403744 0.0373515 34 2906 22 6.89349e+06 366440 618332. 2139.56 1.76 0.195876 0.170889 25762 151098 -1 2441 18 1801 2490 251764 51079 3.7069 3.7069 -138.007 -3.7069 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0282287 0.0247752 160 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30368 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 16.2 MiB 1.73 913 11088 2855 7004 1229 54.7 MiB 0.18 0.00 3.57635 -113.738 -3.57635 3.57635 0.84 0.000618061 0.000571634 0.0485915 0.0449776 30 2205 20 6.89349e+06 239595 556674. 1926.21 0.98 0.121596 0.107603 25186 138497 -1 1954 18 1044 1436 112428 24415 2.81791 2.81791 -108.078 -2.81791 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0219697 0.0191552 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17488 1 0.03 -1 -1 30120 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 16.5 MiB 1.59 1210 14261 3846 8261 2154 54.9 MiB 0.20 0.00 4.18989 -126.928 -4.18989 4.18989 0.81 0.000581111 0.000530107 0.0458989 0.0419024 34 3011 23 6.89349e+06 310065 618332. 2139.56 1.91 0.160553 0.140098 25762 151098 -1 2495 22 1414 2073 189423 39377 3.3497 3.3497 -124.192 -3.3497 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0311834 0.0272189 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30448 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 16.4 MiB 1.72 1307 17117 5534 9059 2524 55.0 MiB 0.28 0.01 4.84686 -157.681 -4.84686 4.84686 0.80 0.000802255 0.000728438 0.0739532 0.0682151 34 3306 43 6.89349e+06 366440 618332. 2139.56 2.18 0.261496 0.229281 25762 151098 -1 2657 22 2085 3026 278449 57989 4.04249 4.04249 -150.198 -4.04249 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.034343 0.0300839 170 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.16 17396 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 16.3 MiB 2.14 1086 13432 3424 8813 1195 54.9 MiB 0.19 0.00 3.821 -117.953 -3.821 3.821 0.78 0.000672878 0.000621469 0.0529778 0.0489357 34 2625 25 6.89349e+06 253689 618332. 2139.56 1.66 0.189123 0.165393 25762 151098 -1 2179 18 1433 1922 164094 35739 2.96026 2.96026 -113.653 -2.96026 0 0 787024. 2723.27 0.28 0.07 0.17 -1 -1 0.28 0.0224355 0.0196223 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17520 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.3 MiB 0.97 871 12898 3868 7278 1752 54.8 MiB 0.18 0.00 4.12213 -126.038 -4.12213 4.12213 0.78 0.000662511 0.000612701 0.0501566 0.0463972 34 2411 26 6.89349e+06 253689 618332. 2139.56 1.91 0.175056 0.153205 25762 151098 -1 1998 18 1313 1934 198462 41974 3.26955 3.26955 -119.059 -3.26955 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0233563 0.0203914 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17824 1 0.03 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 16.3 MiB 1.50 1006 10292 2539 6455 1298 54.9 MiB 0.15 0.00 4.93133 -134.302 -4.93133 4.93133 0.78 0.000712194 0.000659062 0.0411091 0.0380451 34 2433 47 6.89349e+06 310065 618332. 2139.56 1.75 0.206831 0.180167 25762 151098 -1 2150 17 1248 1720 141745 31449 3.90306 3.90306 -131.693 -3.90306 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0241907 0.021177 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17744 1 0.04 -1 -1 30124 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 16.5 MiB 1.66 1105 14450 4218 8203 2029 55.0 MiB 0.21 0.00 4.04968 -110.899 -4.04968 4.04968 0.79 0.000707265 0.000654827 0.0562445 0.0520987 34 2649 24 6.89349e+06 352346 618332. 2139.56 1.62 0.196402 0.172113 25762 151098 -1 2220 17 1211 1772 153848 32656 3.08015 3.08015 -106.353 -3.08015 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0242393 0.0212461 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 16.6 MiB 1.69 1170 10033 2409 6880 744 55.2 MiB 0.18 0.00 5.6505 -176.695 -5.6505 5.6505 0.79 0.000826693 0.000765277 0.0450636 0.0417092 36 3285 24 6.89349e+06 338252 648988. 2245.63 4.19 0.286852 0.249405 26050 158493 -1 2684 20 1877 2884 261069 55866 4.82339 4.82339 -168.545 -4.82339 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0319155 0.0280024 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17024 1 0.03 -1 -1 30316 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 15.9 MiB 0.48 815 9368 2443 5733 1192 54.4 MiB 0.11 0.00 3.49795 -108.682 -3.49795 3.49795 0.79 0.000580512 0.000536975 0.032956 0.0305004 34 1873 21 6.89349e+06 239595 618332. 2139.56 1.48 0.144901 0.126006 25762 151098 -1 1606 18 792 1247 106621 23230 2.68966 2.68966 -99.4023 -2.68966 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0202989 0.0177206 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30252 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 16.7 MiB 1.63 1425 17431 5130 10160 2141 55.4 MiB 0.29 0.00 5.66786 -177.951 -5.66786 5.66786 0.79 0.000365232 0.00033347 0.0623745 0.0573143 36 3117 20 6.89349e+06 380534 648988. 2245.63 4.06 0.289909 0.253268 26050 158493 -1 2615 19 1871 2481 236671 48893 4.89068 4.89068 -169.65 -4.89068 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0316076 0.0278114 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.19 17656 1 0.03 -1 -1 30172 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1387 11223 3117 6896 1210 55.1 MiB 0.15 0.00 4.854 -168.258 -4.854 4.854 0.81 0.000539169 0.000493546 0.0369609 0.0338607 36 3110 27 6.89349e+06 324158 648988. 2245.63 1.99 0.168187 0.14702 26050 158493 -1 2655 21 2013 2623 236445 49010 4.30343 4.30343 -166.217 -4.30343 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.031526 0.0275903 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30472 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 16.6 MiB 1.65 1228 16529 5130 9253 2146 55.1 MiB 0.25 0.00 4.18062 -130.52 -4.18062 4.18062 0.79 0.000772864 0.000715246 0.0703311 0.0651197 34 2865 44 6.89349e+06 310065 618332. 2139.56 1.86 0.205049 0.180797 25762 151098 -1 2480 20 1531 2091 198670 41369 3.23566 3.23566 -125.664 -3.23566 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0300187 0.0262872 152 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 18124 1 0.03 -1 -1 30328 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 16.7 MiB 2.15 1277 13758 3654 8100 2004 55.2 MiB 0.28 0.01 5.8432 -174.13 -5.8432 5.8432 0.78 0.000852292 0.00078951 0.0607351 0.0562567 38 3028 25 6.89349e+06 366440 678818. 2348.85 4.28 0.321514 0.280591 26626 170182 -1 2612 22 1786 2937 283074 56715 4.72775 4.72775 -158.469 -4.72775 0 0 902133. 3121.57 0.27 0.11 0.17 -1 -1 0.27 0.0352032 0.0308376 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17564 1 0.03 -1 -1 30096 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55652 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 15.8 MiB 0.75 693 11650 3455 7011 1184 54.3 MiB 0.13 0.00 3.03066 -95.0101 -3.03066 3.03066 0.78 0.000555429 0.000514678 0.0413238 0.0382958 34 1761 22 6.89349e+06 211408 618332. 2139.56 1.46 0.148923 0.130116 25762 151098 -1 1470 18 741 1002 99416 21429 2.45031 2.45031 -95.4701 -2.45031 0 0 787024. 2723.27 0.25 0.05 0.15 -1 -1 0.25 0.0192559 0.0167342 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 30112 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 16.2 MiB 1.05 726 8270 1936 5996 338 54.8 MiB 0.13 0.00 4.60327 -135.822 -4.60327 4.60327 0.78 0.000649584 0.000600628 0.0322869 0.0298849 34 2100 27 6.89349e+06 281877 618332. 2139.56 1.63 0.165924 0.143941 25762 151098 -1 1572 18 1115 1705 151411 34600 3.5471 3.5471 -125.689 -3.5471 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0233646 0.0204265 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30420 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 16.2 MiB 1.60 1036 12008 3645 6699 1664 54.8 MiB 0.20 0.00 4.33865 -139.218 -4.33865 4.33865 0.78 0.000675144 0.000625167 0.0479424 0.0444015 34 2921 34 6.89349e+06 253689 618332. 2139.56 2.12 0.192119 0.167703 25762 151098 -1 2362 20 1472 2617 240529 50855 3.6455 3.6455 -137.341 -3.6455 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0258574 0.0225278 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17096 1 0.03 -1 -1 30200 -1 -1 21 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55584 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 15.7 MiB 0.98 532 11034 4110 4271 2653 54.3 MiB 0.10 0.00 3.6784 -85.8398 -3.6784 3.6784 0.82 0.000341028 0.00030797 0.0267896 0.024328 34 1701 23 6.89349e+06 295971 618332. 2139.56 1.53 0.129525 0.111702 25762 151098 -1 1357 20 857 1345 108335 26112 3.04181 3.04181 -82.8243 -3.04181 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0197403 0.0171061 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.19 17884 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 16.5 MiB 2.05 1378 14871 4869 7700 2302 55.1 MiB 0.25 0.00 4.565 -139.747 -4.565 4.565 0.84 0.000794178 0.000734136 0.0648709 0.0600352 36 3197 23 6.89349e+06 324158 648988. 2245.63 1.86 0.187596 0.165665 26050 158493 -1 2853 19 1838 2753 244222 49840 3.57726 3.57726 -132.143 -3.57726 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0295283 0.0259432 161 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17932 1 0.03 -1 -1 30332 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 16.7 MiB 1.91 1414 15617 4439 9113 2065 55.6 MiB 0.28 0.00 4.8901 -157.733 -4.8901 4.8901 0.86 0.00083689 0.000773133 0.0708035 0.0655437 34 3364 31 6.89349e+06 408721 618332. 2139.56 1.83 0.24649 0.21644 25762 151098 -1 2613 21 1842 2586 228245 47762 4.00579 4.00579 -149.025 -4.00579 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0338597 0.029643 179 90 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.21 17596 14 0.25 -1 -1 32760 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 16.3 MiB 0.38 1279 6823 1440 4905 478 54.8 MiB 0.11 0.00 7.95704 -163.811 -7.95704 7.95704 0.79 0.000984759 0.000910867 0.0381719 0.0352979 36 3219 22 6.55708e+06 325485 612192. 2118.31 2.57 0.243153 0.212586 22750 144809 -1 2793 14 1121 3464 231852 49153 6.88996 6.88996 -154.206 -6.88996 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0317897 0.0283088 183 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.27 17948 14 0.28 -1 -1 32888 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 16.2 MiB 0.47 1272 10173 2471 6545 1157 54.8 MiB 0.14 0.00 8.16064 -158.468 -8.16064 8.16064 0.76 0.000998788 0.000922465 0.0519287 0.0480374 36 3308 34 6.55708e+06 373705 612192. 2118.31 2.28 0.26675 0.2333 22750 144809 -1 2873 17 1249 3680 243327 52457 7.09116 7.09116 -148.024 -7.09116 0 0 782063. 2706.10 0.26 0.10 0.13 -1 -1 0.26 0.0359244 0.0318249 184 184 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.24 17640 11 0.22 -1 -1 33120 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1375 11748 3042 6701 2005 54.7 MiB 0.16 0.00 6.90223 -139.699 -6.90223 6.90223 0.82 0.000987244 0.000911379 0.061711 0.0570203 28 4035 48 6.55708e+06 313430 500653. 1732.36 4.08 0.230392 0.202784 21310 115450 -1 3354 32 1957 7088 740412 223421 6.62198 6.62198 -146.058 -6.62198 0 0 612192. 2118.31 0.21 0.24 0.12 -1 -1 0.21 0.0594965 0.0520907 186 186 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.20 17776 12 0.31 -1 -1 32816 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 16.4 MiB 0.51 1263 4783 870 3608 305 54.9 MiB 0.08 0.00 7.83974 -145.087 -7.83974 7.83974 0.77 0.00100446 0.000928813 0.0273904 0.0253788 36 3154 31 6.55708e+06 361650 612192. 2118.31 2.88 0.250102 0.218076 22750 144809 -1 2710 17 1151 3764 244856 52011 7.0397 7.0397 -138.841 -7.0397 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0369192 0.0327797 190 190 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.27 17660 13 0.28 -1 -1 32768 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 16.4 MiB 0.45 1445 11111 2879 6967 1265 54.9 MiB 0.16 0.00 7.83935 -165.421 -7.83935 7.83935 0.75 0.00108933 0.00100791 0.0599553 0.0554518 30 3665 20 6.55708e+06 373705 526063. 1820.29 3.82 0.361225 0.316 21886 126133 -1 3117 28 1489 4362 393839 142248 6.8385 6.8385 -155.896 -6.8385 0 0 666494. 2306.21 0.23 0.17 0.13 -1 -1 0.23 0.0583069 0.0513483 210 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.28 17636 13 0.24 -1 -1 32724 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 16.3 MiB 0.32 1337 11046 2900 6780 1366 54.8 MiB 0.14 0.00 7.78297 -154.862 -7.78297 7.78297 0.83 0.00107372 0.00099376 0.0487944 0.0448312 34 3479 24 6.55708e+06 385760 585099. 2024.56 2.46 0.220452 0.194036 22462 138074 -1 2970 29 1600 5681 523331 166012 6.9613 6.9613 -152.092 -6.9613 0 0 742403. 2568.87 0.25 0.20 0.14 -1 -1 0.25 0.0596879 0.0525411 198 198 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.23 17636 12 0.19 -1 -1 32552 -1 -1 27 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55616 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 15.8 MiB 0.26 1022 8969 2278 5945 746 54.3 MiB 0.11 0.00 7.21391 -130.754 -7.21391 7.21391 0.80 0.000814565 0.000753405 0.0420232 0.0388449 30 2509 31 6.55708e+06 325485 526063. 1820.29 1.22 0.138316 0.123145 21886 126133 -1 2156 15 914 2493 142845 32222 6.43104 6.43104 -124.628 -6.43104 0 0 666494. 2306.21 0.23 0.07 0.09 -1 -1 0.23 0.0272569 0.0242341 152 150 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.23 17324 12 0.19 -1 -1 32800 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 15.9 MiB 0.23 1233 12733 3609 7498 1626 54.4 MiB 0.15 0.00 6.32286 -134.975 -6.32286 6.32286 0.78 0.000813036 0.000750843 0.0600043 0.0554236 36 3024 41 6.55708e+06 265210 612192. 2118.31 3.78 0.252414 0.221844 22750 144809 -1 2626 16 1067 3234 210967 44833 5.53052 5.53052 -129.691 -5.53052 0 0 782063. 2706.10 0.26 0.08 0.15 -1 -1 0.26 0.0274469 0.0243764 140 138 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.25 17724 12 0.17 -1 -1 32828 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55740 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1203 13157 3412 7574 2171 54.4 MiB 0.15 0.00 6.35469 -136.224 -6.35469 6.35469 0.77 0.000832738 0.000769324 0.0586898 0.0542162 34 3035 46 6.55708e+06 313430 585099. 2024.56 2.14 0.224951 0.197978 22462 138074 -1 2537 17 1057 2686 182904 40316 5.84992 5.84992 -131.816 -5.84992 0 0 742403. 2568.87 0.30 0.08 0.16 -1 -1 0.30 0.0313661 0.0278807 150 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.23 17520 13 0.19 -1 -1 32608 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55716 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1164 8207 1986 5229 992 54.4 MiB 0.11 0.00 7.79043 -163.222 -7.79043 7.79043 0.79 0.000891415 0.000824264 0.040442 0.0374105 28 3528 36 6.55708e+06 301375 500653. 1732.36 1.88 0.178931 0.157746 21310 115450 -1 2905 29 1262 3548 483224 193094 6.58844 6.58844 -158.82 -6.58844 0 0 612192. 2118.31 0.21 0.18 0.12 -1 -1 0.21 0.049251 0.0431411 157 156 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17676 12 0.18 -1 -1 32424 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55520 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 15.8 MiB 0.25 1043 7646 1812 5284 550 54.2 MiB 0.09 0.00 6.98257 -137.016 -6.98257 6.98257 0.76 0.000778931 0.000719907 0.0344424 0.0318115 30 2447 18 6.55708e+06 289320 526063. 1820.29 3.25 0.245353 0.213451 21886 126133 -1 2171 14 836 2245 127590 28176 5.86158 5.86158 -128.53 -5.86158 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.024711 0.0219749 132 128 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17540 12 0.15 -1 -1 32576 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1210 6701 1475 4829 397 54.4 MiB 0.09 0.00 6.74278 -155.388 -6.74278 6.74278 0.77 0.00081719 0.000755208 0.0319589 0.0295284 28 3168 38 6.55708e+06 265210 500653. 1732.36 1.91 0.157208 0.138095 21310 115450 -1 2810 17 1023 2808 192059 42007 5.92832 5.92832 -148.513 -5.92832 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0292624 0.0258616 146 142 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.28 17836 13 0.24 -1 -1 32500 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1329 9892 2541 6359 992 54.8 MiB 0.14 0.00 8.09466 -168.958 -8.09466 8.09466 0.75 0.00101526 0.000939857 0.0508492 0.0470403 28 3771 29 6.55708e+06 361650 500653. 1732.36 1.59 0.185799 0.163738 21310 115450 -1 3142 16 1289 3750 257725 55464 6.96836 6.96836 -162.05 -6.96836 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0361386 0.0321454 191 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17912 14 0.30 -1 -1 32808 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1640 11170 2650 7415 1105 55.2 MiB 0.16 0.00 9.0039 -186.596 -9.0039 9.0039 0.77 0.00107344 0.000992611 0.0606502 0.055992 30 4010 33 6.55708e+06 361650 526063. 1820.29 1.73 0.21713 0.191974 21886 126133 -1 3203 18 1424 4077 243425 51823 7.64835 7.64835 -170.548 -7.64835 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0417054 0.0370175 210 209 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.16 17384 11 0.17 -1 -1 32620 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55724 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 15.9 MiB 0.24 878 5158 949 3601 608 54.4 MiB 0.07 0.00 6.71354 -123.992 -6.71354 6.71354 0.77 0.0007973 0.000736464 0.0240902 0.0222512 26 3504 48 6.55708e+06 325485 477104. 1650.88 5.89 0.279043 0.241286 21022 109990 -1 2457 17 1122 3018 217974 53103 6.13918 6.13918 -130.631 -6.13918 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0287359 0.0254033 147 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.26 17608 12 0.27 -1 -1 32808 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 16.3 MiB 0.35 1420 10309 2435 6528 1346 54.9 MiB 0.15 0.00 7.45763 -153.823 -7.45763 7.45763 0.89 0.000881941 0.000799693 0.0542385 0.0501209 36 3993 50 6.55708e+06 397815 612192. 2118.31 4.99 0.433135 0.377727 22750 144809 -1 3285 24 1419 4886 395690 104132 6.55124 6.55124 -145.671 -6.55124 0 0 782063. 2706.10 0.28 0.15 0.15 -1 -1 0.28 0.0512536 0.0452693 209 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.26 17732 14 0.24 -1 -1 32776 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 16.3 MiB 0.25 1436 5553 1081 4073 399 54.7 MiB 0.09 0.00 7.42808 -156.41 -7.42808 7.42808 0.83 0.000894838 0.000837499 0.0290405 0.0268344 34 4139 50 6.55708e+06 349595 585099. 2024.56 8.85 0.403369 0.349754 22462 138074 -1 3140 20 1373 4145 301435 70795 6.46824 6.46824 -149.425 -6.46824 0 0 742403. 2568.87 0.25 0.12 0.14 -1 -1 0.25 0.0411348 0.0363701 184 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.25 17608 12 0.16 -1 -1 32404 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 15.9 MiB 0.32 1097 11991 2937 7207 1847 54.4 MiB 0.14 0.00 7.19884 -160.926 -7.19884 7.19884 0.77 0.000820979 0.000757069 0.0543526 0.050155 30 2410 15 6.55708e+06 277265 526063. 1820.29 3.09 0.237812 0.208689 21886 126133 -1 2154 13 869 2459 125597 28989 5.9625 5.9625 -147.462 -5.9625 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0254836 0.0227791 140 133 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.22 17256 10 0.10 -1 -1 32168 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55176 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 15.2 MiB 0.16 733 7548 1614 5464 470 53.9 MiB 0.08 0.00 5.36346 -120.328 -5.36346 5.36346 0.77 0.000616945 0.000569361 0.0301969 0.0279025 28 1922 22 6.55708e+06 192880 500653. 1732.36 0.94 0.105286 0.0925152 21310 115450 -1 1660 13 688 1641 98697 23666 4.61634 4.61634 -115.034 -4.61634 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0181607 0.0160641 91 87 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.25 17464 13 0.18 -1 -1 32572 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 16.1 MiB 0.36 1075 12951 3421 7713 1817 54.6 MiB 0.15 0.00 6.90774 -144.707 -6.90774 6.90774 0.75 0.000831541 0.000767833 0.0591875 0.0546223 28 3303 39 6.55708e+06 289320 500653. 1732.36 1.82 0.181894 0.160601 21310 115450 -1 2428 17 1121 2973 212649 50376 6.37958 6.37958 -145.211 -6.37958 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0303248 0.0269006 144 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17588 13 0.27 -1 -1 32792 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1429 6575 1166 5105 304 55.0 MiB 0.10 0.00 8.01121 -157.98 -8.01121 8.01121 0.74 0.00106851 0.000984491 0.0365227 0.0338042 28 4041 48 6.55708e+06 373705 500653. 1732.36 5.97 0.365975 0.318556 21310 115450 -1 3295 18 1665 5085 363431 76695 7.3213 7.3213 -157.006 -7.3213 0 0 612192. 2118.31 0.23 0.13 0.10 -1 -1 0.23 0.0412778 0.0366169 211 210 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.28 17604 13 0.28 -1 -1 32400 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 16.3 MiB 0.40 1433 6823 1289 5315 219 55.0 MiB 0.11 0.00 7.886 -165.604 -7.886 7.886 0.76 0.00102679 0.00094941 0.0384083 0.0355428 46 3341 19 6.55708e+06 325485 782063. 2706.10 5.21 0.374055 0.325265 24766 183262 -1 2864 15 1173 3988 254281 51482 7.0397 7.0397 -154.052 -7.0397 0 0 958460. 3316.47 0.32 0.10 0.20 -1 -1 0.32 0.0327946 0.0295436 194 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.19 17412 9 0.09 -1 -1 32280 -1 -1 24 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55072 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 15.2 MiB 0.18 744 10762 3120 6243 1399 53.8 MiB 0.09 0.00 5.06374 -98.4324 -5.06374 5.06374 0.77 0.000557344 0.000515085 0.0358642 0.0331439 26 1886 19 6.55708e+06 289320 477104. 1650.88 1.28 0.10303 0.0907058 21022 109990 -1 1707 15 646 1578 114900 25248 4.50014 4.50014 -97.7303 -4.50014 0 0 585099. 2024.56 0.20 0.05 0.12 -1 -1 0.20 0.0185466 0.0162997 87 76 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17500 13 0.27 -1 -1 32848 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1381 10781 2930 5957 1894 54.8 MiB 0.15 0.00 7.83519 -151.249 -7.83519 7.83519 0.77 0.00101778 0.000941176 0.0596504 0.055195 30 3912 26 6.55708e+06 301375 526063. 1820.29 2.88 0.200179 0.177324 21886 126133 -1 3195 29 1437 4348 352112 101634 6.9653 6.9653 -149.679 -6.9653 0 0 666494. 2306.21 0.23 0.15 0.13 -1 -1 0.23 0.0558183 0.0490328 193 193 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17256 8 0.09 -1 -1 32836 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 15.1 MiB 0.13 553 7648 2806 3716 1126 53.7 MiB 0.07 0.00 4.12642 -89.8462 -4.12642 4.12642 0.76 0.00055145 0.000508926 0.0263338 0.0242747 30 1765 28 6.55708e+06 192880 526063. 1820.29 1.00 0.0982299 0.0858389 21886 126133 -1 1245 13 543 1161 69082 16964 3.73148 3.73148 -89.2084 -3.73148 0 0 666494. 2306.21 0.23 0.04 0.13 -1 -1 0.23 0.0160926 0.0141944 77 60 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.24 17516 15 0.23 -1 -1 32928 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 16.0 MiB 0.32 1321 6923 1475 4903 545 54.6 MiB 0.10 0.00 8.32249 -162.146 -8.32249 8.32249 0.78 0.000925807 0.000855914 0.0350719 0.0324665 36 3201 36 6.55708e+06 337540 612192. 2118.31 2.42 0.247855 0.215985 22750 144809 -1 2775 17 1219 3721 267825 54860 7.4009 7.4009 -156.759 -7.4009 0 0 782063. 2706.10 0.25 0.10 0.14 -1 -1 0.25 0.0335965 0.029715 165 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.25 17644 13 0.26 -1 -1 32700 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 16.0 MiB 0.28 1319 5919 1133 4327 459 54.7 MiB 0.09 0.00 7.07675 -156.6 -7.07675 7.07675 0.81 0.000938563 0.000868565 0.0317805 0.0294058 44 2889 17 6.55708e+06 313430 742403. 2568.87 3.91 0.288695 0.251137 24478 177802 -1 2443 18 900 2794 186788 38159 6.20852 6.20852 -144.17 -6.20852 0 0 937218. 3242.97 0.31 0.08 0.17 -1 -1 0.31 0.0354752 0.0314085 168 166 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17784 13 0.26 -1 -1 32872 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1276 11223 2538 6825 1860 54.8 MiB 0.15 0.00 7.85647 -160.581 -7.85647 7.85647 0.88 0.0010048 0.000928799 0.0580195 0.0536841 30 3277 23 6.55708e+06 349595 526063. 1820.29 1.43 0.187479 0.165969 21886 126133 -1 2550 15 1111 3417 193372 42481 6.7183 6.7183 -150.515 -6.7183 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.033509 0.0298685 187 185 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.23 17576 12 0.16 -1 -1 32620 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1153 7191 1558 5291 342 54.4 MiB 0.10 0.00 6.57592 -147.41 -6.57592 6.57592 0.80 0.000834462 0.000769759 0.0329033 0.0303058 36 3133 23 6.55708e+06 277265 612192. 2118.31 3.34 0.209622 0.183263 22750 144809 -1 2619 23 1094 3280 293185 95953 5.60692 5.60692 -136.156 -5.60692 0 0 782063. 2706.10 0.26 0.12 0.14 -1 -1 0.26 0.0376565 0.0331896 147 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.24 17460 11 0.15 -1 -1 32712 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55472 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 15.8 MiB 0.19 963 12919 3847 7319 1753 54.2 MiB 0.14 0.00 6.46503 -135.82 -6.46503 6.46503 0.79 0.000773299 0.000715046 0.0545577 0.0504587 28 2554 23 6.55708e+06 277265 500653. 1732.36 1.19 0.154043 0.13679 21310 115450 -1 2217 15 894 2387 153269 34658 5.86158 5.86158 -134.024 -5.86158 0 0 612192. 2118.31 0.22 0.07 0.10 -1 -1 0.22 0.0254012 0.0225318 131 125 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.25 17344 11 0.17 -1 -1 32604 -1 -1 28 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55604 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 15.7 MiB 0.39 1010 6913 1544 4325 1044 54.3 MiB 0.09 0.00 6.38158 -126.573 -6.38158 6.38158 0.76 0.000807654 0.00074635 0.0315635 0.0291601 26 3292 49 6.55708e+06 337540 477104. 1650.88 2.63 0.179838 0.158725 21022 109990 -1 2691 49 2039 6322 853481 351910 5.49132 5.49132 -126.633 -5.49132 0 0 585099. 2024.56 0.20 0.30 0.11 -1 -1 0.20 0.0685787 0.0595654 150 145 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.22 17372 12 0.20 -1 -1 32696 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1304 6321 1255 4617 449 54.6 MiB 0.09 0.00 7.16635 -157.812 -7.16635 7.16635 0.76 0.00096188 0.000890327 0.0338785 0.0313821 26 3730 50 6.55708e+06 313430 477104. 1650.88 2.46 0.194309 0.169975 21022 109990 -1 3126 19 1505 4080 298026 66261 6.4035 6.4035 -160.609 -6.4035 0 0 585099. 2024.56 0.20 0.11 0.12 -1 -1 0.20 0.0380187 0.033583 181 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.23 17672 12 0.16 -1 -1 32756 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55556 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 15.8 MiB 0.54 980 5567 1150 4291 126 54.3 MiB 0.08 0.00 7.18658 -144.693 -7.18658 7.18658 0.76 0.000817077 0.000753978 0.0271374 0.0250875 28 3030 21 6.55708e+06 277265 500653. 1732.36 1.67 0.129414 0.113512 21310 115450 -1 2505 32 1468 4279 456054 161539 6.14118 6.14118 -141.809 -6.14118 0 0 612192. 2118.31 0.22 0.18 0.12 -1 -1 0.22 0.0520163 0.0457616 149 146 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.25 17560 10 0.14 -1 -1 32608 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55524 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 15.8 MiB 0.18 1013 6563 1489 4557 517 54.2 MiB 0.08 0.00 5.76546 -121.445 -5.76546 5.76546 0.77 0.00079112 0.000731006 0.031858 0.029446 28 2690 47 6.55708e+06 265210 500653. 1732.36 3.97 0.241262 0.209517 21310 115450 -1 2253 14 837 2399 159822 34768 5.27986 5.27986 -119.779 -5.27986 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0253068 0.0225176 137 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18180 13 0.30 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 16.3 MiB 0.24 1488 10247 2366 6979 902 55.1 MiB 0.15 0.00 7.78037 -164.973 -7.78037 7.78037 0.76 0.00110618 0.00102146 0.0570093 0.0526389 30 3533 45 6.55708e+06 373705 526063. 1820.29 6.40 0.405318 0.353874 21886 126133 -1 3052 14 1271 3998 227953 49965 6.7967 6.7967 -153.763 -6.7967 0 0 666494. 2306.21 0.23 0.09 0.12 -1 -1 0.23 0.0357189 0.0318744 221 221 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.27 18196 14 0.31 -1 -1 33356 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 16.2 MiB 0.46 1341 7544 1708 5122 714 54.7 MiB 0.12 0.00 7.48711 -165.315 -7.48711 7.48711 0.76 0.00102361 0.000946336 0.0413146 0.0382218 30 3697 31 6.55708e+06 337540 526063. 1820.29 1.63 0.181994 0.160072 21886 126133 -1 2911 17 1300 3826 220011 48624 6.65518 6.65518 -156.988 -6.65518 0 0 666494. 2306.21 0.23 0.10 0.12 -1 -1 0.23 0.0375668 0.0333888 191 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.23 17404 12 0.19 -1 -1 32632 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55600 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 15.8 MiB 0.25 1061 14582 3956 8171 2455 54.3 MiB 0.16 0.00 7.55424 -147.694 -7.55424 7.55424 0.76 0.000834995 0.00077072 0.0625872 0.0576838 36 2600 19 6.55708e+06 349595 612192. 2118.31 2.36 0.227118 0.199771 22750 144809 -1 2215 15 875 2445 149898 32986 6.4819 6.4819 -137.119 -6.4819 0 0 782063. 2706.10 0.26 0.07 0.15 -1 -1 0.26 0.0275492 0.0244894 156 150 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.25 17616 12 0.32 -1 -1 32860 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 16.4 MiB 0.41 1440 9951 2153 6171 1627 55.1 MiB 0.14 0.00 7.66392 -155.521 -7.66392 7.66392 0.77 0.00107633 0.000995556 0.0533209 0.0493394 30 3824 20 6.55708e+06 397815 526063. 1820.29 1.47 0.186679 0.165242 21886 126133 -1 3051 18 1411 4017 226662 50953 6.6419 6.6419 -148.935 -6.6419 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0417374 0.0370663 218 216 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17996 14 0.33 -1 -1 33164 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 16.3 MiB 0.29 1368 10442 2445 6848 1149 54.8 MiB 0.15 0.00 8.27333 -162.102 -8.27333 8.27333 0.77 0.00106854 0.000989693 0.0577895 0.0535158 28 4284 50 6.55708e+06 349595 500653. 1732.36 11.03 0.388427 0.340419 21310 115450 -1 3323 58 1613 4947 868929 448272 7.6387 7.6387 -164.973 -7.6387 0 0 612192. 2118.31 0.21 0.35 0.12 -1 -1 0.21 0.102688 0.0892433 202 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.28 18048 13 0.25 -1 -1 32896 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 16.2 MiB 0.33 1406 11311 2955 7221 1135 54.7 MiB 0.16 0.00 7.94497 -159.991 -7.94497 7.94497 0.77 0.00100032 0.000925428 0.0591204 0.0545927 34 3666 25 6.55708e+06 337540 585099. 2024.56 2.55 0.228172 0.201653 22462 138074 -1 3213 17 1392 3934 289139 61315 7.0005 7.0005 -154.566 -7.0005 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0369516 0.03283 185 185 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.29 17816 13 0.22 -1 -1 32920 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 16.3 MiB 0.34 1345 7613 1868 4862 883 54.8 MiB 0.11 0.00 7.08841 -141.492 -7.08841 7.08841 0.77 0.000999481 0.000925317 0.041324 0.0381903 36 3402 23 6.55708e+06 313430 612192. 2118.31 4.07 0.260245 0.226784 22750 144809 -1 2892 19 1179 3717 240140 50722 6.18098 6.18098 -138.007 -6.18098 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0382406 0.0338537 179 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.23 17640 12 0.19 -1 -1 32760 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 16.0 MiB 0.21 1315 5548 1167 3981 400 54.7 MiB 0.09 0.00 7.00741 -145.329 -7.00741 7.00741 0.76 0.000922934 0.000853736 0.0314836 0.0291596 28 3354 21 6.55708e+06 289320 500653. 1732.36 1.67 0.142643 0.125181 21310 115450 -1 2882 18 1347 4054 281572 60880 6.10198 6.10198 -140.685 -6.10198 0 0 612192. 2118.31 0.23 0.11 0.12 -1 -1 0.23 0.0371487 0.0330237 171 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.31 18400 14 0.38 -1 -1 32924 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 16.7 MiB 0.38 1670 9383 2100 6642 641 55.2 MiB 0.15 0.00 8.23218 -176.173 -8.23218 8.23218 0.75 0.00115029 0.00106338 0.054706 0.0505108 36 4413 27 6.55708e+06 373705 612192. 2118.31 4.92 0.394375 0.344365 22750 144809 -1 3591 15 1435 4642 300124 63754 7.28976 7.28976 -168.351 -7.28976 0 0 782063. 2706.10 0.28 0.11 0.15 -1 -1 0.28 0.0393235 0.0352724 230 230 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.23 17556 11 0.21 -1 -1 32476 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55848 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 15.9 MiB 0.33 1051 8603 2089 5379 1135 54.5 MiB 0.12 0.00 6.74223 -137.589 -6.74223 6.74223 0.76 0.000884023 0.000817482 0.0417229 0.0385902 30 2962 18 6.55708e+06 313430 526063. 1820.29 1.25 0.144351 0.12725 21886 126133 -1 2424 34 1146 3298 332117 129087 6.06278 6.06278 -136.328 -6.06278 0 0 666494. 2306.21 0.23 0.15 0.12 -1 -1 0.23 0.0546499 0.0476761 163 158 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.27 17840 13 0.26 -1 -1 33416 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1315 7435 1572 5156 707 55.0 MiB 0.11 0.00 8.06447 -154.642 -8.06447 8.06447 0.76 0.0010064 0.000929508 0.0406087 0.0375255 28 3622 39 6.55708e+06 337540 500653. 1732.36 2.36 0.198677 0.174704 21310 115450 -1 3104 19 1298 4356 369368 97364 7.17156 7.17156 -152.309 -7.17156 0 0 612192. 2118.31 0.21 0.13 0.12 -1 -1 0.21 0.0402282 0.0356167 193 193 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.27 17608 12 0.25 -1 -1 32748 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 16.4 MiB 0.42 1532 15213 4154 8657 2402 55.0 MiB 0.20 0.00 7.13712 -150.826 -7.13712 7.13712 0.76 0.00106653 0.000985351 0.0816381 0.0753758 36 3927 38 6.55708e+06 349595 612192. 2118.31 3.78 0.334917 0.295074 22750 144809 -1 3320 17 1267 4413 298784 61529 6.19264 6.19264 -141.092 -6.19264 0 0 782063. 2706.10 0.26 0.11 0.15 -1 -1 0.26 0.0397094 0.0352952 210 209 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.23 17548 13 0.30 -1 -1 32844 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1350 5133 911 3808 414 54.7 MiB 0.08 0.00 7.54057 -158.305 -7.54057 7.54057 0.77 0.00099126 0.000917313 0.0285159 0.0263753 28 3699 48 6.55708e+06 349595 500653. 1732.36 7.11 0.329248 0.286392 21310 115450 -1 3121 21 1279 3597 285111 75696 6.90724 6.90724 -158.654 -6.90724 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0423699 0.037394 183 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.21 17608 13 0.22 -1 -1 32796 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 16.2 MiB 0.36 1371 12351 2891 7373 2087 54.7 MiB 0.16 0.00 7.1188 -155.865 -7.1188 7.1188 0.78 0.000960562 0.000887046 0.062679 0.0579119 36 3362 27 6.55708e+06 313430 612192. 2118.31 3.32 0.26911 0.235925 22750 144809 -1 2806 14 1094 3228 209014 44109 6.17898 6.17898 -145.094 -6.17898 0 0 782063. 2706.10 0.25 0.08 0.14 -1 -1 0.25 0.030338 0.0269839 178 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.21 17808 12 0.25 -1 -1 32628 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 16.4 MiB 0.48 1446 11170 2757 7067 1346 54.9 MiB 0.15 0.00 7.31654 -157.818 -7.31654 7.31654 0.78 0.00103487 0.000954669 0.0581472 0.0536718 38 3358 31 6.55708e+06 361650 638502. 2209.35 2.35 0.281326 0.246344 23326 155178 -1 2773 14 1140 3887 218758 46560 6.26904 6.26904 -146.884 -6.26904 0 0 851065. 2944.86 0.27 0.09 0.16 -1 -1 0.27 0.0345761 0.0309569 197 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.28 18068 13 0.29 -1 -1 32824 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1513 7223 1461 5178 584 55.1 MiB 0.12 0.00 7.58438 -161.714 -7.58438 7.58438 0.77 0.00108175 0.0009985 0.0405452 0.0374443 34 4148 44 6.55708e+06 373705 585099. 2024.56 2.98 0.266168 0.233718 22462 138074 -1 3416 16 1468 4525 314604 66645 6.58844 6.58844 -153.738 -6.58844 0 0 742403. 2568.87 0.24 0.11 0.12 -1 -1 0.24 0.0390279 0.0347628 212 212 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.25 17744 14 0.27 -1 -1 33028 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 16.1 MiB 0.24 1215 10813 2361 6891 1561 54.8 MiB 0.14 0.00 8.31609 -163.248 -8.31609 8.31609 0.76 0.000949584 0.00087883 0.0563306 0.0521136 30 3177 22 6.55708e+06 289320 526063. 1820.29 1.67 0.172662 0.152738 21886 126133 -1 2674 20 1152 3504 205428 44313 7.08916 7.08916 -154.463 -7.08916 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0386199 0.0341416 168 168 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17744 13 0.26 -1 -1 32752 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1503 5206 957 3956 293 54.9 MiB 0.09 0.00 8.07478 -162.365 -8.07478 8.07478 0.77 0.00103049 0.000953262 0.0290366 0.0269017 28 4350 40 6.55708e+06 361650 500653. 1732.36 3.07 0.191726 0.168016 21310 115450 -1 3385 20 1884 5661 374533 80186 7.05196 7.05196 -158.662 -7.05196 0 0 612192. 2118.31 0.24 0.13 0.12 -1 -1 0.24 0.0428747 0.0379467 198 197 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.30 18028 13 0.27 -1 -1 32716 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 16.2 MiB 0.27 1405 8401 1949 5780 672 54.8 MiB 0.13 0.00 7.80415 -160.841 -7.80415 7.80415 0.77 0.00107589 0.000990364 0.0466773 0.0431335 30 3626 43 6.55708e+06 373705 526063. 1820.29 10.15 0.383218 0.334103 21886 126133 -1 2951 15 1328 3924 228405 49825 6.8411 6.8411 -153.151 -6.8411 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0360117 0.0321037 213 211 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.27 18076 12 0.32 -1 -1 32788 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1438 11641 3058 7283 1300 55.0 MiB 0.16 0.00 7.70272 -159.771 -7.70272 7.70272 0.75 0.00107075 0.000989789 0.060481 0.055855 30 3684 22 6.55708e+06 397815 526063. 1820.29 1.19 0.144344 0.128422 21886 126133 -1 2973 17 1421 3947 222213 49985 6.6419 6.6419 -151.956 -6.6419 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0394409 0.0350696 216 214 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.22 17456 11 0.13 -1 -1 32616 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55500 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 15.6 MiB 0.23 1054 3998 719 2985 294 54.2 MiB 0.06 0.00 6.14869 -128.86 -6.14869 6.14869 0.79 0.000759751 0.000701786 0.0193828 0.0179259 28 2511 17 6.55708e+06 216990 500653. 1732.36 2.80 0.184603 0.160176 21310 115450 -1 2318 15 917 2377 154005 34831 5.41032 5.41032 -131.217 -5.41032 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0249949 0.022128 125 122 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17728 13 0.21 -1 -1 32916 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 16.0 MiB 0.32 1266 7888 1808 5375 705 54.6 MiB 0.11 0.00 7.4424 -157.565 -7.4424 7.4424 0.76 0.000918509 0.0008505 0.040729 0.0376874 28 3381 49 6.55708e+06 289320 500653. 1732.36 2.01 0.191899 0.168089 21310 115450 -1 2910 22 1248 3612 274851 68361 6.74784 6.74784 -151.854 -6.74784 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0399729 0.0351548 161 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.27 18328 14 0.43 -1 -1 32856 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1601 9199 2042 6426 731 55.3 MiB 0.15 0.00 8.66873 -176.87 -8.66873 8.66873 0.76 0.0012113 0.00111459 0.0549201 0.0507048 28 4784 40 6.55708e+06 397815 500653. 1732.36 10.38 0.403908 0.353326 21310 115450 -1 4067 19 2277 7432 516165 110855 7.60916 7.60916 -171.292 -7.60916 0 0 612192. 2118.31 0.21 0.20 0.12 -1 -1 0.21 0.0499553 0.0446019 245 244 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.27 17820 13 0.31 -1 -1 32720 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.2 MiB 0.39 1376 4579 799 3553 227 54.6 MiB 0.08 0.00 8.02278 -172.696 -8.02278 8.02278 0.77 0.000998313 0.000916052 0.0261086 0.024143 36 3295 17 6.55708e+06 325485 612192. 2118.31 2.38 0.223815 0.195341 22750 144809 -1 2835 14 1157 3318 205823 44827 7.0769 7.0769 -162.862 -7.0769 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0341679 0.0306123 178 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.25 17536 11 0.17 -1 -1 32572 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55544 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 15.8 MiB 0.17 1035 10687 2518 6679 1490 54.2 MiB 0.13 0.00 6.59735 -138.464 -6.59735 6.59735 0.74 0.00080732 0.000744776 0.0499696 0.0461216 32 2909 38 6.55708e+06 277265 554710. 1919.41 2.34 0.233368 0.203944 22174 131602 -1 2333 16 1038 2920 213757 46434 5.97918 5.97918 -136.584 -5.97918 0 0 701300. 2426.64 0.23 0.08 0.13 -1 -1 0.23 0.0276717 0.0245139 139 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.30 18184 15 0.50 -1 -1 32792 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1771 9773 2274 6549 950 55.2 MiB 0.16 0.00 9.55013 -184.943 -9.55013 9.55013 0.77 0.00124224 0.00114569 0.059072 0.0545759 36 4527 28 6.55708e+06 409870 612192. 2118.31 4.21 0.334434 0.294768 22750 144809 -1 3824 19 2003 6661 469916 96499 8.37721 8.37721 -174.058 -8.37721 0 0 782063. 2706.10 0.26 0.16 0.15 -1 -1 0.26 0.051269 0.0456223 257 257 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.27 17808 13 0.30 -1 -1 32736 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1402 7958 1933 5289 736 54.9 MiB 0.12 0.00 7.87358 -164.462 -7.87358 7.87358 0.76 0.00106132 0.000981734 0.0460784 0.0426104 30 3399 29 6.55708e+06 337540 526063. 1820.29 1.24 0.186736 0.164541 21886 126133 -1 2875 16 1243 3754 208526 46327 6.73256 6.73256 -153.852 -6.73256 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0370922 0.0329822 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.14 17056 11 0.13 -1 -1 32116 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 15.8 MiB 0.29 1082 11804 3066 7108 1630 54.4 MiB 0.14 0.00 6.28346 -137.062 -6.28346 6.28346 0.77 0.000802894 0.000741154 0.0533096 0.0492138 28 2920 40 6.55708e+06 265210 500653. 1732.36 7.02 0.276428 0.242511 21310 115450 -1 2550 31 1064 3131 371230 151237 5.40772 5.40772 -132.404 -5.40772 0 0 612192. 2118.31 0.21 0.15 0.12 -1 -1 0.21 0.0461013 0.0403508 141 137 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.14 17592 12 0.29 -1 -1 32792 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 16.5 MiB 0.40 1459 6058 1136 4425 497 55.3 MiB 0.10 0.00 7.4882 -153.189 -7.4882 7.4882 0.77 0.00106867 0.000986391 0.0344741 0.0318975 36 3684 49 6.55708e+06 361650 612192. 2118.31 5.09 0.450635 0.389937 22750 144809 -1 3201 19 1364 4385 307670 63006 6.55124 6.55124 -146.013 -6.55124 0 0 782063. 2706.10 0.28 0.11 0.14 -1 -1 0.28 0.0377226 0.0340234 213 211 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.21 17660 12 0.19 -1 -1 32636 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55848 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 16.0 MiB 0.37 1183 11346 2851 6780 1715 54.5 MiB 0.15 0.00 7.37351 -152.427 -7.37351 7.37351 0.76 0.000866373 0.000800355 0.0538861 0.0497912 28 3297 24 6.55708e+06 313430 500653. 1732.36 1.44 0.16982 0.150403 21310 115450 -1 2787 15 1113 3099 198463 44702 6.78964 6.78964 -150.547 -6.78964 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290847 0.0259122 153 149 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17388 12 0.23 -1 -1 32600 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55612 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 15.9 MiB 0.20 948 9803 2338 5714 1751 54.3 MiB 0.12 0.00 7.00946 -139.977 -7.00946 7.00946 0.80 0.000821322 0.000757841 0.0486987 0.0449793 28 2596 19 6.55708e+06 253155 500653. 1732.36 3.01 0.240619 0.209674 21310 115450 -1 2292 19 1093 3331 217494 47871 6.63164 6.63164 -138.214 -6.63164 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.032622 0.0288071 140 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.29 17768 12 0.27 -1 -1 32664 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 16.2 MiB 0.24 1279 5474 1033 4128 313 54.7 MiB 0.09 0.00 6.7577 -128.343 -6.7577 6.7577 0.82 0.00100753 0.000932131 0.0309157 0.0286555 30 3450 25 6.55708e+06 373705 526063. 1820.29 1.86 0.165358 0.145269 21886 126133 -1 2922 36 1329 4674 608592 271973 5.94258 5.94258 -125.513 -5.94258 0 0 666494. 2306.21 0.23 0.23 0.13 -1 -1 0.23 0.0656742 0.0573929 191 190 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.16 17652 13 0.33 -1 -1 32668 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 16.7 MiB 0.53 1641 6757 1409 4886 462 55.3 MiB 0.11 0.00 8.4108 -177.204 -8.4108 8.4108 0.85 0.00114083 0.00105424 0.0379068 0.0350432 28 5055 43 6.55708e+06 397815 500653. 1732.36 11.75 0.403609 0.351837 21310 115450 -1 4036 58 1957 5520 1027903 442188 7.49096 7.49096 -175.291 -7.49096 0 0 612192. 2118.31 0.21 0.40 0.12 -1 -1 0.21 0.114794 0.100239 238 236 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17616 12 0.23 -1 -1 32936 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 16.2 MiB 0.39 1388 15645 4295 9025 2325 54.8 MiB 0.20 0.00 7.61066 -152.509 -7.61066 7.61066 0.84 0.000759349 0.000686701 0.0691713 0.0629579 34 3849 45 6.55708e+06 385760 585099. 2024.56 4.84 0.412425 0.358996 22462 138074 -1 3075 18 1337 4050 287225 60488 6.46964 6.46964 -143.99 -6.46964 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0389844 0.0345546 200 196 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.24 17640 12 0.15 -1 -1 32572 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55552 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 15.8 MiB 0.48 1058 4842 1062 3260 520 54.2 MiB 0.07 0.00 6.82123 -141.643 -6.82123 6.82123 0.84 0.000580894 0.000527945 0.0190119 0.017413 28 2811 22 6.55708e+06 241100 500653. 1732.36 8.04 0.214564 0.185966 21310 115450 -1 2480 23 915 2670 299066 108458 6.18098 6.18098 -141.314 -6.18098 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0350044 0.0307789 126 120 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.25 17664 12 0.21 -1 -1 32552 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55700 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 15.9 MiB 0.26 1176 10455 2348 6392 1715 54.4 MiB 0.13 0.00 7.13387 -142.33 -7.13387 7.13387 0.76 0.000875234 0.000800882 0.0505455 0.046709 28 3425 28 6.55708e+06 289320 500653. 1732.36 1.68 0.171298 0.151493 21310 115450 -1 2767 18 1094 3319 205347 46242 6.18298 6.18298 -138.064 -6.18298 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0330371 0.0292546 154 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.26 17568 11 0.19 -1 -1 32760 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 16.2 MiB 0.15 1196 13547 4241 6931 2375 54.8 MiB 0.17 0.00 6.85121 -131.802 -6.85121 6.85121 0.77 0.0009606 0.000888062 0.066856 0.0617984 36 3367 29 6.55708e+06 361650 612192. 2118.31 3.54 0.279566 0.245181 22750 144809 -1 2664 15 1174 3683 226718 49964 6.03324 6.03324 -125.968 -6.03324 0 0 782063. 2706.10 0.27 0.09 0.15 -1 -1 0.27 0.0328141 0.0291524 190 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.24 17680 11 0.20 -1 -1 32672 -1 -1 27 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55900 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 16.0 MiB 0.15 1080 10647 2769 6876 1002 54.6 MiB 0.13 0.00 6.62889 -122.091 -6.62889 6.62889 0.77 0.000896615 0.000829705 0.0536159 0.0495545 34 2821 25 6.55708e+06 325485 585099. 2024.56 2.30 0.244214 0.213902 22462 138074 -1 2518 18 1076 3605 242853 51517 5.95726 5.95726 -117.922 -5.95726 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0345617 0.0305475 172 171 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.13 17816 13 0.20 -1 -1 32816 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55792 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 16.0 MiB 0.27 1040 5271 1036 3997 238 54.5 MiB 0.07 0.00 7.2482 -136.339 -7.2482 7.2482 0.77 0.000840293 0.000776592 0.0263066 0.0243322 34 2823 31 6.55708e+06 301375 585099. 2024.56 2.23 0.175432 0.15334 22462 138074 -1 2301 18 922 2793 178174 39082 6.67144 6.67144 -135.989 -6.67144 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0317059 0.0281101 148 147 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.25 17616 12 0.21 -1 -1 32680 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55840 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 16.1 MiB 0.28 1203 11270 2888 6672 1710 54.5 MiB 0.14 0.00 7.39203 -156.297 -7.39203 7.39203 0.76 0.000938864 0.000867077 0.0548002 0.0506476 36 2927 15 6.55708e+06 337540 612192. 2118.31 3.69 0.305515 0.266872 22750 144809 -1 2455 16 1096 3084 188642 43052 6.0821 6.0821 -140.726 -6.0821 0 0 782063. 2706.10 0.28 0.08 0.14 -1 -1 0.28 0.0327878 0.0290926 174 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17388 13 0.28 -1 -1 32796 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1314 8130 1959 5459 712 54.8 MiB 0.12 0.00 8.02027 -155.447 -8.02027 8.02027 0.79 0.000997373 0.00092154 0.0446344 0.0412885 30 3068 42 6.55708e+06 325485 526063. 1820.29 1.35 0.19823 0.174159 21886 126133 -1 2544 14 999 2954 170537 37023 6.97036 6.97036 -145.255 -6.97036 0 0 666494. 2306.21 0.23 0.08 0.12 -1 -1 0.23 0.0316662 0.028203 187 187 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.24 18208 14 0.30 -1 -1 32776 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 16.3 MiB 0.24 1224 14168 3595 8187 2386 54.8 MiB 0.18 0.00 8.42547 -164.88 -8.42547 8.42547 0.77 0.00102158 0.000944282 0.0741125 0.0683797 26 3996 49 6.55708e+06 337540 477104. 1650.88 3.01 0.250141 0.221038 21022 109990 -1 3152 20 1367 3841 293142 66365 7.66262 7.66262 -167.887 -7.66262 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0424032 0.037484 196 196 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18028 14 0.26 -1 -1 32840 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1263 9791 2392 5641 1758 54.8 MiB 0.13 0.00 7.61341 -152.493 -7.61341 7.61341 0.77 0.000962996 0.000889773 0.0518211 0.0479273 30 3127 19 6.55708e+06 301375 526063. 1820.29 1.46 0.170013 0.150352 21886 126133 -1 2591 15 1107 3283 199524 43164 6.54724 6.54724 -143.895 -6.54724 0 0 666494. 2306.21 0.23 0.08 0.12 -1 -1 0.23 0.0318681 0.0282915 175 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.26 18116 13 0.35 -1 -1 32688 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1335 6813 1455 4737 621 55.0 MiB 0.10 0.00 7.97606 -158.638 -7.97606 7.97606 0.77 0.00106769 0.000986621 0.0385962 0.0356998 30 3616 21 6.55708e+06 349595 526063. 1820.29 3.73 0.335293 0.291719 21886 126133 -1 2923 30 1636 5311 525544 199055 6.97036 6.97036 -150.359 -6.97036 0 0 666494. 2306.21 0.23 0.20 0.13 -1 -1 0.23 0.0605475 0.0531885 205 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.22 17400 13 0.19 -1 -1 32364 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55720 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 15.9 MiB 0.48 1181 4811 970 3437 404 54.4 MiB 0.07 0.00 7.32681 -149.503 -7.32681 7.32681 0.77 0.000837904 0.000771274 0.0244194 0.0225557 26 3368 40 6.55708e+06 289320 477104. 1650.88 5.52 0.256339 0.222627 21022 109990 -1 2758 18 1249 3270 238881 53595 6.50744 6.50744 -148.896 -6.50744 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0317478 0.0280816 147 146 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.28 18084 13 0.41 -1 -1 32884 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1409 6058 1135 4495 428 55.0 MiB 0.10 0.00 8.2444 -163.721 -8.2444 8.2444 0.76 0.0010653 0.000985209 0.035706 0.0330796 36 3353 18 6.55708e+06 385760 612192. 2118.31 3.40 0.248094 0.218728 22750 144809 -1 3022 16 1375 3907 259776 55993 7.28976 7.28976 -154.724 -7.28976 0 0 782063. 2706.10 0.37 0.10 0.15 -1 -1 0.37 0.0392249 0.0350867 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.27 17648 14 0.30 -1 -1 32728 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55960 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 16.2 MiB 0.43 1264 7231 1520 5560 151 54.6 MiB 0.11 0.00 8.00109 -166.402 -8.00109 8.00109 0.76 0.000993233 0.00091465 0.0399917 0.0369258 30 3454 43 6.55708e+06 325485 526063. 1820.29 1.82 0.191625 0.167767 21886 126133 -1 2830 16 1236 4070 235392 51684 7.0005 7.0005 -159.939 -7.0005 0 0 666494. 2306.21 0.25 0.10 0.12 -1 -1 0.25 0.0369126 0.0329817 181 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17784 13 0.22 -1 -1 32800 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1305 14323 3915 8229 2179 54.8 MiB 0.18 0.00 7.86768 -158.537 -7.86768 7.86768 0.76 0.000970253 0.00089848 0.0747887 0.0692361 38 3113 23 6.55708e+06 301375 638502. 2209.35 2.63 0.274897 0.242224 23326 155178 -1 2612 14 1050 3203 206966 42192 7.01838 7.01838 -151.342 -7.01838 0 0 851065. 2944.86 0.27 0.09 0.15 -1 -1 0.27 0.031252 0.0278483 175 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.28 18088 13 0.21 -1 -1 32728 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55948 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 16.0 MiB 0.36 1164 9989 2471 5804 1714 54.6 MiB 0.14 0.00 7.4808 -136.781 -7.4808 7.4808 0.77 0.00094578 0.000874864 0.0523309 0.0483589 36 3098 16 6.55708e+06 325485 612192. 2118.31 4.53 0.361378 0.314532 22750 144809 -1 2629 16 1257 3780 247946 54103 6.6047 6.6047 -133.533 -6.6047 0 0 782063. 2706.10 0.28 0.10 0.14 -1 -1 0.28 0.0348971 0.0311018 178 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17812 14 0.35 -1 -1 32864 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 16.4 MiB 0.34 1476 8091 1866 5495 730 55.2 MiB 0.12 0.00 7.88885 -165.953 -7.88885 7.88885 0.77 0.00110896 0.00102499 0.0425686 0.0394032 28 4340 34 6.55708e+06 446035 500653. 1732.36 7.43 0.339868 0.297041 21310 115450 -1 3570 32 2202 6795 628220 202187 6.98824 6.98824 -163.228 -6.98824 0 0 612192. 2118.31 0.22 0.23 0.12 -1 -1 0.22 0.0660018 0.0585678 218 216 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.27 17840 11 0.27 -1 -1 32688 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 16.4 MiB 0.40 1160 8130 1856 5819 455 54.8 MiB 0.11 0.00 6.86478 -134.007 -6.86478 6.86478 0.77 0.000970896 0.000895865 0.0430517 0.0397226 28 3792 47 6.55708e+06 349595 500653. 1732.36 2.73 0.205971 0.180744 21310 115450 -1 3088 19 1559 4520 315845 69631 6.22218 6.22218 -135.386 -6.22218 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0389519 0.0344384 177 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.22 17280 13 0.16 -1 -1 32592 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55564 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 15.8 MiB 0.28 1142 8083 2034 5178 871 54.3 MiB 0.10 0.00 7.01052 -158.499 -7.01052 7.01052 0.78 0.00080438 0.00074373 0.0357135 0.0329976 28 3197 32 6.55708e+06 289320 500653. 1732.36 2.75 0.149323 0.131357 21310 115450 -1 2761 15 1103 2870 205190 44547 6.01958 6.01958 -154.979 -6.01958 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0264098 0.0234392 138 128 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.23 17784 14 0.23 -1 -1 32892 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 16.3 MiB 0.49 1316 5267 941 3849 477 54.8 MiB 0.08 0.00 8.08175 -166.146 -8.08175 8.08175 0.79 0.000954755 0.000883002 0.0280019 0.0258933 36 3260 50 6.55708e+06 337540 612192. 2118.31 3.62 0.253764 0.220286 22750 144809 -1 2849 19 1129 3361 242469 50390 7.1997 7.1997 -157.776 -7.1997 0 0 782063. 2706.10 0.25 0.10 0.14 -1 -1 0.25 0.0373789 0.0330302 179 173 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.27 18252 15 0.45 -1 -1 32824 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1738 9421 2028 6135 1258 55.3 MiB 0.15 0.00 9.11118 -191.695 -9.11118 9.11118 0.76 0.00118797 0.00109763 0.0550931 0.0509976 30 4786 29 6.55708e+06 397815 526063. 1820.29 2.19 0.218572 0.193032 21886 126133 -1 3874 27 1739 5356 457794 143809 7.85982 7.85982 -181.429 -7.85982 0 0 666494. 2306.21 0.23 0.18 0.13 -1 -1 0.23 0.0625786 0.0552761 241 240 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.19 17376 11 0.16 -1 -1 32728 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55428 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 15.5 MiB 0.37 1015 8213 1831 5887 495 54.1 MiB 0.10 0.00 6.43354 -132.345 -6.43354 6.43354 0.77 0.000783876 0.000722896 0.0367508 0.0339406 28 2606 17 6.55708e+06 265210 500653. 1732.36 3.10 0.210253 0.183259 21310 115450 -1 2248 15 817 2392 162402 36217 5.46178 5.46178 -127.983 -5.46178 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0259337 0.0230305 129 126 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17452 12 0.22 -1 -1 32836 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 16.0 MiB 0.24 1181 9395 2257 5715 1423 54.6 MiB 0.12 0.00 7.12111 -149.72 -7.12111 7.12111 0.76 0.000863108 0.000796499 0.0438865 0.0405597 28 3562 31 6.55708e+06 313430 500653. 1732.36 5.93 0.296769 0.258819 21310 115450 -1 2956 16 1351 3839 275530 59469 6.25678 6.25678 -148.984 -6.25678 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.030078 0.0266715 156 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.27 17804 12 0.29 -1 -1 32768 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1374 9732 2347 6008 1377 55.0 MiB 0.14 0.00 7.22518 -156.32 -7.22518 7.22518 0.77 0.00108585 0.00100373 0.0523153 0.0483237 30 3779 48 6.55708e+06 385760 526063. 1820.29 2.07 0.234782 0.206552 21886 126133 -1 2928 17 1428 4220 246015 54621 6.2807 6.2807 -146.832 -6.2807 0 0 666494. 2306.21 0.25 0.11 0.14 -1 -1 0.25 0.0403084 0.0358446 213 206 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.27 17608 12 0.23 -1 -1 32856 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 16.4 MiB 0.30 1295 7929 1664 5456 809 54.9 MiB 0.12 0.00 7.52995 -159.234 -7.52995 7.52995 0.77 0.000980321 0.000899966 0.0423395 0.0391539 34 3597 23 6.55708e+06 313430 585099. 2024.56 2.20 0.192971 0.169061 22462 138074 -1 3042 15 1213 3696 259075 55304 6.8431 6.8431 -153.255 -6.8431 0 0 742403. 2568.87 0.26 0.09 0.14 -1 -1 0.26 0.0333329 0.0298112 181 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.27 18020 14 0.43 -1 -1 32920 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 16.7 MiB 0.49 1613 7655 1578 5578 499 55.2 MiB 0.13 0.00 9.00229 -179.771 -9.00229 9.00229 0.77 0.00118144 0.00108757 0.0465392 0.0430205 36 4283 33 6.55708e+06 373705 612192. 2118.31 5.43 0.314803 0.276701 22750 144809 -1 3750 15 1581 5168 352126 73835 7.89841 7.89841 -171.192 -7.89841 0 0 782063. 2706.10 0.25 0.12 0.09 -1 -1 0.25 0.0398858 0.035635 234 233 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17940 12 0.20 -1 -1 32628 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 16.0 MiB 0.40 1246 9687 2384 6348 955 54.7 MiB 0.13 0.00 7.02918 -135.408 -7.02918 7.02918 0.76 0.000908129 0.000840219 0.0502524 0.0464327 30 3093 30 6.55708e+06 301375 526063. 1820.29 3.66 0.32267 0.280534 21886 126133 -1 2601 14 952 2992 171304 37135 6.01898 6.01898 -129.144 -6.01898 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0296314 0.0263982 160 158 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.23 17552 11 0.18 -1 -1 32552 -1 -1 26 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55708 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 16.0 MiB 0.27 833 9013 2082 5123 1808 54.4 MiB 0.10 0.00 7.08055 -122.398 -7.08055 7.08055 0.76 0.000786855 0.000727039 0.0408917 0.0377973 26 2813 40 6.55708e+06 313430 477104. 1650.88 3.73 0.267408 0.232649 21022 109990 -1 2171 17 937 2761 165712 39057 6.03064 6.03064 -119.504 -6.03064 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0285235 0.025197 140 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.31 18348 13 0.41 -1 -1 32884 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 17.1 MiB 0.41 1984 9864 2435 6697 732 55.3 MiB 0.16 0.00 7.66038 -164.562 -7.66038 7.66038 0.76 0.00130225 0.0012032 0.0578459 0.0534482 36 5188 30 6.55708e+06 482200 612192. 2118.31 4.47 0.27703 0.243411 22750 144809 -1 4134 18 1859 6040 418294 86378 6.62764 6.62764 -156.827 -6.62764 0 0 782063. 2706.10 0.26 0.15 0.15 -1 -1 0.26 0.0520067 0.0462014 286 286 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.28 17936 14 0.25 -1 -1 33164 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.3 MiB 0.20 1315 7027 1431 4957 639 54.7 MiB 0.10 0.00 8.27869 -161.961 -8.27869 8.27869 0.76 0.000995658 0.000920803 0.0380324 0.0352165 30 3164 21 6.55708e+06 337540 526063. 1820.29 3.50 0.319079 0.277616 21886 126133 -1 2717 20 1228 3374 190005 42260 7.16956 7.16956 -152.488 -7.16956 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0406289 0.035913 188 186 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.21 17800 12 0.15 -1 -1 32484 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55724 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 15.9 MiB 0.35 1196 5395 963 4230 202 54.4 MiB 0.08 0.00 7.24055 -154.388 -7.24055 7.24055 0.77 0.000825436 0.0007617 0.0249829 0.0231189 28 2993 38 6.55708e+06 325485 500653. 1732.36 5.06 0.247538 0.214845 21310 115450 -1 2606 20 1043 2890 276023 83400 6.19064 6.19064 -146.431 -6.19064 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0339723 0.0300235 145 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.25 17724 13 0.27 -1 -1 32824 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55932 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 16.0 MiB 0.39 1201 6321 1371 4614 336 54.6 MiB 0.09 0.00 7.64034 -157.02 -7.64034 7.64034 0.81 0.000829424 0.000745973 0.0329533 0.0304048 30 3239 27 6.55708e+06 313430 526063. 1820.29 1.45 0.166763 0.146556 21886 126133 -1 2588 16 1130 3396 196248 42669 6.6419 6.6419 -146.146 -6.6419 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0338772 0.0301208 169 169 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.27 18032 13 0.31 -1 -1 32988 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 16.7 MiB 0.26 1537 8423 1899 6115 409 55.2 MiB 0.13 0.00 7.71709 -159.898 -7.71709 7.71709 0.76 0.00112546 0.00103971 0.0467505 0.0432169 36 4093 31 6.55708e+06 421925 612192. 2118.31 3.25 0.29141 0.255521 22750 144809 -1 3395 17 1591 4790 312816 69074 6.7601 6.7601 -150.455 -6.7601 0 0 782063. 2706.10 0.26 0.12 0.14 -1 -1 0.26 0.0413583 0.0367709 233 230 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.26 17804 11 0.24 -1 -1 32756 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 16.3 MiB 0.23 1421 8703 2291 5674 738 54.9 MiB 0.12 0.00 6.43018 -129.379 -6.43018 6.43018 0.76 0.00102909 0.000951972 0.0462748 0.0428257 40 3001 24 6.55708e+06 373705 666494. 2306.21 4.90 0.356035 0.310586 23614 160646 -1 2974 15 1197 4141 296225 60365 5.62318 5.62318 -121.676 -5.62318 0 0 872365. 3018.56 0.28 0.10 0.16 -1 -1 0.28 0.0349424 0.0311931 199 199 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.28 17728 15 0.33 -1 -1 32720 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 16.4 MiB 0.46 1495 8283 1832 5858 593 55.0 MiB 0.13 0.00 9.21891 -185.491 -9.21891 9.21891 0.78 0.00105795 0.000976715 0.0463133 0.0428196 36 3629 25 6.55708e+06 349595 612192. 2118.31 2.06 0.237376 0.208276 22750 144809 -1 3145 15 1242 3969 246033 52639 8.05581 8.05581 -173.206 -8.05581 0 0 782063. 2706.10 0.27 0.11 0.15 -1 -1 0.27 0.0388671 0.0348013 202 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.28 18072 13 0.31 -1 -1 32756 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 16.2 MiB 0.41 1391 6271 1140 4757 374 54.8 MiB 0.10 0.00 8.07023 -173.04 -8.07023 8.07023 0.77 0.00103057 0.000952423 0.0345129 0.0319456 30 3630 21 6.55708e+06 361650 526063. 1820.29 1.55 0.166045 0.146111 21886 126133 -1 2799 15 1183 3641 199500 43520 7.10844 7.10844 -158.375 -7.10844 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0348435 0.0310295 194 191 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.23 17636 12 0.19 -1 -1 32628 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 15.8 MiB 0.42 1116 9738 2558 6406 774 54.4 MiB 0.12 0.00 7.61081 -154.169 -7.61081 7.61081 0.76 0.00084993 0.000785824 0.0444997 0.0411203 28 3426 49 6.55708e+06 349595 500653. 1732.36 7.29 0.287761 0.251739 21310 115450 -1 2754 16 1368 3692 243882 53409 6.5609 6.5609 -147.08 -6.5609 0 0 612192. 2118.31 0.31 0.09 0.13 -1 -1 0.31 0.0304782 0.0271796 157 154 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.25 17804 11 0.15 -1 -1 32676 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 15.9 MiB 0.21 1023 14221 4533 7413 2275 54.4 MiB 0.16 0.00 6.85492 -138.928 -6.85492 6.85492 0.77 0.00080621 0.000743424 0.0653552 0.0602265 30 2930 42 6.55708e+06 253155 526063. 1820.29 1.40 0.191054 0.168794 21886 126133 -1 2272 16 1010 2648 158319 35228 6.10198 6.10198 -136.908 -6.10198 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0277642 0.0245955 145 141 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.27 17588 13 0.31 -1 -1 32788 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 16.2 MiB 0.46 1413 7544 1727 4833 984 54.8 MiB 0.11 0.00 7.87899 -160.785 -7.87899 7.87899 0.76 0.000957142 0.000878103 0.0418682 0.0387176 36 3790 32 6.55708e+06 349595 612192. 2118.31 3.33 0.26763 0.233174 22750 144809 -1 3125 19 1393 4393 303298 63499 6.7993 6.7993 -152.763 -6.7993 0 0 782063. 2706.10 0.25 0.11 0.14 -1 -1 0.25 0.0411044 0.0364077 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.14 17460 10 0.20 -1 -1 32712 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55548 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 15.8 MiB 0.18 868 12919 4781 6181 1957 54.2 MiB 0.15 0.00 5.78714 -114.742 -5.78714 5.78714 0.76 0.000777303 0.000716986 0.0577241 0.0532563 34 2470 50 6.55708e+06 289320 585099. 2024.56 2.17 0.214464 0.188326 22462 138074 -1 1935 15 911 2794 179000 41152 5.29412 5.29412 -110.78 -5.29412 0 0 742403. 2568.87 0.22 0.04 0.09 -1 -1 0.22 0.0142756 0.0128895 137 134 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17648 14 0.19 -1 -1 32644 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 16.0 MiB 0.49 1127 8083 1934 5578 571 54.5 MiB 0.11 0.00 7.89252 -162.804 -7.89252 7.89252 0.90 0.000851279 0.00077954 0.0385098 0.0355103 28 3256 30 6.55708e+06 289320 500653. 1732.36 7.30 0.291356 0.253265 21310 115450 -1 2737 54 1406 4279 758399 408959 7.54663 7.54663 -173.635 -7.54663 0 0 612192. 2118.31 0.21 0.31 0.12 -1 -1 0.21 0.0791408 0.0689162 146 145 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.28 17908 13 0.26 -1 -1 32796 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 16.2 MiB 0.31 1259 5343 1011 3807 525 54.6 MiB 0.08 0.00 7.51815 -158.387 -7.51815 7.51815 0.77 0.000957283 0.000886109 0.0278983 0.0258651 28 4167 47 6.55708e+06 361650 500653. 1732.36 9.75 0.308787 0.26846 21310 115450 -1 3217 32 1909 5802 618583 179366 6.90984 6.90984 -164.55 -6.90984 0 0 612192. 2118.31 0.21 0.21 0.12 -1 -1 0.21 0.0561366 0.0490595 180 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.24 17680 12 0.15 -1 -1 32744 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 15.9 MiB 0.31 1126 6425 1245 4721 459 54.4 MiB 0.08 0.00 6.61153 -138.873 -6.61153 6.61153 0.76 0.000783666 0.00072345 0.0285058 0.0263254 28 2952 49 6.55708e+06 313430 500653. 1732.36 3.50 0.285736 0.248251 21310 115450 -1 2480 19 1002 2687 179971 39952 5.84992 5.84992 -135.976 -5.84992 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0312698 0.0276753 138 134 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.26 17724 12 0.20 -1 -1 32828 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1378 9336 2424 5781 1131 54.8 MiB 0.13 0.00 6.98257 -148.375 -6.98257 6.98257 0.77 0.00100735 0.00093027 0.051796 0.047842 28 4032 47 6.55708e+06 313430 500653. 1732.36 3.63 0.221428 0.194725 21310 115450 -1 3404 59 2269 9727 1442664 630702 6.27364 6.27364 -149.385 -6.27364 0 0 612192. 2118.31 0.21 0.43 0.14 -1 -1 0.21 0.0857584 0.0750464 195 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.29 18052 13 0.28 -1 -1 32776 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 16.3 MiB 0.44 1315 8372 1899 5332 1141 54.8 MiB 0.12 0.00 7.89081 -157.415 -7.89081 7.89081 0.76 0.00102642 0.000942731 0.0454524 0.0420606 34 3815 32 6.55708e+06 349595 585099. 2024.56 3.81 0.341817 0.297531 22462 138074 -1 3093 15 1250 3818 259898 56129 6.9587 6.9587 -152.888 -6.9587 0 0 742403. 2568.87 0.31 0.11 0.13 -1 -1 0.31 0.0377937 0.0341178 193 191 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.24 17388 11 0.17 -1 -1 32608 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55568 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 15.8 MiB 0.23 1172 8405 1842 5723 840 54.3 MiB 0.11 0.00 6.25963 -142.54 -6.25963 6.25963 0.78 0.000835636 0.000761279 0.0385444 0.0356087 28 3073 20 6.55708e+06 301375 500653. 1732.36 1.20 0.139297 0.122997 21310 115450 -1 2664 14 1131 3062 212948 46443 5.57032 5.57032 -137.998 -5.57032 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0263276 0.0234293 148 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.24 17640 13 0.21 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 15.8 MiB 0.28 1201 7888 1972 5242 674 54.4 MiB 0.12 0.00 7.53481 -156.077 -7.53481 7.53481 0.77 0.00112391 0.00103584 0.043625 0.0403991 34 3242 33 6.55708e+06 289320 585099. 2024.56 2.89 0.222155 0.194572 22462 138074 -1 2877 16 1211 3490 243388 53393 6.66944 6.66944 -148.41 -6.66944 0 0 742403. 2568.87 0.28 0.10 0.14 -1 -1 0.28 0.033038 0.0293553 164 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.26 17608 13 0.25 -1 -1 32812 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 16.3 MiB 0.63 1318 8165 2007 5452 706 54.8 MiB 0.12 0.00 7.90343 -168.183 -7.90343 7.90343 0.76 0.00115908 0.00105261 0.0440366 0.0406882 28 3970 28 6.55708e+06 337540 500653. 1732.36 6.27 0.275414 0.241348 21310 115450 -1 3208 17 1516 4107 297089 65138 7.0005 7.0005 -163.012 -7.0005 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0370687 0.0328973 193 191 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.27 17728 11 0.19 -1 -1 32568 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55856 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 16.0 MiB 0.19 1119 12568 3466 6955 2147 54.5 MiB 0.15 0.00 6.27069 -123.259 -6.27069 6.27069 0.76 0.000884093 0.000815713 0.060604 0.0559511 30 2935 21 6.55708e+06 325485 526063. 1820.29 1.26 0.170404 0.150939 21886 126133 -1 2411 14 1001 2976 188340 40356 5.50298 5.50298 -119.827 -5.50298 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0289185 0.0257856 160 158 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.27 18476 14 0.31 -1 -1 33412 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 16.6 MiB 0.33 1606 6711 1323 5111 277 55.0 MiB 0.11 0.00 8.36721 -183.374 -8.36721 8.36721 0.77 0.00114347 0.00105625 0.0377935 0.034976 38 3726 19 6.55708e+06 421925 638502. 2209.35 4.84 0.424133 0.368999 23326 155178 -1 3185 16 1378 4337 255001 53870 7.2389 7.2389 -167.665 -7.2389 0 0 851065. 2944.86 0.31 0.11 0.17 -1 -1 0.31 0.0415163 0.0371027 224 224 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.21 17272 12 0.15 -1 -1 32696 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55560 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 15.8 MiB 0.26 1117 4987 873 3940 174 54.3 MiB 0.07 0.00 6.95154 -148.876 -6.95154 6.95154 0.76 0.000786561 0.00072585 0.0226556 0.0209489 38 2516 15 6.55708e+06 337540 638502. 2209.35 3.93 0.200312 0.174263 23326 155178 -1 2216 13 879 2347 142957 30755 5.97978 5.97978 -136.726 -5.97978 0 0 851065. 2944.86 0.27 0.07 0.15 -1 -1 0.27 0.0247074 0.0220928 138 131 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18364 13 0.28 -1 -1 32688 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 16.3 MiB 0.38 1370 8603 2025 5470 1108 54.8 MiB 0.13 0.00 7.91043 -160.998 -7.91043 7.91043 0.76 0.000846336 0.000768381 0.0476674 0.0440579 36 3418 18 6.55708e+06 301375 612192. 2118.31 4.79 0.391853 0.34236 22750 144809 -1 2949 18 1257 3976 251333 53693 6.6393 6.6393 -147.171 -6.6393 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0391225 0.0346989 189 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.25 17836 13 0.18 -1 -1 32520 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55672 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 15.9 MiB 0.32 1056 8130 1788 5768 574 54.4 MiB 0.11 0.00 7.50778 -157.173 -7.50778 7.50778 0.77 0.000840552 0.000774374 0.0370781 0.0341746 28 3093 39 6.55708e+06 313430 500653. 1732.36 6.07 0.258483 0.2253 21310 115450 -1 2607 17 1178 3193 208622 47484 6.6419 6.6419 -154.137 -6.6419 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0300857 0.0266646 151 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.27 17724 12 0.21 -1 -1 32752 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 16.0 MiB 0.24 1163 6723 1513 4783 427 54.7 MiB 0.10 0.00 6.89912 -149.425 -6.89912 6.89912 0.77 0.000990115 0.000915854 0.037203 0.0344209 36 2903 29 6.55708e+06 313430 612192. 2118.31 4.12 0.383563 0.333293 22750 144809 -1 2532 14 1065 3266 195192 42981 6.23184 6.23184 -144.415 -6.23184 0 0 782063. 2706.10 0.26 0.09 0.14 -1 -1 0.26 0.0329943 0.0293403 176 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.16 18356 15 0.47 -1 -1 33220 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 16.8 MiB 0.26 1744 7060 1356 4899 805 55.2 MiB 0.12 0.00 8.47263 -171.112 -8.47263 8.47263 0.77 0.00126637 0.00117029 0.0436216 0.0403654 34 5204 46 6.55708e+06 433980 585099. 2024.56 7.39 0.49772 0.434695 22462 138074 -1 4243 20 2158 7167 529539 109270 7.49096 7.49096 -167.785 -7.49096 0 0 742403. 2568.87 0.25 0.17 0.14 -1 -1 0.25 0.0547475 0.0486133 256 256 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.21 17312 10 0.11 -1 -1 32288 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55176 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 15.4 MiB 0.12 585 9368 2413 5125 1830 53.9 MiB 0.09 0.00 5.46394 -116.249 -5.46394 5.46394 0.76 0.000614962 0.000567782 0.0357427 0.0330088 34 1920 45 6.55708e+06 216990 585099. 2024.56 1.77 0.1795 0.155993 22462 138074 -1 1463 19 711 1661 124699 39257 5.08126 5.08126 -119.154 -5.08126 0 0 742403. 2568.87 0.25 0.07 0.14 -1 -1 0.25 0.0238369 0.0209297 90 84 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.25 17340 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55732 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 15.9 MiB 0.17 1072 8919 2278 5395 1246 54.4 MiB 0.11 0.00 7.24406 -148.604 -7.24406 7.24406 0.77 0.000823859 0.000761988 0.0412403 0.0381504 36 2526 27 6.55708e+06 301375 612192. 2118.31 1.89 0.215164 0.188243 22750 144809 -1 2335 17 912 2575 175739 37484 6.41738 6.41738 -142.708 -6.41738 0 0 782063. 2706.10 0.26 0.08 0.15 -1 -1 0.26 0.0299496 0.0265867 143 140 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.25 17396 12 0.20 -1 -1 32612 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 15.9 MiB 0.26 1142 5938 1144 4647 147 54.6 MiB 0.09 0.00 7.66077 -153.727 -7.66077 7.66077 0.78 0.000928905 0.000859118 0.031932 0.0295537 28 3628 41 6.55708e+06 289320 500653. 1732.36 1.73 0.177337 0.155169 21310 115450 -1 2912 23 1518 4174 322873 84612 7.18944 7.18944 -159.062 -7.18944 0 0 612192. 2118.31 0.21 0.13 0.12 -1 -1 0.21 0.0427002 0.0375249 171 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.19 17280 9 0.13 -1 -1 32504 -1 -1 22 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55336 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 15.5 MiB 0.17 820 8191 2009 5395 787 54.0 MiB 0.09 0.00 5.29417 -99.0147 -5.29417 5.29417 0.71 0.00066591 0.000615713 0.034961 0.0323471 28 2308 25 6.55708e+06 265210 500653. 1732.36 1.10 0.12054 0.105947 21310 115450 -1 1932 18 785 2178 133992 30209 4.72266 4.72266 -97.6141 -4.72266 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0253673 0.0223377 111 110 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.26 17840 12 0.26 -1 -1 32792 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1501 7867 1766 5013 1088 55.1 MiB 0.12 0.00 7.24465 -156.602 -7.24465 7.24465 0.77 0.00105247 0.000972013 0.0415288 0.0384381 36 4175 37 6.55708e+06 397815 612192. 2118.31 4.38 0.291173 0.254878 22750 144809 -1 3350 16 1474 4135 290389 62058 6.4035 6.4035 -150.788 -6.4035 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0364601 0.0324036 212 206 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.28 18196 13 0.34 -1 -1 32740 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 16.4 MiB 0.30 1408 5343 959 3971 413 55.1 MiB 0.09 0.00 8.27458 -166.489 -8.27458 8.27458 0.76 0.00105397 0.000974496 0.0327611 0.0303198 30 3486 45 6.55708e+06 361650 526063. 1820.29 1.61 0.204894 0.17961 21886 126133 -1 3007 23 1388 4410 289765 85521 7.2801 7.2801 -158.739 -7.2801 0 0 666494. 2306.21 0.23 0.12 0.13 -1 -1 0.23 0.0481446 0.0424488 200 199 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.18 17640 1 0.03 -1 -1 30152 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1124 13017 3784 8461 772 54.9 MiB 0.20 0.00 5.44269 -161.211 -5.44269 5.44269 0.78 0.000771963 0.00071519 0.0490788 0.0454548 32 2550 23 6.64007e+06 401856 554710. 1919.41 1.01 0.14271 0.126276 22834 132086 -1 2172 18 1212 1884 164997 35561 4.29988 4.29988 -143.672 -4.29988 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0285056 0.0251436 154 50 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30392 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1017 14639 5117 7505 2017 55.1 MiB 0.23 0.00 4.98742 -150.865 -4.98742 4.98742 0.80 0.000767435 0.000709113 0.0602722 0.0557145 32 2375 21 6.64007e+06 301392 554710. 1919.41 1.01 0.151381 0.134258 22834 132086 -1 2047 19 1527 2279 201948 43748 4.10369 4.10369 -142.541 -4.10369 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0296717 0.0261265 139 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30272 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 16.1 MiB 0.23 982 7575 1808 5319 448 54.7 MiB 0.13 0.00 4.35696 -123.732 -4.35696 4.35696 0.92 0.000689179 0.00063762 0.0293983 0.0272228 26 2577 25 6.64007e+06 288834 477104. 1650.88 1.41 0.121274 0.106587 21682 110474 -1 2177 17 1235 1719 152604 32598 3.81383 3.81383 -127.345 -3.81383 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0242698 0.0213771 126 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.21 17800 1 0.03 -1 -1 30448 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 16.2 MiB 0.07 985 10228 2796 6251 1181 54.7 MiB 0.15 0.00 4.65835 -126.219 -4.65835 4.65835 0.77 0.000692197 0.000640284 0.038574 0.0357228 32 2207 22 6.64007e+06 339066 554710. 1919.41 0.97 0.114304 0.101155 22834 132086 -1 1994 22 1592 2950 265283 52876 3.77583 3.77583 -120.786 -3.77583 0 0 701300. 2426.64 0.29 0.09 0.14 -1 -1 0.29 0.0271965 0.023895 126 31 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.20 17576 1 0.03 -1 -1 30252 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 16.1 MiB 0.09 1007 9687 2297 6508 882 54.7 MiB 0.16 0.00 4.57112 -133.029 -4.57112 4.57112 0.76 0.000747223 0.000691949 0.0401282 0.0371847 30 2238 20 6.64007e+06 288834 526063. 1820.29 0.97 0.126805 0.112008 22546 126617 -1 2014 19 1192 2343 155025 33688 3.60343 3.60343 -127.177 -3.60343 0 0 666494. 2306.21 0.31 0.08 0.13 -1 -1 0.31 0.0285087 0.025049 130 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30348 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 16.5 MiB 0.12 1031 10673 2804 7227 642 54.9 MiB 0.17 0.00 3.47522 -121.603 -3.47522 3.47522 0.76 0.000784295 0.000725266 0.0398097 0.0368467 26 2777 27 6.64007e+06 426972 477104. 1650.88 1.37 0.138933 0.122286 21682 110474 -1 2338 20 1396 2195 197847 43441 3.32777 3.32777 -125.918 -3.32777 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0283205 0.0249207 142 58 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30628 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 15.8 MiB 0.11 589 11532 3345 7374 813 54.4 MiB 0.14 0.00 4.00878 -100.807 -4.00878 4.00878 0.77 0.00060163 0.000557016 0.0441794 0.0408923 32 1466 22 6.64007e+06 238602 554710. 1919.41 0.92 0.116424 0.10267 22834 132086 -1 1231 17 805 1337 106071 24416 2.72777 2.72777 -90.0797 -2.72777 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0211907 0.0185223 93 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17140 1 0.03 -1 -1 30076 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55772 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 16.0 MiB 0.08 892 10318 2381 7361 576 54.5 MiB 0.15 0.00 3.4251 -99.9264 -3.4251 3.4251 0.77 0.000653564 0.000604586 0.0337302 0.0312019 28 2021 22 6.64007e+06 389298 500653. 1732.36 0.94 0.112207 0.0987525 21970 115934 -1 1834 17 990 1745 128616 28196 2.77597 2.77597 -98.1348 -2.77597 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0227383 0.019952 115 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17652 1 0.03 -1 -1 30292 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56000 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 16.2 MiB 0.21 960 9623 2754 6116 753 54.7 MiB 0.14 0.00 3.62801 -120.96 -3.62801 3.62801 0.76 0.000689464 0.000637471 0.0394163 0.0365165 28 2146 20 6.64007e+06 251160 500653. 1732.36 0.95 0.120783 0.106462 21970 115934 -1 1941 17 1044 1501 123286 27361 3.02763 3.02763 -117.434 -3.02763 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0244085 0.0214669 111 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.11 17256 1 0.03 -1 -1 30048 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.2 MiB 0.18 841 12506 4273 6237 1996 54.7 MiB 0.17 0.00 3.87558 -126.558 -3.87558 3.87558 0.77 0.00067923 0.000626854 0.0507412 0.0469777 28 1958 17 6.64007e+06 213486 500653. 1732.36 0.96 0.127351 0.112916 21970 115934 -1 1869 15 1067 1685 150058 32012 2.97697 2.97697 -120.246 -2.97697 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0218457 0.0192708 112 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.20 17544 1 0.03 -1 -1 30192 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 15.9 MiB 0.16 796 12078 3517 6936 1625 54.6 MiB 0.15 0.00 4.09995 -113.228 -4.09995 4.09995 0.76 0.000668637 0.000618661 0.0500118 0.0463071 32 1623 18 6.64007e+06 213486 554710. 1919.41 0.90 0.125749 0.111407 22834 132086 -1 1529 16 712 1116 92863 19394 2.79276 2.79276 -103.097 -2.79276 0 0 701300. 2426.64 0.24 0.05 0.13 -1 -1 0.24 0.0220819 0.019356 98 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17260 1 0.03 -1 -1 30172 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 16.1 MiB 0.27 811 8448 2011 5971 466 54.5 MiB 0.12 0.00 3.76138 -119.223 -3.76138 3.76138 0.77 0.000641863 0.000594243 0.0327725 0.0303192 32 1944 19 6.64007e+06 226044 554710. 1919.41 0.92 0.108253 0.0953799 22834 132086 -1 1745 18 967 1299 113827 24663 3.01937 3.01937 -112.241 -3.01937 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0234275 0.02057 109 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17912 1 0.03 -1 -1 30212 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1094 10228 2675 6918 635 55.0 MiB 0.18 0.00 4.45106 -144.281 -4.45106 4.45106 0.77 0.000763116 0.000706973 0.0429728 0.039868 28 2628 20 6.64007e+06 301392 500653. 1732.36 0.98 0.132352 0.117161 21970 115934 -1 2363 18 1454 2162 180559 38789 3.51177 3.51177 -134.568 -3.51177 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0279014 0.0245458 139 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.2 MiB 0.17 940 8735 2013 6355 367 54.9 MiB 0.15 0.00 5.05578 -142.31 -5.05578 5.05578 0.76 0.000802986 0.000744267 0.0354271 0.0328931 26 2666 23 6.64007e+06 389298 477104. 1650.88 1.38 0.132034 0.11646 21682 110474 -1 2278 17 1396 2314 208312 43981 3.98282 3.98282 -140.561 -3.98282 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0268378 0.0236158 134 61 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30456 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55584 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 15.8 MiB 0.11 637 6668 1590 4651 427 54.3 MiB 0.09 0.00 3.28519 -90.5035 -3.28519 3.28519 0.76 0.000593809 0.000549559 0.0241147 0.0223337 28 1644 21 6.64007e+06 263718 500653. 1732.36 0.88 0.0936188 0.0818763 21970 115934 -1 1513 16 792 1313 101726 22731 2.87117 2.87117 -92.2316 -2.87117 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0195118 0.0170882 98 27 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 16.2 MiB 0.16 961 6890 1523 4904 463 54.8 MiB 0.13 0.00 4.06512 -124.686 -4.06512 4.06512 0.76 0.000787367 0.000727987 0.0313741 0.0290808 32 2340 17 6.64007e+06 276276 554710. 1919.41 0.98 0.120857 0.10649 22834 132086 -1 2039 22 1441 2590 227119 48157 3.13317 3.13317 -116.667 -3.13317 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0336537 0.0294518 133 58 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.16 17700 1 0.03 -1 -1 30020 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1114 15447 4373 9239 1835 54.9 MiB 0.23 0.00 4.49004 -144.522 -4.49004 4.49004 0.76 0.000741545 0.00068612 0.0627745 0.0581076 30 2390 20 6.64007e+06 288834 526063. 1820.29 0.93 0.150731 0.134113 22546 126617 -1 1950 18 1125 1577 120243 24951 3.38803 3.38803 -129.694 -3.38803 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0275385 0.0242867 138 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.14 17760 1 0.03 -1 -1 30320 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.1 MiB 0.14 723 8493 1892 6266 335 54.6 MiB 0.13 0.00 2.85064 -99.9956 -2.85064 2.85064 0.76 0.000707706 0.000653292 0.0308837 0.0285726 26 2030 24 6.64007e+06 364182 477104. 1650.88 1.07 0.117315 0.102901 21682 110474 -1 1685 19 1040 1658 138036 31095 2.31871 2.31871 -98.4227 -2.31871 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0262765 0.0229657 110 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17528 1 0.02 -1 -1 30124 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55484 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.6 MiB 0.06 681 12139 4399 6260 1480 54.2 MiB 0.12 0.00 2.38033 -81.64 -2.38033 2.38033 0.82 0.00053968 0.00049809 0.0414821 0.0383149 32 1419 21 6.64007e+06 188370 554710. 1919.41 0.92 0.10196 0.0901283 22834 132086 -1 1333 20 700 1006 96941 20931 2.06331 2.06331 -84.2899 -2.06331 0 0 701300. 2426.64 0.25 0.06 0.13 -1 -1 0.25 0.0213272 0.0185432 81 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30540 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 16.2 MiB 0.24 706 14123 4873 6572 2678 54.7 MiB 0.17 0.00 4.95769 -142.332 -4.95769 4.95769 0.85 0.000660094 0.000609877 0.0543555 0.0502452 34 2331 41 6.64007e+06 251160 585099. 2024.56 1.93 0.172825 0.15193 23122 138558 -1 1678 19 890 1238 131309 32432 3.80983 3.80983 -131.646 -3.80983 0 0 742403. 2568.87 0.25 0.07 0.11 -1 -1 0.25 0.0254744 0.0223702 128 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.12 17692 1 0.03 -1 -1 30360 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.2 MiB 0.07 905 8735 1899 5951 885 54.9 MiB 0.13 0.00 4.18572 -129.145 -4.18572 4.18572 0.77 0.000761394 0.00070471 0.0330949 0.0306233 30 2128 19 6.64007e+06 389298 526063. 1820.29 0.98 0.119334 0.10508 22546 126617 -1 1803 22 1159 1811 134866 28963 3.46843 3.46843 -122.128 -3.46843 0 0 666494. 2306.21 0.26 0.07 0.14 -1 -1 0.26 0.0275085 0.0243232 135 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17520 1 0.03 -1 -1 30260 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 16.5 MiB 0.27 1203 12167 3358 7515 1294 55.1 MiB 0.21 0.00 4.64616 -143.706 -4.64616 4.64616 0.81 0.000798089 0.00073782 0.0467426 0.0430318 26 3134 27 6.64007e+06 313950 477104. 1650.88 2.22 0.151731 0.133843 21682 110474 -1 2630 20 1634 2552 241312 49583 4.05669 4.05669 -143.007 -4.05669 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0315351 0.0277176 144 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17404 1 0.02 -1 -1 30548 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55332 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 15.4 MiB 0.15 410 10636 4183 5187 1266 54.0 MiB 0.09 0.00 2.43955 -66.7065 -2.43955 2.43955 0.77 0.000464534 0.000428745 0.0324296 0.0299533 26 1174 20 6.64007e+06 226044 477104. 1650.88 0.98 0.0888932 0.0784439 21682 110474 -1 919 18 612 858 73700 19326 1.99631 1.99631 -68.342 -1.99631 0 0 585099. 2024.56 0.22 0.05 0.12 -1 -1 0.22 0.0168004 0.0146292 77 30 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.19 17120 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 16.2 MiB 0.06 995 7897 1725 4978 1194 54.7 MiB 0.12 0.00 5.05066 -128.356 -5.05066 5.05066 0.77 0.000672976 0.000622841 0.0307496 0.0284963 28 2244 18 6.64007e+06 263718 500653. 1732.36 0.92 0.108194 0.0951945 21970 115934 -1 2010 16 968 1776 137020 29117 3.78882 3.78882 -124.106 -3.78882 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0229264 0.0202089 118 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.17 17004 1 0.02 -1 -1 30040 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55348 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.5 MiB 0.06 661 11200 3826 5626 1748 54.1 MiB 0.10 0.00 2.56853 -79.0193 -2.56853 2.56853 0.77 0.000459799 0.000423087 0.0329119 0.0303138 28 1296 14 6.64007e+06 175812 500653. 1732.36 0.84 0.0825455 0.0728726 21970 115934 -1 1197 18 426 474 43613 9748 2.02211 2.02211 -77.8483 -2.02211 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0166138 0.0145153 79 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30368 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 16.2 MiB 0.06 831 10318 2723 6880 715 54.7 MiB 0.15 0.00 4.58015 -125.342 -4.58015 4.58015 0.77 0.000688844 0.000637513 0.0358768 0.0332002 28 2083 19 6.64007e+06 376740 500653. 1732.36 0.92 0.116578 0.102832 21970 115934 -1 1797 19 1054 1726 131288 30343 3.53343 3.53343 -115.275 -3.53343 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0261466 0.0229287 123 24 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17268 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.2 MiB 0.06 850 7439 1494 5462 483 54.7 MiB 0.12 0.00 3.82887 -106.637 -3.82887 3.82887 0.76 0.000700385 0.000648792 0.025884 0.0239693 28 2249 21 6.64007e+06 389298 500653. 1732.36 0.95 0.10822 0.0949726 21970 115934 -1 1911 21 1256 2200 153079 36769 2.88296 2.88296 -105.593 -2.88296 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290171 0.0254535 128 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30376 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 16.2 MiB 0.14 906 17635 6157 8662 2816 54.8 MiB 0.25 0.00 4.78135 -133.838 -4.78135 4.78135 0.77 0.000743443 0.000681554 0.0662391 0.0612154 28 2683 40 6.64007e+06 339066 500653. 1732.36 1.46 0.177363 0.156812 21970 115934 -1 2074 22 1304 2253 192629 40359 3.56623 3.56623 -126.679 -3.56623 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0311941 0.0273318 126 50 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17320 1 0.03 -1 -1 30068 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 15.9 MiB 0.08 735 5928 1206 4471 251 54.5 MiB 0.09 0.00 3.02179 -99.7239 -3.02179 3.02179 0.76 0.000654695 0.000606494 0.0247336 0.0229345 26 2127 25 6.64007e+06 200928 477104. 1650.88 1.05 0.105486 0.0922527 21682 110474 -1 1767 20 1070 1711 140098 31087 2.80397 2.80397 -106.344 -2.80397 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.025852 0.0225805 101 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17288 1 0.03 -1 -1 30156 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55672 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 15.8 MiB 0.09 661 11617 2521 8405 691 54.4 MiB 0.13 0.00 3.24119 -97.0143 -3.24119 3.24119 0.77 0.000618876 0.00057246 0.0404628 0.0374287 28 1736 19 6.64007e+06 288834 500653. 1732.36 1.04 0.112185 0.0989686 21970 115934 -1 1497 16 837 1281 109010 24192 2.92317 2.92317 -99.5865 -2.92317 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0204666 0.0179469 97 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30064 -1 -1 23 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 15.9 MiB 0.06 583 14123 3845 8834 1444 54.4 MiB 0.15 0.00 3.43604 -94.4648 -3.43604 3.43604 0.79 0.000602663 0.000557295 0.0495191 0.0458057 28 1810 25 6.64007e+06 288834 500653. 1732.36 1.01 0.124989 0.110461 21970 115934 -1 1533 20 872 1484 107810 26926 2.70157 2.70157 -94.7151 -2.70157 0 0 612192. 2118.31 0.21 0.06 0.13 -1 -1 0.21 0.023982 0.0209374 98 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30340 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 15.8 MiB 0.06 702 4763 881 3747 135 54.4 MiB 0.08 0.00 3.98575 -113.461 -3.98575 3.98575 0.77 0.000627723 0.000580328 0.018531 0.0171794 26 2431 46 6.64007e+06 238602 477104. 1650.88 1.36 0.115079 0.0998834 21682 110474 -1 1806 21 1375 2211 187597 42728 3.13137 3.13137 -116.342 -3.13137 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0252591 0.0220589 110 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30076 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55748 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 15.8 MiB 0.06 705 6924 1381 5320 223 54.4 MiB 0.10 0.00 3.56847 -102.973 -3.56847 3.56847 0.77 0.000635997 0.000588278 0.0239399 0.0221772 26 2138 23 6.64007e+06 339066 477104. 1650.88 1.11 0.10954 0.0956655 21682 110474 -1 1650 15 903 1521 121231 27356 2.92897 2.92897 -101.966 -2.92897 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.0201321 0.017689 103 30 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.15 17652 1 0.02 -1 -1 30380 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 16.2 MiB 0.10 800 11799 3784 6073 1942 54.6 MiB 0.15 0.00 3.4791 -109.298 -3.4791 3.4791 0.77 0.000649115 0.000600362 0.0422126 0.0390693 28 1933 17 6.64007e+06 326508 500653. 1732.36 0.91 0.115364 0.10195 21970 115934 -1 1682 18 971 1397 112716 24417 2.48317 2.48317 -98.0695 -2.48317 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0234876 0.0205435 105 54 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.16 17516 1 0.03 -1 -1 30592 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 16.6 MiB 0.11 1109 16524 4269 9768 2487 55.2 MiB 0.23 0.00 4.35696 -124.032 -4.35696 4.35696 0.77 0.000800948 0.00074126 0.058645 0.0542584 32 2587 22 6.64007e+06 477204 554710. 1919.41 0.98 0.155821 0.138397 22834 132086 -1 2249 18 1220 2102 167513 35060 3.68263 3.68263 -120.104 -3.68263 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.029599 0.0261027 151 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.16 17668 1 0.03 -1 -1 30368 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 16.6 MiB 0.14 1062 10676 2654 7216 806 55.0 MiB 0.17 0.00 3.87558 -130.413 -3.87558 3.87558 0.81 0.000828721 0.000765445 0.0405288 0.0374622 26 2643 30 6.64007e+06 464646 477104. 1650.88 1.15 0.150674 0.132638 21682 110474 -1 2136 21 1582 2596 238300 48102 2.92737 2.92737 -119.055 -2.92737 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.033801 0.0296777 147 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17704 1 0.03 -1 -1 30200 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 16.1 MiB 0.25 894 10228 3268 4917 2043 54.6 MiB 0.14 0.00 4.39381 -127.308 -4.39381 4.39381 0.80 0.000648438 0.000599911 0.0396621 0.0367461 32 2023 18 6.64007e+06 238602 554710. 1919.41 0.92 0.113375 0.100174 22834 132086 -1 1772 20 1001 1397 116873 25431 3.09363 3.09363 -113.953 -3.09363 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.0252281 0.0220392 112 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30416 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 16.3 MiB 0.12 1026 15298 5172 7552 2574 54.9 MiB 0.22 0.00 4.30797 -133.38 -4.30797 4.30797 0.85 0.000785464 0.000726394 0.0571251 0.0525492 32 2284 23 6.64007e+06 313950 554710. 1919.41 1.01 0.153079 0.135809 22834 132086 -1 1999 20 1273 2309 187819 39170 3.01497 3.01497 -115.569 -3.01497 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0310289 0.0272529 138 61 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30264 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1296 14996 4340 8343 2313 55.1 MiB 0.25 0.00 5.87616 -177.472 -5.87616 5.87616 0.76 0.000791322 0.00073174 0.0602957 0.0558029 32 3076 21 6.64007e+06 364182 554710. 1919.41 1.05 0.155411 0.138047 22834 132086 -1 2576 19 1734 2595 225169 47218 4.76615 4.76615 -164.427 -4.76615 0 0 701300. 2426.64 0.26 0.10 0.15 -1 -1 0.26 0.0293039 0.0260916 172 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30420 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 16.6 MiB 0.38 1150 16974 4810 10660 1504 55.1 MiB 0.26 0.00 5.08852 -153.875 -5.08852 5.08852 0.77 0.000819263 0.000757859 0.0711731 0.0658168 28 3002 21 6.64007e+06 339066 500653. 1732.36 1.09 0.168437 0.150017 21970 115934 -1 2585 20 1650 2586 239810 49614 4.41208 4.41208 -151.011 -4.41208 0 0 612192. 2118.31 0.22 0.11 0.13 -1 -1 0.22 0.0341505 0.0302533 164 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30456 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 16.3 MiB 0.16 1075 13513 3858 8482 1173 54.9 MiB 0.21 0.00 4.68524 -137.744 -4.68524 4.68524 0.77 0.000768348 0.000711161 0.0510149 0.0472075 30 2319 19 6.64007e+06 389298 526063. 1820.29 0.92 0.139182 0.123218 22546 126617 -1 1953 15 828 1329 83006 18733 3.23063 3.23063 -122.092 -3.23063 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0244742 0.0216663 135 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30356 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 16.2 MiB 0.22 975 7767 1720 5470 577 54.7 MiB 0.12 0.00 4.38513 -117.551 -4.38513 4.38513 0.76 0.000667153 0.000618108 0.0294368 0.0272749 26 2756 21 6.64007e+06 288834 477104. 1650.88 1.52 0.109394 0.0960362 21682 110474 -1 2177 19 1264 1860 168046 35620 3.71263 3.71263 -120.577 -3.71263 0 0 585099. 2024.56 0.22 0.09 0.12 -1 -1 0.22 0.0269038 0.0235375 119 27 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17964 1 0.03 -1 -1 30400 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1225 15720 4488 9844 1388 55.1 MiB 0.26 0.01 5.18355 -167.471 -5.18355 5.18355 0.77 0.000953365 0.00088395 0.0644167 0.0596889 26 3254 33 6.64007e+06 502320 477104. 1650.88 1.26 0.195354 0.172713 21682 110474 -1 2754 20 1681 2544 220010 46718 4.34089 4.34089 -158.554 -4.34089 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0373665 0.0328339 174 87 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30244 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55784 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 15.9 MiB 0.10 755 11064 4559 5783 722 54.5 MiB 0.11 0.00 3.8227 -103.618 -3.8227 3.8227 0.77 0.000614627 0.000567907 0.0390023 0.0360394 30 1707 20 6.64007e+06 263718 526063. 1820.29 0.93 0.110995 0.0977842 22546 126617 -1 1417 18 836 1343 95100 21157 2.91997 2.91997 -101.306 -2.91997 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0225946 0.0197707 101 28 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30132 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1189 14518 4594 8025 1899 55.0 MiB 0.24 0.01 5.24081 -156.256 -5.24081 5.24081 0.77 0.000748612 0.000693272 0.0581841 0.0538982 28 2921 32 6.64007e+06 313950 500653. 1732.36 1.17 0.16109 0.142849 21970 115934 -1 2430 20 1241 1747 157442 32455 4.46928 4.46928 -147.999 -4.46928 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0300517 0.0264294 144 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.17 17508 1 0.03 -1 -1 30300 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.2 MiB 0.14 1030 10531 2414 7661 456 54.9 MiB 0.18 0.01 4.0171 -121.213 -4.0171 4.0171 0.77 0.000758281 0.000701226 0.0383618 0.0354875 26 3141 41 6.64007e+06 414414 477104. 1650.88 2.52 0.15529 0.136193 21682 110474 -1 2278 24 1451 2764 275335 62648 3.06917 3.06917 -117.495 -3.06917 0 0 585099. 2024.56 0.20 0.11 0.12 -1 -1 0.20 0.0345053 0.0301551 131 53 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17252 1 0.03 -1 -1 30016 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 16.2 MiB 0.06 891 13153 4464 6066 2623 54.7 MiB 0.18 0.00 4.20356 -126.138 -4.20356 4.20356 0.77 0.000680713 0.000629638 0.0482979 0.044718 32 2099 22 6.64007e+06 301392 554710. 1919.41 0.96 0.130688 0.115704 22834 132086 -1 1739 19 1019 1895 147772 32249 3.58443 3.58443 -116.918 -3.58443 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0260574 0.0228688 123 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30444 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 16.6 MiB 0.28 1089 13933 3596 8128 2209 55.1 MiB 0.20 0.00 4.81394 -142.313 -4.81394 4.81394 0.76 0.000756093 0.000699466 0.0568901 0.0526632 28 2433 18 6.64007e+06 301392 500653. 1732.36 2.74 0.229502 0.201011 21970 115934 -1 2240 16 1130 1585 128561 27963 3.52543 3.52543 -129.485 -3.52543 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0256317 0.0226662 138 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.12 17700 1 0.03 -1 -1 30220 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 16.2 MiB 0.17 935 7980 1596 5688 696 54.8 MiB 0.13 0.00 3.76946 -120.7 -3.76946 3.76946 0.78 0.000777577 0.000719865 0.0313787 0.028793 30 2166 18 6.64007e+06 401856 526063. 1820.29 0.96 0.120723 0.106037 22546 126617 -1 1892 20 1014 1872 115915 26009 2.97297 2.97297 -110.413 -2.97297 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0305117 0.0268046 133 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.17 17632 1 0.03 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 16.6 MiB 0.12 901 8796 1803 6364 629 55.0 MiB 0.16 0.00 4.787 -140.677 -4.787 4.787 0.77 0.000808734 0.000747838 0.0336025 0.0311113 32 2374 22 6.64007e+06 464646 554710. 1919.41 0.97 0.131143 0.115456 22834 132086 -1 1947 17 1067 1566 109849 26349 3.48202 3.48202 -123.833 -3.48202 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0284533 0.0250535 145 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.16 17320 1 0.03 -1 -1 30368 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.1 MiB 0.06 902 12903 3419 8175 1309 54.7 MiB 0.18 0.00 4.24273 -122.494 -4.24273 4.24273 0.77 0.000702958 0.000650427 0.045521 0.0421137 32 1993 23 6.64007e+06 364182 554710. 1919.41 0.94 0.130921 0.115731 22834 132086 -1 1766 19 1117 1798 148531 31791 3.67963 3.67963 -117.81 -3.67963 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0281614 0.0246138 122 24 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.16 17876 1 0.02 -1 -1 30388 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 16.2 MiB 0.26 983 6913 1568 4936 409 55.0 MiB 0.12 0.00 5.07997 -139.694 -5.07997 5.07997 0.77 0.000730288 0.00067653 0.0280513 0.0259707 32 2325 21 6.64007e+06 301392 554710. 1919.41 0.95 0.116506 0.10263 22834 132086 -1 2028 20 1330 1914 154691 34739 3.73882 3.73882 -128.095 -3.73882 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0287845 0.0253193 133 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.13 17820 1 0.03 -1 -1 30260 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 16.5 MiB 0.30 1148 9058 2364 5808 886 55.2 MiB 0.16 0.00 5.0113 -149.211 -5.0113 5.0113 0.82 0.000794388 0.00073521 0.0397359 0.0367823 26 3365 45 6.64007e+06 313950 477104. 1650.88 2.45 0.16876 0.148244 21682 110474 -1 2652 21 1775 2874 255464 53663 3.83983 3.83983 -140.735 -3.83983 0 0 585099. 2024.56 0.21 0.10 0.13 -1 -1 0.21 0.0337875 0.0297865 148 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30224 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 16.4 MiB 0.17 977 15962 5144 8098 2720 54.8 MiB 0.28 0.00 4.21776 -130.397 -4.21776 4.21776 0.78 0.000815895 0.000754642 0.069382 0.0640063 32 2689 22 6.64007e+06 276276 554710. 1919.41 1.14 0.16954 0.150496 22834 132086 -1 2234 15 1264 2270 188583 40020 3.76882 3.76882 -127.791 -3.76882 0 0 701300. 2426.64 0.27 0.08 0.13 -1 -1 0.27 0.0262987 0.0232634 136 77 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17496 1 0.03 -1 -1 30072 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 15.9 MiB 0.06 763 11398 3223 7297 878 54.4 MiB 0.14 0.00 3.46744 -102.907 -3.46744 3.46744 0.77 0.000608134 0.000562231 0.0378053 0.0349512 26 2000 19 6.64007e+06 301392 477104. 1650.88 1.04 0.106376 0.0937479 21682 110474 -1 1712 18 739 1128 95890 20589 2.91697 2.91697 -100.816 -2.91697 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0220628 0.0193036 97 23 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 16.2 MiB 0.24 982 8969 2347 6212 410 54.8 MiB 0.15 0.00 4.05536 -139.886 -4.05536 4.05536 0.76 0.000733358 0.00067809 0.0374995 0.0346935 30 2225 19 6.64007e+06 276276 526063. 1820.29 0.98 0.118623 0.104496 22546 126617 -1 1870 19 1195 1706 124980 26064 2.95297 2.95297 -122.01 -2.95297 0 0 666494. 2306.21 0.25 0.10 0.14 -1 -1 0.25 0.0376808 0.033625 127 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30336 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1389 7443 1662 5262 519 54.8 MiB 0.17 0.01 5.61123 -170.011 -5.61123 5.61123 0.78 0.000837666 0.000775074 0.033003 0.0306001 28 3591 30 6.64007e+06 364182 500653. 1732.36 1.63 0.147769 0.129926 21970 115934 -1 2995 23 1956 3151 291032 60986 4.66969 4.66969 -162.725 -4.66969 0 0 612192. 2118.31 0.22 0.15 0.12 -1 -1 0.22 0.0446507 0.039974 169 31 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30388 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 16.2 MiB 0.14 962 14988 4939 7718 2331 54.8 MiB 0.21 0.00 4.60549 -136.553 -4.60549 4.60549 0.77 0.000751085 0.000694277 0.0544051 0.0503803 30 2069 19 6.64007e+06 401856 526063. 1820.29 0.94 0.142047 0.126091 22546 126617 -1 1800 19 942 1516 110249 23080 2.99716 2.99716 -115.233 -2.99716 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0290367 0.0255554 133 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30516 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55804 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 15.9 MiB 0.07 702 10423 3012 6489 922 54.5 MiB 0.14 0.00 3.51327 -104.848 -3.51327 3.51327 0.76 0.000646819 0.000598486 0.0363368 0.0336244 28 1759 19 6.64007e+06 326508 500653. 1732.36 0.94 0.110354 0.0972194 21970 115934 -1 1558 17 970 1537 113431 25439 2.70177 2.70177 -99.0046 -2.70177 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0225369 0.019741 104 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 17900 1 0.03 -1 -1 30392 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1216 15187 4686 7965 2536 55.1 MiB 0.27 0.01 6.49087 -185.665 -6.49087 6.49087 0.78 0.000901481 0.000834513 0.0708973 0.0656875 30 3342 26 6.64007e+06 339066 526063. 1820.29 1.02 0.146657 0.131169 22546 126617 -1 2518 20 1804 2589 197145 41428 5.13774 5.13774 -169.39 -5.13774 0 0 666494. 2306.21 0.27 0.10 0.13 -1 -1 0.27 0.0374075 0.033037 170 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30420 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 16.2 MiB 0.15 903 6979 1333 5401 245 54.8 MiB 0.12 0.00 4.64606 -138.337 -4.64606 4.64606 0.76 0.000742748 0.000687417 0.0259126 0.0240312 26 2500 22 6.64007e+06 414414 477104. 1650.88 1.14 0.115021 0.100908 21682 110474 -1 2128 19 1514 2351 189939 42004 3.78863 3.78863 -136.839 -3.78863 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0282256 0.0248005 130 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.18 17276 1 0.02 -1 -1 30472 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55552 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 15.7 MiB 0.07 832 12375 4208 6622 1545 54.2 MiB 0.15 0.00 3.58247 -103.673 -3.58247 3.58247 0.77 0.000581064 0.000537336 0.0401938 0.0371634 28 1995 23 6.64007e+06 288834 500653. 1732.36 0.93 0.11048 0.0973842 21970 115934 -1 1752 16 769 1302 113847 24507 2.80577 2.80577 -102.049 -2.80577 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0194857 0.0170871 100 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30132 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.5 MiB 0.12 993 9098 1971 6187 940 54.9 MiB 0.13 0.00 5.56744 -134.001 -5.56744 5.56744 0.77 0.00077403 0.000715466 0.0339581 0.0314468 28 2587 23 6.64007e+06 426972 500653. 1732.36 1.37 0.131654 0.115894 21970 115934 -1 2118 20 1378 2653 199052 42950 4.64748 4.64748 -135.366 -4.64748 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0302487 0.026566 139 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17192 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 15.9 MiB 0.06 822 7770 1860 5212 698 54.4 MiB 0.11 0.00 3.4291 -106.218 -3.4291 3.4291 0.78 0.00060711 0.000561869 0.0278507 0.0257743 26 2049 18 6.64007e+06 251160 477104. 1650.88 0.90 0.0972704 0.0853579 21682 110474 -1 1809 19 1131 1920 173764 36505 2.97817 2.97817 -110.221 -2.97817 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.023215 0.0202647 104 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30256 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.2 MiB 0.13 857 12839 3557 7998 1284 54.6 MiB 0.16 0.00 4.12483 -113.809 -4.12483 4.12483 0.78 0.000932044 0.000880152 0.0412646 0.038223 26 1886 20 6.64007e+06 414414 477104. 1650.88 0.98 0.11618 0.102616 21682 110474 -1 1635 17 771 1478 116961 24792 2.82057 2.82057 -104.832 -2.82057 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.0221964 0.0194477 105 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17808 1 0.02 -1 -1 30360 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1104 17175 4885 10433 1857 55.1 MiB 0.27 0.01 4.60024 -135.427 -4.60024 4.60024 0.76 0.000765701 0.000709673 0.0705305 0.0653524 28 2668 19 6.64007e+06 326508 500653. 1732.36 0.93 0.15849 0.141319 21970 115934 -1 2329 19 1368 2039 148072 32702 3.93303 3.93303 -133.456 -3.93303 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0287933 0.0253098 139 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17876 1 0.02 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56028 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.2 MiB 0.13 772 4768 876 3724 168 54.7 MiB 0.09 0.00 4.51224 -132.005 -4.51224 4.51224 0.76 0.000779358 0.000721722 0.0216243 0.020068 32 2086 23 6.64007e+06 301392 554710. 1919.41 0.98 0.115455 0.101038 22834 132086 -1 1816 20 1530 2338 210280 47236 3.71463 3.71463 -127.441 -3.71463 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0304801 0.0267057 130 54 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.16 17672 1 0.03 -1 -1 30280 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 16.1 MiB 0.14 1030 11891 3350 7362 1179 54.8 MiB 0.19 0.00 4.72138 -141.993 -4.72138 4.72138 0.78 0.000763013 0.000705781 0.0461091 0.0426542 32 2322 20 6.64007e+06 351624 554710. 1919.41 0.97 0.135423 0.119679 22834 132086 -1 2037 19 1181 2057 179847 37039 3.52022 3.52022 -129.639 -3.52022 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0297926 0.026218 133 51 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55876 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 16.2 MiB 0.25 799 9356 2375 6010 971 54.6 MiB 0.13 0.00 4.79432 -131.982 -4.79432 4.79432 0.82 0.000642996 0.000595096 0.0306527 0.0281649 26 2233 17 6.64007e+06 213486 477104. 1650.88 1.01 0.0944984 0.0831108 21682 110474 -1 1883 18 1035 1431 120707 27475 3.28603 3.28603 -117.064 -3.28603 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.0233765 0.0204431 105 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17708 1 0.03 -1 -1 30572 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.3 MiB 0.24 899 12898 4205 6789 1904 54.8 MiB 0.16 0.00 3.96736 -127.03 -3.96736 3.96736 0.80 0.000452739 0.000408982 0.0436183 0.0400029 32 2108 17 6.64007e+06 238602 554710. 1919.41 0.94 0.121429 0.107025 22834 132086 -1 1843 17 1137 1680 149473 31039 2.91843 2.91843 -115.406 -2.91843 0 0 701300. 2426.64 0.25 0.07 0.15 -1 -1 0.25 0.0244173 0.0214557 113 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30380 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.2 MiB 0.13 857 8087 1703 5875 509 54.7 MiB 0.12 0.00 3.59243 -98.9543 -3.59243 3.59243 0.83 0.00071631 0.000661936 0.0295572 0.0273738 26 2424 27 6.64007e+06 414414 477104. 1650.88 1.41 0.120216 0.105683 21682 110474 -1 1960 18 1138 2044 166962 35789 2.87397 2.87397 -101.793 -2.87397 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0262883 0.0230752 123 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17588 1 0.03 -1 -1 30376 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 16.1 MiB 0.10 873 14567 3705 9538 1324 54.6 MiB 0.17 0.00 4.33724 -105.319 -4.33724 4.33724 0.86 0.00045753 0.000417577 0.0388569 0.0356628 26 2057 22 6.64007e+06 439530 477104. 1650.88 0.95 0.106028 0.0933689 21682 110474 -1 1832 19 897 1814 149714 30199 3.52642 3.52642 -105.5 -3.52642 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0243338 0.0212799 115 27 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30288 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 16.2 MiB 0.16 857 12980 4441 6366 2173 54.7 MiB 0.18 0.00 4.19523 -120.389 -4.19523 4.19523 0.76 0.000688773 0.000636868 0.0543584 0.0503336 32 2008 22 6.64007e+06 226044 554710. 1919.41 0.97 0.13817 0.122615 22834 132086 -1 1778 19 1127 1866 181399 36724 2.95877 2.95877 -112.488 -2.95877 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0230113 0.0201991 108 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.17 17524 1 0.03 -1 -1 30264 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 16.2 MiB 0.23 1011 9385 2419 5667 1299 54.8 MiB 0.16 0.00 4.0237 -135.679 -4.0237 4.0237 0.77 0.0007257 0.000671 0.0391484 0.036259 32 2279 19 6.64007e+06 263718 554710. 1919.41 0.96 0.123876 0.109304 22834 132086 -1 1965 16 1071 1551 126273 26817 3.33403 3.33403 -130.264 -3.33403 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0242867 0.0213472 121 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.20 17104 1 0.03 -1 -1 30348 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 16.2 MiB 0.06 926 9383 1965 6366 1052 54.8 MiB 0.13 0.00 4.61041 -129.144 -4.61041 4.61041 0.77 0.000692083 0.000640758 0.0322338 0.0298704 28 2406 22 6.64007e+06 401856 500653. 1732.36 1.21 0.116187 0.102241 21970 115934 -1 1977 19 1279 2219 164594 36382 3.48123 3.48123 -119.082 -3.48123 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0262836 0.0230722 127 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30408 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 16.4 MiB 0.28 1230 14128 4435 7821 1872 55.0 MiB 0.25 0.01 5.3267 -167.408 -5.3267 5.3267 0.77 0.000766224 0.000709211 0.0583648 0.0540379 32 3155 19 6.64007e+06 301392 554710. 1919.41 1.10 0.14819 0.131708 22834 132086 -1 2642 19 1485 2160 248463 47046 4.32488 4.32488 -156.864 -4.32488 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0297838 0.0262528 146 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17904 1 0.03 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 16.6 MiB 0.20 846 12473 3077 8180 1216 55.3 MiB 0.19 0.00 5.24026 -142.21 -5.24026 5.24026 0.76 0.000815329 0.000754557 0.0476793 0.044096 30 2292 20 6.64007e+06 426972 526063. 1820.29 1.13 0.142468 0.126001 22546 126617 -1 1759 17 1000 1800 107420 25785 3.79508 3.79508 -132.554 -3.79508 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0281383 0.0247988 144 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.4 MiB 0.15 1088 19136 5971 10565 2600 54.8 MiB 0.28 0.01 4.47484 -142.459 -4.47484 4.47484 0.76 0.000815825 0.000754529 0.0710775 0.065465 28 2787 21 6.64007e+06 464646 500653. 1732.36 1.14 0.167127 0.14848 21970 115934 -1 2447 19 1322 2375 188094 40229 3.54723 3.54723 -134.645 -3.54723 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.031543 0.0277949 140 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17360 1 0.03 -1 -1 30104 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55644 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 15.8 MiB 0.12 810 10756 3573 5296 1887 54.3 MiB 0.14 0.00 3.86158 -115.559 -3.86158 3.86158 0.77 0.000634072 0.000587344 0.0411136 0.0380691 28 1977 21 6.64007e+06 238602 500653. 1732.36 0.94 0.116068 0.102497 21970 115934 -1 1807 18 1039 1739 151334 31305 3.01497 3.01497 -109.983 -3.01497 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0231313 0.020272 104 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17816 1 0.03 -1 -1 30428 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 16.3 MiB 0.17 996 11989 3165 6999 1825 55.0 MiB 0.20 0.00 4.82523 -141.177 -4.82523 4.82523 0.76 0.000792887 0.000733919 0.0539746 0.0500235 32 2398 20 6.64007e+06 288834 554710. 1919.41 0.99 0.146438 0.129893 22834 132086 -1 1979 20 1637 2528 204944 43440 3.73163 3.73163 -134.148 -3.73163 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0313977 0.027604 138 63 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.12 17888 1 0.03 -1 -1 30436 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1103 10743 2816 7025 902 55.0 MiB 0.17 0.00 5.45357 -158.764 -5.45357 5.45357 0.77 0.000751967 0.000695763 0.0431969 0.0399945 26 2875 26 6.64007e+06 326508 477104. 1650.88 1.48 0.140767 0.124242 21682 110474 -1 2572 20 1641 2546 243935 50788 4.09409 4.09409 -144.082 -4.09409 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0298964 0.0262621 140 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30568 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1102 15423 4945 8075 2403 55.0 MiB 0.22 0.00 5.30601 -154.372 -5.30601 5.30601 0.77 0.000905981 0.000838396 0.0578657 0.0535534 28 2987 22 6.64007e+06 376740 500653. 1732.36 1.25 0.149721 0.132918 21970 115934 -1 2475 17 1341 2067 194220 38613 4.45548 4.45548 -149.53 -4.45548 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0263819 0.0232645 148 47 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.22 17780 1 0.03 -1 -1 30320 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 16.3 MiB 0.23 960 11975 3127 7423 1425 55.1 MiB 0.19 0.00 4.52304 -132.575 -4.52304 4.52304 0.76 0.000790388 0.000727188 0.0461694 0.0427042 32 2098 19 6.64007e+06 414414 554710. 1919.41 0.94 0.136454 0.120617 22834 132086 -1 1818 20 890 1486 121550 25918 3.18863 3.18863 -115.814 -3.18863 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0310959 0.0272555 135 83 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.17 17508 1 0.02 -1 -1 30216 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 16.2 MiB 0.15 891 9571 2183 6911 477 54.8 MiB 0.17 0.00 5.02278 -140.291 -5.02278 5.02278 0.76 0.000776346 0.000718154 0.0428914 0.0396939 30 2474 22 6.64007e+06 263718 526063. 1820.29 1.04 0.136908 0.120826 22546 126617 -1 2061 16 1038 1779 125250 28343 3.96303 3.96303 -139.2 -3.96303 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0259176 0.0228664 134 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30460 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 16.3 MiB 0.18 875 11270 2503 8088 679 55.0 MiB 0.18 0.00 4.91881 -136.338 -4.91881 4.91881 0.77 0.00078563 0.000726376 0.0461361 0.0427375 32 2083 16 6.64007e+06 389298 554710. 1919.41 0.94 0.133352 0.118082 22834 132086 -1 1814 22 1150 1918 137928 31127 3.66743 3.66743 -125.099 -3.66743 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0333617 0.0291501 132 85 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17196 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55704 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 15.9 MiB 0.05 680 10219 2541 6421 1257 54.4 MiB 0.13 0.00 3.88758 -112.502 -3.88758 3.88758 0.78 0.000603289 0.000558823 0.0385573 0.0356933 28 1722 20 6.64007e+06 188370 500653. 1732.36 0.92 0.109485 0.096727 21970 115934 -1 1581 16 756 1127 91972 20919 2.91797 2.91797 -107.341 -2.91797 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0202253 0.0177737 96 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30276 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1003 15426 4168 9105 2153 54.9 MiB 0.22 0.00 4.65236 -140.168 -4.65236 4.65236 0.86 0.000793637 0.000734005 0.0590994 0.0546883 28 2211 31 6.64007e+06 401856 500653. 1732.36 1.28 0.166444 0.147497 21970 115934 -1 1941 20 1275 2099 149859 32629 3.69643 3.69643 -131.023 -3.69643 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0309998 0.0272172 132 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30280 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 16.6 MiB 0.19 1074 11237 2615 7354 1268 55.2 MiB 0.20 0.00 4.84723 -152.835 -4.84723 4.84723 0.82 0.000635238 0.000576621 0.0481586 0.0442289 32 2662 20 6.64007e+06 276276 554710. 1919.41 1.06 0.142703 0.125932 22834 132086 -1 2233 22 1832 2973 276763 56868 3.79463 3.79463 -142.429 -3.79463 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0356978 0.0313584 148 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.17 17612 1 0.03 -1 -1 30164 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 16.3 MiB 0.25 745 8136 1743 5584 809 54.8 MiB 0.10 0.00 4.31784 -119.848 -4.31784 4.31784 0.77 0.000635237 0.00058767 0.0301567 0.0279252 28 2297 24 6.64007e+06 251160 500653. 1732.36 1.33 0.109457 0.0962023 21970 115934 -1 1809 18 1050 1376 111464 26964 3.43323 3.43323 -118.752 -3.43323 0 0 612192. 2118.31 0.22 0.06 0.12 -1 -1 0.22 0.0236126 0.020878 109 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17196 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55576 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 15.7 MiB 0.06 720 11430 2918 7192 1320 54.3 MiB 0.15 0.00 3.81035 -108.914 -3.81035 3.81035 0.78 0.000611212 0.000558961 0.0397137 0.0367683 26 1922 20 6.64007e+06 263718 477104. 1650.88 0.87 0.110676 0.0977913 21682 110474 -1 1684 16 959 1521 119249 26450 3.04337 3.04337 -105.439 -3.04337 0 0 585099. 2024.56 0.26 0.06 0.12 -1 -1 0.26 0.0203389 0.0179035 106 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30372 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1132 12753 3748 7734 1271 55.1 MiB 0.20 0.00 5.06147 -160.912 -5.06147 5.06147 0.76 0.000767037 0.000710378 0.0513522 0.0475722 26 2971 33 6.64007e+06 326508 477104. 1650.88 1.92 0.158834 0.140826 21682 110474 -1 2422 20 1828 2405 225095 45942 4.07489 4.07489 -147.788 -4.07489 0 0 585099. 2024.56 0.23 0.09 0.12 -1 -1 0.23 0.031044 0.0273022 144 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17808 1 0.03 -1 -1 30444 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1035 16893 5570 8364 2959 55.1 MiB 0.24 0.00 5.02458 -149.361 -5.02458 5.02458 0.77 0.00077004 0.000712837 0.0646822 0.059854 32 2671 23 6.64007e+06 364182 554710. 1919.41 1.00 0.158204 0.140561 22834 132086 -1 2196 19 1320 2074 170752 37927 4.38708 4.38708 -146.433 -4.38708 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.029339 0.0257967 155 56 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.18 17348 1 0.03 -1 -1 30180 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.5 MiB 0.09 1057 12164 2729 8794 641 55.1 MiB 0.19 0.00 5.48474 -146.154 -5.48474 5.48474 0.77 0.000790205 0.000730894 0.0451059 0.0416274 28 3217 24 6.64007e+06 452088 500653. 1732.36 1.90 0.148401 0.131259 21970 115934 -1 2513 17 1493 2631 238238 50683 4.50928 4.50928 -146.356 -4.50928 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0275836 0.0243708 153 3 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17760 1 0.03 -1 -1 30160 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 16.1 MiB 0.15 890 11170 2805 7440 925 54.7 MiB 0.15 0.00 3.51924 -105.227 -3.51924 3.51924 0.77 0.000695839 0.000644093 0.0389201 0.0360184 26 2119 24 6.64007e+06 401856 477104. 1650.88 0.93 0.124966 0.109956 21682 110474 -1 1899 20 1162 2065 170166 35763 2.88697 2.88697 -103.914 -2.88697 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0272632 0.0238469 121 52 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.17 17256 1 0.03 -1 -1 30580 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55616 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 15.8 MiB 0.07 645 11948 3714 6556 1678 54.3 MiB 0.13 0.00 3.4543 -94.7001 -3.4543 3.4543 0.77 0.000591415 0.000547112 0.0431146 0.0398934 26 1602 19 6.64007e+06 263718 477104. 1650.88 0.94 0.111901 0.0988588 21682 110474 -1 1457 20 947 1352 131524 28075 2.84797 2.84797 -93.8144 -2.84797 0 0 585099. 2024.56 0.20 0.06 0.12 -1 -1 0.20 0.023228 0.0202052 97 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 18172 1 0.03 -1 -1 30288 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 16.8 MiB 0.24 1270 10743 2480 7803 460 55.0 MiB 0.19 0.01 4.37195 -138.919 -4.37195 4.37195 0.77 0.000879241 0.0008138 0.0501572 0.0464833 32 3443 20 6.64007e+06 326508 554710. 1919.41 1.06 0.154393 0.136564 22834 132086 -1 2834 21 1902 3097 261667 54988 4.05623 4.05623 -139.747 -4.05623 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0376464 0.0330241 170 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.12 17672 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 16.3 MiB 0.32 989 14828 4611 8220 1997 55.2 MiB 0.22 0.00 5.41669 -159.225 -5.41669 5.41669 0.76 0.000773332 0.000715868 0.063545 0.0588276 28 2480 21 6.64007e+06 288834 500653. 1732.36 0.96 0.155241 0.138038 21970 115934 -1 2122 20 1580 2465 195223 43164 4.74788 4.74788 -154.179 -4.74788 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0309388 0.0272067 152 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 16.2 MiB 0.33 825 13583 3778 7563 2242 54.7 MiB 0.20 0.00 4.65475 -131.833 -4.65475 4.65475 0.76 0.00072007 0.000664639 0.0562608 0.0520186 30 2025 18 6.64007e+06 238602 526063. 1820.29 0.96 0.138974 0.123425 22546 126617 -1 1649 17 765 1154 85908 18646 3.57043 3.57043 -124.729 -3.57043 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0251938 0.0221788 128 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17668 1 0.03 -1 -1 30380 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 16.2 MiB 0.10 911 16708 5166 8976 2566 54.8 MiB 0.23 0.00 5.41998 -135.015 -5.41998 5.41998 0.77 0.000730947 0.000676285 0.0600635 0.0555108 28 2817 28 6.64007e+06 376740 500653. 1732.36 1.59 0.157321 0.139316 21970 115934 -1 2169 19 1096 1797 163285 36015 3.85882 3.85882 -126.873 -3.85882 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0279912 0.0246095 126 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30156 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 16.6 MiB 0.15 1048 7423 1517 5297 609 55.1 MiB 0.14 0.01 5.01701 -136.816 -5.01701 5.01701 0.77 0.000804979 0.000744831 0.0295391 0.0273844 26 2731 27 6.64007e+06 426972 477104. 1650.88 1.46 0.134708 0.118322 21682 110474 -1 2256 20 1367 2432 219066 45531 3.79683 3.79683 -130.791 -3.79683 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0313277 0.027496 145 50 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30092 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.2 MiB 0.14 829 7233 1598 5117 518 54.7 MiB 0.06 0.00 3.67989 -107.648 -3.67989 3.67989 0.63 0.000311766 0.000283773 0.0126652 0.0115707 30 2031 17 6.64007e+06 389298 526063. 1820.29 0.71 0.0530082 0.0463786 22546 126617 -1 1650 18 943 1689 119647 26604 2.87297 2.87297 -101.585 -2.87297 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0258692 0.0227153 124 51 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.15 17780 1 0.03 -1 -1 30216 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1174 10979 2913 7012 1054 55.1 MiB 0.19 0.01 5.12747 -161.736 -5.12747 5.12747 0.76 0.000774896 0.000717246 0.0450268 0.041669 26 3429 34 6.64007e+06 313950 477104. 1650.88 2.17 0.157091 0.138591 21682 110474 -1 2659 23 2025 3125 262798 56887 4.48129 4.48129 -151.356 -4.48129 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0340444 0.0298646 148 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30248 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 16.6 MiB 0.17 1093 17036 4934 9564 2538 55.1 MiB 0.25 0.01 4.75546 -148.188 -4.75546 4.75546 0.84 0.00082768 0.000766184 0.0637934 0.0590492 28 2558 22 6.64007e+06 452088 500653. 1732.36 1.06 0.163297 0.145251 21970 115934 -1 2272 21 1341 2156 179040 38559 3.49322 3.49322 -131.253 -3.49322 0 0 612192. 2118.31 0.21 0.09 0.11 -1 -1 0.21 0.0333455 0.0292388 144 62 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17640 1 0.02 -1 -1 30380 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 15.9 MiB 0.09 731 10536 4018 5581 937 54.5 MiB 0.15 0.00 3.74538 -111.28 -3.74538 3.74538 0.88 0.000623972 0.000577362 0.0495617 0.0458357 30 1417 21 6.64007e+06 213486 526063. 1820.29 0.94 0.123272 0.109101 22546 126617 -1 1304 18 822 1209 100830 20945 2.68177 2.68177 -98.8953 -2.68177 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0224711 0.0196519 91 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 16.3 MiB 0.19 882 13849 5109 6856 1884 54.8 MiB 0.21 0.00 4.03956 -127.808 -4.03956 4.03956 0.79 0.000697674 0.000644986 0.0483464 0.0444614 28 2040 18 6.64007e+06 263718 500653. 1732.36 1.11 0.124667 0.110199 21970 115934 -1 1847 20 1219 1631 155506 32429 3.14383 3.14383 -116.845 -3.14383 0 0 612192. 2118.31 0.21 0.07 0.08 -1 -1 0.21 0.0268921 0.0235172 117 58 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30448 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.2 MiB 0.09 954 14020 3601 8035 2384 54.8 MiB 0.19 0.00 4.80044 -128.284 -4.80044 4.80044 0.81 0.000722235 0.000668107 0.0462957 0.0427789 32 2146 21 6.64007e+06 464646 554710. 1919.41 1.03 0.129649 0.114842 22834 132086 -1 1934 19 1266 2210 206688 41986 3.70963 3.70963 -123.707 -3.70963 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0276387 0.0242609 129 33 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17260 1 0.03 -1 -1 30360 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 16.2 MiB 0.25 763 7103 1547 5010 546 54.6 MiB 0.10 0.00 4.32884 -114.709 -4.32884 4.32884 0.77 0.000617585 0.000572782 0.0261367 0.0242197 26 2151 28 6.64007e+06 276276 477104. 1650.88 1.17 0.101733 0.0884461 21682 110474 -1 1825 17 978 1246 99702 22292 3.45323 3.45323 -116.199 -3.45323 0 0 585099. 2024.56 0.22 0.05 0.11 -1 -1 0.22 0.0192747 0.0169554 109 31 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.17 17368 1 0.03 -1 -1 30060 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 15.8 MiB 0.16 634 12856 3328 7254 2274 54.4 MiB 0.16 0.00 3.90075 -115.478 -3.90075 3.90075 0.76 0.000639972 0.000592102 0.049784 0.0460826 28 2075 28 6.64007e+06 213486 500653. 1732.36 0.99 0.133686 0.118126 21970 115934 -1 1693 19 1228 2048 165998 37391 3.12337 3.12337 -110.644 -3.12337 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0243866 0.0213518 108 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.11 17796 1 0.03 -1 -1 30248 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 16.3 MiB 0.15 1014 15147 3968 9710 1469 55.0 MiB 0.21 0.00 4.15695 -125.813 -4.15695 4.15695 0.77 0.000789792 0.000731157 0.0552826 0.0511425 32 1992 22 6.64007e+06 452088 554710. 1919.41 0.97 0.150035 0.132937 22834 132086 -1 1818 16 973 1536 142925 28418 3.03097 3.03097 -112.493 -3.03097 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0267481 0.0236436 136 64 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 16.2 MiB 0.21 920 10163 2724 6503 936 54.7 MiB 0.13 0.00 4.05252 -124.711 -4.05252 4.05252 0.77 0.000618629 0.000572465 0.0370109 0.0342401 30 1917 19 6.64007e+06 251160 526063. 1820.29 0.90 0.108933 0.0960772 22546 126617 -1 1686 17 726 1061 75053 16352 2.96343 2.96343 -111.291 -2.96343 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0218064 0.0191278 107 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30108 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 16.3 MiB 0.15 987 10827 2770 6959 1098 54.9 MiB 0.16 0.00 3.75038 -118.864 -3.75038 3.75038 0.76 0.00075715 0.000700298 0.0400374 0.0370487 26 2416 19 6.64007e+06 401856 477104. 1650.88 1.28 0.126736 0.111727 21682 110474 -1 2002 18 1151 1997 161455 34636 2.86217 2.86217 -109.179 -2.86217 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0273011 0.0239835 127 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17804 1 0.03 -1 -1 30472 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.6 MiB 0.30 927 10247 2394 7169 684 55.0 MiB 0.17 0.01 4.34696 -134.379 -4.34696 4.34696 0.77 0.000828049 0.000766206 0.042268 0.0391241 32 2153 15 6.64007e+06 401856 554710. 1919.41 0.95 0.131903 0.116682 22834 132086 -1 1927 19 1227 1751 140447 31625 3.33103 3.33103 -129.428 -3.33103 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0309281 0.0271596 138 91 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30312 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 15.9 MiB 0.17 835 12681 3362 7951 1368 54.5 MiB 0.16 0.00 3.3851 -106.107 -3.3851 3.3851 0.77 0.000667548 0.000615852 0.051194 0.0473462 26 2061 16 6.64007e+06 213486 477104. 1650.88 1.01 0.12636 0.111941 21682 110474 -1 1826 18 940 1445 124698 26541 2.87497 2.87497 -108.411 -2.87497 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0243518 0.0213164 104 57 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30320 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 16.3 MiB 0.22 876 14407 4775 7452 2180 54.8 MiB 0.19 0.00 4.41384 -136.056 -4.41384 4.41384 0.77 0.000663549 0.000613885 0.0537023 0.0496739 30 2265 19 6.64007e+06 263718 526063. 1820.29 0.94 0.130446 0.115713 22546 126617 -1 1808 20 1086 1608 120566 26265 3.07143 3.07143 -117.332 -3.07143 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0260905 0.0228305 117 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 16.2 MiB 0.21 1070 9111 2300 6161 650 55.0 MiB 0.14 0.00 4.68344 -140.114 -4.68344 4.68344 0.77 0.000711189 0.000657626 0.0363118 0.0335852 32 2426 23 6.64007e+06 288834 554710. 1919.41 0.97 0.123538 0.10884 22834 132086 -1 2104 17 1195 1614 152050 32680 3.78882 3.78882 -131.62 -3.78882 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0253593 0.0223494 130 30 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17796 1 0.03 -1 -1 30204 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 16.2 MiB 0.18 969 13959 4223 8147 1589 54.8 MiB 0.18 0.00 4.71146 -123.714 -4.71146 4.71146 0.77 0.000712949 0.000660228 0.0520416 0.0481977 32 2051 16 6.64007e+06 364182 554710. 1919.41 0.90 0.130865 0.116193 22834 132086 -1 1782 15 752 1297 91896 20239 3.07743 3.07743 -107.178 -3.07743 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.0223984 0.0197509 122 55 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30508 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 16.5 MiB 0.28 1164 12568 3311 8092 1165 55.2 MiB 0.23 0.00 5.44678 -170.492 -5.44678 5.44678 0.77 0.0008342 0.000772482 0.0568986 0.0527433 28 2974 42 6.64007e+06 301392 500653. 1732.36 1.23 0.182712 0.161278 21970 115934 -1 2499 21 1757 2585 254156 52048 4.07889 4.07889 -152.434 -4.07889 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0346132 0.0304702 154 65 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17084 1 0.02 -1 -1 30464 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55656 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 15.9 MiB 0.05 802 9356 2223 6300 833 54.4 MiB 0.11 0.00 3.65167 -102.287 -3.65167 3.65167 0.76 0.000576693 0.000533649 0.0326876 0.0302814 32 1748 20 6.64007e+06 226044 554710. 1919.41 0.90 0.10054 0.0885755 22834 132086 -1 1525 20 733 1201 101327 21564 2.85597 2.85597 -99.3863 -2.85597 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0227139 0.0198056 96 4 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30240 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 16.5 MiB 0.16 1014 15173 4325 8191 2657 55.0 MiB 0.22 0.00 4.24115 -141.749 -4.24115 4.24115 0.77 0.000844902 0.000780012 0.0598179 0.0553405 32 2483 25 6.64007e+06 426972 554710. 1919.41 1.05 0.164968 0.146184 22834 132086 -1 2189 21 1591 2389 235026 48198 3.64763 3.64763 -138.572 -3.64763 0 0 701300. 2426.64 0.24 0.10 0.11 -1 -1 0.24 0.0343416 0.0301556 145 90 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.15 17776 1 0.03 -1 -1 30148 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.2 MiB 0.25 854 11456 4252 5499 1705 54.7 MiB 0.16 0.00 3.5233 -125.693 -3.5233 3.5233 0.77 0.000780264 0.000720696 0.0535006 0.0494968 32 1950 21 6.64007e+06 213486 554710. 1919.41 0.97 0.145175 0.128541 22834 132086 -1 1773 18 1222 1762 174963 34250 2.90777 2.90777 -120.796 -2.90777 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0287597 0.0253152 114 96 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17808 1 0.03 -1 -1 30296 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 16.3 MiB 0.16 993 15864 4238 9461 2165 54.9 MiB 0.15 0.00 4.43584 -134.986 -4.43584 4.43584 0.82 0.000772205 0.000714188 0.0348714 0.0320449 26 2487 29 6.64007e+06 401856 477104. 1650.88 1.26 0.138085 0.121018 21682 110474 -1 2097 20 1015 1538 125489 27573 3.19363 3.19363 -117.496 -3.19363 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0301615 0.0264371 131 60 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17792 1 0.03 -1 -1 30340 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 16.9 MiB 0.33 1309 17635 5897 9510 2228 55.1 MiB 0.33 0.01 6.39084 -191.431 -6.39084 6.39084 0.80 0.000850645 0.000787832 0.0763289 0.0706682 28 3179 24 6.64007e+06 339066 500653. 1732.36 1.20 0.175201 0.156711 21970 115934 -1 2818 20 1830 2657 250768 50556 5.32394 5.32394 -179.585 -5.32394 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0346363 0.0305675 170 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17500 1 0.02 -1 -1 30272 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55484 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 15.7 MiB 0.17 697 8680 1945 6222 513 54.2 MiB 0.10 0.00 3.31307 -102.387 -3.31307 3.31307 0.76 0.000544154 0.000503469 0.0291827 0.0270194 28 1613 18 6.64007e+06 226044 500653. 1732.36 0.93 0.0905458 0.0797825 21970 115934 -1 1455 19 653 834 78603 17174 2.27697 2.27697 -93.8231 -2.27697 0 0 612192. 2118.31 0.24 0.05 0.14 -1 -1 0.24 0.0204839 0.017838 87 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30064 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55700 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 15.7 MiB 0.10 791 11864 3247 7177 1440 54.4 MiB 0.15 0.00 4.38638 -124.628 -4.38638 4.38638 0.77 0.000657503 0.000607998 0.0487522 0.045151 32 1633 19 6.64007e+06 200928 554710. 1919.41 0.93 0.117771 0.104426 22834 132086 -1 1508 21 934 1483 152390 31334 3.18337 3.18337 -113.669 -3.18337 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0275813 0.0240915 92 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17596 1 0.03 -1 -1 30028 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.2 MiB 0.09 807 14407 3847 9113 1447 54.7 MiB 0.19 0.00 3.46104 -112.673 -3.46104 3.46104 0.76 0.00067484 0.00062378 0.0544829 0.050376 28 2101 20 6.64007e+06 263718 500653. 1732.36 0.91 0.13436 0.119241 21970 115934 -1 1790 20 1206 2123 154386 34202 2.76577 2.76577 -107.564 -2.76577 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0261993 0.0228973 115 34 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17380 1 0.03 -1 -1 30200 -1 -1 27 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55564 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 15.8 MiB 0.06 469 9234 3273 3848 2113 54.3 MiB 0.08 0.00 3.37029 -77.6943 -3.37029 3.37029 0.77 0.000515593 0.000475793 0.0280013 0.0258123 28 1583 37 6.64007e+06 339066 500653. 1732.36 3.46 0.167787 0.144762 21970 115934 -1 1237 21 725 1183 107639 29315 2.94117 2.94117 -80.592 -2.94117 0 0 612192. 2118.31 0.22 0.06 0.12 -1 -1 0.22 0.0212789 0.0185172 89 29 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 16.3 MiB 0.18 937 9571 2534 6630 407 55.0 MiB 0.16 0.00 4.28889 -129.632 -4.28889 4.28889 0.77 0.000795126 0.000735573 0.043449 0.0402202 30 2301 18 6.64007e+06 263718 526063. 1820.29 0.96 0.133866 0.118313 22546 126617 -1 1977 18 1120 1943 122247 27258 3.57043 3.57043 -122.066 -3.57043 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0292244 0.0257475 136 72 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.20 17864 1 0.03 -1 -1 30280 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 16.6 MiB 0.20 1018 17423 5293 9473 2657 55.1 MiB 0.25 0.00 4.47881 -144.552 -4.47881 4.47881 0.77 0.000838285 0.000775592 0.0675235 0.0624435 32 2272 20 6.64007e+06 439530 554710. 1919.41 0.98 0.165583 0.147234 22834 132086 -1 1933 20 1210 1856 171720 34016 3.26436 3.26436 -125.974 -3.26436 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0331586 0.0291304 143 90 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30272 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56044 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 16.3 MiB 0.34 962 17134 5020 8898 3216 54.7 MiB 0.24 0.00 5.27972 -153.369 -5.27972 5.27972 0.77 0.000767429 0.000709841 0.0641812 0.0593852 32 2834 29 6.65987e+06 380340 554710. 1919.41 1.10 0.165973 0.147372 22834 132086 -1 2238 23 1690 2556 226648 51397 4.50923 4.50923 -145.399 -4.50923 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0352002 0.030961 152 50 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17804 1 0.03 -1 -1 30544 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1040 12361 3404 6762 2195 54.9 MiB 0.19 0.00 4.63676 -143.523 -4.63676 4.63676 0.77 0.000769857 0.00071252 0.0540329 0.0500766 32 2308 22 6.65987e+06 291594 554710. 1919.41 0.98 0.146073 0.129451 22834 132086 -1 2100 18 1574 2379 219609 46855 4.01197 4.01197 -140.509 -4.01197 0 0 701300. 2426.64 0.21 0.05 0.09 -1 -1 0.21 0.0151146 0.0134799 138 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30444 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 15.9 MiB 0.11 1057 9111 2109 6460 542 54.5 MiB 0.14 0.00 4.05544 -117.725 -4.05544 4.05544 0.76 0.000682485 0.000631286 0.0350019 0.0324227 26 2981 38 6.65987e+06 291594 477104. 1650.88 1.72 0.133993 0.117532 21682 110474 -1 2293 17 1336 1804 175136 37912 3.78111 3.78111 -125.406 -3.78111 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0244993 0.0216086 126 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30376 -1 -1 27 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 15.9 MiB 0.09 995 11593 2944 7290 1359 54.5 MiB 0.18 0.00 4.34155 -118.133 -4.34155 4.34155 0.77 0.000697405 0.000637527 0.0435432 0.0402384 32 2260 22 6.65987e+06 342306 554710. 1919.41 1.00 0.126831 0.111978 22834 132086 -1 2127 23 1483 2699 273208 55417 3.68451 3.68451 -117.2 -3.68451 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0310322 0.0271729 126 31 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30260 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 15.9 MiB 0.11 1007 8919 2464 5628 827 54.5 MiB 0.15 0.00 4.36781 -127.596 -4.36781 4.36781 0.80 0.000744839 0.000689179 0.0378797 0.0350894 32 2654 28 6.65987e+06 291594 554710. 1919.41 1.51 0.155808 0.136811 22834 132086 -1 2219 22 1600 3132 273090 58758 3.57525 3.57525 -124.801 -3.57525 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0320939 0.0281562 130 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30324 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 16.4 MiB 0.15 1045 18079 5207 10774 2098 55.0 MiB 0.27 0.01 3.41904 -120.465 -3.41904 3.41904 0.77 0.000780573 0.000721316 0.0665297 0.0615404 30 2105 15 6.65987e+06 418374 526063. 1820.29 0.95 0.153472 0.136807 22546 126617 -1 1835 19 1130 1801 122462 26648 2.71771 2.71771 -112.169 -2.71771 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.030073 0.0264866 141 58 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.17 17320 1 0.03 -1 -1 30588 -1 -1 18 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55492 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 15.6 MiB 0.17 496 10509 2613 7281 615 54.2 MiB 0.13 0.00 3.88752 -95.8054 -3.88752 3.88752 0.76 0.000606546 0.000562104 0.040838 0.0378418 30 1256 19 6.65987e+06 228204 526063. 1820.29 0.88 0.110092 0.0972055 22546 126617 -1 1030 19 571 972 62106 14193 2.45611 2.45611 -82.6065 -2.45611 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.023178 0.0203077 94 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30104 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55720 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 15.9 MiB 0.06 903 9466 2130 6738 598 54.4 MiB 0.14 0.00 3.22661 -96.4595 -3.22661 3.22661 0.76 0.000656926 0.000602811 0.0310118 0.0286434 30 1917 23 6.65987e+06 393018 526063. 1820.29 0.90 0.109594 0.096263 22546 126617 -1 1627 17 736 1279 86552 19318 2.34911 2.34911 -89.871 -2.34911 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0228911 0.0201569 115 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30284 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 15.9 MiB 0.16 765 13788 3701 7917 2170 54.6 MiB 0.18 0.00 3.4209 -112.776 -3.4209 3.4209 0.87 0.000689237 0.000637225 0.0533385 0.049183 32 2117 21 6.65987e+06 240882 554710. 1919.41 0.97 0.134486 0.119059 22834 132086 -1 1724 17 1043 1533 140831 31284 3.10471 3.10471 -111.199 -3.10471 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0243641 0.021429 111 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30128 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 16.0 MiB 0.26 876 13906 4295 8097 1514 54.5 MiB 0.20 0.00 3.72312 -122.883 -3.72312 3.72312 0.81 0.000680095 0.000628912 0.0551567 0.0509621 32 2031 21 6.65987e+06 215526 554710. 1919.41 1.07 0.135137 0.120047 22834 132086 -1 1760 18 1165 1807 168349 35708 2.87071 2.87071 -113.882 -2.87071 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0252044 0.022148 113 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.10 17592 1 0.03 -1 -1 30524 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55720 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 16.0 MiB 0.24 696 7008 1825 4747 436 54.4 MiB 0.10 0.00 4.00989 -109.174 -4.00989 4.00989 0.83 0.00066902 0.00061975 0.0302944 0.0280765 30 1506 17 6.65987e+06 215526 526063. 1820.29 0.90 0.102145 0.0899455 22546 126617 -1 1362 14 539 809 56624 12454 2.68271 2.68271 -95.9706 -2.68271 0 0 666494. 2306.21 0.24 0.05 0.13 -1 -1 0.24 0.0196107 0.0173181 98 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17324 1 0.03 -1 -1 30092 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 15.9 MiB 0.23 721 6381 1297 4466 618 54.4 MiB 0.09 0.00 3.89466 -119.961 -3.89466 3.89466 0.80 0.000640636 0.000592895 0.0257813 0.0236224 32 1992 19 6.65987e+06 215526 554710. 1919.41 1.00 0.0897937 0.0785861 22834 132086 -1 1677 19 1111 1528 143289 32666 2.64999 2.64999 -104.367 -2.64999 0 0 701300. 2426.64 0.29 0.07 0.14 -1 -1 0.29 0.0250305 0.0219252 106 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30252 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55960 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 16.2 MiB 0.23 1056 16468 6105 8420 1943 54.6 MiB 0.26 0.00 4.37712 -140.294 -4.37712 4.37712 0.77 0.000761596 0.000704719 0.0662657 0.061302 34 2391 22 6.65987e+06 304272 585099. 2024.56 3.25 0.248477 0.218041 23122 138558 -1 2084 21 1535 2316 225353 45146 3.18051 3.18051 -122.931 -3.18051 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0322031 0.0283219 139 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30284 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 16.4 MiB 0.18 951 14365 3991 8802 1572 54.8 MiB 0.22 0.01 4.63803 -131.953 -4.63803 4.63803 0.77 0.00077585 0.000717777 0.0553572 0.0512236 28 2416 43 6.65987e+06 380340 500653. 1732.36 1.11 0.174155 0.153668 21970 115934 -1 2120 21 1416 2197 197038 42108 3.61105 3.61105 -126.538 -3.61105 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.031644 0.0277081 133 61 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30292 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55516 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 15.6 MiB 0.14 640 7914 1978 5337 599 54.2 MiB 0.10 0.00 3.16393 -88.5429 -3.16393 3.16393 0.75 0.000585406 0.000541804 0.0280582 0.0259797 28 1674 18 6.65987e+06 266238 500653. 1732.36 0.85 0.0953717 0.0837333 21970 115934 -1 1535 20 879 1500 129553 28758 2.88391 2.88391 -89.6862 -2.88391 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0232423 0.0202793 98 27 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30316 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 16.4 MiB 0.36 1044 14035 4479 7571 1985 54.9 MiB 0.22 0.00 3.91387 -124.268 -3.91387 3.91387 0.76 0.000787643 0.000729223 0.0622644 0.0576573 32 2423 17 6.65987e+06 266238 554710. 1919.41 0.97 0.15152 0.13487 22834 132086 -1 2070 21 1249 2316 194613 42443 3.14137 3.14137 -116.748 -3.14137 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0330477 0.0290132 132 58 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30180 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1069 12919 3925 6776 2218 54.8 MiB 0.19 0.00 4.31458 -139.268 -4.31458 4.31458 0.79 0.000746929 0.000690699 0.0545226 0.0504657 28 2537 20 6.65987e+06 266238 500653. 1732.36 1.07 0.143858 0.127523 21970 115934 -1 2344 20 1477 2177 194768 41510 3.19377 3.19377 -122.298 -3.19377 0 0 612192. 2118.31 0.22 0.09 0.12 -1 -1 0.22 0.030275 0.0266333 137 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17504 1 0.03 -1 -1 30392 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 16.2 MiB 0.20 695 9543 2025 7276 242 54.7 MiB 0.14 0.00 2.85064 -99.0938 -2.85064 2.85064 0.77 0.000722196 0.00066811 0.0345264 0.0319326 30 1687 22 6.65987e+06 367662 526063. 1820.29 0.91 0.119238 0.10488 22546 126617 -1 1439 18 750 1104 69696 16424 2.15051 2.15051 -92.2769 -2.15051 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0258655 0.0227382 110 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.17 17496 1 0.02 -1 -1 30104 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55300 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 15.6 MiB 0.11 717 11976 4624 5984 1368 54.0 MiB 0.12 0.00 2.25907 -80.296 -2.25907 2.25907 0.77 0.000536279 0.000495358 0.0412293 0.0381215 26 1494 19 6.65987e+06 190170 477104. 1650.88 0.80 0.102949 0.0909643 21682 110474 -1 1378 17 660 917 79845 17879 1.87505 1.87505 -81.3725 -1.87505 0 0 585099. 2024.56 0.20 0.05 0.11 -1 -1 0.20 0.0185735 0.0162035 81 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30456 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55596 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 15.8 MiB 0.31 848 12008 3931 5654 2423 54.3 MiB 0.17 0.00 4.81535 -141.646 -4.81535 4.81535 0.77 0.000672525 0.000619536 0.0479373 0.0444211 32 2102 23 6.65987e+06 240882 554710. 1919.41 0.97 0.129205 0.11438 22834 132086 -1 1848 20 1308 1848 184309 40178 3.41997 3.41997 -124.163 -3.41997 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0267482 0.0234265 127 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.17 17852 1 0.03 -1 -1 30452 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 16.4 MiB 0.07 910 8087 1796 5473 818 54.8 MiB 0.13 0.00 4.13176 -127.852 -4.13176 4.13176 0.77 0.000754538 0.000698228 0.0309506 0.0286679 28 2441 20 6.65987e+06 393018 500653. 1732.36 1.04 0.12085 0.106369 21970 115934 -1 2044 21 1282 1990 180030 39392 3.47643 3.47643 -125.666 -3.47643 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.031293 0.0274753 135 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30276 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1181 9303 2469 6067 767 54.9 MiB 0.16 0.00 4.32644 -135.633 -4.32644 4.32644 0.77 0.000789789 0.000729277 0.0413681 0.0382508 30 2567 32 6.65987e+06 291594 526063. 1820.29 1.03 0.149472 0.131649 22546 126617 -1 2121 20 1153 1831 148276 29447 3.42557 3.42557 -121.926 -3.42557 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0314107 0.0276534 142 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.15 17368 1 0.02 -1 -1 30480 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55236 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 15.5 MiB 0.23 356 10636 3977 4816 1843 53.9 MiB 0.09 0.00 2.4343 -65.7683 -2.4343 2.4343 0.78 0.000464828 0.000429164 0.0324471 0.0299659 28 1469 49 6.65987e+06 228204 500653. 1732.36 2.54 0.160383 0.138751 21970 115934 -1 969 20 669 911 81155 21747 2.53711 2.53711 -71.5854 -2.53711 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0184164 0.0160269 77 30 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.12 17196 1 0.04 -1 -1 30232 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55768 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.11 978 9571 2391 5607 1573 54.5 MiB 0.14 0.00 4.9364 -125.004 -4.9364 4.9364 0.77 0.000675156 0.000625175 0.0371259 0.0343931 32 2165 21 6.65987e+06 266238 554710. 1919.41 0.93 0.109702 0.0969782 22834 132086 -1 1940 21 1076 2014 171337 37468 3.80891 3.80891 -119.896 -3.80891 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0280698 0.0246266 118 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.12 16868 1 0.03 -1 -1 29976 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55168 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 15.3 MiB 0.04 681 11200 3514 6177 1509 53.9 MiB 0.09 0.00 2.44727 -77.3331 -2.44727 2.44727 0.76 0.000457192 0.000421074 0.032475 0.0299123 26 1386 14 6.65987e+06 177492 477104. 1650.88 0.83 0.0825365 0.0728497 21682 110474 -1 1289 13 490 554 51108 11319 1.94011 1.94011 -78.3107 -1.94011 0 0 585099. 2024.56 0.20 0.04 0.11 -1 -1 0.20 0.013184 0.0115953 79 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17596 1 0.04 -1 -1 30308 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55780 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 15.9 MiB 0.13 819 10531 2694 7192 645 54.5 MiB 0.15 0.00 4.34174 -119.601 -4.34174 4.34174 0.76 0.000692162 0.000640697 0.0371999 0.0344825 32 2037 22 6.65987e+06 380340 554710. 1919.41 0.95 0.121337 0.10713 22834 132086 -1 1815 18 1014 1669 144667 33612 3.52111 3.52111 -115.647 -3.52111 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0256492 0.0225636 123 24 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.19 17292 1 0.04 -1 -1 30432 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.0 MiB 0.10 841 8087 1664 5850 573 54.6 MiB 0.12 0.00 3.58635 -102.903 -3.58635 3.58635 0.85 0.000576692 0.000530396 0.0283385 0.0261995 28 2204 20 6.65987e+06 393018 500653. 1732.36 1.06 0.111037 0.0975948 21970 115934 -1 2003 21 1169 2237 169582 39220 2.84977 2.84977 -105.901 -2.84977 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290266 0.0254937 128 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30260 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 16.2 MiB 0.13 1047 15165 4413 8666 2086 54.8 MiB 0.22 0.00 4.3944 -130.237 -4.3944 4.3944 0.84 0.000738373 0.000683146 0.0590816 0.0546704 32 2495 22 6.65987e+06 329628 554710. 1919.41 1.09 0.144793 0.128818 22834 132086 -1 2091 21 1403 2426 214081 46721 3.43285 3.43285 -119.642 -3.43285 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0161869 0.0143574 125 50 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.17 17372 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55648 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 15.9 MiB 0.06 780 6100 1392 4485 223 54.3 MiB 0.10 0.00 2.90053 -100.349 -2.90053 2.90053 0.77 0.000655003 0.00060593 0.0254882 0.0236222 32 1955 21 6.65987e+06 202848 554710. 1919.41 0.99 0.099008 0.0868388 22834 132086 -1 1623 18 986 1581 154671 34208 2.55251 2.55251 -100.201 -2.55251 0 0 701300. 2426.64 0.33 0.05 0.16 -1 -1 0.33 0.0153636 0.013735 101 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17236 1 0.03 -1 -1 30144 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 15.8 MiB 0.10 630 9199 2049 6385 765 54.5 MiB 0.11 0.00 2.99867 -92.259 -2.99867 2.99867 0.77 0.000615965 0.000569828 0.0325722 0.0301424 32 1798 21 6.65987e+06 291594 554710. 1919.41 0.92 0.105025 0.0923489 22834 132086 -1 1458 20 987 1519 134780 30339 2.72271 2.72271 -95.8258 -2.72271 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0248362 0.0217883 97 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30144 -1 -1 23 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55528 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 15.6 MiB 0.05 575 14123 3775 8918 1430 54.2 MiB 0.15 0.00 3.31478 -91.535 -3.31478 3.31478 0.77 0.000609317 0.000563359 0.0498805 0.0460757 32 1800 24 6.65987e+06 291594 554710. 1919.41 0.95 0.124639 0.110188 22834 132086 -1 1434 22 1070 1785 152134 36346 2.67071 2.67071 -91.242 -2.67071 0 0 701300. 2426.64 0.29 0.07 0.17 -1 -1 0.29 0.0258546 0.0225162 98 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.15 17272 1 0.03 -1 -1 30280 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 16.0 MiB 0.10 714 4763 885 3714 164 54.4 MiB 0.08 0.00 3.74323 -109.194 -3.74323 3.74323 0.76 0.000616095 0.000570157 0.0184569 0.0171185 30 1829 20 6.65987e+06 240882 526063. 1820.29 0.99 0.0916357 0.0801037 22546 126617 -1 1506 20 1007 1686 118482 26578 2.52931 2.52931 -100.847 -2.52931 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0245217 0.0214668 110 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30148 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55624 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 15.9 MiB 0.09 740 8130 1715 6151 264 54.3 MiB 0.11 0.00 3.32595 -98.9982 -3.32595 3.32595 0.77 0.000634602 0.000586842 0.0277928 0.0257296 32 1843 17 6.65987e+06 342306 554710. 1919.41 0.91 0.0992516 0.0872107 22834 132086 -1 1567 20 1064 1713 146570 32203 2.60031 2.60031 -96.6785 -2.60031 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0248827 0.021726 103 30 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30392 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55704 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 15.9 MiB 0.22 874 10103 2597 6479 1027 54.4 MiB 0.14 0.00 3.27578 -104.365 -3.27578 3.27578 0.77 0.000650532 0.000602035 0.0372001 0.0344588 32 1830 18 6.65987e+06 316950 554710. 1919.41 0.93 0.112721 0.0991694 22834 132086 -1 1602 17 962 1412 119745 26386 2.27985 2.27985 -95.4327 -2.27985 0 0 701300. 2426.64 0.26 0.06 0.13 -1 -1 0.26 0.0230348 0.0202026 105 54 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17580 1 0.03 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1205 9971 2413 6766 792 55.1 MiB 0.15 0.00 4.35696 -124.779 -4.35696 4.35696 0.77 0.000810684 0.000746497 0.0370803 0.0343473 30 2391 20 6.65987e+06 469086 526063. 1820.29 0.93 0.132014 0.116589 22546 126617 -1 2187 17 905 1665 110473 23523 3.81183 3.81183 -120.239 -3.81183 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0291884 0.0258966 150 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17696 1 0.03 -1 -1 30340 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1009 12860 3291 8398 1171 54.9 MiB 0.20 0.01 3.75432 -126.947 -3.75432 3.75432 0.77 0.000837786 0.000775499 0.0492261 0.0455947 26 2418 22 6.65987e+06 456408 477104. 1650.88 1.16 0.149882 0.132672 21682 110474 -1 2162 22 1538 2375 203416 43592 2.97197 2.97197 -118.377 -2.97197 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0355473 0.031247 146 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17328 1 0.03 -1 -1 30112 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55640 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 15.9 MiB 0.24 731 8852 2206 5531 1115 54.3 MiB 0.13 0.00 4.21752 -119.384 -4.21752 4.21752 0.76 0.000640341 0.000592464 0.0353163 0.0327174 28 1997 22 6.65987e+06 215526 500653. 1732.36 0.99 0.11262 0.0991444 21970 115934 -1 1839 18 1040 1439 122864 28169 3.22477 3.22477 -112.881 -3.22477 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.023866 0.0209413 109 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30440 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 16.4 MiB 0.24 838 9687 2447 6341 899 55.0 MiB 0.17 0.00 4.30117 -127.913 -4.30117 4.30117 0.76 0.000792661 0.000732359 0.0428894 0.0396896 28 2432 23 6.65987e+06 304272 500653. 1732.36 1.13 0.139199 0.122724 21970 115934 -1 1992 19 1278 2215 178328 40975 3.24137 3.24137 -118.419 -3.24137 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.030941 0.0272457 137 61 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30344 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 16.6 MiB 0.32 1313 13758 3781 7541 2436 54.8 MiB 0.23 0.01 5.77198 -171.36 -5.77198 5.77198 0.76 0.000800214 0.000740325 0.0573104 0.0530576 32 3100 25 6.65987e+06 342306 554710. 1919.41 1.05 0.156537 0.138836 22834 132086 -1 2515 19 1986 2878 241968 53738 4.70894 4.70894 -162.113 -4.70894 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0312079 0.0275706 170 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 30404 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 16.2 MiB 1.07 956 15103 4666 7688 2749 55.0 MiB 0.24 0.00 4.78629 -143.571 -4.78629 4.78629 0.77 0.000798662 0.000738159 0.0650457 0.0601535 32 2895 24 6.65987e+06 316950 554710. 1919.41 1.11 0.168971 0.149859 22834 132086 -1 2105 20 1571 2376 219313 47169 4.09557 4.09557 -140.918 -4.09557 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0323611 0.0285027 162 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17820 1 0.03 -1 -1 30560 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 16.2 MiB 0.23 864 6095 1129 4612 354 54.6 MiB 0.12 0.00 4.47092 -130.094 -4.47092 4.47092 0.76 0.000759828 0.00070328 0.025144 0.0233242 26 2773 50 6.65987e+06 367662 477104. 1650.88 5.32 0.23961 0.207574 21682 110474 -1 2246 23 1385 2287 210288 50008 3.20871 3.20871 -121.379 -3.20871 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.034131 0.0299607 133 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.16 17408 1 0.03 -1 -1 30408 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55932 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 16.0 MiB 0.20 918 12371 3407 6390 2574 54.6 MiB 0.17 0.00 4.0455 -110.07 -4.0455 4.0455 0.78 0.00066977 0.000619158 0.0468507 0.0433543 26 3035 37 6.65987e+06 278916 477104. 1650.88 4.37 0.227796 0.198278 21682 110474 -1 2306 24 1546 2271 259911 67221 3.98499 3.98499 -121.66 -3.98499 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0311252 0.0272024 118 27 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17916 1 0.03 -1 -1 30452 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 16.8 MiB 0.28 1184 10336 2301 7496 539 55.1 MiB 0.19 0.01 5.18869 -164.242 -5.18869 5.18869 0.80 0.000936365 0.000866367 0.0429521 0.0397067 26 3309 32 6.65987e+06 481764 477104. 1650.88 1.94 0.178258 0.157344 21682 110474 -1 2702 21 1806 2788 269893 58457 4.36497 4.36497 -157.991 -4.36497 0 0 585099. 2024.56 0.20 0.11 0.11 -1 -1 0.20 0.0392045 0.0344499 172 87 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.17 17628 1 0.03 -1 -1 30152 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55564 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 15.7 MiB 0.12 660 11064 4480 5786 798 54.3 MiB 0.11 0.00 3.61218 -99.209 -3.61218 3.61218 0.77 0.000611172 0.000563949 0.0386887 0.0357281 32 1831 18 6.65987e+06 266238 554710. 1919.41 0.98 0.113967 0.100227 22834 132086 -1 1537 23 1174 1900 181403 42106 2.92905 2.92905 -100.176 -2.92905 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.025012 0.0217948 101 28 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30148 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 16.4 MiB 0.21 1031 5756 1118 4418 220 55.1 MiB 0.12 0.00 5.03726 -146.602 -5.03726 5.03726 0.77 0.00074188 0.000687065 0.025457 0.0236188 28 2823 22 6.65987e+06 291594 500653. 1732.36 1.56 0.118761 0.104682 21970 115934 -1 2222 22 1316 1872 151206 33962 4.21688 4.21688 -140.981 -4.21688 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0277203 0.0245811 142 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17752 1 0.03 -1 -1 30220 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55872 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 16.1 MiB 0.15 975 10087 2133 7508 446 54.6 MiB 0.17 0.00 3.91407 -118.639 -3.91407 3.91407 0.77 0.000755506 0.000698542 0.0368872 0.0341304 28 2731 23 6.65987e+06 418374 500653. 1732.36 1.24 0.12857 0.11318 21970 115934 -1 2057 20 1108 1918 158606 34327 3.08711 3.08711 -113.733 -3.08711 0 0 612192. 2118.31 0.25 0.08 0.13 -1 -1 0.25 0.0307685 0.0271144 131 53 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.19 17292 1 0.03 -1 -1 30096 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 15.9 MiB 0.10 889 13153 5130 6680 1343 54.5 MiB 0.18 0.00 4.00941 -121.212 -4.00941 4.00941 0.76 0.00068391 0.000632583 0.0487526 0.0451453 36 2058 25 6.65987e+06 304272 612192. 2118.31 3.34 0.250477 0.218197 23410 145293 -1 1756 22 1169 2078 177723 38783 3.19465 3.19465 -111.854 -3.19465 0 0 782063. 2706.10 0.28 0.11 0.14 -1 -1 0.28 0.0279006 0.0244395 123 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30444 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55900 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 16.1 MiB 0.32 1135 8213 1899 5522 792 54.6 MiB 0.14 0.00 4.53182 -135.539 -4.53182 4.53182 0.77 0.000758055 0.000700954 0.0356852 0.033012 26 2623 18 6.65987e+06 278916 477104. 1650.88 1.18 0.12572 0.110973 21682 110474 -1 2368 21 1303 1831 165388 35688 3.40711 3.40711 -123.324 -3.40711 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0320751 0.028189 136 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17528 1 0.03 -1 -1 30376 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1054 11759 3077 7738 944 54.8 MiB 0.18 0.00 3.70469 -122.012 -3.70469 3.70469 0.76 0.000774069 0.00071626 0.0450054 0.0416505 26 2603 20 6.65987e+06 393018 477104. 1650.88 1.23 0.135751 0.119997 21682 110474 -1 2276 20 1247 2070 193989 40883 3.19031 3.19031 -120.444 -3.19031 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0310789 0.0273123 132 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30340 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1080 10772 2746 7404 622 54.9 MiB 0.18 0.01 4.49669 -137.938 -4.49669 4.49669 0.76 0.000806952 0.000746924 0.0405584 0.0375022 26 2753 20 6.65987e+06 456408 477104. 1650.88 1.14 0.135511 0.119575 21682 110474 -1 2430 19 1356 2027 187831 40752 3.34871 3.34871 -125.16 -3.34871 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0312106 0.0274915 144 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17368 1 0.03 -1 -1 30204 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 16.0 MiB 0.10 888 10593 2829 7083 681 54.6 MiB 0.15 0.00 3.98836 -118.206 -3.98836 3.98836 0.77 0.00069574 0.000643958 0.0376345 0.0348176 32 2047 27 6.65987e+06 367662 554710. 1919.41 0.96 0.127631 0.112319 22834 132086 -1 1762 21 1185 1905 150952 34082 3.31585 3.31585 -110.543 -3.31585 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0289385 0.0253488 122 24 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30316 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 16.3 MiB 0.12 1026 6999 1560 5055 384 54.9 MiB 0.13 0.00 4.76946 -136.875 -4.76946 4.76946 0.76 0.000712978 0.000659602 0.0286601 0.0265653 32 2509 22 6.65987e+06 291594 554710. 1919.41 0.97 0.11494 0.10104 22834 132086 -1 2253 21 1645 2367 215984 47407 3.86471 3.86471 -132.099 -3.86471 0 0 701300. 2426.64 0.23 0.09 0.13 -1 -1 0.23 0.0297745 0.0261222 133 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1149 15584 5177 7856 2551 55.1 MiB 0.27 0.01 4.99307 -147.134 -4.99307 4.99307 0.76 0.000788153 0.000729192 0.0681744 0.0631118 32 3069 42 6.65987e+06 291594 554710. 1919.41 1.17 0.186142 0.164826 22834 132086 -1 2399 17 1438 2208 208470 43963 4.12863 4.12863 -134.556 -4.12863 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0280267 0.0247871 146 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 16.4 MiB 0.17 1089 11245 3394 6770 1081 54.8 MiB 0.19 0.00 3.85398 -125.73 -3.85398 3.85398 0.78 0.000807642 0.000747188 0.0516639 0.047823 32 2730 18 6.65987e+06 266238 554710. 1919.41 1.00 0.143683 0.127395 22834 132086 -1 2398 18 1451 2567 233088 49790 3.40505 3.40505 -122.013 -3.40505 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0300601 0.0265131 135 77 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17524 1 0.03 -1 -1 30172 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55396 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 15.5 MiB 0.10 769 15493 4232 9363 1898 54.1 MiB 0.18 0.00 3.34618 -101.012 -3.34618 3.34618 0.76 0.000604774 0.000559074 0.0501089 0.0463725 28 1826 30 6.65987e+06 304272 500653. 1732.36 2.60 0.192324 0.167659 21970 115934 -1 1625 14 694 1078 90111 19721 2.44711 2.44711 -93.0968 -2.44711 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0184864 0.0162985 97 23 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.14 17624 1 0.03 -1 -1 30412 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 16.3 MiB 0.15 904 12345 3635 7531 1179 54.7 MiB 0.19 0.00 3.9733 -136.305 -3.9733 3.9733 0.77 0.000737857 0.00068236 0.0523758 0.0484676 26 2727 37 6.65987e+06 253560 477104. 1650.88 3.67 0.241981 0.211199 21682 110474 -1 2212 21 1517 2090 206262 44954 3.65937 3.65937 -135.532 -3.65937 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0302991 0.026563 125 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17880 1 0.03 -1 -1 30348 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 16.6 MiB 0.17 1234 10649 2580 7238 831 54.8 MiB 0.21 0.01 5.507 -161.149 -5.507 5.507 0.84 0.000830255 0.000766597 0.0408497 0.0376464 32 3264 39 6.65987e+06 354984 554710. 1919.41 1.25 0.151341 0.133208 22834 132086 -1 2595 17 1763 2839 245826 54662 4.57622 4.57622 -149.311 -4.57622 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0302308 0.0268017 168 31 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30368 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 16.3 MiB 0.23 868 6791 1309 5265 217 54.8 MiB 0.11 0.00 4.3812 -128.187 -4.3812 4.3812 0.80 0.000754655 0.00069787 0.0260179 0.0240794 30 2014 17 6.65987e+06 393018 526063. 1820.29 1.05 0.0960009 0.0849562 22546 126617 -1 1689 12 782 1245 70711 17188 2.83751 2.83751 -109.167 -2.83751 0 0 666494. 2306.21 0.25 0.05 0.13 -1 -1 0.25 0.0219093 0.0195696 133 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30324 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 15.9 MiB 0.06 691 10228 2870 6479 879 54.4 MiB 0.14 0.00 3.33678 -100.638 -3.33678 3.33678 0.76 0.000640247 0.000592661 0.0356667 0.0330178 26 1930 26 6.65987e+06 329628 477104. 1650.88 1.28 0.124574 0.110233 21682 110474 -1 1706 20 1049 1658 153560 34748 2.70071 2.70071 -101.414 -2.70071 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0220872 0.0193663 104 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18008 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1262 6623 1301 4680 642 54.9 MiB 0.15 0.01 6.41663 -184.149 -6.41663 6.41663 0.77 0.000913629 0.00084658 0.0337729 0.0313542 30 3208 24 6.65987e+06 316950 526063. 1820.29 1.42 0.156139 0.13881 22546 126617 -1 2520 18 1429 2091 168446 34365 4.94434 4.94434 -166.344 -4.94434 0 0 666494. 2306.21 0.24 0.09 0.14 -1 -1 0.24 0.0340628 0.0301283 168 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17648 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 16.0 MiB 0.26 921 16959 4303 11211 1445 54.7 MiB 0.21 0.00 4.44175 -133.512 -4.44175 4.44175 0.77 0.00032144 0.00029402 0.0558002 0.0516661 26 2337 25 6.65987e+06 405696 477104. 1650.88 0.95 0.14852 0.131662 21682 110474 -1 1867 21 1104 1793 141106 32255 3.95091 3.95091 -125.833 -3.95091 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0310634 0.0272435 130 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17056 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55508 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 15.7 MiB 0.05 793 12375 3802 6579 1994 54.2 MiB 0.14 0.00 3.21869 -96.935 -3.21869 3.21869 0.77 0.000595213 0.000550638 0.0398871 0.0369499 30 1751 15 6.65987e+06 291594 526063. 1820.29 0.88 0.103758 0.0918224 22546 126617 -1 1572 12 644 1061 84679 17571 2.40905 2.40905 -93.077 -2.40905 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.016195 0.0143576 100 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30212 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 16.3 MiB 0.14 997 10448 2232 7093 1123 55.0 MiB 0.14 0.00 5.44618 -130.736 -5.44618 5.44618 0.77 0.000767356 0.000709003 0.0386703 0.0357849 28 3007 35 6.65987e+06 431052 500653. 1732.36 5.70 0.24615 0.214605 21970 115934 -1 2343 23 1462 2748 236954 52951 4.89482 4.89482 -137.056 -4.89482 0 0 612192. 2118.31 0.21 0.10 0.13 -1 -1 0.21 0.0343689 0.0301899 139 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17124 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55516 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 15.6 MiB 0.09 805 9600 2394 6142 1064 54.2 MiB 0.13 0.00 3.39504 -104.25 -3.39504 3.39504 0.78 0.000612991 0.000566853 0.0345364 0.0319848 30 1782 20 6.65987e+06 253560 526063. 1820.29 1.02 0.108491 0.0955983 22546 126617 -1 1546 18 834 1415 101768 21800 2.62751 2.62751 -99.5778 -2.62751 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0221063 0.0193589 104 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.18 17248 1 0.03 -1 -1 30360 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55712 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 16.0 MiB 0.15 870 16295 4607 9720 1968 54.4 MiB 0.19 0.00 3.88231 -108.178 -3.88231 3.88231 0.76 0.0006428 0.000595526 0.0510136 0.0472439 26 1944 27 6.65987e+06 418374 477104. 1650.88 1.04 0.132683 0.117318 21682 110474 -1 1689 19 761 1386 110592 23531 2.60605 2.60605 -99.3901 -2.60605 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0247794 0.0216797 105 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30316 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 16.2 MiB 0.25 1186 15151 5050 8219 1882 54.9 MiB 0.24 0.00 4.37661 -129.138 -4.37661 4.37661 0.76 0.00075078 0.000694784 0.0641139 0.0594109 26 3119 40 6.65987e+06 304272 477104. 1650.88 3.68 0.268818 0.235149 21682 110474 -1 2478 20 1563 2368 224172 47722 3.52557 3.52557 -122.515 -3.52557 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0308295 0.0271518 138 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 16.0 MiB 0.17 884 5548 1103 3958 487 54.7 MiB 0.10 0.00 4.37207 -129.772 -4.37207 4.37207 0.77 0.000784523 0.000725871 0.0249249 0.0231271 32 2111 21 6.65987e+06 304272 554710. 1919.41 0.97 0.116448 0.102176 22834 132086 -1 1777 21 1262 1916 174451 37937 3.69957 3.69957 -126.807 -3.69957 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0320268 0.0281471 130 54 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.10 17908 1 0.03 -1 -1 30376 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 16.3 MiB 0.20 1040 15391 4199 8930 2262 54.7 MiB 0.23 0.00 4.54089 -136.701 -4.54089 4.54089 0.78 0.000762513 0.000705371 0.0605882 0.0560587 32 2278 21 6.65987e+06 342306 554710. 1919.41 0.96 0.152172 0.135142 22834 132086 -1 2054 18 1085 1880 153375 33556 3.67131 3.67131 -128.336 -3.67131 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0286702 0.0253405 132 51 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.19 17232 1 0.03 -1 -1 30492 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55652 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 15.9 MiB 0.24 821 7476 1923 4958 595 54.3 MiB 0.12 0.00 4.66411 -131.468 -4.66411 4.66411 0.79 0.000641925 0.000594175 0.0302543 0.028047 30 1894 22 6.65987e+06 202848 526063. 1820.29 0.90 0.107874 0.0948136 22546 126617 -1 1624 14 710 974 70441 15044 3.08625 3.08625 -109.988 -3.08625 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0199318 0.0176383 103 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.16 17860 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 16.0 MiB 0.23 768 7736 1918 4969 849 54.6 MiB 0.13 0.00 3.69598 -115.422 -3.69598 3.69598 0.76 0.00070283 0.00065072 0.0328115 0.0303987 30 1921 19 6.65987e+06 240882 526063. 1820.29 0.92 0.113229 0.0996431 22546 126617 -1 1619 18 932 1376 92580 20719 2.92851 2.92851 -107.297 -2.92851 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0255908 0.0224945 111 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.17 17800 1 0.03 -1 -1 30340 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 16.2 MiB 0.23 822 9815 2052 6788 975 54.8 MiB 0.12 0.00 3.34001 -95.394 -3.34001 3.34001 0.76 0.000727649 0.0006728 0.0358061 0.0332055 28 2229 22 6.65987e+06 418374 500653. 1732.36 1.16 0.122325 0.107742 21970 115934 -1 1832 22 1224 2130 173905 38710 2.64939 2.64939 -93.3317 -2.64939 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0307324 0.0268705 123 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.14 17588 1 0.03 -1 -1 30384 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55612 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 15.8 MiB 0.14 864 12623 3003 8699 921 54.3 MiB 0.15 0.00 4.17801 -101.983 -4.17801 4.17801 0.80 0.000639483 0.000591309 0.0400542 0.0370786 26 2239 22 6.65987e+06 443730 477104. 1650.88 1.21 0.118702 0.104634 21682 110474 -1 1914 19 1015 2039 186440 38393 3.35097 3.35097 -103.612 -3.35097 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0242591 0.0212259 115 27 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.19 17904 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 16.0 MiB 0.25 739 8360 2842 3913 1605 54.5 MiB 0.13 0.00 4.07397 -113.958 -4.07397 4.07397 0.77 0.000687463 0.000634999 0.0368094 0.0340855 32 2005 22 6.65987e+06 215526 554710. 1919.41 1.00 0.120032 0.105662 22834 132086 -1 1763 20 1303 2240 242408 51707 3.03391 3.03391 -107.365 -3.03391 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0273356 0.0239013 108 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17864 1 0.03 -1 -1 30212 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 15.9 MiB 0.21 854 4110 634 3368 108 54.5 MiB 0.09 0.00 3.78604 -125.597 -3.78604 3.78604 0.82 0.000724509 0.00067035 0.0187171 0.0173754 26 2646 39 6.65987e+06 253560 477104. 1650.88 1.45 0.125932 0.109484 21682 110474 -1 2026 18 1241 1781 164641 37062 2.92531 2.92531 -120.458 -2.92531 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0264559 0.0232472 120 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17192 1 0.03 -1 -1 30364 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55780 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 15.9 MiB 0.09 847 5711 1070 3973 668 54.5 MiB 0.09 0.00 4.49904 -123.598 -4.49904 4.49904 0.76 0.000685113 0.000634184 0.0205412 0.0190361 30 2271 20 6.65987e+06 405696 526063. 1820.29 1.04 0.10496 0.0919124 22546 126617 -1 1806 19 1021 1834 122434 29360 3.63843 3.63843 -114.998 -3.63843 0 0 666494. 2306.21 0.24 0.07 0.13 -1 -1 0.24 0.0273021 0.02414 127 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17632 1 0.03 -1 -1 30400 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1096 14639 4278 7910 2451 55.1 MiB 0.24 0.00 5.13815 -159.632 -5.13815 5.13815 0.77 0.00076672 0.000710121 0.0626556 0.0578066 32 2952 19 6.65987e+06 278916 554710. 1919.41 1.03 0.147954 0.131701 22834 132086 -1 2538 22 1784 2655 251222 54380 4.33371 4.33371 -147.171 -4.33371 0 0 701300. 2426.64 0.34 0.10 0.15 -1 -1 0.34 0.0333906 0.029369 144 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1097 14331 4044 8499 1788 54.8 MiB 0.22 0.00 4.9662 -142.984 -4.9662 4.9662 0.77 0.000808877 0.000748042 0.0563854 0.0521996 28 2661 22 6.65987e+06 405696 500653. 1732.36 1.21 0.155773 0.138239 21970 115934 -1 2152 17 1066 1871 159197 33794 3.78603 3.78603 -129.572 -3.78603 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0288827 0.0255429 142 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1087 19136 6054 10420 2662 54.9 MiB 0.26 0.00 4.23232 -136.463 -4.23232 4.23232 0.76 0.000808387 0.000747277 0.0692832 0.06409 28 2731 22 6.65987e+06 469086 500653. 1732.36 1.19 0.16767 0.149278 21970 115934 -1 2390 22 1466 2513 234998 50095 3.45091 3.45091 -131.675 -3.45091 0 0 612192. 2118.31 0.24 0.10 0.12 -1 -1 0.24 0.0356979 0.0314049 140 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17516 1 0.03 -1 -1 30224 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55632 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 15.7 MiB 0.21 753 14081 4985 6810 2286 54.3 MiB 0.18 0.00 3.61906 -107.365 -3.61906 3.61906 0.77 0.000633124 0.000585615 0.0531786 0.0491447 32 1906 21 6.65987e+06 240882 554710. 1919.41 0.95 0.128142 0.113549 22834 132086 -1 1766 19 1120 1834 183572 38638 2.64945 2.64945 -99.7845 -2.64945 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0242527 0.02124 105 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17812 1 0.03 -1 -1 30436 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 16.4 MiB 0.24 993 13583 3880 7603 2100 54.9 MiB 0.21 0.00 4.75724 -141.541 -4.75724 4.75724 0.77 0.0007912 0.000732214 0.0627559 0.0581492 32 2153 21 6.65987e+06 266238 554710. 1919.41 0.99 0.157815 0.140337 22834 132086 -1 1973 20 1599 2484 209175 45109 3.74357 3.74357 -135.301 -3.74357 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0315909 0.027776 137 63 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17712 1 0.03 -1 -1 30296 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 16.3 MiB 0.26 984 6328 1212 4906 210 55.0 MiB 0.12 0.00 5.08874 -146.537 -5.08874 5.08874 0.79 0.000755643 0.000699221 0.0271358 0.0251332 30 2626 26 6.65987e+06 304272 526063. 1820.29 1.05 0.12217 0.107201 22546 126617 -1 2149 21 1230 1862 158097 33471 4.07225 4.07225 -137.514 -4.07225 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0310913 0.0273526 138 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30180 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1115 15391 3929 9868 1594 54.8 MiB 0.23 0.00 5.2191 -153.261 -5.2191 5.2191 0.77 0.000742932 0.000686475 0.0588374 0.0544235 32 2747 20 6.65987e+06 354984 554710. 1919.41 0.98 0.146972 0.130513 22834 132086 -1 2305 20 1311 2029 178409 39289 4.38123 4.38123 -147.75 -4.38123 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0299712 0.0263609 146 47 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17644 1 0.03 -1 -1 30340 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 16.4 MiB 0.86 822 9963 2514 6047 1402 55.0 MiB 0.16 0.00 4.35758 -125.649 -4.35758 4.35758 0.77 0.000785263 0.000726654 0.0398707 0.0368972 30 1974 19 6.65987e+06 393018 526063. 1820.29 0.94 0.130531 0.11521 22546 126617 -1 1495 15 828 1360 91727 21330 2.81791 2.81791 -104.887 -2.81791 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.025557 0.0226478 133 83 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30472 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1042 15822 5317 8613 1892 54.8 MiB 0.26 0.00 4.76549 -137.992 -4.76549 4.76549 0.77 0.00078703 0.000728051 0.071293 0.0660154 30 2488 24 6.65987e+06 253560 526063. 1820.29 1.06 0.16958 0.150993 22546 126617 -1 2069 21 1149 2057 150180 31960 3.72731 3.72731 -128.729 -3.72731 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0343766 0.0302769 133 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30304 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 16.4 MiB 0.33 913 8934 2134 6274 526 54.8 MiB 0.15 0.00 4.51892 -126.294 -4.51892 4.51892 0.77 0.000781044 0.000722184 0.0378366 0.0350734 26 2645 30 6.65987e+06 367662 477104. 1650.88 1.54 0.145572 0.128037 21682 110474 -1 2121 19 1386 2170 170633 39427 3.37797 3.37797 -121.483 -3.37797 0 0 585099. 2024.56 0.22 0.08 0.12 -1 -1 0.22 0.0298733 0.0262529 131 85 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17104 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 15.8 MiB 0.09 724 12416 3530 7132 1754 54.3 MiB 0.15 0.00 3.74649 -112.139 -3.74649 3.74649 0.77 0.000596479 0.000551931 0.0460438 0.0426373 32 1700 22 6.65987e+06 190170 554710. 1919.41 0.90 0.118458 0.104936 22834 132086 -1 1534 21 929 1380 130480 28595 2.72685 2.72685 -103.991 -2.72685 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0258915 0.0226593 96 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30312 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 16.4 MiB 0.27 989 15430 4612 8155 2663 54.8 MiB 0.22 0.00 4.41154 -133.367 -4.41154 4.41154 0.77 0.000793534 0.000733063 0.0604122 0.0558985 32 2380 21 6.65987e+06 380340 554710. 1919.41 1.00 0.155177 0.137527 22834 132086 -1 2073 18 1303 2138 187834 41244 3.62951 3.62951 -127.335 -3.62951 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0293171 0.025864 130 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.14 17636 1 0.04 -1 -1 30360 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 16.4 MiB 0.27 902 8685 2007 6399 279 54.9 MiB 0.17 0.00 4.76517 -143.598 -4.76517 4.76517 0.78 0.000827864 0.000764376 0.0427972 0.0396032 32 2498 23 6.65987e+06 253560 554710. 1919.41 1.04 0.145132 0.128099 22834 132086 -1 2151 22 1941 3080 276712 61374 3.89397 3.89397 -141.306 -3.89397 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0359772 0.0316647 147 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.12 17500 1 0.03 -1 -1 30092 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55780 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 16.0 MiB 0.23 946 12143 3182 7420 1541 54.5 MiB 0.16 0.00 4.15372 -120.605 -4.15372 4.15372 0.77 0.000634524 0.000587129 0.0451712 0.041801 28 2198 21 6.65987e+06 240882 500653. 1732.36 2.75 0.188076 0.164066 21970 115934 -1 1957 19 1048 1356 127513 26648 3.03971 3.03971 -111.986 -3.03971 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0241174 0.0211209 111 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.17 17068 1 0.03 -1 -1 30372 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55612 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 15.6 MiB 0.09 732 8685 2467 5468 750 54.3 MiB 0.13 0.00 3.75938 -108.757 -3.75938 3.75938 0.77 0.000601426 0.000556468 0.0304195 0.028138 30 1696 18 6.65987e+06 266238 526063. 1820.29 0.93 0.0984783 0.0866847 22546 126617 -1 1507 18 803 1368 104175 22539 2.55231 2.55231 -96.7374 -2.55231 0 0 666494. 2306.21 0.24 0.06 0.14 -1 -1 0.24 0.0227844 0.0200464 106 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30480 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 16.3 MiB 0.15 1015 15533 4784 8284 2465 55.1 MiB 0.24 0.00 4.92983 -152.714 -4.92983 4.92983 0.76 0.000780698 0.000723661 0.0641891 0.0595642 28 2926 29 6.65987e+06 316950 500653. 1732.36 1.36 0.167291 0.149303 21970 115934 -1 2292 19 1614 2091 197374 43264 4.29003 4.29003 -152.823 -4.29003 0 0 612192. 2118.31 0.24 0.09 0.12 -1 -1 0.24 0.0313037 0.0279471 144 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.20 17584 1 0.03 -1 -1 30288 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1191 12305 3278 8039 988 54.9 MiB 0.18 0.00 4.93544 -150.743 -4.93544 4.93544 0.77 0.000770512 0.000712585 0.0486234 0.0450216 26 3092 31 6.65987e+06 354984 477104. 1650.88 1.62 0.15547 0.137476 21682 110474 -1 2655 20 1573 2503 218256 47338 4.62757 4.62757 -153.114 -4.62757 0 0 585099. 2024.56 0.21 0.09 0.12 -1 -1 0.21 0.0306479 0.0269718 151 56 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17364 1 0.03 -1 -1 30316 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.4 MiB 0.07 1117 11004 2566 7834 604 55.1 MiB 0.18 0.00 5.28255 -141.369 -5.28255 5.28255 0.77 0.00079252 0.000734156 0.0403576 0.0373295 28 3039 24 6.65987e+06 456408 500653. 1732.36 3.32 0.236855 0.206417 21970 115934 -1 2567 21 1611 2858 271772 56783 4.58042 4.58042 -139.995 -4.58042 0 0 612192. 2118.31 0.21 0.11 0.08 -1 -1 0.21 0.0340429 0.0300298 153 3 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30112 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55772 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 15.9 MiB 0.21 750 7863 1674 5072 1117 54.5 MiB 0.12 0.00 3.28175 -94.6726 -3.28175 3.28175 0.77 0.000697817 0.000645292 0.0286817 0.0265623 30 1773 20 6.65987e+06 393018 526063. 1820.29 0.94 0.110303 0.0968998 22546 126617 -1 1473 17 889 1474 88770 20453 2.72971 2.72971 -90.9982 -2.72971 0 0 666494. 2306.21 0.22 0.07 0.08 -1 -1 0.22 0.0287211 0.025466 120 52 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30536 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55428 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 15.6 MiB 0.05 638 11948 3525 6694 1729 54.1 MiB 0.13 0.00 3.4543 -94.1654 -3.4543 3.4543 0.76 0.000588701 0.000545278 0.0430848 0.0399194 28 1534 21 6.65987e+06 266238 500653. 1732.36 0.87 0.114116 0.100727 21970 115934 -1 1368 19 861 1262 113980 25373 2.77177 2.77177 -90.9328 -2.77177 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0231014 0.0202493 97 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 18044 1 0.03 -1 -1 30300 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 16.7 MiB 0.17 1319 10542 2869 6884 789 55.0 MiB 0.19 0.00 4.22384 -138.261 -4.22384 4.22384 0.76 0.000880843 0.000816188 0.0495142 0.0459215 26 4079 35 6.65987e+06 329628 477104. 1650.88 6.62 0.287046 0.250927 21682 110474 -1 3170 20 1944 3172 299188 64276 4.28457 4.28457 -143.573 -4.28457 0 0 585099. 2024.56 0.21 0.11 0.11 -1 -1 0.21 0.0361701 0.0319107 170 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.15 17808 1 0.03 -1 -1 30300 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 16.3 MiB 0.83 967 9417 2580 6478 359 54.9 MiB 0.16 0.00 5.3126 -152.671 -5.3126 5.3126 0.77 0.000782616 0.000724374 0.0429554 0.039779 30 2338 19 6.65987e+06 266238 526063. 1820.29 1.04 0.135188 0.11964 22546 126617 -1 1893 17 956 1461 106897 22664 4.14583 4.14583 -139.043 -4.14583 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0277293 0.0245035 150 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 15.9 MiB 0.80 910 12186 3808 6300 2078 54.5 MiB 0.18 0.00 4.17204 -128.915 -4.17204 4.17204 0.77 0.000718046 0.00066393 0.0518166 0.0479523 30 2041 19 6.65987e+06 228204 526063. 1820.29 0.94 0.135279 0.119931 22546 126617 -1 1736 17 890 1321 91024 19426 3.15477 3.15477 -122.128 -3.15477 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0253459 0.0223544 126 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 15.9 MiB 0.11 997 13726 4134 8495 1097 54.5 MiB 0.21 0.00 4.87399 -127.071 -4.87399 4.87399 0.78 0.000727608 0.000672155 0.0495784 0.0457557 30 2088 17 6.65987e+06 380340 526063. 1820.29 0.92 0.131832 0.11678 22546 126617 -1 1865 15 741 1209 95124 20350 3.25465 3.25465 -111.005 -3.25465 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0233893 0.0206984 126 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30128 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 16.3 MiB 0.21 1094 9732 2284 6801 647 55.1 MiB 0.17 0.01 4.71929 -136.272 -4.71929 4.71929 0.78 0.00079886 0.000739044 0.0388886 0.036061 26 2678 25 6.65987e+06 418374 477104. 1650.88 1.34 0.142207 0.125129 21682 110474 -1 2393 24 1582 2602 223423 48566 3.68851 3.68851 -129.214 -3.68851 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.0371082 0.0325453 144 50 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30132 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 16.0 MiB 0.15 968 12693 2914 8596 1183 54.6 MiB 0.20 0.01 3.66981 -110.801 -3.66981 3.66981 0.78 0.000714571 0.00066093 0.0457877 0.0423628 32 2210 17 6.65987e+06 393018 554710. 1919.41 0.96 0.124548 0.110273 22834 132086 -1 1958 18 1098 1903 171607 35985 3.11751 3.11751 -113.125 -3.11751 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0260866 0.0229206 124 51 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 16.4 MiB 0.17 1162 15493 5220 7522 2751 55.1 MiB 0.25 0.01 4.81692 -150.127 -4.81692 4.81692 0.76 0.000921068 0.000852665 0.0656821 0.0607486 32 2948 29 6.65987e+06 304272 554710. 1919.41 1.09 0.166592 0.147972 22834 132086 -1 2546 20 1885 2878 274744 57194 4.24783 4.24783 -147.506 -4.24783 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0314779 0.0277685 147 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.17 17492 1 0.03 -1 -1 30088 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 16.5 MiB 0.35 1013 10448 2457 7443 548 55.2 MiB 0.19 0.01 4.61703 -140.056 -4.61703 4.61703 0.78 0.000811164 0.000750146 0.0410989 0.0380342 26 2897 45 6.65987e+06 431052 477104. 1650.88 1.84 0.174978 0.153783 21682 110474 -1 2365 22 1399 2180 199139 43479 3.54965 3.54965 -133.05 -3.54965 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0346405 0.0304155 143 62 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17240 1 0.03 -1 -1 30268 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55536 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 15.7 MiB 0.12 669 12030 4965 6160 905 54.2 MiB 0.14 0.00 3.76255 -110.557 -3.76255 3.76255 0.82 0.000624945 0.000577847 0.0472565 0.043742 32 1503 23 6.65987e+06 215526 554710. 1919.41 0.96 0.120647 0.106724 22834 132086 -1 1397 23 1059 1512 176285 36274 2.60471 2.60471 -95.6277 -2.60471 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0273273 0.0238118 92 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 16.1 MiB 0.24 897 13992 5018 7267 1707 54.6 MiB 0.18 0.00 3.93547 -124.701 -3.93547 3.93547 0.85 0.000417228 0.000380653 0.0536353 0.0495528 28 2133 20 6.65987e+06 253560 500653. 1732.36 0.94 0.132493 0.117544 21970 115934 -1 1904 19 1303 1735 158871 33826 3.09557 3.09557 -116.003 -3.09557 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0263024 0.0230607 116 58 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.20 17636 1 0.05 -1 -1 30376 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 16.3 MiB 0.12 945 14020 3581 8011 2428 54.9 MiB 0.18 0.00 4.66818 -124.475 -4.66818 4.66818 0.78 0.000512854 0.000467553 0.0380232 0.0348792 32 2158 20 6.65987e+06 469086 554710. 1919.41 1.05 0.112396 0.0992742 22834 132086 -1 1982 21 1363 2327 223016 46242 3.90897 3.90897 -120.541 -3.90897 0 0 701300. 2426.64 0.26 0.09 0.16 -1 -1 0.26 0.0310017 0.0272195 129 33 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.15 17408 1 0.03 -1 -1 30408 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 16.0 MiB 0.21 809 8448 1963 6049 436 54.4 MiB 0.12 0.00 4.16472 -111.492 -4.16472 4.16472 0.80 0.000461542 0.000419726 0.0297058 0.0274769 26 2270 36 6.65987e+06 266238 477104. 1650.88 1.47 0.11785 0.103533 21682 110474 -1 1871 19 1206 1526 157886 36317 3.17891 3.17891 -109.354 -3.17891 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0237135 0.0207374 110 31 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.17 17552 1 0.03 -1 -1 30044 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 15.7 MiB 0.20 618 8852 1890 6315 647 54.4 MiB 0.11 0.00 3.69503 -110.464 -3.69503 3.69503 0.77 0.000646591 0.000598668 0.035527 0.0329103 32 2186 22 6.65987e+06 202848 554710. 1919.41 1.02 0.113618 0.100086 22834 132086 -1 1635 22 1401 2382 209459 47901 3.00105 3.00105 -106.146 -3.00105 0 0 701300. 2426.64 0.25 0.09 0.14 -1 -1 0.25 0.0278298 0.0243351 109 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17684 1 0.03 -1 -1 30088 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 16.3 MiB 0.23 938 16973 4485 9905 2583 55.0 MiB 0.23 0.00 4.16177 -122.328 -4.16177 4.16177 0.77 0.000790111 0.000731071 0.062721 0.0580224 32 2145 19 6.65987e+06 443730 554710. 1919.41 0.97 0.154529 0.137367 22834 132086 -1 1880 20 1316 1998 180565 38329 2.84876 2.84876 -107.858 -2.84876 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0319293 0.0280211 135 64 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17540 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 16.0 MiB 0.17 818 9872 2327 5876 1669 54.5 MiB 0.12 0.00 3.9535 -119.787 -3.9535 3.9535 0.77 0.000623683 0.000577144 0.0367224 0.0340029 28 2124 19 6.65987e+06 240882 500653. 1732.36 0.91 0.108963 0.0960765 21970 115934 -1 1806 17 995 1465 131415 28443 3.01857 3.01857 -110.007 -3.01857 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0220066 0.0193276 108 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.18 17660 1 0.03 -1 -1 30064 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56044 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 16.1 MiB 0.25 854 7007 1324 4687 996 54.7 MiB 0.09 0.00 3.67932 -112.828 -3.67932 3.67932 0.76 0.000753761 0.000696277 0.0275192 0.0254942 28 2383 21 6.65987e+06 393018 500653. 1732.36 3.10 0.216377 0.187505 21970 115934 -1 1909 18 1080 1892 145796 33897 2.91691 2.91691 -104.075 -2.91691 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0277866 0.0244885 126 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17820 1 0.03 -1 -1 30292 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 16.3 MiB 0.75 956 13055 3385 8531 1139 54.8 MiB 0.19 0.00 4.2257 -136.613 -4.2257 4.2257 0.76 0.000816244 0.000754954 0.0521716 0.048256 32 2201 21 6.65987e+06 405696 554710. 1919.41 0.95 0.148348 0.131374 22834 132086 -1 1941 18 1308 1778 151826 32964 3.21883 3.21883 -125.923 -3.21883 0 0 701300. 2426.64 0.23 0.08 0.09 -1 -1 0.23 0.0300691 0.0265156 138 91 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.17 17364 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55624 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 15.9 MiB 0.23 770 8481 2112 5900 469 54.3 MiB 0.12 0.00 3.26384 -102.093 -3.26384 3.26384 0.76 0.000679099 0.000627875 0.0350929 0.0324858 30 1729 18 6.65987e+06 215526 526063. 1820.29 0.80 0.0846616 0.0750279 22546 126617 -1 1503 19 761 1221 95092 19735 2.55631 2.55631 -95.6342 -2.55631 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0256021 0.0224129 104 57 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30228 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55784 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 15.9 MiB 0.14 877 7823 1725 5526 572 54.5 MiB 0.12 0.00 4.21052 -129.412 -4.21052 4.21052 0.76 0.000666672 0.000617124 0.0311439 0.0288463 28 2285 20 6.65987e+06 240882 500653. 1732.36 0.95 0.1099 0.0966055 21970 115934 -1 2078 20 1248 1836 166912 36505 3.20805 3.20805 -121.542 -3.20805 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.026711 0.0233997 115 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17880 1 0.03 -1 -1 30308 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 16.1 MiB 0.13 1033 8591 2028 5962 601 54.7 MiB 0.14 0.00 4.5425 -136.752 -4.5425 4.5425 0.77 0.000714334 0.00066099 0.035096 0.0325124 26 2664 26 6.65987e+06 278916 477104. 1650.88 1.36 0.128947 0.113499 21682 110474 -1 2367 21 1690 2368 211167 46647 3.95911 3.95911 -137.483 -3.95911 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0305109 0.0268279 130 30 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30156 -1 -1 28 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55856 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 15.9 MiB 0.37 878 11177 3323 6945 909 54.5 MiB 0.16 0.00 4.7062 -118.142 -4.7062 4.7062 0.76 0.000708593 0.00065643 0.0426392 0.0395104 30 1879 16 6.65987e+06 354984 526063. 1820.29 0.87 0.121444 0.107425 22546 126617 -1 1638 14 670 1208 68806 16483 3.29783 3.29783 -105.768 -3.29783 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0217812 0.0192698 121 55 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30440 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56144 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 16.7 MiB 0.24 1007 9495 2407 6691 397 54.8 MiB 0.17 0.00 5.16517 -161.462 -5.16517 5.16517 0.77 0.00082328 0.000761992 0.0439348 0.0407053 32 2678 20 6.65987e+06 291594 554710. 1919.41 1.02 0.14093 0.124675 22834 132086 -1 2222 20 1679 2362 195393 44802 3.92137 3.92137 -142.329 -3.92137 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0331861 0.0292534 153 65 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.13 17080 1 0.03 -1 -1 30364 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 15.6 MiB 0.09 794 9181 2203 6150 828 54.2 MiB 0.11 0.00 3.53041 -99.5418 -3.53041 3.53041 0.77 0.000583201 0.000540212 0.0323373 0.0299758 32 1773 16 6.65987e+06 228204 554710. 1919.41 0.89 0.0966891 0.0852805 22834 132086 -1 1604 19 752 1211 102513 23097 2.60551 2.60551 -94.248 -2.60551 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.0219334 0.0191637 96 4 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.16 17768 1 0.03 -1 -1 30288 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 16.5 MiB 0.36 947 7201 1402 5250 549 54.9 MiB 0.07 0.00 4.0805 -134.669 -4.0805 4.0805 0.62 0.000365854 0.000334086 0.01409 0.0128704 32 2473 21 6.65987e+06 418374 554710. 1919.41 1.06 0.114927 0.10011 22834 132086 -1 2156 19 1545 2160 210192 45671 3.54537 3.54537 -132.541 -3.54537 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.032589 0.0287233 144 90 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.17 17764 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.2 MiB 0.28 692 9368 2494 5834 1040 54.7 MiB 0.17 0.00 3.5233 -119.857 -3.5233 3.5233 0.77 0.000776205 0.000716377 0.0510597 0.0471848 32 1760 21 6.65987e+06 202848 554710. 1919.41 0.98 0.143502 0.127001 22834 132086 -1 1558 19 1364 1892 193443 41146 2.89597 2.89597 -118.248 -2.89597 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0297268 0.0260989 115 96 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.17 17520 1 0.04 -1 -1 30432 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 16.1 MiB 0.37 963 9383 2362 6118 903 54.7 MiB 0.15 0.01 4.19332 -127.565 -4.19332 4.19332 0.77 0.000775219 0.000716745 0.0370017 0.0342115 32 2277 22 6.65987e+06 393018 554710. 1919.41 0.94 0.130342 0.114762 22834 132086 -1 1855 20 990 1457 109425 25577 2.97111 2.97111 -108.933 -2.97111 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0307276 0.0270048 130 60 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30376 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 16.6 MiB 0.35 1323 16127 4193 10390 1544 54.8 MiB 0.33 0.01 6.49946 -194.782 -6.49946 6.49946 0.76 0.00085013 0.000786691 0.0729305 0.0675961 28 3841 27 6.65987e+06 316950 500653. 1732.36 2.24 0.188181 0.167723 21970 115934 -1 2905 21 1839 2628 251972 52299 5.45214 5.45214 -181.895 -5.45214 0 0 612192. 2118.31 0.21 0.11 0.09 -1 -1 0.21 0.0363132 0.0320901 168 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.19 17552 1 0.02 -1 -1 30116 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55460 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 15.6 MiB 0.16 701 10895 2966 6376 1553 54.2 MiB 0.12 0.00 3.19181 -99.2246 -3.19181 3.19181 0.77 0.000531922 0.000487938 0.0370055 0.0342751 32 1547 19 6.65987e+06 215526 554710. 1919.41 0.95 0.0944989 0.0836373 22834 132086 -1 1375 19 694 910 86162 19123 2.17571 2.17571 -87.755 -2.17571 0 0 701300. 2426.64 0.24 0.05 0.14 -1 -1 0.24 0.0170711 0.0150569 86 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30428 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 15.8 MiB 0.11 559 11200 4645 5368 1187 54.4 MiB 0.12 0.00 4.03052 -111.683 -4.03052 4.03052 0.77 0.000651949 0.00060283 0.0461642 0.0427021 32 1739 26 6.65987e+06 202848 554710. 1919.41 1.04 0.128746 0.113609 22834 132086 -1 1404 24 1150 1712 179758 44272 2.91997 2.91997 -103.917 -2.91997 0 0 701300. 2426.64 0.31 0.05 0.14 -1 -1 0.31 0.0161876 0.0143175 92 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17360 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 16.1 MiB 0.07 882 13663 3967 7775 1921 54.6 MiB 0.21 0.00 3.38183 -111.047 -3.38183 3.38183 0.78 0.000685702 0.00063466 0.0522859 0.0483939 32 2151 26 6.65987e+06 266238 554710. 1919.41 1.02 0.137654 0.121803 22834 132086 -1 1916 20 1255 2221 219353 46775 2.62237 2.62237 -107.809 -2.62237 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0269857 0.0236376 115 34 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30320 -1 -1 27 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55452 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 15.6 MiB 0.08 461 9234 2985 4025 2224 54.2 MiB 0.08 0.00 3.09981 -73.1644 -3.09981 3.09981 0.76 0.000515556 0.000476172 0.0278046 0.0256839 34 1293 24 6.65987e+06 342306 585099. 2024.56 3.01 0.189014 0.162718 23122 138558 -1 1035 19 702 1212 90133 22435 2.45825 2.45825 -69.0516 -2.45825 0 0 742403. 2568.87 0.25 0.05 0.15 -1 -1 0.25 0.0199335 0.01743 89 29 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30236 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 16.3 MiB 0.19 1082 15273 5386 7964 1923 54.8 MiB 0.25 0.01 3.97418 -128.905 -3.97418 3.97418 0.77 0.000789744 0.000730121 0.068954 0.0637759 32 2806 20 6.65987e+06 253560 554710. 1919.41 1.03 0.162831 0.144993 22834 132086 -1 2392 18 1427 2545 248890 50807 3.21465 3.21465 -124.458 -3.21465 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0295226 0.026025 135 72 -1 -1 -1 -1 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17524 1 0.04 -1 -1 30288 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 16.4 MiB 0.34 841 9951 2183 7152 616 55.1 MiB 0.17 0.00 4.37472 -138.365 -4.37472 4.37472 0.77 0.000821721 0.000758146 0.0406932 0.0376333 32 2351 24 6.65987e+06 418374 554710. 1919.41 1.01 0.144295 0.127138 22834 132086 -1 1885 17 1371 1959 157602 36595 3.31083 3.31083 -127.706 -3.31083 0 0 701300. 2426.64 0.21 0.04 0.09 -1 -1 0.21 0.0161903 0.0144927 142 90 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30040 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 17.0 MiB 2.02 849 12139 5116 6732 291 55.5 MiB 0.16 0.00 5.4594 -159.287 -5.4594 5.4594 0.79 0.000768915 0.000710674 0.0603732 0.0559147 44 2858 34 6.95648e+06 188184 787024. 2723.27 3.32 0.239234 0.210168 27778 195446 -1 2054 23 1595 2412 261819 50714 4.52711 4.52711 -154.66 -4.52711 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0346282 0.0304093 81 50 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.21 17672 1 0.03 -1 -1 30412 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 17.0 MiB 1.97 750 10998 3991 5243 1764 55.6 MiB 0.14 0.00 4.63092 -138.355 -4.63092 4.63092 0.78 0.000771748 0.000714638 0.05465 0.0506452 38 2853 47 6.95648e+06 217135 678818. 2348.85 2.23 0.213403 0.187085 26626 170182 -1 1996 20 1649 2307 235074 48987 4.63691 4.63691 -157.132 -4.63691 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0309417 0.0271952 80 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30468 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 16.9 MiB 1.07 1011 6839 1853 4585 401 55.3 MiB 0.10 0.00 3.76508 -124.296 -3.76508 3.76508 0.79 0.000683983 0.000631612 0.0301797 0.0279608 46 2328 26 6.95648e+06 217135 828058. 2865.25 3.98 0.233763 0.202217 28066 200906 -1 2008 21 1082 1436 128834 25005 3.73092 3.73092 -122.715 -3.73092 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0287021 0.025218 76 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.17 17812 1 0.03 -1 -1 30348 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 16.8 MiB 0.30 653 13152 5791 6666 695 55.2 MiB 0.14 0.00 4.18338 -115.281 -4.18338 4.18338 0.78 0.000687236 0.000635535 0.055216 0.0510828 44 2618 34 6.95648e+06 275038 787024. 2723.27 2.82 0.207192 0.18168 27778 195446 -1 1711 25 1275 2118 201415 44152 3.99732 3.99732 -126.497 -3.99732 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0342989 0.0299916 71 31 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.19 17696 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 16.9 MiB 0.72 735 12120 5042 6627 451 55.5 MiB 0.17 0.00 4.33299 -127.984 -4.33299 4.33299 0.79 0.000743818 0.000687902 0.0633305 0.0586378 48 2223 44 6.95648e+06 231611 865456. 2994.66 5.13 0.30551 0.26645 28354 207349 -1 1884 22 1358 2334 259214 50944 4.28441 4.28441 -139.666 -4.28441 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0325216 0.0286974 73 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 16.9 MiB 1.03 762 14779 6278 7942 559 55.5 MiB 0.16 0.00 3.0584 -114.242 -3.0584 3.0584 0.78 0.000784383 0.00072424 0.065219 0.0603168 46 2225 43 6.95648e+06 303989 828058. 2865.25 3.01 0.244774 0.214864 28066 200906 -1 1539 19 1196 1756 159826 32984 3.17337 3.17337 -115.942 -3.17337 0 0 1.01997e+06 3529.29 0.31 0.08 0.20 -1 -1 0.31 0.030091 0.0265541 79 58 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.19 17356 1 0.03 -1 -1 30632 -1 -1 13 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 16.6 MiB 3.88 400 8118 3296 4253 569 55.0 MiB 0.08 0.00 3.56899 -93.1575 -3.56899 3.56899 0.78 0.000598375 0.000553472 0.0348554 0.0322904 38 1674 44 6.95648e+06 188184 678818. 2348.85 1.95 0.169046 0.146956 26626 170182 -1 1241 41 1298 2086 188726 43940 3.23833 3.23833 -100.228 -3.23833 0 0 902133. 3121.57 0.30 0.09 0.16 -1 -1 0.30 0.0364965 0.0316285 52 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30288 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.8 MiB 0.36 691 11983 4028 5840 2115 55.3 MiB 0.13 0.00 3.0166 -94.5957 -3.0166 3.0166 0.78 0.000647265 0.000598135 0.0421227 0.0389754 36 2604 43 6.95648e+06 361892 648988. 2245.63 2.85 0.18605 0.162088 26050 158493 -1 1741 22 1182 1828 208037 47635 3.52522 3.52522 -111.226 -3.52522 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0280363 0.0245189 69 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.20 17876 1 0.03 -1 -1 30052 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 16.7 MiB 1.90 579 9684 3905 5251 528 55.1 MiB 0.11 0.00 3.39469 -115.112 -3.39469 3.39469 0.79 0.000687922 0.000635758 0.0455465 0.0421659 44 2480 47 6.95648e+06 159232 787024. 2723.27 12.08 0.351182 0.302997 27778 195446 -1 1497 26 1302 1844 174865 38864 3.14846 3.14846 -119.064 -3.14846 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0333048 0.0289949 66 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.13 17316 1 0.03 -1 -1 30052 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 16.6 MiB 1.24 566 8134 3343 4546 245 55.2 MiB 0.10 0.00 3.30928 -114.291 -3.30928 3.30928 0.80 0.000676109 0.000625096 0.0377321 0.034919 42 1842 37 6.95648e+06 144757 744469. 2576.02 1.84 0.187923 0.163593 27202 183097 -1 1419 16 1009 1395 118038 26270 2.79112 2.79112 -111.706 -2.79112 0 0 949917. 3286.91 0.29 0.06 0.18 -1 -1 0.29 0.023147 0.0204045 59 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17800 1 0.03 -1 -1 30444 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 16.6 MiB 1.75 471 10304 4280 5549 475 55.2 MiB 0.13 0.00 3.43453 -102.366 -3.43453 3.43453 0.82 0.000621069 0.000568656 0.0376706 0.0344468 46 1480 22 6.95648e+06 173708 828058. 2865.25 4.34 0.224516 0.193819 28066 200906 -1 1176 21 995 1393 121126 27567 2.95857 2.95857 -100.855 -2.95857 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0274923 0.0240197 55 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30248 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 16.4 MiB 1.40 590 10614 3394 4881 2339 55.1 MiB 0.09 0.00 3.37833 -114.652 -3.37833 3.37833 0.83 0.000453923 0.000411433 0.0323588 0.0295784 48 1986 30 6.95648e+06 144757 865456. 2994.66 3.74 0.174863 0.152428 28354 207349 -1 1425 18 1188 1515 160333 36502 2.83957 2.83957 -112.63 -2.83957 0 0 1.05005e+06 3633.38 0.35 0.07 0.20 -1 -1 0.35 0.0235972 0.0206995 62 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 17.0 MiB 1.87 833 13261 5618 7295 348 55.6 MiB 0.17 0.00 3.96008 -134.144 -3.96008 3.96008 0.80 0.000758271 0.000700593 0.062527 0.0578414 48 2714 45 6.95648e+06 217135 865456. 2994.66 5.29 0.296199 0.25906 28354 207349 -1 2164 32 1834 2694 471430 150384 3.49286 3.49286 -130.799 -3.49286 0 0 1.05005e+06 3633.38 0.35 0.18 0.20 -1 -1 0.35 0.0435375 0.0381562 83 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 17.0 MiB 0.85 789 9158 3216 4675 1267 55.5 MiB 0.11 0.00 4.48063 -134.265 -4.48063 4.48063 0.79 0.000790275 0.000730322 0.0412917 0.0381982 44 2194 24 6.95648e+06 318465 787024. 2723.27 2.06 0.163286 0.14324 27778 195446 -1 1772 20 1567 2172 223495 47699 4.00836 4.00836 -134.997 -4.00836 0 0 997811. 3452.63 0.32 0.09 0.20 -1 -1 0.32 0.0308287 0.0270883 75 61 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17512 1 0.02 -1 -1 30324 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 16.5 MiB 1.22 470 8444 3456 4562 426 55.0 MiB 0.09 0.00 3.10275 -88.0296 -3.10275 3.10275 0.78 0.000585782 0.000541475 0.0340096 0.0314838 42 1987 42 6.95648e+06 188184 744469. 2576.02 4.45 0.230935 0.199075 27202 183097 -1 1416 26 1145 1687 164036 38436 3.14317 3.14317 -102.033 -3.14317 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0287378 0.0249504 55 27 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17676 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 16.8 MiB 1.08 736 13381 4767 6091 2523 55.3 MiB 0.16 0.00 3.0625 -113.087 -3.0625 3.0625 0.80 0.000789121 0.000729461 0.063739 0.0590126 42 2677 40 6.95648e+06 246087 744469. 2576.02 12.56 0.437247 0.380638 27202 183097 -1 1865 20 1472 2293 212818 48336 3.69447 3.69447 -126.046 -3.69447 0 0 949917. 3286.91 0.32 0.09 0.21 -1 -1 0.32 0.0318322 0.0280422 76 58 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.16 17652 1 0.03 -1 -1 30112 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 16.9 MiB 2.03 821 11698 3981 5913 1804 55.4 MiB 0.16 0.00 4.42651 -139.682 -4.42651 4.42651 0.79 0.000747187 0.000690694 0.0554872 0.051395 36 2915 48 6.95648e+06 202660 648988. 2245.63 3.05 0.209785 0.184234 26050 158493 -1 1982 25 1718 2260 270345 85452 3.97412 3.97412 -142.14 -3.97412 0 0 828058. 2865.25 0.26 0.12 0.17 -1 -1 0.26 0.0365591 0.0320283 79 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17852 1 0.03 -1 -1 30288 -1 -1 9 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 16.8 MiB 0.90 568 11625 5013 6229 383 55.4 MiB 0.13 0.00 2.28966 -90.0891 -2.28966 2.28966 0.83 0.000700672 0.000647031 0.0561065 0.0518781 46 1933 39 6.95648e+06 130281 828058. 2865.25 3.10 0.219198 0.191818 28066 200906 -1 1409 20 1149 1678 183343 40642 2.44443 2.44443 -97.5086 -2.44443 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0292239 0.0255339 57 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17240 1 0.02 -1 -1 30092 -1 -1 9 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55944 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 16.1 MiB 0.33 438 9707 4039 5351 317 54.6 MiB 0.13 0.00 2.22846 -79.3536 -2.22846 2.22846 0.79 0.0005356 0.000492794 0.0423243 0.0390389 38 1472 33 6.95648e+06 130281 678818. 2348.85 1.84 0.154111 0.13407 26626 170182 -1 1076 15 578 661 61859 14476 2.22483 2.22483 -81.55 -2.22483 0 0 902133. 3121.57 0.27 0.04 0.17 -1 -1 0.27 0.0172534 0.015167 43 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30104 -1 -1 12 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 16.8 MiB 2.02 900 8449 3439 4770 240 55.3 MiB 0.10 0.00 4.11557 -135.517 -4.11557 4.11557 0.79 0.000660998 0.000611133 0.0377826 0.03501 40 2137 24 6.95648e+06 173708 706193. 2443.58 2.61 0.174583 0.152864 26914 176310 -1 2023 22 1541 2050 276891 53583 4.21986 4.21986 -152.912 -4.21986 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0284194 0.0248515 69 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30520 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 16.9 MiB 0.61 691 13626 5075 6512 2039 55.4 MiB 0.15 0.00 3.69419 -120.83 -3.69419 3.69419 0.79 0.00075325 0.000695933 0.058753 0.0543068 44 2233 28 6.95648e+06 289514 787024. 2723.27 3.11 0.221711 0.19452 27778 195446 -1 1643 25 1717 2348 215187 48285 3.98141 3.98141 -131.142 -3.98141 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0354619 0.0310313 75 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30444 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 17.0 MiB 1.41 803 10868 4396 5912 560 55.6 MiB 0.15 0.00 4.7576 -138.082 -4.7576 4.7576 0.79 0.000784509 0.000724816 0.0549421 0.0508637 48 2862 47 6.95648e+06 202660 865456. 2994.66 3.85 0.249989 0.218797 28354 207349 -1 2165 23 1772 2628 309431 66098 4.04242 4.04242 -140.886 -4.04242 0 0 1.05005e+06 3633.38 0.35 0.15 0.20 -1 -1 0.35 0.0447752 0.0393009 82 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17536 1 0.02 -1 -1 30564 -1 -1 13 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 16.0 MiB 0.86 416 8539 3544 4471 524 54.6 MiB 0.07 0.00 2.23646 -66.7931 -2.23646 2.23646 0.77 0.00046123 0.000425171 0.028635 0.0264432 36 1092 23 6.95648e+06 188184 648988. 2245.63 3.41 0.15359 0.132622 26050 158493 -1 921 18 585 753 72680 15035 2.25003 2.25003 -70.2741 -2.25003 0 0 828058. 2865.25 0.26 0.04 0.15 -1 -1 0.26 0.0169307 0.0147583 44 30 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17292 1 0.03 -1 -1 30316 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 16.7 MiB 0.67 670 9543 3600 4533 1410 55.3 MiB 0.11 0.00 4.68425 -117.235 -4.68425 4.68425 0.79 0.000671969 0.000621111 0.0424705 0.039326 44 2547 50 6.95648e+06 217135 787024. 2723.27 3.23 0.214906 0.187618 27778 195446 -1 1676 21 1215 2017 168258 41601 4.04746 4.04746 -122.981 -4.04746 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0279711 0.0245457 66 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.14 16980 1 0.03 -1 -1 29976 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.1 MiB 0.28 360 10055 3887 4514 1654 54.6 MiB 0.08 0.00 2.15326 -68.8392 -2.15326 2.15326 0.79 0.000455886 0.000418905 0.0320786 0.0295195 38 1119 24 6.95648e+06 115805 678818. 2348.85 1.73 0.12454 0.10825 26626 170182 -1 811 15 575 656 53605 13550 2.05738 2.05738 -71.8829 -2.05738 0 0 902133. 3121.57 0.27 0.04 0.17 -1 -1 0.27 0.0147836 0.0129973 42 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17408 1 0.03 -1 -1 30008 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 16.9 MiB 0.96 746 14106 6043 7637 426 55.3 MiB 0.16 0.00 4.49111 -123.956 -4.49111 4.49111 0.81 0.000687622 0.00063594 0.0602985 0.0558331 44 2596 25 6.95648e+06 217135 787024. 2723.27 4.54 0.280188 0.244217 27778 195446 -1 1859 20 1082 1757 198531 39005 3.77786 3.77786 -124.349 -3.77786 0 0 997811. 3452.63 0.32 0.08 0.20 -1 -1 0.32 0.0276266 0.0242492 68 24 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.20 17196 1 0.04 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 16.8 MiB 0.48 675 10873 4420 6034 419 55.3 MiB 0.11 0.00 2.9573 -100.116 -2.9573 2.9573 0.86 0.000691809 0.000639201 0.034925 0.0320139 48 1987 42 6.95648e+06 303989 865456. 2994.66 4.79 0.258156 0.223787 28354 207349 -1 1472 20 1236 2001 178021 38876 2.83657 2.83657 -103.581 -2.83657 0 0 1.05005e+06 3633.38 0.32 0.08 0.20 -1 -1 0.32 0.0278343 0.0244855 74 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30316 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 17.0 MiB 0.77 795 15383 6700 8206 477 55.5 MiB 0.18 0.00 4.43549 -130.994 -4.43549 4.43549 0.80 0.000792479 0.000736745 0.0656762 0.0607475 46 2322 47 6.95648e+06 275038 828058. 2865.25 2.87 0.230405 0.203152 28066 200906 -1 1796 21 1186 1946 186301 39234 3.84402 3.84402 -129.923 -3.84402 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0383551 0.0338084 72 50 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30216 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 16.5 MiB 0.83 836 12164 3915 6903 1346 55.1 MiB 0.13 0.00 3.08875 -104.395 -3.08875 3.08875 0.81 0.000654114 0.000604411 0.0540151 0.0499619 36 2212 27 6.95648e+06 144757 648988. 2245.63 1.81 0.167309 0.147195 26050 158493 -1 1908 21 1087 1657 196072 37878 3.05892 3.05892 -116.928 -3.05892 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0268264 0.0233842 55 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17552 1 0.03 -1 -1 30244 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 16.5 MiB 0.25 486 10916 4488 5855 573 55.0 MiB 0.11 0.00 3.37953 -96.5612 -3.37953 3.37953 0.78 0.000622468 0.000575797 0.0413975 0.0383099 42 1636 22 6.95648e+06 260562 744469. 2576.02 1.59 0.134569 0.117686 27202 183097 -1 1183 19 794 1097 105217 25231 2.85937 2.85937 -95.8482 -2.85937 0 0 949917. 3286.91 0.31 0.06 0.18 -1 -1 0.31 0.0238623 0.0209234 57 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.21 17384 1 0.03 -1 -1 30164 -1 -1 16 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 16.5 MiB 0.45 447 10796 4457 5651 688 55.1 MiB 0.11 0.00 2.9532 -88.5671 -2.9532 2.9532 0.79 0.000605297 0.000560514 0.0430879 0.0399101 44 1810 28 6.95648e+06 231611 787024. 2723.27 2.31 0.170545 0.148587 27778 195446 -1 1158 18 924 1432 121868 29817 2.78637 2.78637 -89.4136 -2.78637 0 0 997811. 3452.63 0.31 0.06 0.19 -1 -1 0.31 0.0221727 0.0193913 57 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30324 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 16.5 MiB 0.41 490 8754 2672 4372 1710 55.0 MiB 0.09 0.00 3.37459 -106.603 -3.37459 3.37459 0.79 0.00062473 0.000578048 0.0372664 0.0345271 46 1586 42 6.95648e+06 144757 828058. 2865.25 3.14 0.184095 0.160382 28066 200906 -1 1170 21 1114 1603 134101 32154 2.99282 2.99282 -105.733 -2.99282 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0255875 0.0223849 58 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.14 17240 1 0.03 -1 -1 30324 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 16.4 MiB 0.41 514 10050 3328 4861 1861 55.0 MiB 0.11 0.00 3.16614 -99.0057 -3.16614 3.16614 0.85 0.000417014 0.000375234 0.0357921 0.0326943 46 1706 32 6.95648e+06 275038 828058. 2865.25 4.79 0.225251 0.194721 28066 200906 -1 1262 18 958 1407 124264 28663 2.80352 2.80352 -100.011 -2.80352 0 0 1.01997e+06 3529.29 0.31 0.06 0.19 -1 -1 0.31 0.0231212 0.0202304 61 30 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30572 -1 -1 12 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 16.6 MiB 1.23 761 12537 5784 6209 544 55.2 MiB 0.13 0.00 2.98425 -104.866 -2.98425 2.98425 0.94 0.000651009 0.000600732 0.0486577 0.0446072 48 1640 16 6.95648e+06 173708 865456. 2994.66 4.08 0.239795 0.208124 28354 207349 -1 1579 19 974 1375 189986 35287 2.47942 2.47942 -100.544 -2.47942 0 0 1.05005e+06 3633.38 0.36 0.07 0.20 -1 -1 0.36 0.0250485 0.0219626 61 54 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30512 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 17.0 MiB 0.86 827 14593 4666 7411 2516 55.6 MiB 0.17 0.00 4.22723 -122.469 -4.22723 4.22723 0.79 0.000545099 0.000495871 0.0626402 0.0578283 38 3101 32 6.95648e+06 303989 678818. 2348.85 3.35 0.214237 0.190108 26626 170182 -1 2044 21 1398 2419 200438 42840 3.78111 3.78111 -123.209 -3.78111 0 0 902133. 3121.57 0.32 0.09 0.19 -1 -1 0.32 0.0351349 0.0310786 84 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30320 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 17.0 MiB 0.85 745 13738 4997 6870 1871 55.6 MiB 0.17 0.00 3.2962 -117.206 -3.2962 3.2962 0.78 0.000822108 0.000758264 0.0610136 0.0563288 38 2875 40 6.95648e+06 347416 678818. 2348.85 2.59 0.216667 0.190291 26626 170182 -1 1920 24 1872 2626 281799 58430 3.33157 3.33157 -129.56 -3.33157 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0374788 0.0328251 82 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17700 1 0.03 -1 -1 30100 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 16.6 MiB 1.78 860 8754 2885 4850 1019 55.2 MiB 0.11 0.00 4.04047 -132.719 -4.04047 4.04047 0.78 0.000668913 0.000610893 0.0397017 0.036784 38 2275 39 6.95648e+06 159232 678818. 2348.85 2.03 0.163495 0.143099 26626 170182 -1 1961 24 1287 1791 205094 37905 3.68852 3.68852 -133.621 -3.68852 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0294899 0.0257374 63 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30368 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 16.9 MiB 0.86 747 9036 3143 4486 1407 55.5 MiB 0.12 0.00 3.76434 -122.812 -3.76434 3.76434 0.80 0.000783935 0.000724764 0.0447681 0.0414411 38 2525 25 6.95648e+06 231611 678818. 2348.85 3.68 0.210582 0.183886 26626 170182 -1 1875 23 1595 2325 235170 49274 3.52523 3.52523 -123.26 -3.52523 0 0 902133. 3121.57 0.28 0.10 0.17 -1 -1 0.28 0.0354521 0.0311141 76 61 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.21 17864 1 0.03 -1 -1 30240 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 17.3 MiB 2.25 943 12585 5266 6878 441 56.0 MiB 0.17 0.00 5.54066 -172.627 -5.54066 5.54066 0.79 0.000796786 0.000735096 0.062528 0.057868 48 2871 41 6.95648e+06 231611 865456. 2994.66 15.06 0.445125 0.386789 28354 207349 -1 2430 22 2185 3127 430456 88164 5.17695 5.17695 -176.467 -5.17695 0 0 1.05005e+06 3633.38 0.32 0.14 0.20 -1 -1 0.32 0.0353013 0.0310754 97 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17616 1 0.07 -1 -1 30420 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 17.1 MiB 2.68 938 15120 6700 8021 399 55.5 MiB 0.19 0.00 4.47954 -148.558 -4.47954 4.47954 0.78 0.000801326 0.000741156 0.0749868 0.0693659 38 3275 38 6.95648e+06 231611 678818. 2348.85 1.97 0.221884 0.195846 26626 170182 -1 2433 19 1642 2364 237007 47242 4.92386 4.92386 -165.869 -4.92386 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0314629 0.0277629 88 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.10 17804 1 0.03 -1 -1 30388 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 16.9 MiB 1.42 806 12733 4192 6306 2235 55.5 MiB 0.16 0.00 4.14583 -131.471 -4.14583 4.14583 0.81 0.000759034 0.000702376 0.0559362 0.0518774 46 2200 24 6.95648e+06 318465 828058. 2865.25 4.56 0.26608 0.232281 28066 200906 -1 1757 18 1220 1800 147983 31138 3.60242 3.60242 -126.697 -3.60242 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0278559 0.0245213 78 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17260 1 0.03 -1 -1 30380 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 16.6 MiB 1.23 717 8212 2161 5077 974 55.1 MiB 0.15 0.00 4.19005 -113.386 -4.19005 4.19005 0.80 0.000669514 0.00061902 0.0356867 0.0330168 46 1875 23 6.95648e+06 202660 828058. 2865.25 2.97 0.166498 0.145353 28066 200906 -1 1552 21 1204 1637 160753 33380 3.83421 3.83421 -115.087 -3.83421 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0279101 0.02447 71 27 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17900 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 17.4 MiB 1.74 969 15017 6294 8197 526 55.9 MiB 0.21 0.00 4.79262 -158.033 -4.79262 4.79262 0.78 0.000943361 0.000874103 0.0786083 0.0728849 46 2761 26 6.95648e+06 318465 828058. 2865.25 5.15 0.384367 0.335568 28066 200906 -1 2141 31 2095 3019 331122 87131 4.33341 4.33341 -157.452 -4.33341 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0529613 0.0461585 93 87 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17244 1 0.03 -1 -1 30212 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 16.5 MiB 0.74 451 10702 3732 4796 2174 55.0 MiB 0.10 0.00 3.25706 -97.1743 -3.25706 3.25706 0.79 0.000616617 0.000570669 0.0416935 0.0385805 40 1681 34 6.95648e+06 217135 706193. 2443.58 1.69 0.151849 0.13282 26914 176310 -1 1260 21 1119 1553 125884 31938 3.18847 3.18847 -107.382 -3.18847 0 0 926341. 3205.33 0.28 0.07 0.17 -1 -1 0.28 0.0250771 0.0218369 56 28 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30152 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 16.9 MiB 1.26 1043 13358 5192 6540 1626 55.5 MiB 0.17 0.00 4.83562 -153.036 -4.83562 4.83562 0.79 0.000744698 0.000689492 0.0633615 0.0587083 40 2912 43 6.95648e+06 217135 706193. 2443.58 2.79 0.237388 0.20844 26914 176310 -1 2504 20 1741 2521 299747 55800 4.51186 4.51186 -153.565 -4.51186 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0299358 0.0263422 84 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30440 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 17.0 MiB 1.01 832 15481 6850 8276 355 55.5 MiB 0.10 0.00 3.22585 -113.908 -3.22585 3.22585 0.64 0.000322999 0.00029389 0.0313432 0.0286099 40 2646 23 6.95648e+06 246087 706193. 2443.58 2.04 0.107269 0.0934196 26914 176310 -1 2134 22 1625 2634 261329 52818 3.17132 3.17132 -121.838 -3.17132 0 0 926341. 3205.33 0.25 0.06 0.11 -1 -1 0.25 0.0167767 0.0148445 73 53 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.16 17196 1 0.03 -1 -1 30244 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 16.8 MiB 1.00 692 9712 3251 4487 1974 55.3 MiB 0.12 0.00 4.55274 -121.613 -4.55274 4.55274 0.79 0.00068221 0.000630465 0.0414289 0.0383962 44 2345 26 6.95648e+06 231611 787024. 2723.27 3.01 0.186973 0.163293 27778 195446 -1 1650 21 1027 1766 165271 36035 4.03752 4.03752 -125.743 -4.03752 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0285882 0.0250914 68 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 17.0 MiB 2.66 796 11532 3820 5366 2346 55.6 MiB 0.15 0.00 4.43423 -134.57 -4.43423 4.43423 0.79 0.000765053 0.000707334 0.0561101 0.0519777 38 2865 31 6.95648e+06 202660 678818. 2348.85 2.65 0.219855 0.192697 26626 170182 -1 2082 24 1535 2108 204539 43475 3.78266 3.78266 -135.522 -3.78266 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0350343 0.0306907 78 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.10 17636 1 0.03 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 16.9 MiB 1.85 763 10406 4042 5595 769 55.7 MiB 0.13 0.00 3.235 -115.411 -3.235 3.235 0.78 0.000788636 0.000729903 0.04961 0.0459906 44 2506 31 6.95648e+06 246087 787024. 2723.27 4.23 0.302363 0.263388 27778 195446 -1 1827 20 1399 2156 194970 39601 3.12007 3.12007 -117.373 -3.12007 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.03116 0.0273898 75 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.19 17848 1 0.03 -1 -1 30288 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 17.0 MiB 1.00 832 13758 4740 6643 2375 55.7 MiB 0.18 0.00 4.17869 -135.166 -4.17869 4.17869 0.79 0.000813466 0.000752683 0.0587264 0.054377 48 2348 28 6.95648e+06 376368 865456. 2994.66 4.85 0.322597 0.28113 28354 207349 -1 1917 21 1387 2021 205840 42281 3.60616 3.60616 -131.841 -3.60616 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0347221 0.0304108 83 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17400 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 16.9 MiB 0.93 704 11804 4117 5540 2147 55.3 MiB 0.12 0.00 4.32723 -118.436 -4.32723 4.32723 0.79 0.000707575 0.000654688 0.0464179 0.0429662 44 2015 30 6.95648e+06 318465 787024. 2723.27 4.46 0.252846 0.219742 27778 195446 -1 1595 21 1100 1751 160487 34105 4.02206 4.02206 -123.995 -4.02206 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0291872 0.0257146 69 24 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30472 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 16.7 MiB 2.23 822 10020 3444 5308 1268 55.3 MiB 0.13 0.00 4.15778 -128.101 -4.15778 4.15778 0.82 0.000719489 0.000665317 0.0463485 0.0429403 38 2840 28 6.95648e+06 188184 678818. 2348.85 2.43 0.169405 0.148914 26626 170182 -1 1971 24 1766 2374 231200 50060 4.23357 4.23357 -142.472 -4.23357 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0334257 0.029318 79 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.15 17860 1 0.03 -1 -1 30420 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 17.0 MiB 1.40 847 12030 5014 6584 432 55.7 MiB 0.16 0.00 4.57287 -144.308 -4.57287 4.57287 0.80 0.000784903 0.000724559 0.0603328 0.0558486 46 3104 41 6.95648e+06 217135 828058. 2865.25 4.31 0.252211 0.221384 28066 200906 -1 2278 20 1812 2837 306709 60756 4.22031 4.22031 -146.229 -4.22031 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0323256 0.0284754 85 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.15 17700 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 17.1 MiB 2.28 757 13443 5119 6395 1929 55.6 MiB 0.17 0.00 4.08826 -130.07 -4.08826 4.08826 0.81 0.000817531 0.000755232 0.0703365 0.0650658 54 2412 23 6.95648e+06 188184 949917. 3286.91 5.55 0.339298 0.296004 29506 232905 -1 1836 17 1376 2241 202857 43317 3.86727 3.86727 -126.415 -3.86727 0 0 1.17392e+06 4061.99 0.36 0.08 0.23 -1 -1 0.36 0.0290261 0.0256322 76 77 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17388 1 0.03 -1 -1 30028 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 16.6 MiB 0.28 503 12542 4062 6070 2410 55.1 MiB 0.12 0.00 3.14908 -92.6386 -3.14908 3.14908 0.85 0.000606814 0.000560143 0.0416324 0.0383634 40 1842 34 6.95648e+06 260562 706193. 2443.58 3.67 0.179397 0.156129 26914 176310 -1 1377 24 1087 1601 218661 67065 3.48782 3.48782 -109.872 -3.48782 0 0 926341. 3205.33 0.28 0.09 0.18 -1 -1 0.28 0.0276183 0.0240456 57 23 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30436 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 16.8 MiB 1.36 674 9676 3990 5312 374 55.4 MiB 0.12 0.00 3.76865 -134.987 -3.76865 3.76865 0.82 0.000731068 0.000675073 0.0469434 0.0434385 60 1890 50 6.95648e+06 173708 1.01997e+06 3529.29 2.59 0.225326 0.196386 30658 258169 -1 1495 20 1336 1884 183262 40247 3.69992 3.69992 -130.369 -3.69992 0 0 1.27783e+06 4421.56 0.39 0.08 0.25 -1 -1 0.39 0.0298168 0.0262269 76 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.21 17688 1 0.03 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 17.2 MiB 1.81 1197 6788 1593 4785 410 55.9 MiB 0.12 0.00 4.81732 -154.887 -4.81732 4.81732 0.84 0.0008393 0.000777242 0.0369545 0.0343331 56 2828 29 6.95648e+06 231611 973134. 3367.25 2.67 0.215392 0.188568 29794 239141 -1 2531 20 1798 2687 390100 89685 4.60701 4.60701 -157.299 -4.60701 0 0 1.19926e+06 4149.71 0.37 0.12 0.23 -1 -1 0.37 0.034033 0.0300835 97 31 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17772 1 0.03 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 16.9 MiB 1.01 755 11806 4947 6514 345 55.4 MiB 0.14 0.00 4.55181 -144.133 -4.55181 4.55181 0.79 0.00076281 0.000705846 0.0540188 0.0500306 44 2442 36 6.95648e+06 246087 787024. 2723.27 2.64 0.217485 0.190808 27778 195446 -1 1744 23 1332 1785 195480 40211 3.51206 3.51206 -132.781 -3.51206 0 0 997811. 3452.63 0.33 0.09 0.19 -1 -1 0.33 0.0338371 0.0296959 74 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30296 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 16.6 MiB 0.48 536 11296 4661 6055 580 55.2 MiB 0.11 0.00 2.9714 -97.779 -2.9714 2.9714 0.78 0.000640521 0.000591028 0.0428317 0.0395861 44 1776 44 6.95648e+06 289514 787024. 2723.27 2.80 0.188484 0.164051 27778 195446 -1 1295 21 1102 1617 151786 34451 3.32957 3.32957 -102.955 -3.32957 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0264357 0.0230957 62 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 18136 1 0.03 -1 -1 30328 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 17.4 MiB 1.87 1154 14782 4940 8104 1738 56.1 MiB 0.22 0.00 6.12641 -181.225 -6.12641 6.12641 0.78 0.000905435 0.000838484 0.0824346 0.0764507 48 2961 29 6.95648e+06 217135 865456. 2994.66 5.27 0.376568 0.329427 28354 207349 -1 2396 21 1934 2976 285074 59094 5.01785 5.01785 -171.528 -5.01785 0 0 1.05005e+06 3633.38 0.33 0.11 0.20 -1 -1 0.33 0.0382591 0.0337259 95 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 16.7 MiB 1.39 717 11799 3733 5850 2216 55.2 MiB 0.14 0.00 4.62806 -129.887 -4.62806 4.62806 0.79 0.000749529 0.00069245 0.0487753 0.0450267 38 2342 43 6.95648e+06 332941 678818. 2348.85 2.16 0.205489 0.179806 26626 170182 -1 1801 23 1318 2018 220965 43554 3.91232 3.91232 -133.377 -3.91232 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0331746 0.0290868 74 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17308 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.5 MiB 0.27 514 10509 3980 5034 1495 54.9 MiB 0.10 0.00 2.96656 -92.2738 -2.96656 2.96656 0.79 0.000577103 0.000533675 0.039065 0.0361472 40 1486 26 6.95648e+06 188184 706193. 2443.58 8.06 0.289019 0.248278 26914 176310 -1 1191 17 815 1217 92108 24698 3.16847 3.16847 -99.1993 -3.16847 0 0 926341. 3205.33 0.28 0.05 0.17 -1 -1 0.28 0.0206829 0.0181642 51 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30184 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 17.0 MiB 0.55 1076 14908 4738 8798 1372 55.6 MiB 0.21 0.00 4.96917 -138.118 -4.96917 4.96917 0.82 0.000592719 0.000535182 0.0663074 0.061158 44 2795 22 6.95648e+06 347416 787024. 2723.27 5.46 0.3011 0.263676 27778 195446 -1 2264 21 1249 2279 232200 41831 4.64636 4.64636 -141.78 -4.64636 0 0 997811. 3452.63 0.31 0.09 0.20 -1 -1 0.31 0.0318093 0.027974 80 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17416 1 0.03 -1 -1 30012 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.6 MiB 0.89 492 11034 4564 6063 407 55.1 MiB 0.11 0.00 2.9972 -99.2597 -2.9972 2.9972 0.79 0.000606523 0.0005607 0.041862 0.0386886 42 1759 27 6.95648e+06 202660 744469. 2576.02 4.25 0.234414 0.202813 27202 183097 -1 1397 24 1340 1894 196806 45892 3.21527 3.21527 -112.469 -3.21527 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0276645 0.0241079 57 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30420 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 16.6 MiB 0.92 565 8867 3613 4967 287 55.1 MiB 0.10 0.00 3.45473 -106.167 -3.45473 3.45473 0.78 0.000637886 0.000589839 0.0358507 0.0332051 38 1870 25 6.95648e+06 246087 678818. 2348.85 3.15 0.167267 0.146042 26626 170182 -1 1448 21 1211 1744 159941 32862 3.17897 3.17897 -109.41 -3.17897 0 0 902133. 3121.57 0.31 0.08 0.17 -1 -1 0.31 0.0268443 0.023474 60 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30320 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 16.9 MiB 1.48 851 11487 4862 6149 476 55.5 MiB 0.15 0.00 3.95502 -124.066 -3.95502 3.95502 0.79 0.000757969 0.000701388 0.0562361 0.0521026 46 2484 24 6.95648e+06 231611 828058. 2865.25 4.78 0.279489 0.243607 28066 200906 -1 2066 24 1689 2573 256391 48525 3.59036 3.59036 -125.502 -3.59036 0 0 1.01997e+06 3529.29 0.34 0.10 0.19 -1 -1 0.34 0.0332203 0.0294278 80 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17524 1 0.03 -1 -1 30456 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 16.9 MiB 1.23 719 14528 6712 7344 472 55.5 MiB 0.16 0.00 4.55468 -132.882 -4.55468 4.55468 0.80 0.000773928 0.000715711 0.0680056 0.0628904 46 2095 25 6.95648e+06 231611 828058. 2865.25 4.58 0.300829 0.262556 28066 200906 -1 1600 23 1410 2046 186668 39862 4.25697 4.25697 -138.118 -4.25697 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0341239 0.0299275 72 54 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17672 1 0.03 -1 -1 30052 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 16.9 MiB 1.76 751 11200 4198 5153 1849 55.4 MiB 0.15 0.00 4.43749 -136.856 -4.43749 4.43749 0.83 0.000759585 0.000702565 0.0542174 0.0502022 44 2753 24 6.95648e+06 202660 787024. 2723.27 2.21 0.191752 0.1686 27778 195446 -1 2006 22 1455 2249 219633 44769 4.12616 4.12616 -142.016 -4.12616 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0329382 0.0289121 73 51 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17452 1 0.03 -1 -1 30440 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 16.5 MiB 2.89 640 8909 3664 5023 222 55.1 MiB 0.11 0.00 4.07418 -127.444 -4.07418 4.07418 0.81 0.000640908 0.000592372 0.0391822 0.0362438 40 2054 24 6.95648e+06 144757 706193. 2443.58 2.40 0.171412 0.149417 26914 176310 -1 1837 22 1228 1614 181504 39075 4.00671 4.00671 -130.053 -4.00671 0 0 926341. 3205.33 0.29 0.08 0.17 -1 -1 0.29 0.0277673 0.0242755 61 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17656 1 0.03 -1 -1 30420 -1 -1 12 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 16.9 MiB 2.09 607 11925 5002 6435 488 55.3 MiB 0.13 0.00 3.79972 -120.636 -3.79972 3.79972 0.79 0.00069004 0.000638046 0.0546889 0.0505894 46 1973 30 6.95648e+06 173708 828058. 2865.25 2.14 0.184272 0.161702 28066 200906 -1 1405 24 1298 1895 159942 35669 3.57017 3.57017 -116.122 -3.57017 0 0 1.01997e+06 3529.29 0.28 0.05 0.13 -1 -1 0.28 0.0166893 0.0146831 68 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17852 1 0.03 -1 -1 30364 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 16.8 MiB 0.82 673 11064 3726 5225 2113 55.3 MiB 0.13 0.00 3.0162 -94.6102 -3.0162 3.0162 0.78 0.000730456 0.000676021 0.046577 0.0431732 40 1973 21 6.95648e+06 318465 706193. 2443.58 4.10 0.243603 0.212128 26914 176310 -1 1803 19 1154 1810 176961 38398 2.93367 2.93367 -103.314 -2.93367 0 0 926341. 3205.33 0.29 0.08 0.18 -1 -1 0.29 0.02761 0.0242438 71 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.18 17508 1 0.03 -1 -1 30380 -1 -1 28 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 16.5 MiB 0.62 661 10813 4387 5735 691 55.2 MiB 0.11 0.00 3.6526 -99.519 -3.6526 3.6526 0.79 0.000636239 0.000588153 0.0385225 0.03572 44 1716 21 6.95648e+06 405319 787024. 2723.27 4.46 0.21298 0.184734 27778 195446 -1 1398 18 998 1578 144554 30794 3.54436 3.54436 -101.653 -3.54436 0 0 997811. 3452.63 0.43 0.07 0.20 -1 -1 0.43 0.024489 0.0215541 72 27 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.18 17760 1 0.03 -1 -1 30384 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 16.5 MiB 0.84 539 10769 4210 5259 1300 55.2 MiB 0.12 0.00 3.44073 -108.225 -3.44073 3.44073 0.79 0.000692187 0.00063967 0.0505367 0.0467952 46 1801 46 6.95648e+06 173708 828058. 2865.25 2.16 0.196321 0.171329 28066 200906 -1 1329 55 1751 2496 238790 52349 3.05087 3.05087 -110.628 -3.05087 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0636125 0.0549053 60 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17672 1 0.03 -1 -1 30200 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 17.0 MiB 1.62 645 12715 5333 6940 442 55.5 MiB 0.15 0.00 3.42769 -121.093 -3.42769 3.42769 0.79 0.000728539 0.000672597 0.0609187 0.0563724 60 1672 34 6.95648e+06 159232 1.01997e+06 3529.29 5.27 0.31169 0.271131 30658 258169 -1 1297 22 1266 1843 162051 35947 3.24756 3.24756 -117.699 -3.24756 0 0 1.27783e+06 4421.56 0.39 0.08 0.25 -1 -1 0.39 0.0312846 0.027408 72 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.17 17408 1 0.02 -1 -1 30332 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 16.9 MiB 0.42 742 11799 3162 6813 1824 55.3 MiB 0.15 0.00 4.51778 -120.862 -4.51778 4.51778 0.81 0.000684221 0.000630621 0.0448308 0.0414404 38 2647 38 6.95648e+06 347416 678818. 2348.85 4.15 0.20053 0.175068 26626 170182 -1 1928 21 1335 2205 239116 49594 3.91616 3.91616 -126.842 -3.91616 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0288697 0.0253546 74 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17704 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 16.9 MiB 1.91 848 13606 5964 7217 425 55.7 MiB 0.19 0.00 4.62557 -150.036 -4.62557 4.62557 0.81 0.000769344 0.000711692 0.0740003 0.0685164 48 3004 39 6.95648e+06 188184 865456. 2994.66 3.59 0.25278 0.222431 28354 207349 -1 2182 18 1452 2100 227729 46102 4.48296 4.48296 -151.71 -4.48296 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.02852 0.0251739 82 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.14 17776 1 0.03 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 17.0 MiB 1.57 797 15688 5451 7649 2588 55.6 MiB 0.19 0.00 4.33979 -134.933 -4.33979 4.33979 0.87 0.000809252 0.000748399 0.0685211 0.0633649 48 2263 23 6.95648e+06 347416 865456. 2994.66 5.23 0.306941 0.268492 28354 207349 -1 1865 22 1276 2294 364776 108463 3.85666 3.85666 -138.898 -3.85666 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0353475 0.0310709 80 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17792 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 17.1 MiB 1.15 866 12951 5370 7312 269 55.6 MiB 0.17 0.00 4.06852 -135.722 -4.06852 4.06852 0.79 0.000816469 0.000753954 0.0579029 0.0535578 44 2867 29 6.95648e+06 332941 787024. 2723.27 3.02 0.22324 0.196057 27778 195446 -1 2076 25 1814 3009 305320 59024 3.69801 3.69801 -137 -3.69801 0 0 997811. 3452.63 0.35 0.12 0.18 -1 -1 0.35 0.0398067 0.0348577 80 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17528 1 0.03 -1 -1 30188 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 16.6 MiB 0.91 535 10769 4485 5866 418 55.1 MiB 0.12 0.00 3.76076 -107.124 -3.76076 3.76076 0.79 0.0006353 0.000587567 0.0463391 0.0429414 38 1877 28 6.95648e+06 173708 678818. 2348.85 1.74 0.153796 0.134888 26626 170182 -1 1473 22 1145 1745 172549 35836 3.04067 3.04067 -103.94 -3.04067 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0270797 0.0236438 57 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17504 1 0.03 -1 -1 30452 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 16.9 MiB 1.03 646 9676 4013 5115 548 55.5 MiB 0.12 0.00 4.36203 -132.758 -4.36203 4.36203 0.78 0.000801325 0.000741603 0.0511378 0.0473721 44 2453 48 6.95648e+06 202660 787024. 2723.27 12.23 0.402145 0.348862 27778 195446 -1 1588 22 1754 2466 211095 48434 3.98016 3.98016 -136.668 -3.98016 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0342475 0.0300811 76 63 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30284 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 16.9 MiB 1.59 811 10204 3614 5065 1525 55.5 MiB 0.13 0.00 4.885 -145.205 -4.885 4.885 0.79 0.000756555 0.000698979 0.048981 0.045356 46 2692 34 6.95648e+06 202660 828058. 2865.25 2.94 0.191892 0.168764 28066 200906 -1 1986 23 1769 2853 260236 54420 4.51661 4.51661 -152.905 -4.51661 0 0 1.01997e+06 3529.29 0.32 0.11 0.19 -1 -1 0.32 0.0338866 0.0298374 80 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.19 17652 1 0.03 -1 -1 30460 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 16.8 MiB 2.10 840 10509 4398 5789 322 55.5 MiB 0.13 0.00 5.54805 -153.523 -5.54805 5.54805 0.78 0.000743795 0.00068846 0.0513383 0.0475937 40 2668 44 6.95648e+06 202660 706193. 2443.58 4.21 0.231873 0.202685 26914 176310 -1 2096 20 1330 1980 203495 43949 4.80967 4.80967 -153.148 -4.80967 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0299492 0.0263755 79 47 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17584 1 0.03 -1 -1 30376 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 16.9 MiB 1.70 981 8543 2209 4916 1418 55.6 MiB 0.11 0.00 4.87546 -153.661 -4.87546 4.87546 0.83 0.000785976 0.000726429 0.0400782 0.0371103 38 2348 25 6.95648e+06 303989 678818. 2348.85 3.21 0.199611 0.174133 26626 170182 -1 1852 15 989 1494 128620 25183 4.18706 4.18706 -149.867 -4.18706 0 0 902133. 3121.57 0.29 0.07 0.19 -1 -1 0.29 0.0254444 0.0225261 74 83 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30300 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 17.1 MiB 1.13 757 8390 3202 4298 890 55.7 MiB 0.11 0.00 4.41913 -136.437 -4.41913 4.41913 0.78 0.000777423 0.000718362 0.0429558 0.0397923 44 2450 22 6.95648e+06 188184 787024. 2723.27 2.33 0.19703 0.17232 27778 195446 -1 1754 20 1576 2619 220593 45217 3.65547 3.65547 -129.946 -3.65547 0 0 997811. 3452.63 0.34 0.09 0.19 -1 -1 0.34 0.0315302 0.0277254 72 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30288 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 16.9 MiB 1.22 676 7412 2307 3688 1417 55.5 MiB 0.10 0.00 4.03938 -124.354 -4.03938 4.03938 0.78 0.000780267 0.000721682 0.0383979 0.035592 38 2492 38 6.95648e+06 231611 678818. 2348.85 2.49 0.181309 0.158191 26626 170182 -1 1658 21 1346 1997 179785 38321 3.53222 3.53222 -123.967 -3.53222 0 0 902133. 3121.57 0.28 0.08 0.16 -1 -1 0.28 0.0320861 0.0281538 73 85 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.18 17136 1 0.02 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 16.5 MiB 0.76 565 8134 3323 4613 198 55.0 MiB 0.09 0.00 3.56099 -106.975 -3.56099 3.56099 0.79 0.000604867 0.000559502 0.0339626 0.0314652 38 2318 48 6.95648e+06 144757 678818. 2348.85 2.96 0.180523 0.156865 26626 170182 -1 1523 18 1017 1481 151133 31500 2.97857 2.97857 -109.151 -2.97857 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0223255 0.0196135 53 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17636 1 0.04 -1 -1 30444 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 16.9 MiB 3.16 780 14679 6171 7995 513 55.4 MiB 0.17 0.00 4.81946 -134.729 -4.81946 4.81946 0.79 0.000789652 0.000729541 0.0630382 0.0582918 46 2503 49 6.95648e+06 332941 828058. 2865.25 16.18 0.466403 0.403949 28066 200906 -1 1717 19 1153 1902 170438 35172 3.87886 3.87886 -130.737 -3.87886 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0300485 0.026427 76 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.12 17516 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 16.9 MiB 0.72 707 10672 3433 5510 1729 55.5 MiB 0.15 0.00 4.24958 -138.057 -4.24958 4.24958 0.85 0.000834596 0.000771082 0.0580816 0.0538044 46 2130 40 6.95648e+06 188184 828058. 2865.25 3.08 0.252242 0.221279 28066 200906 -1 1497 21 1470 2122 175907 39622 3.98496 3.98496 -139.107 -3.98496 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0346563 0.0305094 78 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.18 17264 1 0.03 -1 -1 30032 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 16.6 MiB 1.43 678 11925 5137 6457 331 55.2 MiB 0.12 0.00 4.05037 -122.042 -4.05037 4.05037 0.89 0.000432424 0.000394559 0.0484424 0.0447685 46 2027 26 6.95648e+06 159232 828058. 2865.25 4.44 0.235525 0.204479 28066 200906 -1 1499 21 1062 1332 128879 26573 3.54322 3.54322 -119.355 -3.54322 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0261585 0.0228808 68 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17252 1 0.02 -1 -1 30408 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.5 MiB 0.98 478 11916 5026 6437 453 55.0 MiB 0.12 0.00 3.32523 -101.355 -3.32523 3.32523 0.79 0.000598459 0.000553631 0.0467628 0.043259 40 1850 33 6.95648e+06 188184 706193. 2443.58 8.36 0.303829 0.262955 26914 176310 -1 1531 21 1300 1792 176086 42663 3.39082 3.39082 -120.096 -3.39082 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0251594 0.0220194 57 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17508 1 0.03 -1 -1 30584 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 16.9 MiB 1.52 850 12416 5241 6727 448 55.5 MiB 0.15 0.00 4.62707 -149.564 -4.62707 4.62707 0.79 0.000764182 0.00070662 0.0592576 0.0548715 56 2118 22 6.95648e+06 217135 973134. 3367.25 5.42 0.344476 0.300361 29794 239141 -1 1799 20 1634 2192 220057 45895 4.25321 4.25321 -143.6 -4.25321 0 0 1.19926e+06 4149.71 0.37 0.09 0.28 -1 -1 0.37 0.029391 0.0260803 85 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17628 1 0.03 -1 -1 30244 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 16.9 MiB 1.12 1128 10536 3281 5855 1400 55.5 MiB 0.14 0.00 4.81844 -154.124 -4.81844 4.81844 0.79 0.000762421 0.000705515 0.0517246 0.0479066 38 2947 25 6.95648e+06 202660 678818. 2348.85 3.65 0.211779 0.185733 26626 170182 -1 2550 23 1532 2285 284216 52115 4.55896 4.55896 -161.138 -4.55896 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0341321 0.0299235 82 56 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30180 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 16.9 MiB 0.42 843 11456 4360 5763 1333 55.5 MiB 0.15 0.00 4.93982 -142.75 -4.93982 4.93982 0.78 0.000787559 0.000729463 0.0533596 0.0494482 46 2858 50 6.95648e+06 246087 828058. 2865.25 3.66 0.242291 0.212123 28066 200906 -1 1936 21 1602 2690 238590 54490 4.30461 4.30461 -143.025 -4.30461 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0326005 0.028692 83 3 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17792 1 0.03 -1 -1 30188 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 16.8 MiB 0.90 630 11063 3050 5652 2361 55.3 MiB 0.13 0.00 3.41127 -97.5363 -3.41127 3.41127 0.82 0.00064631 0.000592863 0.045935 0.0426092 38 2169 39 6.95648e+06 303989 678818. 2348.85 1.94 0.178284 0.156185 26626 170182 -1 1481 23 1281 2045 172575 37977 3.22442 3.22442 -104.225 -3.22442 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0319689 0.0280504 69 52 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17548 1 0.03 -1 -1 30524 -1 -1 14 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 16.4 MiB 0.44 487 8585 3718 4335 532 54.9 MiB 0.08 0.00 2.94405 -89.6154 -2.94405 2.94405 0.79 0.000590308 0.000546078 0.0355086 0.0329216 36 1822 47 6.95648e+06 202660 648988. 2245.63 1.92 0.165293 0.143666 26050 158493 -1 1203 17 933 1148 131523 29611 3.17312 3.17312 -102.454 -3.17312 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0207898 0.0182131 54 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17940 1 0.03 -1 -1 30292 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1018 15904 6884 8410 610 55.7 MiB 0.23 0.00 3.84665 -134.608 -3.84665 3.84665 0.79 0.000880363 0.00081458 0.0844825 0.078234 46 4242 40 6.95648e+06 231611 828058. 2865.25 22.96 0.483507 0.422169 28066 200906 -1 2845 24 2133 3416 370752 77350 4.35302 4.35302 -154.257 -4.35302 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0406115 0.0355575 95 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.20 17668 1 0.03 -1 -1 30260 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 16.9 MiB 4.56 805 13026 5515 7018 493 55.5 MiB 0.16 0.00 5.43776 -152.039 -5.43776 5.43776 0.79 0.000773972 0.000714787 0.063707 0.0588593 48 2597 25 6.95648e+06 217135 865456. 2994.66 5.38 0.31326 0.27348 28354 207349 -1 2126 21 1459 2260 353661 66712 4.45371 4.45371 -148.451 -4.45371 0 0 1.05005e+06 3633.38 0.33 0.11 0.20 -1 -1 0.33 0.0322117 0.0283193 82 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.15 17700 1 0.03 -1 -1 30460 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 16.9 MiB 3.33 636 10029 4132 5585 312 55.4 MiB 0.12 0.00 3.67834 -124.027 -3.67834 3.67834 0.79 0.000716621 0.000661771 0.0480762 0.0444872 48 2275 44 6.95648e+06 159232 865456. 2994.66 3.03 0.219463 0.191739 28354 207349 -1 1599 22 1391 1986 205612 45996 3.70796 3.70796 -132.564 -3.70796 0 0 1.05005e+06 3633.38 0.33 0.09 0.21 -1 -1 0.33 0.0309048 0.0270495 70 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30396 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 16.9 MiB 0.30 731 15206 6549 8090 567 55.3 MiB 0.18 0.00 4.25273 -121.678 -4.25273 4.25273 0.79 0.000723927 0.000668252 0.0611412 0.0565579 46 2429 27 6.95648e+06 318465 828058. 2865.25 2.18 0.185294 0.163439 28066 200906 -1 1712 29 1122 1690 261473 87697 3.92896 3.92896 -126.032 -3.92896 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0392458 0.0342673 74 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.18 17856 1 0.03 -1 -1 30188 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 17.1 MiB 0.86 751 14323 4212 7223 2888 55.8 MiB 0.16 0.00 4.42633 -128.985 -4.42633 4.42633 0.79 0.000815283 0.000754711 0.0628211 0.0582329 40 2471 47 6.95648e+06 361892 706193. 2443.58 3.31 0.258021 0.226596 26914 176310 -1 1782 21 1363 2105 187315 41520 4.11587 4.11587 -130.419 -4.11587 0 0 926341. 3205.33 0.29 0.09 0.17 -1 -1 0.29 0.0333959 0.0293774 83 50 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17860 1 0.03 -1 -1 30148 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 16.8 MiB 1.09 713 11034 4424 5642 968 55.2 MiB 0.13 0.00 3.35027 -102.373 -3.35027 3.35027 0.80 0.000705549 0.000652225 0.0502272 0.0465189 38 2562 40 6.95648e+06 231611 678818. 2348.85 4.30 0.215931 0.188534 26626 170182 -1 1857 24 1407 2299 226374 45691 3.72767 3.72767 -116.727 -3.72767 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0328901 0.0287387 68 51 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30456 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 16.9 MiB 1.60 907 11200 3286 6600 1314 55.6 MiB 0.16 0.00 4.64467 -151.435 -4.64467 4.64467 0.79 0.000772158 0.000714582 0.0549162 0.0508706 48 2684 29 6.95648e+06 202660 865456. 2994.66 3.68 0.222505 0.195314 28354 207349 -1 2184 19 1770 2628 289937 56714 4.54272 4.54272 -149.301 -4.54272 0 0 1.05005e+06 3633.38 0.37 0.10 0.20 -1 -1 0.37 0.0299286 0.0264244 88 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30092 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 16.9 MiB 1.02 748 12542 5225 6709 608 55.5 MiB 0.15 0.00 4.47033 -145.191 -4.47033 4.47033 0.78 0.000813083 0.00075153 0.0602258 0.055753 48 2680 47 6.95648e+06 260562 865456. 2994.66 2.82 0.259152 0.227296 28354 207349 -1 1992 23 1553 2067 230282 52289 3.98206 3.98206 -145.39 -3.98206 0 0 1.05005e+06 3633.38 0.34 0.11 0.20 -1 -1 0.34 0.0363872 0.0318192 80 62 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17404 1 0.03 -1 -1 30340 -1 -1 12 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 16.5 MiB 3.85 466 10105 4186 5463 456 55.0 MiB 0.10 0.00 3.92822 -103.3 -3.92822 3.92822 0.79 0.000623479 0.00057659 0.0435806 0.0403578 36 1635 39 6.95648e+06 173708 648988. 2245.63 1.97 0.182741 0.159165 26050 158493 -1 1237 17 794 1018 104038 21847 3.08517 3.08517 -101.588 -3.08517 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0211759 0.0188797 53 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.22 17596 1 0.03 -1 -1 30460 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 16.6 MiB 1.11 606 9397 3361 4720 1316 55.3 MiB 0.11 0.00 3.68935 -126.523 -3.68935 3.68935 0.79 0.000684821 0.000628113 0.0429559 0.0397275 44 1972 25 6.95648e+06 159232 787024. 2723.27 4.45 0.243436 0.210977 27778 195446 -1 1434 21 1064 1373 145325 30210 3.43512 3.43512 -121.758 -3.43512 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0281629 0.0246475 64 58 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30356 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 16.9 MiB 0.89 743 11993 4026 5805 2162 55.4 MiB 0.14 0.00 4.14331 -121.523 -4.14331 4.14331 0.78 0.000732318 0.000676707 0.0491816 0.0455474 46 2150 30 6.95648e+06 332941 828058. 2865.25 4.72 0.268581 0.233642 28066 200906 -1 1642 21 1171 1831 161306 34320 3.90312 3.90312 -123.564 -3.90312 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0303731 0.0266681 77 33 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.16 17596 1 0.03 -1 -1 30452 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 16.5 MiB 1.43 616 10459 4329 5659 471 55.1 MiB 0.11 0.00 4.04737 -116.055 -4.04737 4.04737 0.79 0.000609079 0.000563116 0.0433729 0.0401621 42 1991 29 6.95648e+06 188184 744469. 2576.02 1.83 0.172332 0.150059 27202 183097 -1 1494 18 1051 1319 128607 26634 3.28962 3.28962 -109.516 -3.28962 0 0 949917. 3286.91 0.29 0.06 0.18 -1 -1 0.29 0.0229318 0.0201206 67 31 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.11 17592 1 0.03 -1 -1 30064 -1 -1 9 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 16.6 MiB 1.21 561 11321 4813 6209 299 55.1 MiB 0.12 0.00 3.85356 -111.135 -3.85356 3.85356 0.78 0.000645787 0.000596691 0.0503171 0.0465798 40 1749 28 6.95648e+06 130281 706193. 2443.58 1.88 0.183817 0.160778 26914 176310 -1 1421 20 1056 1589 160453 33374 3.00867 3.00867 -107.34 -3.00867 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0260288 0.0228068 56 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.20 17648 1 0.03 -1 -1 30116 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 16.9 MiB 1.14 696 13719 4819 6392 2508 55.5 MiB 0.16 0.00 3.46983 -115.227 -3.46983 3.46983 0.79 0.000788428 0.000727603 0.0597807 0.0553364 42 2316 38 6.95648e+06 347416 744469. 2576.02 1.92 0.206122 0.181177 27202 183097 -1 1762 18 1409 1913 211809 43083 3.27792 3.27792 -118.506 -3.27792 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0293472 0.0259062 79 64 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17320 1 0.03 -1 -1 30416 -1 -1 12 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 16.5 MiB 2.37 587 9081 3433 3891 1757 55.0 MiB 0.09 0.00 3.99537 -118.981 -3.99537 3.99537 0.84 0.00041175 0.000374525 0.0343732 0.0317329 44 2241 46 6.95648e+06 173708 787024. 2723.27 2.35 0.175803 0.152555 27778 195446 -1 1536 22 1174 1620 156272 34098 3.38212 3.38212 -116.13 -3.38212 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0265669 0.0231933 64 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17700 1 0.03 -1 -1 30040 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 17.0 MiB 1.49 827 13505 5541 6681 1283 55.5 MiB 0.16 0.00 3.208 -113.036 -3.208 3.208 0.79 0.000761961 0.000703892 0.0573283 0.0530617 38 2407 41 6.95648e+06 318465 678818. 2348.85 2.36 0.201164 0.176835 26626 170182 -1 1814 18 1166 1858 166259 32920 2.91457 2.91457 -113.162 -2.91457 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0274916 0.0241861 71 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17628 1 0.03 -1 -1 30296 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 17.1 MiB 2.05 717 9706 3985 5340 381 55.6 MiB 0.13 0.00 3.995 -134.818 -3.995 3.995 0.79 0.000821027 0.000758659 0.0509295 0.0471514 44 2035 25 6.95648e+06 217135 787024. 2723.27 4.46 0.323799 0.281417 27778 195446 -1 1527 17 1154 1606 131633 28364 3.61547 3.61547 -132.603 -3.61547 0 0 997811. 3452.63 0.32 0.07 0.19 -1 -1 0.32 0.026656 0.0238333 73 91 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17360 1 0.03 -1 -1 30432 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 16.6 MiB 1.25 546 10149 3579 4930 1640 55.2 MiB 0.12 0.00 2.9023 -96.8242 -2.9023 2.9023 0.79 0.000673893 0.000622687 0.0459667 0.0425574 48 1361 22 6.95648e+06 144757 865456. 2994.66 4.55 0.25226 0.21869 28354 207349 -1 1158 21 1034 1602 135039 30850 3.09002 3.09002 -99.1884 -3.09002 0 0 1.05005e+06 3633.38 0.32 0.07 0.20 -1 -1 0.32 0.0273414 0.0238776 57 57 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.17 17424 1 0.03 -1 -1 30360 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 16.8 MiB 1.49 688 11293 4712 6328 253 55.3 MiB 0.13 0.00 4.09973 -130.941 -4.09973 4.09973 0.79 0.00066531 0.000615224 0.0502362 0.0464795 46 2044 24 6.95648e+06 159232 828058. 2865.25 2.41 0.190854 0.167043 28066 200906 -1 1690 20 1284 1830 166544 35646 3.82482 3.82482 -131.012 -3.82482 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0264815 0.0232036 70 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 16.9 MiB 2.14 759 11034 4566 6063 405 55.3 MiB 0.13 0.00 4.18668 -129.57 -4.18668 4.18668 0.79 0.000714568 0.000660195 0.0505238 0.0467754 40 2779 29 6.95648e+06 202660 706193. 2443.58 3.15 0.202812 0.177469 26914 176310 -1 2052 22 1818 2425 253091 53728 4.06941 4.06941 -138.827 -4.06941 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0311055 0.0272955 79 30 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30088 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 16.9 MiB 1.18 716 10228 3612 4706 1910 55.4 MiB 0.12 0.00 4.16289 -113.847 -4.16289 4.16289 0.81 0.000708273 0.000654948 0.0436 0.0404384 38 2394 48 6.95648e+06 303989 678818. 2348.85 2.49 0.198991 0.174868 26626 170182 -1 1788 20 1212 1834 174345 35954 3.58236 3.58236 -113.332 -3.58236 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0297831 0.0262837 71 55 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30424 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 17.2 MiB 1.43 846 13524 5903 7163 458 55.6 MiB 0.17 0.00 4.885 -157.826 -4.885 4.885 0.79 0.00082598 0.000763811 0.0704118 0.0651986 50 2997 36 6.95648e+06 202660 902133. 3121.57 17.41 0.414559 0.361189 28642 213929 -1 2359 22 1925 2843 337537 67957 4.75402 4.75402 -165.328 -4.75402 0 0 1.08113e+06 3740.92 0.45 0.11 0.21 -1 -1 0.45 0.0311158 0.0276155 89 65 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.19 17208 1 0.03 -1 -1 30528 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.5 MiB 1.21 501 12076 4244 5318 2514 54.9 MiB 0.11 0.00 3.74884 -94.0057 -3.74884 3.74884 0.80 0.000581887 0.000538074 0.0460091 0.0423125 40 1850 50 6.95648e+06 188184 706193. 2443.58 2.14 0.188377 0.16401 26914 176310 -1 1447 21 981 1472 136596 32641 3.34677 3.34677 -105.484 -3.34677 0 0 926341. 3205.33 0.29 0.07 0.17 -1 -1 0.29 0.0240231 0.0209811 54 4 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17508 1 0.03 -1 -1 30272 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 17.1 MiB 1.15 1008 14543 5389 7197 1957 55.7 MiB 0.18 0.00 3.70954 -138.278 -3.70954 3.70954 0.78 0.000849414 0.000782243 0.0650247 0.0599286 38 2533 46 6.95648e+06 361892 678818. 2348.85 2.94 0.236306 0.208132 26626 170182 -1 2192 20 1645 2191 224606 41915 4.39036 4.39036 -148.967 -4.39036 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0329908 0.0289964 81 90 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.17 17504 1 0.03 -1 -1 30176 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.0 MiB 2.92 599 11389 4446 5401 1542 55.4 MiB 0.14 0.00 2.96105 -112.244 -2.96105 2.96105 0.79 0.000776779 0.000716248 0.0596723 0.0551825 38 1891 33 6.95648e+06 144757 678818. 2348.85 3.13 0.237276 0.208416 26626 170182 -1 1515 21 1433 1901 200187 40417 3.35642 3.35642 -130.365 -3.35642 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0317295 0.027784 61 96 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17524 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 16.9 MiB 1.26 728 11993 4280 5583 2130 55.4 MiB 0.14 0.00 4.11943 -125.672 -4.11943 4.11943 0.81 0.000769861 0.000711192 0.0520896 0.0482295 44 2442 24 6.95648e+06 318465 787024. 2723.27 2.17 0.209302 0.183361 27778 195446 -1 1784 23 1133 1696 143497 31926 4.23371 4.23371 -129.551 -4.23371 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0340728 0.0298656 75 60 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.20 17704 1 0.03 -1 -1 30400 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 1.84 1133 13599 5570 7048 981 55.9 MiB 0.20 0.00 6.01533 -177.28 -6.01533 6.01533 0.79 0.000850773 0.000787499 0.0721475 0.0668532 48 2879 24 6.95648e+06 217135 865456. 2994.66 5.14 0.316857 0.277867 28354 207349 -1 2528 44 3093 4309 892165 389394 5.04205 5.04205 -173.275 -5.04205 0 0 1.05005e+06 3633.38 0.33 0.30 0.19 -1 -1 0.33 0.064447 0.056214 95 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17516 1 0.02 -1 -1 30092 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 16.2 MiB 2.25 506 10409 4642 5419 348 54.9 MiB 0.10 0.00 2.68965 -94.6691 -2.68965 2.68965 0.79 0.000537613 0.000496749 0.038918 0.0359738 38 1497 25 6.95648e+06 159232 678818. 2348.85 1.86 0.13873 0.121041 26626 170182 -1 1198 18 806 1040 105999 21900 2.74713 2.74713 -101.013 -2.74713 0 0 902133. 3121.57 0.32 0.06 0.18 -1 -1 0.32 0.0201265 0.0176227 52 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30104 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 16.6 MiB 1.25 453 9649 4016 5181 452 55.1 MiB 0.10 0.00 3.70034 -111.62 -3.70034 3.70034 0.79 0.00064911 0.000600273 0.0437275 0.0404881 42 1876 41 6.95648e+06 159232 744469. 2576.02 9.37 0.340201 0.293651 27202 183097 -1 1367 23 1185 1738 194735 45414 3.56002 3.56002 -116.751 -3.56002 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0289591 0.0252665 54 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17240 1 0.04 -1 -1 30256 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 16.5 MiB 0.43 657 10304 4396 5657 251 55.1 MiB 0.11 0.00 3.0756 -108.291 -3.0756 3.0756 0.79 0.000676504 0.000625799 0.0474628 0.0439658 52 1974 26 6.95648e+06 144757 926341. 3205.33 5.09 0.275922 0.239233 29218 227130 -1 1511 20 1104 1776 163287 34476 3.02397 3.02397 -108.728 -3.02397 0 0 1.14541e+06 3963.36 0.35 0.07 0.21 -1 -1 0.35 0.0267578 0.0234627 59 34 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30296 -1 -1 18 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 16.4 MiB 0.43 433 7975 3255 4078 642 54.8 MiB 0.08 0.00 3.29759 -76.2304 -3.29759 3.29759 0.82 0.000513919 0.000474193 0.0283626 0.0262272 38 1408 30 6.95648e+06 260562 678818. 2348.85 2.00 0.138014 0.11943 26626 170182 -1 1050 18 712 1068 78963 19092 2.93162 2.93162 -79.1333 -2.93162 0 0 902133. 3121.57 0.27 0.05 0.16 -1 -1 0.27 0.0189213 0.0165042 53 29 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30252 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 16.9 MiB 1.72 736 10796 3697 5176 1923 55.5 MiB 0.16 0.00 3.75962 -125.032 -3.75962 3.75962 0.79 0.00078976 0.000730042 0.0643986 0.0596333 56 2402 21 6.95648e+06 173708 973134. 3367.25 5.70 0.364527 0.317257 29794 239141 -1 1955 21 1434 2403 282384 57974 3.72812 3.72812 -131.522 -3.72812 0 0 1.19926e+06 4149.71 0.36 0.10 0.23 -1 -1 0.36 0.0329943 0.0290107 73 72 -1 -1 -1 -1 + fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17760 1 0.03 -1 -1 30300 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 17.0 MiB 1.17 761 10744 4472 5806 466 55.7 MiB 0.14 0.00 4.07648 -139.886 -4.07648 4.07648 0.79 0.000838398 0.000774575 0.0552485 0.0511658 42 2788 40 6.95648e+06 246087 744469. 2576.02 4.86 0.367794 0.3194 27202 183097 -1 1918 22 1661 2201 256107 52353 3.65472 3.65472 -137.544 -3.65472 0 0 949917. 3286.91 0.30 0.11 0.18 -1 -1 0.30 0.0362494 0.0318115 80 90 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30068 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 16.7 MiB 1.48 820 12416 4576 5562 2278 55.3 MiB 0.15 0.00 5.01635 -146.768 -5.01635 5.01635 0.86 0.000670332 0.000611307 0.0524089 0.0481117 46 2741 39 6.99608e+06 220735 828058. 2865.25 4.00 0.229243 0.20052 28066 200906 -1 1929 22 1538 2123 196600 43474 4.52981 4.52981 -148.966 -4.52981 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0343862 0.0302653 88 50 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17880 1 0.03 -1 -1 30400 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 16.9 MiB 1.27 962 11233 3707 5934 1592 55.7 MiB 0.16 0.00 5.03284 -151.156 -5.03284 5.03284 0.81 0.000767574 0.000710195 0.0539295 0.0499461 48 2921 37 6.99608e+06 250167 865456. 2994.66 3.45 0.227927 0.200209 28354 207349 -1 2393 26 2159 3185 483133 120214 5.00304 5.00304 -162.401 -5.00304 0 0 1.05005e+06 3633.38 0.33 0.16 0.20 -1 -1 0.33 0.0388511 0.0340403 99 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.18 17776 1 0.03 -1 -1 30316 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 16.5 MiB 0.70 839 12196 5162 6681 353 55.0 MiB 0.14 0.00 3.55379 -113.123 -3.55379 3.55379 0.79 0.000682786 0.000631077 0.052304 0.0483667 46 2218 48 6.99608e+06 206020 828058. 2865.25 5.16 0.315169 0.273334 28066 200906 -1 1603 20 1125 1520 120975 25477 3.58566 3.58566 -112.965 -3.58566 0 0 1.01997e+06 3529.29 0.33 0.07 0.19 -1 -1 0.33 0.0272342 0.0238968 76 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.19 17796 1 0.03 -1 -1 30424 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 16.7 MiB 1.18 700 12302 4830 6041 1431 55.2 MiB 0.15 0.00 4.05128 -116.185 -4.05128 4.05128 0.78 0.000688223 0.000636309 0.0557429 0.0516151 40 2878 47 6.99608e+06 235451 706193. 2443.58 12.22 0.38334 0.332017 26914 176310 -1 2019 20 1583 2407 255374 56091 3.85182 3.85182 -128.793 -3.85182 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0274718 0.0240975 78 31 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.16 17780 1 0.03 -1 -1 30300 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 16.8 MiB 2.20 903 10204 4241 5732 231 55.3 MiB 0.14 0.00 4.44731 -141.413 -4.44731 4.44731 0.80 0.000744077 0.000688109 0.0489365 0.0450495 42 3290 34 6.99608e+06 206020 744469. 2576.02 5.15 0.327934 0.284428 27202 183097 -1 2392 21 1605 2736 255249 51331 4.36961 4.36961 -149.56 -4.36961 0 0 949917. 3286.91 0.29 0.10 0.18 -1 -1 0.29 0.0312369 0.0274225 81 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.16 17508 1 0.03 -1 -1 30328 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 16.8 MiB 2.50 903 12506 4545 6575 1386 55.4 MiB 0.16 0.00 3.38924 -119.322 -3.38924 3.38924 0.79 0.000783967 0.000725006 0.0590297 0.0546119 50 2556 28 6.99608e+06 250167 902133. 3121.57 2.75 0.225688 0.198218 28642 213929 -1 2002 26 1690 2628 331662 99314 3.38101 3.38101 -122.328 -3.38101 0 0 1.08113e+06 3740.92 0.33 0.12 0.20 -1 -1 0.33 0.0382031 0.0334547 97 58 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.17 17436 1 0.03 -1 -1 30636 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 16.4 MiB 1.32 527 10769 4406 5481 882 54.9 MiB 0.10 0.00 3.89582 -110.808 -3.89582 3.89582 0.87 0.000457524 0.000416314 0.0332104 0.0303319 38 1709 26 6.99608e+06 220735 678818. 2348.85 4.06 0.216741 0.186817 26626 170182 -1 1314 18 1002 1502 133887 28870 3.41986 3.41986 -110.556 -3.41986 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0219492 0.0192083 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.16 17236 1 0.03 -1 -1 30088 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 16.3 MiB 0.32 664 11203 3028 6067 2108 54.9 MiB 0.12 0.00 2.75465 -88.1636 -2.75465 2.75465 0.79 0.00064386 0.000595298 0.0393718 0.0364097 40 2096 25 6.99608e+06 367892 706193. 2443.58 2.70 0.174926 0.152554 26914 176310 -1 1705 19 1082 1751 177750 38304 2.56867 2.56867 -95.5867 -2.56867 0 0 926341. 3205.33 0.29 0.07 0.17 -1 -1 0.29 0.0222886 0.0198516 69 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30272 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 16.7 MiB 0.87 886 12302 5141 6872 289 55.2 MiB 0.15 0.00 3.35914 -124.887 -3.35914 3.35914 0.78 0.000694926 0.000641985 0.0544855 0.0503868 40 2507 21 6.99608e+06 206020 706193. 2443.58 4.46 0.27812 0.241492 26914 176310 -1 2169 21 1707 2314 272347 53432 3.34457 3.34457 -128.383 -3.34457 0 0 926341. 3205.33 0.29 0.10 0.19 -1 -1 0.29 0.0289771 0.0253901 87 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.17 17512 1 0.03 -1 -1 30076 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 16.7 MiB 0.82 886 11650 3739 6142 1769 55.1 MiB 0.14 0.00 3.93292 -137.573 -3.93292 3.93292 0.83 0.000676421 0.000626167 0.0510292 0.0472576 36 2508 45 6.99608e+06 191304 648988. 2245.63 6.12 0.290156 0.251921 26050 158493 -1 2011 21 1436 1814 180100 35063 3.47486 3.47486 -135.96 -3.47486 0 0 828058. 2865.25 0.28 0.08 0.18 -1 -1 0.28 0.0288824 0.0254111 75 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17680 1 0.03 -1 -1 30564 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 16.7 MiB 0.76 675 11436 3956 5372 2108 55.2 MiB 0.13 0.00 3.86033 -123.728 -3.86033 3.86033 0.79 0.000667173 0.000616663 0.0501897 0.0464381 44 2821 39 6.99608e+06 206020 787024. 2723.27 2.79 0.204664 0.178686 27778 195446 -1 1647 24 1475 2120 178578 40687 3.6697 3.6697 -127.023 -3.6697 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0308886 0.0269559 83 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.18 17260 1 0.03 -1 -1 30288 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 16.4 MiB 0.64 784 8133 1910 6031 192 55.0 MiB 0.10 0.00 3.27288 -116.653 -3.27288 3.27288 0.78 0.000639556 0.000591984 0.0351726 0.032602 38 2353 50 6.99608e+06 161872 678818. 2348.85 3.38 0.18751 0.162697 26626 170182 -1 1854 20 1218 1534 166621 32010 3.03762 3.03762 -121.779 -3.03762 0 0 902133. 3121.57 0.28 0.08 0.17 -1 -1 0.28 0.0256879 0.0224857 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 16.6 MiB 0.83 822 13937 5978 7482 477 55.2 MiB 0.18 0.00 3.95082 -133.749 -3.95082 3.95082 0.80 0.000751711 0.000694763 0.0649374 0.0601058 44 2812 28 6.99608e+06 220735 787024. 2723.27 2.39 0.225144 0.197947 27778 195446 -1 2093 21 1841 2677 249858 51575 3.62816 3.62816 -128.38 -3.62816 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0317808 0.0278951 87 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30212 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 16.6 MiB 1.32 975 9706 2651 5494 1561 55.2 MiB 0.14 0.00 4.79397 -141.28 -4.79397 4.79397 0.82 0.000784442 0.00072582 0.0460711 0.0426856 44 3143 23 6.99608e+06 250167 787024. 2723.27 5.55 0.339686 0.295112 27778 195446 -1 2289 21 1985 2696 301373 57476 4.62311 4.62311 -151.178 -4.62311 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0323942 0.0284989 97 61 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17240 1 0.03 -1 -1 30268 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 16.3 MiB 2.51 630 8909 3655 4893 361 54.9 MiB 0.10 0.00 3.0564 -89.3526 -3.0564 3.0564 0.90 0.00058479 0.000540497 0.0360233 0.0333696 38 1931 43 6.99608e+06 191304 678818. 2348.85 2.80 0.178084 0.154523 26626 170182 -1 1629 18 1056 1501 141701 29697 3.08397 3.08397 -99.6496 -3.08397 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0214979 0.0188012 64 27 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17804 1 0.03 -1 -1 30396 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 16.9 MiB 1.23 999 13840 5885 7630 325 55.5 MiB 0.18 0.00 3.63599 -124.523 -3.63599 3.63599 0.78 0.000789728 0.000730188 0.0665629 0.0615658 46 2731 22 6.99608e+06 235451 828058. 2865.25 4.79 0.329196 0.287278 28066 200906 -1 2050 20 1706 2585 214097 43654 4.05881 4.05881 -132.374 -4.05881 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0317649 0.0279485 96 58 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 16.7 MiB 0.72 791 13092 5076 6583 1433 55.2 MiB 0.16 0.00 4.34151 -134.806 -4.34151 4.34151 0.79 0.000755126 0.000697341 0.0606538 0.0561429 46 2293 26 6.99608e+06 220735 828058. 2865.25 2.47 0.217599 0.191165 28066 200906 -1 1757 18 1380 1834 164641 35453 3.23226 3.23226 -122.94 -3.23226 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.027968 0.0246652 84 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17904 1 0.03 -1 -1 30436 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 16.6 MiB 0.61 778 13261 3730 7601 1930 55.1 MiB 0.16 0.00 3.17504 -117.557 -3.17504 3.17504 0.82 0.000699627 0.00064641 0.0577225 0.05339 50 2267 48 6.99608e+06 220735 902133. 3121.57 3.03 0.230941 0.201857 28642 213929 -1 1564 19 1536 1931 170074 37129 3.11816 3.11816 -117.854 -3.11816 0 0 1.08113e+06 3740.92 0.33 0.08 0.21 -1 -1 0.33 0.0273539 0.0240188 89 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17316 1 0.03 -1 -1 30152 -1 -1 10 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 16.0 MiB 1.50 513 10949 4743 5895 311 54.7 MiB 0.10 0.00 2.33546 -88.3817 -2.33546 2.33546 0.79 0.00053649 0.000495241 0.0414038 0.0382798 44 1275 15 6.99608e+06 147157 787024. 2723.27 4.07 0.199174 0.17252 27778 195446 -1 1060 18 585 656 74549 15706 2.21773 2.21773 -83.141 -2.21773 0 0 997811. 3452.63 0.31 0.05 0.19 -1 -1 0.31 0.0194668 0.0169978 52 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30316 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 16.5 MiB 2.00 843 8236 2227 5366 643 54.9 MiB 0.10 0.00 3.78247 -126.288 -3.78247 3.78247 0.82 0.000667002 0.000616255 0.0367303 0.0340026 36 2561 50 6.99608e+06 191304 648988. 2245.63 2.69 0.183386 0.16015 26050 158493 -1 2140 20 1472 2061 241995 46488 3.62641 3.62641 -139.224 -3.62641 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0267746 0.02348 72 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 16.7 MiB 1.27 802 15273 5455 7440 2378 55.2 MiB 0.18 0.00 3.98218 -132.203 -3.98218 3.98218 0.80 0.000759388 0.00070012 0.066056 0.061065 44 2545 30 6.99608e+06 294314 787024. 2723.27 2.14 0.227077 0.199591 27778 195446 -1 1915 30 2270 3284 294218 60497 3.87455 3.87455 -137.345 -3.87455 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.0412612 0.0360106 88 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1225 15044 5236 8229 1579 55.5 MiB 0.20 0.00 4.6726 -146.803 -4.6726 4.6726 0.80 0.000790523 0.000730435 0.0733367 0.0679308 40 3327 23 6.99608e+06 235451 706193. 2443.58 4.98 0.225999 0.199474 26914 176310 -1 2935 19 1980 2868 350897 65007 4.18241 4.18241 -146.179 -4.18241 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0303097 0.0266959 100 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17244 1 0.02 -1 -1 30552 -1 -1 13 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 16.0 MiB 1.79 422 8539 3493 4523 523 54.6 MiB 0.08 0.00 2.7298 -77.3475 -2.7298 2.7298 0.82 0.000462738 0.000425612 0.0289059 0.0266901 36 1382 43 6.99608e+06 191304 648988. 2245.63 1.64 0.11702 0.101804 26050 158493 -1 1060 19 745 836 84204 18820 2.38147 2.38147 -77.79 -2.38147 0 0 828058. 2865.25 0.26 0.05 0.15 -1 -1 0.26 0.0175306 0.0152767 53 30 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.17 17084 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 16.3 MiB 0.82 692 10050 3569 4878 1603 55.0 MiB 0.12 0.00 4.56174 -113.848 -4.56174 4.56174 0.78 0.000668861 0.000618897 0.0421991 0.0391039 38 2743 49 6.99608e+06 220735 678818. 2348.85 2.29 0.175432 0.15337 26626 170182 -1 1511 18 1175 1986 128543 31154 3.71441 3.71441 -118.868 -3.71441 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0245339 0.0215706 66 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.15 16972 1 0.02 -1 -1 30160 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 16.0 MiB 0.19 399 10055 4241 5582 232 54.5 MiB 0.08 0.00 2.06111 -67.7592 -2.06111 2.06111 0.79 0.000455687 0.000418796 0.0326681 0.0301084 38 1078 20 6.99608e+06 117725 678818. 2348.85 3.56 0.15633 0.135295 26626 170182 -1 908 16 573 628 62468 15355 1.94502 1.94502 -73.9368 -1.94502 0 0 902133. 3121.57 0.28 0.04 0.17 -1 -1 0.28 0.015414 0.0134521 42 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17428 1 0.03 -1 -1 30252 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 16.6 MiB 1.12 805 13358 5696 7249 413 55.1 MiB 0.16 0.00 4.47086 -121.677 -4.47086 4.47086 0.80 0.00068981 0.000638077 0.0585964 0.0542654 44 2222 36 6.99608e+06 206020 787024. 2723.27 4.09 0.282052 0.245761 27778 195446 -1 1673 19 1007 1423 125511 26002 3.97211 3.97211 -118.972 -3.97211 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0266427 0.0234328 73 24 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.16 17372 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 16.4 MiB 0.45 715 11617 3653 5870 2094 55.1 MiB 0.14 0.00 2.89821 -97.4108 -2.89821 2.89821 0.78 0.00069165 0.000640841 0.0457801 0.0424202 42 2494 32 6.99608e+06 309029 744469. 2576.02 4.10 0.26439 0.229728 27202 183097 -1 1580 18 1186 1962 147644 35928 2.82232 2.82232 -102.18 -2.82232 0 0 949917. 3286.91 0.29 0.07 0.18 -1 -1 0.29 0.0255661 0.0224733 74 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30264 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 16.6 MiB 1.41 800 6839 1729 4140 970 55.2 MiB 0.11 0.00 4.20669 -125.419 -4.20669 4.20669 0.83 0.000733923 0.000678435 0.0327717 0.0303454 46 3002 45 6.99608e+06 220735 828058. 2865.25 5.28 0.212753 0.184949 28066 200906 -1 1856 31 2083 3178 287656 64461 3.75951 3.75951 -127.059 -3.75951 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0416392 0.0362627 87 50 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17252 1 0.03 -1 -1 30076 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 16.5 MiB 2.09 688 11116 4644 6232 240 55.1 MiB 0.14 0.00 3.13575 -107.33 -3.13575 3.13575 0.80 0.00095284 0.000886096 0.0537862 0.0496608 40 2104 22 6.99608e+06 176588 706193. 2443.58 1.95 0.191252 0.167415 26914 176310 -1 1708 20 1139 1575 153976 33615 3.28862 3.28862 -115.849 -3.28862 0 0 926341. 3205.33 0.28 0.07 0.17 -1 -1 0.28 0.0260008 0.0227549 69 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.18 17532 1 0.03 -1 -1 30436 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 16.3 MiB 1.24 579 8876 3271 4297 1308 54.9 MiB 0.08 0.00 3.70857 -107.816 -3.70857 3.70857 0.89 0.000442193 0.000405847 0.0267742 0.0244534 46 2312 50 6.99608e+06 206020 828058. 2865.25 3.95 0.181466 0.157194 28066 200906 -1 1534 21 1120 1684 160563 36201 3.53561 3.53561 -116.222 -3.53561 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0257524 0.0225042 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30116 -1 -1 18 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 16.4 MiB 0.73 581 9540 3893 5214 433 55.0 MiB 0.10 0.00 3.25804 -101.918 -3.25804 3.25804 0.79 0.000606772 0.000562001 0.0368865 0.0341414 40 2153 24 6.99608e+06 264882 706193. 2443.58 2.27 0.161494 0.14071 26914 176310 -1 1691 21 1204 1900 191413 39673 3.38701 3.38701 -114.28 -3.38701 0 0 926341. 3205.33 0.30 0.10 0.17 -1 -1 0.30 0.0290947 0.0256464 69 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.11 17120 1 0.02 -1 -1 30364 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 16.3 MiB 0.34 677 11234 4696 6284 254 54.7 MiB 0.12 0.00 3.31833 -109.934 -3.31833 3.31833 0.78 0.000625458 0.000579084 0.0471109 0.0436392 44 1857 24 6.99608e+06 147157 787024. 2723.27 3.84 0.229418 0.199341 27778 195446 -1 1469 22 1048 1536 156100 30082 2.94767 2.94767 -108.899 -2.94767 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.026249 0.022922 58 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30136 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 16.3 MiB 0.84 656 7596 1857 5260 479 54.9 MiB 0.10 0.00 3.30918 -105.476 -3.30918 3.30918 0.79 0.000634652 0.000587474 0.0327408 0.030363 38 2472 28 6.99608e+06 191304 678818. 2348.85 3.98 0.220701 0.190796 26626 170182 -1 1747 20 1277 1724 138688 32519 3.11412 3.11412 -112.524 -3.11412 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0253731 0.0221888 69 30 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.18 17408 1 0.03 -1 -1 30364 -1 -1 15 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 16.5 MiB 2.34 919 9036 2362 6094 580 55.3 MiB 0.11 0.00 2.93125 -106.214 -2.93125 2.93125 0.80 0.000639125 0.000589253 0.0393237 0.0364452 36 2586 32 6.99608e+06 220735 648988. 2245.63 2.30 0.153719 0.134497 26050 158493 -1 2092 21 1338 1741 179520 36127 3.04192 3.04192 -111.467 -3.04192 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0268442 0.0235044 77 54 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17856 1 0.03 -1 -1 30588 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 16.8 MiB 1.07 980 13324 5630 7408 286 55.4 MiB 0.19 0.00 4.30703 -125.875 -4.30703 4.30703 0.82 0.00080689 0.000746524 0.0674893 0.0623045 44 3404 41 6.99608e+06 235451 787024. 2723.27 20.43 0.412482 0.359526 27778 195446 -1 2219 18 1470 2257 199350 40383 3.61357 3.61357 -126.136 -3.61357 0 0 997811. 3452.63 0.32 0.09 0.19 -1 -1 0.32 0.0307631 0.0272285 92 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.20 17580 1 0.03 -1 -1 30424 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 17.1 MiB 1.36 1014 12683 4657 5804 2222 55.6 MiB 0.18 0.00 4.21676 -146.737 -4.21676 4.21676 0.78 0.000827495 0.000764891 0.0609526 0.0564296 40 3412 46 6.99608e+06 279598 706193. 2443.58 4.64 0.278943 0.246868 26914 176310 -1 2631 27 2589 3584 425847 96050 4.0781 4.0781 -154.785 -4.0781 0 0 926341. 3205.33 0.29 0.15 0.18 -1 -1 0.29 0.0428517 0.0375909 106 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17764 1 0.03 -1 -1 30092 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 16.4 MiB 1.13 880 9374 3265 4936 1173 55.1 MiB 0.11 0.00 3.62727 -120.557 -3.62727 3.62727 0.80 0.000642142 0.000593895 0.0412306 0.0381905 40 2098 50 6.99608e+06 161872 706193. 2443.58 4.30 0.258251 0.223488 26914 176310 -1 1866 21 1295 1888 201651 38178 3.18921 3.18921 -118.521 -3.18921 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0268797 0.0235278 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 16.7 MiB 1.42 969 14528 6235 7667 626 55.4 MiB 0.18 0.00 3.54759 -121.928 -3.54759 3.54759 0.78 0.000791189 0.00073259 0.0698192 0.0646251 44 3010 33 6.99608e+06 250167 787024. 2723.27 2.94 0.238277 0.209479 27778 195446 -1 2103 22 1697 2386 242121 51268 3.43716 3.43716 -125.259 -3.43716 0 0 997811. 3452.63 0.35 0.10 0.19 -1 -1 0.35 0.0344892 0.030344 99 61 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30424 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 17.0 MiB 1.39 989 9196 3129 4406 1661 55.5 MiB 0.13 0.00 5.24281 -163.942 -5.24281 5.24281 0.79 0.000797389 0.000737285 0.0456733 0.0422817 54 2651 21 6.99608e+06 250167 949917. 3286.91 5.26 0.314115 0.272972 29506 232905 -1 2111 20 1745 2551 297020 55994 4.6735 4.6735 -157.07 -4.6735 0 0 1.17392e+06 4061.99 0.35 0.10 0.22 -1 -1 0.35 0.0321446 0.0283506 104 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30448 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 17.1 MiB 2.84 930 9881 4037 5524 320 55.6 MiB 0.14 0.00 5.08213 -159.731 -5.08213 5.08213 0.79 0.000806894 0.000745969 0.049614 0.0458753 40 3219 48 6.99608e+06 264882 706193. 2443.58 13.66 0.412762 0.358234 26914 176310 -1 2689 26 2464 3469 449049 92426 5.08669 5.08669 -172.13 -5.08669 0 0 926341. 3205.33 0.28 0.14 0.17 -1 -1 0.28 0.0395853 0.0346638 103 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30548 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 16.7 MiB 1.81 879 13768 5339 6393 2036 55.3 MiB 0.18 0.00 3.89582 -126.245 -3.89582 3.89582 0.87 0.000541411 0.000490196 0.0615171 0.0564353 46 3210 29 6.99608e+06 235451 828058. 2865.25 2.56 0.197312 0.173829 28066 200906 -1 2172 21 1624 2210 233179 46282 3.69046 3.69046 -128.461 -3.69046 0 0 1.01997e+06 3529.29 0.31 0.09 0.20 -1 -1 0.31 0.0314977 0.0276702 93 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.17 17372 1 0.03 -1 -1 30408 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 16.4 MiB 0.92 818 11864 4957 6528 379 55.1 MiB 0.13 0.00 3.99218 -112.33 -3.99218 3.99218 0.79 0.000677189 0.000626108 0.0504415 0.0466659 38 2868 31 6.99608e+06 206020 678818. 2348.85 3.25 0.186707 0.164085 26626 170182 -1 1987 23 1434 2025 193989 39975 3.77776 3.77776 -117.811 -3.77776 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0301788 0.0263674 72 27 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.20 17792 1 0.03 -1 -1 30440 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 17.4 MiB 1.22 1337 8083 1871 5905 307 55.6 MiB 0.16 0.00 5.02 -170.696 -5.02 5.02 0.78 0.000939421 0.000870431 0.0444667 0.041264 48 3633 25 6.99608e+06 309029 865456. 2994.66 2.42 0.196924 0.173171 28354 207349 -1 3223 22 2612 3732 456936 87788 4.76344 4.76344 -172.859 -4.76344 0 0 1.05005e+06 3633.38 0.39 0.15 0.22 -1 -1 0.39 0.0426481 0.037629 129 87 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17384 1 0.03 -1 -1 30320 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 16.3 MiB 2.72 589 8599 2844 4344 1411 54.8 MiB 0.10 0.00 3.01 -97.4254 -3.01 3.01 0.79 0.000614542 0.000568243 0.0363075 0.0336223 38 1901 48 6.99608e+06 161872 678818. 2348.85 1.92 0.145129 0.126436 26626 170182 -1 1359 19 1109 1445 122526 27424 2.89867 2.89867 -98.6061 -2.89867 0 0 902133. 3121.57 0.32 0.07 0.14 -1 -1 0.32 0.0308447 0.027441 65 28 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30208 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 16.7 MiB 0.64 792 13524 5096 6588 1840 55.2 MiB 0.16 0.00 4.60267 -142.66 -4.60267 4.60267 0.79 0.000754734 0.000697568 0.0633084 0.0586194 50 2831 42 6.99608e+06 220735 902133. 3121.57 3.08 0.240307 0.211081 28642 213929 -1 2077 21 1622 2283 244753 54981 4.12001 4.12001 -141.916 -4.12001 0 0 1.08113e+06 3740.92 0.33 0.10 0.21 -1 -1 0.33 0.0313531 0.027557 85 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17888 1 0.02 -1 -1 30308 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 16.8 MiB 1.19 1020 12416 4555 6119 1742 55.3 MiB 0.17 0.00 3.83208 -127.177 -3.83208 3.83208 0.79 0.000758147 0.000701403 0.0585528 0.0541887 46 2814 24 6.99608e+06 220735 828058. 2865.25 5.39 0.310323 0.270744 28066 200906 -1 2229 16 1283 1960 176230 34745 3.28682 3.28682 -124.537 -3.28682 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0259467 0.022957 91 53 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17084 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 16.5 MiB 0.79 673 10228 2970 5232 2026 55.2 MiB 0.12 0.00 4.31309 -118.378 -4.31309 4.31309 0.79 0.00068007 0.000628763 0.0433506 0.0402097 42 2384 31 6.99608e+06 235451 744469. 2576.02 4.26 0.22193 0.192854 27202 183097 -1 1663 21 1122 1937 161525 35561 3.86381 3.86381 -124.361 -3.86381 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0280861 0.0246401 68 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.18 17672 1 0.03 -1 -1 30272 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 16.9 MiB 1.17 915 11571 4863 6343 365 55.4 MiB 0.15 0.00 4.31005 -133.816 -4.31005 4.31005 0.80 0.000760224 0.000702939 0.0555384 0.0514173 40 2777 49 6.99608e+06 220735 706193. 2443.58 2.85 0.243413 0.212954 26914 176310 -1 2134 22 1677 2241 241726 52187 3.71446 3.71446 -130.17 -3.71446 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0326263 0.0286366 90 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.19 17700 1 0.03 -1 -1 30212 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 16.9 MiB 1.45 1099 13430 4920 6010 2500 55.5 MiB 0.18 0.00 3.65969 -129.38 -3.65969 3.65969 0.78 0.000774735 0.000716628 0.0645268 0.0597391 40 2888 23 6.99608e+06 220735 706193. 2443.58 2.63 0.221403 0.194954 26914 176310 -1 2610 19 1645 2432 276762 54268 3.80996 3.80996 -141.664 -3.80996 0 0 926341. 3205.33 0.31 0.10 0.18 -1 -1 0.31 0.0284183 0.0253291 92 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.18 17860 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 17.1 MiB 2.07 1101 15216 5672 7066 2478 55.7 MiB 0.20 0.00 3.74401 -128.073 -3.74401 3.74401 0.78 0.000815397 0.000755 0.0750762 0.0695119 40 3082 23 6.99608e+06 235451 706193. 2443.58 4.52 0.32351 0.283027 26914 176310 -1 2762 21 2030 2616 297583 57824 3.42052 3.42052 -129.621 -3.42052 0 0 926341. 3205.33 0.32 0.11 0.17 -1 -1 0.32 0.0336072 0.0295555 101 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30464 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 16.7 MiB 0.88 743 11034 4121 5253 1660 55.1 MiB 0.14 0.00 4.35583 -118.93 -4.35583 4.35583 0.79 0.000693575 0.000641376 0.0486292 0.0450209 44 2692 29 6.99608e+06 206020 787024. 2723.27 4.59 0.300457 0.260686 27778 195446 -1 1799 21 1203 1849 151880 32717 3.82976 3.82976 -122.649 -3.82976 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0285005 0.0251126 74 24 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17672 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 16.7 MiB 1.69 793 9042 2962 4450 1630 55.2 MiB 0.11 0.00 4.21168 -126.242 -4.21168 4.21168 0.79 0.000714233 0.000660751 0.0422707 0.0391547 44 2846 49 6.99608e+06 191304 787024. 2723.27 4.83 0.29531 0.256155 27778 195446 -1 1831 19 1322 1846 172348 35974 4.11036 4.11036 -132.013 -4.11036 0 0 997811. 3452.63 0.35 0.07 0.19 -1 -1 0.35 0.0251946 0.0223634 81 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.18 17780 1 0.03 -1 -1 30272 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 17.0 MiB 0.70 950 10726 4120 5384 1222 55.5 MiB 0.08 0.00 4.31211 -136.261 -4.31211 4.31211 0.63 0.000341642 0.000312046 0.0238051 0.0217946 48 3211 44 6.99608e+06 235451 865456. 2994.66 3.42 0.157672 0.137125 28354 207349 -1 2511 19 1967 2954 314696 68011 4.48185 4.48185 -140.556 -4.48185 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0303893 0.0267887 99 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 17.2 MiB 1.01 977 12980 5460 6998 522 55.7 MiB 0.17 0.00 3.94476 -129.858 -3.94476 3.94476 0.79 0.00080747 0.000745757 0.0639857 0.0591685 54 3303 23 6.99608e+06 235451 949917. 3286.91 3.12 0.224671 0.19738 29506 232905 -1 2409 21 2127 3080 328714 69584 3.78082 3.78082 -135.324 -3.78082 0 0 1.17392e+06 4061.99 0.36 0.12 0.22 -1 -1 0.36 0.0347121 0.0305564 104 77 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.17 17428 1 0.03 -1 -1 30184 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 16.5 MiB 0.60 645 10769 4489 5977 303 55.0 MiB 0.11 0.00 3.21628 -99.3334 -3.21628 3.21628 0.81 0.000607251 0.000561471 0.0443355 0.0410209 44 1739 25 6.99608e+06 147157 787024. 2723.27 3.74 0.224234 0.194617 27778 195446 -1 1343 18 890 1168 95157 20436 2.92272 2.92272 -97.1845 -2.92272 0 0 997811. 3452.63 0.31 0.06 0.19 -1 -1 0.31 0.0227283 0.0199812 60 23 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30280 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 16.6 MiB 0.79 827 10726 4440 5997 289 55.2 MiB 0.13 0.00 4.06528 -146.791 -4.06528 4.06528 0.84 0.000534456 0.000484879 0.0458149 0.0422489 50 2262 20 6.99608e+06 220735 902133. 3121.57 4.98 0.279595 0.242703 28642 213929 -1 1950 21 1962 2613 293493 56334 3.79505 3.79505 -142.048 -3.79505 0 0 1.08113e+06 3740.92 0.34 0.10 0.21 -1 -1 0.34 0.0304864 0.026758 93 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30268 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 17.0 MiB 0.95 950 12808 5316 6896 596 55.4 MiB 0.17 0.00 4.80548 -149.393 -4.80548 4.80548 0.79 0.000840169 0.00077764 0.0656315 0.0607953 50 3167 49 6.99608e+06 235451 902133. 3121.57 3.74 0.277966 0.245029 28642 213929 -1 2451 22 2176 3243 318302 67590 5.14411 5.14411 -160.436 -5.14411 0 0 1.08113e+06 3740.92 0.38 0.12 0.22 -1 -1 0.38 0.035578 0.0313622 98 31 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17860 1 0.03 -1 -1 30372 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 16.7 MiB 0.59 849 13599 4722 6429 2448 55.2 MiB 0.17 0.00 4.35389 -139.539 -4.35389 4.35389 0.78 0.000753489 0.000697477 0.0636117 0.0589544 38 2638 26 6.99608e+06 220735 678818. 2348.85 4.04 0.218019 0.191709 26626 170182 -1 2029 21 1716 2355 220233 45004 3.71446 3.71446 -137.305 -3.71446 0 0 902133. 3121.57 0.35 0.09 0.19 -1 -1 0.35 0.0297762 0.0263466 85 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30384 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 16.4 MiB 1.17 640 11474 4735 6197 542 55.1 MiB 0.12 0.00 3.65345 -112.727 -3.65345 3.65345 0.79 0.000648329 0.000599873 0.0438857 0.0406286 48 1959 46 6.99608e+06 294314 865456. 2994.66 3.48 0.201485 0.175791 28354 207349 -1 1523 18 1033 1599 166251 37115 3.11421 3.11421 -112.137 -3.11421 0 0 1.05005e+06 3633.38 0.32 0.07 0.21 -1 -1 0.32 0.0235936 0.0207108 72 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.22 18028 1 0.03 -1 -1 30404 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 17.2 MiB 1.51 1528 15924 5227 8931 1766 56.0 MiB 0.23 0.00 6.09323 -187.636 -6.09323 6.09323 0.79 0.000903496 0.000837074 0.0786339 0.0727389 40 4078 39 6.99608e+06 264882 706193. 2443.58 4.74 0.28081 0.246563 26914 176310 -1 3507 53 4086 5989 1451432 683932 5.97714 5.97714 -195.907 -5.97714 0 0 926341. 3205.33 0.28 0.49 0.17 -1 -1 0.28 0.084631 0.073712 116 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17908 1 0.03 -1 -1 30372 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 16.8 MiB 0.58 768 13524 5053 6623 1848 55.3 MiB 0.16 0.00 4.76624 -142.397 -4.76624 4.76624 0.78 0.000749168 0.000693009 0.0636308 0.0589261 46 2640 34 6.99608e+06 206020 828058. 2865.25 3.14 0.224305 0.197097 28066 200906 -1 1845 24 1621 2196 220558 45578 4.17065 4.17065 -141.691 -4.17065 0 0 1.01997e+06 3529.29 0.31 0.11 0.20 -1 -1 0.31 0.0428179 0.0375079 83 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.16 17120 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 16.0 MiB 0.23 516 10672 4080 5320 1272 54.7 MiB 0.10 0.00 2.96036 -91.6204 -2.96036 2.96036 0.79 0.000582606 0.000538995 0.0402856 0.0372918 40 1510 37 6.99608e+06 191304 706193. 2443.58 2.64 0.171297 0.149175 26914 176310 -1 1197 20 797 1221 91258 24839 3.27957 3.27957 -97.7866 -3.27957 0 0 926341. 3205.33 0.29 0.06 0.18 -1 -1 0.29 0.0229646 0.0200474 51 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 16.7 MiB 1.19 903 15560 6646 7056 1858 55.3 MiB 0.18 0.00 4.75332 -131.249 -4.75332 4.75332 0.82 0.000780189 0.000721555 0.0729261 0.0674309 52 2533 26 6.99608e+06 235451 926341. 3205.33 5.26 0.373068 0.325288 29218 227130 -1 1932 23 1562 2646 249813 51787 5.03906 5.03906 -139.751 -5.03906 0 0 1.14541e+06 3963.36 0.35 0.10 0.22 -1 -1 0.35 0.0344774 0.0302804 85 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.17 17372 1 0.03 -1 -1 30052 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 16.3 MiB 0.73 493 9540 2740 5276 1524 54.8 MiB 0.05 0.00 2.966 -97.1273 -2.966 2.966 0.64 0.000262436 0.000239196 0.0166025 0.015188 38 1725 38 6.99608e+06 206020 678818. 2348.85 2.42 0.110166 0.0952423 26626 170182 -1 1173 20 1005 1484 114153 25972 3.35957 3.35957 -106.253 -3.35957 0 0 902133. 3121.57 0.29 0.06 0.18 -1 -1 0.29 0.0243099 0.0212664 57 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.19 17432 1 0.03 -1 -1 30356 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 16.4 MiB 0.57 768 9081 3737 5047 297 55.0 MiB 0.11 0.00 3.80347 -118.428 -3.80347 3.80347 0.78 0.000642278 0.000594171 0.0391185 0.0362303 38 2377 43 6.99608e+06 191304 678818. 2348.85 3.71 0.19443 0.169685 26626 170182 -1 1727 20 1223 1678 159981 30976 3.20221 3.20221 -113.559 -3.20221 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0255271 0.0223539 69 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30356 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 16.8 MiB 1.59 956 12416 5112 6468 836 55.4 MiB 0.16 0.00 4.12666 -129.088 -4.12666 4.12666 0.80 0.000756038 0.000699238 0.058569 0.0542082 40 2907 37 6.99608e+06 264882 706193. 2443.58 5.06 0.336009 0.292434 26914 176310 -1 2556 20 1847 2717 295332 58804 4.1019 4.1019 -136.467 -4.1019 0 0 926341. 3205.33 0.30 0.11 0.17 -1 -1 0.30 0.0319998 0.0282672 97 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 16.7 MiB 1.31 974 13599 5339 6861 1399 55.2 MiB 0.18 0.00 4.25698 -140.266 -4.25698 4.25698 0.78 0.000771279 0.000713207 0.0647369 0.0598942 38 3028 28 6.99608e+06 220735 678818. 2348.85 4.01 0.23137 0.203606 26626 170182 -1 2332 20 1708 2334 226850 45518 4.507 4.507 -154.11 -4.507 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0308339 0.0271301 93 54 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.17 17672 1 0.03 -1 -1 30044 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 16.7 MiB 1.90 1087 13768 5458 5698 2612 55.2 MiB 0.18 0.00 4.58577 -147.33 -4.58577 4.58577 0.79 0.000761473 0.000704577 0.0651162 0.0602629 38 3096 26 6.99608e+06 220735 678818. 2348.85 4.34 0.22637 0.198918 26626 170182 -1 2466 20 1814 2610 251857 48193 4.75571 4.75571 -154.189 -4.75571 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0307373 0.0270107 90 51 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.19 17540 1 0.03 -1 -1 30356 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 16.3 MiB 1.78 854 11609 4663 6043 903 54.9 MiB 0.13 0.00 3.95082 -130.122 -3.95082 3.95082 0.79 0.000639979 0.000591591 0.0495743 0.0458941 34 2604 47 6.99608e+06 161872 618332. 2139.56 10.39 0.285963 0.248158 25762 151098 -1 2102 18 1330 1792 219031 44109 3.37756 3.37756 -126.516 -3.37756 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0238626 0.0209349 67 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17804 1 0.03 -1 -1 30364 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 16.6 MiB 0.85 785 11813 4965 6422 426 55.1 MiB 0.14 0.00 3.70143 -122.026 -3.70143 3.70143 0.78 0.000696758 0.00064427 0.0530558 0.0491151 48 2211 39 6.99608e+06 206020 865456. 2994.66 5.12 0.297426 0.258151 28354 207349 -1 1741 23 1459 1999 246730 54114 3.45626 3.45626 -122.353 -3.45626 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.030938 0.0270719 86 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30476 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 16.6 MiB 1.13 809 10756 2943 5618 2195 55.2 MiB 0.14 0.00 3.4598 -111.751 -3.4598 3.4598 0.79 0.000714607 0.000660528 0.0465888 0.0431165 46 2301 24 6.99608e+06 279598 828058. 2865.25 2.66 0.196242 0.171967 28066 200906 -1 1649 19 1348 1977 162099 34833 3.22771 3.22771 -109.144 -3.22771 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.0279878 0.0245994 91 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17496 1 0.03 -1 -1 30588 -1 -1 17 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 16.3 MiB 0.46 678 13280 5850 6635 795 55.0 MiB 0.13 0.00 3.68935 -104.602 -3.68935 3.68935 0.80 0.000638484 0.00059068 0.0542505 0.0502284 48 1851 19 6.99608e+06 250167 865456. 2994.66 4.23 0.240537 0.209562 28354 207349 -1 1500 19 1188 1740 171222 35559 3.67976 3.67976 -109.04 -3.67976 0 0 1.05005e+06 3633.38 0.41 0.08 0.20 -1 -1 0.41 0.0255342 0.022485 71 27 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17580 1 0.03 -1 -1 30452 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 16.6 MiB 1.73 779 10020 4070 5537 413 55.2 MiB 0.13 0.00 4.56081 -142.799 -4.56081 4.56081 0.79 0.000694183 0.000642673 0.0451144 0.0417705 44 2675 39 6.99608e+06 220735 787024. 2723.27 2.77 0.203864 0.177818 27778 195446 -1 1893 21 1619 2174 205884 42939 4.46875 4.46875 -140.284 -4.46875 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0285452 0.0250456 87 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17572 1 0.03 -1 -1 30200 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 16.7 MiB 0.83 988 11366 4377 5078 1911 55.3 MiB 0.15 0.00 3.4477 -126.272 -3.4477 3.4477 0.79 0.00073466 0.000679988 0.052343 0.0484483 40 3137 31 6.99608e+06 206020 706193. 2443.58 4.09 0.209385 0.183386 26914 176310 -1 2781 18 1974 2685 368178 68668 3.87777 3.87777 -146.089 -3.87777 0 0 926341. 3205.33 0.28 0.11 0.12 -1 -1 0.28 0.0272604 0.0239751 93 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.20 17268 1 0.03 -1 -1 30384 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 16.4 MiB 0.36 735 13335 5144 6746 1445 55.1 MiB 0.14 0.00 4.50448 -121.497 -4.50448 4.50448 0.79 0.000684745 0.000633686 0.0502739 0.046554 48 2068 19 6.99608e+06 353176 865456. 2994.66 4.85 0.276839 0.24083 28354 207349 -1 1751 21 1197 2068 234774 53689 4.15372 4.15372 -124.025 -4.15372 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.028509 0.0249447 74 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.18 17584 1 0.03 -1 -1 30384 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 16.9 MiB 1.83 849 9872 4071 5471 330 55.4 MiB 0.14 0.00 4.41391 -145.413 -4.41391 4.41391 0.79 0.000773611 0.000715529 0.0493469 0.0457457 44 3443 43 6.99608e+06 206020 787024. 2723.27 2.73 0.233934 0.204739 27778 195446 -1 2114 21 1817 2729 244368 50711 4.04535 4.04535 -142.241 -4.04535 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.032241 0.0283785 86 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17812 1 0.03 -1 -1 30260 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 17.1 MiB 0.75 1031 9706 3955 5323 428 55.6 MiB 0.14 0.00 5.10216 -163.017 -5.10216 5.10216 0.78 0.000816723 0.000755682 0.0485707 0.0449645 50 3244 37 6.99608e+06 250167 902133. 3121.57 6.41 0.344461 0.299444 28642 213929 -1 2455 20 2012 2762 304973 62062 4.90074 4.90074 -171.425 -4.90074 0 0 1.08113e+06 3740.92 0.33 0.11 0.21 -1 -1 0.33 0.0333006 0.0293803 102 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17636 1 0.03 -1 -1 30428 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 17.2 MiB 0.81 1043 9881 4045 5563 273 55.6 MiB 0.14 0.00 4.39921 -147.12 -4.39921 4.39921 0.79 0.000813595 0.000751462 0.0487918 0.0451218 44 3708 29 6.99608e+06 250167 787024. 2723.27 3.14 0.204087 0.178989 27778 195446 -1 2517 22 1964 2832 294232 56669 4.1458 4.1458 -149.795 -4.1458 0 0 997811. 3452.63 0.43 0.08 0.22 -1 -1 0.43 0.0254109 0.022484 104 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30220 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 16.4 MiB 0.85 639 8765 3407 4448 910 55.0 MiB 0.11 0.00 4.31695 -124.149 -4.31695 4.31695 0.79 0.00063322 0.000585455 0.037347 0.0345845 46 1976 22 6.99608e+06 191304 828058. 2865.25 4.75 0.241014 0.208413 28066 200906 -1 1531 21 1047 1503 136703 28602 3.32756 3.32756 -116.967 -3.32756 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0258883 0.022611 71 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.12 17776 1 0.03 -1 -1 30420 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 17.0 MiB 0.96 919 12808 4622 5804 2382 55.6 MiB 0.16 0.00 5.00926 -154.589 -5.00926 5.00926 0.81 0.000788018 0.000728865 0.0624701 0.0578911 50 2419 37 6.99608e+06 264882 902133. 3121.57 5.31 0.328257 0.286217 28642 213929 -1 2145 21 2091 2916 263971 60571 4.782 4.782 -160.623 -4.782 0 0 1.08113e+06 3740.92 0.35 0.10 0.20 -1 -1 0.35 0.0342523 0.0302475 104 63 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.14 17640 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 16.7 MiB 1.06 773 12860 5275 6775 810 55.3 MiB 0.15 0.00 4.8046 -140.908 -4.8046 4.8046 0.79 0.00075971 0.000703179 0.0617989 0.057303 48 2795 40 6.99608e+06 206020 865456. 2994.66 3.11 0.241643 0.212722 28354 207349 -1 2142 22 1789 2884 287795 64057 4.40296 4.40296 -145.429 -4.40296 0 0 1.05005e+06 3633.38 0.33 0.11 0.20 -1 -1 0.33 0.0330099 0.02904 82 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.18 17652 1 0.03 -1 -1 30388 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 16.8 MiB 1.16 794 10228 3166 5486 1576 55.3 MiB 0.14 0.00 5.19565 -143.212 -5.19565 5.19565 0.79 0.000740991 0.000685331 0.0470597 0.0435765 42 2916 38 6.99608e+06 250167 744469. 2576.02 5.16 0.327588 0.284146 27202 183097 -1 2068 19 1339 1953 197673 41638 4.71926 4.71926 -144.669 -4.71926 0 0 949917. 3286.91 0.30 0.08 0.18 -1 -1 0.30 0.0285529 0.0251109 87 47 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.21 17764 1 0.03 -1 -1 30132 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 17.0 MiB 2.08 966 13788 4937 6208 2643 55.5 MiB 0.17 0.00 4.24398 -133.079 -4.24398 4.24398 0.79 0.000788785 0.000729952 0.0646056 0.0598362 48 2998 28 6.99608e+06 294314 865456. 2994.66 4.82 0.281502 0.24577 28354 207349 -1 2362 30 2713 3784 546086 159173 3.9203 3.9203 -137.458 -3.9203 0 0 1.05005e+06 3633.38 0.33 0.18 0.20 -1 -1 0.33 0.0443345 0.0388105 108 83 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17508 1 0.03 -1 -1 30356 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1164 15481 5166 8845 1470 55.6 MiB 0.19 0.00 4.66597 -153.274 -4.66597 4.66597 0.83 0.000555766 0.00050334 0.0600251 0.0550462 40 3109 40 6.99608e+06 250167 706193. 2443.58 3.22 0.247893 0.216666 26914 176310 -1 2752 20 2067 3004 343436 64757 4.76555 4.76555 -163.065 -4.76555 0 0 926341. 3205.33 0.28 0.14 0.17 -1 -1 0.28 0.0379098 0.0332209 95 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17672 1 0.03 -1 -1 30464 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 16.9 MiB 2.25 970 14431 6168 7633 630 55.5 MiB 0.19 0.00 3.80498 -123.528 -3.80498 3.80498 0.78 0.000784081 0.000725297 0.067409 0.0623454 46 2955 26 6.99608e+06 294314 828058. 2865.25 2.53 0.233256 0.205299 28066 200906 -1 2262 19 1754 2267 239314 46501 3.92726 3.92726 -128.956 -3.92726 0 0 1.01997e+06 3529.29 0.35 0.09 0.19 -1 -1 0.35 0.030641 0.0270793 109 85 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17272 1 0.02 -1 -1 30336 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 16.1 MiB 1.03 673 8289 1936 5635 718 54.8 MiB 0.10 0.00 3.54309 -104.459 -3.54309 3.54309 0.79 0.000618389 0.000572729 0.0352027 0.0326175 36 1999 50 6.99608e+06 147157 648988. 2245.63 2.45 0.186023 0.162012 26050 158493 -1 1642 24 1158 1803 183079 35786 3.23397 3.23397 -112.574 -3.23397 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0273909 0.0238318 54 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17856 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 17.2 MiB 0.66 998 13731 5201 6084 2446 55.8 MiB 0.19 0.00 5.23946 -166.614 -5.23946 5.23946 0.79 0.000793274 0.000733565 0.0652738 0.0604415 46 2962 49 6.99608e+06 250167 828058. 2865.25 4.64 0.26264 0.230332 28066 200906 -1 2377 19 1940 2741 328487 62525 4.52184 4.52184 -158.442 -4.52184 0 0 1.01997e+06 3529.29 0.36 0.12 0.20 -1 -1 0.36 0.0329323 0.0291504 100 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17668 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 17.2 MiB 0.92 1023 11631 4065 5883 1683 55.6 MiB 0.17 0.00 4.8947 -165.145 -4.8947 4.8947 0.80 0.000831217 0.000769485 0.0587527 0.0544118 40 3843 32 6.99608e+06 250167 706193. 2443.58 5.00 0.244769 0.214775 26914 176310 -1 3015 22 2838 3929 488187 95868 4.96931 4.96931 -178.451 -4.96931 0 0 926341. 3205.33 0.28 0.15 0.18 -1 -1 0.28 0.0365471 0.0321678 109 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.16 17260 1 0.03 -1 -1 30044 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 16.4 MiB 0.93 649 12083 5091 6584 408 55.1 MiB 0.13 0.00 3.80367 -112.996 -3.80367 3.80367 0.78 0.000625981 0.000578069 0.0501253 0.0463332 42 2455 34 6.99608e+06 161872 744469. 2576.02 2.73 0.192136 0.168002 27202 183097 -1 1766 22 1346 1706 176560 46525 3.43781 3.43781 -119.584 -3.43781 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0270124 0.0236099 69 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17136 1 0.03 -1 -1 30372 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 16.3 MiB 0.45 500 9836 4038 5376 422 54.8 MiB 0.11 0.00 3.32523 -100.829 -3.32523 3.32523 0.79 0.000599194 0.000553911 0.0392858 0.0363711 42 2036 49 6.99608e+06 191304 744469. 2576.02 2.11 0.174408 0.151842 27202 183097 -1 1450 23 1306 1998 189746 45572 3.02592 3.02592 -108.538 -3.02592 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0262929 0.0228864 56 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.16 17904 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 16.8 MiB 0.83 868 11909 4701 5758 1450 55.4 MiB 0.14 0.00 4.58703 -149.04 -4.58703 4.58703 0.78 0.000757547 0.000700875 0.0562966 0.0521294 44 2916 30 6.99608e+06 220735 787024. 2723.27 2.09 0.19137 0.168391 27778 195446 -1 1948 21 1717 2217 174954 38475 4.35445 4.35445 -150.842 -4.35445 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0317837 0.0279675 88 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.18 17908 1 0.03 -1 -1 30388 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 16.7 MiB 1.61 896 11571 3933 6047 1591 55.3 MiB 0.15 0.00 4.54977 -137.477 -4.54977 4.54977 0.79 0.000767472 0.000710065 0.0554269 0.0513072 46 2877 29 6.99608e+06 220735 828058. 2865.25 3.59 0.218811 0.192348 28066 200906 -1 1973 20 1520 2071 200425 42079 4.23615 4.23615 -139.98 -4.23615 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0306571 0.0269436 95 56 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17500 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 16.8 MiB 0.38 847 13556 4796 7036 1724 55.3 MiB 0.19 0.00 4.71017 -139.049 -4.71017 4.71017 0.79 0.000798613 0.000740536 0.0650001 0.0603182 44 2807 41 6.99608e+06 250167 787024. 2723.27 3.04 0.256127 0.225894 27778 195446 -1 2040 20 1714 2852 267002 53718 4.29535 4.29535 -138.372 -4.29535 0 0 997811. 3452.63 0.36 0.10 0.19 -1 -1 0.36 0.0308916 0.0273468 83 3 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17800 1 0.03 -1 -1 30108 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 16.7 MiB 1.07 742 9042 3157 4137 1748 55.2 MiB 0.10 0.00 3.64737 -104.512 -3.64737 3.64737 0.79 0.000703669 0.000649749 0.0403835 0.0374027 48 2409 24 6.99608e+06 235451 865456. 2994.66 2.61 0.184648 0.16127 28354 207349 -1 1849 20 1526 2243 226871 48612 3.39976 3.39976 -110.919 -3.39976 0 0 1.05005e+06 3633.38 0.37 0.08 0.20 -1 -1 0.37 0.025819 0.0228868 86 52 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17588 1 0.03 -1 -1 30672 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 16.3 MiB 0.85 490 9374 3097 4710 1567 54.9 MiB 0.10 0.00 3.44679 -100.328 -3.44679 3.44679 0.78 0.000592373 0.000548722 0.0379799 0.0352084 44 1561 25 6.99608e+06 220735 787024. 2723.27 3.73 0.218988 0.189247 27778 195446 -1 951 20 829 1241 88211 21100 3.46242 3.46242 -103.149 -3.46242 0 0 997811. 3452.63 0.31 0.06 0.19 -1 -1 0.31 0.0237165 0.0207207 66 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.17 17788 1 0.03 -1 -1 30312 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 17.1 MiB 0.89 1154 16102 6967 8731 404 55.6 MiB 0.24 0.00 4.18254 -144.202 -4.18254 4.18254 0.79 0.00087467 0.000809264 0.0834015 0.0772418 48 3756 32 6.99608e+06 264882 865456. 2994.66 4.83 0.30573 0.267803 28354 207349 -1 2830 22 2333 3612 389312 76161 4.29751 4.29751 -146.025 -4.29751 0 0 1.05005e+06 3633.38 0.32 0.13 0.20 -1 -1 0.32 0.0377757 0.0331859 111 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17700 1 0.03 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 16.7 MiB 1.69 1126 13496 4705 6380 2411 55.4 MiB 0.18 0.00 5.49463 -159.408 -5.49463 5.49463 0.80 0.000774462 0.00071658 0.063615 0.0588768 44 2958 24 6.99608e+06 250167 787024. 2723.27 4.65 0.305449 0.26687 27778 195446 -1 2443 22 2065 2917 318457 57977 4.52184 4.52184 -153.088 -4.52184 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0338205 0.0297176 100 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.18 17524 1 0.03 -1 -1 30424 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 16.8 MiB 0.98 926 14354 6182 7861 311 55.3 MiB 0.17 0.00 4.28347 -151.804 -4.28347 4.28347 0.82 0.000718428 0.000663879 0.0649567 0.0600967 44 2617 27 6.99608e+06 206020 787024. 2723.27 13.55 0.361709 0.314534 27778 195446 -1 1889 17 1327 1663 152812 30476 3.62281 3.62281 -139.68 -3.62281 0 0 997811. 3452.63 0.34 0.07 0.19 -1 -1 0.34 0.0231426 0.0205231 91 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30532 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 16.8 MiB 0.65 1057 13599 5180 6238 2181 55.3 MiB 0.17 0.00 4.11318 -134.456 -4.11318 4.11318 0.78 0.000728132 0.000673815 0.0614443 0.0568982 38 2724 22 6.99608e+06 220735 678818. 2348.85 2.75 0.204217 0.180184 26626 170182 -1 2219 23 1406 1908 186707 34935 3.88782 3.88782 -135.588 -3.88782 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0330762 0.0290347 81 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30108 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 16.8 MiB 1.28 870 12120 4959 6494 667 55.4 MiB 0.16 0.00 4.09557 -123.875 -4.09557 4.09557 0.79 0.000792307 0.000732409 0.0593251 0.0549449 48 2403 23 6.99608e+06 250167 865456. 2994.66 4.30 0.299844 0.261615 28354 207349 -1 2004 20 1817 2524 240340 48804 3.59652 3.59652 -123.201 -3.59652 0 0 1.05005e+06 3633.38 0.35 0.09 0.21 -1 -1 0.35 0.0305462 0.0273684 97 50 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17916 1 0.03 -1 -1 30120 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 16.6 MiB 1.34 825 9205 3109 4150 1946 55.2 MiB 0.12 0.00 3.47679 -109.391 -3.47679 3.47679 0.80 0.000711059 0.000657138 0.0419916 0.0389057 46 2489 25 6.99608e+06 250167 828058. 2865.25 2.82 0.19275 0.16833 28066 200906 -1 1901 22 1648 2475 219123 46343 3.35106 3.35106 -110.893 -3.35106 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0310176 0.0271707 88 51 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.10 17824 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 16.8 MiB 0.81 918 10536 3621 5008 1907 55.3 MiB 0.14 0.00 4.39601 -144.18 -4.39601 4.39601 0.80 0.000752492 0.00069454 0.0517949 0.0480226 44 3680 31 6.99608e+06 206020 787024. 2723.27 3.53 0.18971 0.167041 27778 195446 -1 2434 20 1885 2744 281061 56772 4.44125 4.44125 -154.958 -4.44125 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.030635 0.0269534 88 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17584 1 0.03 -1 -1 30160 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 17.2 MiB 2.28 942 12292 4666 5756 1870 55.6 MiB 0.16 0.00 3.70017 -126.602 -3.70017 3.70017 0.80 0.000826069 0.000764591 0.0619251 0.0573491 56 2610 30 6.99608e+06 235451 973134. 3367.25 5.52 0.390595 0.339902 29794 239141 -1 2038 20 1778 2459 237594 53289 3.29786 3.29786 -122.948 -3.29786 0 0 1.19926e+06 4149.71 0.36 0.09 0.23 -1 -1 0.36 0.0327392 0.0288414 103 62 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.17 17316 1 0.03 -1 -1 30316 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 16.4 MiB 1.26 638 10503 3616 4659 2228 55.0 MiB 0.11 0.00 4.33189 -121.838 -4.33189 4.33189 0.79 0.000626327 0.000579997 0.043636 0.0404233 38 1790 34 6.99608e+06 206020 678818. 2348.85 1.95 0.180041 0.157185 26626 170182 -1 1379 18 1150 1531 123037 26099 3.33656 3.33656 -114.568 -3.33656 0 0 902133. 3121.57 0.27 0.06 0.17 -1 -1 0.27 0.023078 0.0202353 70 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.18 17804 1 0.03 -1 -1 30392 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 16.6 MiB 1.92 733 10370 4308 5800 262 55.1 MiB 0.12 0.01 4.00228 -133.8 -4.00228 4.00228 0.88 0.0021236 0.0019625 0.0376894 0.0345049 46 2368 49 6.99608e+06 206020 828058. 2865.25 4.89 0.268191 0.23247 28066 200906 -1 1634 20 1398 1889 180642 37048 3.72005 3.72005 -128.689 -3.72005 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.0272054 0.0238837 79 58 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17800 1 0.03 -1 -1 30380 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 16.7 MiB 0.61 764 12362 5067 6494 801 55.2 MiB 0.15 0.00 4.07608 -123.99 -4.07608 4.07608 0.79 0.00072938 0.000674265 0.0567159 0.0524709 46 2519 33 6.99608e+06 220735 828058. 2865.25 3.34 0.216826 0.190332 28066 200906 -1 1836 21 1593 2316 234084 49256 3.83282 3.83282 -131.376 -3.83282 0 0 1.01997e+06 3529.29 0.31 0.09 0.17 -1 -1 0.31 0.0298716 0.0261879 80 33 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17448 1 0.03 -1 -1 30468 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 16.4 MiB 0.88 586 8909 3659 4796 454 55.0 MiB 0.10 0.00 3.79267 -108.98 -3.79267 3.79267 0.85 0.000613622 0.000567642 0.0375116 0.0347385 48 1967 34 6.99608e+06 191304 865456. 2994.66 4.87 0.249177 0.215223 28354 207349 -1 1510 20 1179 1527 153227 34946 3.41881 3.41881 -113.302 -3.41881 0 0 1.05005e+06 3633.38 0.33 0.07 0.20 -1 -1 0.33 0.0246297 0.0215078 68 31 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30116 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 16.3 MiB 0.76 860 12076 5115 6633 328 54.9 MiB 0.14 0.00 4.30315 -133.848 -4.30315 4.30315 0.81 0.000643035 0.000594587 0.0509321 0.0471294 38 2432 35 6.99608e+06 176588 678818. 2348.85 2.81 0.195376 0.170787 26626 170182 -1 1940 19 1333 1781 167567 32858 3.62841 3.62841 -133.931 -3.62841 0 0 902133. 3121.57 0.30 0.08 0.16 -1 -1 0.30 0.0222868 0.0198111 73 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.19 17580 1 0.03 -1 -1 30068 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 16.8 MiB 0.86 1156 13840 5407 6744 1689 55.5 MiB 0.19 0.00 4.42187 -150.582 -4.42187 4.42187 0.79 0.000791459 0.000731985 0.0667515 0.0617634 46 2859 23 6.99608e+06 250167 828058. 2865.25 3.00 0.231125 0.203264 28066 200906 -1 2311 20 1788 2437 225063 43912 3.88435 3.88435 -144.912 -3.88435 0 0 1.01997e+06 3529.29 0.31 0.09 0.20 -1 -1 0.31 0.0321912 0.028366 101 64 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.19 17512 1 0.03 -1 -1 30492 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 16.5 MiB 0.74 820 12876 4559 5981 2336 55.1 MiB 0.14 0.00 3.74867 -118.743 -3.74867 3.74867 0.79 0.000619771 0.000573462 0.0525878 0.0487128 36 2448 46 6.99608e+06 191304 648988. 2245.63 3.79 0.198716 0.173325 26050 158493 -1 1978 21 1207 1679 188797 34831 3.28871 3.28871 -121.086 -3.28871 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0255756 0.0223423 71 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 29960 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 16.7 MiB 0.97 889 10726 4477 5918 331 55.3 MiB 0.13 0.00 3.49879 -116.053 -3.49879 3.49879 0.79 0.000758013 0.00070093 0.0509276 0.0471548 46 2316 38 6.99608e+06 220735 828058. 2865.25 2.17 0.193004 0.169472 28066 200906 -1 1760 20 1261 1702 138405 29461 3.03316 3.03316 -111.255 -3.03316 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0299398 0.0262862 91 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17576 1 0.03 -1 -1 30300 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 17.1 MiB 2.52 1223 9263 3795 5242 226 55.6 MiB 0.14 0.00 4.74537 -163.238 -4.74537 4.74537 0.79 0.000819675 0.000758009 0.0450863 0.0417442 48 3578 39 6.99608e+06 294314 865456. 2994.66 3.68 0.23881 0.208995 28354 207349 -1 2904 25 2601 3684 576874 130247 4.67164 4.67164 -170.268 -4.67164 0 0 1.05005e+06 3633.38 0.33 0.17 0.20 -1 -1 0.33 0.0397803 0.0349296 113 91 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.18 17432 1 0.03 -1 -1 30288 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 16.8 MiB 1.66 727 10316 3968 5326 1022 55.2 MiB 0.12 0.00 3.38944 -114.889 -3.38944 3.38944 0.79 0.000668737 0.000617383 0.04579 0.0423578 48 2268 38 6.99608e+06 176588 865456. 2994.66 4.92 0.259634 0.225135 28354 207349 -1 1746 18 1500 1961 207105 42998 3.29171 3.29171 -119.312 -3.29171 0 0 1.05005e+06 3633.38 0.32 0.08 0.20 -1 -1 0.32 0.0249296 0.0218996 80 57 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.17 17556 1 0.03 -1 -1 30256 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 16.4 MiB 0.66 695 11609 4409 5699 1501 55.0 MiB 0.14 0.00 3.88892 -124.254 -3.88892 3.88892 0.78 0.000663816 0.000613385 0.0512596 0.0473904 42 3090 44 6.99608e+06 161872 744469. 2576.02 4.90 0.286991 0.249577 27202 183097 -1 1991 22 1651 2379 295891 64850 3.71141 3.71141 -131.394 -3.71141 0 0 949917. 3286.91 0.29 0.10 0.12 -1 -1 0.29 0.028436 0.0248723 72 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17820 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 16.6 MiB 1.14 729 11034 3646 5163 2225 55.1 MiB 0.12 0.00 4.07043 -123.448 -4.07043 4.07043 0.65 0.000714212 0.000660758 0.0501356 0.0464225 48 2318 36 6.99608e+06 206020 865456. 2994.66 4.90 0.314736 0.273144 28354 207349 -1 1874 20 1486 2131 201474 44978 4.02642 4.02642 -128.541 -4.02642 0 0 1.05005e+06 3633.38 0.33 0.08 0.20 -1 -1 0.33 0.0284618 0.0250046 79 30 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.15 17640 1 0.03 -1 -1 30056 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 16.7 MiB 1.38 807 9881 4044 5289 548 55.2 MiB 0.13 0.00 3.78147 -112.033 -3.78147 3.78147 0.79 0.000705927 0.000653214 0.0443194 0.0410787 40 2784 40 6.99608e+06 264882 706193. 2443.58 4.00 0.203847 0.177511 26914 176310 -1 2174 22 1567 2244 318710 82637 3.54711 3.54711 -122.467 -3.54711 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0306126 0.0268326 88 55 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.12 17648 1 0.03 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56716 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1189 13031 5003 6393 1635 55.4 MiB 0.19 0.00 5.55394 -180.701 -5.55394 5.55394 0.79 0.000825285 0.00076371 0.0648721 0.0600323 40 3687 40 6.99608e+06 250167 706193. 2443.58 4.65 0.21003 0.185167 26914 176310 -1 3048 30 3074 4613 677928 207788 5.0141 5.0141 -180.26 -5.0141 0 0 926341. 3205.33 0.28 0.21 0.17 -1 -1 0.28 0.045245 0.0395708 105 65 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.16 17088 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 16.2 MiB 0.80 678 10796 4152 4483 2161 54.8 MiB 0.11 0.00 3.34663 -92.0539 -3.34663 3.34663 0.80 0.000572789 0.000529805 0.0406938 0.0376753 34 1883 37 6.99608e+06 191304 618332. 2139.56 1.92 0.169023 0.147017 25762 151098 -1 1561 20 982 1561 148985 29275 2.92262 2.92262 -104.737 -2.92262 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0226388 0.0197357 54 4 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17652 1 0.03 -1 -1 30288 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 17.1 MiB 2.44 1002 14907 4915 7817 2175 55.8 MiB 0.22 0.00 4.76623 -160.299 -4.76623 4.76623 0.86 0.000852429 0.000787447 0.0736469 0.0681556 44 3595 43 6.99608e+06 294314 787024. 2723.27 15.68 0.450367 0.39254 27778 195446 -1 2405 22 2264 2869 306499 60619 5.2299 5.2299 -170.912 -5.2299 0 0 997811. 3452.63 0.31 0.11 0.20 -1 -1 0.31 0.0369365 0.0325276 116 90 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.11 17776 1 0.03 -1 -1 30052 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.0 MiB 0.86 1317 10744 3615 5258 1871 55.7 MiB 0.15 0.00 4.50112 -167.331 -4.50112 4.50112 0.82 0.000779767 0.00072126 0.0515347 0.0476739 46 3157 29 6.99608e+06 235451 828058. 2865.25 4.65 0.288707 0.250929 28066 200906 -1 2655 22 2707 3376 391670 69371 4.41995 4.41995 -169.687 -4.41995 0 0 1.01997e+06 3529.29 0.32 0.14 0.17 -1 -1 0.32 0.0337909 0.0299834 110 96 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.20 17908 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 16.9 MiB 1.27 944 9712 3948 5370 394 55.5 MiB 0.13 0.00 3.79657 -123.64 -3.79657 3.79657 0.79 0.000780016 0.000721277 0.0473127 0.0438014 44 2897 36 6.99608e+06 220735 787024. 2723.27 3.16 0.22299 0.195141 27778 195446 -1 1972 20 1500 1976 185004 40839 3.33551 3.33551 -118.345 -3.33551 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0307504 0.0270277 94 60 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 17704 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 17.2 MiB 0.91 1078 15796 7109 8306 381 55.7 MiB 0.23 0.00 5.81442 -170.312 -5.81442 5.81442 0.78 0.00085408 0.000790072 0.0824353 0.0763563 46 3030 22 6.99608e+06 220735 828058. 2865.25 3.91 0.262509 0.2323 28066 200906 -1 2508 24 2058 3019 313939 59277 4.8675 4.8675 -163.012 -4.8675 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0390516 0.0343469 98 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.15 17540 1 0.02 -1 -1 30040 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 16.1 MiB 0.61 501 9684 3375 4762 1547 54.7 MiB 0.10 0.00 2.78575 -96.9119 -2.78575 2.78575 0.79 0.00053704 0.000495674 0.0354503 0.0327502 36 1699 34 6.99608e+06 176588 648988. 2245.63 1.72 0.141852 0.123335 26050 158493 -1 1329 18 831 1034 117346 25415 2.68802 2.68802 -104.094 -2.68802 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.019687 0.0171698 53 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.19 17316 1 0.03 -1 -1 30440 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 16.2 MiB 3.14 598 11756 4032 5894 1830 54.9 MiB 0.12 0.00 3.77712 -117.524 -3.77712 3.77712 0.79 0.000648 0.000598988 0.0501695 0.0464104 38 1820 24 6.99608e+06 206020 678818. 2348.85 1.98 0.180647 0.157932 26626 170182 -1 1388 20 1130 1682 155185 32066 3.28746 3.28746 -117.563 -3.28746 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0262861 0.0229832 68 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.17 17432 1 0.03 -1 -1 29996 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 16.4 MiB 0.60 791 12331 4777 6250 1304 55.1 MiB 0.15 0.00 3.68644 -122.952 -3.68644 3.68644 0.79 0.000672195 0.000621643 0.0502301 0.0464872 40 2615 41 6.99608e+06 250167 706193. 2443.58 13.97 0.361167 0.31309 26914 176310 -1 2133 19 1471 2299 333928 96667 3.88656 3.88656 -140.476 -3.88656 0 0 926341. 3205.33 0.28 0.13 0.18 -1 -1 0.28 0.0366182 0.0328122 78 34 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17432 1 0.02 -1 -1 30244 -1 -1 16 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 16.3 MiB 0.91 448 7369 2953 3764 652 54.7 MiB 0.07 0.00 3.31959 -76.8944 -3.31959 3.31959 0.78 0.000514702 0.00047561 0.0267698 0.0247737 38 1711 40 6.99608e+06 235451 678818. 2348.85 2.67 0.143034 0.123644 26626 170182 -1 1021 22 774 1010 80804 19966 3.08392 3.08392 -81.3246 -3.08392 0 0 902133. 3121.57 0.34 0.05 0.14 -1 -1 0.34 0.0179443 0.0157552 59 29 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 17.0 MiB 2.58 1245 8306 2489 4423 1394 55.5 MiB 0.13 0.00 4.0386 -139.855 -4.0386 4.0386 0.77 0.000789411 0.000729299 0.0404599 0.0374788 46 3408 46 6.99608e+06 250167 828058. 2865.25 2.63 0.181408 0.159422 28066 200906 -1 2723 23 1959 2884 314415 56704 3.66072 3.66072 -134.916 -3.66072 0 0 1.01997e+06 3529.29 0.33 0.11 0.16 -1 -1 0.33 0.0355792 0.0312437 103 72 -1 -1 -1 -1 + fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.21 17872 1 0.03 -1 -1 30360 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 17.1 MiB 2.11 1163 15568 6109 7919 1540 55.8 MiB 0.21 0.00 4.35051 -150.242 -4.35051 4.35051 0.78 0.000846702 0.000783653 0.0770123 0.0713282 40 3606 40 6.99608e+06 279598 706193. 2443.58 3.27 0.244504 0.21552 26914 176310 -1 2938 22 2570 3491 389073 80203 4.56835 4.56835 -164.431 -4.56835 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0362086 0.0318596 117 90 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.28 17668 14 0.27 -1 -1 32976 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 16.5 MiB 1.49 1276 8543 2090 5594 859 55.1 MiB 0.13 0.00 8.38905 -176.577 -8.38905 8.38905 0.78 0.000983732 0.000909512 0.05063 0.0468863 36 3501 22 6.79088e+06 255968 648988. 2245.63 5.31 0.257839 0.226095 25390 158009 -1 2996 25 1551 4647 533385 189563 7.33618 7.33618 -171.051 -7.33618 0 0 828058. 2865.25 0.26 0.18 0.16 -1 -1 0.26 0.0485714 0.0427147 130 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.24 17636 14 0.29 -1 -1 32792 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 16.3 MiB 2.04 1147 12331 4133 6053 2145 54.8 MiB 0.17 0.00 7.6097 -157.374 -7.6097 7.6097 0.78 0.000981806 0.000908066 0.0735448 0.0679177 34 3355 26 6.79088e+06 255968 618332. 2139.56 3.21 0.281136 0.247033 25102 150614 -1 2618 18 1299 3451 231995 49881 6.94554 6.94554 -154.164 -6.94554 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0375714 0.03326 125 184 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.25 17900 11 0.22 -1 -1 32984 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 16.3 MiB 3.12 1231 6383 1494 4487 402 55.0 MiB 0.14 0.01 6.81003 -148.008 -6.81003 6.81003 0.80 0.00330818 0.00307279 0.0471039 0.0434695 36 3279 22 6.79088e+06 255968 648988. 2245.63 4.04 0.250745 0.218986 25390 158009 -1 2791 18 1368 4186 280724 58772 6.14674 6.14674 -145.626 -6.14674 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0385994 0.0342619 130 186 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.26 17612 12 0.29 -1 -1 32772 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 16.4 MiB 0.98 1099 5293 1100 3885 308 54.9 MiB 0.08 0.00 7.28153 -143.815 -7.28153 7.28153 0.78 0.00099973 0.000925067 0.0322674 0.0299324 44 2848 30 6.79088e+06 323328 787024. 2723.27 4.51 0.32471 0.282092 27118 194962 -1 2243 16 1047 2983 216741 43423 6.61998 6.61998 -138.903 -6.61998 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0351765 0.0312897 136 190 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.26 17664 13 0.27 -1 -1 32864 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1401 5756 1163 4305 288 55.2 MiB 0.10 0.00 8.2885 -175.09 -8.2885 8.2885 0.78 0.00108509 0.00100408 0.0374463 0.0347172 40 3527 47 6.79088e+06 296384 706193. 2443.58 2.48 0.299086 0.261887 26254 175826 -1 3329 19 1520 3953 313320 63996 7.63711 7.63711 -174.358 -7.63711 0 0 926341. 3205.33 0.32 0.12 0.19 -1 -1 0.32 0.0437371 0.0388268 152 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.27 17636 13 0.24 -1 -1 32820 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 16.6 MiB 1.44 1243 11063 3086 5977 2000 55.2 MiB 0.15 0.00 7.40767 -155.099 -7.40767 7.40767 0.79 0.00045143 0.000411923 0.0638865 0.0590364 44 3205 16 6.79088e+06 255968 787024. 2723.27 4.23 0.344119 0.300728 27118 194962 -1 2626 15 1244 3607 234577 48036 6.58427 6.58427 -147.065 -6.58427 0 0 997811. 3452.63 0.36 0.09 0.19 -1 -1 0.36 0.0358735 0.0319858 137 198 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.24 17348 12 0.19 -1 -1 32600 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55980 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 16.0 MiB 1.23 831 9024 2147 6104 773 54.7 MiB 0.11 0.00 7.03512 -124.15 -7.03512 7.03512 0.79 0.000802037 0.000740484 0.0457803 0.0423735 36 2326 50 6.79088e+06 282912 648988. 2245.63 3.15 0.245918 0.214671 25390 158009 -1 1839 18 935 2168 150752 35998 6.02914 6.02914 -117.3 -6.02914 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0311054 0.0275795 106 150 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.22 17520 12 0.18 -1 -1 32844 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 16.1 MiB 2.52 997 12636 5258 7154 224 54.7 MiB 0.15 0.00 6.42294 -136.16 -6.42294 6.42294 0.78 0.000811091 0.000748617 0.0628198 0.058038 46 2357 17 6.79088e+06 229024 828058. 2865.25 4.57 0.28159 0.246484 27406 200422 -1 2043 16 974 2626 159242 34234 5.65861 5.65861 -131.355 -5.65861 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0286435 0.025461 106 138 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.25 17728 12 0.18 -1 -1 32596 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 16.2 MiB 2.78 1116 6203 1235 4627 341 54.6 MiB 0.09 0.00 7.04997 -146.463 -7.04997 7.04997 0.78 0.00083425 0.000769996 0.0320899 0.0296962 38 2830 16 6.79088e+06 269440 678818. 2348.85 2.92 0.194485 0.169934 25966 169698 -1 2402 16 1117 2793 186932 39580 6.25178 6.25178 -138.535 -6.25178 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0291308 0.0259313 113 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.24 17352 13 0.19 -1 -1 32680 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 16.3 MiB 1.90 1109 7177 1737 4800 640 54.7 MiB 0.11 0.00 7.59858 -166.488 -7.59858 7.59858 0.79 0.000890844 0.000819305 0.0414842 0.0383853 36 2916 24 6.79088e+06 202080 648988. 2245.63 3.56 0.233225 0.203989 25390 158009 -1 2435 17 1025 2377 177631 37271 6.91327 6.91327 -162.009 -6.91327 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0324783 0.0287751 106 156 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.25 17320 12 0.18 -1 -1 32516 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55868 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 16.0 MiB 1.53 935 11402 3533 6247 1622 54.6 MiB 0.12 0.00 7.11778 -148.236 -7.11778 7.11778 0.82 0.000573579 0.00052131 0.0488442 0.0448207 30 2503 47 6.79088e+06 229024 556674. 1926.21 1.26 0.175178 0.153677 24526 138013 -1 1951 14 856 2022 111924 24776 6.24408 6.24408 -141.523 -6.24408 0 0 706193. 2443.58 0.23 0.06 0.09 -1 -1 0.23 0.0248492 0.0221406 96 128 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.24 17312 12 0.15 -1 -1 32524 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55944 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 16.0 MiB 2.08 937 12856 4731 5927 2198 54.6 MiB 0.15 0.00 5.84661 -143.137 -5.84661 5.84661 0.79 0.000809411 0.00074663 0.0628048 0.0579926 46 2552 15 6.79088e+06 229024 828058. 2865.25 4.15 0.272835 0.238998 27406 200422 -1 1955 16 894 2437 164096 33756 5.18431 5.18431 -134.024 -5.18431 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0287163 0.025524 101 142 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.27 17724 13 0.24 -1 -1 32500 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 16.6 MiB 1.69 1258 8319 2303 5000 1016 55.2 MiB 0.13 0.00 7.91028 -166.355 -7.91028 7.91028 0.78 0.00103255 0.000946907 0.0515207 0.0476957 38 3285 23 6.79088e+06 269440 678818. 2348.85 2.03 0.207347 0.182458 25966 169698 -1 2676 16 1210 3225 212164 43654 6.88526 6.88526 -158.623 -6.88526 0 0 902133. 3121.57 0.30 0.09 0.17 -1 -1 0.30 0.03577 0.0318469 134 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.26 17856 14 0.30 -1 -1 32968 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 16.7 MiB 1.70 1345 7268 1767 5038 463 55.2 MiB 0.12 0.00 8.74626 -182.518 -8.74626 8.74626 0.78 0.00106658 0.000985041 0.0456398 0.0421754 36 3534 21 6.79088e+06 296384 648988. 2245.63 2.37 0.263465 0.229996 25390 158009 -1 2963 16 1332 3396 229727 49960 7.56225 7.56225 -173.31 -7.56225 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0384613 0.034238 151 209 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.22 17400 11 0.17 -1 -1 32700 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 16.1 MiB 2.12 987 12186 3908 6119 2159 54.6 MiB 0.14 0.00 6.7187 -136.52 -6.7187 6.7187 0.79 0.00079832 0.000736984 0.0580459 0.0536367 46 2308 16 6.79088e+06 282912 828058. 2865.25 3.97 0.273568 0.238932 27406 200422 -1 1972 14 943 2327 160913 32338 5.91503 5.91503 -129.718 -5.91503 0 0 1.01997e+06 3529.29 0.31 0.07 0.20 -1 -1 0.31 0.0260022 0.0232107 106 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.25 17900 12 0.37 -1 -1 32804 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 16.8 MiB 1.28 1224 13348 3764 6998 2586 55.5 MiB 0.19 0.00 7.24781 -156.42 -7.24781 7.24781 0.78 0.00107925 0.000997788 0.0788415 0.0729505 38 3602 44 6.79088e+06 323328 678818. 2348.85 2.96 0.311867 0.274676 25966 169698 -1 2860 18 1413 4427 279784 59066 6.58078 6.58078 -153.511 -6.58078 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0413673 0.0367797 145 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.27 17816 14 0.24 -1 -1 32712 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 16.4 MiB 2.25 1311 6743 1544 4772 427 55.0 MiB 0.11 0.00 8.47078 -173.752 -8.47078 8.47078 0.80 0.000990191 0.000915759 0.0421304 0.039067 36 3798 42 6.79088e+06 255968 648988. 2245.63 3.84 0.244215 0.213141 25390 158009 -1 3058 27 1353 3875 509402 196667 7.22545 7.22545 -164.392 -7.22545 0 0 828058. 2865.25 0.26 0.18 0.15 -1 -1 0.26 0.0513971 0.0451861 126 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.24 17764 12 0.16 -1 -1 32444 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 15.9 MiB 1.53 1008 11740 3543 6499 1698 54.6 MiB 0.14 0.00 7.24148 -161.628 -7.24148 7.24148 0.92 0.000816047 0.000753088 0.0600514 0.0554737 34 2783 17 6.79088e+06 202080 618332. 2139.56 2.51 0.208023 0.183018 25102 150614 -1 2379 15 959 2452 167430 36072 6.21607 6.21607 -155.277 -6.21607 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.027767 0.0247096 105 133 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.21 17372 10 0.10 -1 -1 32220 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55620 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 15.7 MiB 1.79 679 4973 1078 3739 156 54.3 MiB 0.06 0.00 4.83286 -114.815 -4.83286 4.83286 0.77 0.000613568 0.000567029 0.0215867 0.0199515 34 2157 28 6.79088e+06 175136 618332. 2139.56 5.19 0.22858 0.196916 25102 150614 -1 1828 28 756 1705 271371 110327 4.29586 4.29586 -116.956 -4.29586 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0324829 0.0283032 66 87 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.24 17344 13 0.18 -1 -1 32636 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55980 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 16.0 MiB 1.91 997 12331 4111 5801 2419 54.7 MiB 0.15 0.00 7.54752 -160.268 -7.54752 7.54752 0.78 0.000826192 0.000762735 0.0615951 0.0569132 36 2658 28 6.79088e+06 242496 648988. 2245.63 2.66 0.237942 0.208935 25390 158009 -1 2340 19 1195 2820 193432 41368 6.41633 6.41633 -149.84 -6.41633 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.033148 0.0293394 107 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.26 17764 13 0.27 -1 -1 32832 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 16.5 MiB 1.69 1287 9943 2672 5830 1441 55.1 MiB 0.15 0.00 7.66212 -166.709 -7.66212 7.66212 0.78 0.00106982 0.000989095 0.0611745 0.056637 44 3435 33 6.79088e+06 282912 787024. 2723.27 5.13 0.38692 0.337717 27118 194962 -1 2653 16 1234 3562 263352 51175 6.75652 6.75652 -154.939 -6.75652 0 0 997811. 3452.63 0.31 0.10 0.20 -1 -1 0.31 0.0352544 0.0318143 143 210 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.24 17840 13 0.28 -1 -1 32408 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 16.4 MiB 2.07 1366 11989 3183 6998 1808 55.2 MiB 0.18 0.00 7.56666 -167.812 -7.56666 7.56666 0.79 0.00104378 0.000966535 0.0758478 0.0704649 38 3748 34 6.79088e+06 282912 678818. 2348.85 5.14 0.31051 0.273506 25966 169698 -1 3111 32 1408 4169 528617 227059 6.59202 6.59202 -157.06 -6.59202 0 0 902133. 3121.57 0.27 0.21 0.16 -1 -1 0.27 0.0613733 0.0538563 141 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.16 17056 9 0.11 -1 -1 32288 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55556 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 15.6 MiB 1.08 700 7596 2556 3853 1187 54.3 MiB 0.07 0.00 4.83723 -93.7879 -4.83723 4.83723 0.79 0.000560235 0.000517706 0.0288248 0.0266921 34 1695 24 6.79088e+06 242496 618332. 2139.56 1.69 0.142808 0.123994 25102 150614 -1 1584 18 688 1651 118198 25269 4.3539 4.3539 -98.5304 -4.3539 0 0 787024. 2723.27 0.25 0.06 0.16 -1 -1 0.25 0.0208894 0.01832 67 76 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.24 17572 13 0.27 -1 -1 32664 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 16.4 MiB 1.76 1263 10263 2709 7113 441 55.0 MiB 0.15 0.00 8.1433 -166.845 -8.1433 8.1433 0.87 0.00101265 0.000936692 0.0585903 0.0542254 40 3155 20 6.79088e+06 309856 706193. 2443.58 2.61 0.269495 0.237238 26254 175826 -1 3050 17 1505 4075 308519 63019 7.08214 7.08214 -160.5 -7.08214 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0375197 0.0333364 136 193 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.19 17192 8 0.09 -1 -1 32660 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55372 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 15.6 MiB 1.76 633 5921 1256 4594 71 54.1 MiB 0.07 0.00 4.18492 -95.1021 -4.18492 4.18492 0.79 0.000552049 0.000508942 0.0226908 0.0209313 34 1897 28 6.79088e+06 148192 618332. 2139.56 1.73 0.114086 0.0985562 25102 150614 -1 1559 21 694 1624 104857 24022 4.12782 4.12782 -101.602 -4.12782 0 0 787024. 2723.27 0.30 0.05 0.16 -1 -1 0.30 0.0190046 0.0167417 60 60 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.24 17460 15 0.23 -1 -1 32920 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 16.4 MiB 2.00 1197 14144 5293 7084 1767 54.9 MiB 0.19 0.00 8.89118 -178.017 -8.89118 8.89118 0.78 0.000933057 0.000863202 0.0779819 0.0721828 36 3835 32 6.79088e+06 242496 648988. 2245.63 6.14 0.284954 0.250794 25390 158009 -1 3072 18 1334 3748 291916 60438 7.89901 7.89901 -172.866 -7.89901 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.035967 0.0318751 121 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.24 17536 13 0.22 -1 -1 32848 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 16.3 MiB 1.70 1207 12898 3890 6827 2181 54.8 MiB 0.17 0.00 6.79894 -149.553 -6.79894 6.79894 0.81 0.0009314 0.000860978 0.0714799 0.0661488 36 3299 30 6.79088e+06 242496 648988. 2245.63 6.89 0.288469 0.253957 25390 158009 -1 2825 23 1285 3716 505813 199805 5.82898 5.82898 -143.772 -5.82898 0 0 828058. 2865.25 0.31 0.18 0.16 -1 -1 0.31 0.0445407 0.0395234 117 166 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.25 17784 13 0.26 -1 -1 32804 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 16.4 MiB 1.43 1179 7024 1686 4552 786 55.0 MiB 0.11 0.00 7.81323 -165.772 -7.81323 7.81323 0.78 0.0010028 0.000927948 0.0435563 0.0403568 38 3643 49 6.79088e+06 242496 678818. 2348.85 4.27 0.287511 0.250693 25966 169698 -1 2698 29 1426 4050 422160 149696 6.74112 6.74112 -158.957 -6.74112 0 0 902133. 3121.57 0.27 0.17 0.16 -1 -1 0.27 0.0571866 0.0503787 136 185 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.24 17404 12 0.16 -1 -1 32748 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55944 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 15.9 MiB 1.76 1077 9024 2472 4753 1799 54.6 MiB 0.11 0.00 6.90294 -154.176 -6.90294 6.90294 0.79 0.00083279 0.000768938 0.0467537 0.0432259 36 3085 40 6.79088e+06 215552 648988. 2245.63 2.32 0.214368 0.188016 25390 158009 -1 2399 27 1095 2648 302475 111183 5.99004 5.99004 -144.9 -5.99004 0 0 828058. 2865.25 0.26 0.13 0.16 -1 -1 0.26 0.0429024 0.0377233 103 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.21 17344 11 0.15 -1 -1 32684 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 16.0 MiB 1.67 910 12120 3870 6285 1965 54.6 MiB 0.14 0.00 6.3635 -135.496 -6.3635 6.3635 0.78 0.000753896 0.000696175 0.0558103 0.051565 36 2657 41 6.79088e+06 242496 648988. 2245.63 2.73 0.231981 0.203058 25390 158009 -1 2177 15 979 2374 172658 36547 5.69238 5.69238 -132.508 -5.69238 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0254215 0.022618 95 125 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.23 17572 11 0.17 -1 -1 32836 -1 -1 21 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 15.9 MiB 1.40 934 11106 3231 6003 1872 54.5 MiB 0.13 0.00 7.04953 -133.904 -7.04953 7.04953 0.78 0.000802824 0.000741681 0.0540168 0.0499262 36 2542 18 6.79088e+06 282912 648988. 2245.63 2.36 0.212837 0.187285 25390 158009 -1 2074 17 945 2463 170056 35783 6.24403 6.24403 -127.696 -6.24403 0 0 828058. 2865.25 0.27 0.08 0.14 -1 -1 0.27 0.0295499 0.02623 109 145 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.21 17476 12 0.20 -1 -1 32664 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 16.4 MiB 2.27 1143 7431 2070 3957 1404 54.9 MiB 0.11 0.00 7.03679 -162.788 -7.03679 7.03679 0.75 0.000944265 0.000872439 0.0441558 0.0408968 38 3426 38 6.79088e+06 229024 678818. 2348.85 4.35 0.267653 0.233616 25966 169698 -1 2622 22 1412 3514 343557 100252 6.58078 6.58078 -167.458 -6.58078 0 0 902133. 3121.57 0.33 0.14 0.16 -1 -1 0.33 0.044214 0.0391044 119 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.20 17556 12 0.19 -1 -1 32668 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 16.0 MiB 2.08 1005 7304 1599 5397 308 54.6 MiB 0.10 0.00 6.85818 -143.144 -6.85818 6.85818 0.78 0.000816408 0.000753615 0.0380214 0.0351626 38 2861 25 6.79088e+06 229024 678818. 2348.85 4.15 0.286146 0.248475 25966 169698 -1 2321 19 1087 2707 187096 38088 5.92738 5.92738 -137.921 -5.92738 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0328844 0.0291027 101 146 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.25 17540 10 0.14 -1 -1 32816 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 15.9 MiB 1.39 942 8378 2178 5592 608 54.6 MiB 0.11 0.00 6.16888 -135.594 -6.16888 6.16888 0.85 0.000799333 0.000737937 0.043346 0.0400531 34 2791 42 6.79088e+06 229024 618332. 2139.56 3.09 0.23306 0.203804 25102 150614 -1 2265 29 963 2673 331562 132087 5.36338 5.36338 -129.251 -5.36338 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0441693 0.0387875 103 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.28 18332 13 0.29 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 16.8 MiB 1.67 1312 13663 4088 7126 2449 55.2 MiB 0.20 0.00 8.09614 -166.803 -8.09614 8.09614 0.85 0.00110463 0.00102007 0.0819633 0.0756118 38 3598 50 6.79088e+06 282912 678818. 2348.85 15.17 0.516507 0.451017 25966 169698 -1 2788 16 1383 4013 256749 54724 7.0141 7.0141 -153.927 -7.0141 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0400155 0.0356406 149 221 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.28 18108 14 0.31 -1 -1 33300 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 16.5 MiB 2.01 1261 10584 2627 7173 784 55.2 MiB 0.16 0.00 7.68903 -168.897 -7.68903 7.68903 0.78 0.00102219 0.000945081 0.0653405 0.0603563 40 3438 36 6.79088e+06 242496 706193. 2443.58 20.43 0.495767 0.431413 26254 175826 -1 3285 49 1656 4986 1174795 622841 6.95258 6.95258 -169.158 -6.95258 0 0 926341. 3205.33 0.28 0.42 0.17 -1 -1 0.28 0.0880823 0.076844 136 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.23 17640 12 0.15 -1 -1 32600 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 16.0 MiB 1.91 1099 9036 2242 5503 1291 54.6 MiB 0.12 0.00 7.11595 -155.813 -7.11595 7.11595 0.78 0.000823739 0.000759514 0.0472541 0.0436507 30 2846 40 6.79088e+06 215552 556674. 1926.21 2.83 0.174734 0.153973 24526 138013 -1 2358 19 1048 2722 194032 39793 6.20488 6.20488 -150.044 -6.20488 0 0 706193. 2443.58 0.25 0.09 0.13 -1 -1 0.25 0.0325469 0.0287783 101 150 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.28 18104 12 0.24 -1 -1 32884 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 16.8 MiB 2.15 1467 6039 1319 4287 433 55.2 MiB 0.10 0.00 7.47278 -158.083 -7.47278 7.47278 0.80 0.00108749 0.00100678 0.0383861 0.0356142 44 3602 28 6.79088e+06 323328 787024. 2723.27 3.17 0.273934 0.239696 27118 194962 -1 2932 15 1270 3790 264837 52111 6.54502 6.54502 -147.889 -6.54502 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0369465 0.03296 146 216 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.28 17992 14 0.33 -1 -1 33176 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 16.5 MiB 1.23 1271 10129 2796 6287 1046 55.1 MiB 0.15 0.00 8.30959 -169.599 -8.30959 8.30959 0.78 0.00104518 0.000966937 0.0611773 0.0566269 40 2772 17 6.79088e+06 296384 706193. 2443.58 4.66 0.436399 0.379943 26254 175826 -1 2870 18 1434 4094 290241 60193 7.5622 7.5622 -163.755 -7.5622 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0406256 0.036085 142 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.25 17880 13 0.31 -1 -1 32720 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1280 4811 900 3622 289 55.0 MiB 0.08 0.00 8.58767 -169.841 -8.58767 8.58767 0.78 0.000996909 0.000921184 0.0292413 0.0271058 38 3438 18 6.79088e+06 309856 678818. 2348.85 2.61 0.225279 0.196566 25966 169698 -1 2928 16 1366 3595 229767 48338 7.47267 7.47267 -159.93 -7.47267 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0353419 0.0314273 136 185 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.26 17652 13 0.25 -1 -1 32812 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 16.4 MiB 1.93 1180 11979 3854 6305 1820 54.9 MiB 0.09 0.00 7.68398 -158.005 -7.68398 7.68398 0.80 0.000434215 0.000390192 0.0311924 0.0284224 44 3199 17 6.79088e+06 282912 787024. 2723.27 2.74 0.204912 0.178833 27118 194962 -1 2562 17 1199 3542 226538 46861 6.96798 6.96798 -148.562 -6.96798 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0360983 0.0320434 125 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.23 17560 12 0.18 -1 -1 32732 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 16.4 MiB 1.78 851 11432 3292 6222 1918 54.9 MiB 0.15 0.00 6.74005 -141.479 -6.74005 6.74005 0.78 0.000913671 0.000844752 0.0640901 0.0592973 38 2815 34 6.79088e+06 215552 678818. 2348.85 4.08 0.272763 0.239864 25966 169698 -1 1976 15 1023 2779 160650 36721 6.06839 6.06839 -139.29 -6.06839 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0308587 0.0274334 111 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.30 18700 14 0.38 -1 -1 32792 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 16.8 MiB 1.07 1525 8269 1990 5730 549 55.3 MiB 0.14 0.00 8.76146 -179.232 -8.76146 8.76146 0.78 0.00115797 0.00106127 0.0559708 0.0516645 40 3926 31 6.79088e+06 282912 706193. 2443.58 3.46 0.318453 0.280262 26254 175826 -1 3663 19 1623 4761 365140 75075 7.59797 7.59797 -175.41 -7.59797 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0459168 0.0407933 159 230 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.22 17340 11 0.19 -1 -1 32316 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 16.3 MiB 2.02 1083 5656 1222 4312 122 54.7 MiB 0.09 0.00 6.44427 -138.672 -6.44427 6.44427 0.78 0.000895016 0.000827673 0.0335571 0.031088 38 3163 21 6.79088e+06 215552 678818. 2348.85 2.18 0.180773 0.15804 25966 169698 -1 2597 18 1233 3449 240915 48934 5.60634 5.60634 -133.181 -5.60634 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0340285 0.0301094 112 158 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.15 17840 13 0.26 -1 -1 33336 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 16.5 MiB 1.61 1224 12683 3651 6628 2404 55.1 MiB 0.17 0.00 8.19665 -170.984 -8.19665 8.19665 0.78 0.00100264 0.000921455 0.0746888 0.0690142 34 3606 33 6.79088e+06 269440 618332. 2139.56 4.34 0.26912 0.237213 25102 150614 -1 2783 18 1196 3838 266925 55339 7.08552 7.08552 -162.344 -7.08552 0 0 787024. 2723.27 0.27 0.13 0.15 -1 -1 0.27 0.0411903 0.0369013 137 193 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.25 17804 12 0.25 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 16.8 MiB 1.79 1183 14221 4949 6932 2340 55.2 MiB 0.20 0.00 7.19197 -155.782 -7.19197 7.19197 0.78 0.00106739 0.000982048 0.085607 0.0790643 46 3294 19 6.79088e+06 282912 828058. 2865.25 2.65 0.247785 0.21936 27406 200422 -1 2569 18 1326 4271 261575 56224 6.41972 6.41972 -147.141 -6.41972 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0413312 0.0367071 146 209 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.23 17384 13 0.26 -1 -1 32764 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 16.4 MiB 1.31 1273 10103 2600 6194 1309 55.0 MiB 0.14 0.00 8.00961 -170.987 -8.00961 8.00961 0.80 0.000989611 0.00091586 0.0570271 0.0527755 40 2854 20 6.79088e+06 296384 706193. 2443.58 4.41 0.346449 0.302277 26254 175826 -1 2797 15 1174 3111 232362 47684 6.72081 6.72081 -157.501 -6.72081 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.033348 0.0296669 131 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.25 17788 13 0.21 -1 -1 32864 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 16.5 MiB 2.38 1094 12364 4318 5742 2304 55.1 MiB 0.17 0.00 7.6093 -157.428 -7.6093 7.6093 0.82 0.000954265 0.000881488 0.070276 0.0649665 42 3571 49 6.79088e+06 242496 744469. 2576.02 5.48 0.419916 0.366628 26542 182613 -1 2466 16 1275 3331 225822 49614 6.50936 6.50936 -147.774 -6.50936 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0341849 0.0303785 124 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.27 17824 12 0.24 -1 -1 32740 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 16.5 MiB 1.82 1339 6489 1417 4538 534 55.1 MiB 0.11 0.00 7.45027 -163.951 -7.45027 7.45027 0.78 0.00102323 0.000945651 0.0406574 0.0376267 44 3364 18 6.79088e+06 269440 787024. 2723.27 5.22 0.336395 0.292815 27118 194962 -1 2717 20 1156 3817 249781 49754 6.33367 6.33367 -150.396 -6.33367 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0428637 0.0379522 140 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.27 17916 13 0.29 -1 -1 32900 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 16.8 MiB 1.47 1312 5757 1265 4157 335 55.2 MiB 0.10 0.00 7.77691 -170.238 -7.77691 7.77691 0.78 0.00109642 0.00101407 0.0389971 0.0361188 44 3387 19 6.79088e+06 269440 787024. 2723.27 4.25 0.349565 0.303994 27118 194962 -1 2791 15 1245 3581 244115 50196 6.84611 6.84611 -161.067 -6.84611 0 0 997811. 3452.63 0.37 0.10 0.20 -1 -1 0.37 0.0385219 0.0345157 145 212 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.24 17820 14 0.27 -1 -1 33036 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 16.4 MiB 1.33 1196 9783 2600 6598 585 54.9 MiB 0.14 0.00 8.29092 -170.108 -8.29092 8.29092 0.80 0.000948342 0.0008772 0.0546423 0.0505708 36 3354 28 6.79088e+06 269440 648988. 2245.63 2.51 0.224278 0.197278 25390 158009 -1 2802 19 1399 3804 276087 57490 7.17167 7.17167 -161.862 -7.17167 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0380665 0.033748 125 168 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.26 17944 13 0.26 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 16.6 MiB 2.02 1239 12547 3128 7964 1455 55.2 MiB 0.18 0.00 8.02156 -162.008 -8.02156 8.02156 0.78 0.001028 0.000951339 0.0734895 0.0679951 36 3591 27 6.79088e+06 282912 648988. 2245.63 7.50 0.296719 0.261267 25390 158009 -1 3107 20 1785 5158 359317 73582 7.08896 7.08896 -161.04 -7.08896 0 0 828058. 2865.25 0.27 0.13 0.16 -1 -1 0.27 0.0429847 0.0380496 136 197 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.26 17888 13 0.32 -1 -1 32668 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 16.7 MiB 1.72 1309 8319 2069 5720 530 55.1 MiB 0.13 0.00 7.83086 -168.91 -7.83086 7.83086 0.79 0.00106757 0.000987585 0.0537668 0.0497332 44 3344 19 6.79088e+06 282912 787024. 2723.27 4.16 0.351704 0.306834 27118 194962 -1 2743 16 1196 3428 251887 49443 6.83492 6.83492 -158.577 -6.83492 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.037216 0.0332254 144 211 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.29 17884 12 0.29 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 16.7 MiB 1.42 1321 14779 4130 8902 1747 55.1 MiB 0.21 0.00 7.66848 -162.706 -7.66848 7.66848 0.86 0.00106359 0.000982657 0.089093 0.0823237 46 3195 21 6.79088e+06 282912 828058. 2865.25 4.55 0.399688 0.350413 27406 200422 -1 2726 15 1250 3510 236355 48155 6.86299 6.86299 -155.257 -6.86299 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0366532 0.0327488 147 214 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.22 17372 11 0.12 -1 -1 32596 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 16.0 MiB 1.16 752 5224 962 4133 129 54.5 MiB 0.08 0.00 6.41251 -131.25 -6.41251 6.41251 0.78 0.000751261 0.000692482 0.0266408 0.0245763 34 2625 35 6.79088e+06 188608 618332. 2139.56 2.69 0.174496 0.152076 25102 150614 -1 1896 15 933 2253 147769 35005 5.48098 5.48098 -131.524 -5.48098 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0254194 0.0225906 91 122 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.25 17616 13 0.20 -1 -1 32676 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 16.4 MiB 1.64 1180 7221 1648 4796 777 54.9 MiB 0.10 0.00 7.59268 -164.24 -7.59268 7.59268 0.78 0.000915945 0.00084636 0.0396334 0.0366962 36 3211 26 6.79088e+06 269440 648988. 2245.63 4.40 0.236455 0.207364 25390 158009 -1 2638 14 1144 2969 213116 44458 6.74539 6.74539 -157.91 -6.74539 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0297187 0.0264889 118 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.28 18356 14 0.42 -1 -1 32812 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 16.9 MiB 1.09 1584 7108 1588 4936 584 55.5 MiB 0.13 0.00 9.32595 -187.261 -9.32595 9.32595 0.78 0.00120493 0.00111311 0.0502848 0.0465126 46 3849 31 6.79088e+06 323328 828058. 2865.25 4.26 0.318716 0.279668 27406 200422 -1 3095 17 1519 4597 314099 61494 8.0201 8.0201 -170.73 -8.0201 0 0 1.01997e+06 3529.29 0.32 0.12 0.20 -1 -1 0.32 0.0452282 0.0406344 171 244 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.26 17604 13 0.28 -1 -1 32852 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 16.6 MiB 1.44 1314 12733 3340 7297 2096 55.2 MiB 0.17 0.00 7.97246 -177.126 -7.97246 7.97246 0.79 0.000986814 0.000912333 0.0715615 0.0662069 38 3385 26 6.79088e+06 282912 678818. 2348.85 4.01 0.285082 0.251027 25966 169698 -1 2807 15 1312 3531 218408 45844 6.96022 6.96022 -168.922 -6.96022 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.033359 0.0296964 134 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17548 11 0.20 -1 -1 32572 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 16.1 MiB 0.67 915 4304 849 3239 216 54.7 MiB 0.07 0.00 6.78614 -143.669 -6.78614 6.78614 0.73 0.000827548 0.000764361 0.0237028 0.0219683 36 2654 29 6.79088e+06 229024 648988. 2245.63 3.00 0.19846 0.172803 25390 158009 -1 2145 18 1008 2741 195708 40401 6.06839 6.06839 -136.309 -6.06839 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0305515 0.0270631 101 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.28 18576 15 0.54 -1 -1 32820 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 16.9 MiB 1.12 1525 5039 926 3796 317 55.5 MiB 0.10 0.00 9.59451 -195.342 -9.59451 9.59451 0.78 0.00123917 0.0011447 0.0367969 0.0340532 38 4028 23 6.79088e+06 336800 678818. 2348.85 5.83 0.448561 0.390262 25966 169698 -1 3340 17 1730 4867 308181 63984 8.35685 8.35685 -184.172 -8.35685 0 0 902133. 3121.57 0.27 0.12 0.16 -1 -1 0.27 0.0479049 0.0428512 179 257 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.26 17720 13 0.30 -1 -1 32856 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 16.7 MiB 1.14 1281 8502 2158 5508 836 55.1 MiB 0.13 0.00 8.03603 -175.042 -8.03603 8.03603 0.79 0.00106414 0.000984256 0.0541769 0.0502012 36 3659 43 6.79088e+06 269440 648988. 2245.63 2.78 0.251207 0.220738 25390 158009 -1 3090 19 1420 3741 261146 54094 7.22201 7.22201 -170.83 -7.22201 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0424935 0.0376983 139 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.22 17104 11 0.13 -1 -1 32324 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 16.1 MiB 1.15 1102 10183 2765 6008 1410 54.6 MiB 0.12 0.00 6.80233 -145.463 -6.80233 6.80233 0.89 0.000551241 0.000501244 0.0512127 0.0472109 30 2710 17 6.79088e+06 175136 556674. 1926.21 1.47 0.149785 0.132584 24526 138013 -1 2258 15 938 2326 139157 30554 5.65673 5.65673 -139.992 -5.65673 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0267835 0.02381 94 137 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.27 17628 12 0.29 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 16.8 MiB 1.05 1332 7953 2031 5347 575 55.3 MiB 0.12 0.00 7.73069 -165.16 -7.73069 7.73069 0.78 0.00106469 0.000981623 0.0507066 0.0468112 38 3591 21 6.79088e+06 269440 678818. 2348.85 2.83 0.269994 0.236096 25966 169698 -1 2827 18 1341 4507 292238 58584 6.54507 6.54507 -155.173 -6.54507 0 0 902133. 3121.57 0.30 0.11 0.16 -1 -1 0.30 0.041068 0.0372105 146 211 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.22 17636 12 0.17 -1 -1 32632 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 16.4 MiB 1.13 1053 12008 3553 6389 2066 54.8 MiB 0.15 0.00 7.28149 -150.89 -7.28149 7.28149 0.80 0.000868718 0.000801463 0.0621805 0.0574721 46 2565 20 6.79088e+06 242496 828058. 2865.25 4.81 0.320344 0.280067 27406 200422 -1 2042 17 1063 2852 176731 37737 6.20493 6.20493 -139.057 -6.20493 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0324034 0.0288082 113 149 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.23 17544 12 0.18 -1 -1 32624 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 16.0 MiB 0.91 903 6163 1336 4643 184 54.7 MiB 0.09 0.00 7.56546 -146.033 -7.56546 7.56546 0.78 0.000817775 0.000755244 0.0331116 0.0305923 38 2247 14 6.79088e+06 229024 678818. 2348.85 3.94 0.292088 0.253413 25966 169698 -1 1824 14 729 2078 118094 25388 6.54507 6.54507 -136.622 -6.54507 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0263037 0.0234348 106 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.27 18228 12 0.28 -1 -1 32860 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 16.5 MiB 1.97 1197 6039 1341 4100 598 55.1 MiB 0.10 0.00 7.39356 -141.853 -7.39356 7.39356 0.81 0.00100127 0.000926091 0.0362163 0.0335995 36 3368 49 6.79088e+06 350272 648988. 2245.63 8.48 0.390954 0.338222 25390 158009 -1 2733 27 1496 4752 551271 201694 6.59197 6.59197 -137.24 -6.59197 0 0 828058. 2865.25 0.26 0.19 0.15 -1 -1 0.26 0.0525527 0.0461641 140 190 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.27 17572 13 0.33 -1 -1 32944 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 16.9 MiB 1.00 1362 9111 2298 6252 561 55.3 MiB 0.15 0.00 7.91407 -168.647 -7.91407 7.91407 0.90 0.00114586 0.00105854 0.0524876 0.0482808 38 3894 45 6.79088e+06 309856 678818. 2348.85 5.75 0.468146 0.406822 25966 169698 -1 3114 36 2339 6533 573839 161801 7.20738 7.20738 -164.31 -7.20738 0 0 902133. 3121.57 0.27 0.22 0.16 -1 -1 0.27 0.0755048 0.0662013 160 236 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.27 17812 12 0.22 -1 -1 32704 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 16.3 MiB 1.18 1278 7770 1751 5660 359 54.9 MiB 0.15 0.00 7.73336 -164.138 -7.73336 7.73336 0.78 0.000817523 0.000748926 0.047223 0.0435862 44 3450 24 6.79088e+06 269440 787024. 2723.27 4.60 0.339094 0.295978 27118 194962 -1 2722 17 1326 3789 273671 53269 6.53737 6.53737 -153.32 -6.53737 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0381451 0.0339134 140 196 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.23 17372 12 0.14 -1 -1 32580 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55716 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 15.9 MiB 1.80 988 4473 916 3372 185 54.4 MiB 0.07 0.00 7.24997 -147.671 -7.24997 7.24997 0.72 0.000768831 0.000709439 0.0245229 0.0227 36 2589 21 6.79088e+06 202080 648988. 2245.63 3.90 0.183004 0.159546 25390 158009 -1 2160 15 897 2477 169152 36106 5.99697 5.99697 -138.191 -5.99697 0 0 828058. 2865.25 0.28 0.04 0.15 -1 -1 0.28 0.0143037 0.0129497 93 120 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.25 17636 12 0.21 -1 -1 32416 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 16.1 MiB 1.31 1084 12898 3877 6797 2224 54.7 MiB 0.16 0.00 7.21455 -151.198 -7.21455 7.21455 0.79 0.000866613 0.000801071 0.0660277 0.0609771 36 3019 27 6.79088e+06 255968 648988. 2245.63 3.72 0.250804 0.220324 25390 158009 -1 2450 18 1117 3143 217102 44447 6.41628 6.41628 -148.507 -6.41628 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0333225 0.0295188 111 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.26 17944 11 0.18 -1 -1 32924 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 16.5 MiB 1.34 1115 8626 2299 5376 951 55.0 MiB 0.12 0.00 6.84847 -137.093 -6.84847 6.84847 0.78 0.000965871 0.000893199 0.0503512 0.0466144 44 2722 15 6.79088e+06 269440 787024. 2723.27 3.91 0.303964 0.264923 27118 194962 -1 2230 15 894 2899 195610 39265 5.91846 5.91846 -129.703 -5.91846 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0329404 0.0293465 125 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.22 17460 11 0.20 -1 -1 32740 -1 -1 19 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 16.3 MiB 1.16 1077 4642 990 3215 437 54.8 MiB 0.07 0.00 6.39394 -126.807 -6.39394 6.39394 0.79 0.000895408 0.000828123 0.0280848 0.0260892 36 2907 20 6.79088e+06 255968 648988. 2245.63 4.25 0.211579 0.184115 25390 158009 -1 2506 42 1209 3560 623393 302999 5.48104 5.48104 -123.736 -5.48104 0 0 828058. 2865.25 0.26 0.25 0.16 -1 -1 0.26 0.066788 0.0581094 116 171 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.24 17800 13 0.21 -1 -1 32740 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 16.1 MiB 1.61 1115 9196 2684 4764 1748 54.8 MiB 0.11 0.00 7.27805 -147.461 -7.27805 7.27805 0.78 0.000834058 0.000770008 0.0480134 0.0443873 36 2777 20 6.79088e+06 242496 648988. 2245.63 3.74 0.283286 0.246635 25390 158009 -1 2393 21 975 2760 276993 96393 6.5774 6.5774 -142.863 -6.5774 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0360984 0.031908 108 147 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.26 17940 12 0.19 -1 -1 32764 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.3 MiB 2.00 1193 6490 1485 4564 441 54.9 MiB 0.10 0.00 7.26273 -167.563 -7.26273 7.26273 0.78 0.000948876 0.000877703 0.0384852 0.0356408 38 2903 16 6.79088e+06 242496 678818. 2348.85 2.14 0.170604 0.149921 25966 169698 -1 2559 18 1165 3061 185681 39779 6.16912 6.16912 -154.734 -6.16912 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0357735 0.0316605 120 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.25 17544 13 0.28 -1 -1 32812 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 16.4 MiB 1.59 1194 6123 1343 4442 338 55.0 MiB 0.10 0.00 8.79477 -171.911 -8.79477 8.79477 0.78 0.00100959 0.000933947 0.0377319 0.0349687 34 3215 32 6.79088e+06 282912 618332. 2139.56 3.26 0.258809 0.226726 25102 150614 -1 2816 23 1185 3253 326129 102386 7.51535 7.51535 -160.017 -7.51535 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0462805 0.0408075 137 187 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.28 17640 14 0.25 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 16.4 MiB 1.20 1287 8685 2330 5621 734 55.0 MiB 0.13 0.00 8.66267 -183.033 -8.66267 8.66267 0.79 0.00106946 0.000984242 0.0526954 0.0487316 36 3758 44 6.79088e+06 269440 648988. 2245.63 3.90 0.254471 0.223562 25390 158009 -1 3043 29 1419 4016 493922 187097 7.71556 7.71556 -176.238 -7.71556 0 0 828058. 2865.25 0.26 0.20 0.15 -1 -1 0.26 0.0605601 0.0535688 132 196 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.27 18204 14 0.24 -1 -1 32784 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1083 11456 4044 5385 2027 55.0 MiB 0.16 0.00 7.96611 -159.164 -7.96611 7.96611 0.79 0.000961476 0.000888443 0.0669289 0.0617295 38 2997 43 6.79088e+06 229024 678818. 2348.85 4.41 0.291215 0.255458 25966 169698 -1 2603 27 1239 3702 403974 150974 6.58781 6.58781 -145.712 -6.58781 0 0 902133. 3121.57 0.35 0.16 0.17 -1 -1 0.35 0.0503636 0.0442741 122 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.28 17988 13 0.32 -1 -1 32688 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 16.7 MiB 1.62 1338 8024 1861 5707 456 55.1 MiB 0.13 0.00 8.29812 -170.177 -8.29812 8.29812 0.78 0.00105757 0.000977061 0.0495014 0.0458108 46 3069 15 6.79088e+06 296384 828058. 2865.25 2.82 0.252285 0.221338 27406 200422 -1 2645 15 1239 3568 233438 47563 7.42576 7.42576 -159.884 -7.42576 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0362424 0.032368 144 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.24 17400 13 0.18 -1 -1 32344 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 16.1 MiB 1.86 919 12292 3407 6536 2349 54.7 MiB 0.15 0.00 7.20737 -146.133 -7.20737 7.20737 0.78 0.000832144 0.000768083 0.0628628 0.0579876 36 2653 46 6.79088e+06 242496 648988. 2245.63 3.03 0.267945 0.235245 25390 158009 -1 2204 16 999 2529 173589 37222 6.16917 6.16917 -139.987 -6.16917 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0292801 0.0260124 104 146 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.29 17988 13 0.43 -1 -1 32824 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 16.7 MiB 1.71 1350 9234 2593 5787 854 55.2 MiB 0.08 0.00 8.31996 -168.69 -8.31996 8.31996 0.63 0.000472206 0.000433282 0.0271754 0.0249544 38 4110 34 6.79088e+06 296384 678818. 2348.85 4.01 0.219001 0.19108 25966 169698 -1 3008 22 1754 4923 338501 67349 7.59786 7.59786 -163.53 -7.59786 0 0 902133. 3121.57 0.27 0.13 0.16 -1 -1 0.27 0.0484431 0.0428802 145 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.27 17904 14 0.30 -1 -1 32724 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 16.4 MiB 1.60 1251 6312 1329 4019 964 55.0 MiB 0.10 0.00 8.37235 -176.058 -8.37235 8.37235 0.78 0.000993469 0.000913909 0.0392016 0.0362496 38 3322 32 6.79088e+06 242496 678818. 2348.85 2.46 0.208995 0.183226 25966 169698 -1 2696 16 1223 3584 241136 49067 7.13248 7.13248 -167.848 -7.13248 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0355391 0.0316231 128 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.27 17904 13 0.22 -1 -1 32872 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 16.5 MiB 1.67 1125 7914 1884 5216 814 55.0 MiB 0.12 0.00 7.39828 -160.2 -7.39828 7.39828 0.83 0.0009604 0.000888333 0.047186 0.043702 36 3403 34 6.79088e+06 255968 648988. 2245.63 3.19 0.219898 0.193283 25390 158009 -1 2796 17 1255 3416 240021 49376 6.6558 6.6558 -155.662 -6.6558 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0357302 0.0317347 124 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.28 17932 13 0.21 -1 -1 32872 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 16.5 MiB 1.54 1096 8306 2939 4353 1014 55.0 MiB 0.12 0.00 7.45237 -146.107 -7.45237 7.45237 0.78 0.000938781 0.000867508 0.0484678 0.0448449 38 2984 47 6.79088e+06 255968 678818. 2348.85 3.23 0.274845 0.239853 25966 169698 -1 2441 17 1176 3157 208119 44056 6.43207 6.43207 -139.313 -6.43207 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.03501 0.031096 121 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.28 17724 14 0.34 -1 -1 32940 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 16.7 MiB 1.49 1434 9943 2708 5582 1653 55.2 MiB 0.16 0.00 8.52022 -179.043 -8.52022 8.52022 0.78 0.00112523 0.00104196 0.0645341 0.0598396 44 3873 20 6.79088e+06 282912 787024. 2723.27 2.87 0.278832 0.245547 27118 194962 -1 3159 26 1471 4434 488358 181346 7.46497 7.46497 -166.976 -7.46497 0 0 997811. 3452.63 0.31 0.18 0.19 -1 -1 0.31 0.0562429 0.0496338 154 216 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.25 17784 11 0.29 -1 -1 32752 -1 -1 23 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 16.4 MiB 1.89 1077 10149 2679 5779 1691 55.1 MiB 0.14 0.00 7.52622 -140.559 -7.52622 7.52622 0.80 0.000996201 0.000913936 0.0594241 0.0549548 36 3321 35 6.79088e+06 309856 648988. 2245.63 5.85 0.291484 0.255832 25390 158009 -1 2710 17 1377 3839 257487 56039 6.50587 6.50587 -135.711 -6.50587 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.035749 0.0317484 136 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.23 17556 13 0.16 -1 -1 32564 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 16.0 MiB 2.80 972 6054 1229 4689 136 54.6 MiB 0.09 0.00 6.97458 -160.094 -6.97458 6.97458 0.78 0.000796256 0.000726968 0.0327318 0.0302528 36 3060 37 6.79088e+06 188608 648988. 2245.63 11.96 0.335333 0.29118 25390 158009 -1 2432 35 1496 3596 408145 150497 6.11534 6.11534 -155.592 -6.11534 0 0 828058. 2865.25 0.27 0.17 0.16 -1 -1 0.27 0.0510536 0.0446681 98 128 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.29 17876 14 0.23 -1 -1 32796 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 16.5 MiB 1.54 963 3581 624 2890 67 55.0 MiB 0.07 0.00 8.38402 -165.799 -8.38402 8.38402 0.84 0.000955038 0.000882928 0.0233882 0.0216955 44 2556 17 6.79088e+06 229024 787024. 2723.27 4.05 0.282234 0.244723 27118 194962 -1 2060 14 986 2604 164919 36272 7.42577 7.42577 -156.252 -7.42577 0 0 997811. 3452.63 0.32 0.08 0.19 -1 -1 0.32 0.0310104 0.0277007 122 173 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.28 18164 15 0.40 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 16.8 MiB 1.40 1424 5271 949 4056 266 55.5 MiB 0.11 0.00 9.1358 -193.594 -9.1358 9.1358 0.81 0.00123099 0.0011407 0.0392632 0.0364307 46 3599 25 6.79088e+06 309856 828058. 2865.25 4.61 0.392801 0.34319 27406 200422 -1 3082 21 1609 4402 313149 62047 7.55804 7.55804 -173.908 -7.55804 0 0 1.01997e+06 3529.29 0.32 0.13 0.19 -1 -1 0.32 0.056217 0.049789 163 240 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.24 17560 11 0.16 -1 -1 32604 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55924 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 16.1 MiB 1.48 958 10726 3368 5272 2086 54.6 MiB 0.13 0.00 6.79222 -142.45 -6.79222 6.79222 0.78 0.000774682 0.000715018 0.0523639 0.0483516 30 2658 41 6.79088e+06 202080 556674. 1926.21 2.09 0.170678 0.150554 24526 138013 -1 2141 17 898 2397 151531 32382 5.75402 5.75402 -137.04 -5.75402 0 0 706193. 2443.58 0.27 0.07 0.09 -1 -1 0.27 0.0284099 0.0251328 97 126 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.22 17340 12 0.18 -1 -1 32828 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 16.3 MiB 1.44 1114 10400 2653 5866 1881 54.8 MiB 0.14 0.00 6.63358 -148.815 -6.63358 6.63358 0.78 0.000858579 0.000792826 0.0556391 0.0514266 44 3021 49 6.79088e+06 229024 787024. 2723.27 4.25 0.332444 0.289181 27118 194962 -1 2366 16 1031 2871 201052 39859 5.82549 5.82549 -142.258 -5.82549 0 0 997811. 3452.63 0.31 0.08 0.18 -1 -1 0.31 0.0303141 0.026942 112 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.28 17824 12 0.29 -1 -1 32868 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 16.7 MiB 1.12 1409 5123 1016 3643 464 55.1 MiB 0.09 0.00 7.37446 -165.375 -7.37446 7.37446 0.78 0.0010864 0.00100344 0.0352833 0.0326616 38 3485 31 6.79088e+06 255968 678818. 2348.85 2.99 0.277565 0.242307 25966 169698 -1 2894 17 1352 4084 260820 53416 6.54851 6.54851 -153.142 -6.54851 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0411371 0.0365699 143 206 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.25 17784 12 0.24 -1 -1 32860 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 16.5 MiB 1.80 1290 8804 2224 5446 1134 55.0 MiB 0.13 0.00 7.66631 -156.992 -7.66631 7.66631 0.78 0.000978672 0.000903887 0.0521403 0.0482478 38 3888 34 6.79088e+06 242496 678818. 2348.85 4.47 0.221186 0.194475 25966 169698 -1 2960 23 1380 4104 353752 106232 6.58427 6.58427 -151.636 -6.58427 0 0 902133. 3121.57 0.27 0.14 0.16 -1 -1 0.27 0.0447773 0.0394803 130 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.27 18164 14 0.46 -1 -1 32768 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 16.9 MiB 1.78 1339 6323 1159 4879 285 55.4 MiB 0.11 0.00 9.2305 -183.989 -9.2305 9.2305 0.78 0.00118839 0.00109908 0.0446402 0.0413655 38 3629 50 6.79088e+06 296384 678818. 2348.85 3.46 0.341518 0.298872 25966 169698 -1 2982 16 1452 4240 260207 54550 7.89131 7.89131 -171.147 -7.89131 0 0 902133. 3121.57 0.28 0.10 0.16 -1 -1 0.28 0.0424039 0.0378903 167 233 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.26 17796 12 0.20 -1 -1 32632 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.3 MiB 1.46 1023 10231 4165 5804 262 54.8 MiB 0.14 0.00 7.21752 -140.072 -7.21752 7.21752 0.78 0.000911413 0.00084225 0.0572178 0.0529645 38 3000 24 6.79088e+06 255968 678818. 2348.85 4.82 0.315414 0.27527 25966 169698 -1 2318 15 1083 3058 185975 40387 6.16142 6.16142 -133.899 -6.16142 0 0 902133. 3121.57 0.30 0.08 0.16 -1 -1 0.30 0.0307872 0.0273869 121 158 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.24 17552 11 0.18 -1 -1 32616 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 16.1 MiB 1.87 852 9208 3256 4555 1397 54.8 MiB 0.11 0.00 7.04622 -127.422 -7.04622 7.04622 0.78 0.000781494 0.000721322 0.0469853 0.0434635 30 2201 30 6.79088e+06 255968 556674. 1926.21 1.13 0.153612 0.135581 24526 138013 -1 1762 16 906 2341 116512 27555 5.91852 5.91852 -119.41 -5.91852 0 0 706193. 2443.58 0.25 0.07 0.15 -1 -1 0.25 0.0285319 0.0254128 104 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.30 18240 13 0.41 -1 -1 32836 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 17.3 MiB 1.49 1698 8532 2074 5800 658 55.8 MiB 0.15 0.00 7.91451 -163.387 -7.91451 7.91451 0.78 0.00130168 0.00120241 0.0608702 0.0563299 54 4065 18 6.79088e+06 350272 949917. 3286.91 5.97 0.477462 0.417484 28846 232421 -1 3509 19 1733 5490 399894 74707 7.04627 7.04627 -155.686 -7.04627 0 0 1.17392e+06 4061.99 0.35 0.14 0.22 -1 -1 0.35 0.0529446 0.0471493 188 286 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.27 18204 14 0.25 -1 -1 33172 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 16.3 MiB 1.58 1264 9385 2554 5852 979 54.9 MiB 0.07 0.00 8.41881 -168.357 -8.41881 8.41881 0.77 0.000433509 0.000396418 0.0252325 0.023072 30 3517 49 6.79088e+06 296384 556674. 1926.21 2.38 0.196849 0.172127 24526 138013 -1 2792 18 1308 3547 217927 45744 7.26121 7.26121 -163.217 -7.26121 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.0383003 0.0339588 130 186 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17608 12 0.17 -1 -1 32440 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 16.1 MiB 1.49 1075 7736 1882 5428 426 54.7 MiB 0.10 0.00 7.20863 -155.968 -7.20863 7.20863 0.78 0.000829095 0.000765 0.0393963 0.0363784 38 2582 27 6.79088e+06 242496 678818. 2348.85 2.75 0.213097 0.186169 25966 169698 -1 2195 18 999 2535 168706 35330 6.21602 6.21602 -149.287 -6.21602 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0317303 0.0281334 109 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.26 17664 13 0.27 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 16.5 MiB 1.37 1233 12542 3940 6787 1815 55.0 MiB 0.17 0.00 8.09146 -166.475 -8.09146 8.09146 0.78 0.000966612 0.000893338 0.0715264 0.0661501 36 3146 30 6.79088e+06 242496 648988. 2245.63 4.36 0.283741 0.249487 25390 158009 -1 2654 17 1158 3172 204764 44621 6.65929 6.65929 -154.125 -6.65929 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0354915 0.0315274 128 169 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.28 18044 13 0.31 -1 -1 32776 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 16.8 MiB 1.53 1392 4695 845 3563 287 55.4 MiB 0.09 0.00 7.47587 -155.329 -7.47587 7.47587 0.78 0.00113539 0.00105006 0.0325912 0.0302655 40 3629 19 6.79088e+06 323328 706193. 2443.58 2.88 0.243337 0.212877 26254 175826 -1 3296 16 1607 4548 340592 70114 6.54507 6.54507 -152.358 -6.54507 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0428127 0.0383221 157 230 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.25 17772 11 0.24 -1 -1 32684 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 16.3 MiB 1.54 1218 4659 929 3342 388 55.0 MiB 0.08 0.00 7.06923 -144.171 -7.06923 7.06923 0.77 0.00102594 0.000950054 0.0299269 0.0277524 34 3429 40 6.79088e+06 296384 618332. 2139.56 2.79 0.21366 0.186632 25102 150614 -1 2895 34 1288 3966 485387 195891 6.16912 6.16912 -141.172 -6.16912 0 0 787024. 2723.27 0.28 0.20 0.15 -1 -1 0.28 0.0652099 0.0571879 141 199 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.27 18188 15 0.34 -1 -1 32736 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 16.8 MiB 1.37 1290 8402 2178 5761 463 55.2 MiB 0.13 0.00 8.74612 -186.954 -8.74612 8.74612 0.78 0.00106758 0.000986272 0.0519736 0.0480184 38 3570 36 6.79088e+06 296384 678818. 2348.85 21.63 0.497789 0.433761 25966 169698 -1 2806 19 1363 4173 254014 53917 7.50422 7.50422 -172.162 -7.50422 0 0 902133. 3121.57 0.31 0.12 0.17 -1 -1 0.31 0.0471647 0.0423372 147 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.27 18000 13 0.31 -1 -1 32688 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.81 1316 8641 2148 5636 857 55.3 MiB 0.13 0.00 8.07216 -175.63 -8.07216 8.07216 0.79 0.00104037 0.000960754 0.0531553 0.0491738 36 3600 39 6.79088e+06 282912 648988. 2245.63 6.56 0.4177 0.36411 25390 158009 -1 2956 17 1458 4125 272551 57655 7.04981 7.04981 -167.321 -7.04981 0 0 828058. 2865.25 0.26 0.10 0.15 -1 -1 0.26 0.038717 0.034442 143 191 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17512 12 0.20 -1 -1 32692 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 16.4 MiB 1.62 864 9543 2234 6923 386 54.8 MiB 0.13 0.00 7.58072 -150.751 -7.58072 7.58072 0.78 0.00085046 0.000786059 0.0514618 0.0476037 38 2803 37 6.79088e+06 242496 678818. 2348.85 3.59 0.249048 0.218589 25966 169698 -1 2097 16 1017 2511 169327 35969 6.83831 6.83831 -144.976 -6.83831 0 0 902133. 3121.57 0.29 0.08 0.16 -1 -1 0.29 0.0305192 0.0272038 111 154 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.24 17944 11 0.16 -1 -1 32900 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55876 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 16.0 MiB 1.50 1018 5722 1217 4259 246 54.6 MiB 0.08 0.00 6.71746 -144.764 -6.71746 6.71746 0.78 0.000803135 0.000740602 0.0308286 0.0284898 44 2467 16 6.79088e+06 188608 787024. 2723.27 3.72 0.241342 0.209559 27118 194962 -1 2039 14 912 2314 159381 32640 5.86813 5.86813 -137.908 -5.86813 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0260327 0.0231858 98 141 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.25 17716 13 0.31 -1 -1 32732 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 16.8 MiB 1.07 1236 5940 1259 4215 466 55.2 MiB 0.10 0.00 8.31912 -162.691 -8.31912 8.31912 0.84 0.00103473 0.000954242 0.0384405 0.0355593 38 3244 23 6.79088e+06 282912 678818. 2348.85 2.76 0.256648 0.224266 25966 169698 -1 2838 17 1329 3742 255221 51210 7.6875 7.6875 -158.721 -7.6875 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0387235 0.0344109 143 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.22 17688 10 0.16 -1 -1 32652 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55724 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 15.9 MiB 1.69 951 4560 1025 3135 400 54.4 MiB 0.06 0.00 6.21922 -128.027 -6.21922 6.21922 0.78 0.000791037 0.000723436 0.0245086 0.0226766 30 2562 41 6.79088e+06 229024 556674. 1926.21 1.47 0.141709 0.123679 24526 138013 -1 2086 17 942 2423 142861 31196 5.53902 5.53902 -127.63 -5.53902 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0289114 0.0257265 101 134 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.23 17572 14 0.19 -1 -1 32640 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 16.4 MiB 2.44 984 4532 878 3142 512 54.8 MiB 0.07 0.00 7.85466 -160.915 -7.85466 7.85466 0.78 0.000847046 0.000780901 0.0248637 0.0229715 36 2860 24 6.79088e+06 242496 648988. 2245.63 4.23 0.275618 0.238847 25390 158009 -1 2383 16 1107 2918 219609 46595 6.87418 6.87418 -156.765 -6.87418 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0297026 0.0263948 110 145 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.27 18052 13 0.31 -1 -1 32764 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 16.6 MiB 2.33 1210 8183 2048 5045 1090 55.2 MiB 0.12 0.00 7.80505 -164.773 -7.80505 7.80505 0.79 0.000955485 0.000883715 0.0475545 0.0440271 36 3527 45 6.79088e+06 269440 648988. 2245.63 2.69 0.245058 0.214323 25390 158009 -1 2771 14 1240 3186 227205 47730 6.72425 6.72425 -159.222 -6.72425 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0308111 0.0274762 125 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.23 17572 12 0.16 -1 -1 32760 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 16.0 MiB 3.23 940 12120 3498 6380 2242 54.5 MiB 0.14 0.00 6.85518 -144.407 -6.85518 6.85518 0.78 0.000784626 0.000723808 0.0587335 0.0542126 38 2511 37 6.79088e+06 229024 678818. 2348.85 11.81 0.359206 0.313166 25966 169698 -1 2116 14 973 2469 159079 33999 5.99343 5.99343 -139.266 -5.99343 0 0 902133. 3121.57 0.24 0.04 0.11 -1 -1 0.24 0.0149056 0.0135946 99 134 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.26 17608 12 0.19 -1 -1 32992 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 16.5 MiB 1.83 1190 9694 2639 6567 488 55.1 MiB 0.14 0.00 7.04874 -155.773 -7.04874 7.04874 0.78 0.000991052 0.000914338 0.0582209 0.0537546 38 3107 40 6.79088e+06 242496 678818. 2348.85 15.96 0.484191 0.420075 25966 169698 -1 2378 17 1167 3257 189847 40795 6.20488 6.20488 -148.757 -6.20488 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0377373 0.0335457 130 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.28 18068 13 0.28 -1 -1 32704 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 16.4 MiB 1.05 1303 8543 2004 5667 872 55.0 MiB 0.13 0.00 7.83951 -165.716 -7.83951 7.83951 0.78 0.00102764 0.000950001 0.0526988 0.0486834 44 3079 26 6.79088e+06 269440 787024. 2723.27 4.63 0.347514 0.303363 27118 194962 -1 2662 14 1284 3529 223467 46322 6.69391 6.69391 -154.311 -6.69391 0 0 997811. 3452.63 0.32 0.09 0.19 -1 -1 0.32 0.0345332 0.0309297 143 191 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.11 17556 11 0.17 -1 -1 32676 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 16.1 MiB 1.74 1116 6616 1429 3881 1306 54.7 MiB 0.09 0.00 6.2158 -147.345 -6.2158 6.2158 0.76 0.000825634 0.00076317 0.0349854 0.0323505 36 3228 27 6.79088e+06 215552 648988. 2245.63 3.59 0.205726 0.179368 25390 158009 -1 2578 15 1127 2883 205821 43128 5.35995 5.35995 -141.451 -5.35995 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0278486 0.0248071 106 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.12 17504 13 0.19 -1 -1 32636 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 16.3 MiB 2.30 994 9543 2876 4545 2122 54.8 MiB 0.13 0.00 7.66009 -161.63 -7.66009 7.66009 0.78 0.000922909 0.000853236 0.0559103 0.0516635 38 3005 31 6.79088e+06 202080 678818. 2348.85 3.75 0.258229 0.226199 25966 169698 -1 2266 18 1119 2990 178065 38884 6.67042 6.67042 -149.653 -6.67042 0 0 902133. 3121.57 0.30 0.12 0.17 -1 -1 0.30 0.0310566 0.0277092 113 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.24 17608 13 0.28 -1 -1 32776 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 16.4 MiB 1.11 1317 8183 2040 5445 698 55.0 MiB 0.13 0.00 7.48608 -168.657 -7.48608 7.48608 0.78 0.0010129 0.000935789 0.0505127 0.0467367 36 3537 24 6.79088e+06 255968 648988. 2245.63 1.87 0.15904 0.140748 25390 158009 -1 3017 16 1381 3683 253385 53888 6.57319 6.57319 -161.391 -6.57319 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0361934 0.0322638 136 191 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.26 17612 11 0.19 -1 -1 32608 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 16.4 MiB 1.98 932 11088 4572 6163 353 54.8 MiB 0.14 0.00 6.40374 -127.638 -6.40374 6.40374 0.79 0.000880304 0.000813218 0.0602854 0.0557231 44 2714 22 6.79088e+06 255968 787024. 2723.27 4.34 0.322759 0.280944 27118 194962 -1 1998 24 1023 2968 258341 85276 5.38344 5.38344 -118.912 -5.38344 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0416075 0.0365176 116 158 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.29 18332 14 0.30 -1 -1 33248 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1275 12567 3064 6849 2654 55.3 MiB 0.18 0.00 8.90517 -187.129 -8.90517 8.90517 0.87 0.00113572 0.00104942 0.0780626 0.0723738 38 3509 26 6.79088e+06 309856 678818. 2348.85 2.63 0.316481 0.278882 25966 169698 -1 2732 15 1365 3515 227280 47992 8.06351 8.06351 -177.215 -8.06351 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0390245 0.0348911 159 224 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.22 17300 12 0.15 -1 -1 32564 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 16.1 MiB 2.21 1076 14144 4263 7957 1924 54.6 MiB 0.16 0.00 6.67019 -155.032 -6.67019 6.67019 0.89 0.000787139 0.000726241 0.065177 0.060305 38 2703 34 6.79088e+06 255968 678818. 2348.85 3.14 0.241623 0.212396 25966 169698 -1 2286 15 994 2350 155213 32345 5.86469 5.86469 -142.962 -5.86469 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0269219 0.0239971 106 131 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.28 18104 13 0.28 -1 -1 32836 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 16.6 MiB 1.36 1249 10698 2850 6495 1353 55.1 MiB 0.16 0.00 8.17702 -169.59 -8.17702 8.17702 0.79 0.00100381 0.000927456 0.0632951 0.0585637 38 3542 32 6.79088e+06 269440 678818. 2348.85 3.35 0.295375 0.259801 25966 169698 -1 2866 18 1322 3760 246091 51279 7.25008 7.25008 -163.926 -7.25008 0 0 902133. 3121.57 0.28 0.11 0.19 -1 -1 0.28 0.0395443 0.0354536 136 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.17 17780 13 0.18 -1 -1 32500 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 16.2 MiB 1.07 988 12528 4457 5893 2178 54.8 MiB 0.15 0.00 7.60722 -166.135 -7.60722 7.60722 0.79 0.000834443 0.000769347 0.0609137 0.0562512 36 2877 24 6.79088e+06 269440 648988. 2245.63 1.84 0.199697 0.176249 25390 158009 -1 2421 18 1114 2893 209080 44334 6.33367 6.33367 -155.37 -6.33367 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0319966 0.0283831 107 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.27 17724 12 0.21 -1 -1 32764 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 16.4 MiB 1.42 1129 6563 1390 4948 225 55.0 MiB 0.10 0.00 7.37103 -160.155 -7.37103 7.37103 0.78 0.00097701 0.000902802 0.0395002 0.036549 30 3299 39 6.79088e+06 255968 556674. 1926.21 2.70 0.191095 0.167634 24526 138013 -1 2630 16 1200 3562 219576 47212 6.37287 6.37287 -151.405 -6.37287 0 0 706193. 2443.58 0.26 0.09 0.13 -1 -1 0.26 0.0347927 0.0308843 128 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.29 18560 15 0.47 -1 -1 33312 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 17.0 MiB 0.98 1461 7019 1723 4462 834 55.6 MiB 0.13 0.00 9.4802 -194.196 -9.4802 9.4802 0.78 0.00125763 0.00116072 0.0513526 0.0475158 40 3950 24 6.79088e+06 336800 706193. 2443.58 3.38 0.317481 0.278583 26254 175826 -1 3698 21 1825 5435 427527 86387 8.23914 8.23914 -185.372 -8.23914 0 0 926341. 3205.33 0.28 0.15 0.17 -1 -1 0.28 0.0557085 0.0494893 183 256 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.09 17196 10 0.10 -1 -1 32292 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55460 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 15.6 MiB 1.56 790 7049 2015 4252 782 54.2 MiB 0.08 0.00 4.74332 -119.113 -4.74332 4.74332 0.79 0.000612019 0.000564701 0.0302389 0.027951 30 1998 32 6.79088e+06 161664 556674. 1926.21 1.44 0.116437 0.102015 24526 138013 -1 1712 13 682 1504 103228 21764 4.33162 4.33162 -116.881 -4.33162 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0185464 0.0164523 66 84 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.24 17540 13 0.18 -1 -1 32616 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 16.1 MiB 1.59 974 10050 2926 5436 1688 54.7 MiB 0.12 0.00 7.74787 -157.983 -7.74787 7.74787 0.78 0.000818885 0.000756901 0.0520761 0.0481323 36 2710 16 6.79088e+06 229024 648988. 2245.63 3.57 0.215222 0.189336 25390 158009 -1 2255 20 1072 2695 188949 39981 6.7811 6.7811 -154.238 -6.7811 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0338317 0.0299488 103 140 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.24 17336 12 0.20 -1 -1 32552 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 16.3 MiB 1.87 1289 8448 2191 5318 939 55.1 MiB 0.11 0.00 7.18863 -160.485 -7.18863 7.18863 0.78 0.000931881 0.000861097 0.0425352 0.0392124 40 2814 20 6.79088e+06 242496 706193. 2443.58 4.51 0.295389 0.257176 26254 175826 -1 2662 18 1163 2869 231749 46398 6.07953 6.07953 -151.667 -6.07953 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0355489 0.0314936 117 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.21 17412 9 0.13 -1 -1 32388 -1 -1 18 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55620 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 15.9 MiB 0.81 752 9555 2712 5903 940 54.3 MiB 0.10 0.00 5.16629 -99.605 -5.16629 5.16629 0.79 0.000666026 0.000615292 0.0428769 0.0396451 28 2307 37 6.79088e+06 242496 531479. 1839.03 7.93 0.223502 0.194281 23950 126010 -1 2004 25 1138 3274 306738 76425 4.52189 4.52189 -102.526 -4.52189 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0324394 0.0283281 86 110 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.27 17796 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 16.5 MiB 1.44 1312 13291 3621 7142 2528 55.2 MiB 0.20 0.00 7.35568 -164.212 -7.35568 7.35568 0.78 0.001049 0.000966817 0.0793164 0.0732425 38 3599 20 6.79088e+06 282912 678818. 2348.85 4.20 0.29553 0.260399 25966 169698 -1 3049 16 1469 4123 269087 55658 6.67037 6.67037 -158.269 -6.67037 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0375675 0.0334351 143 206 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.28 18260 13 0.30 -1 -1 32820 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 16.8 MiB 1.77 1311 13291 3763 7122 2406 55.2 MiB 0.19 0.00 8.3208 -173.057 -8.3208 8.3208 0.66 0.00104619 0.000966446 0.0795135 0.0735636 36 4263 48 6.79088e+06 296384 648988. 2245.63 4.74 0.380766 0.33318 25390 158009 -1 3126 20 1397 3984 284820 59897 7.3039 7.3039 -167.258 -7.3039 0 0 828058. 2865.25 0.26 0.14 0.15 -1 -1 0.26 0.0473773 0.0421856 147 199 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17868 1 0.03 -1 -1 30376 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 16.5 MiB 2.71 1137 15768 5063 8031 2674 55.1 MiB 0.24 0.00 5.46262 -163.811 -5.46262 5.46262 0.82 0.000767918 0.000705934 0.0627088 0.0580145 34 2873 22 6.87369e+06 363320 618332. 2139.56 1.80 0.21332 0.187424 25762 151098 -1 2319 19 1603 2512 213614 47266 4.4033 4.4033 -151.648 -4.4033 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0285017 0.024966 142 50 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.11 17828 1 0.03 -1 -1 30408 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 16.7 MiB 2.19 995 9347 2406 6094 847 55.3 MiB 0.16 0.00 4.40625 -134.148 -4.40625 4.40625 0.79 0.000775727 0.000717832 0.0407528 0.0377409 34 2606 27 6.87369e+06 335372 618332. 2139.56 1.84 0.197549 0.172276 25762 151098 -1 2164 22 1821 2787 238667 52216 4.07426 4.07426 -140.439 -4.07426 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0322649 0.0282244 138 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30348 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.6 MiB 2.27 954 15337 4637 8345 2355 55.0 MiB 0.21 0.00 4.42735 -120.659 -4.42735 4.42735 0.88 0.000683031 0.000632001 0.0590153 0.0546077 34 2346 24 6.87369e+06 293451 618332. 2139.56 1.55 0.194645 0.170681 25762 151098 -1 1976 19 1197 1599 145457 32350 3.67436 3.67436 -120.995 -3.67436 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.025597 0.0223677 124 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.18 17868 1 0.03 -1 -1 30380 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 16.6 MiB 0.87 990 16170 4805 9691 1674 55.0 MiB 0.26 0.00 4.56722 -126.881 -4.56722 4.56722 0.78 0.00068653 0.000634731 0.0582738 0.0537338 34 2382 23 6.87369e+06 405241 618332. 2139.56 1.75 0.18721 0.164723 25762 151098 -1 2037 21 1538 2789 253309 52551 3.6791 3.6791 -122.023 -3.6791 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0277615 0.0242387 124 31 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17612 1 0.03 -1 -1 30272 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 16.7 MiB 1.11 1020 12127 3332 7989 806 55.2 MiB 0.20 0.00 4.58138 -135.491 -4.58138 4.58138 0.79 0.000574129 0.000521137 0.0421178 0.0386295 26 3185 45 6.87369e+06 377294 503264. 1741.40 4.57 0.251861 0.219415 24322 120374 -1 2670 26 2057 3977 449702 93745 4.3809 4.3809 -147.996 -4.3809 0 0 618332. 2139.56 0.21 0.14 0.12 -1 -1 0.21 0.0353469 0.0307839 131 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.20 17744 1 0.03 -1 -1 30316 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 16.7 MiB 1.25 1076 15643 4151 9274 2218 55.2 MiB 0.21 0.00 3.36233 -119.977 -3.36233 3.36233 0.78 0.000777181 0.00071902 0.0596797 0.055232 28 2626 20 6.87369e+06 419215 531479. 1839.03 1.02 0.149662 0.133019 24610 126494 -1 2359 20 1391 2179 196134 41848 3.24391 3.24391 -127.678 -3.24391 0 0 648988. 2245.63 0.28 0.09 0.15 -1 -1 0.28 0.0285879 0.0253797 136 58 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17284 1 0.03 -1 -1 30752 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 16.4 MiB 1.89 768 11200 3422 6221 1557 54.8 MiB 0.13 0.00 3.88482 -108.503 -3.88482 3.88482 0.79 0.000596963 0.000552567 0.0422345 0.0391316 34 1744 22 6.87369e+06 265503 618332. 2139.56 1.51 0.161114 0.140322 25762 151098 -1 1471 15 927 1480 121443 26999 3.06926 3.06926 -106.276 -3.06926 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0189396 0.0165978 97 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17252 1 0.03 -1 -1 30064 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.2 MiB 0.77 962 13487 3595 7903 1989 54.8 MiB 0.16 0.00 3.53179 -106.578 -3.53179 3.53179 0.78 0.000651758 0.000603556 0.0426753 0.0394415 34 2238 23 6.87369e+06 447163 618332. 2139.56 1.50 0.171006 0.149407 25762 151098 -1 1926 17 1001 1664 141448 30123 2.72166 2.72166 -100.006 -2.72166 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0220708 0.0192938 119 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17488 1 0.03 -1 -1 30120 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 16.4 MiB 2.05 925 12636 4369 6197 2070 54.9 MiB 0.17 0.00 3.30197 -112.873 -3.30197 3.30197 0.78 0.000690441 0.000638197 0.0531638 0.0491902 34 2421 20 6.87369e+06 237555 618332. 2139.56 1.56 0.156038 0.137315 25762 151098 -1 1976 19 1199 1755 174504 37502 3.08261 3.08261 -118.233 -3.08261 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0256752 0.0224223 113 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.17 17224 1 0.03 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 16.3 MiB 3.29 866 10916 3152 5921 1843 54.9 MiB 0.16 0.00 4.09393 -136.454 -4.09393 4.09393 0.79 0.000676425 0.000625102 0.045244 0.0418558 30 2126 27 6.87369e+06 223581 556674. 1926.21 2.65 0.209117 0.182095 25186 138497 -1 1767 19 969 1666 137788 28235 3.09176 3.09176 -120.49 -3.09176 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0252019 0.0220232 107 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.19 17516 1 0.03 -1 -1 30400 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 16.2 MiB 2.90 765 11532 2973 7641 918 54.7 MiB 0.08 0.00 4.09699 -119.415 -4.09699 4.09699 0.80 0.000282868 0.000258106 0.0213229 0.0194867 34 1834 23 6.87369e+06 223581 618332. 2139.56 1.06 0.0823716 0.0711887 25762 151098 -1 1573 22 1136 1776 156646 34521 2.98846 2.98846 -106.512 -2.98846 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0276709 0.0240799 98 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17564 1 0.03 -1 -1 30084 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.3 MiB 2.09 706 8306 1954 5512 840 54.8 MiB 0.11 0.00 3.6525 -111.833 -3.6525 3.6525 0.80 0.000642708 0.000594796 0.0328318 0.0303972 34 2284 21 6.87369e+06 237555 618332. 2139.56 1.57 0.132715 0.115791 25762 151098 -1 1725 20 1163 1610 134407 31848 3.07561 3.07561 -112.864 -3.07561 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0246962 0.0215187 107 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.18 17476 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 16.5 MiB 3.41 1028 16599 6315 8361 1923 55.0 MiB 0.26 0.01 4.13563 -133.6 -4.13563 4.13563 0.78 0.000758636 0.000701435 0.0678372 0.0627482 34 3060 24 6.87369e+06 321398 618332. 2139.56 1.95 0.218902 0.192511 25762 151098 -1 2380 20 1923 2900 301371 62480 3.25911 3.25911 -127.17 -3.25911 0 0 787024. 2723.27 0.25 0.10 0.16 -1 -1 0.25 0.0292848 0.025642 142 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30276 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 16.6 MiB 2.04 989 10031 2534 6882 615 55.1 MiB 0.16 0.00 4.81484 -142.23 -4.81484 4.81484 0.81 0.000778841 0.000720561 0.0382022 0.0353488 32 2626 26 6.87369e+06 433189 586450. 2029.24 1.14 0.126274 0.111309 25474 144626 -1 2196 18 1485 2341 226192 48136 4.14106 4.14106 -139.588 -4.14106 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0277552 0.024361 133 61 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.18 17580 1 0.03 -1 -1 30320 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55920 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 16.2 MiB 1.41 614 5068 1019 3719 330 54.6 MiB 0.06 0.00 3.26207 -95.0897 -3.26207 3.26207 0.78 0.000587511 0.000543671 0.0153844 0.0142245 26 1942 26 6.87369e+06 265503 503264. 1741.40 0.91 0.089792 0.0779165 24322 120374 -1 1748 20 1067 1620 151018 35309 3.07461 3.07461 -101.519 -3.07461 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0227223 0.0197378 94 27 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 16.6 MiB 1.72 1007 16078 5563 8042 2473 55.1 MiB 0.24 0.00 3.7063 -122.467 -3.7063 3.7063 0.78 0.000783154 0.000724375 0.0671341 0.0621061 34 2693 19 6.87369e+06 335372 618332. 2139.56 1.68 0.217391 0.191101 25762 151098 -1 2061 21 1607 2834 259059 54890 2.98231 2.98231 -118.066 -2.98231 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0314796 0.0274695 135 58 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.18 17840 1 0.04 -1 -1 30056 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 16.6 MiB 3.40 1032 15523 6549 8204 770 55.1 MiB 0.20 0.00 4.15353 -134.149 -4.15353 4.15353 0.79 0.000750909 0.000693614 0.0647755 0.0598637 34 2809 25 6.87369e+06 293451 618332. 2139.56 2.03 0.215054 0.188752 25762 151098 -1 2093 20 1610 2286 208765 46779 3.14081 3.14081 -120.34 -3.14081 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0292143 0.0255872 140 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30448 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 16.3 MiB 2.14 847 14168 4025 7985 2158 55.0 MiB 0.17 0.00 3.09156 -110.795 -3.09156 3.09156 0.79 0.000702826 0.000649593 0.0505301 0.0466702 34 2063 23 6.87369e+06 391268 618332. 2139.56 1.57 0.189998 0.166117 25762 151098 -1 1721 25 1276 1992 190021 41985 2.19587 2.19587 -101.842 -2.19587 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0321912 0.027928 109 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.18 17524 1 0.02 -1 -1 30108 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 16.0 MiB 0.51 656 11276 3436 6760 1080 54.6 MiB 0.11 0.00 2.61023 -88.8242 -2.61023 2.61023 0.80 0.000540265 0.000499792 0.0397729 0.0368029 32 1587 22 6.87369e+06 195634 586450. 2029.24 0.95 0.106024 0.0934682 25474 144626 -1 1372 20 681 972 99269 20789 2.09232 2.09232 -88.4849 -2.09232 0 0 744469. 2576.02 0.24 0.05 0.17 -1 -1 0.24 0.0203694 0.0176325 71 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.14 17804 1 0.03 -1 -1 30308 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 16.3 MiB 2.59 778 9338 2420 6492 426 54.9 MiB 0.09 0.00 4.95513 -145.252 -4.95513 4.95513 0.80 0.000298987 0.000273939 0.0180699 0.0165742 34 2119 18 6.87369e+06 265503 618332. 2139.56 1.51 0.144331 0.124621 25762 151098 -1 1752 21 1302 1891 154901 35940 3.6071 3.6071 -132.304 -3.6071 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0269769 0.0235432 116 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.19 17612 1 0.03 -1 -1 30452 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 16.6 MiB 0.81 985 11499 2787 8050 662 55.2 MiB 0.17 0.00 4.26399 -136.517 -4.26399 4.26399 0.85 0.00075749 0.000700542 0.0408511 0.037795 32 2630 49 6.87369e+06 489084 586450. 2029.24 1.22 0.1615 0.141685 25474 144626 -1 2128 21 1516 2241 241869 50347 3.6901 3.6901 -132.893 -3.6901 0 0 744469. 2576.02 0.24 0.09 0.14 -1 -1 0.24 0.0293998 0.0256974 137 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.20 17520 1 0.03 -1 -1 30276 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 16.6 MiB 1.83 995 6701 1305 5169 227 55.2 MiB 0.13 0.00 4.31715 -129.69 -4.31715 4.31715 0.84 0.000789784 0.000730498 0.0282742 0.0261122 34 3078 23 6.87369e+06 307425 618332. 2139.56 2.19 0.184764 0.160528 25762 151098 -1 2333 21 1728 2776 298422 61705 3.97706 3.97706 -134.601 -3.97706 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0321867 0.0281944 142 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.17 17604 1 0.02 -1 -1 30552 -1 -1 17 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55696 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 15.8 MiB 1.47 371 10977 3839 5013 2125 54.4 MiB 0.10 0.00 2.58413 -70.3474 -2.58413 2.58413 0.82 0.000462359 0.000426535 0.0324555 0.0298698 28 1279 23 6.87369e+06 237555 531479. 1839.03 0.92 0.0851969 0.0748117 24610 126494 -1 1094 21 747 1060 104450 25499 2.26442 2.26442 -77.8295 -2.26442 0 0 648988. 2245.63 0.22 0.06 0.12 -1 -1 0.22 0.0185989 0.0160996 67 30 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.19 17336 1 0.04 -1 -1 30484 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.3 MiB 0.90 952 5847 1159 4467 221 54.9 MiB 0.10 0.00 4.63338 -129.909 -4.63338 4.63338 0.78 0.000670407 0.000620511 0.0229472 0.0212656 30 2274 21 6.87369e+06 321398 556674. 1926.21 1.05 0.102261 0.0892841 25186 138497 -1 1955 19 1098 1973 177517 35865 3.4535 3.4535 -121.669 -3.4535 0 0 706193. 2443.58 0.27 0.08 0.15 -1 -1 0.27 0.0294074 0.0260016 119 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 16836 1 0.02 -1 -1 30036 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55700 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 15.9 MiB 0.38 704 9676 3283 5033 1360 54.4 MiB 0.08 0.00 2.58823 -84.5042 -2.58823 2.58823 0.80 0.000459188 0.0004229 0.0289562 0.0266788 28 1434 16 6.87369e+06 167686 531479. 1839.03 0.89 0.0795192 0.0699035 24610 126494 -1 1321 16 534 624 54657 12809 2.15017 2.15017 -85.8056 -2.15017 0 0 648988. 2245.63 0.21 0.04 0.11 -1 -1 0.21 0.0149017 0.0130111 65 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.19 17488 1 0.03 -1 -1 30012 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 16.4 MiB 0.73 922 10744 2499 7805 440 55.1 MiB 0.15 0.00 4.70738 -131.097 -4.70738 4.70738 0.76 0.000691014 0.000640249 0.037553 0.0347555 26 2445 42 6.87369e+06 419215 503264. 1741.40 1.60 0.141436 0.124018 24322 120374 -1 2140 17 1076 1699 164156 34320 3.7561 3.7561 -124.703 -3.7561 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0234874 0.0205663 120 24 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.17 17376 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.7 MiB 0.76 1018 15215 4457 9037 1721 55.1 MiB 0.20 0.00 3.58631 -115.037 -3.58631 3.58631 0.79 0.000690796 0.000639117 0.0509444 0.0471019 28 2343 22 6.87369e+06 433189 531479. 1839.03 1.04 0.133992 0.118648 24610 126494 -1 2056 19 1145 2028 162590 34432 2.72986 2.72986 -109.933 -2.72986 0 0 648988. 2245.63 0.21 0.07 0.13 -1 -1 0.21 0.0257136 0.0224899 130 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17872 1 0.03 -1 -1 30420 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 16.7 MiB 1.53 1070 17066 5177 9769 2120 55.2 MiB 0.24 0.00 4.79173 -136.462 -4.79173 4.79173 0.78 0.000735867 0.000679993 0.0633213 0.0585623 30 2556 22 6.87369e+06 391268 556674. 1926.21 1.03 0.151416 0.134406 25186 138497 -1 2022 19 1093 2038 138250 30522 3.58686 3.58686 -127.237 -3.58686 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0270921 0.0237016 131 50 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30032 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 16.4 MiB 0.79 703 9368 2220 5797 1351 54.9 MiB 0.13 0.00 3.24007 -107.338 -3.24007 3.24007 0.79 0.000657193 0.000607827 0.0377599 0.0349578 34 1971 21 6.87369e+06 223581 618332. 2139.56 1.49 0.164951 0.143728 25762 151098 -1 1583 19 955 1580 129919 28891 2.83326 2.83326 -105.785 -2.83326 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0241754 0.0210964 99 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17204 1 0.03 -1 -1 30172 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 16.2 MiB 1.02 624 12763 3540 6427 2796 54.8 MiB 0.14 0.00 3.24697 -98.9537 -3.24697 3.24697 0.79 0.000618006 0.000570463 0.0423381 0.0391484 34 1613 28 6.87369e+06 363320 618332. 2139.56 1.55 0.167795 0.146251 25762 151098 -1 1271 17 804 1171 89871 21811 2.67371 2.67371 -91.7866 -2.67371 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.020939 0.018279 97 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30200 -1 -1 18 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55952 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 16.1 MiB 0.79 763 12694 4114 7113 1467 54.6 MiB 0.15 0.00 3.5993 -104.629 -3.5993 3.5993 0.78 0.000605015 0.000560199 0.0480921 0.044544 32 2164 20 6.87369e+06 251529 586450. 2029.24 1.00 0.118635 0.104955 25474 144626 -1 1839 20 1091 1916 194276 41596 2.98226 2.98226 -107.915 -2.98226 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.023245 0.0201966 95 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.18 17112 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56040 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.64 834 13031 3636 7853 1542 54.7 MiB 0.15 0.00 3.99153 -123.226 -3.99153 3.99153 0.84 0.000441317 0.000400467 0.0398043 0.0364912 30 2010 19 6.87369e+06 237555 556674. 1926.21 0.95 0.111685 0.0982023 25186 138497 -1 1773 19 1026 1698 122763 26658 2.97031 2.97031 -115.778 -2.97031 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0233177 0.0203815 101 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30216 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 16.3 MiB 0.76 614 5831 1071 4187 573 54.8 MiB 0.08 0.00 3.5993 -104.92 -3.5993 3.5993 0.81 0.000642314 0.000594738 0.0213624 0.0198192 34 1825 20 6.87369e+06 363320 618332. 2139.56 1.57 0.124049 0.107485 25762 151098 -1 1488 19 985 1618 129852 31260 3.07156 3.07156 -107.422 -3.07156 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0232581 0.0202685 102 30 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17480 1 0.03 -1 -1 30480 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 16.3 MiB 2.59 863 14072 4376 7539 2157 54.9 MiB 0.17 0.00 3.04756 -100.489 -3.04756 3.04756 0.79 0.00064856 0.000598802 0.0504009 0.0465651 34 1951 21 6.87369e+06 349346 618332. 2139.56 1.49 0.176335 0.154078 25762 151098 -1 1706 18 1100 1630 136450 31150 2.34737 2.34737 -100.171 -2.34737 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0263292 0.0231301 106 54 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.19 17556 1 0.03 -1 -1 30428 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 16.8 MiB 2.99 1118 10108 2278 7040 790 55.4 MiB 0.16 0.00 4.17389 -123.088 -4.17389 4.17389 0.78 0.000800659 0.000740571 0.0358186 0.0331055 26 3092 33 6.87369e+06 558954 503264. 1741.40 2.14 0.146899 0.129365 24322 120374 -1 2701 19 1492 2797 286314 60183 4.0633 4.0633 -131.632 -4.0633 0 0 618332. 2139.56 0.21 0.10 0.13 -1 -1 0.21 0.0300027 0.0263195 156 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.15 17588 1 0.03 -1 -1 30328 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 16.8 MiB 2.74 1050 18428 5889 9545 2994 55.5 MiB 0.24 0.00 3.99748 -134.85 -3.99748 3.99748 0.78 0.000823697 0.000762093 0.0667533 0.0616498 30 2332 22 6.87369e+06 531006 556674. 1926.21 1.02 0.164583 0.146091 25186 138497 -1 1909 19 1440 2159 153604 33317 2.87086 2.87086 -116.284 -2.87086 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0303104 0.0265832 148 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.18 17592 1 0.03 -1 -1 30048 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.2 MiB 1.84 729 12681 4828 6102 1751 55.0 MiB 0.16 0.00 4.09163 -121.55 -4.09163 4.09163 0.79 0.000647382 0.000598786 0.0495061 0.0458251 36 2171 27 6.87369e+06 251529 648988. 2245.63 1.83 0.181015 0.158175 26050 158493 -1 1727 19 1282 1879 167208 38057 3.3035 3.3035 -116.628 -3.3035 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.0238575 0.0208055 109 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.20 17528 1 0.03 -1 -1 30408 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 16.6 MiB 2.20 953 14543 4925 6755 2863 55.2 MiB 0.22 0.00 3.78134 -121.658 -3.78134 3.78134 0.79 0.000787117 0.000727702 0.0603401 0.0558103 34 2816 24 6.87369e+06 363320 618332. 2139.56 1.76 0.217495 0.190595 25762 151098 -1 2094 18 1503 2504 205905 45373 3.31711 3.31711 -124.723 -3.31711 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0280412 0.0245809 136 61 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.18 17872 1 0.03 -1 -1 30288 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 16.8 MiB 3.57 1511 10033 2621 6359 1053 55.4 MiB 0.19 0.01 5.60672 -170.903 -5.60672 5.60672 0.80 0.000803195 0.000743296 0.0437935 0.0405585 34 3954 28 6.87369e+06 349346 618332. 2139.56 2.06 0.175773 0.15408 25762 151098 -1 3066 21 2390 3461 350056 73185 5.1218 5.1218 -179.423 -5.1218 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0323436 0.0283341 159 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30412 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 16.6 MiB 3.19 1142 14964 4330 8425 2209 55.2 MiB 0.23 0.00 5.2871 -162.814 -5.2871 5.2871 0.79 0.000807336 0.000746032 0.0627504 0.0580498 34 2820 21 6.87369e+06 377294 618332. 2139.56 1.73 0.219773 0.192994 25762 151098 -1 2350 20 1310 2107 191714 40506 4.53985 4.53985 -153.056 -4.53985 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0312623 0.0274052 152 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30336 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 16.8 MiB 2.58 964 8863 1996 5999 868 55.3 MiB 0.16 0.00 4.10673 -127.256 -4.10673 4.10673 0.79 0.000759327 0.000702779 0.0369588 0.0342274 32 3095 46 6.87369e+06 349346 586450. 2029.24 1.76 0.176923 0.154545 25474 144626 -1 2290 22 1592 2605 279320 60909 3.59151 3.59151 -131.08 -3.59151 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.0318414 0.0278357 131 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.19 17464 1 0.03 -1 -1 30444 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 16.3 MiB 2.21 831 14175 5092 5953 3130 55.0 MiB 0.21 0.00 4.31305 -113.651 -4.31305 4.31305 0.79 0.000672863 0.000621828 0.0624627 0.0577319 34 2771 30 6.87369e+06 279477 618332. 2139.56 1.87 0.208938 0.183159 25762 151098 -1 1790 20 1251 1826 158537 38460 3.60416 3.60416 -113.005 -3.60416 0 0 787024. 2723.27 0.26 0.08 0.17 -1 -1 0.26 0.0268065 0.0234611 119 27 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17992 1 0.03 -1 -1 30408 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 17.0 MiB 2.89 1125 12954 3388 8890 676 55.8 MiB 0.23 0.01 4.84068 -153.465 -4.84068 4.84068 0.78 0.000942132 0.000871632 0.0543368 0.0503586 30 2879 22 6.87369e+06 531006 556674. 1926.21 1.32 0.170291 0.150207 25186 138497 -1 2175 18 1391 2286 139976 34285 3.81736 3.81736 -146.255 -3.81736 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.033105 0.0290377 173 87 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17332 1 0.03 -1 -1 30148 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 16.3 MiB 1.47 779 13291 4134 7087 2070 54.8 MiB 0.16 0.00 3.55895 -107.74 -3.55895 3.55895 0.78 0.000613883 0.000567645 0.0457164 0.0422648 32 2013 37 6.87369e+06 307425 586450. 2029.24 1.03 0.133708 0.1176 25474 144626 -1 1737 19 1072 1866 185613 38055 2.75796 2.75796 -104.179 -2.75796 0 0 744469. 2576.02 0.24 0.07 0.15 -1 -1 0.24 0.0226517 0.0197082 96 28 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30320 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 16.5 MiB 2.02 1055 8969 2107 6380 482 55.1 MiB 0.16 0.00 4.79158 -142.334 -4.79158 4.79158 0.78 0.000743718 0.000688472 0.037599 0.034843 30 2699 23 6.87369e+06 321398 556674. 1926.21 1.11 0.127743 0.112547 25186 138497 -1 2114 22 1391 2067 162370 36370 3.98476 3.98476 -136.47 -3.98476 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0311411 0.0272116 140 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30392 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 16.7 MiB 1.66 980 9951 2142 7372 437 55.2 MiB 0.16 0.01 3.6843 -115.486 -3.6843 3.6843 0.79 0.000767819 0.000710132 0.0368917 0.0341409 32 2937 23 6.87369e+06 447163 586450. 2029.24 1.10 0.128191 0.112813 25474 144626 -1 2257 20 1524 2526 256077 54124 3.11061 3.11061 -118.14 -3.11061 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0290713 0.0254283 132 53 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.17 17160 1 0.03 -1 -1 30160 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.7 MiB 0.60 972 9537 2296 6533 708 55.1 MiB 0.15 0.00 4.25479 -129.925 -4.25479 4.25479 0.78 0.000680201 0.000629266 0.0344205 0.0318377 34 2341 21 6.87369e+06 363320 618332. 2139.56 1.60 0.167246 0.145789 25762 151098 -1 2009 17 1159 2165 205575 41762 3.5678 3.5678 -123.729 -3.5678 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0232888 0.0204093 123 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 16.5 MiB 2.74 1122 14450 4547 7634 2269 55.0 MiB 0.22 0.00 5.14049 -153.237 -5.14049 5.14049 0.78 0.000765851 0.000708548 0.0608022 0.0562543 34 2662 24 6.87369e+06 307425 618332. 2139.56 1.63 0.213255 0.187295 25762 151098 -1 2176 23 1254 1711 159288 34301 3.7151 3.7151 -134.093 -3.7151 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0330349 0.0288625 136 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17620 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 16.7 MiB 3.00 990 17178 5882 8168 3128 55.4 MiB 0.20 0.00 3.6884 -118.378 -3.6884 3.6884 0.79 0.000774395 0.000715189 0.0633953 0.0586238 30 2852 47 6.87369e+06 447163 556674. 1926.21 1.62 0.186427 0.164458 25186 138497 -1 2105 17 1293 2261 173113 38661 3.50851 3.50851 -118.088 -3.50851 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.026707 0.0234826 136 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17640 1 0.03 -1 -1 30452 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 16.7 MiB 2.63 922 18795 6474 8507 3814 55.3 MiB 0.24 0.00 4.11773 -131.117 -4.11773 4.11773 0.79 0.000811388 0.000750078 0.0697982 0.0645045 36 2424 25 6.87369e+06 489084 648988. 2245.63 4.05 0.293695 0.256856 26050 158493 -1 1930 21 1438 2353 198873 45138 3.10161 3.10161 -117.184 -3.10161 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0318474 0.0278658 144 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17544 1 0.03 -1 -1 30448 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 16.4 MiB 0.76 881 12751 3354 7696 1701 54.9 MiB 0.18 0.00 4.26989 -123.123 -4.26989 4.26989 0.80 0.000699267 0.000645446 0.0425087 0.0392681 30 2185 19 6.87369e+06 461137 556674. 1926.21 0.98 0.123047 0.108658 25186 138497 -1 1717 18 907 1567 101341 22483 3.8314 3.8314 -121.581 -3.8314 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.024602 0.021528 124 24 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.18 17664 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.6 MiB 1.89 1140 14450 4739 7431 2280 55.1 MiB 0.21 0.00 4.86398 -140.272 -4.86398 4.86398 0.84 0.000714098 0.00066073 0.057275 0.0530007 34 2760 22 6.87369e+06 307425 618332. 2139.56 1.68 0.19904 0.17472 25762 151098 -1 2395 18 1530 2209 214766 44749 4.02406 4.02406 -138.329 -4.02406 0 0 787024. 2723.27 0.25 0.08 0.12 -1 -1 0.25 0.0257529 0.0225885 135 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30332 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 16.6 MiB 1.84 912 13105 4297 5300 3508 55.2 MiB 0.18 0.00 4.74348 -140.694 -4.74348 4.74348 0.78 0.000788309 0.000729069 0.0581236 0.0537578 36 3215 46 6.87369e+06 307425 648988. 2245.63 4.49 0.246671 0.215969 26050 158493 -1 2319 21 1853 2913 258482 60033 4.20666 4.20666 -138.262 -4.20666 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0316818 0.027711 141 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30280 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 16.7 MiB 2.36 1089 15709 4726 9045 1938 55.2 MiB 0.24 0.00 4.3693 -136.102 -4.3693 4.3693 0.79 0.000803574 0.000742666 0.0703278 0.0650339 34 2877 23 6.87369e+06 293451 618332. 2139.56 1.76 0.228556 0.200955 25762 151098 -1 2332 23 1605 2903 256169 54217 3.70946 3.70946 -133.233 -3.70946 0 0 787024. 2723.27 0.27 0.10 0.15 -1 -1 0.27 0.0346956 0.0302635 135 77 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30024 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 16.3 MiB 0.63 730 9914 2670 6709 535 54.7 MiB 0.12 0.00 3.5583 -105.077 -3.5583 3.5583 0.79 0.000605906 0.000560565 0.0338155 0.031262 28 1862 20 6.87369e+06 307425 531479. 1839.03 0.94 0.103996 0.0913903 24610 126494 -1 1710 21 1002 1616 145849 32601 2.75801 2.75801 -102.554 -2.75801 0 0 648988. 2245.63 0.21 0.07 0.13 -1 -1 0.21 0.0241702 0.0210139 93 23 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.16 17756 1 0.03 -1 -1 30376 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 16.6 MiB 1.51 968 15568 5616 7798 2154 55.1 MiB 0.22 0.00 3.7434 -130.891 -3.7434 3.7434 0.79 0.000731788 0.000675496 0.066353 0.0612662 34 2736 21 6.87369e+06 251529 618332. 2139.56 1.80 0.208934 0.183268 25762 151098 -1 2207 22 1706 2426 247787 53492 3.46621 3.46621 -137.04 -3.46621 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0301851 0.0263091 124 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 16.8 MiB 2.72 1427 16858 5256 9636 1966 55.4 MiB 0.31 0.01 5.58608 -163.667 -5.58608 5.58608 0.78 0.000849646 0.000777608 0.0753533 0.0694854 34 3497 22 6.87369e+06 335372 618332. 2139.56 1.94 0.240857 0.212078 25762 151098 -1 2844 20 1965 3010 262410 56302 4.8272 4.8272 -160.952 -4.8272 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0324079 0.0284196 166 31 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 16.6 MiB 2.59 968 18998 5516 10575 2907 55.1 MiB 0.29 0.00 4.31005 -135.578 -4.31005 4.31005 0.79 0.000754667 0.000697627 0.0778759 0.071932 34 2218 23 6.87369e+06 475111 618332. 2139.56 3.09 0.291972 0.255501 25762 151098 -1 1837 19 1198 1991 151786 33496 3.06026 3.06026 -119.164 -3.06026 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0276111 0.0241823 137 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.19 17460 1 0.03 -1 -1 30392 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 16.3 MiB 0.67 634 6615 1367 5002 246 54.9 MiB 0.10 0.00 3.6392 -108.305 -3.6392 3.6392 0.79 0.000637473 0.000590012 0.0240134 0.0222288 26 2267 37 6.87369e+06 349346 503264. 1741.40 1.48 0.115856 0.101036 24322 120374 -1 1765 25 1377 2177 211153 47713 3.18891 3.18891 -115.234 -3.18891 0 0 618332. 2139.56 0.21 0.09 0.12 -1 -1 0.21 0.02851 0.024745 104 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.20 18008 1 0.03 -1 -1 30288 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 17.0 MiB 4.41 1457 14543 4326 8631 1586 55.5 MiB 0.25 0.00 5.90291 -175.463 -5.90291 5.90291 0.78 0.000901554 0.000835077 0.0690612 0.0640029 34 3350 23 6.87369e+06 349346 618332. 2139.56 2.39 0.24222 0.212963 25762 151098 -1 2872 22 2351 3592 368354 76432 5.0605 5.0605 -170.333 -5.0605 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0381865 0.0334352 171 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30320 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 16.7 MiB 2.76 1003 17199 4580 10530 2089 55.2 MiB 0.21 0.00 4.63938 -140.336 -4.63938 4.63938 0.79 0.000749741 0.000694449 0.0589629 0.0545451 32 2576 26 6.87369e+06 489084 586450. 2029.24 1.07 0.152512 0.13528 25474 144626 -1 2075 21 1548 2528 252483 52523 4.1273 4.1273 -136.216 -4.1273 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.029759 0.026019 135 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17080 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 16.3 MiB 0.59 878 10618 2802 6933 883 54.8 MiB 0.13 0.00 3.66956 -107.639 -3.66956 3.66956 0.79 0.000582185 0.000538709 0.0333424 0.0308431 30 1968 19 6.87369e+06 335372 556674. 1926.21 0.95 0.0997713 0.0877631 25186 138497 -1 1619 18 729 1340 99674 21860 2.68771 2.68771 -100.733 -2.68771 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0203788 0.0177573 94 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.16 17868 1 0.03 -1 -1 30328 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 16.6 MiB 1.87 1091 19371 5911 10963 2497 55.3 MiB 0.27 0.00 5.19487 -138.438 -5.19487 5.19487 0.79 0.000769631 0.000711412 0.0658507 0.060824 26 3227 32 6.87369e+06 517032 503264. 1741.40 6.37 0.264401 0.231389 24322 120374 -1 2661 23 1767 3166 319786 66540 4.80315 4.80315 -149.277 -4.80315 0 0 618332. 2139.56 0.20 0.11 0.12 -1 -1 0.20 0.0329108 0.0287151 145 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.16 17056 1 0.03 -1 -1 30232 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.3 MiB 0.68 765 8363 1967 5928 468 54.8 MiB 0.12 0.00 3.6502 -113.574 -3.6502 3.6502 0.79 0.000608368 0.000562695 0.0299749 0.0277117 34 2132 18 6.87369e+06 265503 618332. 2139.56 1.54 0.145616 0.126584 25762 151098 -1 1790 18 1063 1872 169298 36292 2.83496 2.83496 -109.251 -2.83496 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0216666 0.0189042 98 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.17 17324 1 0.03 -1 -1 30452 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 16.3 MiB 2.15 687 8418 1716 5962 740 54.9 MiB 0.11 0.00 3.88482 -111.398 -3.88482 3.88482 0.78 0.000646162 0.000596208 0.0274272 0.0252644 28 2038 23 6.87369e+06 475111 531479. 1839.03 1.27 0.105616 0.0923542 24610 126494 -1 1754 21 1213 2169 178075 41017 3.00526 3.00526 -109.857 -3.00526 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.025468 0.0221427 109 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30316 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 16.8 MiB 3.51 1118 13105 3443 8133 1529 55.4 MiB 0.22 0.00 4.10563 -124.474 -4.10563 4.10563 0.78 0.000757283 0.000700957 0.0560258 0.0518777 34 2884 25 6.87369e+06 335372 618332. 2139.56 1.94 0.208602 0.182622 25762 151098 -1 2365 17 1576 2391 213034 46026 3.41741 3.41741 -123.553 -3.41741 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0257429 0.0225953 138 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17460 1 0.03 -1 -1 30468 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 16.6 MiB 1.92 806 8532 1884 6173 475 55.1 MiB 0.13 0.00 4.39805 -136.981 -4.39805 4.39805 0.79 0.000772659 0.00071472 0.0350457 0.0324336 34 2227 20 6.87369e+06 363320 618332. 2139.56 1.63 0.181298 0.157905 25762 151098 -1 1865 19 1457 2282 193980 42933 3.7634 3.7634 -131.216 -3.7634 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0287146 0.025141 132 54 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17776 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1121 14983 4753 8344 1886 55.1 MiB 0.23 0.00 4.71348 -141.457 -4.71348 4.71348 0.78 0.000769746 0.000711655 0.0590828 0.0545672 34 2966 45 6.87369e+06 377294 618332. 2139.56 3.62 0.270491 0.236097 25762 151098 -1 2502 20 1539 2548 280499 56605 4.18336 4.18336 -143.844 -4.18336 0 0 787024. 2723.27 0.30 0.10 0.16 -1 -1 0.30 0.0298593 0.0261492 133 51 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.17 17340 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.4 MiB 2.86 883 12923 4460 6401 2062 54.9 MiB 0.17 0.00 4.76482 -134.311 -4.76482 4.76482 0.79 0.000638988 0.000590771 0.0509684 0.047158 30 2315 27 6.87369e+06 209608 556674. 1926.21 3.22 0.204199 0.17795 25186 138497 -1 1867 16 922 1282 118853 24361 3.15856 3.15856 -115.925 -3.15856 0 0 706193. 2443.58 0.23 0.06 0.16 -1 -1 0.23 0.0212164 0.0186489 103 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30540 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 16.3 MiB 2.21 973 14184 4741 7494 1949 54.9 MiB 0.19 0.00 3.76746 -124.928 -3.76746 3.76746 0.79 0.000689458 0.000637267 0.0595847 0.0551359 34 2511 24 6.87369e+06 237555 618332. 2139.56 1.67 0.198306 0.173545 25762 151098 -1 2098 18 1238 1833 173133 37828 3.5541 3.5541 -127.567 -3.5541 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0247002 0.0215918 114 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17816 1 0.03 -1 -1 30452 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 16.7 MiB 2.22 925 17835 5186 10054 2595 55.2 MiB 0.23 0.00 3.47005 -102.148 -3.47005 3.47005 0.78 0.000724192 0.000662235 0.060825 0.0560412 32 2417 24 6.87369e+06 475111 586450. 2029.24 1.00 0.148305 0.131263 25474 144626 -1 1872 21 1155 2062 190251 40479 2.64466 2.64466 -98.9225 -2.64466 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.028677 0.0249833 124 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.14 17520 1 0.03 -1 -1 30452 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 16.2 MiB 1.68 875 14783 4032 9129 1622 54.9 MiB 0.18 0.00 4.05975 -105.458 -4.05975 4.05975 0.79 0.00066407 0.00061603 0.0461848 0.0426757 26 2144 23 6.87369e+06 489084 503264. 1741.40 1.26 0.124064 0.109255 24322 120374 -1 2072 21 1308 2403 245967 51198 4 4 -116.43 -4 0 0 618332. 2139.56 0.21 0.09 0.13 -1 -1 0.21 0.0255476 0.0221877 117 27 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.18 17724 1 0.03 -1 -1 30364 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 16.3 MiB 2.56 802 13599 4534 7471 1594 54.9 MiB 0.20 0.00 4.04073 -123.042 -4.04073 4.04073 0.78 0.000686804 0.000635217 0.0580588 0.0537486 28 2214 21 6.87369e+06 237555 531479. 1839.03 1.18 0.142599 0.126259 24610 126494 -1 1921 19 1247 2121 199277 43494 3.18556 3.18556 -121.147 -3.18556 0 0 648988. 2245.63 0.22 0.08 0.13 -1 -1 0.22 0.0253085 0.0220635 105 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.10 17764 1 0.03 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 16.6 MiB 2.56 1020 11806 3110 7534 1162 55.1 MiB 0.18 0.00 3.6756 -125.066 -3.6756 3.6756 0.78 0.000722021 0.000667866 0.0509871 0.0471645 34 2658 20 6.87369e+06 237555 618332. 2139.56 1.65 0.19254 0.1685 25762 151098 -1 2253 18 1383 2054 199620 42959 3.18891 3.18891 -127.917 -3.18891 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0257113 0.0224833 122 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30492 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.6 MiB 0.68 1014 15430 4861 8054 2515 55.0 MiB 0.21 0.00 4.6284 -133.663 -4.6284 4.6284 0.79 0.000690833 0.000638873 0.052397 0.0483852 32 2515 23 6.87369e+06 433189 586450. 2029.24 1.05 0.135238 0.119699 25474 144626 -1 2125 18 1202 2198 207291 43577 3.7321 3.7321 -124.249 -3.7321 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0244163 0.0213611 129 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.19 17876 1 0.03 -1 -1 30332 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 16.6 MiB 2.85 1172 16215 5632 8430 2153 55.3 MiB 0.33 0.01 4.82738 -155.303 -4.82738 4.82738 0.78 0.000591381 0.000539522 0.0651895 0.0599413 34 3418 27 6.87369e+06 321398 618332. 2139.56 1.91 0.213323 0.187758 25762 151098 -1 2702 23 1861 2795 309121 66328 4.34186 4.34186 -153.291 -4.34186 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0334158 0.029234 147 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30300 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 16.6 MiB 3.35 951 10308 2331 7565 412 55.2 MiB 0.17 0.00 5.39654 -155.229 -5.39654 5.39654 0.78 0.000840946 0.000779454 0.0406021 0.0376248 34 2729 25 6.87369e+06 503058 618332. 2139.56 2.32 0.211204 0.18476 25762 151098 -1 2127 20 1457 2434 198025 46439 4.29385 4.29385 -142.531 -4.29385 0 0 787024. 2723.27 0.27 0.10 0.15 -1 -1 0.27 0.033516 0.0294199 147 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30356 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 16.6 MiB 2.73 1114 12702 3372 8526 804 55.2 MiB 0.20 0.00 4.59844 -147.406 -4.59844 4.59844 0.79 0.000816734 0.000756042 0.0452898 0.0417541 26 3564 40 6.87369e+06 572927 503264. 1741.40 5.90 0.277915 0.241585 24322 120374 -1 2730 22 1706 3094 442520 107084 4.2043 4.2043 -149.557 -4.2043 0 0 618332. 2139.56 0.23 0.14 0.11 -1 -1 0.23 0.0338409 0.0295926 148 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17608 1 0.03 -1 -1 30148 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 16.3 MiB 2.08 643 13768 5811 6950 1007 54.8 MiB 0.16 0.00 4.04073 -117.599 -4.04073 4.04073 0.78 0.000634039 0.000587085 0.0537119 0.0496988 34 2265 49 6.87369e+06 237555 618332. 2139.56 2.15 0.185755 0.162415 25762 151098 -1 1568 22 1174 1884 163558 38771 3.78711 3.78711 -115.234 -3.78711 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0262858 0.0228629 99 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 16.6 MiB 2.98 958 7038 1640 4840 558 55.1 MiB 0.13 0.00 4.57902 -143.19 -4.57902 4.57902 0.78 0.000791892 0.000732991 0.032801 0.030365 34 2460 20 6.87369e+06 307425 618332. 2139.56 1.63 0.1844 0.16057 25762 151098 -1 2045 21 1697 2678 247203 52809 3.8466 3.8466 -138.477 -3.8466 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0316721 0.0277122 136 63 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17728 1 0.03 -1 -1 30292 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 16.6 MiB 2.39 1035 6615 1396 4961 258 55.2 MiB 0.12 0.00 5.21006 -150.271 -5.21006 5.21006 0.79 0.000753238 0.000697322 0.0282862 0.0262072 34 2933 25 6.87369e+06 321398 618332. 2139.56 1.90 0.178872 0.155554 25762 151098 -1 2378 21 1565 2616 254111 54747 4.14826 4.14826 -142.534 -4.14826 0 0 787024. 2723.27 0.26 0.10 0.15 -1 -1 0.26 0.0300276 0.0262801 140 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.20 17616 1 0.03 -1 -1 30116 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 16.6 MiB 2.09 1178 17839 5313 10611 1915 55.2 MiB 0.24 0.00 5.241 -151.339 -5.241 5.241 0.84 0.000475577 0.000432603 0.0612435 0.0564786 34 2793 42 6.87369e+06 391268 618332. 2139.56 1.69 0.186154 0.163656 25762 151098 -1 2415 21 1675 2650 239961 52013 4.4876 4.4876 -149.105 -4.4876 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0298792 0.0261135 141 47 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30196 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 16.6 MiB 2.29 1032 10531 2482 6524 1525 55.2 MiB 0.14 0.00 4.69758 -143.214 -4.69758 4.69758 0.81 0.000570256 0.000519124 0.031842 0.029098 32 2649 22 6.87369e+06 447163 586450. 2029.24 1.12 0.104759 0.0918583 25474 144626 -1 2165 18 1193 1995 198202 42198 3.3252 3.3252 -126.75 -3.3252 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.02773 0.0242945 135 83 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.20 17744 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 16.7 MiB 2.01 1030 11245 3242 7121 882 55.2 MiB 0.19 0.00 4.79284 -145.044 -4.79284 4.79284 0.78 0.000781736 0.000723188 0.0496677 0.0459695 34 2767 21 6.87369e+06 293451 618332. 2139.56 1.75 0.200943 0.176108 25762 151098 -1 2198 20 1605 2853 272820 56461 3.84846 3.84846 -137.776 -3.84846 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0305322 0.026776 132 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17732 1 0.03 -1 -1 30324 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 16.6 MiB 2.28 973 10944 3003 6644 1297 55.1 MiB 0.17 0.00 4.08063 -124.263 -4.08063 4.08063 0.79 0.000783081 0.000724055 0.0452132 0.041839 34 2375 25 6.87369e+06 405241 618332. 2139.56 1.69 0.201622 0.176096 25762 151098 -1 2054 22 1650 2711 240957 52569 3.15261 3.15261 -116.306 -3.15261 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0324066 0.0282625 132 85 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.17 17100 1 0.04 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 16.2 MiB 0.57 780 13906 5362 7318 1226 54.6 MiB 0.17 0.00 4.08063 -122.384 -4.08063 4.08063 0.78 0.000600421 0.000554565 0.0496579 0.0458892 34 1821 16 6.87369e+06 237555 618332. 2139.56 1.45 0.162157 0.142048 25762 151098 -1 1580 15 832 1234 109171 23146 2.81871 2.81871 -105.67 -2.81871 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.018803 0.0164978 96 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.19 17720 1 0.03 -1 -1 30324 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 16.8 MiB 3.92 1081 9548 2182 6489 877 55.5 MiB 0.15 0.00 4.62608 -140.581 -4.62608 4.62608 0.78 0.000791511 0.000732271 0.0362245 0.0335017 28 2637 28 6.87369e+06 475111 531479. 1839.03 1.27 0.137014 0.120336 24610 126494 -1 2352 19 1632 2677 249398 54317 3.8154 3.8154 -139.271 -3.8154 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.028725 0.0250744 137 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 16.8 MiB 3.39 1050 13477 3452 8462 1563 55.3 MiB 0.23 0.00 4.60818 -154.696 -4.60818 4.60818 0.78 0.000827039 0.000764896 0.0626697 0.0580116 34 2777 21 6.87369e+06 293451 618332. 2139.56 1.76 0.224237 0.197181 25762 151098 -1 2348 17 1579 2619 240169 51231 4.0009 4.0009 -153.927 -4.0009 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0286224 0.0252107 142 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.17 17284 1 0.03 -1 -1 30064 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 16.2 MiB 2.87 803 10744 3029 6489 1226 54.7 MiB 0.16 0.00 4.47622 -122.656 -4.47622 4.47622 0.78 0.000629276 0.000582027 0.0413736 0.0382846 34 2299 20 6.87369e+06 223581 618332. 2139.56 1.62 0.163656 0.142817 25762 151098 -1 1880 17 1049 1363 126073 28333 3.3535 3.3535 -115.074 -3.3535 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0215458 0.0188177 106 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17024 1 0.03 -1 -1 30376 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.3 MiB 0.67 704 7103 1505 5021 577 54.8 MiB 0.11 0.00 4.06963 -117.109 -4.06963 4.06963 0.81 0.00059784 0.000552741 0.0258178 0.023918 30 1829 19 6.87369e+06 279477 556674. 1926.21 0.94 0.0946993 0.0829682 25186 138497 -1 1581 19 973 1662 120925 26171 2.80771 2.80771 -104.161 -2.80771 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.022079 0.0192299 99 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30396 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.7 MiB 2.69 1122 16407 5100 9312 1995 55.5 MiB 0.27 0.00 4.76368 -149.576 -4.76368 4.76368 0.78 0.000766495 0.000709483 0.068143 0.0631072 34 3071 36 6.87369e+06 321398 618332. 2139.56 2.06 0.234146 0.205519 25762 151098 -1 2522 23 2027 2756 320107 65024 4.18536 4.18536 -153.538 -4.18536 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0330417 0.0288879 145 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.19 17616 1 0.03 -1 -1 30256 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 16.7 MiB 2.25 1027 10087 2665 7077 345 55.2 MiB 0.16 0.00 5.28228 -152.543 -5.28228 5.28228 0.79 0.000766589 0.000709099 0.0403469 0.037347 34 2886 39 6.87369e+06 377294 618332. 2139.56 1.85 0.195246 0.170406 25762 151098 -1 2270 21 1506 2357 192803 44412 4.40635 4.40635 -144.809 -4.40635 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0307811 0.026908 142 56 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.20 17288 1 0.03 -1 -1 30164 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.7 MiB 0.69 1027 19820 5642 10737 3441 55.3 MiB 0.29 0.00 5.45503 -148.146 -5.45503 5.45503 0.79 0.000787298 0.000729121 0.0700969 0.0647133 30 3122 38 6.87369e+06 503058 556674. 1926.21 1.33 0.18419 0.163186 25186 138497 -1 1998 20 1432 2666 194652 42403 4.31395 4.31395 -139.634 -4.31395 0 0 706193. 2443.58 0.23 0.09 0.09 -1 -1 0.23 0.0310249 0.0272463 157 3 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30256 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 16.5 MiB 2.03 803 13893 3888 7187 2818 54.9 MiB 0.18 0.00 3.64131 -107.005 -3.64131 3.64131 0.79 0.000692073 0.000639864 0.0461889 0.0427343 32 2171 23 6.87369e+06 475111 586450. 2029.24 1.03 0.12987 0.114644 25474 144626 -1 1687 19 1214 2168 206254 44780 2.92396 2.92396 -102.045 -2.92396 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0256814 0.0223609 119 52 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30668 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 16.3 MiB 0.82 507 7132 1637 4881 614 54.8 MiB 0.09 0.00 3.6605 -96.1635 -3.6605 3.6605 0.78 0.000599354 0.000553635 0.0264762 0.0245155 30 1501 23 6.87369e+06 293451 556674. 1926.21 0.96 0.0990302 0.0866653 25186 138497 -1 1219 18 773 1109 83785 19295 3.05561 3.05561 -95.6095 -3.05561 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0209282 0.0182134 96 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30368 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 17.2 MiB 3.13 1378 10228 2746 6595 887 55.8 MiB 0.20 0.01 4.35815 -140.01 -4.35815 4.35815 0.78 0.000879275 0.000813856 0.0488755 0.0452802 34 3992 28 6.87369e+06 335372 618332. 2139.56 3.41 0.234341 0.204835 25762 151098 -1 3126 20 1988 3301 325180 68753 4.12156 4.12156 -143.545 -4.12156 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0338712 0.0296783 165 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.15 17784 1 0.03 -1 -1 30356 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 16.6 MiB 3.68 1036 15709 5736 7909 2064 55.2 MiB 0.24 0.00 5.60997 -168.26 -5.60997 5.60997 0.78 0.000775636 0.00071669 0.0683018 0.0632074 34 2852 20 6.87369e+06 307425 618332. 2139.56 1.97 0.218699 0.192367 25762 151098 -1 2273 23 1918 2961 288732 61573 4.71195 4.71195 -153.274 -4.71195 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.032983 0.028831 139 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 30392 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 16.5 MiB 3.88 954 12542 3477 7836 1229 55.2 MiB 0.17 0.00 4.34735 -144.276 -4.34735 4.34735 0.79 0.000712382 0.00065879 0.0527926 0.0488423 34 2379 22 6.87369e+06 251529 618332. 2139.56 1.66 0.193162 0.168984 25762 151098 -1 2012 21 1300 1903 167462 37973 3.43686 3.43686 -136.272 -3.43686 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.028877 0.0252287 118 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.19 17724 1 0.03 -1 -1 30344 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 16.6 MiB 1.00 986 18523 6141 9875 2507 55.1 MiB 0.25 0.00 5.03998 -136.555 -5.03998 5.03998 0.83 0.000735834 0.000672518 0.0647826 0.0597158 28 2645 21 6.87369e+06 461137 531479. 1839.03 1.16 0.149852 0.132978 24610 126494 -1 2206 21 1293 2060 191492 39919 3.7713 3.7713 -127.772 -3.7713 0 0 648988. 2245.63 0.22 0.09 0.13 -1 -1 0.22 0.0291479 0.0254584 129 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.21 17632 1 0.03 -1 -1 30252 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 16.7 MiB 1.61 1064 18301 5445 10263 2593 55.2 MiB 0.26 0.00 4.47348 -130.92 -4.47348 4.47348 0.78 0.000805863 0.000746226 0.068701 0.063597 32 2598 30 6.87369e+06 475111 586450. 2029.24 1.06 0.173802 0.15429 25474 144626 -1 2183 19 1330 2244 204431 44075 3.62616 3.62616 -124.571 -3.62616 0 0 744469. 2576.02 0.25 0.09 0.16 -1 -1 0.25 0.0301333 0.0264456 149 50 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17728 1 0.03 -1 -1 30152 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 16.6 MiB 1.81 1005 13953 3900 8706 1347 55.0 MiB 0.18 0.00 3.71604 -108.811 -3.71604 3.71604 0.78 0.000719863 0.000666696 0.0500149 0.0463018 34 2293 20 6.87369e+06 433189 618332. 2139.56 1.61 0.193572 0.169138 25762 151098 -1 1979 18 1160 2021 179758 38158 2.93031 2.93031 -104.42 -2.93031 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0259633 0.0227942 124 51 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.20 17784 1 0.03 -1 -1 30244 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 16.7 MiB 2.87 1158 14261 4788 7245 2228 55.3 MiB 0.24 0.01 4.84864 -152.871 -4.84864 4.84864 0.78 0.000776269 0.000714346 0.0604535 0.0559371 34 3299 34 6.87369e+06 307425 618332. 2139.56 2.78 0.229474 0.201458 25762 151098 -1 2647 22 2008 3157 333419 68097 4.42025 4.42025 -152.064 -4.42025 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0324248 0.0284131 148 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.19 17784 1 0.03 -1 -1 30184 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 16.8 MiB 2.72 1138 19124 5521 11431 2172 55.6 MiB 0.27 0.00 4.13563 -138.632 -4.13563 4.13563 0.79 0.000811438 0.000750428 0.0700092 0.0647629 28 2703 21 6.87369e+06 503058 531479. 1839.03 1.09 0.165742 0.14742 24610 126494 -1 2437 21 1569 2526 209983 44516 3.06531 3.06531 -129.289 -3.06531 0 0 648988. 2245.63 0.21 0.10 0.13 -1 -1 0.21 0.0325266 0.0284416 147 62 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30448 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 16.1 MiB 1.65 666 12120 4433 5222 2465 54.6 MiB 0.14 0.00 3.97634 -118.279 -3.97634 3.97634 0.78 0.000622229 0.00057551 0.0459561 0.0425279 32 1767 29 6.87369e+06 265503 586450. 2029.24 1.01 0.126606 0.111689 25474 144626 -1 1380 19 1122 1645 149206 31090 3.12946 3.12946 -109.963 -3.12946 0 0 744469. 2576.02 0.24 0.07 0.15 -1 -1 0.24 0.0233161 0.0203349 101 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30364 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 16.2 MiB 1.43 954 14256 4666 7594 1996 54.8 MiB 0.18 0.00 4.32352 -124.508 -4.32352 4.32352 0.79 0.00068408 0.000632561 0.0551503 0.050898 30 2361 35 6.87369e+06 237555 556674. 1926.21 1.02 0.149703 0.131955 25186 138497 -1 1936 13 821 1094 85189 18643 3.26184 3.26184 -121.634 -3.26184 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0188626 0.0166003 112 58 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.17 17816 1 0.03 -1 -1 30516 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 16.7 MiB 1.68 1008 17238 4626 10206 2406 55.2 MiB 0.21 0.00 4.58512 -131.297 -4.58512 4.58512 0.78 0.000726886 0.00067277 0.0553792 0.0511993 26 2724 28 6.87369e+06 544980 503264. 1741.40 4.31 0.230973 0.201529 24322 120374 -1 2380 22 1659 2995 315081 65064 3.9277 3.9277 -133.428 -3.9277 0 0 618332. 2139.56 0.21 0.11 0.12 -1 -1 0.21 0.0299732 0.0261621 135 33 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 2.93 766 12464 3650 7053 1761 54.9 MiB 0.18 0.00 4.72278 -121.674 -4.72278 4.72278 0.81 0.0006114 0.00056568 0.0465344 0.0431149 34 2130 23 6.87369e+06 265503 618332. 2139.56 1.57 0.137777 0.121063 25762 151098 -1 1773 17 1103 1464 120197 29021 3.56846 3.56846 -113.356 -3.56846 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.021039 0.0183781 107 31 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.17 17280 1 0.03 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 16.2 MiB 2.75 839 11909 3234 7671 1004 54.8 MiB 0.15 0.00 4.09853 -129.483 -4.09853 4.09853 0.84 0.000648237 0.00059935 0.0464869 0.0429603 34 2136 25 6.87369e+06 209608 618332. 2139.56 1.59 0.169168 0.147822 25762 151098 -1 1828 20 1336 2295 210483 44710 3.04931 3.04931 -117.728 -3.04931 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0249445 0.0217414 101 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.19 17600 1 0.03 -1 -1 30048 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 16.7 MiB 2.48 942 11236 2692 7798 746 55.2 MiB 0.21 0.01 3.93572 -125.697 -3.93572 3.93572 0.79 0.000542142 0.000493912 0.0355761 0.0326372 28 2323 24 6.87369e+06 517032 531479. 1839.03 2.87 0.223505 0.194098 24610 126494 -1 1995 21 1626 2418 213889 46283 3.09026 3.09026 -122.731 -3.09026 0 0 648988. 2245.63 0.24 0.09 0.13 -1 -1 0.24 0.0313608 0.0273958 141 64 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17520 1 0.03 -1 -1 30472 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 16.3 MiB 2.62 854 11604 2702 8073 829 54.8 MiB 0.14 0.00 3.71466 -115.66 -3.71466 3.71466 0.80 0.000628174 0.000581627 0.0448328 0.0415326 34 2035 25 6.87369e+06 237555 618332. 2139.56 1.50 0.170119 0.14858 25762 151098 -1 1806 20 1105 1591 152375 33045 3.11961 3.11961 -115.519 -3.11961 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0238922 0.0208125 105 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30088 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 16.8 MiB 2.59 1000 15215 3699 9919 1597 55.3 MiB 0.20 0.00 3.6733 -115.913 -3.6733 3.6733 0.78 0.000758708 0.00069801 0.0555947 0.0514337 26 2695 30 6.87369e+06 433189 503264. 1741.40 3.89 0.252299 0.220265 24322 120374 -1 2322 21 1246 2023 188836 40715 3.12761 3.12761 -117.135 -3.12761 0 0 618332. 2139.56 0.20 0.08 0.12 -1 -1 0.20 0.0297935 0.0259419 129 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.21 17876 1 0.03 -1 -1 30380 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 16.7 MiB 2.92 1013 12839 3510 8051 1278 55.3 MiB 0.19 0.00 3.7214 -127.022 -3.7214 3.7214 0.78 0.000814373 0.000753409 0.0511377 0.0473279 26 2611 23 6.87369e+06 447163 503264. 1741.40 1.22 0.149208 0.131879 24322 120374 -1 2271 21 1758 2648 263248 55673 3.44716 3.44716 -134.752 -3.44716 0 0 618332. 2139.56 0.21 0.10 0.13 -1 -1 0.21 0.0324866 0.0283977 137 91 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.19 17388 1 0.03 -1 -1 30216 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 16.3 MiB 2.03 868 13324 3871 8104 1349 54.9 MiB 0.17 0.00 3.6034 -114.008 -3.6034 3.6034 0.78 0.000669704 0.000618695 0.053967 0.0498879 34 2142 27 6.87369e+06 223581 618332. 2139.56 1.53 0.190091 0.166205 25762 151098 -1 1823 20 1049 1726 175953 37323 2.78486 2.78486 -110.654 -2.78486 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.026027 0.0226741 99 57 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17328 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.3 MiB 1.47 974 10050 2495 6517 1038 55.0 MiB 0.15 0.00 4.16989 -130.796 -4.16989 4.16989 0.79 0.000671126 0.000621317 0.0405366 0.0373995 34 2533 27 6.87369e+06 251529 618332. 2139.56 1.82 0.176513 0.153694 25762 151098 -1 2221 20 1459 2248 221047 47022 3.29781 3.29781 -125.565 -3.29781 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.025875 0.0226162 114 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17572 1 0.03 -1 -1 30292 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 16.7 MiB 2.41 1073 14072 3847 8138 2087 55.2 MiB 0.20 0.00 4.82103 -137.111 -4.82103 4.82103 0.79 0.000573811 0.000525469 0.0557007 0.0514979 34 2673 20 6.87369e+06 307425 618332. 2139.56 1.60 0.194238 0.170469 25762 151098 -1 2265 19 1421 2013 187893 39991 4.01606 4.01606 -132.938 -4.01606 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0266683 0.0233786 132 30 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17788 1 0.03 -1 -1 30196 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 16.6 MiB 2.37 938 11346 3139 7252 955 55.0 MiB 0.16 0.00 4.10263 -113.928 -4.10263 4.10263 0.84 0.000707338 0.00065509 0.0418031 0.0386655 34 2265 24 6.87369e+06 405241 618332. 2139.56 1.48 0.152576 0.133453 25762 151098 -1 1875 19 989 1572 123246 28321 3.09131 3.09131 -107.638 -3.09131 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0260711 0.0227648 123 55 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17744 1 0.03 -1 -1 30412 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 16.7 MiB 2.60 1137 15773 5092 8347 2334 55.5 MiB 0.26 0.00 5.16181 -165.054 -5.16181 5.16181 0.83 0.000838252 0.000766858 0.0697302 0.0642758 34 3068 29 6.87369e+06 307425 618332. 2139.56 1.99 0.226967 0.199388 25762 151098 -1 2467 21 1805 2787 277326 58554 4.16526 4.16526 -156.689 -4.16526 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0327074 0.0285941 151 65 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30368 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 15.9 MiB 0.59 812 10400 2700 6281 1419 54.5 MiB 0.12 0.00 3.6213 -110.383 -3.6213 3.6213 0.79 0.000580077 0.000535288 0.0368236 0.0340954 34 1813 21 6.87369e+06 237555 618332. 2139.56 1.43 0.14926 0.130222 25762 151098 -1 1553 19 832 1285 110003 23425 2.68771 2.68771 -101.176 -2.68771 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0212629 0.018534 92 4 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.21 17644 1 0.03 -1 -1 30332 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1097 18567 5571 11084 1912 55.3 MiB 0.26 0.00 4.4584 -148.753 -4.4584 4.4584 0.79 0.000842114 0.000778822 0.0713545 0.0659995 30 2544 21 6.87369e+06 489084 556674. 1926.21 1.17 0.170401 0.151418 25186 138497 -1 2038 20 1221 1808 161009 31836 3.76546 3.76546 -140.021 -3.76546 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0323505 0.0283364 145 90 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30048 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 16.6 MiB 3.76 823 13152 5512 7421 219 55.0 MiB 0.18 0.00 3.7595 -132.319 -3.7595 3.7595 0.78 0.000777786 0.000719258 0.0618584 0.0572394 34 2095 27 6.87369e+06 223581 618332. 2139.56 1.63 0.22447 0.19669 25762 151098 -1 1802 21 1625 2362 252462 51847 3.17461 3.17461 -130.163 -3.17461 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0307117 0.0268011 114 96 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30332 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 16.7 MiB 2.47 1010 10827 2581 6963 1283 55.2 MiB 0.17 0.00 4.11773 -126.026 -4.11773 4.11773 0.78 0.000772854 0.000714732 0.0405983 0.0375379 34 2344 17 6.87369e+06 447163 618332. 2139.56 1.52 0.185416 0.161881 25762 151098 -1 1950 20 1065 1720 137618 30356 2.88171 2.88171 -109.119 -2.88171 0 0 787024. 2723.27 0.25 0.08 0.10 -1 -1 0.25 0.0296061 0.0258744 134 60 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.16 17756 1 0.03 -1 -1 30540 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 16.9 MiB 3.59 1280 16127 4711 8958 2458 55.4 MiB 0.28 0.00 5.89191 -180.703 -5.89191 5.89191 0.78 0.000848719 0.000785444 0.0724947 0.0670649 34 3312 21 6.87369e+06 349346 618332. 2139.56 1.81 0.23829 0.210053 25762 151098 -1 2676 24 2148 3310 328679 67506 5.0595 5.0595 -167.914 -5.0595 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0380757 0.0333294 171 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.17 17560 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55892 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 15.9 MiB 1.18 668 8716 2078 6018 620 54.6 MiB 0.10 0.00 3.01966 -95.583 -3.01966 3.01966 0.79 0.000541578 0.00050093 0.0306933 0.0283826 30 1709 25 6.87369e+06 209608 556674. 1926.21 0.97 0.0977245 0.0856429 25186 138497 -1 1446 18 737 976 85204 19020 2.35106 2.35106 -95.3586 -2.35106 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0190766 0.0165911 81 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.18 17512 1 0.03 -1 -1 30252 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 16.1 MiB 0.97 599 7081 1635 4909 537 54.7 MiB 0.11 0.00 4.05453 -121.132 -4.05453 4.05453 0.80 0.000652072 0.000602686 0.028918 0.026815 34 1718 36 6.87369e+06 265503 618332. 2139.56 1.56 0.170487 0.147757 25762 151098 -1 1353 22 1116 1746 142600 33133 2.94596 2.94596 -111.915 -2.94596 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0272101 0.0236882 105 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17348 1 0.03 -1 -1 30100 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 16.4 MiB 0.88 913 15639 4952 8936 1751 55.0 MiB 0.21 0.00 3.6323 -121.89 -3.6323 3.6323 0.84 0.000683689 0.000631353 0.0583924 0.0540587 32 2464 24 6.87369e+06 321398 586450. 2029.24 1.06 0.140855 0.124849 25474 144626 -1 2073 24 1461 2584 281254 57771 3.13856 3.13856 -124.168 -3.13856 0 0 744469. 2576.02 0.24 0.10 0.14 -1 -1 0.24 0.0299028 0.0259561 109 34 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17604 1 0.02 -1 -1 30280 -1 -1 29 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55872 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 16.2 MiB 0.66 516 9536 2821 4714 2001 54.6 MiB 0.09 0.00 3.5473 -82.6349 -3.5473 3.5473 0.78 0.000514392 0.000476075 0.0276814 0.0255816 28 1408 22 6.87369e+06 405241 531479. 1839.03 0.91 0.0892133 0.0781475 24610 126494 -1 1243 17 757 1286 101378 23170 2.81396 2.81396 -81.2726 -2.81396 0 0 648988. 2245.63 0.22 0.05 0.14 -1 -1 0.22 0.0173918 0.0151692 87 29 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 16.5 MiB 2.30 974 10332 2610 6542 1180 55.1 MiB 0.18 0.00 4.3434 -128.294 -4.3434 4.3434 0.79 0.000788216 0.000728321 0.0470848 0.0435686 34 2973 20 6.87369e+06 279477 618332. 2139.56 1.91 0.200594 0.175541 25762 151098 -1 2409 18 1444 2552 235233 51456 3.96806 3.96806 -135.268 -3.96806 0 0 787024. 2723.27 0.28 0.09 0.15 -1 -1 0.28 0.0270739 0.0236358 133 72 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.13 17764 1 0.03 -1 -1 30352 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 16.6 MiB 2.61 978 9679 2433 6610 636 55.2 MiB 0.17 0.00 4.12463 -132.597 -4.12463 4.12463 0.78 0.000840473 0.000777998 0.0413388 0.0382498 28 2519 43 6.87369e+06 433189 531479. 1839.03 1.15 0.166514 0.146026 24610 126494 -1 2144 23 1764 2699 230233 50737 3.19976 3.19976 -125.836 -3.19976 0 0 648988. 2245.63 0.21 0.10 0.13 -1 -1 0.21 0.0359282 0.0313733 143 90 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30116 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 16.3 MiB 2.36 1101 11203 3178 6921 1104 55.1 MiB 0.20 0.00 5.42457 -156.316 -5.42457 5.42457 0.78 0.000765508 0.000707919 0.0466609 0.0431669 34 2900 26 6.89349e+06 338252 618332. 2139.56 1.78 0.202515 0.176813 25762 151098 -1 2350 21 1619 2387 194540 44376 4.30515 4.30515 -147.891 -4.30515 0 0 787024. 2723.27 0.27 0.09 0.15 -1 -1 0.27 0.0314799 0.0276091 149 50 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30412 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 16.6 MiB 1.46 1174 12178 3196 7626 1356 55.1 MiB 0.21 0.00 4.90208 -149.95 -4.90208 4.90208 0.80 0.000781682 0.000723944 0.0512459 0.0475046 34 3106 42 6.89349e+06 366440 618332. 2139.56 1.96 0.226426 0.197651 25762 151098 -1 2496 21 2013 3021 272095 57373 4.34073 4.34073 -147.657 -4.34073 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0308678 0.0269854 156 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common -1 -1 -1 -1 -1 0.15 17840 1 0.03 -1 -1 30344 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 16.1 MiB 1.63 1048 13663 4160 7949 1554 54.8 MiB 0.19 0.00 4.2044 -120.612 -4.2044 4.2044 0.78 0.000679634 0.000628412 0.0520984 0.0481525 34 2464 18 6.89349e+06 295971 618332. 2139.56 1.65 0.181395 0.158912 25762 151098 -1 2033 21 1206 1689 155324 33569 3.65845 3.65845 -118.393 -3.65845 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0273038 0.0237986 125 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common -1 -1 -1 -1 -1 0.16 17868 1 0.04 -1 -1 30344 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 16.2 MiB 1.57 1070 14593 4351 8219 2023 54.9 MiB 0.21 0.00 4.83618 -131.951 -4.83618 4.83618 0.79 0.000686718 0.00063539 0.0563645 0.0521831 34 2576 32 6.89349e+06 338252 618332. 2139.56 1.66 0.21054 0.183469 25762 151098 -1 2081 20 1237 2036 175544 36938 3.77646 3.77646 -123.332 -3.77646 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0267852 0.0233736 134 31 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common -1 -1 -1 -1 -1 0.18 17600 1 0.03 -1 -1 30420 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 16.6 MiB 1.26 1121 10839 3086 5720 2033 55.1 MiB 0.19 0.01 5.28221 -151.791 -5.28221 5.28221 0.81 0.000750925 0.000694828 0.0443644 0.041033 38 2745 27 6.89349e+06 324158 678818. 2348.85 4.82 0.312063 0.271246 26626 170182 -1 2393 19 1788 3185 288407 57810 4.39639 4.39639 -145.081 -4.39639 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0276586 0.0242119 142 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common -1 -1 -1 -1 -1 0.19 17760 1 0.03 -1 -1 30452 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 16.6 MiB 1.83 1263 20077 7001 10670 2406 55.1 MiB 0.30 0.01 3.92406 -127.128 -3.92406 3.92406 0.81 0.000605592 0.000552312 0.0615628 0.0562376 34 3547 50 6.89349e+06 465097 618332. 2139.56 2.45 0.248838 0.2175 25762 151098 -1 2727 21 1556 2455 281603 54937 3.43895 3.43895 -127.883 -3.43895 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0309165 0.0269677 162 58 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common -1 -1 -1 -1 -1 0.18 17480 1 0.03 -1 -1 30584 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55904 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 16.1 MiB 1.13 795 13496 4096 7659 1741 54.6 MiB 0.16 0.00 4.14623 -113.724 -4.14623 4.14623 0.78 0.000596968 0.000552393 0.0488545 0.0452342 34 1868 19 6.89349e+06 295971 618332. 2139.56 1.70 0.153954 0.135168 25762 151098 -1 1569 18 1068 1552 152024 31999 3.05536 3.05536 -107.187 -3.05536 0 0 787024. 2723.27 0.31 0.07 0.16 -1 -1 0.31 0.0218142 0.0190571 107 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common -1 -1 -1 -1 -1 0.19 17244 1 0.03 -1 -1 30076 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 16.1 MiB 0.67 908 11759 3095 6971 1693 54.6 MiB 0.15 0.00 3.40307 -102.549 -3.40307 3.40307 0.78 0.00064959 0.000600011 0.0382911 0.0353539 26 2403 22 6.89349e+06 451003 503264. 1741.40 1.26 0.114967 0.101091 24322 120374 -1 2050 18 1102 1922 177973 38280 2.61161 2.61161 -98.9938 -2.61161 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0222623 0.0193921 119 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common -1 -1 -1 -1 -1 0.18 17880 1 0.03 -1 -1 30200 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 16.5 MiB 1.49 1042 10703 3845 4978 1880 54.9 MiB 0.17 0.00 3.68945 -124.167 -3.68945 3.68945 0.79 0.000697829 0.000644453 0.0437393 0.0404827 34 2656 22 6.89349e+06 281877 618332. 2139.56 1.74 0.179049 0.156148 25762 151098 -1 2190 20 1584 2134 222783 45513 3.33016 3.33016 -122.167 -3.33016 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0268147 0.0233911 130 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common -1 -1 -1 -1 -1 0.18 17324 1 0.03 -1 -1 30064 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 16.1 MiB 1.92 928 7914 1841 5211 862 54.8 MiB 0.14 0.00 4.05148 -133.476 -4.05148 4.05148 0.79 0.000693168 0.000642297 0.0323748 0.0300096 34 2434 23 6.89349e+06 253689 618332. 2139.56 1.58 0.16748 0.145817 25762 151098 -1 1974 16 988 1317 137346 28549 3.30611 3.30611 -127.849 -3.30611 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0220162 0.0192158 120 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common -1 -1 -1 -1 -1 0.18 17612 1 0.03 -1 -1 30528 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56068 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 16.1 MiB 1.87 867 6563 1487 4637 439 54.8 MiB 0.06 0.00 4.47797 -127.666 -4.47797 4.47797 0.79 0.000290948 0.000266427 0.0120783 0.0110626 34 2302 19 6.89349e+06 295971 618332. 2139.56 1.26 0.0713784 0.0612348 25762 151098 -1 1991 20 1260 1682 158798 33426 3.43465 3.43465 -122.024 -3.43465 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0257813 0.0224683 124 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common -1 -1 -1 -1 -1 0.19 17304 1 0.03 -1 -1 30108 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 16.1 MiB 1.38 849 7781 1935 5506 340 54.7 MiB 0.12 0.00 3.6807 -111.961 -3.6807 3.6807 0.79 0.000643874 0.000596371 0.0305726 0.0282861 34 2149 22 6.89349e+06 239595 618332. 2139.56 1.85 0.157189 0.136548 25762 151098 -1 1845 18 1090 1524 130872 29496 3.13401 3.13401 -114.433 -3.13401 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0225864 0.0197212 108 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 16.4 MiB 1.79 1060 16407 4994 8930 2483 54.9 MiB 0.26 0.00 4.09068 -131.143 -4.09068 4.09068 0.79 0.000755547 0.000698338 0.0674987 0.0624582 34 2868 25 6.89349e+06 324158 618332. 2139.56 1.95 0.220731 0.193966 25762 151098 -1 2349 21 1695 2567 243888 51563 3.23296 3.23296 -123.491 -3.23296 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0302385 0.0264265 143 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 16.6 MiB 1.70 1222 15298 4935 8519 1844 55.1 MiB 0.24 0.00 5.57191 -161.898 -5.57191 5.57191 0.79 0.000779248 0.000720383 0.0636055 0.0588071 36 2787 20 6.89349e+06 338252 648988. 2245.63 1.87 0.180885 0.159688 26050 158493 -1 2471 21 1644 2293 218877 43654 4.48145 4.48145 -153.522 -4.48145 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0308966 0.0270236 153 61 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common -1 -1 -1 -1 -1 0.19 17560 1 0.03 -1 -1 30424 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55840 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 16.1 MiB 1.69 847 11909 3522 6229 2158 54.5 MiB 0.14 0.00 3.19582 -98.7926 -3.19582 3.19582 0.82 0.000588003 0.000543953 0.0431956 0.0399967 34 1996 21 6.89349e+06 253689 618332. 2139.56 1.51 0.157943 0.13792 25762 151098 -1 1687 20 999 1417 122855 26518 2.97046 2.97046 -99.9161 -2.97046 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.024451 0.0212988 102 27 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common -1 -1 -1 -1 -1 0.20 17824 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 16.6 MiB 1.93 1270 15103 4761 8086 2256 55.1 MiB 0.24 0.00 4.1162 -136.486 -4.1162 4.1162 0.89 0.000783599 0.000724792 0.0630786 0.0583099 38 2902 23 6.89349e+06 338252 678818. 2348.85 2.01 0.219404 0.19264 26626 170182 -1 2643 21 2009 3247 300586 59062 3.57525 3.57525 -132.089 -3.57525 0 0 902133. 3121.57 0.27 0.11 0.17 -1 -1 0.27 0.0319993 0.0279861 159 58 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30116 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 16.5 MiB 1.70 1061 15017 4935 7452 2630 54.9 MiB 0.21 0.00 4.12104 -133.123 -4.12104 4.12104 0.79 0.00074761 0.000692248 0.0618783 0.0573104 34 2751 22 6.89349e+06 310065 618332. 2139.56 1.72 0.175169 0.154659 25762 151098 -1 2301 19 1459 2161 208814 44093 2.98516 2.98516 -119.03 -2.98516 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.02754 0.0241013 142 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common -1 -1 -1 -1 -1 0.18 17816 1 0.03 -1 -1 30308 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 16.5 MiB 1.53 1121 14407 4796 7561 2050 54.9 MiB 0.21 0.00 3.60799 -127.319 -3.60799 3.60799 0.78 0.000710158 0.000656883 0.0574978 0.053196 36 2473 41 6.89349e+06 295971 648988. 2245.63 2.16 0.216594 0.189517 26050 158493 -1 2243 19 1528 2068 189669 38790 3.15176 3.15176 -122.813 -3.15176 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.026247 0.0229387 131 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common -1 -1 -1 -1 -1 0.12 17204 1 0.03 -1 -1 30108 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55844 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 16.0 MiB 0.92 565 9205 3754 4929 522 54.5 MiB 0.09 0.00 2.67033 -85.3827 -2.67033 2.67033 0.79 0.000535769 0.000494803 0.0319756 0.0295583 40 1238 17 6.89349e+06 211408 706193. 2443.58 3.77 0.159536 0.138183 26914 176310 -1 1221 20 744 875 95593 21663 2.26447 2.26447 -85.8781 -2.26447 0 0 926341. 3205.33 0.28 0.05 0.17 -1 -1 0.28 0.0206112 0.0178911 82 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common -1 -1 -1 -1 -1 0.19 17484 1 0.03 -1 -1 30420 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 16.3 MiB 1.97 986 14322 4290 8044 1988 54.8 MiB 0.19 0.00 4.76552 -144.771 -4.76552 4.76552 0.79 0.000663296 0.000613236 0.0555454 0.0514124 36 2182 23 6.89349e+06 267783 648988. 2245.63 3.85 0.234239 0.204145 26050 158493 -1 1935 20 1077 1666 155241 32652 3.72966 3.72966 -132.609 -3.72966 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0255753 0.0223127 117 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common -1 -1 -1 -1 -1 0.14 17544 1 0.03 -1 -1 30344 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 16.6 MiB 1.01 1121 13823 3432 8585 1806 55.1 MiB 0.19 0.00 4.71322 -150.624 -4.71322 4.71322 0.79 0.000771502 0.000713493 0.0494804 0.0458004 34 2705 21 6.89349e+06 479191 618332. 2139.56 1.64 0.165167 0.145094 25762 151098 -1 2337 20 1450 2226 217266 44909 4.11354 4.11354 -144.112 -4.11354 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.028904 0.0252536 151 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common -1 -1 -1 -1 -1 0.19 17824 1 0.03 -1 -1 30324 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 16.6 MiB 1.27 1277 12375 3467 7863 1045 55.1 MiB 0.21 0.00 4.43295 -138.206 -4.43295 4.43295 0.79 0.000791421 0.000732162 0.0539287 0.0499493 34 3317 28 6.89349e+06 324158 618332. 2139.56 2.32 0.188172 0.165418 25762 151098 -1 2685 23 1988 3084 282774 57936 4.1183 4.1183 -145.964 -4.1183 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0340539 0.0296836 155 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common -1 -1 -1 -1 -1 0.18 17596 1 0.03 -1 -1 30556 -1 -1 19 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55488 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 15.6 MiB 1.09 448 11324 4682 5071 1571 54.2 MiB 0.10 0.00 2.70371 -73.039 -2.70371 2.70371 0.83 0.000473832 0.000437804 0.0341173 0.031515 36 1359 25 6.89349e+06 267783 648988. 2245.63 1.79 0.127464 0.110931 26050 158493 -1 1096 26 911 1105 115271 27252 2.27195 2.27195 -71.7362 -2.27195 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.02211 0.0190991 76 30 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common -1 -1 -1 -1 -1 0.18 17272 1 0.03 -1 -1 30224 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56004 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 16.2 MiB 0.75 989 9879 2312 6247 1320 54.7 MiB 0.15 0.01 4.42392 -127.052 -4.42392 4.42392 0.85 0.000677276 0.000627395 0.0354557 0.0327612 34 2302 20 6.89349e+06 324158 618332. 2139.56 1.68 0.165531 0.144167 25762 151098 -1 2025 19 1082 2022 175032 37394 3.92365 3.92365 -124.871 -3.92365 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0246841 0.0215642 119 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common -1 -1 -1 -1 -1 0.16 17008 1 0.02 -1 -1 30100 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55420 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 15.7 MiB 0.33 477 9356 3828 5185 343 54.1 MiB 0.08 0.00 2.35052 -74.7133 -2.35052 2.35052 0.78 0.000457823 0.000421309 0.0280158 0.0257807 30 1331 30 6.89349e+06 169126 556674. 1926.21 0.91 0.0879319 0.0769543 25186 138497 -1 924 17 552 705 49755 12854 2.00476 2.00476 -72.3791 -2.00476 0 0 706193. 2443.58 0.23 0.04 0.14 -1 -1 0.23 0.0155767 0.013573 65 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common -1 -1 -1 -1 -1 0.18 17372 1 0.03 -1 -1 30068 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 16.2 MiB 1.43 1046 9966 2582 6701 683 54.8 MiB 0.15 0.00 4.91481 -138.303 -4.91481 4.91481 0.79 0.000694499 0.000643219 0.0400186 0.0370579 34 2325 19 6.89349e+06 281877 618332. 2139.56 1.62 0.172452 0.150739 25762 151098 -1 1962 18 957 1429 114565 25342 3.57006 3.57006 -122.351 -3.57006 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0253543 0.0223255 125 24 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common -1 -1 -1 -1 -1 0.18 17232 1 0.03 -1 -1 30564 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56024 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 16.1 MiB 0.64 1030 18239 5331 10544 2364 54.7 MiB 0.23 0.00 3.48935 -111.917 -3.48935 3.48935 0.79 0.000690312 0.00063866 0.0606289 0.0560412 30 2225 23 6.89349e+06 436909 556674. 1926.21 1.09 0.144317 0.128013 25186 138497 -1 1880 19 972 1696 128016 27044 2.60651 2.60651 -101.777 -2.60651 0 0 706193. 2443.58 0.23 0.07 0.15 -1 -1 0.23 0.0255915 0.0223903 130 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common -1 -1 -1 -1 -1 0.19 17640 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 16.5 MiB 1.93 1031 15255 4057 8092 3106 54.9 MiB 0.22 0.00 4.82008 -133.501 -4.82008 4.82008 0.78 0.000743675 0.000687603 0.0615408 0.0569308 34 3081 28 6.89349e+06 324158 618332. 2139.56 2.10 0.217158 0.190335 25762 151098 -1 2359 19 1593 2434 199578 46789 4.07706 4.07706 -131.861 -4.07706 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0275542 0.0241343 142 50 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 16.2 MiB 1.52 1042 13556 4378 7182 1996 54.8 MiB 0.17 0.00 3.7536 -126.104 -3.7536 3.7536 0.78 0.000659006 0.000610204 0.0529039 0.0489095 34 2374 27 6.89349e+06 239595 618332. 2139.56 1.77 0.186209 0.162866 25762 151098 -1 2140 22 1280 1823 189398 39167 3.13396 3.13396 -122.884 -3.13396 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0271644 0.0236456 112 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30500 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 16.2 MiB 1.59 868 13092 4092 7012 1988 54.7 MiB 0.17 0.00 4.03552 -117.607 -4.03552 4.03552 0.79 0.000626523 0.000580483 0.0496668 0.0459835 34 2199 20 6.89349e+06 239595 618332. 2139.56 1.60 0.16854 0.147307 25762 151098 -1 1919 19 946 1553 148941 30971 3.3025 3.3025 -115.099 -3.3025 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0228258 0.0198812 104 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common -1 -1 -1 -1 -1 0.19 17216 1 0.03 -1 -1 30116 -1 -1 20 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 16.2 MiB 1.44 757 6960 1669 4834 457 54.6 MiB 0.11 0.00 4.17394 -114.526 -4.17394 4.17394 0.78 0.000605943 0.000561059 0.0263801 0.0244561 30 2118 23 6.89349e+06 281877 556674. 1926.21 1.07 0.0999092 0.0874194 25186 138497 -1 1614 16 923 1562 111332 23948 3.11125 3.11125 -106.205 -3.11125 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0196945 0.017232 107 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common -1 -1 -1 -1 -1 0.17 17072 1 0.03 -1 -1 30348 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55832 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 15.8 MiB 0.57 835 13031 3792 7568 1671 54.5 MiB 0.16 0.00 3.90738 -121.629 -3.90738 3.90738 0.79 0.000618711 0.000571557 0.0479406 0.0443231 30 2112 18 6.89349e+06 239595 556674. 1926.21 2.40 0.18801 0.163958 25186 138497 -1 1789 21 1103 1892 145578 31191 2.82006 2.82006 -112.77 -2.82006 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0246104 0.0213905 101 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common -1 -1 -1 -1 -1 0.18 17344 1 0.03 -1 -1 30112 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55964 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 16.2 MiB 1.37 912 9006 2499 5943 564 54.7 MiB 0.11 0.00 3.63671 -112.55 -3.63671 3.63671 0.82 0.000464283 0.000416813 0.0249435 0.0227055 30 2225 23 6.89349e+06 253689 556674. 1926.21 1.06 0.101277 0.0880708 25186 138497 -1 1877 17 967 1423 107801 23900 2.92736 2.92736 -111.081 -2.92736 0 0 706193. 2443.58 0.25 0.06 0.14 -1 -1 0.25 0.0218741 0.0191501 108 30 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common -1 -1 -1 -1 -1 0.19 17500 1 0.03 -1 -1 30360 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55948 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 16.1 MiB 1.61 982 10163 2807 6505 851 54.6 MiB 0.14 0.00 3.48715 -105.954 -3.48715 3.48715 0.81 0.000650707 0.000602578 0.0390931 0.0361987 36 2182 23 6.89349e+06 310065 648988. 2245.63 1.80 0.162134 0.141104 26050 158493 -1 1893 18 1075 1497 132676 28135 2.53636 2.53636 -101.771 -2.53636 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0231092 0.0201407 120 54 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common -1 -1 -1 -1 -1 0.20 17636 1 0.03 -1 -1 30432 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 16.7 MiB 1.43 1339 15137 4138 9246 1753 55.2 MiB 0.26 0.01 4.47915 -132.321 -4.47915 4.47915 0.82 0.00260183 0.00242615 0.0701298 0.0648628 34 3051 48 6.89349e+06 352346 618332. 2139.56 2.19 0.255644 0.224598 25762 151098 -1 2486 14 1264 2001 159776 34161 3.71566 3.71566 -127.87 -3.71566 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0238398 0.0210356 159 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common -1 -1 -1 -1 -1 0.18 17620 1 0.03 -1 -1 30220 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 16.6 MiB 1.79 1289 13933 4065 8243 1625 55.1 MiB 0.24 0.00 4.58977 -156.464 -4.58977 4.58977 0.74 0.000824635 0.000763012 0.0615789 0.0569863 36 3058 26 6.89349e+06 338252 648988. 2245.63 2.00 0.228083 0.200247 26050 158493 -1 2714 20 2098 2952 287483 58492 3.68805 3.68805 -147.233 -3.68805 0 0 828058. 2865.25 0.30 0.11 0.15 -1 -1 0.30 0.0328097 0.0288112 168 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common -1 -1 -1 -1 -1 0.19 17328 1 0.03 -1 -1 30052 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 16.2 MiB 1.07 765 12506 3068 7484 1954 54.7 MiB 0.16 0.00 3.98848 -116.551 -3.98848 3.98848 0.78 0.000649244 0.000600884 0.0482202 0.0446537 34 2023 27 6.89349e+06 253689 618332. 2139.56 1.63 0.153674 0.134832 25762 151098 -1 1804 21 1273 1965 195807 41775 3.00756 3.00756 -110.762 -3.00756 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.025521 0.0221609 109 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common -1 -1 -1 -1 -1 0.19 17528 1 0.03 -1 -1 30412 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 16.6 MiB 1.91 1249 10813 2744 7185 884 55.1 MiB 0.18 0.01 4.24063 -135.696 -4.24063 4.24063 0.78 0.000792452 0.000733154 0.0460442 0.0426143 34 3168 46 6.89349e+06 352346 618332. 2139.56 2.00 0.231036 0.201288 25762 151098 -1 2556 18 1541 2256 224074 45084 3.65835 3.65835 -135.604 -3.65835 0 0 787024. 2723.27 0.22 0.05 0.10 -1 -1 0.22 0.0143217 0.0126485 160 61 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common -1 -1 -1 -1 -1 0.19 17768 1 0.03 -1 -1 30436 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 16.6 MiB 2.26 1247 16273 5220 8383 2670 55.3 MiB 0.28 0.01 5.45989 -162.138 -5.45989 5.45989 0.79 0.000800465 0.000740703 0.0695827 0.0644115 36 3297 30 6.89349e+06 352346 648988. 2245.63 2.55 0.237403 0.208478 26050 158493 -1 2695 21 1897 2794 281166 55567 4.76158 4.76158 -162.233 -4.76158 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0320188 0.0280502 163 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common -1 -1 -1 -1 -1 0.20 17872 1 0.03 -1 -1 30420 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 16.6 MiB 2.02 1201 15298 5197 6778 3323 55.1 MiB 0.23 0.01 5.99918 -171.098 -5.99918 5.99918 0.78 0.000805915 0.00074581 0.0660523 0.0611661 36 3654 35 6.89349e+06 352346 648988. 2245.63 3.47 0.246265 0.21624 26050 158493 -1 2564 21 1793 2652 231705 51179 5.15654 5.15654 -165.565 -5.15654 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0325435 0.0284969 166 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30380 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 16.5 MiB 1.84 1173 16983 5747 8489 2747 55.2 MiB 0.27 0.00 4.05378 -126.496 -4.05378 4.05378 0.78 0.000768165 0.000706976 0.0704729 0.0652408 34 3035 25 6.89349e+06 338252 618332. 2139.56 1.78 0.188965 0.167033 25762 151098 -1 2528 20 1842 2683 245407 51883 3.15186 3.15186 -119.284 -3.15186 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0293844 0.0257187 148 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common -1 -1 -1 -1 -1 0.18 17636 1 0.03 -1 -1 30432 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 16.2 MiB 1.71 909 14358 5137 7007 2214 54.8 MiB 0.19 0.00 4.5826 -118.27 -4.5826 4.5826 0.79 0.0006734 0.000622953 0.0547396 0.0506581 34 2734 45 6.89349e+06 281877 618332. 2139.56 2.10 0.20962 0.183061 25762 151098 -1 2078 24 1228 1796 184414 39176 3.7789 3.7789 -115.84 -3.7789 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0298904 0.0259676 120 27 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common -1 -1 -1 -1 -1 0.21 17900 1 0.03 -1 -1 30548 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 17.0 MiB 1.96 1620 14567 4267 9425 875 55.5 MiB 0.27 0.01 5.31355 -171.75 -5.31355 5.31355 0.78 0.000947098 0.000878219 0.0670329 0.0621441 36 4072 23 6.89349e+06 436909 648988. 2245.63 3.28 0.267724 0.235471 26050 158493 -1 3370 20 2494 3810 363649 72258 4.50875 4.50875 -166.78 -4.50875 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.0363667 0.031859 203 87 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common -1 -1 -1 -1 -1 0.18 17500 1 0.03 -1 -1 30140 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55880 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 16.1 MiB 1.44 935 8481 2198 5465 818 54.6 MiB 0.12 0.00 3.78206 -112.802 -3.78206 3.78206 0.78 0.000613863 0.000567971 0.0316809 0.029315 34 2160 17 6.89349e+06 253689 618332. 2139.56 1.45 0.118905 0.103896 25762 151098 -1 2004 20 1186 1621 152392 32274 2.85716 2.85716 -106.558 -2.85716 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0240979 0.0210015 106 28 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30252 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 16.5 MiB 1.29 1159 12749 3392 7336 2021 54.9 MiB 0.20 0.00 4.75882 -144.088 -4.75882 4.75882 0.79 0.000747257 0.000692369 0.0528251 0.0489424 30 3089 23 6.89349e+06 324158 556674. 1926.21 1.14 0.143118 0.126792 25186 138497 -1 2397 17 1368 2101 181011 35793 4.0599 4.0599 -133.7 -4.0599 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0255219 0.0224466 140 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30220 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 16.5 MiB 1.90 1195 16023 5389 8481 2153 55.2 MiB 0.25 0.00 4.23925 -128.06 -4.23925 4.23925 0.79 0.00076514 0.000708198 0.0664016 0.0614939 36 2899 23 6.89349e+06 324158 648988. 2245.63 2.32 0.218053 0.191636 26050 158493 -1 2493 21 1379 2266 219413 45856 3.78085 3.78085 -128.303 -3.78085 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0303994 0.0265721 149 53 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common -1 -1 -1 -1 -1 0.18 17068 1 0.03 -1 -1 30104 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 16.1 MiB 0.54 1056 13758 4414 7436 1908 54.7 MiB 0.20 0.00 4.26729 -130.845 -4.26729 4.26729 0.79 0.00068374 0.000631899 0.0492913 0.0455803 30 2439 19 6.89349e+06 366440 556674. 1926.21 1.01 0.127679 0.113024 25186 138497 -1 2178 17 1084 1982 179895 35124 3.4587 3.4587 -124.08 -3.4587 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0229941 0.0201146 123 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common -1 -1 -1 -1 -1 0.20 17768 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 16.6 MiB 1.57 1207 10455 2579 6753 1123 55.1 MiB 0.20 0.00 4.44301 -131.225 -4.44301 4.44301 0.79 0.000762989 0.000705895 0.0477428 0.0441753 36 2530 28 6.89349e+06 324158 648988. 2245.63 2.08 0.205045 0.179197 26050 158493 -1 2334 19 1387 1968 179068 36516 3.02916 3.02916 -118.026 -3.02916 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0281691 0.0246116 148 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common -1 -1 -1 -1 -1 0.20 17764 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 16.7 MiB 1.97 1187 14518 4859 6825 2834 55.3 MiB 0.23 0.01 4.27293 -132.833 -4.27293 4.27293 0.79 0.000777275 0.000713937 0.0603512 0.0558102 36 2917 26 6.89349e+06 338252 648988. 2245.63 3.97 0.284966 0.248147 26050 158493 -1 2424 20 1565 2391 193078 42305 3.64125 3.64125 -128.972 -3.64125 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0302256 0.0264641 154 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common -1 -1 -1 -1 -1 0.20 17588 1 0.03 -1 -1 30440 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 16.7 MiB 1.73 1246 9336 2230 6513 593 55.3 MiB 0.19 0.01 4.12904 -136.238 -4.12904 4.12904 0.79 0.000813798 0.000753404 0.0404248 0.0374188 34 3453 26 6.89349e+06 366440 618332. 2139.56 2.15 0.205772 0.17945 25762 151098 -1 2648 22 1898 2627 237765 50821 3.23311 3.23311 -127.805 -3.23311 0 0 787024. 2723.27 0.26 0.10 0.15 -1 -1 0.26 0.0337495 0.0295258 164 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common -1 -1 -1 -1 -1 0.19 17492 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 16.2 MiB 1.42 1001 8641 2091 5830 720 54.8 MiB 0.13 0.00 4.50695 -131.282 -4.50695 4.50695 0.87 0.000709664 0.000656266 0.0271588 0.0248211 34 2525 20 6.89349e+06 295971 618332. 2139.56 1.68 0.16123 0.139918 25762 151098 -1 2138 19 1171 1796 149066 33377 3.94276 3.94276 -129.585 -3.94276 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0255807 0.0223363 128 24 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common -1 -1 -1 -1 -1 0.19 17472 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 16.3 MiB 1.47 1119 14450 4565 7826 2059 54.9 MiB 0.21 0.00 4.84598 -139.753 -4.84598 4.84598 0.78 0.000721487 0.000667465 0.0571194 0.0528397 34 2671 46 6.89349e+06 310065 618332. 2139.56 2.09 0.226812 0.198815 25762 151098 -1 2321 20 1429 2038 210418 42638 3.73036 3.73036 -129.617 -3.73036 0 0 787024. 2723.27 0.28 0.09 0.18 -1 -1 0.28 0.0283727 0.0248514 135 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common -1 -1 -1 -1 -1 0.21 17744 1 0.03 -1 -1 30368 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 16.6 MiB 1.18 1292 15447 4870 8199 2378 55.1 MiB 0.25 0.01 4.72898 -145.597 -4.72898 4.72898 0.79 0.000792465 0.00073378 0.0664152 0.0614989 34 3387 32 6.89349e+06 338252 618332. 2139.56 1.92 0.233671 0.205042 25762 151098 -1 2716 21 1560 2468 240857 47709 3.7643 3.7643 -137.875 -3.7643 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.031742 0.0277481 156 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common -1 -1 -1 -1 -1 0.22 17824 1 0.03 -1 -1 30244 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 16.6 MiB 2.19 1374 13553 4031 8630 892 55.2 MiB 0.20 0.00 4.3848 -136.299 -4.3848 4.3848 0.63 0.000815473 0.000754545 0.0469191 0.0432832 36 3611 23 6.89349e+06 352346 648988. 2245.63 2.55 0.208559 0.182131 26050 158493 -1 3107 22 2148 3175 333393 64914 3.7649 3.7649 -135.968 -3.7649 0 0 828058. 2865.25 0.30 0.12 0.16 -1 -1 0.30 0.0326093 0.0284805 166 77 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common -1 -1 -1 -1 -1 0.18 17280 1 0.03 -1 -1 30160 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55844 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 15.8 MiB 1.41 841 8022 2262 5194 566 54.5 MiB 0.11 0.00 3.56029 -109.346 -3.56029 3.56029 0.79 0.00060789 0.000562375 0.0307286 0.0284279 36 1879 21 6.89349e+06 211408 648988. 2245.63 1.79 0.148004 0.128479 26050 158493 -1 1766 18 852 1314 115264 25455 2.63981 2.63981 -99.9879 -2.63981 0 0 828058. 2865.25 0.23 0.03 0.10 -1 -1 0.23 0.0110726 0.00973233 96 23 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common -1 -1 -1 -1 -1 0.19 17664 1 0.03 -1 -1 30364 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 16.6 MiB 1.16 1155 11979 3435 7133 1411 55.0 MiB 0.19 0.00 4.30741 -149.256 -4.30741 4.30741 0.78 0.000733299 0.000677411 0.0502075 0.0463894 34 2798 41 6.89349e+06 281877 618332. 2139.56 1.90 0.214419 0.186871 25762 151098 -1 2317 20 1881 2526 236930 48455 3.4952 3.4952 -141.789 -3.4952 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0280315 0.0244733 138 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common -1 -1 -1 -1 -1 0.17 17764 1 0.03 -1 -1 30300 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 16.6 MiB 1.73 1337 12167 3186 7820 1161 55.2 MiB 0.23 0.00 5.53202 -162.159 -5.53202 5.53202 0.78 0.000841096 0.000778639 0.0547798 0.0507612 34 3541 44 6.89349e+06 352346 618332. 2139.56 2.16 0.24949 0.218363 25762 151098 -1 2988 22 1999 3161 283539 58507 4.6899 4.6899 -161.719 -4.6899 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0348315 0.0305423 168 31 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common -1 -1 -1 -1 -1 0.18 17468 1 0.04 -1 -1 30480 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56124 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 16.4 MiB 1.66 981 15773 5650 7566 2557 54.8 MiB 0.24 0.00 4.48922 -138.529 -4.48922 4.48922 0.78 0.00075233 0.000695365 0.0655043 0.0606305 36 2731 25 6.89349e+06 310065 648988. 2245.63 2.27 0.220312 0.193627 26050 158493 -1 2216 20 1657 2295 215721 46661 3.15446 3.15446 -123.423 -3.15446 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0289891 0.0253723 144 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common -1 -1 -1 -1 -1 0.18 17204 1 0.03 -1 -1 30388 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 16.1 MiB 1.25 892 10781 3144 6961 676 54.7 MiB 0.15 0.00 4.18863 -126.692 -4.18863 4.18863 0.87 0.000644825 0.000593561 0.0366086 0.0338642 34 2225 40 6.89349e+06 380534 618332. 2139.56 1.81 0.151136 0.131831 25762 151098 -1 1876 19 1123 1724 156301 33699 3.23935 3.23935 -118.319 -3.23935 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0235502 0.0204863 118 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common -1 -1 -1 -1 -1 0.21 18028 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 17.0 MiB 2.79 1573 16207 5526 8946 1735 55.7 MiB 0.31 0.01 6.36902 -185.345 -6.36902 6.36902 0.81 0.000812384 0.000763076 0.0730101 0.0675712 36 3708 43 6.89349e+06 380534 648988. 2245.63 4.52 0.360222 0.314286 26050 158493 -1 3055 20 2226 3590 322328 64675 5.07229 5.07229 -173.869 -5.07229 0 0 828058. 2865.25 0.27 0.11 0.16 -1 -1 0.27 0.0350168 0.0306582 188 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 16.3 MiB 1.25 1035 15151 5099 7891 2161 55.0 MiB 0.22 0.00 4.71732 -144.131 -4.71732 4.71732 0.79 0.000748248 0.000692027 0.0633193 0.0586024 34 2593 25 6.89349e+06 295971 618332. 2139.56 1.67 0.213193 0.187431 25762 151098 -1 2111 21 1539 2185 178777 38646 3.76686 3.76686 -133.698 -3.76686 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0296067 0.0258628 139 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common -1 -1 -1 -1 -1 0.17 17216 1 0.03 -1 -1 30504 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 15.8 MiB 0.50 851 9838 2581 6658 599 54.4 MiB 0.12 0.00 3.70876 -106.292 -3.70876 3.70876 0.78 0.000580032 0.000537063 0.0309851 0.0286626 26 2052 29 6.89349e+06 338252 503264. 1741.40 1.23 0.10683 0.0934846 24322 120374 -1 1860 49 1327 2210 662031 396460 3.06361 3.06361 -108.905 -3.06361 0 0 618332. 2139.56 0.21 0.25 0.12 -1 -1 0.21 0.0474681 0.0407485 94 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common -1 -1 -1 -1 -1 0.20 17588 1 0.03 -1 -1 30068 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 16.6 MiB 1.62 1097 14679 5479 6928 2272 55.1 MiB 0.22 0.00 5.34057 -137.648 -5.34057 5.34057 0.78 0.000781575 0.000723987 0.0625399 0.0579186 36 2898 29 6.89349e+06 324158 648988. 2245.63 3.87 0.26699 0.233296 26050 158493 -1 2343 22 1283 2430 208993 44115 4.31715 4.31715 -136.909 -4.31715 0 0 828058. 2865.25 0.26 0.09 0.13 -1 -1 0.26 0.0310083 0.0272802 149 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common -1 -1 -1 -1 -1 0.18 17156 1 0.03 -1 -1 30168 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 16.0 MiB 0.57 790 8543 2077 5745 721 54.6 MiB 0.07 0.00 3.60525 -112.744 -3.60525 3.60525 0.72 0.000262032 0.000239338 0.013582 0.0123843 34 1965 20 6.89349e+06 267783 618332. 2139.56 1.46 0.129943 0.111838 25762 151098 -1 1867 18 1136 1994 182191 38924 2.89096 2.89096 -110.716 -2.89096 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0213217 0.0186103 98 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common -1 -1 -1 -1 -1 0.14 17600 1 0.03 -1 -1 30480 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55776 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 16.0 MiB 1.16 900 11118 2938 7199 981 54.5 MiB 0.17 0.00 4.05078 -116.815 -4.05078 4.05078 0.78 0.000642528 0.000595002 0.0424723 0.0393539 34 2166 46 6.89349e+06 281877 618332. 2139.56 1.83 0.191232 0.166366 25762 151098 -1 1864 15 1106 1550 148460 31964 3.00716 3.00716 -111.504 -3.00716 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0197562 0.0173049 113 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common -1 -1 -1 -1 -1 0.16 17824 1 0.03 -1 -1 30396 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 16.6 MiB 2.66 1189 14871 4290 8850 1731 55.1 MiB 0.23 0.00 4.52181 -133.377 -4.52181 4.52181 0.81 0.000756778 0.000700255 0.0609176 0.0563731 34 2898 45 6.89349e+06 366440 618332. 2139.56 1.89 0.235181 0.205784 25762 151098 -1 2270 18 1429 2066 166279 36344 3.52234 3.52234 -123.546 -3.52234 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0270919 0.0237525 154 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common -1 -1 -1 -1 -1 0.19 17780 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 16.6 MiB 1.73 1209 16340 4806 9520 2014 55.0 MiB 0.25 0.00 5.15268 -160.098 -5.15268 5.15268 0.78 0.000769149 0.000710734 0.0695867 0.0644063 36 2870 26 6.89349e+06 310065 648988. 2245.63 2.15 0.226832 0.199366 26050 158493 -1 2482 19 1599 2344 226236 45501 4.21705 4.21705 -150.98 -4.21705 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0287313 0.0251904 151 54 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common -1 -1 -1 -1 -1 0.19 17744 1 0.03 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 16.5 MiB 1.39 1151 8919 1954 6160 805 54.9 MiB 0.16 0.00 5.44797 -153.538 -5.44797 5.44797 0.81 0.000766575 0.000709764 0.0383473 0.0355161 38 2766 21 6.89349e+06 324158 678818. 2348.85 4.11 0.242164 0.210951 26626 170182 -1 2470 19 1608 2451 241684 48348 4.56669 4.56669 -149.824 -4.56669 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0283655 0.0248202 150 51 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common -1 -1 -1 -1 -1 0.12 17400 1 0.03 -1 -1 30336 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55980 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 16.2 MiB 1.43 948 12416 4023 6894 1499 54.7 MiB 0.17 0.00 4.44301 -126.97 -4.44301 4.44301 0.78 0.00064536 0.000597283 0.0491732 0.0455155 32 2425 31 6.89349e+06 211408 586450. 2029.24 1.56 0.150356 0.132081 25474 144626 -1 2070 18 1101 1550 193559 45742 3.30235 3.30235 -117.204 -3.30235 0 0 744469. 2576.02 0.25 0.07 0.15 -1 -1 0.25 0.018892 0.0165706 105 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common -1 -1 -1 -1 -1 0.20 17776 1 0.03 -1 -1 30360 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 16.4 MiB 1.41 1059 14483 4851 7224 2408 55.0 MiB 0.19 0.00 3.67535 -124.181 -3.67535 3.67535 0.78 0.000695666 0.00064299 0.0582178 0.0538498 34 2620 21 6.89349e+06 281877 618332. 2139.56 1.78 0.19636 0.172313 25762 151098 -1 2184 20 1565 2177 190861 40408 3.15235 3.15235 -122.228 -3.15235 0 0 787024. 2723.27 0.26 0.08 0.15 -1 -1 0.26 0.0254806 0.0224468 131 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common -1 -1 -1 -1 -1 0.19 17724 1 0.03 -1 -1 30348 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 16.5 MiB 1.85 1024 15493 4307 9520 1666 54.9 MiB 0.21 0.00 3.806 -108.658 -3.806 3.806 0.78 0.000716285 0.000662887 0.0594073 0.0549874 34 2511 22 6.89349e+06 366440 618332. 2139.56 1.76 0.169642 0.149584 25762 151098 -1 1996 18 1308 2013 164221 35650 3.36441 3.36441 -112.814 -3.36441 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0256069 0.0224361 142 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common -1 -1 -1 -1 -1 0.19 17572 1 0.02 -1 -1 30376 -1 -1 23 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55868 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 16.0 MiB 1.05 918 12323 3941 6490 1892 54.6 MiB 0.15 0.00 4.39675 -112.391 -4.39675 4.39675 0.78 0.000636818 0.00058998 0.0456617 0.0422935 34 2258 19 6.89349e+06 324158 618332. 2139.56 1.54 0.167335 0.146281 25762 151098 -1 1875 18 983 1637 145509 29659 3.49006 3.49006 -108.345 -3.49006 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0230519 0.0200668 119 27 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common -1 -1 -1 -1 -1 0.20 17468 1 0.03 -1 -1 30528 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56032 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 16.1 MiB 2.08 924 9083 2508 6037 538 54.7 MiB 0.15 0.00 4.56532 -133.276 -4.56532 4.56532 0.78 0.000692033 0.000640556 0.0371386 0.0343747 34 2691 25 6.89349e+06 295971 618332. 2139.56 2.10 0.175647 0.152952 25762 151098 -1 2178 21 1788 2503 248736 50810 3.84214 3.84214 -135.517 -3.84214 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0275038 0.0239505 130 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common -1 -1 -1 -1 -1 0.19 17840 1 0.03 -1 -1 30112 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 16.6 MiB 1.79 1216 6123 1500 4259 364 55.0 MiB 0.12 0.00 3.91264 -134.898 -3.91264 3.91264 0.78 0.000733018 0.000678466 0.0265492 0.0245904 36 2678 28 6.89349e+06 281877 648988. 2245.63 2.33 0.174895 0.151663 26050 158493 -1 2324 19 1558 2116 208436 41862 3.07466 3.07466 -123.771 -3.07466 0 0 828058. 2865.25 0.25 0.08 0.16 -1 -1 0.25 0.0268836 0.0235179 138 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common -1 -1 -1 -1 -1 0.19 17336 1 0.03 -1 -1 30488 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 16.2 MiB 0.64 941 8614 1787 6108 719 54.8 MiB 0.14 0.00 4.73282 -132.206 -4.73282 4.73282 0.80 0.0006877 0.000637288 0.0303985 0.0281524 30 2253 29 6.89349e+06 436909 556674. 1926.21 1.02 0.120892 0.106141 25186 138497 -1 1946 18 932 1745 124139 28347 3.40035 3.40035 -117.828 -3.40035 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0242024 0.0211526 129 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common -1 -1 -1 -1 -1 0.11 17768 1 0.03 -1 -1 30548 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56504 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 16.5 MiB 1.84 946 14295 4865 6147 3283 55.2 MiB 0.20 0.00 4.80372 -148.142 -4.80372 4.80372 0.78 0.000746832 0.000688696 0.0597249 0.0552179 38 2688 28 6.89349e+06 324158 678818. 2348.85 2.74 0.221066 0.193767 26626 170182 -1 2147 16 1387 2074 176201 39433 4.0871 4.0871 -141.421 -4.0871 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0250763 0.0220831 148 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common -1 -1 -1 -1 -1 0.18 17620 1 0.03 -1 -1 30488 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 16.5 MiB 1.61 1348 15391 4691 8221 2479 55.0 MiB 0.25 0.01 5.48061 -170.804 -5.48061 5.48061 0.86 0.000819204 0.000758269 0.0587272 0.0541853 36 2943 34 6.89349e+06 380534 648988. 2245.63 2.31 0.203345 0.178467 26050 158493 -1 2538 20 1840 2654 239893 50547 4.38925 4.38925 -155.569 -4.38925 0 0 828058. 2865.25 0.26 0.10 0.15 -1 -1 0.26 0.0314555 0.0275201 164 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common -1 -1 -1 -1 -1 0.20 17596 1 0.03 -1 -1 30348 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 16.7 MiB 1.71 1348 16572 5279 8759 2534 55.3 MiB 0.27 0.00 4.59633 -149.535 -4.59633 4.59633 0.79 0.000810514 0.000749843 0.0695477 0.0643419 36 3155 34 6.89349e+06 366440 648988. 2245.63 2.62 0.248008 0.218188 26050 158493 -1 2683 20 1761 2621 275602 53917 3.6673 3.6673 -137.527 -3.6673 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0317879 0.0278947 164 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common -1 -1 -1 -1 -1 0.18 17496 1 0.03 -1 -1 30248 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 16.0 MiB 1.61 929 11603 3304 7249 1050 54.5 MiB 0.17 0.00 4.22559 -126.079 -4.22559 4.22559 0.79 0.000634364 0.000587572 0.0427523 0.0396032 34 2271 23 6.89349e+06 295971 618332. 2139.56 1.71 0.167829 0.146536 25762 151098 -1 1980 18 1068 1494 146883 30253 3.09191 3.09191 -114.049 -3.09191 0 0 787024. 2723.27 0.27 0.07 0.15 -1 -1 0.27 0.0243782 0.0212432 112 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common -1 -1 -1 -1 -1 0.20 17612 1 0.03 -1 -1 30476 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 16.7 MiB 2.29 1157 9838 2412 6479 947 55.2 MiB 0.17 0.00 5.48387 -163.439 -5.48387 5.48387 0.78 0.00079267 0.000733334 0.042594 0.0394109 34 2929 25 6.89349e+06 366440 618332. 2139.56 1.75 0.20134 0.175549 25762 151098 -1 2373 18 1808 2501 225708 47079 4.40345 4.40345 -157.52 -4.40345 0 0 787024. 2723.27 0.29 0.10 0.15 -1 -1 0.29 0.034313 0.0306582 162 63 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common -1 -1 -1 -1 -1 0.20 17488 1 0.03 -1 -1 30436 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 16.6 MiB 1.14 1128 9303 2368 6110 825 55.0 MiB 0.16 0.00 5.14805 -150.89 -5.14805 5.14805 0.78 0.000754746 0.000698754 0.0378461 0.0350134 34 2762 23 6.89349e+06 324158 618332. 2139.56 2.10 0.186059 0.162423 25762 151098 -1 2410 23 1815 3085 298518 62575 4.2958 4.2958 -144.727 -4.2958 0 0 787024. 2723.27 0.25 0.11 0.11 -1 -1 0.25 0.0319822 0.0279197 139 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common -1 -1 -1 -1 -1 0.15 17636 1 0.03 -1 -1 30376 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 16.4 MiB 1.65 1160 14828 4291 8520 2017 54.8 MiB 0.22 0.00 5.04939 -147.832 -5.04939 5.04939 0.78 0.000741436 0.000686088 0.0605709 0.056045 34 2794 26 6.89349e+06 324158 618332. 2139.56 1.77 0.211135 0.185279 25762 151098 -1 2198 19 1418 2085 164236 36013 4.19685 4.19685 -142.279 -4.19685 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0275657 0.0241475 142 47 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common -1 -1 -1 -1 -1 0.16 17544 1 0.03 -1 -1 30532 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 16.6 MiB 1.76 1280 15731 5729 7457 2545 55.1 MiB 0.25 0.00 4.67272 -140.819 -4.67272 4.67272 0.78 0.000789187 0.000730586 0.0653933 0.0605646 36 2924 44 6.89349e+06 380534 648988. 2245.63 2.60 0.247591 0.217015 26050 158493 -1 2490 18 1653 2406 211382 43712 3.71799 3.71799 -132.766 -3.71799 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.028355 0.0248901 162 83 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common -1 -1 -1 -1 -1 0.19 17592 1 0.02 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 16.6 MiB 2.57 1143 12183 3367 8279 537 55.1 MiB 0.21 0.00 5.41467 -156.077 -5.41467 5.41467 0.78 0.000784236 0.000725485 0.0522658 0.0483433 36 2977 21 6.89349e+06 324158 648988. 2245.63 3.89 0.265689 0.231795 26050 158493 -1 2412 19 1715 2519 209627 45247 4.58675 4.58675 -151.472 -4.58675 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0290992 0.0255145 155 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common -1 -1 -1 -1 -1 0.20 17472 1 0.03 -1 -1 30276 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 16.7 MiB 1.62 1279 8047 1945 5583 519 55.3 MiB 0.16 0.01 4.65125 -137.416 -4.65125 4.65125 0.78 0.000798583 0.000739808 0.0342506 0.0317813 34 3210 50 6.89349e+06 422815 618332. 2139.56 1.79 0.187347 0.162906 25762 151098 -1 2563 20 1687 2308 201096 43031 3.50286 3.50286 -125.623 -3.50286 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0302962 0.0264873 166 85 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common -1 -1 -1 -1 -1 0.16 17276 1 0.02 -1 -1 30324 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 15.8 MiB 0.47 782 13906 5117 6523 2266 54.4 MiB 0.17 0.00 4.15903 -122.769 -4.15903 4.15903 0.76 0.000602473 0.000557561 0.0503165 0.0465922 30 1858 34 6.89349e+06 239595 556674. 1926.21 1.00 0.133986 0.118367 25186 138497 -1 1598 21 873 1422 107736 23996 2.87686 2.87686 -109.351 -2.87686 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0239033 0.0208039 96 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common -1 -1 -1 -1 -1 0.20 17632 1 0.03 -1 -1 30308 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 16.6 MiB 1.51 1307 13157 3552 8195 1410 55.1 MiB 0.22 0.00 5.64852 -169.418 -5.64852 5.64852 0.79 0.000797558 0.000737742 0.0550823 0.0509861 34 3303 46 6.89349e+06 352346 618332. 2139.56 2.25 0.205895 0.180527 25762 151098 -1 2630 19 1847 2519 248851 50878 4.6276 4.6276 -160.319 -4.6276 0 0 787024. 2723.27 0.25 0.09 0.12 -1 -1 0.25 0.0283992 0.0249708 156 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common -1 -1 -1 -1 -1 0.19 17820 1 0.03 -1 -1 30344 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 16.7 MiB 2.75 1377 7415 1651 5387 377 55.3 MiB 0.16 0.01 5.30157 -175.126 -5.30157 5.30157 0.78 0.00083642 0.000770584 0.0340109 0.0314804 36 3400 28 6.89349e+06 352346 648988. 2245.63 2.35 0.208441 0.181387 26050 158493 -1 2918 21 2080 2984 318649 62006 4.49619 4.49619 -168.451 -4.49619 0 0 828058. 2865.25 0.28 0.11 0.16 -1 -1 0.28 0.0322282 0.0284055 171 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 30032 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55808 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 16.0 MiB 2.17 743 12720 4130 6895 1695 54.5 MiB 0.16 0.00 4.14342 -113.505 -4.14342 4.14342 0.79 0.00062575 0.000578156 0.0468576 0.0433278 34 2134 32 6.89349e+06 253689 618332. 2139.56 3.30 0.237932 0.206247 25762 151098 -1 1688 17 942 1253 118325 26644 2.86816 2.86816 -102.729 -2.86816 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0216047 0.0188801 108 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common -1 -1 -1 -1 -1 0.18 17216 1 0.03 -1 -1 30344 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 16.0 MiB 0.49 706 7823 1736 5421 666 54.6 MiB 0.12 0.00 4.10083 -117.838 -4.10083 4.10083 0.79 0.000597661 0.000552934 0.028388 0.0262913 30 1868 20 6.89349e+06 281877 556674. 1926.21 0.96 0.0979684 0.0858732 25186 138497 -1 1612 19 954 1595 113373 24932 2.86611 2.86611 -106.175 -2.86611 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0220792 0.0192057 99 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common -1 -1 -1 -1 -1 0.19 17592 1 0.03 -1 -1 30596 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56268 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 16.5 MiB 1.71 1103 13719 4794 6980 1945 54.9 MiB 0.22 0.00 4.58942 -145.059 -4.58942 4.58942 0.79 0.000762849 0.000705892 0.057349 0.0531048 34 2793 23 6.89349e+06 324158 618332. 2139.56 1.94 0.209696 0.183736 25762 151098 -1 2438 18 1670 2403 241102 48275 3.96665 3.96665 -143.731 -3.96665 0 0 787024. 2723.27 0.24 0.09 0.10 -1 -1 0.24 0.0270915 0.0237505 145 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common -1 -1 -1 -1 -1 0.14 17600 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 16.7 MiB 1.61 1083 8919 2056 5474 1389 55.1 MiB 0.14 0.00 4.89424 -142.728 -4.89424 4.89424 0.79 0.000770001 0.000711051 0.0381642 0.0353062 34 2874 33 6.89349e+06 324158 618332. 2139.56 2.06 0.201887 0.175618 25762 151098 -1 2297 20 1524 2218 195852 43464 4.54369 4.54369 -143.657 -4.54369 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0296494 0.0259551 149 56 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common -1 -1 -1 -1 -1 0.19 17348 1 0.03 -1 -1 30192 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 16.6 MiB 0.63 1033 19356 5199 10890 3267 55.0 MiB 0.27 0.01 5.32917 -146.087 -5.32917 5.32917 0.82 0.000614667 0.000561518 0.0526885 0.0481426 28 3392 46 6.89349e+06 507378 531479. 1839.03 7.11 0.280401 0.244989 24610 126494 -1 2612 28 2502 4620 496154 131216 4.58844 4.58844 -154.062 -4.58844 0 0 648988. 2245.63 0.22 0.16 0.13 -1 -1 0.22 0.0390661 0.0340282 157 3 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common -1 -1 -1 -1 -1 0.20 17544 1 0.03 -1 -1 30092 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 16.5 MiB 1.28 1151 13143 3782 7948 1413 54.9 MiB 0.20 0.00 3.95739 -118.903 -3.95739 3.95739 0.90 0.000533548 0.000488091 0.0458955 0.0422142 34 2667 19 6.89349e+06 352346 618332. 2139.56 1.62 0.168959 0.147345 25762 151098 -1 2153 21 1641 2457 218428 45162 3.03081 3.03081 -106.049 -3.03081 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0281368 0.0245663 136 52 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common -1 -1 -1 -1 -1 0.18 17556 1 0.03 -1 -1 30636 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 16.2 MiB 1.20 755 13768 6057 6665 1046 54.6 MiB 0.14 0.00 4.43859 -116.143 -4.43859 4.43859 0.78 0.00059421 0.000549242 0.0487611 0.0450288 34 2120 39 6.89349e+06 281877 618332. 2139.56 1.98 0.179728 0.156628 25762 151098 -1 1578 20 1087 1507 130411 28788 3.525 3.525 -112.022 -3.525 0 0 787024. 2723.27 0.34 0.07 0.15 -1 -1 0.34 0.023172 0.0203406 106 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common -1 -1 -1 -1 -1 0.20 18136 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 16.7 MiB 2.50 1514 18043 5658 10071 2314 55.6 MiB 0.32 0.01 4.58581 -147.507 -4.58581 4.58581 0.78 0.000885491 0.000820675 0.0805898 0.0746341 36 3636 22 6.89349e+06 380534 648988. 2245.63 4.26 0.328217 0.287518 26050 158493 -1 3117 21 1927 3102 291831 58467 4.28325 4.28325 -146.44 -4.28325 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.035368 0.0309989 185 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common -1 -1 -1 -1 -1 0.21 17548 1 0.03 -1 -1 30320 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 16.6 MiB 1.67 1122 15639 4714 8375 2550 55.1 MiB 0.25 0.00 5.51467 -162.715 -5.51467 5.51467 0.78 0.000779949 0.000722276 0.0660387 0.0610961 34 2933 25 6.89349e+06 338252 618332. 2139.56 2.06 0.222258 0.195203 25762 151098 -1 2488 23 2116 2909 285758 59983 4.71389 4.71389 -158.12 -4.71389 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0335212 0.0292595 155 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common -1 -1 -1 -1 -1 0.19 17756 1 0.03 -1 -1 30356 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 16.5 MiB 1.68 1207 14779 4497 8341 1941 54.9 MiB 0.22 0.00 4.36565 -143.578 -4.36565 4.36565 0.78 0.000715844 0.000661782 0.0595974 0.0551201 36 2574 44 6.89349e+06 295971 648988. 2245.63 3.93 0.278671 0.242422 26050 158493 -1 2245 18 1455 1922 178755 37114 3.7507 3.7507 -132.268 -3.7507 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0254988 0.0223425 137 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common -1 -1 -1 -1 -1 0.18 17740 1 0.03 -1 -1 30380 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 16.2 MiB 1.74 1106 13291 3686 7595 2010 54.9 MiB 0.20 0.00 5.17406 -143.598 -5.17406 5.17406 0.78 0.000725273 0.000671154 0.0542565 0.0502251 30 2759 30 6.89349e+06 295971 556674. 1926.21 1.14 0.149717 0.132335 25186 138497 -1 2198 19 1097 1615 124061 27188 3.9036 3.9036 -132.781 -3.9036 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0270251 0.0236557 135 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common -1 -1 -1 -1 -1 0.16 17596 1 0.03 -1 -1 30164 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 16.6 MiB 1.65 1277 13949 4663 6540 2746 55.1 MiB 0.22 0.00 4.6119 -129.607 -4.6119 4.6119 0.79 0.00080453 0.000744716 0.0594723 0.0551087 34 3046 23 6.89349e+06 366440 618332. 2139.56 1.86 0.218166 0.191618 25762 151098 -1 2608 20 1702 2627 242952 50795 4.10556 4.10556 -129.781 -4.10556 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0309214 0.0271069 163 50 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common -1 -1 -1 -1 -1 0.20 17616 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 16.3 MiB 1.72 1057 10103 2410 7187 506 54.7 MiB 0.16 0.00 4.37294 -118.646 -4.37294 4.37294 0.78 0.000713564 0.000660463 0.040739 0.0377418 34 2806 27 6.89349e+06 338252 618332. 2139.56 1.73 0.185975 0.162124 25762 151098 -1 2177 20 1308 2155 169565 37866 3.6344 3.6344 -116.258 -3.6344 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0274316 0.0239478 140 51 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common -1 -1 -1 -1 -1 0.19 17548 1 0.03 -1 -1 30376 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 16.6 MiB 2.14 1146 16340 5897 7961 2482 55.1 MiB 0.25 0.00 4.90628 -154.007 -4.90628 4.90628 0.81 0.000527282 0.000478379 0.0607341 0.0558784 34 3165 42 6.89349e+06 310065 618332. 2139.56 2.32 0.232969 0.204044 25762 151098 -1 2461 19 1655 2566 235885 48685 3.9288 3.9288 -143.715 -3.9288 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0284834 0.0249472 148 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common -1 -1 -1 -1 -1 0.12 17780 1 0.03 -1 -1 30276 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 16.7 MiB 2.20 1236 16371 6869 8593 909 55.3 MiB 0.25 0.00 4.19324 -136.834 -4.19324 4.19324 0.82 0.00081924 0.000755968 0.0680164 0.0628757 36 2892 25 6.89349e+06 366440 648988. 2245.63 2.43 0.229116 0.201818 26050 158493 -1 2422 30 1993 2877 348274 98608 3.23035 3.23035 -128.251 -3.23035 0 0 828058. 2865.25 0.26 0.14 0.16 -1 -1 0.26 0.0437845 0.0381869 167 62 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common -1 -1 -1 -1 -1 0.18 17632 1 0.03 -1 -1 30404 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55812 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 16.1 MiB 1.14 881 7081 1573 4782 726 54.5 MiB 0.10 0.00 4.21387 -125.832 -4.21387 4.21387 0.79 0.000626704 0.00058045 0.0272924 0.0252922 34 1964 20 6.89349e+06 281877 618332. 2139.56 1.62 0.146273 0.1269 25762 151098 -1 1661 16 1087 1426 129081 27255 3.17801 3.17801 -114.411 -3.17801 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0213036 0.0187355 110 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common -1 -1 -1 -1 -1 0.18 17784 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 16.2 MiB 1.07 868 7770 1747 5581 442 54.8 MiB 0.13 0.00 4.24583 -126.348 -4.24583 4.24583 0.78 0.000682503 0.00063092 0.0310809 0.0287113 36 2453 27 6.89349e+06 281877 648988. 2245.63 2.07 0.1692 0.146801 26050 158493 -1 1956 23 1716 2336 226457 49334 3.76665 3.76665 -126.182 -3.76665 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0292153 0.0253963 125 58 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common -1 -1 -1 -1 -1 0.19 17764 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56168 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 16.4 MiB 1.30 954 15337 5910 7043 2384 54.9 MiB 0.21 0.00 4.83108 -133.604 -4.83108 4.83108 0.79 0.000730871 0.000676208 0.0623922 0.0577463 34 2786 24 6.89349e+06 310065 618332. 2139.56 2.19 0.208495 0.183048 25762 151098 -1 2085 20 1533 2273 186807 41446 3.93276 3.93276 -131.609 -3.93276 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0280752 0.0245612 137 33 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common -1 -1 -1 -1 -1 0.10 17556 1 0.03 -1 -1 30404 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 16.1 MiB 2.47 859 12636 4650 6385 1601 54.6 MiB 0.16 0.00 4.13932 -113.849 -4.13932 4.13932 0.78 0.000610423 0.000565111 0.0468434 0.0433582 34 2166 28 6.89349e+06 267783 618332. 2139.56 1.61 0.172486 0.150582 25762 151098 -1 1770 19 961 1323 112677 26117 2.95785 2.95785 -101.925 -2.95785 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0226611 0.0197228 108 31 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30112 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 16.2 MiB 1.69 931 12898 3547 7775 1576 54.7 MiB 0.17 0.00 4.14413 -130.005 -4.14413 4.14413 0.79 0.000640376 0.000592665 0.0486285 0.0449955 34 2433 48 6.89349e+06 253689 618332. 2139.56 1.78 0.167067 0.146364 25762 151098 -1 2119 19 1326 1886 197553 40520 3.13871 3.13871 -121.88 -3.13871 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0237401 0.0206686 114 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common -1 -1 -1 -1 -1 0.14 17760 1 0.03 -1 -1 30104 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 16.4 MiB 1.48 1223 9197 2351 6452 394 54.9 MiB 0.17 0.00 4.60737 -145.998 -4.60737 4.60737 0.78 0.000809062 0.000740517 0.0403744 0.0373515 34 2906 22 6.89349e+06 366440 618332. 2139.56 1.76 0.195876 0.170889 25762 151098 -1 2441 18 1801 2490 251764 51079 3.7069 3.7069 -138.007 -3.7069 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0282287 0.0247752 160 64 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common -1 -1 -1 -1 -1 0.18 17504 1 0.03 -1 -1 30368 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55968 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 16.2 MiB 1.73 913 11088 2855 7004 1229 54.7 MiB 0.18 0.00 3.57635 -113.738 -3.57635 3.57635 0.84 0.000618061 0.000571634 0.0485915 0.0449776 30 2205 20 6.89349e+06 239595 556674. 1926.21 0.98 0.121596 0.107603 25186 138497 -1 1954 18 1044 1436 112428 24415 2.81791 2.81791 -108.078 -2.81791 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0219697 0.0191552 108 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common -1 -1 -1 -1 -1 0.19 17488 1 0.03 -1 -1 30120 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 16.5 MiB 1.59 1210 14261 3846 8261 2154 54.9 MiB 0.20 0.00 4.18989 -126.928 -4.18989 4.18989 0.81 0.000581111 0.000530107 0.0458989 0.0419024 34 3011 23 6.89349e+06 310065 618332. 2139.56 1.91 0.160553 0.140098 25762 151098 -1 2495 22 1414 2073 189423 39377 3.3497 3.3497 -124.192 -3.3497 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0311834 0.0272189 146 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common -1 -1 -1 -1 -1 0.20 17604 1 0.03 -1 -1 30448 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 16.4 MiB 1.72 1307 17117 5534 9059 2524 55.0 MiB 0.28 0.01 4.84686 -157.681 -4.84686 4.84686 0.80 0.000802255 0.000728438 0.0739532 0.0682151 34 3306 43 6.89349e+06 366440 618332. 2139.56 2.18 0.261496 0.229281 25762 151098 -1 2657 22 2085 3026 278449 57989 4.04249 4.04249 -150.198 -4.04249 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.034343 0.0300839 170 91 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common -1 -1 -1 -1 -1 0.16 17396 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 16.3 MiB 2.14 1086 13432 3424 8813 1195 54.9 MiB 0.19 0.00 3.821 -117.953 -3.821 3.821 0.78 0.000672878 0.000621469 0.0529778 0.0489357 34 2625 25 6.89349e+06 253689 618332. 2139.56 1.66 0.189123 0.165393 25762 151098 -1 2179 18 1433 1922 164094 35739 2.96026 2.96026 -113.653 -2.96026 0 0 787024. 2723.27 0.28 0.07 0.17 -1 -1 0.28 0.0224355 0.0196223 124 57 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common -1 -1 -1 -1 -1 0.18 17520 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 16.3 MiB 0.97 871 12898 3868 7278 1752 54.8 MiB 0.18 0.00 4.12213 -126.038 -4.12213 4.12213 0.78 0.000662511 0.000612701 0.0501566 0.0463972 34 2411 26 6.89349e+06 253689 618332. 2139.56 1.91 0.175056 0.153205 25762 151098 -1 1998 18 1313 1934 198462 41974 3.26955 3.26955 -119.059 -3.26955 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0233563 0.0203914 115 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common -1 -1 -1 -1 -1 0.18 17824 1 0.03 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 16.3 MiB 1.50 1006 10292 2539 6455 1298 54.9 MiB 0.15 0.00 4.93133 -134.302 -4.93133 4.93133 0.78 0.000712194 0.000659062 0.0411091 0.0380451 34 2433 47 6.89349e+06 310065 618332. 2139.56 1.75 0.206831 0.180167 25762 151098 -1 2150 17 1248 1720 141745 31449 3.90306 3.90306 -131.693 -3.90306 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0241907 0.021177 133 30 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common -1 -1 -1 -1 -1 0.20 17744 1 0.04 -1 -1 30124 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 16.5 MiB 1.66 1105 14450 4218 8203 2029 55.0 MiB 0.21 0.00 4.04968 -110.899 -4.04968 4.04968 0.79 0.000707265 0.000654827 0.0562445 0.0520987 34 2649 24 6.89349e+06 352346 618332. 2139.56 1.62 0.196402 0.172113 25762 151098 -1 2220 17 1211 1772 153848 32656 3.08015 3.08015 -106.353 -3.08015 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0242393 0.0212461 138 55 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common -1 -1 -1 -1 -1 0.20 17780 1 0.03 -1 -1 30384 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 16.6 MiB 1.69 1170 10033 2409 6880 744 55.2 MiB 0.18 0.00 5.6505 -176.695 -5.6505 5.6505 0.79 0.000826693 0.000765277 0.0450636 0.0417092 36 3285 24 6.89349e+06 338252 648988. 2245.63 4.19 0.286852 0.249405 26050 158493 -1 2684 20 1877 2884 261069 55866 4.82339 4.82339 -168.545 -4.82339 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0319155 0.0280024 166 65 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common -1 -1 -1 -1 -1 0.17 17024 1 0.03 -1 -1 30316 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 15.9 MiB 0.48 815 9368 2443 5733 1192 54.4 MiB 0.11 0.00 3.49795 -108.682 -3.49795 3.49795 0.79 0.000580512 0.000536975 0.032956 0.0305004 34 1873 21 6.89349e+06 239595 618332. 2139.56 1.48 0.144901 0.126006 25762 151098 -1 1606 18 792 1247 106621 23230 2.68966 2.68966 -99.4023 -2.68966 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0202989 0.0177206 92 4 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common -1 -1 -1 -1 -1 0.20 17548 1 0.03 -1 -1 30252 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 16.7 MiB 1.63 1425 17431 5130 10160 2141 55.4 MiB 0.29 0.00 5.66786 -177.951 -5.66786 5.66786 0.79 0.000365232 0.00033347 0.0623745 0.0573143 36 3117 20 6.89349e+06 380534 648988. 2245.63 4.06 0.289909 0.253268 26050 158493 -1 2615 19 1871 2481 236671 48893 4.89068 4.89068 -169.65 -4.89068 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0316076 0.0278114 175 90 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common -1 -1 -1 -1 -1 0.19 17656 1 0.03 -1 -1 30172 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 16.5 MiB 1.92 1387 11223 3117 6896 1210 55.1 MiB 0.15 0.00 4.854 -168.258 -4.854 4.854 0.81 0.000539169 0.000493546 0.0369609 0.0338607 36 3110 27 6.89349e+06 324158 648988. 2245.63 1.99 0.168187 0.14702 26050 158493 -1 2655 21 2013 2623 236445 49010 4.30343 4.30343 -166.217 -4.30343 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.031526 0.0275903 160 96 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common -1 -1 -1 -1 -1 0.18 17744 1 0.03 -1 -1 30472 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 16.6 MiB 1.65 1228 16529 5130 9253 2146 55.1 MiB 0.25 0.00 4.18062 -130.52 -4.18062 4.18062 0.79 0.000772864 0.000715246 0.0703311 0.0651197 34 2865 44 6.89349e+06 310065 618332. 2139.56 1.86 0.205049 0.180797 25762 151098 -1 2480 20 1531 2091 198670 41369 3.23566 3.23566 -125.664 -3.23566 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0300187 0.0262872 152 60 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common -1 -1 -1 -1 -1 0.19 18124 1 0.03 -1 -1 30328 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 16.7 MiB 2.15 1277 13758 3654 8100 2004 55.2 MiB 0.28 0.01 5.8432 -174.13 -5.8432 5.8432 0.78 0.000852292 0.00078951 0.0607351 0.0562567 38 3028 25 6.89349e+06 366440 678818. 2348.85 4.28 0.321514 0.280591 26626 170182 -1 2612 22 1786 2937 283074 56715 4.72775 4.72775 -158.469 -4.72775 0 0 902133. 3121.57 0.27 0.11 0.17 -1 -1 0.27 0.0352032 0.0308376 172 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common -1 -1 -1 -1 -1 0.18 17564 1 0.03 -1 -1 30096 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55652 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 15.8 MiB 0.75 693 11650 3455 7011 1184 54.3 MiB 0.13 0.00 3.03066 -95.0101 -3.03066 3.03066 0.78 0.000555429 0.000514678 0.0413238 0.0382958 34 1761 22 6.89349e+06 211408 618332. 2139.56 1.46 0.148923 0.130116 25762 151098 -1 1470 18 741 1002 99416 21429 2.45031 2.45031 -95.4701 -2.45031 0 0 787024. 2723.27 0.25 0.05 0.15 -1 -1 0.25 0.0192559 0.0167342 82 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common -1 -1 -1 -1 -1 0.17 17348 1 0.03 -1 -1 30112 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 16.2 MiB 1.05 726 8270 1936 5996 338 54.8 MiB 0.13 0.00 4.60327 -135.822 -4.60327 4.60327 0.78 0.000649584 0.000600628 0.0322869 0.0298849 34 2100 27 6.89349e+06 281877 618332. 2139.56 1.63 0.165924 0.143941 25762 151098 -1 1572 18 1115 1705 151411 34600 3.5471 3.5471 -125.689 -3.5471 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0233646 0.0204265 119 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common -1 -1 -1 -1 -1 0.18 17368 1 0.03 -1 -1 30420 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 16.2 MiB 1.60 1036 12008 3645 6699 1664 54.8 MiB 0.20 0.00 4.33865 -139.218 -4.33865 4.33865 0.78 0.000675144 0.000625167 0.0479424 0.0444015 34 2921 34 6.89349e+06 253689 618332. 2139.56 2.12 0.192119 0.167703 25762 151098 -1 2362 20 1472 2617 240529 50855 3.6455 3.6455 -137.341 -3.6455 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0258574 0.0225278 120 34 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common -1 -1 -1 -1 -1 0.18 17096 1 0.03 -1 -1 30200 -1 -1 21 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55584 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 15.7 MiB 0.98 532 11034 4110 4271 2653 54.3 MiB 0.10 0.00 3.6784 -85.8398 -3.6784 3.6784 0.82 0.000341028 0.00030797 0.0267896 0.024328 34 1701 23 6.89349e+06 295971 618332. 2139.56 1.53 0.129525 0.111702 25762 151098 -1 1357 20 857 1345 108335 26112 3.04181 3.04181 -82.8243 -3.04181 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0197403 0.0171061 92 29 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common -1 -1 -1 -1 -1 0.19 17884 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 16.5 MiB 2.05 1378 14871 4869 7700 2302 55.1 MiB 0.25 0.00 4.565 -139.747 -4.565 4.565 0.84 0.000794178 0.000734136 0.0648709 0.0600352 36 3197 23 6.89349e+06 324158 648988. 2245.63 1.86 0.187596 0.165665 26050 158493 -1 2853 19 1838 2753 244222 49840 3.57726 3.57726 -132.143 -3.57726 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0295283 0.0259432 161 72 -1 -1 -1 -1 + fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common -1 -1 -1 -1 -1 0.24 17932 1 0.03 -1 -1 30332 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 16.7 MiB 1.91 1414 15617 4439 9113 2065 55.6 MiB 0.28 0.00 4.8901 -157.733 -4.8901 4.8901 0.86 0.00083689 0.000773133 0.0708035 0.0655437 34 3364 31 6.89349e+06 408721 618332. 2139.56 1.83 0.24649 0.21644 25762 151098 -1 2613 21 1842 2586 228245 47762 4.00579 4.00579 -149.025 -4.00579 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0338597 0.029643 179 90 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index f228ac410e1..e710d59a7e6 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,2049 +1,2049 @@ 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.95 vpr 55.27 MiB 0.04 6676 -1 -1 14 0.26 -1 -1 32876 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1354 8532 2094 5512 926 55.6 MiB 0.14 0.00 8.19013 -165.934 -8.19013 8.19013 1.05 0.00158061 0.00145029 0.0717353 0.065761 28 3693 28 6.55708e+06 313430 500653. 1732.36 5.28 0.53329 0.478568 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0646335 0.0584114 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 8.13 vpr 55.40 MiB 0.02 6852 -1 -1 14 0.28 -1 -1 32752 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.41 1292 15824 4267 9033 2524 55.5 MiB 0.23 0.00 8.12966 -162.719 -8.12966 8.12966 1.05 0.00156893 0.00143869 0.124562 0.114222 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.81 0.345944 0.31248 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0590807 0.053456 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 8.11 vpr 55.46 MiB 0.05 6648 -1 -1 11 0.21 -1 -1 32868 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 17.1 MiB 0.34 1266 13157 3416 7667 2074 55.6 MiB 0.20 0.00 6.4728 -136.716 -6.4728 6.4728 1.07 0.00155511 0.00142484 0.10819 0.0990878 36 3746 35 6.55708e+06 301375 612192. 2118.31 20.01 0.73914 0.663365 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0666209 0.0602227 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.29 vpr 55.38 MiB 0.02 6828 -1 -1 12 0.33 -1 -1 32788 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1320 8130 2002 5291 837 55.5 MiB 0.13 0.00 7.77357 -147.192 -7.77357 7.77357 1.06 0.0015693 0.00143952 0.068828 0.0631923 36 3542 23 6.55708e+06 349595 612192. 2118.31 5.81 0.520222 0.467177 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0568462 0.051505 185 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 8.23 vpr 55.54 MiB 0.06 6780 -1 -1 13 0.31 -1 -1 32904 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57504 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 17.5 MiB 0.42 1568 9951 2486 6481 984 56.2 MiB 0.17 0.00 7.68511 -161.036 -7.68511 7.68511 1.05 0.00182242 0.00167093 0.0887681 0.0814162 30 4458 47 6.55708e+06 385760 526063. 1820.29 2.80 0.40244 0.363148 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0723155 0.0655736 223 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.87 vpr 55.42 MiB 0.04 6836 -1 -1 12 0.27 -1 -1 32804 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 16.9 MiB 0.46 1500 9773 2280 6498 995 55.8 MiB 0.15 0.00 7.53766 -152.093 -7.53766 7.53766 1.10 0.00168294 0.00154249 0.07802 0.0714763 36 3688 23 6.55708e+06 409870 612192. 2118.31 3.42 0.443701 0.399337 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0557222 0.0506649 209 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.44 vpr 55.06 MiB 0.04 6600 -1 -1 12 0.20 -1 -1 32292 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 16.4 MiB 0.27 1024 5945 1385 4013 547 54.9 MiB 0.11 0.00 7.15274 -128.455 -7.15274 7.15274 1.07 0.00119071 0.00109273 0.0512681 0.0471054 28 3014 27 6.55708e+06 325485 500653. 1732.36 2.60 0.218082 0.196302 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0428581 0.0387766 136 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 8.79 vpr 55.01 MiB 0.05 6668 -1 -1 11 0.18 -1 -1 32868 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1220 9679 2547 5973 1159 55.4 MiB 0.14 0.00 6.45772 -132.139 -6.45772 6.45772 1.05 0.00145854 0.00133623 0.0732423 0.0670701 36 3012 18 6.55708e+06 337540 612192. 2118.31 5.63 0.601053 0.538043 22750 144809 -1 2688 17 1131 3571 200803 45790 5.46178 5.46178 -126.123 -5.46178 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0527168 0.0477184 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.15 vpr 55.25 MiB 0.04 6496 -1 -1 12 0.17 -1 -1 32452 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1146 12373 3633 6385 2355 55.1 MiB 0.16 0.00 7.00181 -148.703 -7.00181 7.00181 1.04 0.00129771 0.00118859 0.086291 0.0790342 28 3391 24 6.55708e+06 301375 500653. 1732.36 2.36 0.258475 0.233153 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.22 0.12 0.15 -1 -1 0.22 0.0496111 0.0449457 145 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.85 vpr 55.20 MiB 0.04 6472 -1 -1 13 0.19 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1098 10979 3065 6306 1608 55.1 MiB 0.16 0.00 7.23855 -159.771 -7.23855 7.23855 1.05 0.00139452 0.00127789 0.0810209 0.0741114 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.66 0.270877 0.243859 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0506487 0.0458149 162 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.58 vpr 54.81 MiB 0.04 6528 -1 -1 12 0.17 -1 -1 32632 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 16.5 MiB 0.36 1073 8868 2309 4974 1585 54.9 MiB 0.12 0.00 7.23424 -146.32 -7.23424 7.23424 0.79 0.00118902 0.00108846 0.061107 0.055947 28 2862 44 6.55708e+06 265210 500653. 1732.36 2.17 0.259268 0.23296 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0408665 0.0369637 132 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.14 vpr 55.05 MiB 0.03 6580 -1 -1 12 0.15 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 971 12175 3572 6038 2565 54.9 MiB 0.16 0.00 6.75009 -143.946 -6.75009 6.75009 1.05 0.00121301 0.00111019 0.0828367 0.0757274 36 2632 22 6.55708e+06 253155 612192. 2118.31 4.88 0.417425 0.374254 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0375322 0.0339784 138 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.45 vpr 55.28 MiB 0.04 6668 -1 -1 13 0.28 -1 -1 32828 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1456 5419 862 4216 341 55.7 MiB 0.10 0.00 7.90792 -162.801 -7.90792 7.90792 1.04 0.00169128 0.00154591 0.0491411 0.0450844 28 4018 41 6.55708e+06 361650 500653. 1732.36 9.66 0.66259 0.594509 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0658684 0.0597542 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.84 vpr 55.36 MiB 0.05 6720 -1 -1 14 0.31 -1 -1 33244 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 17.1 MiB 0.48 1487 7653 1685 5037 931 55.8 MiB 0.13 0.00 8.67599 -179.222 -8.67599 8.67599 1.05 0.00172626 0.00158108 0.068036 0.0623941 34 4030 26 6.55708e+06 349595 585099. 2024.56 2.53 0.367208 0.330782 22462 138074 -1 3285 20 1626 4702 256491 60555 7.53782 7.53782 -169.858 -7.53782 0 0 742403. 2568.87 0.26 0.17 0.22 -1 -1 0.26 0.0749868 0.0681645 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.96 vpr 54.97 MiB 0.04 6508 -1 -1 11 0.17 -1 -1 32488 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1095 15366 4454 8585 2327 55.2 MiB 0.19 0.00 6.42654 -129.9 -6.42654 6.42654 1.06 0.0012954 0.00118776 0.102823 0.0942001 36 2830 20 6.55708e+06 349595 612192. 2118.31 2.20 0.320956 0.289531 22750 144809 -1 2387 14 976 2696 166897 37529 5.60952 5.60952 -124.13 -5.60952 0 0 782063. 2706.10 0.36 0.10 0.23 -1 -1 0.36 0.0414205 0.0376803 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.77 vpr 55.51 MiB 0.05 6668 -1 -1 12 0.27 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 16.8 MiB 0.51 1497 7523 1547 5261 715 55.8 MiB 0.13 0.00 7.78498 -159.33 -7.78498 7.78498 1.07 0.00175619 0.00160731 0.0659455 0.0604299 36 3844 37 6.55708e+06 409870 612192. 2118.31 16.38 0.737808 0.6622 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.063637 0.0578131 213 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.83 vpr 55.27 MiB 0.03 6744 -1 -1 13 0.26 -1 -1 32756 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.28 1448 9075 2050 5697 1328 55.9 MiB 0.15 0.00 8.28129 -168.719 -8.28129 8.28129 1.07 0.0017541 0.00160687 0.0779001 0.0713393 30 3798 28 6.55708e+06 385760 526063. 1820.29 2.44 0.327316 0.295523 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.07 0.19 -1 -1 0.22 0.0288488 0.0261221 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.84 vpr 54.79 MiB 0.06 6560 -1 -1 12 0.15 -1 -1 32644 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 16.5 MiB 0.50 1089 8402 1864 6112 426 55.0 MiB 0.12 0.00 7.26292 -158.375 -7.26292 7.26292 1.05 0.00129452 0.00118558 0.0616027 0.0565106 28 3024 19 6.55708e+06 265210 500653. 1732.36 2.07 0.222108 0.200329 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0440985 0.0399784 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.87 vpr 54.22 MiB 0.04 6396 -1 -1 10 0.10 -1 -1 32300 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 16.1 MiB 0.13 786 5244 1130 3909 205 54.6 MiB 0.07 0.00 5.1986 -117.15 -5.1986 5.1986 1.05 0.00107964 0.00100519 0.0323955 0.029672 34 2066 32 6.55708e+06 241100 585099. 2024.56 2.18 0.197464 0.175957 22462 138074 -1 1763 15 662 1690 102174 24087 4.711 4.711 -115.001 -4.711 0 0 742403. 2568.87 0.26 0.07 0.22 -1 -1 0.26 0.0297451 0.0267504 96 88 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.57 vpr 54.89 MiB 0.05 6572 -1 -1 13 0.16 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1123 5079 946 3658 475 55.2 MiB 0.08 0.00 7.44701 -156.373 -7.44701 7.44701 1.11 0.00125172 0.00114618 0.0383243 0.0350854 26 3256 40 6.55708e+06 289320 477104. 1650.88 6.85 0.397369 0.355926 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.23 0.11 0.17 -1 -1 0.23 0.0495813 0.0448564 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.35 vpr 55.64 MiB 0.05 6784 -1 -1 13 0.30 -1 -1 32992 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1494 10031 2522 6626 883 55.5 MiB 0.16 0.00 7.77584 -154.394 -7.77584 7.77584 1.05 0.00169368 0.00155236 0.0838518 0.0767855 28 4288 44 6.55708e+06 373705 500653. 1732.36 3.52 0.37137 0.334867 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0731536 0.0661888 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 13.77 vpr 55.22 MiB 0.05 6776 -1 -1 13 0.28 -1 -1 33268 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 17.0 MiB 0.42 1626 7973 1601 5735 637 55.8 MiB 0.13 0.00 7.9648 -163.763 -7.9648 7.9648 1.05 0.00168163 0.00154207 0.0645773 0.0591789 34 4543 38 6.55708e+06 409870 585099. 2024.56 13.37 0.687735 0.616575 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.27 0.29 0.23 -1 -1 0.27 0.0932029 0.0842865 207 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.36 vpr 54.27 MiB 0.02 6500 -1 -1 9 0.09 -1 -1 32228 -1 -1 21 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 15.8 MiB 0.28 710 10557 2762 6888 907 54.5 MiB 0.10 0.00 4.66154 -94.5374 -4.66154 4.66154 1.05 0.000794834 0.000728345 0.0514945 0.0471739 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.47 0.167994 0.15026 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0240516 0.0215726 83 73 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 7.31 vpr 55.36 MiB 0.05 6568 -1 -1 13 0.30 -1 -1 32732 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1530 4780 793 3650 337 55.9 MiB 0.09 0.00 7.84695 -156.636 -7.84695 7.84695 1.04 0.00169359 0.00155103 0.0445193 0.0408285 26 4457 46 6.55708e+06 361650 477104. 1650.88 9.40 0.580959 0.52066 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.21 0.99 0.17 -1 -1 0.21 0.230626 0.207067 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.91 vpr 54.23 MiB 0.04 6380 -1 -1 8 0.09 -1 -1 31196 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55496 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 15.6 MiB 0.20 436 8831 2193 4716 1922 54.2 MiB 0.09 0.00 4.66158 -87.3613 -4.66158 4.66158 1.09 0.000805986 0.000737532 0.0431038 0.0395112 30 1374 37 6.55708e+06 204935 526063. 1820.29 4.39 0.292614 0.25928 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.25 0.05 0.20 -1 -1 0.25 0.023032 0.0206286 77 61 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.53 vpr 55.39 MiB 0.05 6804 -1 -1 15 0.24 -1 -1 33024 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.19 1127 8999 2110 5455 1434 55.0 MiB 0.14 0.00 8.78748 -168.447 -8.78748 8.78748 1.05 0.00143957 0.00132107 0.070012 0.0642632 30 3036 31 6.55708e+06 301375 526063. 1820.29 8.21 0.489584 0.439016 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0568623 0.0513379 161 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.87 vpr 55.17 MiB 0.04 6788 -1 -1 12 0.25 -1 -1 32784 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 16.9 MiB 0.23 1426 7871 1871 5355 645 55.7 MiB 0.14 0.00 6.97141 -150.212 -6.97141 6.97141 1.09 0.00172873 0.00158362 0.0703352 0.064457 30 3857 27 6.55708e+06 373705 526063. 1820.29 13.16 0.575593 0.516835 21886 126133 -1 3289 24 1509 4913 363335 114600 6.49978 6.49978 -148.902 -6.49978 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0840065 0.0758888 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 6.15 vpr 55.17 MiB 0.05 6776 -1 -1 13 0.27 -1 -1 32692 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1403 8993 2077 6178 738 55.7 MiB 0.15 0.00 7.73601 -160.617 -7.73601 7.73601 1.06 0.00161024 0.00147568 0.0747439 0.0684968 30 3593 32 6.55708e+06 337540 526063. 1820.29 2.28 0.313714 0.2829 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0610573 0.0553391 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 8.42 vpr 54.87 MiB 0.04 6484 -1 -1 12 0.16 -1 -1 32308 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1093 9158 2327 6239 592 55.0 MiB 0.13 0.00 6.471 -143.803 -6.471 6.471 1.07 0.00129791 0.00118399 0.0668344 0.061086 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.96 0.285103 0.256331 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0509788 0.0460288 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.63 vpr 54.66 MiB 0.04 6636 -1 -1 11 0.15 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1045 6781 1469 4387 925 55.1 MiB 0.09 0.00 6.28146 -130.954 -6.28146 6.28146 1.05 0.00116036 0.00106273 0.0407445 0.0371836 30 2354 17 6.55708e+06 277265 526063. 1820.29 3.57 0.309003 0.276124 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0326225 0.0296412 128 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.48 vpr 55.14 MiB 0.05 6516 -1 -1 11 0.16 -1 -1 32408 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1079 8535 1915 5707 913 55.0 MiB 0.12 0.00 6.57292 -128.193 -6.57292 6.57292 1.07 0.00123926 0.00113506 0.0589558 0.0540407 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.89 0.27648 0.248847 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.24 0.17 0.21 -1 -1 0.24 0.0636049 0.0573838 142 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.89 vpr 55.09 MiB 0.02 6484 -1 -1 12 0.17 -1 -1 32576 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 16.7 MiB 0.20 1327 6716 1263 5020 433 55.4 MiB 0.11 0.00 7.20375 -160.021 -7.20375 7.20375 1.06 0.00149369 0.00137023 0.0533185 0.0489103 30 3050 19 6.55708e+06 337540 526063. 1820.29 4.13 0.463944 0.41578 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0564782 0.0508866 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.15 vpr 55.05 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32644 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1072 4244 722 3315 207 55.1 MiB 0.07 0.00 6.41894 -136.128 -6.41894 6.41894 1.06 0.00133016 0.00121814 0.0350244 0.0321211 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.62 0.217672 0.195604 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0584813 0.0527037 147 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 5.38 vpr 54.95 MiB 0.04 6576 -1 -1 10 0.14 -1 -1 32656 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 16.6 MiB 0.22 967 12733 4051 6442 2240 55.1 MiB 0.16 0.00 6.08886 -123.876 -6.08886 6.08886 1.05 0.00123814 0.00113338 0.0884426 0.0809489 32 2471 22 6.55708e+06 289320 554710. 1919.41 1.27 0.249715 0.225451 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.27 0.09 0.19 -1 -1 0.27 0.0378687 0.034373 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.88 vpr 55.84 MiB 0.05 6972 -1 -1 13 0.32 -1 -1 33208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 17.4 MiB 0.31 1621 5869 1104 4212 553 56.0 MiB 0.11 0.00 7.46683 -155.207 -7.46683 7.46683 1.07 0.00190053 0.00174227 0.0561222 0.0515117 30 3995 44 6.55708e+06 397815 526063. 1820.29 4.01 0.373151 0.336324 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.25 0.15 0.20 -1 -1 0.25 0.0694714 0.0631385 239 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 7.11 vpr 55.43 MiB 0.05 6840 -1 -1 13 0.31 -1 -1 33072 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1508 8283 1888 5355 1040 55.5 MiB 0.14 0.00 8.09706 -175.077 -8.09706 8.09706 1.05 0.00172376 0.00157927 0.073143 0.0670206 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.31 0.391396 0.352633 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0658884 0.0598027 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.12 vpr 54.86 MiB 0.04 6656 -1 -1 12 0.15 -1 -1 32712 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1096 12568 3446 6926 2196 55.0 MiB 0.16 0.00 6.66868 -144.132 -6.66868 6.66868 1.05 0.00126561 0.00115766 0.0850329 0.0776615 36 2895 29 6.55708e+06 301375 612192. 2118.31 5.07 0.486318 0.435683 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.29 0.10 0.23 -1 -1 0.29 0.0394496 0.0357878 150 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.95 vpr 55.47 MiB 0.05 6756 -1 -1 12 0.28 -1 -1 33128 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1489 8977 2020 5913 1044 55.8 MiB 0.15 0.00 8.10558 -165.766 -8.10558 8.10558 1.07 0.00173681 0.00159288 0.0751733 0.06891 36 3566 22 6.55708e+06 409870 612192. 2118.31 3.77 0.456193 0.410946 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0576066 0.0524406 219 219 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 6.77 vpr 55.67 MiB 0.05 6768 -1 -1 14 0.34 -1 -1 33092 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1460 6211 1289 4295 627 55.7 MiB 0.11 0.00 8.35283 -161.679 -8.35283 8.35283 1.06 0.00168193 0.00154283 0.0561068 0.0515012 30 3894 50 6.55708e+06 337540 526063. 1820.29 3.13 0.355242 0.31986 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0602465 0.0547082 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 7.58 vpr 55.23 MiB 0.05 6832 -1 -1 13 0.25 -1 -1 32968 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1364 9271 2151 5683 1437 55.4 MiB 0.15 0.00 7.40806 -157.551 -7.40806 7.40806 1.05 0.00152886 0.00139873 0.0760096 0.0694878 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.73 0.292682 0.263514 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.24 0.13 0.21 -1 -1 0.24 0.0555454 0.0503008 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.44 vpr 55.41 MiB 0.05 6772 -1 -1 12 0.25 -1 -1 32924 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 17.1 MiB 0.50 1374 13743 3666 8130 1947 55.6 MiB 0.22 0.00 6.76701 -143.203 -6.76701 6.76701 1.06 0.00160907 0.00147604 0.118125 0.108134 34 4200 50 6.55708e+06 361650 585099. 2024.56 5.02 0.530496 0.477192 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0681219 0.0616402 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 6.20 vpr 55.38 MiB 0.05 6852 -1 -1 12 0.19 -1 -1 32680 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.26 1252 8278 1977 5044 1257 55.2 MiB 0.13 0.00 7.19338 -143.847 -7.19338 7.19338 1.05 0.00145062 0.00133006 0.0653242 0.05988 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.36 0.239667 0.215853 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0514732 0.0465681 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.73 vpr 55.70 MiB 0.05 6824 -1 -1 14 0.43 -1 -1 32512 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.35 1757 10673 2583 7118 972 55.7 MiB 0.19 0.00 8.08019 -170.094 -8.08019 8.08019 1.07 0.00195504 0.00179308 0.0980598 0.0899095 38 4328 19 6.55708e+06 409870 638502. 2209.35 26.22 0.873873 0.786495 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.29 0.17 0.25 -1 -1 0.29 0.0744361 0.0676232 245 245 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 6.07 vpr 54.97 MiB 0.04 6612 -1 -1 11 0.18 -1 -1 32372 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1212 8009 2047 5116 846 55.2 MiB 0.12 0.00 6.43815 -136.573 -6.43815 6.43815 1.05 0.00139448 0.00127896 0.0605636 0.0555217 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.87 0.267 0.240119 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524819 0.0474584 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.19 vpr 55.34 MiB 0.05 6924 -1 -1 13 0.27 -1 -1 32904 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1339 4512 785 3381 346 55.4 MiB 0.09 0.00 8.23298 -156.44 -8.23298 8.23298 1.07 0.00157959 0.00143598 0.0410936 0.0378409 36 3361 29 6.55708e+06 325485 612192. 2118.31 4.60 0.406861 0.365593 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.27 0.12 0.25 -1 -1 0.27 0.054486 0.0494655 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.51 vpr 55.52 MiB 0.02 6744 -1 -1 12 0.28 -1 -1 32912 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1513 7973 1697 5548 728 55.6 MiB 0.15 0.00 7.05697 -153.444 -7.05697 7.05697 1.07 0.0017887 0.00163897 0.0691471 0.0634731 34 4231 45 6.55708e+06 409870 585099. 2024.56 4.11 0.475307 0.427004 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.26 0.29 0.22 -1 -1 0.26 0.0996208 0.0902505 227 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.98 vpr 55.26 MiB 0.04 6636 -1 -1 13 0.24 -1 -1 32884 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1286 13340 3362 8056 1922 55.3 MiB 0.21 0.00 7.57452 -156.038 -7.57452 7.57452 1.05 0.0015646 0.0014345 0.115043 0.105414 28 3767 45 6.55708e+06 337540 500653. 1732.36 10.52 0.636032 0.571323 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.22 0.22 0.18 -1 -1 0.22 0.0845574 0.0762556 184 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.97 vpr 55.26 MiB 0.05 6744 -1 -1 13 0.22 -1 -1 32792 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1203 12563 3367 6823 2373 55.5 MiB 0.18 0.00 7.77281 -162.033 -7.77281 7.77281 0.81 0.00150769 0.00138154 0.100441 0.0918099 30 2961 38 6.55708e+06 301375 526063. 1820.29 2.00 0.340434 0.306861 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0471758 0.0428135 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.77 vpr 55.30 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 32928 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 17.0 MiB 0.63 1416 10679 2747 6565 1367 55.8 MiB 0.17 0.00 6.86528 -151.049 -6.86528 6.86528 1.05 0.00171815 0.00157454 0.0902988 0.0826979 36 3519 46 6.55708e+06 373705 612192. 2118.31 6.27 0.672632 0.604984 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0600395 0.0546031 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.19 vpr 55.50 MiB 0.05 6872 -1 -1 13 0.28 -1 -1 32776 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1584 11223 2635 7117 1471 55.4 MiB 0.18 0.00 7.96921 -159.229 -7.96921 7.96921 1.05 0.00170389 0.00156205 0.0965322 0.088456 36 3876 21 6.55708e+06 349595 612192. 2118.31 5.38 0.461336 0.415327 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0620256 0.0563331 205 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.86 vpr 55.18 MiB 0.05 6716 -1 -1 14 0.29 -1 -1 32992 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 16.8 MiB 0.38 1228 9197 2464 5958 775 55.3 MiB 0.14 0.00 7.91369 -163.421 -7.91369 7.91369 1.09 0.00149985 0.00136412 0.0750989 0.0687248 28 3563 32 6.55708e+06 301375 500653. 1732.36 3.18 0.299666 0.269764 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0634698 0.0573009 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 8.33 vpr 55.39 MiB 0.04 6808 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 16.7 MiB 0.49 1537 7336 1683 5066 587 55.3 MiB 0.12 0.00 8.38432 -170.174 -8.38432 8.38432 1.06 0.00161444 0.00147957 0.062049 0.0568194 38 3362 32 6.55708e+06 361650 638502. 2209.35 5.58 0.582894 0.522708 23326 155178 -1 2978 15 1374 3965 188691 44200 7.21136 7.21136 -157.114 -7.21136 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0534632 0.0485525 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 8.32 vpr 55.71 MiB 0.03 6836 -1 -1 13 0.28 -1 -1 33120 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1531 8951 1993 6087 871 55.8 MiB 0.15 0.00 8.45326 -176.134 -8.45326 8.45326 1.09 0.00195245 0.00178634 0.0775527 0.0709209 38 3461 21 6.55708e+06 385760 638502. 2209.35 6.01 0.662124 0.594815 23326 155178 -1 2972 14 1250 4091 193064 44497 7.36616 7.36616 -162.608 -7.36616 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0565557 0.0515565 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.35 vpr 55.52 MiB 0.04 6780 -1 -1 12 0.33 -1 -1 32684 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1599 7323 1463 5208 652 55.7 MiB 0.15 0.00 7.47193 -159.786 -7.47193 7.47193 1.05 0.00160762 0.00150533 0.074181 0.0680498 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.25 0.41036 0.369942 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0647682 0.0588088 231 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.10 vpr 54.85 MiB 0.04 6616 -1 -1 11 0.13 -1 -1 32524 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 16.1 MiB 0.20 1043 10883 2916 6057 1910 54.8 MiB 0.14 0.00 5.95009 -133.303 -5.95009 5.95009 1.06 0.00115558 0.0010567 0.0734671 0.0671415 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.40 0.242775 0.218237 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0422223 0.0381188 127 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 6.80 vpr 55.13 MiB 0.04 6592 -1 -1 13 0.21 -1 -1 32792 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 16.6 MiB 0.45 1281 6211 1217 4524 470 55.3 MiB 0.10 0.00 7.73937 -166.104 -7.73937 7.73937 1.05 0.00138912 0.00127382 0.0473656 0.0434408 28 3459 26 6.55708e+06 325485 500653. 1732.36 2.44 0.236523 0.212649 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.23 0.15 0.21 -1 -1 0.23 0.0664926 0.0599691 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.44 vpr 55.89 MiB 0.05 6892 -1 -1 14 0.44 -1 -1 33080 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 17.7 MiB 0.37 1818 9380 1999 6471 910 56.0 MiB 0.17 0.00 8.82888 -183.788 -8.82888 8.82888 1.04 0.00203461 0.00186364 0.0885432 0.0811599 36 4579 30 6.55708e+06 433980 612192. 2118.31 5.45 0.566356 0.51094 22750 144809 -1 3780 17 1639 5179 293117 66152 7.76595 7.76595 -173.279 -7.76595 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0758363 0.0691542 267 267 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.82 vpr 55.12 MiB 0.04 6788 -1 -1 13 0.32 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 17.0 MiB 0.49 1477 8735 1981 6002 752 55.8 MiB 0.15 0.00 7.79483 -168.531 -7.79483 7.79483 1.05 0.00184633 0.00169238 0.0820304 0.0750558 26 4757 42 6.55708e+06 373705 477104. 1650.88 8.19 0.634428 0.570565 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.22 0.31 0.17 -1 -1 0.22 0.131845 0.119113 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.85 vpr 54.79 MiB 0.05 6540 -1 -1 11 0.16 -1 -1 32716 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 16.4 MiB 0.20 916 9943 3248 5072 1623 54.9 MiB 0.14 0.00 6.47975 -131.851 -6.47975 6.47975 1.07 0.00123955 0.00113508 0.0700747 0.0640659 36 2386 24 6.55708e+06 277265 612192. 2118.31 4.93 0.439965 0.394161 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.042569 0.0385803 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.65 vpr 55.66 MiB 0.05 7116 -1 -1 15 0.45 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1670 7867 1614 5465 788 56.0 MiB 0.15 0.00 8.70958 -179.837 -8.70958 8.70958 1.06 0.00195493 0.00179145 0.075405 0.0691463 36 4552 44 6.55708e+06 397815 612192. 2118.31 5.86 0.570721 0.514333 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.27 0.20 0.23 -1 -1 0.27 0.082099 0.0744768 241 241 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.44 vpr 55.55 MiB 0.04 6660 -1 -1 13 0.31 -1 -1 32980 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1370 12483 3068 7076 2339 55.6 MiB 0.21 0.00 7.72925 -154.988 -7.72925 7.72925 1.05 0.00172318 0.00157928 0.111599 0.10226 38 3720 24 6.55708e+06 349595 638502. 2209.35 19.56 0.821044 0.737552 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0626732 0.056938 207 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.78 vpr 55.03 MiB 0.04 6628 -1 -1 11 0.13 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1161 6718 1477 4583 658 54.9 MiB 0.10 0.00 6.62468 -135.028 -6.62468 6.62468 1.04 0.00123663 0.00113166 0.0462763 0.0423545 28 3179 30 6.55708e+06 289320 500653. 1732.36 8.01 0.383186 0.34288 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0506809 0.0457874 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.35 vpr 55.80 MiB 0.04 6876 -1 -1 12 0.33 -1 -1 32704 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1540 8735 2140 5810 785 55.6 MiB 0.15 0.00 7.17512 -150.872 -7.17512 7.17512 1.06 0.00174545 0.00159804 0.0757152 0.0693652 38 3444 21 6.55708e+06 373705 638502. 2209.35 5.63 0.621913 0.558859 23326 155178 -1 2888 15 1226 3932 189527 43326 6.31224 6.31224 -142.735 -6.31224 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0581905 0.0528705 217 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.22 vpr 55.22 MiB 0.04 6584 -1 -1 12 0.20 -1 -1 32532 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1252 5517 962 4221 334 55.1 MiB 0.09 0.00 7.41221 -152.744 -7.41221 7.41221 1.11 0.00143357 0.00131379 0.0426852 0.0391467 30 2953 20 6.55708e+06 313430 526063. 1820.29 4.35 0.477066 0.427262 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0513219 0.0464698 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 7.05 vpr 54.96 MiB 0.04 6584 -1 -1 12 0.18 -1 -1 32736 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 998 6383 1524 4361 498 55.0 MiB 0.12 0.00 7.15324 -144.822 -7.15324 7.15324 1.06 0.00088075 0.000790294 0.0582231 0.0533159 28 2443 17 6.55708e+06 253155 500653. 1732.36 3.52 0.338269 0.302736 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0547264 0.0494445 139 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.75 vpr 55.58 MiB 0.05 6760 -1 -1 12 0.28 -1 -1 32864 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1315 14583 4048 7926 2609 55.6 MiB 0.22 0.00 7.005 -132.757 -7.005 7.005 1.04 0.00170066 0.00155946 0.122325 0.112031 30 3666 44 6.55708e+06 385760 526063. 1820.29 3.21 0.415895 0.375978 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0620603 0.0563467 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 7.80 vpr 55.73 MiB 0.05 6744 -1 -1 14 0.32 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 17.3 MiB 0.51 1622 11046 2782 7202 1062 55.9 MiB 0.19 0.00 8.27143 -173.321 -8.27143 8.27143 1.06 0.00182707 0.00167659 0.0974203 0.0892994 30 4187 27 6.55708e+06 385760 526063. 1820.29 2.03 0.348656 0.314945 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.24 0.15 0.16 -1 -1 0.24 0.0680064 0.0617131 227 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.93 vpr 55.43 MiB 0.05 6716 -1 -1 12 0.23 -1 -1 32776 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1318 5191 912 3744 535 55.6 MiB 0.09 0.00 7.44045 -154.388 -7.44045 7.44045 0.88 0.0016361 0.00149899 0.0463444 0.042548 28 3868 27 6.55708e+06 325485 500653. 1732.36 2.58 0.272133 0.245118 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0616719 0.0559177 192 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.70 vpr 54.79 MiB 0.04 6700 -1 -1 12 0.14 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1100 6615 1512 4600 503 54.8 MiB 0.11 0.01 6.69922 -140.427 -6.69922 6.69922 1.06 0.0038875 0.00355745 0.0512008 0.0468729 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.57 0.198098 0.178185 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0425031 0.0383707 133 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 6.88 vpr 54.93 MiB 0.02 6644 -1 -1 12 0.23 -1 -1 32364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1148 11398 2849 6739 1810 55.1 MiB 0.17 0.00 7.39043 -143.264 -7.39043 7.39043 1.07 0.00144854 0.00132977 0.0892775 0.0819758 28 3477 38 6.55708e+06 301375 500653. 1732.36 9.16 0.596773 0.534736 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.22 0.14 0.20 -1 -1 0.22 0.0593155 0.0535855 170 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 9.64 vpr 55.30 MiB 0.05 6748 -1 -1 11 0.19 -1 -1 32940 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1267 6723 1289 4852 582 55.4 MiB 0.11 0.00 6.0378 -125.718 -6.0378 6.0378 1.12 0.00154 0.00141266 0.0538567 0.0492871 28 3807 32 6.55708e+06 337540 500653. 1732.36 3.40 0.285816 0.257143 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.24 0.18 0.18 -1 -1 0.24 0.0658058 0.0594448 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.26 vpr 55.27 MiB 0.04 6752 -1 -1 11 0.20 -1 -1 32736 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 16.7 MiB 0.32 1153 14128 4158 7800 2170 55.4 MiB 0.20 0.00 6.59995 -118.466 -6.59995 6.59995 1.05 0.00144559 0.00132516 0.109007 0.0999831 38 2640 22 6.55708e+06 337540 638502. 2209.35 5.11 0.501641 0.450767 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.29 0.11 0.27 -1 -1 0.29 0.0501783 0.0455059 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.11 vpr 54.96 MiB 0.04 6548 -1 -1 13 0.18 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 16.6 MiB 0.43 1112 5463 1180 3669 614 55.1 MiB 0.08 0.00 7.87624 -151.634 -7.87624 7.87624 1.05 0.00126564 0.0011607 0.0395405 0.0362924 30 2565 19 6.55708e+06 301375 526063. 1820.29 3.99 0.358572 0.321662 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0384435 0.0348995 142 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.15 vpr 55.11 MiB 0.04 6656 -1 -1 12 0.22 -1 -1 32412 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1245 6211 1266 4515 430 55.4 MiB 0.11 0.00 7.2362 -155.292 -7.2362 7.2362 1.07 0.00150813 0.00138215 0.0505199 0.046341 34 3145 23 6.55708e+06 325485 585099. 2024.56 4.20 0.493695 0.442309 22462 138074 -1 2771 14 1227 3252 178140 42327 6.38924 6.38924 -148.221 -6.38924 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0469171 0.0425693 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.00 vpr 55.37 MiB 0.05 6668 -1 -1 13 0.28 -1 -1 32804 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 16.8 MiB 0.37 1187 15843 5382 8046 2415 55.4 MiB 0.23 0.00 7.69912 -151.004 -7.69912 7.69912 1.05 0.00161306 0.0014785 0.127334 0.116699 32 3890 40 6.55708e+06 361650 554710. 1919.41 14.73 0.745445 0.669192 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.25 0.18 0.16 -1 -1 0.25 0.0717666 0.0648554 195 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.83 vpr 55.25 MiB 0.05 6736 -1 -1 14 0.31 -1 -1 32924 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.28 1371 16295 4299 9326 2670 55.4 MiB 0.25 0.00 7.90558 -162.398 -7.90558 7.90558 1.07 0.00176261 0.00161567 0.138288 0.126695 30 3631 37 6.55708e+06 373705 526063. 1820.29 10.06 0.655133 0.589794 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.26 0.13 0.20 -1 -1 0.26 0.0668355 0.0606901 215 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.89 vpr 55.24 MiB 0.04 6768 -1 -1 14 0.26 -1 -1 32852 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1364 9067 2106 6307 654 55.6 MiB 0.15 0.00 7.8859 -150.917 -7.8859 7.8859 1.05 0.00159805 0.0014633 0.0753546 0.0689786 36 3364 28 6.55708e+06 325485 612192. 2118.31 5.07 0.44437 0.399836 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.060476 0.0548419 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.79 vpr 55.55 MiB 0.04 6844 -1 -1 13 0.33 -1 -1 33252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1350 6211 1219 4577 415 55.5 MiB 0.11 0.00 7.98147 -162.621 -7.98147 7.98147 1.04 0.0016792 0.0015403 0.0577606 0.0530184 36 3253 20 6.55708e+06 325485 612192. 2118.31 3.40 0.416727 0.374837 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.24 0.08 0.21 -1 -1 0.24 0.0283175 0.0256211 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.93 vpr 54.79 MiB 0.04 6696 -1 -1 13 0.18 -1 -1 32704 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1092 10670 2647 6412 1611 54.9 MiB 0.14 0.00 7.9674 -161.443 -7.9674 7.9674 1.10 0.00128282 0.0011753 0.0776175 0.0711099 32 2870 34 6.55708e+06 289320 554710. 1919.41 2.73 0.389309 0.349985 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.26 0.10 0.21 -1 -1 0.26 0.0426228 0.0386276 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 8.72 vpr 55.48 MiB 0.05 6824 -1 -1 13 0.43 -1 -1 32920 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1304 7653 1748 5033 872 55.7 MiB 0.14 0.00 8.34953 -161.953 -8.34953 8.34953 1.05 0.0017132 0.00157123 0.0695901 0.0639062 30 3707 24 6.55708e+06 373705 526063. 1820.29 2.44 0.302563 0.273375 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0681447 0.0618533 208 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 7.19 vpr 55.24 MiB 0.05 6892 -1 -1 14 0.28 -1 -1 31488 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1332 7336 1480 5450 406 55.3 MiB 0.12 0.00 7.42283 -159.831 -7.42283 7.42283 1.04 0.00159275 0.00145987 0.0610949 0.0559217 28 3869 50 6.55708e+06 361650 500653. 1732.36 11.57 0.687715 0.617283 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.22 0.68 0.18 -1 -1 0.22 0.170927 0.153341 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.37 vpr 55.40 MiB 0.05 6788 -1 -1 12 0.25 -1 -1 33016 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1420 6575 1256 4964 355 55.5 MiB 0.11 0.00 8.28906 -160.635 -8.28906 8.28906 1.05 0.00164982 0.00151379 0.0552008 0.0506724 34 3727 35 6.55708e+06 385760 585099. 2024.56 5.74 0.613486 0.550755 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0595078 0.0541626 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 9.68 vpr 55.27 MiB 0.05 6772 -1 -1 13 0.23 -1 -1 32904 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1315 6522 1420 4675 427 55.6 MiB 0.11 0.00 7.42898 -137.517 -7.42898 7.42898 1.05 0.00154167 0.00141503 0.0561738 0.0515267 30 3356 18 6.55708e+06 337540 526063. 1820.29 2.56 0.249606 0.225272 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0553616 0.0502198 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.44 vpr 55.70 MiB 0.02 6756 -1 -1 14 0.34 -1 -1 32892 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.48 1483 8199 1652 5918 629 55.9 MiB 0.14 0.00 8.85275 -170.114 -8.85275 8.85275 1.05 0.00178525 0.00163153 0.0721702 0.0661061 28 4521 37 6.55708e+06 385760 500653. 1732.36 12.88 0.588764 0.529368 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0764262 0.0692793 220 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.88 vpr 55.46 MiB 0.04 6776 -1 -1 11 0.28 -1 -1 32756 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 16.8 MiB 0.31 1183 4512 917 3199 396 55.3 MiB 0.08 0.00 6.95549 -133.856 -6.95549 6.95549 1.04 0.00150902 0.00138555 0.0383013 0.0351444 28 3440 40 6.55708e+06 349595 500653. 1732.36 8.98 0.607915 0.543597 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0748488 0.0674849 174 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 7.87 vpr 55.05 MiB 0.04 6480 -1 -1 13 0.16 -1 -1 32572 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1098 6999 1531 4700 768 55.1 MiB 0.10 0.00 7.85907 -167.622 -7.85907 7.85907 1.04 0.00124672 0.00114118 0.0492086 0.0450668 26 3154 29 6.55708e+06 277265 477104. 1650.88 2.68 0.226191 0.2033 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.23 0.12 0.17 -1 -1 0.23 0.0491871 0.0444309 142 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 10.19 vpr 55.24 MiB 0.05 6832 -1 -1 14 0.23 -1 -1 32736 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1308 7027 1497 5027 503 55.4 MiB 0.12 0.00 8.02087 -160.438 -8.02087 8.02087 1.04 0.00155512 0.00141697 0.057695 0.0528692 28 3737 36 6.55708e+06 325485 500653. 1732.36 8.59 0.570896 0.511661 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.065383 0.0590323 183 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.89 vpr 55.90 MiB 0.05 6732 -1 -1 15 0.36 -1 -1 33280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 17.2 MiB 0.54 1579 7323 1484 5148 691 55.8 MiB 0.13 0.00 9.31018 -193.267 -9.31018 9.31018 1.08 0.00182715 0.00167535 0.0667704 0.0612093 28 4344 42 6.55708e+06 385760 500653. 1732.36 2.49 0.366017 0.33018 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0694484 0.0630225 228 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.93 vpr 54.74 MiB 0.04 6548 -1 -1 11 0.16 -1 -1 32476 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 16.4 MiB 0.57 1088 7079 1594 5001 484 54.8 MiB 0.10 0.00 6.82798 -137.917 -6.82798 6.82798 1.11 0.00118489 0.00108007 0.0478437 0.0437565 28 2912 30 6.55708e+06 265210 500653. 1732.36 3.27 0.228674 0.205567 21310 115450 -1 2481 64 1445 5105 1045472 613892 5.86358 5.86358 -137.858 -5.86358 0 0 612192. 2118.31 0.22 0.53 0.18 -1 -1 0.22 0.133271 0.119236 126 124 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.70 vpr 55.17 MiB 0.04 6528 -1 -1 12 0.18 -1 -1 32488 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1155 8207 1978 5141 1088 55.1 MiB 0.12 0.00 7.38032 -154.384 -7.38032 7.38032 1.05 0.0013655 0.00125107 0.0610134 0.0559849 46 2574 16 6.55708e+06 313430 782063. 2706.10 4.87 0.43912 0.393126 24766 183262 -1 2168 17 929 2778 124629 29449 6.47024 6.47024 -143.196 -6.47024 0 0 958460. 3316.47 0.33 0.10 0.30 -1 -1 0.33 0.0494643 0.0447796 157 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 7.16 vpr 55.40 MiB 0.05 6704 -1 -1 12 0.30 -1 -1 33000 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 17.0 MiB 0.34 1424 7439 1505 5396 538 55.8 MiB 0.13 0.00 7.41461 -164.576 -7.41461 7.41461 1.05 0.00173532 0.00158803 0.0666674 0.0610506 34 3820 24 6.55708e+06 373705 585099. 2024.56 4.55 0.493087 0.442952 22462 138074 -1 3126 15 1357 3877 209257 49419 6.7229 6.7229 -159.681 -6.7229 0 0 742403. 2568.87 0.26 0.13 0.19 -1 -1 0.26 0.0572853 0.0520771 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.62 vpr 55.12 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32868 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.47 1429 8579 2186 5781 612 55.7 MiB 0.14 0.00 7.42022 -157.463 -7.42022 7.42022 1.05 0.00154368 0.00141304 0.0694416 0.0636671 30 3708 20 6.55708e+06 337540 526063. 1820.29 2.05 0.266346 0.240173 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.22 0.07 0.10 -1 -1 0.22 0.0262101 0.0237065 186 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 11.30 vpr 55.76 MiB 0.05 6864 -1 -1 14 0.46 -1 -1 33324 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1656 14691 3485 9017 2189 55.8 MiB 0.24 0.00 8.55829 -177.042 -8.55829 8.55829 1.04 0.00193157 0.00177069 0.129995 0.11918 38 3905 20 6.55708e+06 421925 638502. 2209.35 5.79 0.692246 0.624088 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.28 0.15 0.25 -1 -1 0.28 0.0703929 0.0640838 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 7.23 vpr 55.20 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32532 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1210 13157 4017 6643 2497 55.3 MiB 0.19 0.00 6.86503 -131.636 -6.86503 6.86503 1.05 0.00150857 0.00138312 0.104338 0.0956301 30 3211 36 6.55708e+06 325485 526063. 1820.29 2.10 0.335543 0.302607 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.051727 0.0469074 176 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 5.57 vpr 54.85 MiB 0.04 6592 -1 -1 11 0.17 -1 -1 32356 -1 -1 25 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 16.4 MiB 0.22 858 9234 2019 6554 661 54.9 MiB 0.16 0.00 6.39815 -115.858 -6.39815 6.39815 1.07 0.00122167 0.00111864 0.090794 0.0831485 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.57 0.254516 0.229707 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0566443 0.0508183 138 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 11.85 vpr 55.96 MiB 0.05 7028 -1 -1 13 0.41 -1 -1 33036 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 17.8 MiB 0.27 1915 8888 1943 6342 603 56.0 MiB 0.17 0.00 7.96961 -161.89 -7.96961 7.96961 1.05 0.00215819 0.00197941 0.0851364 0.0780885 36 5494 32 6.55708e+06 482200 612192. 2118.31 7.40 0.746579 0.673031 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.27 0.19 0.23 -1 -1 0.27 0.07906 0.0720521 280 279 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.71 vpr 55.28 MiB 0.05 6844 -1 -1 14 0.26 -1 -1 33128 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 17.0 MiB 0.27 1307 6821 1398 4713 710 55.5 MiB 0.11 0.00 8.63003 -171.716 -8.63003 8.63003 1.04 0.00153037 0.00140356 0.0586958 0.0538591 28 3653 27 6.55708e+06 313430 500653. 1732.36 10.55 0.534767 0.4793 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547028 0.0495538 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.68 vpr 55.00 MiB 0.04 6580 -1 -1 12 0.16 -1 -1 32292 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1197 8251 1803 5271 1177 54.9 MiB 0.11 0.00 7.37817 -162.484 -7.37817 7.37817 1.05 0.00129686 0.00118844 0.05599 0.0513393 28 3416 42 6.55708e+06 325485 500653. 1732.36 2.68 0.26409 0.237519 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0445335 0.0403685 144 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.40 vpr 55.25 MiB 0.04 6592 -1 -1 13 0.29 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1296 6623 1420 4442 761 55.3 MiB 0.12 0.00 7.83929 -154.667 -7.83929 7.83929 1.05 0.00152501 0.00139922 0.0574432 0.0526812 30 3458 27 6.55708e+06 301375 526063. 1820.29 9.47 0.48898 0.438491 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0529112 0.0480454 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 8.35 vpr 55.82 MiB 0.03 6812 -1 -1 13 0.31 -1 -1 33516 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1675 5723 977 4473 273 55.9 MiB 0.11 0.00 7.72485 -162.113 -7.72485 7.72485 1.06 0.00184348 0.00169113 0.0526985 0.0484279 30 4421 42 6.55708e+06 421925 526063. 1820.29 3.19 0.358461 0.323176 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0665945 0.0605167 235 234 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.74 vpr 55.51 MiB 0.05 6740 -1 -1 11 0.23 -1 -1 32892 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1363 8827 2077 5986 764 55.6 MiB 0.14 0.00 7.0834 -142.912 -7.0834 7.0834 1.06 0.00162525 0.00148949 0.0739497 0.0677753 30 3732 37 6.55708e+06 385760 526063. 1820.29 2.95 0.333311 0.300675 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0593074 0.0537365 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 8.27 vpr 55.58 MiB 0.03 6748 -1 -1 15 0.32 -1 -1 32856 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1473 9543 2499 5737 1307 55.7 MiB 0.16 0.00 9.02492 -182.614 -9.02492 9.02492 1.07 0.00170425 0.00155937 0.0834121 0.0762538 36 3930 43 6.55708e+06 349595 612192. 2118.31 5.96 0.64415 0.578972 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610698 0.0553805 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 6.80 vpr 55.38 MiB 0.05 6676 -1 -1 13 0.31 -1 -1 32944 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 17.1 MiB 0.22 1528 11922 3138 7505 1279 55.7 MiB 0.20 0.00 8.01701 -168.403 -8.01701 8.01701 1.05 0.00136382 0.00124055 0.103502 0.0947721 34 4013 32 6.55708e+06 385760 585099. 2024.56 3.25 0.428402 0.386334 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.29 0.15 0.16 -1 -1 0.29 0.0676822 0.0615819 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.05 vpr 55.28 MiB 0.04 6544 -1 -1 12 0.20 -1 -1 32288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.47 1144 6321 1459 4287 575 55.0 MiB 0.10 0.00 6.98904 -150.776 -6.98904 6.98904 1.05 0.0012962 0.00118838 0.0448126 0.0411148 30 2863 42 6.55708e+06 349595 526063. 1820.29 2.00 0.255304 0.22938 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0441448 0.0400114 159 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.43 vpr 54.96 MiB 0.03 6512 -1 -1 11 0.15 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 16.6 MiB 0.39 1041 8402 1813 6153 436 55.1 MiB 0.12 0.00 6.97021 -142.93 -6.97021 6.97021 1.05 0.0012389 0.00113424 0.0588392 0.0538441 30 2905 24 6.55708e+06 265210 526063. 1820.29 2.30 0.232955 0.209659 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0449475 0.0406488 138 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 9.48 vpr 55.54 MiB 0.05 6840 -1 -1 13 0.32 -1 -1 32896 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 17.0 MiB 0.38 1528 7975 1701 5466 808 55.7 MiB 0.13 0.00 8.19329 -167.366 -8.19329 8.19329 1.08 0.00170237 0.00155868 0.0691094 0.0633781 28 4213 29 6.55708e+06 373705 500653. 1732.36 9.31 0.619605 0.556544 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0610316 0.0553164 204 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.20 vpr 54.84 MiB 0.02 6616 -1 -1 10 0.15 -1 -1 32856 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1030 5107 1053 3581 473 55.1 MiB 0.10 0.00 6.08471 -123.999 -6.08471 6.08471 1.05 0.00121626 0.00111315 0.0475233 0.0434209 30 2309 29 6.55708e+06 289320 526063. 1820.29 3.80 0.39355 0.352358 21886 126133 -1 1984 35 866 2657 373349 213628 5.25032 5.25032 -118.026 -5.25032 0 0 666494. 2306.21 0.26 0.24 0.20 -1 -1 0.26 0.0802863 0.072171 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 6.78 vpr 55.10 MiB 0.04 6668 -1 -1 14 0.19 -1 -1 32780 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 16.4 MiB 0.42 1019 11203 3089 5915 2199 55.0 MiB 0.15 0.00 7.69221 -156.392 -7.69221 7.69221 1.05 0.00132736 0.00121554 0.0791989 0.0724887 34 2803 37 6.55708e+06 289320 585099. 2024.56 2.54 0.333525 0.299941 22462 138074 -1 2326 18 1079 3249 175189 43266 6.7601 6.7601 -147.192 -6.7601 0 0 742403. 2568.87 0.28 0.12 0.23 -1 -1 0.28 0.0503284 0.0453972 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 6.40 vpr 55.41 MiB 0.05 6684 -1 -1 12 0.30 -1 -1 32908 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1351 11891 3061 6959 1871 55.6 MiB 0.19 0.00 7.58423 -159.03 -7.58423 7.58423 1.08 0.00167668 0.00153839 0.103121 0.094297 36 3367 18 6.55708e+06 349595 612192. 2118.31 3.62 0.451807 0.406828 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610964 0.0554537 201 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 8.33 vpr 54.74 MiB 0.05 6552 -1 -1 12 0.16 -1 -1 32292 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 16.2 MiB 0.30 1079 5567 1026 4331 210 54.8 MiB 0.08 0.00 6.95154 -149.121 -6.95154 6.95154 1.04 0.00122763 0.00112318 0.039747 0.0364123 28 3150 46 6.55708e+06 277265 500653. 1732.36 7.03 0.438707 0.391887 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.20 0.11 0.09 -1 -1 0.20 0.0469118 0.042471 141 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 9.18 vpr 55.19 MiB 0.05 6716 -1 -1 12 0.19 -1 -1 32856 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1263 7843 1830 5405 608 55.4 MiB 0.13 0.00 7.086 -151.926 -7.086 7.086 1.05 0.00155138 0.00142046 0.0659666 0.060399 28 3643 19 6.55708e+06 325485 500653. 1732.36 2.50 0.266154 0.239664 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.23 0.22 0.18 -1 -1 0.23 0.0750401 0.0676982 188 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 6.67 vpr 55.32 MiB 0.05 6748 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1349 6509 1390 4237 882 55.5 MiB 0.11 0.00 7.60996 -160.091 -7.60996 7.60996 1.07 0.00156315 0.00143197 0.0540348 0.0495299 34 3758 47 6.55708e+06 349595 585099. 2024.56 2.93 0.419411 0.376743 22462 138074 -1 3187 19 1257 3833 298777 77572 6.5197 6.5197 -154.677 -6.5197 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0623382 0.0564277 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.03 vpr 55.03 MiB 0.04 6620 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1256 8251 2031 5471 749 55.2 MiB 0.12 0.00 6.67834 -143.715 -6.67834 6.67834 1.07 0.00128913 0.00118107 0.0564648 0.0516941 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.79 0.230362 0.207374 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0516899 0.0467213 148 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.14 vpr 54.96 MiB 0.04 6568 -1 -1 13 0.19 -1 -1 32508 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1339 8047 1963 5261 823 55.1 MiB 0.10 0.00 7.72555 -161.807 -7.72555 7.72555 1.06 0.000546167 0.000493652 0.0368678 0.0332272 28 3857 33 6.55708e+06 325485 500653. 1732.36 9.24 0.56761 0.507103 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.23 0.24 0.18 -1 -1 0.23 0.0843968 0.0758925 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.44 vpr 55.53 MiB 0.05 6840 -1 -1 13 0.25 -1 -1 32928 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 16.8 MiB 0.20 1276 15187 4382 8407 2398 55.6 MiB 0.23 0.00 7.99583 -160.474 -7.99583 7.99583 1.07 0.00156065 0.00143128 0.121243 0.111127 40 2881 19 6.55708e+06 325485 666494. 2306.21 5.02 0.578971 0.520822 23614 160646 -1 2859 15 1242 3716 205051 47781 7.09316 7.09316 -151.569 -7.09316 0 0 872365. 3018.56 0.30 0.12 0.27 -1 -1 0.30 0.0518574 0.0470708 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 6.67 vpr 55.12 MiB 0.05 6880 -1 -1 11 0.19 -1 -1 32740 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1142 12761 3414 7382 1965 55.1 MiB 0.19 0.00 6.37111 -124.414 -6.37111 6.37111 1.05 0.00137673 0.00125894 0.103842 0.0949386 36 2747 19 6.55708e+06 337540 612192. 2118.31 4.87 0.481412 0.431847 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0477242 0.043124 162 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.44 vpr 55.93 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33456 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 17.3 MiB 0.39 1569 9951 2260 6812 879 55.9 MiB 0.18 0.00 8.3634 -177.338 -8.3634 8.3634 1.00 0.00084219 0.000760871 0.0916238 0.0838099 34 4532 35 6.55708e+06 385760 585099. 2024.56 3.43 0.463318 0.417773 22462 138074 -1 3580 16 1687 4869 264649 62027 7.41056 7.41056 -172.227 -7.41056 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0642241 0.0584273 225 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.16 vpr 55.05 MiB 0.04 6612 -1 -1 12 0.20 -1 -1 32476 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 16.5 MiB 0.45 1144 6619 1429 4488 702 55.0 MiB 0.10 0.00 6.81857 -143.271 -6.81857 6.81857 1.05 0.00126147 0.00115514 0.04513 0.0413824 36 2680 25 6.55708e+06 337540 612192. 2118.31 2.70 0.328613 0.294904 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0394137 0.0358377 145 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.30 vpr 55.35 MiB 0.04 6744 -1 -1 13 0.29 -1 -1 32992 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1396 7843 1736 5120 987 55.4 MiB 0.12 0.00 7.69421 -153.973 -7.69421 7.69421 1.08 0.0015876 0.00145072 0.0658667 0.0603216 28 3900 43 6.55708e+06 325485 500653. 1732.36 3.26 0.308391 0.277594 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.22 0.19 0.18 -1 -1 0.22 0.0681866 0.0616621 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.66 vpr 55.04 MiB 0.04 6620 -1 -1 13 0.18 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1076 10583 2933 6087 1563 54.9 MiB 0.14 0.00 7.44215 -162.135 -7.44215 7.44215 1.05 0.00128006 0.0011715 0.0721755 0.0660637 28 3369 28 6.55708e+06 301375 500653. 1732.36 2.87 0.261323 0.235436 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0569187 0.0513276 146 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.70 vpr 55.46 MiB 0.05 6660 -1 -1 12 0.21 -1 -1 32812 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1148 5517 1034 4096 387 55.2 MiB 0.09 0.00 7.36755 -151.17 -7.36755 7.36755 1.05 0.00152259 0.0013947 0.0463069 0.0424714 34 3150 21 6.55708e+06 313430 585099. 2024.56 4.31 0.495371 0.443919 22462 138074 -1 2544 17 1051 3386 187761 43277 6.5237 6.5237 -142.576 -6.5237 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0554314 0.0502404 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.82 vpr 55.96 MiB 0.05 6976 -1 -1 15 0.50 -1 -1 32832 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1759 9998 2422 6696 880 55.8 MiB 0.18 0.00 8.78932 -180.299 -8.78932 8.78932 1.07 0.00202495 0.00186002 0.0969755 0.0888388 36 4483 32 6.55708e+06 409870 612192. 2118.31 6.18 0.569647 0.514341 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.27 0.21 0.25 -1 -1 0.27 0.0841946 0.0764979 250 250 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.15 vpr 54.30 MiB 0.04 6412 -1 -1 10 0.10 -1 -1 32068 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 16.0 MiB 0.29 757 9042 2084 6396 562 54.4 MiB 0.10 0.00 5.22063 -120.025 -5.22063 5.22063 1.07 0.000893745 0.00081805 0.051473 0.0469983 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.55 0.160243 0.143452 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.23 0.08 0.18 -1 -1 0.23 0.0301454 0.0270752 92 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 6.71 vpr 54.79 MiB 0.03 6612 -1 -1 13 0.15 -1 -1 32592 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1069 6415 1411 4237 767 55.1 MiB 0.09 0.00 7.77311 -151.473 -7.77311 7.77311 1.07 0.00128432 0.00117689 0.0442048 0.0404886 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.87 0.265755 0.238888 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0710206 0.0639536 150 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.24 vpr 55.18 MiB 0.05 6636 -1 -1 12 0.19 -1 -1 32624 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1241 11223 2642 6703 1878 55.1 MiB 0.17 0.00 6.72746 -150.964 -6.72746 6.72746 1.05 0.001451 0.00133137 0.0894805 0.0821083 34 3118 16 6.55708e+06 277265 585099. 2024.56 2.50 0.313877 0.283085 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0545664 0.0493467 167 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.53 vpr 54.68 MiB 0.05 6580 -1 -1 9 0.13 -1 -1 32424 -1 -1 25 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 16.1 MiB 0.17 840 9694 2571 5897 1226 54.7 MiB 0.12 0.00 5.60806 -104.508 -5.60806 5.60806 1.07 0.0010197 0.00093416 0.058698 0.0538446 26 2429 32 6.55708e+06 301375 477104. 1650.88 3.47 0.209499 0.188176 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0433009 0.0389052 112 111 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 9.64 vpr 55.72 MiB 0.05 6716 -1 -1 12 0.26 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 17.1 MiB 0.57 1640 5273 863 4118 292 55.7 MiB 0.09 0.00 7.59969 -165.851 -7.59969 7.59969 1.05 0.00168915 0.00153707 0.0443563 0.0406678 36 4101 31 6.55708e+06 409870 612192. 2118.31 16.35 0.683667 0.612659 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.100153 0.0904891 209 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.78 vpr 55.60 MiB 0.07 6804 -1 -1 14 0.65 -1 -1 32856 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1228 13340 3394 7367 2579 55.9 MiB 0.22 0.00 8.33716 -163.889 -8.33716 8.33716 1.05 0.00171935 0.00157379 0.116386 0.106507 38 3334 33 6.55708e+06 349595 638502. 2209.35 15.36 0.799747 0.718221 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0570099 0.0518879 204 204 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.01 vpr 55.59 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30656 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 929 17268 4565 10218 2485 56.0 MiB 0.27 0.00 4.24756 -141.398 -4.24756 4.24756 1.07 0.00137294 0.00125818 0.106057 0.0969715 32 2653 22 6.64007e+06 452088 554710. 1919.41 1.38 0.280755 0.253215 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.055258 0.0498254 153 96 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.45 vpr 55.61 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 17.4 MiB 0.24 873 12919 4129 6395 2395 56.0 MiB 0.21 0.00 4.44716 -130.844 -4.44716 4.44716 1.03 0.00128814 0.00118101 0.0918461 0.0841975 32 2348 20 6.64007e+06 288834 554710. 1919.41 1.32 0.263396 0.237783 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0552136 0.0496668 142 91 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.64 vpr 55.29 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30192 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1003 9675 2005 7104 566 55.7 MiB 0.15 0.00 3.83457 -129.818 -3.83457 3.83457 1.05 0.00128652 0.00118285 0.0582171 0.0534792 30 2305 22 6.64007e+06 439530 526063. 1820.29 1.24 0.220376 0.198559 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.32 0.07 0.18 -1 -1 0.32 0.0307765 0.0275688 142 65 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.05 vpr 55.21 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30368 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 17.1 MiB 0.09 990 11245 3461 6773 1011 55.9 MiB 0.20 0.00 4.46418 -132.921 -4.46418 4.46418 1.05 0.00117595 0.00108149 0.0741681 0.0682493 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.46 0.219108 0.197959 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.22 0.14 0.18 -1 -1 0.22 0.060055 0.0542688 138 34 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.79 vpr 55.36 MiB 0.03 7032 -1 -1 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 17.3 MiB 0.12 849 15017 4515 8552 1950 55.9 MiB 0.26 0.00 4.14936 -139.21 -4.14936 4.14936 1.05 0.00125237 0.00114944 0.103123 0.0947044 32 2360 21 6.64007e+06 276276 554710. 1919.41 1.33 0.261821 0.236873 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0550582 0.0496775 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.92 vpr 55.45 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 17.4 MiB 0.13 1024 19142 5848 10342 2952 56.1 MiB 0.28 0.01 3.5603 -122.153 -3.5603 3.5603 1.06 0.00137015 0.00125922 0.10756 0.0985194 32 2260 24 6.64007e+06 489762 554710. 1919.41 1.28 0.277724 0.2508 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0541696 0.0488047 156 64 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.99 vpr 54.93 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30460 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 16.3 MiB 0.12 722 12923 4015 7171 1737 55.0 MiB 0.17 0.00 3.7987 -103.375 -3.7987 3.7987 0.80 0.000915725 0.000840192 0.07377 0.0670434 32 1657 16 6.64007e+06 251160 554710. 1919.41 1.15 0.181756 0.163032 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0336964 0.0302072 96 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.97 vpr 55.18 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30004 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 16.7 MiB 0.09 948 16081 4441 8879 2761 55.6 MiB 0.20 0.00 3.49449 -109.504 -3.49449 3.49449 1.06 0.00110375 0.00101491 0.0689728 0.0632262 28 2371 22 6.64007e+06 426972 500653. 1732.36 1.35 0.210871 0.190021 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0448822 0.040489 140 4 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.11 vpr 55.33 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30040 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 16.7 MiB 0.18 706 7820 1805 5417 598 55.6 MiB 0.12 0.00 3.31336 -101.862 -3.31336 3.31336 1.06 0.00107676 0.000986984 0.0519688 0.0476378 28 1873 21 6.64007e+06 213486 500653. 1732.36 1.07 0.186327 0.167111 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0407442 0.0365137 106 85 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.18 vpr 55.15 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 16.9 MiB 0.18 890 10756 2975 5928 1853 55.6 MiB 0.08 0.00 3.5061 -124.869 -3.5061 3.5061 1.04 0.000387342 0.000350169 0.0257644 0.023324 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.77 0.0768339 0.0678766 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.26 0.09 0.21 -1 -1 0.26 0.0392327 0.0352998 121 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.97 vpr 55.25 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 29992 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 16.9 MiB 0.17 822 14012 5060 7295 1657 55.6 MiB 0.20 0.00 3.4841 -115.834 -3.4841 3.4841 1.05 0.00106519 0.000977506 0.0897426 0.0823383 28 1767 16 6.64007e+06 226044 500653. 1732.36 1.12 0.216138 0.194887 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0388869 0.0349265 110 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.99 vpr 55.02 MiB 0.02 6904 -1 -1 1 0.02 -1 -1 30328 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.8 MiB 0.13 840 9753 2297 6936 520 55.5 MiB 0.14 0.00 3.52209 -114.564 -3.52209 3.52209 1.05 0.00107733 0.000986628 0.0522698 0.0478189 30 1922 21 6.64007e+06 364182 526063. 1820.29 1.19 0.186412 0.167135 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.24 0.08 0.22 -1 -1 0.24 0.0374285 0.0336356 114 65 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.51 vpr 55.32 MiB 0.07 7104 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 17.2 MiB 0.24 893 19448 6133 10048 3267 55.8 MiB 0.28 0.00 3.56129 -122.026 -3.56129 3.56129 1.05 0.00125396 0.00114913 0.111689 0.102377 32 2222 23 6.64007e+06 426972 554710. 1919.41 1.33 0.274374 0.247935 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.27 0.14 0.21 -1 -1 0.27 0.0548642 0.0494335 145 58 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.69 vpr 55.42 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30344 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1031 17036 4693 9820 2523 56.0 MiB 0.26 0.00 4.31123 -147.759 -4.31123 4.31123 1.12 0.00131247 0.00120392 0.100211 0.0918588 26 2990 23 6.64007e+06 452088 477104. 1650.88 2.33 0.272916 0.246206 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0549128 0.0494706 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.85 vpr 55.11 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30628 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 800 8852 2481 5509 862 55.2 MiB 0.07 0.00 3.4261 -103.793 -3.4261 3.4261 0.86 0.000348744 0.000315524 0.0197965 0.0179423 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.73 0.0656575 0.0577674 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.27 0.08 0.23 -1 -1 0.27 0.0348072 0.0309915 108 29 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.28 vpr 55.57 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1068 13316 3890 7652 1774 56.0 MiB 0.22 0.00 3.5141 -124.724 -3.5141 3.5141 1.03 0.00130096 0.00119221 0.0948447 0.0869652 32 2326 21 6.64007e+06 276276 554710. 1919.41 1.29 0.258662 0.233591 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.31 0.06 0.14 -1 -1 0.31 0.0231827 0.02072 147 63 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.44 vpr 55.54 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 17.3 MiB 0.20 964 16340 5208 8057 3075 55.9 MiB 0.20 0.00 3.6263 -123.14 -3.6263 3.6263 1.05 0.00124994 0.00114594 0.0909267 0.0833106 34 2358 39 6.64007e+06 452088 585099. 2024.56 2.88 0.387948 0.348479 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.31 0.12 0.22 -1 -1 0.31 0.0370198 0.0331174 144 57 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.23 vpr 55.34 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30044 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 919 13487 3473 7992 2022 55.7 MiB 0.18 0.00 2.83964 -105.375 -2.83964 2.83964 1.05 0.00109892 0.00100631 0.0721393 0.066111 26 2137 22 6.64007e+06 389298 477104. 1650.88 1.13 0.213442 0.192014 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0407777 0.036702 119 65 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.81 vpr 54.88 MiB 0.04 6700 -1 -1 1 0.03 -1 -1 30032 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56004 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.1 MiB 0.06 670 10835 3352 6011 1472 54.7 MiB 0.12 0.00 2.72344 -89.4054 -2.72344 2.72344 0.94 0.000781874 0.000715656 0.0540326 0.0494786 32 1416 19 6.64007e+06 188370 554710. 1919.41 1.13 0.14952 0.133831 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.27 0.07 0.23 -1 -1 0.27 0.0311481 0.0277317 85 34 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 6.59 vpr 55.31 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30328 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 16.8 MiB 0.14 727 12120 4439 5930 1751 55.6 MiB 0.18 0.00 4.19115 -121.049 -4.19115 4.19115 1.05 0.00109019 0.000998833 0.0801954 0.0735341 32 2029 16 6.64007e+06 213486 554710. 1919.41 1.19 0.207352 0.186821 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.25 0.07 0.22 -1 -1 0.25 0.0363707 0.0327424 113 64 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.02 vpr 55.54 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30056 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 16.7 MiB 0.10 885 17732 4998 9545 3189 55.7 MiB 0.26 0.00 4.22193 -138.344 -4.22193 4.22193 1.05 0.00122416 0.00112453 0.101095 0.0927748 32 2479 24 6.64007e+06 452088 554710. 1919.41 1.29 0.26267 0.237339 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0514446 0.0463942 147 34 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 6.66 vpr 55.86 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 960 11288 2842 7087 1359 56.1 MiB 0.21 0.01 3.74425 -123.858 -3.74425 3.74425 1.05 0.00141823 0.00130013 0.0795518 0.072765 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.35 0.261477 0.235141 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.060895 0.054662 150 124 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.74 vpr 54.80 MiB 0.02 6696 -1 -1 1 0.02 -1 -1 30352 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.1 MiB 0.11 395 10503 3120 6151 1232 54.6 MiB 0.10 0.00 2.74064 -71.156 -2.74064 2.74064 1.05 0.000682856 0.000624286 0.0472801 0.0432418 28 1145 19 6.64007e+06 213486 500653. 1732.36 1.06 0.130664 0.116942 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0260333 0.0231926 77 30 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.55 vpr 55.25 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 29976 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 16.9 MiB 0.09 990 12749 4130 6257 2362 55.6 MiB 0.21 0.00 4.45633 -140.507 -4.45633 4.45633 1.07 0.00115288 0.00105971 0.0823503 0.0756772 32 2561 21 6.64007e+06 276276 554710. 1919.41 1.31 0.228995 0.207016 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0449407 0.0405688 138 3 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.60 vpr 54.55 MiB 0.04 6704 -1 -1 1 0.03 -1 -1 30148 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.3 MiB 0.05 603 10672 2424 7898 350 54.8 MiB 0.12 0.00 2.3583 -83.9313 -2.3583 2.3583 1.14 0.000723994 0.000662986 0.0495188 0.045349 28 1546 20 6.64007e+06 163254 500653. 1732.36 1.25 0.145628 0.13058 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.22 0.06 0.20 -1 -1 0.22 0.0266707 0.0238664 81 3 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.95 vpr 55.24 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30384 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.09 956 14691 4376 8904 1411 55.8 MiB 0.23 0.00 4.18856 -140.856 -4.18856 4.18856 1.06 0.00125527 0.00115302 0.0839117 0.0769085 32 2560 22 6.64007e+06 439530 554710. 1919.41 1.33 0.243605 0.219756 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0541553 0.0486609 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.99 vpr 55.28 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30064 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1019 8796 1857 6524 415 55.9 MiB 0.15 0.00 3.60659 -123.354 -3.60659 3.60659 1.05 0.00119146 0.00109593 0.0475793 0.0436458 26 3249 33 6.64007e+06 464646 477104. 1650.88 7.03 0.372195 0.3336 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0493401 0.0444749 152 3 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.09 vpr 55.49 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30368 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1069 18901 5689 10576 2636 56.0 MiB 0.28 0.01 4.16036 -141.868 -4.16036 4.16036 1.05 0.00131411 0.00120484 0.108774 0.0996816 32 2736 22 6.64007e+06 464646 554710. 1919.41 1.34 0.275853 0.249275 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0568292 0.051201 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.92 vpr 54.97 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 16.7 MiB 0.08 857 10572 2555 6423 1594 55.6 MiB 0.15 0.00 3.07196 -107.422 -3.07196 3.07196 1.08 0.00099784 0.000914248 0.0640299 0.0587363 32 1869 19 6.64007e+06 200928 554710. 1919.41 1.19 0.195673 0.175925 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.25 0.09 0.23 -1 -1 0.25 0.0385831 0.0346183 107 34 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.81 vpr 55.11 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30000 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.9 MiB 0.09 824 11806 3275 6761 1770 55.3 MiB 0.16 0.00 3.4951 -114.009 -3.4951 3.4951 1.05 0.00100574 0.000922809 0.0707527 0.0649754 32 1835 21 6.64007e+06 238602 554710. 1919.41 1.19 0.196985 0.177293 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0456569 0.0409146 115 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.15 vpr 54.90 MiB 0.02 6884 -1 -1 1 0.02 -1 -1 30176 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 658 7132 1686 4570 876 55.1 MiB 0.11 0.00 3.4309 -100.483 -3.4309 3.4309 1.05 0.00094543 0.000867205 0.0418195 0.0383956 32 1851 20 6.64007e+06 251160 554710. 1919.41 1.21 0.160148 0.143671 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0365116 0.0327435 107 34 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.27 vpr 55.09 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30140 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.7 MiB 0.09 802 15390 5648 7380 2362 55.4 MiB 0.22 0.00 3.5251 -121.985 -3.5251 3.5251 1.06 0.00100168 0.000919428 0.089409 0.0820991 32 2003 23 6.64007e+06 226044 554710. 1919.41 1.23 0.219109 0.197617 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0533375 0.0477763 125 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 5.14 vpr 54.94 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 772 9679 2262 6618 799 55.5 MiB 0.14 0.00 3.47387 -114.287 -3.47387 3.47387 1.05 0.00103043 0.000945764 0.0496711 0.0455735 28 2025 20 6.64007e+06 389298 500653. 1732.36 1.16 0.177364 0.159354 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0388123 0.034891 119 34 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.06 vpr 55.23 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 16.9 MiB 0.16 877 15824 4460 9332 2032 55.6 MiB 0.20 0.00 2.80466 -91.9047 -2.80466 2.80466 1.07 0.00101723 0.000931474 0.0810886 0.0742085 26 2073 22 6.64007e+06 389298 477104. 1650.88 1.18 0.204935 0.184146 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0432509 0.0386193 110 61 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.34 vpr 55.59 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30420 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 17.5 MiB 0.21 1234 17889 5288 10109 2492 55.9 MiB 0.32 0.01 4.16036 -142.499 -4.16036 4.16036 1.06 0.00142439 0.00130997 0.106172 0.0974593 28 3347 24 6.64007e+06 514878 500653. 1732.36 2.67 0.293882 0.265546 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0575938 0.052059 181 29 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.69 vpr 55.79 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30328 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 996 11616 2636 8022 958 56.1 MiB 0.23 0.00 3.5823 -125.213 -3.5823 3.5823 1.10 0.0013311 0.00121219 0.0647492 0.0590421 30 2080 20 6.64007e+06 464646 526063. 1820.29 1.27 0.228138 0.20539 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510926 0.046132 154 65 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.19 vpr 55.27 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30424 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 17.0 MiB 0.23 803 9407 2189 6388 830 55.7 MiB 0.14 0.00 3.6833 -114.43 -3.6833 3.6833 1.04 0.00110479 0.00101058 0.0530788 0.0485902 30 1852 20 6.64007e+06 364182 526063. 1820.29 1.17 0.190169 0.170442 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0401364 0.0360176 114 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.39 vpr 55.38 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1052 11799 3060 6831 1908 55.9 MiB 0.20 0.00 3.64847 -119.816 -3.64847 3.64847 1.05 0.00127223 0.00116732 0.0815481 0.074865 32 2372 21 6.64007e+06 301392 554710. 1919.41 1.28 0.241194 0.217691 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.26 0.13 0.11 -1 -1 0.26 0.0546795 0.049459 149 64 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.42 vpr 55.51 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30336 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 17.4 MiB 0.42 953 7835 1760 5704 371 56.1 MiB 0.15 0.00 5.23812 -147.937 -5.23812 5.23812 1.05 0.0014085 0.00129296 0.062018 0.056929 32 2549 24 6.64007e+06 288834 554710. 1919.41 1.33 0.255594 0.229826 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.28 0.12 0.24 -1 -1 0.28 0.0546275 0.0490509 150 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.63 vpr 55.71 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30248 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.21 955 10859 3044 7047 768 56.1 MiB 0.20 0.00 5.02279 -136.574 -5.02279 5.02279 1.06 0.00130854 0.00119897 0.0790271 0.0725077 30 2107 21 6.64007e+06 288834 526063. 1820.29 1.24 0.244696 0.220718 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0459545 0.0415279 144 90 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.16 vpr 55.34 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 0.11 1046 15623 4332 9609 1682 55.8 MiB 0.13 0.00 3.5621 -120.379 -3.5621 3.5621 0.72 0.000471116 0.00042694 0.0351109 0.0316882 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.81 0.0988372 0.0876969 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0449083 0.040528 148 64 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.70 vpr 55.43 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30416 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 17.0 MiB 0.13 865 10206 2264 6941 1001 55.9 MiB 0.18 0.00 4.23656 -140.329 -4.23656 4.23656 1.05 0.00129043 0.00118296 0.061301 0.0562135 32 2829 21 6.64007e+06 464646 554710. 1919.41 1.36 0.223724 0.201453 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.25 0.12 0.23 -1 -1 0.25 0.0539649 0.048595 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.78 vpr 55.86 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30640 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 17.7 MiB 0.22 1205 17356 4219 10649 2488 56.1 MiB 0.29 0.01 4.21478 -145.938 -4.21478 4.21478 1.05 0.00157943 0.00145058 0.114258 0.104985 32 2779 22 6.64007e+06 527436 554710. 1919.41 1.33 0.315288 0.284995 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0651661 0.0588169 186 96 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.08 vpr 55.19 MiB 0.03 6776 -1 -1 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.12 655 13731 5030 6417 2284 55.4 MiB 0.20 0.00 3.7665 -117.146 -3.7665 3.7665 1.05 0.00102124 0.00093564 0.0920338 0.0843554 32 1931 27 6.64007e+06 226044 554710. 1919.41 1.31 0.232142 0.20908 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0442073 0.0398636 116 34 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.67 vpr 55.79 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 30416 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 17.1 MiB 0.17 910 7386 1527 5477 382 55.9 MiB 0.13 0.00 4.20356 -136.322 -4.20356 4.20356 1.05 0.00128572 0.00117999 0.0439211 0.0402868 32 2713 25 6.64007e+06 477204 554710. 1919.41 1.27 0.199558 0.179353 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.053345 0.0480808 152 64 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 6.87 vpr 55.37 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 17.1 MiB 0.13 994 14048 3500 8468 2080 55.9 MiB 0.23 0.00 3.7163 -119.726 -3.7163 3.7163 0.91 0.00127945 0.00117418 0.0836927 0.0768458 32 2435 23 6.64007e+06 426972 554710. 1919.41 1.27 0.250008 0.225677 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0517773 0.0467113 149 63 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.95 vpr 55.33 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 16.9 MiB 0.10 1080 15017 4624 8554 1839 55.8 MiB 0.26 0.00 4.14936 -144.892 -4.14936 4.14936 1.04 0.00120402 0.00110683 0.105899 0.0974313 32 2624 22 6.64007e+06 276276 554710. 1919.41 1.33 0.260787 0.236348 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.22 0.07 0.11 -1 -1 0.22 0.0220454 0.0197173 151 3 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 6.30 vpr 55.66 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30308 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 17.3 MiB 0.22 1044 15603 4218 9336 2049 56.0 MiB 0.24 0.00 3.55822 -125.535 -3.55822 3.55822 1.05 0.00132349 0.00121278 0.0938649 0.0859795 32 2394 19 6.64007e+06 439530 554710. 1919.41 1.28 0.255419 0.230498 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0526038 0.0473171 146 96 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.81 vpr 55.63 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30188 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 17.2 MiB 0.21 1017 12791 3286 8285 1220 55.8 MiB 0.11 0.00 3.47912 -120.914 -3.47912 3.47912 1.07 0.000475577 0.000430279 0.0284306 0.0256573 26 2568 45 6.64007e+06 464646 477104. 1650.88 2.08 0.233211 0.208745 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0473752 0.0427138 148 61 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.18 vpr 55.88 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30372 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1102 19142 5372 11310 2460 56.1 MiB 0.27 0.01 3.5243 -123.608 -3.5243 3.5243 1.05 0.00130918 0.0012003 0.107637 0.0986642 32 2414 19 6.64007e+06 489762 554710. 1919.41 1.28 0.268777 0.243038 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.25 0.11 0.25 -1 -1 0.25 0.0504312 0.0455428 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.99 vpr 55.16 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 17.3 MiB 0.09 1032 14906 4320 9186 1400 56.0 MiB 0.24 0.00 4.18856 -144.112 -4.18856 4.18856 1.05 0.00124988 0.00114811 0.0837632 0.0769465 30 2290 20 6.64007e+06 464646 526063. 1820.29 1.29 0.241242 0.217994 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0497973 0.0449443 152 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1016 12153 3010 8355 788 56.1 MiB 0.19 0.00 4.23153 -146.068 -4.23153 4.23153 1.06 0.00129772 0.00118939 0.0693798 0.0635831 26 2842 35 6.64007e+06 489762 477104. 1650.88 5.50 0.425951 0.381787 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.22 0.15 0.20 -1 -1 0.22 0.057821 0.0521731 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.97 vpr 55.82 MiB 0.02 7328 -1 -1 1 0.04 -1 -1 30320 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1141 13095 3356 8753 986 56.2 MiB 0.23 0.00 4.67535 -137.171 -4.67535 4.67535 1.05 0.00139126 0.0012751 0.0832999 0.0763313 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.87 0.260623 0.234497 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0526128 0.047255 147 122 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.44 vpr 55.80 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1069 15584 4992 8664 1928 55.9 MiB 0.26 0.00 4.34993 -137.194 -4.34993 4.34993 1.05 0.00136046 0.00124846 0.11558 0.106028 32 2657 20 6.64007e+06 276276 554710. 1919.41 1.30 0.284601 0.25722 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.25 0.13 0.23 -1 -1 0.25 0.0550126 0.0496451 151 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.09 vpr 54.96 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30428 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.08 928 8735 1852 5986 897 55.2 MiB 0.13 0.00 3.50687 -122.364 -3.50687 3.50687 1.05 0.00104763 0.000960412 0.0455496 0.0417699 28 2197 22 6.64007e+06 389298 500653. 1732.36 1.13 0.179099 0.160504 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.25 0.10 0.18 -1 -1 0.25 0.043659 0.0391901 125 34 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.08 vpr 55.19 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30208 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 17.0 MiB 0.21 885 10406 2864 6861 681 55.7 MiB 0.17 0.00 3.5031 -121.505 -3.5031 3.5031 1.05 0.00116393 0.00106615 0.0709577 0.0650521 26 2358 26 6.64007e+06 226044 477104. 1650.88 1.28 0.226995 0.204097 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.23 0.11 0.20 -1 -1 0.23 0.0447618 0.0402069 121 94 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.08 vpr 55.66 MiB 0.02 7144 -1 -1 1 0.05 -1 -1 30660 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 17.7 MiB 0.08 1352 17606 4821 10688 2097 56.1 MiB 0.32 0.01 4.98622 -168.741 -4.98622 4.98622 1.04 0.0015383 0.00141405 0.111872 0.102807 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.43 0.309191 0.279613 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.26 0.18 0.21 -1 -1 0.26 0.0751814 0.06769 189 65 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.19 vpr 55.49 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30368 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1055 17857 5354 10411 2092 55.9 MiB 0.15 0.00 3.51607 -123.396 -3.51607 3.51607 0.81 0.00045669 0.000410582 0.0394075 0.0354883 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.74 0.0985556 0.0873011 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0475492 0.042949 148 34 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.89 vpr 54.98 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 16.7 MiB 0.08 853 17523 5443 9889 2191 55.2 MiB 0.22 0.00 3.4529 -114.711 -3.4529 3.4529 1.05 0.00100337 0.000920183 0.0865702 0.0793253 30 1885 20 6.64007e+06 389298 526063. 1820.29 1.14 0.211139 0.190215 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.32 0.08 0.18 -1 -1 0.32 0.043582 0.0390159 116 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.89 vpr 55.67 MiB 0.03 7240 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.36 1192 13629 3357 8864 1408 56.2 MiB 0.24 0.01 4.97469 -167.233 -4.97469 4.97469 1.05 0.00163103 0.00149636 0.0899147 0.0824168 32 2825 26 6.64007e+06 565110 554710. 1919.41 1.44 0.313272 0.282593 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.062573 0.0564454 188 127 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.52 vpr 55.44 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30456 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 17.1 MiB 0.16 1027 16762 4357 10483 1922 55.9 MiB 0.24 0.00 4.27488 -146.847 -4.27488 4.27488 1.06 0.0012577 0.00115473 0.0921762 0.0845069 28 2563 23 6.64007e+06 477204 500653. 1732.36 1.29 0.255355 0.230595 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0460567 0.0416201 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.87 vpr 54.93 MiB 0.04 6688 -1 -1 1 0.03 -1 -1 30096 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 17.0 MiB 0.09 882 11046 2802 6952 1292 55.5 MiB 0.16 0.00 3.5621 -124.172 -3.5621 3.5621 1.07 0.00100748 0.000924811 0.054147 0.0496189 30 1857 21 6.64007e+06 401856 526063. 1820.29 1.25 0.185361 0.16656 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.34 0.09 0.15 -1 -1 0.34 0.0428854 0.0387424 124 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.49 vpr 55.32 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30700 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 17.5 MiB 0.09 1334 20347 5362 13158 1827 55.9 MiB 0.18 0.00 4.95502 -168.119 -4.95502 4.95502 0.72 0.000528865 0.000478496 0.0452319 0.040935 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.00 0.11712 0.103994 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0676236 0.0611178 190 34 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.81 vpr 54.84 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30132 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 16.6 MiB 0.10 623 13731 4925 6406 2400 55.1 MiB 0.19 0.00 3.5061 -118.666 -3.5061 3.5061 1.05 0.00099857 0.000917096 0.081639 0.0750215 32 2131 28 6.64007e+06 213486 554710. 1919.41 1.28 0.222841 0.200702 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0396032 0.035452 121 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.08 vpr 55.04 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30052 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 17.0 MiB 0.09 855 13939 4099 8667 1173 55.7 MiB 0.18 0.00 3.47387 -112.968 -3.47387 3.47387 1.06 0.00100564 0.000922618 0.0689214 0.0631201 28 1888 22 6.64007e+06 401856 500653. 1732.36 1.15 0.196859 0.176979 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0402767 0.0361234 114 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.46 vpr 55.39 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30284 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1003 12839 3224 8329 1286 55.9 MiB 0.20 0.00 3.6803 -109.03 -3.6803 3.6803 1.05 0.00124513 0.00114069 0.0772871 0.0708789 26 2529 22 6.64007e+06 426972 477104. 1650.88 1.27 0.235788 0.212555 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.049759 0.044791 134 88 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.17 vpr 55.44 MiB 0.05 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 17.1 MiB 0.09 937 11048 2797 7564 687 55.9 MiB 0.10 0.00 4.21976 -143.232 -4.21976 4.21976 0.72 0.000477426 0.000430346 0.0301697 0.027283 32 2378 24 6.64007e+06 276276 554710. 1919.41 1.29 0.199789 0.179065 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0527214 0.0475618 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.26 vpr 55.30 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30500 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1070 15876 4480 9346 2050 56.0 MiB 0.26 0.01 4.25856 -146.098 -4.25856 4.25856 1.05 0.00132236 0.00121333 0.0942745 0.0864867 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.46 0.29616 0.26703 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.059244 0.0534081 154 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.22 vpr 55.38 MiB 0.04 6984 -1 -1 1 0.05 -1 -1 30372 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 16.7 MiB 0.18 863 8856 1892 6516 448 55.5 MiB 0.14 0.00 3.4749 -121.747 -3.4749 3.4749 1.06 0.00112036 0.00102685 0.0485605 0.0444489 32 2048 21 6.64007e+06 401856 554710. 1919.41 1.23 0.191595 0.172026 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0462755 0.0415336 122 65 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.64 vpr 55.49 MiB 0.05 6916 -1 -1 1 0.04 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 821 8336 2395 4162 1779 55.8 MiB 0.13 0.00 3.72326 -116.749 -3.72326 3.72326 1.04 0.00110859 0.00101531 0.0566862 0.0519478 32 1980 18 6.64007e+06 213486 554710. 1919.41 1.21 0.190514 0.1711 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0441328 0.0395571 109 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 6.06 vpr 55.20 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 16.9 MiB 0.17 985 17635 4923 10695 2017 55.8 MiB 0.27 0.00 3.4529 -110.073 -3.4529 3.4529 1.05 0.00121317 0.00111362 0.100009 0.0917748 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.69 0.266048 0.23999 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0468873 0.0422569 139 60 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.56 vpr 55.11 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 16.9 MiB 0.10 939 14996 4215 8524 2257 55.7 MiB 0.21 0.00 4.39198 -124.88 -4.39198 4.39198 1.05 0.0011054 0.00101461 0.0833251 0.0764293 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.87 0.239375 0.2159 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.20 0.05 0.09 -1 -1 0.20 0.0202394 0.018137 134 34 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.29 vpr 55.23 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30008 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 16.7 MiB 0.20 846 13731 4520 7348 1863 55.4 MiB 0.20 0.00 3.5343 -117.296 -3.5343 3.5343 1.05 0.00105949 0.000970617 0.0860166 0.0788566 32 1980 19 6.64007e+06 238602 554710. 1919.41 1.23 0.221041 0.198949 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.27 0.10 0.21 -1 -1 0.27 0.0410077 0.0367911 114 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.28 vpr 55.31 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 17.0 MiB 0.14 892 11281 2807 6986 1488 55.7 MiB 0.17 0.00 3.6865 -117.315 -3.6865 3.6865 1.04 0.00114211 0.00104597 0.0766431 0.0702538 30 1846 19 6.64007e+06 213486 526063. 1820.29 1.13 0.215415 0.193931 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0318038 0.0282908 114 91 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.42 vpr 55.18 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30352 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1121 19124 6194 10224 2706 55.9 MiB 0.27 0.00 4.18856 -139.706 -4.18856 4.18856 1.05 0.00115981 0.00106592 0.0990031 0.0909037 32 2557 23 6.64007e+06 464646 554710. 1919.41 1.27 0.250534 0.226351 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0507878 0.0457501 152 4 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.89 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1037 18660 5257 10625 2778 56.0 MiB 0.28 0.00 4.17032 -143.358 -4.17032 4.17032 1.05 0.00131033 0.00120238 0.10928 0.100132 32 2589 21 6.64007e+06 452088 554710. 1919.41 1.31 0.275482 0.249069 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.25 0.13 0.24 -1 -1 0.25 0.0534406 0.0482574 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.43 vpr 55.35 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30332 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 17.4 MiB 0.21 1085 15876 4268 10377 1231 56.2 MiB 0.24 0.00 4.15553 -144.194 -4.15553 4.15553 1.05 0.00133427 0.00122529 0.0950285 0.0871671 32 2670 22 6.64007e+06 452088 554710. 1919.41 1.35 0.267194 0.241568 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547757 0.0494116 153 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.65 vpr 55.54 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30280 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 17.0 MiB 0.17 963 9146 1745 6045 1356 55.8 MiB 0.13 0.00 4.17056 -135.219 -4.17056 4.17056 1.06 0.00129923 0.00119146 0.0534929 0.0490784 30 3028 24 6.64007e+06 477204 526063. 1820.29 4.11 0.41421 0.371418 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.25 0.12 0.20 -1 -1 0.25 0.0588011 0.0529675 149 65 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.92 vpr 55.16 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.11 840 12856 4254 6466 2136 55.5 MiB 0.18 0.00 3.4921 -115.538 -3.4921 3.4921 0.93 0.00100641 0.000923602 0.0770531 0.0707705 32 2099 22 6.64007e+06 238602 554710. 1919.41 1.22 0.204681 0.184357 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403359 0.0362079 113 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.32 vpr 55.61 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 17.0 MiB 0.19 996 13127 3599 7422 2106 55.9 MiB 0.21 0.00 4.20393 -135.69 -4.20393 4.20393 1.08 0.00123952 0.00113419 0.08993 0.0824502 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.66 0.284503 0.256489 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0480125 0.0433434 146 63 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.86 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30700 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1061 10232 2187 7405 640 55.9 MiB 0.17 0.00 4.16036 -143.59 -4.16036 4.16036 0.85 0.00143536 0.00131582 0.0631531 0.0578799 26 3037 26 6.64007e+06 514878 477104. 1650.88 2.62 0.258853 0.232303 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586937 0.0526751 156 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.55 vpr 55.47 MiB 0.08 7156 -1 -1 1 0.03 -1 -1 30684 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 924 14769 3776 9247 1746 55.9 MiB 0.23 0.00 4.18868 -135.93 -4.18868 4.18868 1.07 0.00132272 0.00121148 0.0929273 0.0851 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.29 0.26409 0.23814 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0554051 0.049948 148 94 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.22 vpr 55.72 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30352 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 973 15004 4033 8498 2473 55.8 MiB 0.23 0.00 3.6693 -113.052 -3.6693 3.6693 1.07 0.00127053 0.00116374 0.0930932 0.0852981 32 2183 19 6.64007e+06 401856 554710. 1919.41 1.25 0.249909 0.225552 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.27 0.10 0.24 -1 -1 0.27 0.050113 0.0451349 138 92 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.30 vpr 55.61 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1125 9725 2385 6614 726 56.0 MiB 0.19 0.00 4.21673 -144.443 -4.21673 4.21673 1.05 0.00132533 0.00121222 0.0714439 0.0656261 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.41 0.249974 0.225404 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0540025 0.0487296 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.29 vpr 55.42 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30140 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 964 18079 5189 10710 2180 55.8 MiB 0.25 0.01 3.5353 -109.312 -3.5353 3.5353 1.05 0.00177736 0.00162604 0.104007 0.0951663 32 2101 19 6.64007e+06 452088 554710. 1919.41 1.23 0.253839 0.228985 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0490144 0.0440913 136 88 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.98 vpr 54.81 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.07 799 9356 2113 6168 1075 55.4 MiB 0.14 0.00 3.4921 -122.483 -3.4921 3.4921 1.07 0.00100403 0.000920974 0.0561914 0.0516319 32 1948 20 6.64007e+06 213486 554710. 1919.41 1.22 0.188725 0.169856 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0386589 0.034755 115 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.59 vpr 55.64 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30280 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 992 16743 5741 8435 2567 56.1 MiB 0.25 0.00 4.25856 -144.485 -4.25856 4.25856 1.06 0.00131985 0.00121018 0.100311 0.0919532 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.55 0.277531 0.250419 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.24 0.13 0.18 -1 -1 0.24 0.0550652 0.049651 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.57 vpr 55.67 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 17.3 MiB 0.12 1054 17367 5167 10302 1898 56.1 MiB 0.28 0.00 4.21976 -145.962 -4.21976 4.21976 1.06 0.00131734 0.00120908 0.122301 0.11223 32 2466 19 6.64007e+06 288834 554710. 1919.41 1.27 0.285232 0.258216 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0623077 0.0562074 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.44 vpr 55.05 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30356 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 0.19 691 7975 1531 6145 299 55.5 MiB 0.12 0.00 3.6913 -111.241 -3.6913 3.6913 1.07 0.00103186 0.000944444 0.0414361 0.0379303 26 2376 30 6.64007e+06 376740 477104. 1650.88 2.00 0.193813 0.17318 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0349786 0.031347 112 55 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.87 vpr 54.85 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.7 MiB 0.09 653 13381 4684 6039 2658 55.1 MiB 0.19 0.00 3.5533 -116.629 -3.5533 3.5533 1.08 0.000971299 0.000891432 0.0774471 0.0711454 32 1990 24 6.64007e+06 226044 554710. 1919.41 1.26 0.206711 0.186341 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0421946 0.0378353 118 4 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.22 vpr 55.64 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30176 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 17.2 MiB 0.17 927 16303 4785 8793 2725 55.9 MiB 0.24 0.00 4.16476 -135.871 -4.16476 4.16476 1.03 0.00124156 0.0011387 0.0949523 0.0870547 32 2289 21 6.64007e+06 414414 554710. 1919.41 1.23 0.251172 0.226712 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0518616 0.0466519 139 59 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.40 vpr 55.64 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30136 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1051 17397 5163 9750 2484 56.0 MiB 0.26 0.00 4.41596 -136.112 -4.41596 4.41596 1.05 0.00128196 0.00117435 0.102702 0.0941093 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.73 0.231706 0.208878 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.24 0.13 0.17 -1 -1 0.24 0.0547931 0.0491792 136 88 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.99 vpr 55.75 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 17.4 MiB 0.10 1159 10441 2545 7247 649 55.7 MiB 0.19 0.00 4.95022 -163.094 -4.95022 4.95022 1.08 0.00136854 0.00125791 0.0656561 0.0604157 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.56 0.247047 0.22344 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0599087 0.0542162 179 3 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.06 vpr 55.28 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 16.9 MiB 0.17 813 9732 2096 6039 1597 55.8 MiB 0.13 0.00 3.7815 -111.41 -3.7815 3.7815 1.05 0.00120679 0.0011059 0.0567784 0.0520472 28 2429 27 6.64007e+06 426972 500653. 1732.36 2.09 0.221123 0.198589 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0402802 0.0363366 138 59 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.61 vpr 54.95 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30460 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 529 12292 5081 5761 1450 55.0 MiB 0.14 0.00 3.54427 -98.353 -3.54427 3.54427 1.05 0.000919665 0.000843569 0.0684978 0.0628783 32 1668 31 6.64007e+06 263718 554710. 1919.41 1.29 0.198856 0.178471 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0400883 0.0358249 107 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.55 vpr 55.62 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30448 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 17.5 MiB 0.18 1462 20856 5895 12562 2399 55.9 MiB 0.37 0.01 4.52196 -148.077 -4.52196 4.52196 1.05 0.00155719 0.00142831 0.134225 0.123203 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.53 0.335947 0.304042 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630288 0.0567112 186 95 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.54 vpr 55.65 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 17.3 MiB 0.29 998 12919 3192 8538 1189 56.0 MiB 0.22 0.00 4.42996 -140.975 -4.42996 4.42996 1.05 0.00139901 0.00128311 0.101053 0.0927489 32 2535 22 6.64007e+06 276276 554710. 1919.41 1.36 0.287761 0.259014 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0621537 0.0557817 145 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.41 vpr 55.36 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 17.0 MiB 0.25 894 11948 3681 7128 1139 55.8 MiB 0.18 0.00 3.6755 -115.703 -3.6755 3.6755 1.07 0.00112512 0.00103048 0.0813656 0.0745713 32 1930 19 6.64007e+06 200928 554710. 1919.41 1.20 0.221576 0.199614 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0393538 0.0353591 108 89 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.76 vpr 55.22 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30252 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.08 1023 18745 6322 9498 2925 56.0 MiB 0.28 0.00 4.46396 -140.121 -4.46396 4.46396 1.05 0.00120869 0.0011085 0.106129 0.0973526 28 3262 26 6.64007e+06 414414 500653. 1732.36 2.10 0.270364 0.244185 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0528788 0.0475995 147 34 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.01 vpr 55.77 MiB 0.04 7304 -1 -1 1 0.03 -1 -1 30612 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1135 20076 5790 11566 2720 55.8 MiB 0.17 0.00 4.51716 -144.659 -4.51716 4.51716 1.05 0.000525179 0.000475606 0.0477573 0.0432607 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.81 0.11755 0.10446 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0598704 0.0538754 173 64 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.32 vpr 55.12 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30264 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 923 11484 2608 8162 714 55.8 MiB 0.18 0.00 3.73061 -110.59 -3.73061 3.73061 1.05 0.00120162 0.0011009 0.0660836 0.0604918 26 3004 29 6.64007e+06 426972 477104. 1650.88 2.48 0.239797 0.215707 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.21 0.13 0.18 -1 -1 0.21 0.0540627 0.0485842 135 61 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.96 vpr 56.00 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30368 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 17.2 MiB 0.16 1008 13516 3637 9135 744 55.7 MiB 0.24 0.01 4.19956 -142.899 -4.19956 4.19956 1.05 0.00131852 0.0012095 0.0803168 0.0734207 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.59 0.290275 0.261208 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0593716 0.0535246 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.36 vpr 55.56 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30336 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 17.1 MiB 0.17 988 17184 5218 8807 3159 56.0 MiB 0.25 0.00 3.62559 -123.648 -3.62559 3.62559 1.05 0.00131302 0.00120449 0.0959092 0.0879898 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.95 0.269417 0.24312 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.22 0.17 0.20 -1 -1 0.22 0.0696533 0.062653 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.88 vpr 54.99 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30200 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 16.6 MiB 0.09 573 13430 5649 6739 1042 55.3 MiB 0.16 0.00 3.6785 -105.931 -3.6785 3.6785 1.07 0.000976675 0.000895559 0.0796449 0.0730907 28 1653 18 6.64007e+06 226044 500653. 1732.36 1.05 0.131489 0.118321 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0398437 0.0356805 95 34 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.08 vpr 55.26 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30112 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 16.5 MiB 0.19 857 11783 4174 5528 2081 55.5 MiB 0.19 0.00 4.00656 -110.848 -4.00656 4.00656 1.08 0.00106401 0.000973802 0.0820563 0.0751292 30 1873 19 6.64007e+06 238602 526063. 1820.29 1.19 0.194732 0.174684 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0335728 0.0301894 112 82 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.18 vpr 55.47 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30284 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.12 1100 13261 3564 8068 1629 55.8 MiB 0.18 0.00 4.80256 -145.153 -4.80256 4.80256 1.06 0.00121894 0.00111877 0.072291 0.0663308 28 2902 24 6.64007e+06 477204 500653. 1732.36 3.90 0.40015 0.358551 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0510047 0.0459481 151 34 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.35 vpr 55.04 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30360 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.9 MiB 0.21 620 10442 2502 7352 588 55.7 MiB 0.14 0.00 3.6803 -100.526 -3.6803 3.6803 1.05 0.000975395 0.000893918 0.0519281 0.0475534 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.51 0.167866 0.149882 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.037361 0.0333843 108 56 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.09 vpr 55.07 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 16.6 MiB 0.16 691 13906 4599 7385 1922 55.5 MiB 0.20 0.00 3.53127 -120.288 -3.53127 3.53127 1.05 0.00106677 0.00097929 0.087393 0.08024 32 2039 20 6.64007e+06 213486 554710. 1919.41 1.28 0.213479 0.192513 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.25 0.11 0.23 -1 -1 0.25 0.044617 0.0400972 118 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.33 vpr 55.61 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30256 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 17.2 MiB 0.18 999 13261 3446 8635 1180 55.8 MiB 0.19 0.00 3.5665 -119.865 -3.5665 3.5665 1.04 0.00125855 0.00115397 0.0744826 0.0681984 30 2030 20 6.64007e+06 477204 526063. 1820.29 1.20 0.2306 0.2079 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0483865 0.0434082 144 64 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.00 vpr 55.06 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 869 9368 2508 6076 784 55.5 MiB 0.14 0.00 3.34153 -105.882 -3.34153 3.34153 1.05 0.00100174 0.00091668 0.0581428 0.0533356 32 1935 19 6.64007e+06 213486 554710. 1919.41 1.17 0.182319 0.16378 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0355479 0.0318938 106 55 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.34 vpr 55.33 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 879 9865 2512 6573 780 55.9 MiB 0.15 0.00 3.57229 -117.612 -3.57229 3.57229 1.03 0.00123995 0.00113653 0.0587771 0.0538537 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.75 0.231702 0.208362 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.047711 0.0430243 137 65 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.36 vpr 55.57 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 17.2 MiB 0.29 875 10540 2287 7686 567 55.9 MiB 0.19 0.00 3.79366 -119.555 -3.79366 3.79366 1.09 0.00133896 0.00122676 0.0729341 0.0669137 30 2033 25 6.64007e+06 464646 526063. 1820.29 1.28 0.24985 0.224903 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510956 0.0460656 149 93 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.21 vpr 55.20 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30204 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 17.0 MiB 0.17 816 8626 2345 5890 391 55.7 MiB 0.14 0.00 3.06096 -106.925 -3.06096 3.06096 1.05 0.00108683 0.000995915 0.0553231 0.0507273 32 2043 18 6.64007e+06 226044 554710. 1919.41 1.23 0.188004 0.169097 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0449396 0.0403321 115 61 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.26 vpr 55.21 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.20 920 11296 3024 7326 946 55.6 MiB 0.17 0.00 3.5031 -121.121 -3.5031 3.5031 1.05 0.00111123 0.00101844 0.0732044 0.0671231 30 2197 20 6.64007e+06 226044 526063. 1820.29 1.12 0.181123 0.162508 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0450467 0.0404539 121 63 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.29 vpr 55.54 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30580 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1027 12240 2965 8371 904 56.0 MiB 0.19 0.00 4.25676 -144.495 -4.25676 4.25676 1.13 0.00130301 0.00119484 0.0704251 0.0645493 32 2501 30 6.64007e+06 477204 554710. 1919.41 1.44 0.262847 0.236714 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.058365 0.0525856 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.23 vpr 55.45 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30512 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1021 16079 4076 10280 1723 55.8 MiB 0.16 0.00 3.7925 -111.563 -3.7925 3.7925 1.03 0.000437226 0.000394134 0.0478999 0.0434832 32 2199 23 6.64007e+06 426972 554710. 1919.41 1.14 0.20129 0.180465 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.045776 0.0412528 135 62 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.71 vpr 55.96 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.30 937 9020 1835 6701 484 55.9 MiB 0.16 0.01 4.29776 -145.038 -4.29776 4.29776 1.06 0.00145479 0.00133386 0.0581837 0.0533538 32 2670 31 6.64007e+06 489762 554710. 1919.41 1.40 0.263477 0.23657 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0618353 0.0555575 158 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.80 vpr 54.87 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30164 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 16.2 MiB 0.08 804 11948 3966 6404 1578 54.9 MiB 0.15 0.00 3.08296 -103.61 -3.08296 3.08296 1.04 0.000921943 0.00084658 0.0669025 0.0614338 32 1812 20 6.64007e+06 213486 554710. 1919.41 1.18 0.191357 0.172369 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0347888 0.0310368 106 4 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.27 vpr 55.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 17.1 MiB 0.10 998 18111 4956 10747 2408 55.7 MiB 0.14 0.00 4.26296 -139.632 -4.26296 4.26296 1.06 0.000479012 0.000431854 0.0404269 0.0364651 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.76 0.229125 0.20518 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0572017 0.0515105 144 92 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.42 vpr 55.55 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30028 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.9 MiB 0.32 734 13381 4309 7077 1995 55.7 MiB 0.20 0.00 3.54047 -121.881 -3.54047 3.54047 1.06 0.00137499 0.00126292 0.0962368 0.088278 28 2004 19 6.64007e+06 213486 500653. 1732.36 1.20 0.241626 0.217943 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0488515 0.0438367 114 96 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.47 vpr 55.46 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30244 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1102 9501 2041 6911 549 56.2 MiB 0.16 0.01 3.5841 -124.322 -3.5841 3.5841 1.05 0.00129492 0.00118817 0.0554789 0.050903 30 2381 21 6.64007e+06 464646 526063. 1820.29 1.26 0.219561 0.197791 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0476442 0.0430128 151 65 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.93 vpr 55.43 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30664 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.26 1244 16489 4012 10933 1544 56.3 MiB 0.28 0.01 4.96651 -168.366 -4.96651 4.96651 1.05 0.001615 0.00147831 0.106904 0.098176 26 3486 28 6.64007e+06 565110 477104. 1650.88 3.19 0.324512 0.293038 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0630546 0.0569107 188 96 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.90 vpr 54.70 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30096 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.10 483 10509 2545 7262 702 55.0 MiB 0.11 0.00 2.73878 -81.5531 -2.73878 2.73878 1.06 0.00081907 0.000749193 0.0555462 0.0508053 28 1397 23 6.64007e+06 188370 500653. 1732.36 1.12 0.162415 0.145 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0338227 0.0300703 83 56 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.96 vpr 55.02 MiB 0.05 6892 -1 -1 1 0.03 -1 -1 30324 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 16.4 MiB 0.08 793 10388 3558 5136 1694 55.0 MiB 0.14 0.00 3.6815 -114.291 -3.6815 3.6815 1.05 0.00100083 0.000917528 0.064177 0.0588883 32 1615 19 6.64007e+06 213486 554710. 1919.41 1.15 0.187007 0.168235 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0403113 0.0361639 97 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.96 vpr 55.17 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.9 MiB 0.11 798 13966 5020 6560 2386 55.6 MiB 0.21 0.00 3.4859 -119.604 -3.4859 3.4859 1.06 0.00106125 0.000973399 0.0861333 0.0790485 32 2382 23 6.64007e+06 226044 554710. 1919.41 1.38 0.223093 0.201109 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0457113 0.0410063 126 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.86 vpr 54.74 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30372 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.4 MiB 0.06 678 12127 3168 7672 1287 55.0 MiB 0.14 0.00 3.4089 -91.215 -3.4089 3.4089 1.04 0.00117672 0.00107809 0.0538512 0.0494329 26 1687 20 6.64007e+06 426972 477104. 1650.88 1.28 0.159814 0.143333 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0442308 0.0393992 103 34 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.42 vpr 55.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1064 14828 5337 7470 2021 55.8 MiB 0.24 0.00 4.34676 -140.278 -4.34676 4.34676 1.06 0.000807085 0.000734388 0.0883533 0.0805688 32 2475 24 6.64007e+06 276276 554710. 1919.41 1.26 0.266315 0.239407 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.24 0.12 0.11 -1 -1 0.24 0.0566516 0.0510199 149 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.54 vpr 55.86 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30344 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 17.3 MiB 0.19 786 10336 2273 7345 718 56.0 MiB 0.09 0.00 3.53327 -114.261 -3.53327 3.53327 1.07 0.000498228 0.000443033 0.0243597 0.0219332 28 2510 49 6.64007e+06 489762 500653. 1732.36 2.36 0.240548 0.214758 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.22 0.13 0.20 -1 -1 0.22 0.0546721 0.0493793 148 94 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.66 vpr 55.34 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 17.3 MiB 0.20 984 7523 1506 5708 309 55.8 MiB 0.14 0.00 3.92206 -133.487 -3.92206 3.92206 1.05 0.00137067 0.00125757 0.0497852 0.0456441 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.84 0.248154 0.222431 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.27 0.17 0.22 -1 -1 0.27 0.0642352 0.057744 151 96 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.51 vpr 55.31 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 17.1 MiB 0.34 986 12323 4513 6271 1539 55.8 MiB 0.21 0.00 4.33507 -129.747 -4.33507 4.33507 1.05 0.00127901 0.00117203 0.0910724 0.0835554 32 2540 23 6.65987e+06 266238 554710. 1919.41 1.30 0.257887 0.232747 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0536876 0.0483671 140 91 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.88 vpr 55.04 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 17.3 MiB 0.14 1040 16523 4439 10256 1828 55.9 MiB 0.24 0.00 3.41879 -119.689 -3.41879 3.41879 1.06 0.00125118 0.00114677 0.0952753 0.0874299 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.58 0.257862 0.232788 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0571844 0.0515881 141 65 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.33 vpr 55.06 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30492 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 16.6 MiB 0.13 793 11603 2857 6819 1927 55.5 MiB 0.16 0.00 4.2977 -123.649 -4.2977 4.2977 1.05 0.00114653 0.00105196 0.0772747 0.0709645 34 2278 23 6.65987e+06 278916 585099. 2024.56 2.16 0.269989 0.242956 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.05252 0.0472835 138 34 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 6.12 vpr 55.04 MiB 0.05 7056 -1 -1 1 0.05 -1 -1 30168 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1026 15456 4961 8586 1909 55.5 MiB 0.26 0.00 4.14936 -143.085 -4.14936 4.14936 1.09 0.00125067 0.00114695 0.109707 0.100689 32 2926 21 6.65987e+06 253560 554710. 1919.41 1.41 0.274933 0.248726 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0574555 0.0518716 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.08 vpr 55.28 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1029 9501 1978 7135 388 55.4 MiB 0.16 0.00 3.43623 -117.882 -3.43623 3.43623 1.07 0.00131834 0.00120651 0.0565238 0.051835 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.93 0.124558 0.111381 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0548377 0.049448 154 64 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.93 vpr 54.68 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 16.1 MiB 0.20 580 13026 4344 6329 2353 54.9 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 1.06 0.000955119 0.000876981 0.0746351 0.0685204 30 1363 17 6.65987e+06 240882 526063. 1820.29 1.06 0.185149 0.166772 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0327821 0.0294105 96 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.02 vpr 55.14 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30052 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1006 10170 2426 6636 1108 55.5 MiB 0.15 0.00 3.27903 -106.33 -3.27903 3.27903 1.03 0.00110905 0.00101816 0.054649 0.050174 28 2449 18 6.65987e+06 418374 500653. 1732.36 1.31 0.193834 0.174623 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0445708 0.0401505 139 4 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.16 vpr 55.31 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 16.7 MiB 0.27 870 11571 3268 6617 1686 55.5 MiB 0.15 0.00 3.07084 -101.313 -3.07084 3.07084 1.07 0.00108156 0.000990332 0.0653262 0.0596821 32 1812 21 6.65987e+06 202848 554710. 1919.41 1.16 0.201471 0.180874 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0431414 0.0386952 105 85 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.31 vpr 55.02 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 16.7 MiB 0.19 642 11432 4032 4649 2751 55.4 MiB 0.15 0.00 3.56921 -118.924 -3.56921 3.56921 0.92 0.00106261 0.000970312 0.0734364 0.0673744 36 2032 39 6.65987e+06 202848 612192. 2118.31 3.24 0.329633 0.294558 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.27 0.10 0.24 -1 -1 0.27 0.0411531 0.0369138 121 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.02 vpr 55.04 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30032 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 16.6 MiB 0.24 784 11571 3060 7609 902 55.4 MiB 0.17 0.00 3.4841 -113.76 -3.4841 3.4841 1.07 0.00106762 0.000978702 0.0759783 0.0696433 32 1689 20 6.65987e+06 215526 554710. 1919.41 1.19 0.195798 0.175748 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0479643 0.0429902 110 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 5.14 vpr 55.15 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30476 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.9 MiB 0.22 841 11223 2602 8034 587 55.5 MiB 0.16 0.00 3.27957 -108.894 -3.27957 3.27957 1.08 0.0010708 0.000979503 0.0602796 0.0552202 30 1969 21 6.65987e+06 367662 526063. 1820.29 1.22 0.194145 0.174292 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0402884 0.036201 114 65 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.44 vpr 55.44 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30184 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 17.2 MiB 0.39 1002 18711 5900 10256 2555 55.8 MiB 0.28 0.00 3.50686 -122.446 -3.50686 3.50686 1.07 0.00125494 0.00114995 0.111504 0.102227 32 2409 24 6.65987e+06 405696 554710. 1919.41 1.30 0.276868 0.250225 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0569309 0.0512388 143 58 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.44 vpr 55.45 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 17.0 MiB 0.27 942 7973 1567 6126 280 55.5 MiB 0.15 0.00 4.02327 -135.611 -4.02327 4.02327 1.07 0.00132467 0.00121557 0.0504346 0.04628 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.42 0.226447 0.203972 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.26 0.16 0.23 -1 -1 0.26 0.0621108 0.0560387 156 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.89 vpr 54.79 MiB 0.03 6996 -1 -1 1 0.03 -1 -1 30424 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 16.2 MiB 0.16 686 7177 1709 4538 930 54.9 MiB 0.11 0.00 3.15358 -93.6229 -3.15358 3.15358 1.06 0.000937189 0.000859094 0.0426784 0.0391884 28 1802 20 6.65987e+06 228204 500653. 1732.36 1.18 0.15865 0.142203 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407115 0.0364626 107 29 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.57 vpr 55.38 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 1074 13992 4161 7846 1985 55.9 MiB 0.24 0.00 3.5141 -125.301 -3.5141 3.5141 1.07 0.00130083 0.00119329 0.103564 0.0950837 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.31 0.271227 0.245193 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530136 0.0478926 146 63 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.66 vpr 55.34 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 17.1 MiB 0.33 934 18323 6450 8556 3317 55.8 MiB 0.23 0.00 3.6343 -123.732 -3.6343 3.6343 1.05 0.0012488 0.00114415 0.105495 0.0967105 30 2475 27 6.65987e+06 431052 526063. 1820.29 6.25 0.493804 0.44283 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463459 0.0418076 142 57 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.97 vpr 55.10 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 29964 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 16.9 MiB 0.23 832 15430 4777 8349 2304 55.5 MiB 0.21 0.00 2.83964 -101.748 -2.83964 2.83964 1.04 0.00110264 0.00100972 0.0830171 0.076024 30 1919 16 6.65987e+06 380340 526063. 1820.29 1.18 0.215495 0.194221 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0387878 0.0349131 118 65 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.67 vpr 54.48 MiB 0.02 6772 -1 -1 1 0.03 -1 -1 29984 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.3 MiB 0.15 661 10835 3152 6204 1479 54.7 MiB 0.12 0.00 2.60038 -85.2282 -2.60038 2.60038 1.05 0.000791966 0.00072671 0.0548181 0.0502851 28 1412 25 6.65987e+06 190170 500653. 1732.36 1.05 0.158034 0.141339 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.028531 0.0254443 85 34 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.40 vpr 54.92 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 16.7 MiB 0.21 855 13768 4604 7573 1591 55.5 MiB 0.20 0.00 3.94338 -122.155 -3.94338 3.94338 0.95 0.000637775 0.000577947 0.0931743 0.0854171 32 1948 20 6.65987e+06 202848 554710. 1919.41 1.14 0.227972 0.205556 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401114 0.0360384 113 64 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.05 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.05 -1 -1 30008 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 17.1 MiB 0.07 1021 12248 3399 7922 927 55.8 MiB 0.21 0.00 3.9823 -134.861 -3.9823 3.9823 1.06 0.00134363 0.00122449 0.0798405 0.0731428 26 2573 27 6.65987e+06 431052 477104. 1650.88 1.53 0.251242 0.226795 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0529492 0.0478262 145 34 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.27 vpr 55.54 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30432 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 0.32 1084 15644 4587 8678 2379 55.7 MiB 0.24 0.01 3.46744 -121.209 -3.46744 3.46744 1.05 0.00142028 0.00130135 0.0994392 0.0911577 32 2893 24 6.65987e+06 456408 554710. 1919.41 1.37 0.266558 0.239569 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0465621 0.0417213 149 124 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.94 vpr 54.52 MiB 0.04 6764 -1 -1 1 0.04 -1 -1 30504 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.0 MiB 0.20 410 10345 3142 6004 1199 54.7 MiB 0.10 0.00 2.61938 -68.655 -2.61938 2.61938 1.06 0.000682999 0.000624426 0.0467985 0.0428526 30 1108 22 6.65987e+06 215526 526063. 1820.29 1.05 0.133367 0.11936 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.26 0.05 0.20 -1 -1 0.26 0.0243357 0.0217542 77 30 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.72 vpr 55.23 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1123 11064 3077 6737 1250 55.5 MiB 0.19 0.00 4.10424 -135.549 -4.10424 4.10424 1.05 0.00115418 0.00106042 0.0718984 0.0660899 32 2636 25 6.65987e+06 253560 554710. 1919.41 1.35 0.226606 0.204538 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.046815 0.0422241 137 3 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.62 vpr 54.29 MiB 0.04 6588 -1 -1 1 0.03 -1 -1 30216 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.2 MiB 0.05 594 8553 1943 6358 252 54.8 MiB 0.09 0.00 2.22607 -81.0919 -2.22607 2.22607 1.04 0.00072048 0.000658924 0.0397925 0.0364155 28 1546 23 6.65987e+06 164814 500653. 1732.36 1.18 0.13224 0.118224 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.23 0.05 0.18 -1 -1 0.23 0.0207431 0.018679 81 3 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.02 vpr 55.21 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30492 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.08 1112 19189 6002 11213 1974 55.9 MiB 0.28 0.00 4.06247 -140.472 -4.06247 4.06247 1.05 0.00124928 0.0011469 0.111177 0.101981 32 2640 23 6.65987e+06 418374 554710. 1919.41 1.34 0.272976 0.246964 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0545103 0.0491758 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.19 vpr 54.90 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 29988 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 16.9 MiB 0.14 1134 16059 4004 10217 1838 55.6 MiB 0.25 0.01 3.38184 -119.391 -3.38184 3.38184 1.05 0.00119836 0.00110321 0.0878816 0.0809264 30 2437 23 6.65987e+06 443730 526063. 1820.29 1.27 0.242715 0.219788 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0492631 0.0444222 150 3 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.31 vpr 55.35 MiB 0.05 6940 -1 -1 1 0.04 -1 -1 30544 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 16.9 MiB 0.13 1120 14463 4038 8924 1501 55.4 MiB 0.24 0.00 3.91784 -136.256 -3.91784 3.91784 1.06 0.0013076 0.00119892 0.0864023 0.07923 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.91 0.261434 0.235841 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0608918 0.0548513 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 5.05 vpr 55.02 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 29964 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 16.7 MiB 0.07 736 8191 2107 5347 737 55.2 MiB 0.12 0.00 2.8895 -100.047 -2.8895 2.8895 1.05 0.000999552 0.000916055 0.0504124 0.0461954 28 1959 23 6.65987e+06 190170 500653. 1732.36 1.17 0.179442 0.160845 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.22 0.09 0.19 -1 -1 0.22 0.0369099 0.0331445 106 34 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.05 vpr 54.87 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.09 832 12156 3666 7026 1464 55.4 MiB 0.16 0.00 3.4951 -115.55 -3.4951 3.4951 1.05 0.00100324 0.000921046 0.0726376 0.066663 32 1928 21 6.65987e+06 240882 554710. 1919.41 1.19 0.198756 0.179033 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0406313 0.036505 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.01 vpr 54.74 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30164 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 590 7820 1903 5456 461 55.1 MiB 0.12 0.00 3.4309 -99.7277 -3.4309 3.4309 1.05 0.000951808 0.000872622 0.0461646 0.0423333 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.42 0.21077 0.188607 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0402513 0.0360958 107 34 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.12 vpr 54.76 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30240 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 686 12008 2561 8162 1285 55.1 MiB 0.14 0.00 3.4859 -118.026 -3.4859 3.4859 1.05 0.000996608 0.000915557 0.0702471 0.0644983 32 2225 24 6.65987e+06 228204 554710. 1919.41 1.27 0.203609 0.183369 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0474662 0.0425585 125 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.94 vpr 55.11 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 778 11809 2809 7761 1239 55.2 MiB 0.17 0.00 3.29178 -109.233 -3.29178 3.29178 1.05 0.00102396 0.00093902 0.0596901 0.0547288 26 2453 37 6.65987e+06 393018 477104. 1650.88 2.11 0.217196 0.194865 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.21 0.11 0.18 -1 -1 0.21 0.0427751 0.0383931 119 34 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.14 vpr 54.89 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29992 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 16.7 MiB 0.23 717 8047 1725 5786 536 55.5 MiB 0.12 0.00 2.76744 -86.2128 -2.76744 2.76744 1.05 0.00102687 0.000941732 0.0434244 0.039798 32 1839 18 6.65987e+06 380340 554710. 1919.41 1.16 0.166901 0.149738 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394439 0.0354111 109 61 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.22 vpr 55.80 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30440 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1246 13117 3185 8526 1406 55.8 MiB 0.24 0.01 4.16036 -141.523 -4.16036 4.16036 1.05 0.00141727 0.00130376 0.0813696 0.0748285 26 4082 47 6.65987e+06 494442 477104. 1650.88 10.09 0.510675 0.458992 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.21 0.17 0.17 -1 -1 0.21 0.055621 0.0502959 179 29 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.15 vpr 55.59 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30292 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1041 9447 2232 6542 673 56.1 MiB 0.16 0.00 3.5061 -122.514 -3.5061 3.5061 1.05 0.00131086 0.00120108 0.0579123 0.0530226 32 2399 23 6.65987e+06 443730 554710. 1919.41 1.27 0.228087 0.205469 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.050632 0.0457516 152 65 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.20 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 16.6 MiB 0.31 709 5599 957 4403 239 55.4 MiB 0.10 0.00 3.18838 -103.883 -3.18838 3.18838 1.06 0.00110577 0.0010124 0.0336432 0.030828 26 2166 21 6.65987e+06 354984 477104. 1650.88 2.10 0.172512 0.154203 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0477704 0.0427876 113 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.42 vpr 55.55 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 17.3 MiB 0.23 1062 14541 4862 7202 2477 55.9 MiB 0.26 0.00 3.4921 -118.867 -3.4921 3.4921 1.06 0.00126588 0.00115994 0.113081 0.103974 32 2506 18 6.65987e+06 266238 554710. 1919.41 1.26 0.267305 0.242082 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0555391 0.0500245 148 64 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.58 vpr 55.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1075 7953 1851 5455 647 56.1 MiB 0.15 0.00 4.84238 -140.996 -4.84238 4.84238 1.05 0.00140591 0.00128908 0.0648333 0.0594913 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.29 0.23704 0.213258 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0519342 0.0467881 149 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.10 vpr 55.54 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 17.0 MiB 0.39 977 8868 2457 6032 379 55.8 MiB 0.16 0.00 4.78027 -132.334 -4.78027 4.78027 1.05 0.00131079 0.00120044 0.0673211 0.0617271 30 2304 21 6.65987e+06 266238 526063. 1820.29 1.23 0.236623 0.21335 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0441531 0.0399301 143 90 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.67 vpr 55.33 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30184 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1043 11922 3052 7896 974 55.5 MiB 0.20 0.00 3.40784 -114.93 -3.40784 3.40784 1.05 0.00126687 0.00115932 0.0725945 0.0664838 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.94 0.233996 0.210773 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.22 0.14 0.17 -1 -1 0.22 0.0572352 0.0516096 146 64 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.44 vpr 54.90 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30392 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1091 9903 2241 6952 710 55.4 MiB 0.17 0.00 3.91784 -134.792 -3.91784 3.91784 1.05 0.0012944 0.00118757 0.059781 0.0548311 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.40 0.235866 0.212397 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0566692 0.0510885 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.66 vpr 55.62 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30456 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.27 1177 18648 4595 11838 2215 55.9 MiB 0.35 0.01 4.0593 -137.323 -4.0593 4.0593 1.06 0.00157777 0.00144798 0.123361 0.113229 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.66 0.328598 0.297177 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0689439 0.0622355 184 96 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.17 vpr 54.77 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 30436 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.14 685 11806 2914 7153 1739 55.5 MiB 0.17 0.00 3.55518 -111.493 -3.55518 3.55518 1.07 0.00102181 0.000937291 0.0722175 0.0662841 32 2030 23 6.65987e+06 228204 554710. 1919.41 1.28 0.204646 0.18418 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.26 0.11 0.22 -1 -1 0.26 0.0413874 0.0371872 116 34 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.97 vpr 55.74 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 976 9675 2155 7053 467 55.6 MiB 0.16 0.01 4.0281 -131.561 -4.0281 4.0281 1.09 0.00128488 0.00117955 0.0578887 0.0531327 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.92 0.22461 0.202286 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0559747 0.0504675 150 64 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.71 vpr 55.23 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30416 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1040 11641 3109 7665 867 55.4 MiB 0.20 0.00 3.62624 -117.445 -3.62624 3.62624 1.05 0.00127986 0.00117393 0.0709358 0.0650205 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.41 0.237516 0.214027 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.021162 0.0189285 148 63 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.20 vpr 55.20 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 17.2 MiB 0.16 853 8685 1897 5601 1187 55.7 MiB 0.14 0.00 4.14936 -138.467 -4.14936 4.14936 1.05 0.00118917 0.00109227 0.0598665 0.0550157 32 3554 31 6.65987e+06 253560 554710. 1919.41 2.30 0.29422 0.264706 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0584658 0.0527418 150 3 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.60 vpr 55.44 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 17.2 MiB 0.33 1097 11798 3144 7589 1065 55.6 MiB 0.20 0.00 3.29555 -116.715 -3.29555 3.29555 1.05 0.00132858 0.00121774 0.0733096 0.0671949 32 2610 28 6.65987e+06 431052 554710. 1919.41 1.32 0.255434 0.230093 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0688844 0.0619885 145 96 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.96 vpr 55.37 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30100 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.32 1042 7623 1446 5778 399 55.5 MiB 0.08 0.00 3.5841 -121.365 -3.5841 3.5841 1.10 0.00047034 0.000424146 0.0183568 0.0166702 32 2739 23 6.65987e+06 443730 554710. 1919.41 1.21 0.184643 0.165459 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0516239 0.0467119 146 61 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.75 vpr 55.69 MiB 0.05 7004 -1 -1 1 0.04 -1 -1 30356 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1118 19136 5296 11671 2169 55.5 MiB 0.31 0.01 3.42984 -118.83 -3.42984 3.42984 1.07 0.00130547 0.00119566 0.111212 0.101866 32 2579 24 6.65987e+06 469086 554710. 1919.41 1.32 0.284569 0.257162 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0574366 0.0517783 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.06 vpr 55.25 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.0 MiB 0.05 1049 17883 5721 9099 3063 55.4 MiB 0.28 0.00 4.02327 -139.097 -4.02327 4.02327 1.08 0.00149342 0.00136792 0.107416 0.0985898 32 2663 21 6.65987e+06 443730 554710. 1919.41 1.42 0.275329 0.248918 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0583972 0.0526435 150 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.14 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30588 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1032 17491 4961 10150 2380 55.8 MiB 0.28 0.00 3.95704 -138.916 -3.95704 3.95704 1.07 0.001304 0.00119499 0.108657 0.0996674 32 2565 23 6.65987e+06 469086 554710. 1919.41 1.34 0.277026 0.250119 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0587593 0.05295 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.64 vpr 55.47 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 17.5 MiB 0.36 1081 15859 4297 9232 2330 55.7 MiB 0.25 0.00 4.24338 -127.817 -4.24338 4.24338 0.82 0.00140294 0.0012855 0.104525 0.0956587 28 2788 21 6.65987e+06 431052 500653. 1732.36 1.34 0.279068 0.251371 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.022439 0.0199945 145 122 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.46 vpr 55.22 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1088 15822 4733 9518 1571 55.5 MiB 0.28 0.00 4.01118 -127.976 -4.01118 4.01118 0.85 0.00136157 0.00124829 0.121888 0.111829 32 2771 23 6.65987e+06 253560 554710. 1919.41 1.33 0.275803 0.249095 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.27 0.15 0.21 -1 -1 0.27 0.0623543 0.0561593 149 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.00 vpr 54.80 MiB 0.08 6936 -1 -1 1 0.03 -1 -1 30440 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 16.8 MiB 0.07 798 8401 2034 5819 548 55.3 MiB 0.13 0.00 3.27158 -111.236 -3.27158 3.27158 1.06 0.00105251 0.000956504 0.0440923 0.0403958 30 1935 19 6.65987e+06 380340 526063. 1820.29 1.18 0.171615 0.154045 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0436546 0.0392642 124 34 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.20 vpr 55.30 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.9 MiB 0.27 912 11830 3154 7792 884 55.7 MiB 0.19 0.00 3.41618 -118.934 -3.41618 3.41618 1.05 0.00116321 0.00106443 0.0805029 0.0737111 32 2244 21 6.65987e+06 228204 554710. 1919.41 1.24 0.226891 0.204159 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.048934 0.0439708 121 94 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.73 vpr 55.45 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30640 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1362 14988 3862 9734 1392 55.8 MiB 0.26 0.01 4.6627 -159.741 -4.6627 4.6627 1.06 0.00152371 0.0014016 0.0982609 0.0903005 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.55 0.305847 0.276503 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.25 0.16 0.22 -1 -1 0.25 0.0668247 0.0603586 187 65 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.18 vpr 55.15 MiB 0.05 6988 -1 -1 1 0.04 -1 -1 30232 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 17.1 MiB 0.17 954 14567 4735 7432 2400 55.8 MiB 0.22 0.00 3.51422 -121.562 -3.51422 3.51422 1.05 0.00123366 0.00113255 0.0869937 0.0798762 32 2533 23 6.65987e+06 393018 554710. 1919.41 1.29 0.247163 0.223282 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0520615 0.046956 146 34 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.24 vpr 55.14 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30128 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 16.6 MiB 0.11 839 17066 5534 9253 2279 55.2 MiB 0.22 0.00 3.49012 -114.14 -3.49012 3.49012 1.05 0.00100282 0.000919975 0.0858074 0.0786055 32 1859 23 6.65987e+06 380340 554710. 1919.41 1.18 0.21538 0.193952 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0454808 0.040772 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.05 vpr 55.69 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30768 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 17.7 MiB 0.57 1333 18829 5161 11634 2034 55.9 MiB 0.33 0.01 4.64147 -157.361 -4.64147 4.64147 1.05 0.0016344 0.00149899 0.126121 0.115526 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.45 0.341617 0.30847 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0684025 0.0617753 186 127 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.35 vpr 55.17 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1044 16340 4500 10034 1806 55.3 MiB 0.23 0.00 4.15932 -143.209 -4.15932 4.15932 1.05 0.0012537 0.00115042 0.0916309 0.0840458 28 2433 22 6.65987e+06 456408 500653. 1732.36 1.30 0.252991 0.228684 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0445553 0.0402844 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.86 vpr 54.88 MiB 0.07 6816 -1 -1 1 0.03 -1 -1 30148 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.07 722 13703 3609 8489 1605 55.3 MiB 0.19 0.00 3.4859 -117.474 -3.4859 3.4859 1.07 0.00101868 0.000935357 0.0671784 0.0615911 28 2223 23 6.65987e+06 393018 500653. 1732.36 1.42 0.196818 0.177136 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0418917 0.0376499 123 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.37 vpr 55.27 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30764 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 17.3 MiB 0.19 1337 12702 3419 8223 1060 55.7 MiB 0.23 0.01 4.90437 -166.477 -4.90437 4.90437 1.07 0.00147841 0.00135989 0.0799468 0.0735818 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.43 0.271605 0.245531 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0616983 0.0557606 188 34 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.71 vpr 54.71 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30152 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 16.5 MiB 0.12 852 11260 3935 5447 1878 55.0 MiB 0.16 0.00 3.4749 -119.679 -3.4749 3.4749 1.05 0.00101734 0.000932727 0.0702409 0.064472 32 2124 48 6.65987e+06 202848 554710. 1919.41 1.95 0.258585 0.231886 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0378926 0.0339623 121 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.23 vpr 54.88 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30252 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 16.5 MiB 0.22 707 8073 1842 5622 609 55.1 MiB 0.12 0.00 3.47387 -110.471 -3.47387 3.47387 1.07 0.000590206 0.000534908 0.0301772 0.0274102 28 1935 20 6.65987e+06 393018 500653. 1732.36 1.18 0.15743 0.14085 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.26 0.10 0.18 -1 -1 0.26 0.0403385 0.0363816 113 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.74 vpr 55.59 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30288 -1 -1 33 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 17.1 MiB 0.30 964 15856 4550 8712 2594 55.8 MiB 0.24 0.00 3.50895 -109.722 -3.50895 3.50895 1.05 0.00124123 0.00113799 0.0960778 0.0880128 30 2020 23 6.65987e+06 418374 526063. 1820.29 1.23 0.257672 0.232465 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.28 0.09 0.20 -1 -1 0.28 0.048532 0.043803 133 88 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.19 vpr 55.49 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 0.14 1002 7770 1874 5369 527 55.8 MiB 0.15 0.00 4.0593 -140.547 -4.0593 4.0593 1.05 0.00130765 0.0011997 0.0590967 0.0542881 32 2537 20 6.65987e+06 253560 554710. 1919.41 1.35 0.222907 0.201107 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0574623 0.051806 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.34 vpr 55.39 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1039 19223 6359 10018 2846 55.6 MiB 0.29 0.00 4.06007 -140.169 -4.06007 4.06007 1.05 0.00131091 0.00120194 0.11577 0.106113 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.52 0.28657 0.259183 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0548821 0.0494993 152 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.12 vpr 55.00 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30368 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 697 8614 1900 5780 934 55.4 MiB 0.13 0.00 3.41884 -113.998 -3.41884 3.41884 1.05 0.00111543 0.00102073 0.0481406 0.0441127 32 1903 25 6.65987e+06 380340 554710. 1919.41 1.26 0.195663 0.175536 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.28 0.11 0.11 -1 -1 0.28 0.0472281 0.0424964 120 65 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.10 vpr 55.28 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.7 MiB 0.30 800 12464 4465 5577 2422 55.4 MiB 0.19 0.00 3.46898 -107.312 -3.46898 3.46898 1.07 0.00110782 0.00101461 0.0837628 0.0767233 32 1982 23 6.65987e+06 215526 554710. 1919.41 1.19 0.217613 0.195731 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0491484 0.0439889 109 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.70 vpr 55.05 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30188 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 17.2 MiB 0.22 996 12623 3384 8308 931 55.8 MiB 0.20 0.00 3.33164 -109.888 -3.33164 3.33164 1.05 0.000843648 0.000758211 0.0731578 0.0669488 26 2507 31 6.65987e+06 418374 477104. 1650.88 2.06 0.246843 0.222139 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0489028 0.0440564 137 60 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 5.77 vpr 55.14 MiB 0.17 7032 -1 -1 1 0.03 -1 -1 30244 -1 -1 31 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 17.1 MiB 0.13 995 16207 5283 8775 2149 55.7 MiB 0.24 0.00 4.24344 -123.397 -4.24344 4.24344 0.89 0.00123939 0.00114798 0.0913861 0.0838621 28 2478 21 6.65987e+06 393018 500653. 1732.36 1.25 0.23143 0.208969 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0464454 0.0418151 133 34 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.18 vpr 54.98 MiB 0.17 6964 -1 -1 1 0.03 -1 -1 30012 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.31 727 13152 3808 7208 2136 55.5 MiB 0.19 0.00 3.5343 -112.204 -3.5343 3.5343 1.05 0.00105863 0.000970189 0.0839192 0.0769484 30 1865 21 6.65987e+06 228204 526063. 1820.29 1.19 0.217533 0.195938 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0389613 0.0350177 114 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.70 vpr 55.17 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 16.7 MiB 0.29 910 8164 2057 5403 704 55.5 MiB 0.14 0.00 3.44398 -109.924 -3.44398 3.44398 1.08 0.00113907 0.00104235 0.0607099 0.0556096 30 1920 20 6.65987e+06 202848 526063. 1820.29 1.17 0.202306 0.181718 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0440113 0.0395959 113 91 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.10 vpr 55.13 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 29976 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1101 12023 3143 7728 1152 55.6 MiB 0.17 0.00 4.17558 -139.576 -4.17558 4.17558 1.06 0.0011636 0.00106942 0.0564818 0.0518326 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.88 0.202624 0.182729 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0477453 0.0431784 150 4 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.64 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30484 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1037 13598 4125 8601 872 55.5 MiB 0.23 0.01 4.1263 -141.609 -4.1263 4.1263 1.11 0.000873655 0.000792575 0.0774739 0.0708043 28 2566 22 6.65987e+06 431052 500653. 1732.36 3.89 0.45773 0.410149 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.22 0.14 0.10 -1 -1 0.22 0.0573973 0.0517514 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.56 vpr 55.50 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1033 10448 2380 7653 415 55.3 MiB 0.18 0.00 4.16458 -142.258 -4.16458 4.16458 1.04 0.00131875 0.00121063 0.0652073 0.059718 28 3079 34 6.65987e+06 431052 500653. 1732.36 4.67 0.468626 0.419615 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.27 0.14 0.17 -1 -1 0.27 0.0516249 0.0466333 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.66 vpr 55.64 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.26 982 9031 1878 6401 752 55.6 MiB 0.16 0.01 3.86706 -126.941 -3.86706 3.86706 1.11 0.00127262 0.00116405 0.0535549 0.0491288 30 2443 22 6.65987e+06 469086 526063. 1820.29 1.35 0.227853 0.205098 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0585149 0.0527482 148 65 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.19 vpr 54.88 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30184 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 16.6 MiB 0.20 656 10400 2388 7389 623 55.4 MiB 0.16 0.00 3.50927 -110.79 -3.50927 3.50927 1.06 0.00100847 0.000925097 0.0636591 0.0584392 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.56 0.230454 0.20682 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.22 0.09 0.09 -1 -1 0.22 0.0388054 0.0348692 112 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.42 vpr 55.65 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 986 11613 3437 7269 907 55.8 MiB 0.20 0.00 4.19776 -134.76 -4.19776 4.19776 1.05 0.00124528 0.00114225 0.0824482 0.0756427 32 2227 20 6.65987e+06 278916 554710. 1919.41 1.25 0.237657 0.21447 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0526956 0.0475562 145 63 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.65 vpr 55.45 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30692 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 17.3 MiB 0.32 1052 13117 2855 8842 1420 55.6 MiB 0.19 0.00 3.91498 -132.986 -3.91498 3.91498 1.05 0.00143372 0.00131436 0.0816186 0.0748052 32 2892 25 6.65987e+06 494442 554710. 1919.41 1.37 0.272402 0.245133 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.24 0.09 0.21 -1 -1 0.24 0.0290565 0.0257049 154 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.54 vpr 55.25 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30536 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1048 9679 2436 6757 486 55.7 MiB 0.09 0.00 3.91106 -131.073 -3.91106 3.91106 0.72 0.000488095 0.000441263 0.0246862 0.0223351 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.47 0.196293 0.176036 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.22 0.12 0.17 -1 -1 0.22 0.0557535 0.0502575 146 94 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.88 vpr 55.43 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30288 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 967 14375 3613 8859 1903 55.7 MiB 0.22 0.00 3.7785 -114.4 -3.7785 3.7785 1.05 0.00126862 0.00116295 0.0916913 0.0840689 30 2034 21 6.65987e+06 380340 526063. 1820.29 1.19 0.251751 0.227193 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.24 0.04 0.22 -1 -1 0.24 0.02039 0.018287 136 92 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.55 vpr 55.32 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1103 13477 4009 7448 2020 55.4 MiB 0.23 0.00 4.11944 -143.283 -4.11944 4.11944 1.05 0.00131174 0.00120264 0.0987738 0.090628 32 2896 23 6.65987e+06 266238 554710. 1919.41 1.37 0.270016 0.244044 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0593398 0.053577 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.04 vpr 55.37 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30176 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 870 10463 2796 6767 900 55.8 MiB 0.17 0.00 3.39684 -102.663 -3.39684 3.39684 1.05 0.00121937 0.00111767 0.0626764 0.0574288 32 2139 21 6.65987e+06 431052 554710. 1919.41 1.25 0.216788 0.195119 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494509 0.0445345 134 88 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.92 vpr 54.68 MiB 0.03 6676 -1 -1 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.10 838 13496 3888 8529 1079 55.5 MiB 0.19 0.00 3.5031 -123.339 -3.5031 3.5031 1.05 0.00100991 0.000927017 0.0818664 0.0752212 32 2175 23 6.65987e+06 202848 554710. 1919.41 1.29 0.212205 0.191276 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0422587 0.0379979 116 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.63 vpr 55.52 MiB 0.05 7164 -1 -1 1 0.03 -1 -1 30268 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1015 16525 5345 8784 2396 55.3 MiB 0.27 0.00 4.18856 -142.192 -4.18856 4.18856 1.05 0.00134058 0.00123027 0.103247 0.0947805 32 2598 23 6.65987e+06 418374 554710. 1919.41 1.39 0.2775 0.250996 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.26 0.14 0.23 -1 -1 0.26 0.0600287 0.0541523 150 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.56 vpr 55.40 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 17.1 MiB 0.28 1026 16081 4881 8736 2464 56.0 MiB 0.27 0.00 4.23393 -146.239 -4.23393 4.23393 1.05 0.00131243 0.00120385 0.11726 0.107585 32 2633 23 6.65987e+06 266238 554710. 1919.41 1.38 0.289853 0.262226 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0579346 0.0522599 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.89 vpr 55.13 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 16.6 MiB 0.24 688 16683 5557 7719 3407 55.4 MiB 0.19 0.00 3.44878 -105.048 -3.44878 3.44878 1.07 0.00103133 0.000943465 0.0852974 0.0781031 30 2275 33 6.65987e+06 367662 526063. 1820.29 2.20 0.238733 0.214419 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.22 0.05 0.10 -1 -1 0.22 0.0188386 0.0167004 111 55 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.86 vpr 54.87 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30180 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.4 MiB 0.12 746 13556 4162 7429 1965 55.0 MiB 0.19 0.00 3.4529 -114.38 -3.4529 3.4529 1.05 0.0009728 0.000893544 0.0782122 0.0718342 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.20 0.203294 0.18303 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0363688 0.0327232 118 4 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.57 vpr 55.73 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30180 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 17.0 MiB 0.25 900 5133 854 4121 158 55.6 MiB 0.05 0.00 4.0123 -128.007 -4.0123 4.0123 0.72 0.000456586 0.00041277 0.0129582 0.0117831 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.78 0.073741 0.0649619 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0500288 0.0450954 138 59 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.99 vpr 55.59 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30120 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 17.2 MiB 0.25 879 9892 2434 7009 449 55.6 MiB 0.17 0.00 4.11224 -123.302 -4.11224 4.11224 1.06 0.00128392 0.00117682 0.0632022 0.0579443 28 2733 50 6.65987e+06 380340 500653. 1732.36 2.64 0.286612 0.257401 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.23 0.13 0.24 -1 -1 0.23 0.0567883 0.0510591 134 88 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 7.23 vpr 55.71 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 17.4 MiB 0.08 1224 16515 4921 9863 1731 55.7 MiB 0.27 0.01 4.82096 -159.28 -4.82096 4.82096 1.05 0.00136352 0.00125336 0.0938587 0.0863167 34 3026 21 6.65987e+06 443730 585099. 2024.56 4.25 0.476647 0.42935 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0576425 0.0522035 177 3 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.11 vpr 55.00 MiB 0.03 7052 -1 -1 1 0.04 -1 -1 30416 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1012 13726 3606 8436 1684 55.8 MiB 0.21 0.00 3.638 -113.448 -3.638 3.638 1.05 0.00120191 0.00110245 0.0808583 0.0741212 32 2171 21 6.65987e+06 405696 554710. 1919.41 1.23 0.232421 0.209564 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0483774 0.0435884 136 59 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.88 vpr 54.83 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 16.4 MiB 0.09 768 12754 4322 6521 1911 55.1 MiB 0.16 0.00 3.3979 -99.6122 -3.3979 3.3979 1.06 0.000917602 0.000841722 0.0718876 0.0659659 32 1581 21 6.65987e+06 253560 554710. 1919.41 1.17 0.187071 0.168178 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0412988 0.0369326 107 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.99 vpr 55.55 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.21 1366 15232 4128 9656 1448 56.0 MiB 0.27 0.01 4.15924 -136.806 -4.15924 4.15924 1.06 0.00154997 0.0014231 0.101586 0.0932061 32 3584 25 6.65987e+06 507120 554710. 1919.41 1.45 0.311142 0.280993 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.25 0.21 0.21 -1 -1 0.25 0.078368 0.0705949 184 95 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.87 vpr 55.27 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 16.9 MiB 0.38 999 12894 3350 8149 1395 55.8 MiB 0.23 0.00 4.3007 -134.868 -4.3007 4.3007 1.10 0.00140465 0.00128829 0.102443 0.0939897 32 2741 23 6.65987e+06 266238 554710. 1919.41 1.36 0.28026 0.252617 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.065022 0.0583907 144 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.84 vpr 55.38 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 16.7 MiB 0.32 739 9540 2469 6056 1015 55.4 MiB 0.15 0.00 3.43298 -108.977 -3.43298 3.43298 1.06 0.0011319 0.00103271 0.0657736 0.0602985 28 1956 23 6.65987e+06 202848 500653. 1732.36 1.17 0.202433 0.18181 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.25 0.11 0.18 -1 -1 0.25 0.0547076 0.0493275 109 89 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.99 vpr 55.39 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1126 15645 4217 9584 1844 55.7 MiB 0.24 0.00 4.2677 -137.429 -4.2677 4.2677 1.05 0.00123286 0.00112252 0.0906959 0.0831897 28 2607 21 6.65987e+06 405696 500653. 1732.36 1.21 0.223137 0.201832 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.23 0.10 0.14 -1 -1 0.23 0.0456851 0.0413739 146 34 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.08 vpr 55.75 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30536 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1167 13551 3218 9177 1156 55.7 MiB 0.24 0.00 4.22766 -133.836 -4.22766 4.22766 1.05 0.00145523 0.00133792 0.0900014 0.0826726 32 2713 24 6.65987e+06 456408 554710. 1919.41 1.32 0.279899 0.252798 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0583063 0.0526311 171 64 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.13 vpr 55.27 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30408 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 16.9 MiB 0.12 1070 11111 2802 7426 883 55.6 MiB 0.09 0.00 3.62941 -110.797 -3.62941 3.62941 0.72 0.000442846 0.00039888 0.0249129 0.0225263 26 2917 46 6.65987e+06 418374 477104. 1650.88 3.75 0.340996 0.30367 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.050615 0.0456627 134 61 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.44 vpr 55.68 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30516 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1074 12606 3053 8336 1217 55.4 MiB 0.21 0.01 4.0783 -140.694 -4.0783 4.0783 1.07 0.0013173 0.00120761 0.0703135 0.0645219 30 2464 23 6.65987e+06 532476 526063. 1820.29 1.37 0.245591 0.221507 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0608115 0.0547949 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 6.15 vpr 55.33 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 985 6766 1235 5165 366 55.6 MiB 0.13 0.01 3.41884 -116.445 -3.41884 3.41884 1.06 0.00131369 0.00120562 0.0412665 0.0378716 28 2716 20 6.65987e+06 481764 500653. 1732.36 1.32 0.205694 0.185022 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.23 0.14 0.21 -1 -1 0.23 0.0637753 0.0574237 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.02 vpr 54.93 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 16.6 MiB 0.13 502 12791 3342 7797 1652 55.1 MiB 0.14 0.00 3.7595 -104.343 -3.7595 3.7595 1.05 0.000970831 0.00089018 0.0789557 0.0724566 32 1548 18 6.65987e+06 202848 554710. 1919.41 1.15 0.197213 0.177697 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394657 0.0354004 93 34 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.10 vpr 54.95 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 29928 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.30 872 14431 4553 8297 1581 55.4 MiB 0.19 0.00 3.69338 -109.525 -3.69338 3.69338 1.05 0.00106595 0.000975245 0.0907082 0.0830455 32 1973 19 6.65987e+06 215526 554710. 1919.41 1.20 0.220808 0.198767 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0426629 0.0381982 111 82 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.39 vpr 55.51 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 973 15876 4279 9893 1704 55.8 MiB 0.25 0.00 4.55701 -136.44 -4.55701 4.55701 1.04 0.00122417 0.0011216 0.0871514 0.079945 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.51 0.264177 0.238348 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0536916 0.0484511 150 34 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.94 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.8 MiB 0.28 621 11063 2736 7707 620 55.3 MiB 0.15 0.00 3.58224 -95.8028 -3.58224 3.58224 1.06 0.000976863 0.000894339 0.0552985 0.0506382 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.90 0.201479 0.180238 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.22 0.09 0.18 -1 -1 0.22 0.0360556 0.0323147 108 56 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.84 vpr 54.84 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 823 7992 1920 5681 391 55.5 MiB 0.14 0.00 3.5141 -118.56 -3.5141 3.5141 1.06 0.00106435 0.000977064 0.0533687 0.0489943 34 2038 19 6.65987e+06 202848 585099. 2024.56 3.54 0.283508 0.253073 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.27 0.10 0.22 -1 -1 0.27 0.0433173 0.0389559 119 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.44 vpr 55.56 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30240 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1001 11955 3102 7859 994 55.7 MiB 0.10 0.00 3.4951 -117.77 -3.4951 3.4951 0.72 0.000461088 0.000416717 0.026651 0.0240479 26 2363 24 6.65987e+06 456408 477104. 1650.88 1.05 0.157982 0.141119 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0507114 0.0457146 142 64 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.05 vpr 55.00 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 16.4 MiB 0.30 876 12923 4161 7145 1617 55.2 MiB 0.17 0.00 3.11304 -101.32 -3.11304 3.11304 1.05 0.00101361 0.000928338 0.0803814 0.0737018 32 1966 17 6.65987e+06 202848 554710. 1919.41 1.16 0.20121 0.181203 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.28 0.10 0.21 -1 -1 0.28 0.0423481 0.0382106 105 55 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.00 vpr 55.49 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 17.1 MiB 0.24 929 17616 5738 7949 3929 55.7 MiB 0.22 0.00 3.3979 -111.1 -3.3979 3.3979 1.05 0.00123593 0.00113283 0.103591 0.0949763 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.62 0.355957 0.320116 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.28 0.12 0.24 -1 -1 0.28 0.0522675 0.0471528 136 65 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 6.01 vpr 55.35 MiB 0.07 7244 -1 -1 1 0.03 -1 -1 30348 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 16.9 MiB 0.60 965 17427 4981 9867 2579 55.4 MiB 0.26 0.00 3.7445 -120.758 -3.7445 3.7445 1.07 0.00133251 0.0012195 0.106558 0.0975124 28 2286 21 6.65987e+06 456408 500653. 1732.36 1.26 0.275656 0.248874 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.05369 0.0484326 148 93 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.19 vpr 55.08 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.8 MiB 0.18 861 11652 3522 6006 2124 55.5 MiB 0.17 0.00 2.81844 -100.349 -2.81844 2.81844 1.05 0.00108749 0.000996076 0.073925 0.0677835 32 2079 23 6.65987e+06 228204 554710. 1919.41 1.24 0.214728 0.1932 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0452347 0.0406077 115 61 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.08 vpr 55.03 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.29 667 7380 1595 4913 872 55.6 MiB 0.11 0.00 3.38184 -112.707 -3.38184 3.38184 1.06 0.0011026 0.00101006 0.0487385 0.0447191 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.70 0.224949 0.201475 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.26 0.11 0.21 -1 -1 0.26 0.0461537 0.0414299 121 63 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.57 vpr 55.33 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30584 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 17.1 MiB 0.17 1042 12164 2979 8000 1185 55.5 MiB 0.19 0.00 4.02524 -139.262 -4.02524 4.02524 1.05 0.00130052 0.00119293 0.0718199 0.0657845 28 2653 23 6.65987e+06 456408 500653. 1732.36 1.35 0.239815 0.216093 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0496852 0.044856 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.21 vpr 55.09 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 16.8 MiB 0.23 968 17313 5602 9212 2499 55.5 MiB 0.24 0.00 3.57304 -105.57 -3.57304 3.57304 1.05 0.00118879 0.00109006 0.101565 0.0930569 32 2179 18 6.65987e+06 405696 554710. 1919.41 1.20 0.246401 0.222493 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0518417 0.0466315 133 62 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.42 vpr 55.48 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 17.2 MiB 0.37 1004 11616 2968 7911 737 55.6 MiB 0.20 0.00 3.97241 -135.454 -3.97241 3.97241 1.05 0.00146143 0.00134013 0.07749 0.0709592 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.91 0.149774 0.134191 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0641464 0.0576209 156 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.90 vpr 54.66 MiB 0.06 6848 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 16.4 MiB 0.11 715 5825 1215 4401 209 55.1 MiB 0.10 0.00 2.9397 -97.4988 -2.9397 2.9397 1.07 0.000931858 0.000855881 0.0350821 0.0322905 30 1705 18 6.65987e+06 202848 526063. 1820.29 1.12 0.147857 0.132686 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0374246 0.0335811 105 4 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.54 vpr 55.40 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 17.0 MiB 0.19 948 20077 6167 11074 2836 55.8 MiB 0.27 0.00 4.10497 -133.778 -4.10497 4.10497 1.01 0.00132385 0.00120582 0.107607 0.0983664 32 2340 22 6.65987e+06 418374 554710. 1919.41 1.25 0.275431 0.248435 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0509649 0.0459877 142 92 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.35 vpr 55.09 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 29984 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.8 MiB 0.25 805 9196 3450 4876 870 55.7 MiB 0.14 0.00 3.54047 -120.422 -3.54047 3.54047 1.09 0.00118155 0.00108041 0.066736 0.0611469 30 2070 21 6.65987e+06 202848 526063. 1820.29 4.21 0.401562 0.359142 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0428527 0.0385564 115 96 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.37 vpr 55.38 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30264 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1002 18111 5520 9663 2928 55.4 MiB 0.26 0.00 3.45184 -118.995 -3.45184 3.45184 1.05 0.0012912 0.00118132 0.106443 0.0975463 32 2572 22 6.65987e+06 443730 554710. 1919.41 1.29 0.272394 0.246116 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0588671 0.0530782 149 65 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.22 vpr 55.54 MiB 0.09 7264 -1 -1 1 0.03 -1 -1 30620 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 17.9 MiB 0.36 1201 15034 3694 9653 1687 56.1 MiB 0.26 0.01 4.6905 -158.567 -4.6905 4.6905 1.05 0.0015764 0.00144672 0.0981723 0.0901973 26 3501 45 6.65987e+06 545154 477104. 1650.88 3.92 0.358494 0.323052 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.22 0.20 0.17 -1 -1 0.22 0.0822624 0.0741769 186 96 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.93 vpr 54.62 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.21 532 10509 2640 7460 409 54.9 MiB 0.12 0.00 2.61752 -80.0454 -2.61752 2.61752 1.05 0.000826678 0.000757258 0.0553374 0.0506648 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.42 0.158197 0.141379 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.032265 0.0287016 83 56 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 5.21 vpr 55.12 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30328 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 16.7 MiB 0.10 758 10536 3415 5493 1628 55.1 MiB 0.15 0.00 3.52904 -110.224 -3.52904 3.52904 1.08 0.00100569 0.00092227 0.0669074 0.0614531 32 1744 20 6.65987e+06 202848 554710. 1919.41 1.19 0.192567 0.17332 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0390442 0.035106 96 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.10 vpr 54.89 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.7 MiB 0.12 856 9872 2316 7018 538 55.5 MiB 0.16 0.00 3.4859 -122.574 -3.4859 3.4859 1.07 0.00106035 0.000972327 0.0619939 0.0569285 32 2373 21 6.65987e+06 228204 554710. 1919.41 1.32 0.197944 0.178117 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0445619 0.0400533 126 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 5.85 vpr 54.72 MiB 0.10 6904 -1 -1 1 0.03 -1 -1 30200 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.2 MiB 0.09 696 13351 3608 8032 1711 54.8 MiB 0.15 0.00 3.32684 -88.9535 -3.32684 3.32684 1.08 0.000857613 0.000787376 0.0582343 0.0534455 26 1641 17 6.65987e+06 431052 477104. 1650.88 1.08 0.160181 0.143841 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0342023 0.0305555 103 34 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.33 vpr 55.30 MiB 0.06 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 0.23 877 14541 4608 7775 2158 55.5 MiB 0.26 0.00 4.02035 -125.217 -4.02035 4.02035 1.05 0.00136171 0.00124728 0.113251 0.10381 32 2783 25 6.65987e+06 253560 554710. 1919.41 1.39 0.294306 0.265727 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0601149 0.0541638 147 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.46 vpr 55.63 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30208 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 17.0 MiB 0.22 938 18660 5414 10450 2796 55.5 MiB 0.28 0.00 3.4903 -116.326 -3.4903 3.4903 1.07 0.00133237 0.00122092 0.111665 0.102344 32 2461 21 6.65987e+06 469086 554710. 1919.41 1.30 0.279514 0.252419 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.28 0.11 0.21 -1 -1 0.28 0.037618 0.0334571 146 94 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.32 vpr 56.10 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58184 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 18.1 MiB 0.98 758 13949 4789 6835 2325 56.8 MiB 0.19 0.00 3.74419 -135.496 -3.74419 3.74419 1.09 0.00137008 0.00125651 0.100178 0.0918235 58 1960 26 6.95648e+06 361892 997811. 3452.63 7.63 0.634014 0.567665 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.41 0.13 0.44 -1 -1 0.41 0.056823 0.0511585 84 96 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.44 vpr 56.07 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30460 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 17.6 MiB 2.31 807 12716 4975 6082 1659 56.5 MiB 0.18 0.00 3.9478 -130.518 -3.9478 3.9478 1.10 0.00127975 0.00117323 0.107006 0.0981254 48 2407 29 6.95648e+06 202660 865456. 2994.66 20.11 0.741826 0.663405 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.39 0.20 0.34 -1 -1 0.39 0.0635829 0.0573219 76 91 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 9.02 vpr 56.09 MiB 0.10 7140 -1 -1 1 0.03 -1 -1 30436 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 17.8 MiB 0.84 1022 7103 1835 4569 699 56.6 MiB 0.11 0.00 3.60914 -132.635 -3.60914 3.60914 1.09 0.00123963 0.00113757 0.0529541 0.0486293 44 2666 29 6.95648e+06 275038 787024. 2723.27 2.80 0.283192 0.254258 27778 195446 -1 2250 23 1533 2295 200856 39573 3.61236 3.61236 -138.488 -3.61236 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0564311 0.0507589 77 65 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 7.59 vpr 55.86 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30320 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 17.6 MiB 0.41 752 10672 3799 5216 1657 56.1 MiB 0.15 0.00 4.001 -128.21 -4.001 4.001 1.15 0.00114472 0.00105057 0.0785126 0.0721531 44 2696 27 6.95648e+06 231611 787024. 2723.27 6.24 0.459148 0.4116 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.054131 0.0486959 75 34 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 10.05 vpr 55.93 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30264 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 17.6 MiB 0.76 716 9857 3295 4764 1798 56.5 MiB 0.15 0.00 3.66789 -133.791 -3.66789 3.66789 1.09 0.00125313 0.00115036 0.0793378 0.0728746 56 2163 40 6.95648e+06 188184 973134. 3367.25 4.54 0.394529 0.354816 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.40 0.15 0.41 -1 -1 0.40 0.0573497 0.0518198 78 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.04 vpr 56.18 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30324 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58092 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 17.8 MiB 0.43 727 15003 5272 7155 2576 56.7 MiB 0.18 0.00 3.0985 -114.166 -3.0985 3.0985 1.08 0.00129876 0.00118948 0.0965033 0.0884806 46 2435 46 6.95648e+06 419795 828058. 2865.25 4.51 0.43736 0.393829 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.32 0.13 0.17 -1 -1 0.32 0.0525061 0.0474012 89 64 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.42 vpr 55.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30392 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 17.0 MiB 3.40 451 8433 2993 4087 1353 55.6 MiB 0.10 0.00 3.26916 -93.4177 -3.26916 3.26916 1.09 0.000921653 0.000845959 0.0538676 0.0494935 40 1397 46 6.95648e+06 202660 706193. 2443.58 3.43 0.289261 0.258172 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.037006 0.0331411 54 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.66 vpr 55.78 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.5 MiB 0.51 722 11088 4563 6076 449 56.0 MiB 0.15 0.00 3.0394 -105.493 -3.0394 3.0394 1.10 0.00111173 0.00102104 0.0753461 0.0693071 46 2382 26 6.95648e+06 246087 828058. 2865.25 3.74 0.318468 0.286166 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0501625 0.0451182 77 4 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 8.82 vpr 56.07 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 29976 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 1.76 523 9994 2759 5612 1623 56.0 MiB 0.13 0.00 3.10275 -98.727 -3.10275 3.10275 1.11 0.00107127 0.000979356 0.0724902 0.0664483 40 1829 42 6.95648e+06 159232 706193. 2443.58 3.73 0.33807 0.30191 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0572823 0.0511815 57 85 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 7.69 vpr 55.88 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.71 638 10614 4216 4843 1555 56.0 MiB 0.14 0.00 2.95005 -114.898 -2.95005 2.95005 1.09 0.000977005 0.000888142 0.0752835 0.0690908 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.69 0.275765 0.247564 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.29 0.12 0.14 -1 -1 0.29 0.0443805 0.0398939 62 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.85 vpr 55.76 MiB 0.06 7000 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 1.70 651 11079 4648 6085 346 55.9 MiB 0.15 0.00 3.1095 -111.937 -3.1095 3.1095 1.10 0.00105748 0.000969002 0.0789684 0.0724571 38 1744 25 6.95648e+06 173708 678818. 2348.85 5.27 0.437354 0.390275 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0427749 0.0384129 60 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.75 vpr 55.79 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30316 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 17.2 MiB 0.95 540 10476 4331 5741 404 56.1 MiB 0.14 0.00 2.9793 -106.716 -2.9793 2.9793 1.14 0.00123881 0.00112774 0.0783514 0.0717282 50 1707 47 6.95648e+06 173708 902133. 3121.57 6.69 0.542564 0.484091 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.35 0.10 0.37 -1 -1 0.35 0.0413329 0.0371069 60 65 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.59 vpr 56.04 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 17.6 MiB 1.53 751 11803 3277 6504 2022 56.5 MiB 0.17 0.00 3.1024 -116.565 -3.1024 3.1024 1.08 0.00125565 0.00115123 0.0832591 0.0764367 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.95 0.336126 0.302029 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0497819 0.0448748 79 58 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 8.12 vpr 56.12 MiB 0.07 7020 -1 -1 1 0.03 -1 -1 30420 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 17.6 MiB 1.26 832 16371 6652 7990 1729 56.5 MiB 0.23 0.00 3.72719 -138.885 -3.72719 3.72719 1.11 0.00131754 0.00120845 0.111158 0.101936 44 2523 32 6.95648e+06 376368 787024. 2723.27 6.67 0.589108 0.528456 27778 195446 -1 1993 25 2157 3068 280465 63460 4.23576 4.23576 -153.24 -4.23576 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0644037 0.0580945 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 8.12 vpr 55.41 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 17.1 MiB 1.13 465 11234 4544 5569 1121 55.6 MiB 0.13 0.00 3.14676 -95.8879 -3.14676 3.14676 1.13 0.000935914 0.000858037 0.0700007 0.0642224 46 1613 28 6.95648e+06 188184 828058. 2865.25 5.82 0.36928 0.329287 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0479787 0.0428575 58 29 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.47 vpr 55.92 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57912 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 17.7 MiB 1.73 807 11813 5009 6533 271 56.6 MiB 0.18 0.00 3.1505 -120.688 -3.1505 3.1505 1.09 0.00130398 0.00119677 0.0980353 0.0899709 46 2437 23 6.95648e+06 188184 828058. 2865.25 3.11 0.379928 0.342259 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.33 0.16 0.36 -1 -1 0.33 0.0642713 0.0578504 77 63 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 10.27 vpr 56.00 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30108 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 17.4 MiB 1.65 707 11064 3419 5711 1934 56.3 MiB 0.18 0.00 3.0804 -113.837 -3.0804 3.0804 1.14 0.00126528 0.00115895 0.0929678 0.085307 46 2393 47 6.95648e+06 289514 828058. 2865.25 3.42 0.39009 0.350106 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.34 0.13 0.33 -1 -1 0.34 0.0615775 0.0559192 78 57 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 9.20 vpr 55.69 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 29964 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 17.4 MiB 1.00 574 10698 2981 5511 2206 56.4 MiB 0.13 0.00 2.43656 -93.1005 -2.43656 2.43656 1.11 0.00111095 0.00101726 0.0684111 0.0627337 48 1509 24 6.95648e+06 289514 865456. 2994.66 6.18 0.482443 0.429997 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0458271 0.0411188 67 65 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.45 vpr 55.25 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30004 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 16.7 MiB 0.34 450 11098 4789 5936 373 55.3 MiB 0.11 0.00 2.21746 -80.6728 -2.21746 2.21746 1.08 0.000778791 0.000712911 0.0602434 0.0551878 36 1377 32 6.95648e+06 144757 648988. 2245.63 2.36 0.236366 0.21024 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.29 0.07 0.25 -1 -1 0.29 0.031074 0.0276552 45 34 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 8.91 vpr 55.96 MiB 0.06 6924 -1 -1 1 0.03 -1 -1 30296 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 1.14 525 9374 3845 5090 439 56.3 MiB 0.13 0.00 3.8254 -127.041 -3.8254 3.8254 1.10 0.0010907 0.000999647 0.068889 0.0631966 46 1860 48 6.95648e+06 159232 828058. 2865.25 4.48 0.35424 0.316689 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.35 0.11 0.33 -1 -1 0.35 0.0543192 0.0487476 61 64 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.75 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30012 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 17.6 MiB 0.44 664 13663 4054 7770 1839 56.4 MiB 0.19 0.00 3.70954 -128.174 -3.70954 3.70954 1.10 0.00121834 0.00111771 0.0936137 0.0859832 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.35 0.323518 0.291434 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0514083 0.0463616 81 34 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 10.36 vpr 56.22 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30600 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 1.38 791 14779 5223 7361 2195 56.6 MiB 0.21 0.00 3.66119 -126.81 -3.66119 3.66119 1.05 0.00141539 0.00129729 0.106701 0.0978509 48 2442 23 6.95648e+06 390843 865456. 2994.66 6.50 0.559313 0.50063 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.066004 0.059319 85 124 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.45 vpr 55.14 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30412 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 16.9 MiB 0.95 348 7809 2770 3912 1127 55.4 MiB 0.07 0.00 2.19726 -66.8557 -2.19726 2.19726 1.11 0.000682143 0.000623316 0.038416 0.0351841 46 937 48 6.95648e+06 188184 828058. 2865.25 2.40 0.190209 0.168928 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.33 0.05 0.33 -1 -1 0.33 0.0229495 0.0205223 44 30 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.98 vpr 55.57 MiB 0.06 6840 -1 -1 1 0.03 -1 -1 30028 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 17.4 MiB 0.85 737 10316 4241 5568 507 56.2 MiB 0.14 0.00 4.02534 -135.509 -4.02534 4.02534 1.09 0.00114748 0.00105309 0.0777136 0.0714011 54 2026 41 6.95648e+06 173708 949917. 3286.91 8.17 0.535166 0.479747 29506 232905 -1 1641 22 1840 2844 317217 104806 3.76887 3.76887 -137.001 -3.76887 0 0 1.17392e+06 4061.99 0.37 0.16 0.40 -1 -1 0.37 0.0507955 0.0457669 74 3 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.39 vpr 55.34 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30372 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 17.0 MiB 0.24 731 9906 3689 5081 1136 55.6 MiB 0.10 0.00 2.15326 -87.6492 -2.15326 2.15326 0.93 0.00072053 0.000658428 0.0499973 0.0457607 34 1791 46 6.95648e+06 115805 618332. 2139.56 2.18 0.21102 0.187768 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0228622 0.0204879 44 3 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 14.02 vpr 55.91 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58004 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 17.8 MiB 0.54 827 16371 5667 8716 1988 56.6 MiB 0.22 0.00 3.67409 -135.23 -3.67409 3.67409 1.12 0.00124679 0.00114306 0.105666 0.0967833 40 2687 28 6.95648e+06 376368 706193. 2443.58 18.88 0.670912 0.60115 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.32 0.27 0.29 -1 -1 0.32 0.0667233 0.0599961 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.80 vpr 55.87 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30000 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.5 MiB 0.34 985 13754 4254 7657 1843 56.4 MiB 0.18 0.00 3.0955 -119.852 -3.0955 3.0955 1.11 0.00118181 0.00108518 0.0824311 0.0756701 36 2880 44 6.95648e+06 405319 648988. 2245.63 6.48 0.35081 0.314865 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0453874 0.0410165 87 3 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.43 vpr 55.95 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58188 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 17.9 MiB 0.46 789 18308 6099 10070 2139 56.8 MiB 0.25 0.00 3.69663 -134.61 -3.69663 3.69663 1.09 0.00130698 0.00119854 0.119895 0.10981 46 2780 28 6.95648e+06 405319 828058. 2865.25 4.23 0.415008 0.373453 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0569073 0.0513107 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.14 vpr 55.77 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 0.82 541 9374 3087 4731 1556 55.9 MiB 0.12 0.00 2.8982 -102.358 -2.8982 2.8982 1.04 0.000997602 0.000914097 0.0634656 0.0582116 38 2009 38 6.95648e+06 144757 678818. 2348.85 4.54 0.305537 0.272824 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.045479 0.0407919 57 34 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.53 vpr 55.60 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 0.65 571 8444 3466 4635 343 55.8 MiB 0.13 0.00 3.1175 -112.058 -3.1175 3.1175 1.09 0.00100524 0.000917792 0.0678176 0.0622788 40 1947 30 6.95648e+06 173708 706193. 2443.58 2.81 0.289667 0.259122 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0439755 0.0394459 60 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 7.78 vpr 55.64 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 17.0 MiB 0.58 505 10257 3681 4972 1604 55.7 MiB 0.14 0.00 3.0435 -97.9378 -3.0435 3.0435 1.03 0.000944777 0.000866727 0.0765075 0.0703025 44 1727 27 6.95648e+06 188184 787024. 2723.27 3.11 0.284837 0.254818 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.33 0.08 0.27 -1 -1 0.33 0.0369724 0.0332213 61 34 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.67 vpr 55.69 MiB 0.04 6708 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 0.28 703 9374 3895 5319 160 55.8 MiB 0.13 0.00 2.93285 -116.414 -2.93285 2.93285 0.86 0.0010048 0.000916232 0.0647637 0.0595546 44 2101 25 6.95648e+06 144757 787024. 2723.27 3.18 0.283162 0.253823 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.045166 0.0406153 64 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.36 vpr 55.59 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 17.6 MiB 0.26 623 13443 5605 7395 443 56.0 MiB 0.16 0.00 3.0955 -111.973 -3.0955 3.0955 1.09 0.00102412 0.000938457 0.0778022 0.0713537 44 2077 38 6.95648e+06 303989 787024. 2723.27 3.31 0.3187 0.2853 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.044477 0.0400519 68 34 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.68 vpr 55.87 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 17.1 MiB 0.84 508 10219 3550 4648 2021 55.8 MiB 0.12 0.00 2.43392 -85.0275 -2.43392 2.43392 1.09 0.00101841 0.000932803 0.0648626 0.0594797 46 1411 35 6.95648e+06 260562 828058. 2865.25 3.05 0.305081 0.27295 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0434913 0.0389733 64 61 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.41 vpr 56.06 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30364 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58168 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 18.0 MiB 0.86 944 14375 4687 7097 2591 56.8 MiB 0.21 0.00 3.95585 -140.771 -3.95585 3.95585 1.12 0.00142896 0.00131172 0.103704 0.0953187 54 2725 29 6.95648e+06 405319 949917. 3286.91 5.30 0.381034 0.339845 29506 232905 -1 2082 21 1977 3135 234047 51401 4.37502 4.37502 -152.214 -4.37502 0 0 1.17392e+06 4061.99 0.38 0.14 0.36 -1 -1 0.38 0.0607904 0.0550503 100 29 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 9.02 vpr 56.06 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30332 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 17.8 MiB 1.15 786 12739 3070 7853 1816 56.7 MiB 0.18 0.00 3.0804 -115.407 -3.0804 3.0804 1.08 0.00130452 0.00119429 0.085153 0.078142 40 2423 28 6.95648e+06 390843 706193. 2443.58 15.07 0.678754 0.60775 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.27 0.11 0.15 -1 -1 0.27 0.029328 0.0260261 87 65 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.61 vpr 55.88 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30360 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 17.2 MiB 1.31 525 12362 5188 6715 459 56.1 MiB 0.15 0.00 3.26916 -109.722 -3.26916 3.26916 1.08 0.00110248 0.00100863 0.0852293 0.0780413 50 1653 27 6.95648e+06 217135 902133. 3121.57 6.18 0.417734 0.372831 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.35 0.08 0.35 -1 -1 0.35 0.0350221 0.0315134 62 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.77 vpr 56.03 MiB 0.05 7024 -1 -1 1 0.05 -1 -1 30228 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.75 965 12791 5492 6957 342 56.4 MiB 0.18 0.00 3.0625 -116.847 -3.0625 3.0625 1.09 0.00126189 0.00115793 0.102764 0.0943064 38 2599 23 6.95648e+06 202660 678818. 2348.85 5.43 0.498503 0.447379 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0491479 0.0443674 79 64 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 9.82 vpr 56.54 MiB 0.08 7228 -1 -1 1 0.03 -1 -1 30344 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58032 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 18.0 MiB 2.69 778 10998 4559 6059 380 56.7 MiB 0.17 0.00 4.63397 -149.774 -4.63397 4.63397 1.08 0.00140799 0.00129191 0.0989475 0.0908412 44 2926 36 6.95648e+06 202660 787024. 2723.27 7.82 0.655136 0.585083 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.33 0.15 0.26 -1 -1 0.33 0.0639882 0.0575411 78 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.82 vpr 55.98 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 17.7 MiB 1.23 775 10476 3672 5136 1668 56.6 MiB 0.17 0.00 4.49354 -135.009 -4.49354 4.49354 1.09 0.00130239 0.00119234 0.0894755 0.08203 44 2669 43 6.95648e+06 188184 787024. 2723.27 6.52 0.611164 0.547006 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0652764 0.0587279 76 90 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.14 vpr 56.01 MiB 0.06 7136 -1 -1 1 0.03 -1 -1 30184 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 17.6 MiB 1.01 864 15493 5631 7761 2101 56.5 MiB 0.21 0.00 3.1285 -114.829 -3.1285 3.1285 1.09 0.00126075 0.00115657 0.103344 0.0947559 38 2848 26 6.95648e+06 361892 678818. 2348.85 4.66 0.387088 0.34763 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0241034 0.0215718 85 64 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 9.30 vpr 55.66 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 17.7 MiB 0.61 956 10743 3793 5013 1937 56.6 MiB 0.15 0.00 3.77119 -139.239 -3.77119 3.77119 1.08 0.00128445 0.00117695 0.0721906 0.0661995 44 2711 27 6.95648e+06 376368 787024. 2723.27 7.14 0.591248 0.529153 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0593414 0.0534828 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.31 vpr 56.73 MiB 0.05 7240 -1 -1 1 0.04 -1 -1 30476 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58148 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 18.5 MiB 1.29 1078 14999 4071 8495 2433 56.8 MiB 0.22 0.00 3.84845 -142.865 -3.84845 3.84845 1.09 0.00157872 0.00144892 0.113614 0.104184 40 2955 26 6.95648e+06 448746 706193. 2443.58 4.17 0.468156 0.421393 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.27 0.08 0.15 -1 -1 0.27 0.0268109 0.0240174 104 96 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.14 vpr 55.73 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30424 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 0.72 721 10304 4339 5695 270 56.0 MiB 0.13 0.00 3.34916 -121.065 -3.34916 3.34916 1.12 0.00102344 0.000937883 0.0713091 0.0654265 36 2215 27 6.95648e+06 159232 648988. 2245.63 4.70 0.303669 0.271809 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0433552 0.0389899 62 34 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 9.93 vpr 56.04 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 17.5 MiB 0.49 784 13959 3819 8017 2123 56.6 MiB 0.20 0.00 4.0519 -136.516 -4.0519 4.0519 1.09 0.00127608 0.00116959 0.0924189 0.0847955 48 2294 26 6.95648e+06 390843 865456. 2994.66 6.41 0.51146 0.45866 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.35 0.13 0.36 -1 -1 0.35 0.0517193 0.0466739 86 64 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.07 vpr 56.14 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30344 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 17.6 MiB 0.93 863 13557 4887 6407 2263 56.6 MiB 0.17 0.00 3.29596 -116.543 -3.29596 3.29596 1.09 0.0012779 0.00117143 0.0903202 0.0828532 54 2269 23 6.95648e+06 376368 949917. 3286.91 6.96 0.501498 0.450167 29506 232905 -1 1764 21 1634 2724 193460 42892 3.13397 3.13397 -112.027 -3.13397 0 0 1.17392e+06 4061.99 0.38 0.13 0.40 -1 -1 0.38 0.0554592 0.0499474 85 63 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.49 vpr 55.96 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 17.8 MiB 0.85 760 7738 3134 4374 230 56.3 MiB 0.12 0.00 3.65689 -135.736 -3.65689 3.65689 1.08 0.00119038 0.00109296 0.0599785 0.0551661 44 3266 47 6.95648e+06 188184 787024. 2723.27 28.50 0.635676 0.568637 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0545204 0.0491509 78 3 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.40 vpr 56.03 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58120 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.92 808 11991 3810 6067 2114 56.8 MiB 0.16 0.00 3.1768 -117.392 -3.1768 3.1768 1.09 0.00131485 0.00120425 0.0859013 0.0787649 46 2159 29 6.95648e+06 332941 828058. 2865.25 6.14 0.524741 0.4698 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.35 0.10 0.33 -1 -1 0.35 0.0526985 0.0475051 81 96 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 12.28 vpr 56.18 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30160 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.98 845 12926 3665 7173 2088 56.6 MiB 0.18 0.00 3.1214 -116.244 -3.1214 3.1214 1.09 0.00128239 0.0011765 0.0844104 0.077487 46 2291 24 6.95648e+06 405319 828058. 2865.25 6.11 0.490128 0.439342 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0579681 0.0522279 85 61 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.68 vpr 56.29 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 17.7 MiB 0.69 803 14996 4547 7782 2667 56.6 MiB 0.21 0.00 3.09676 -115.471 -3.09676 3.09676 1.12 0.0013123 0.00120114 0.0990352 0.0907497 46 2386 25 6.95648e+06 405319 828058. 2865.25 3.71 0.386455 0.347396 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053174 0.0480234 88 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 7.94 vpr 55.81 MiB 0.05 7016 -1 -1 1 0.04 -1 -1 30484 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.57 938 15617 5888 7604 2125 56.4 MiB 0.21 0.00 3.66789 -137.042 -3.66789 3.66789 1.09 0.00124251 0.00114049 0.098879 0.0908026 44 2729 48 6.95648e+06 405319 787024. 2723.27 3.92 0.364238 0.327933 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0565426 0.0509175 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 10.19 vpr 56.11 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30560 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 17.8 MiB 1.15 799 12448 3955 5788 2705 56.5 MiB 0.16 0.00 3.78219 -138.337 -3.78219 3.78219 1.09 0.00129422 0.00118519 0.0797554 0.0731428 44 2633 42 6.95648e+06 434271 787024. 2723.27 3.34 0.356732 0.320245 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.32 0.13 0.16 -1 -1 0.32 0.0574067 0.051861 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 11.76 vpr 56.19 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 17.8 MiB 1.64 822 11983 4768 6508 707 56.6 MiB 0.18 0.00 4.19045 -134.89 -4.19045 4.19045 1.09 0.00138265 0.00126248 0.0887663 0.0813681 48 2637 22 6.95648e+06 361892 865456. 2994.66 6.44 0.558409 0.497903 28354 207349 -1 2137 24 1540 2402 225363 46826 4.04142 4.04142 -139.672 -4.04142 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0647566 0.0581982 84 122 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 11.04 vpr 56.54 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58200 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 18.1 MiB 1.22 840 10346 3694 5398 1254 56.8 MiB 0.17 0.00 3.7688 -130.649 -3.7688 3.7688 1.09 0.00138091 0.00126765 0.0910123 0.0835746 40 2535 24 6.95648e+06 188184 706193. 2443.58 4.10 0.387616 0.348294 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0613399 0.0552047 78 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 17.04 vpr 55.59 MiB 0.06 6868 -1 -1 1 0.03 -1 -1 30580 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 17.2 MiB 0.21 594 10647 4341 5910 396 55.9 MiB 0.13 0.00 3.12656 -113.614 -3.12656 3.12656 1.09 0.00104218 0.000955614 0.0610739 0.0559171 56 1741 22 6.95648e+06 332941 973134. 3367.25 6.96 0.422414 0.376318 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.38 0.10 0.41 -1 -1 0.38 0.0416823 0.0374251 71 34 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.77 vpr 55.86 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30248 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57656 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 17.8 MiB 1.35 610 8444 3495 4676 273 56.3 MiB 0.12 0.00 3.0405 -112.422 -3.0405 3.0405 1.13 0.00116613 0.00106699 0.0681808 0.0624177 52 1849 26 6.95648e+06 144757 926341. 3205.33 2.76 0.279919 0.250763 29218 227130 -1 1370 23 1369 2031 153581 37136 3.03252 3.03252 -119.471 -3.03252 0 0 1.14541e+06 3963.36 0.37 0.11 0.39 -1 -1 0.37 0.0526518 0.0472736 63 94 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.50 vpr 56.41 MiB 0.06 7212 -1 -1 1 0.03 -1 -1 30728 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 18.1 MiB 0.75 1000 14152 3772 8188 2192 56.4 MiB 0.23 0.00 4.46224 -157.711 -4.46224 4.46224 1.10 0.00153169 0.00140856 0.106715 0.098133 54 3033 30 6.95648e+06 434271 949917. 3286.91 7.64 0.613701 0.550968 29506 232905 -1 2329 24 2607 4128 362524 74061 4.97191 4.97191 -169.58 -4.97191 0 0 1.17392e+06 4061.99 0.38 0.19 0.40 -1 -1 0.38 0.071073 0.0640762 103 65 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 8.74 vpr 56.11 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57684 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 17.4 MiB 1.09 717 11983 4638 6220 1125 56.3 MiB 0.15 0.00 3.1457 -117.079 -3.1457 3.1457 1.09 0.00124566 0.00114373 0.0801177 0.0736451 52 1977 32 6.95648e+06 347416 926341. 3205.33 2.85 0.312388 0.281064 29218 227130 -1 1529 23 1474 1953 166020 38664 3.18617 3.18617 -120.879 -3.18617 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.055696 0.0501995 83 34 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 8.23 vpr 55.86 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30248 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 17.1 MiB 0.36 571 10581 4367 5776 438 55.9 MiB 0.13 0.00 3.0735 -108.432 -3.0735 3.0735 1.09 0.00101199 0.000928311 0.0645638 0.0593128 38 2214 32 6.95648e+06 275038 678818. 2348.85 4.85 0.304862 0.272714 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0405936 0.0364505 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 12.69 vpr 56.50 MiB 0.08 7404 -1 -1 1 0.04 -1 -1 30920 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 18.3 MiB 2.45 1126 15215 3732 10105 1378 56.6 MiB 0.25 0.00 4.49524 -160.999 -4.49524 4.49524 1.09 0.00170037 0.00156543 0.124871 0.115065 48 3031 35 6.95648e+06 448746 865456. 2994.66 20.87 0.817149 0.735661 28354 207349 -1 2801 53 4379 6142 1660922 828010 5.02371 5.02371 -179.054 -5.02371 0 0 1.05005e+06 3633.38 0.35 0.77 0.35 -1 -1 0.35 0.158086 0.141814 103 127 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.38 vpr 56.26 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30312 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 17.6 MiB 1.34 804 14375 4842 7223 2310 56.3 MiB 0.19 0.00 3.73321 -136.441 -3.73321 3.73321 1.08 0.000854505 0.000767794 0.0695557 0.0629002 40 2325 28 6.95648e+06 405319 706193. 2443.58 3.80 0.334096 0.298714 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.054673 0.0492998 86 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.82 vpr 55.50 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.3 MiB 0.36 740 12763 4452 6451 1860 55.8 MiB 0.15 0.00 3.05815 -117.559 -3.05815 3.05815 1.09 0.00100968 0.00092642 0.0687585 0.0631934 44 2104 25 6.95648e+06 347416 787024. 2723.27 3.30 0.285377 0.255817 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.041819 0.0375886 70 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 14.02 vpr 55.96 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30664 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 18.2 MiB 0.63 924 14567 5045 6877 2645 56.5 MiB 0.21 0.00 4.52824 -159.979 -4.52824 4.52824 1.09 0.00145719 0.00133898 0.103177 0.0948078 54 3003 36 6.95648e+06 448746 949917. 3286.91 6.94 0.518235 0.465768 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.41 0.20 0.40 -1 -1 0.41 0.0738998 0.066636 105 34 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.41 vpr 55.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30244 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.40 618 10614 4475 5915 224 55.9 MiB 0.14 0.00 2.92185 -113.699 -2.92185 2.92185 1.10 0.000997586 0.000915108 0.071427 0.0655363 46 1828 25 6.95648e+06 144757 828058. 2865.25 6.27 0.451092 0.402636 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0470208 0.0421897 62 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.08 vpr 55.61 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 17.4 MiB 0.89 601 10163 2708 5873 1582 55.8 MiB 0.12 0.00 3.10776 -107.419 -3.10776 3.10776 1.09 0.00100863 0.000924981 0.0600311 0.0551339 52 1508 25 6.95648e+06 303989 926341. 3205.33 2.69 0.232747 0.208755 29218 227130 -1 1108 22 1138 1745 119544 29707 3.03987 3.03987 -107.252 -3.03987 0 0 1.14541e+06 3963.36 0.40 0.10 0.38 -1 -1 0.40 0.0452438 0.0406662 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.64 vpr 56.23 MiB 0.04 7132 -1 -1 1 0.27 -1 -1 30136 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 705 12856 4698 6070 2088 56.5 MiB 0.18 0.00 3.39446 -107.671 -3.39446 3.39446 1.14 0.00124212 0.00113772 0.0957051 0.0878096 48 2602 41 6.95648e+06 289514 865456. 2994.66 7.15 0.57247 0.512412 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.34 0.13 0.35 -1 -1 0.34 0.0501713 0.0452156 77 88 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.45 vpr 56.04 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 17.4 MiB 1.02 807 13117 5264 6347 1506 56.4 MiB 0.19 0.00 3.65689 -136.729 -3.65689 3.65689 1.09 0.00130474 0.00119745 0.108878 0.0999617 46 2061 24 6.95648e+06 188184 828058. 2865.25 5.31 0.529209 0.475139 28066 200906 -1 1777 22 2020 2624 211029 44669 3.92996 3.92996 -145.52 -3.92996 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0574376 0.0517901 78 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.39 vpr 56.07 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30520 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 17.5 MiB 1.87 890 14345 5510 6931 1904 56.4 MiB 0.19 0.00 3.74419 -138.408 -3.74419 3.74419 1.09 0.00130485 0.00119721 0.0984535 0.090346 48 2618 24 6.95648e+06 361892 865456. 2994.66 3.60 0.375018 0.337101 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.34 0.19 0.35 -1 -1 0.34 0.0615794 0.055449 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 10.21 vpr 55.85 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 1.38 685 10813 4185 5763 865 56.2 MiB 0.13 0.00 3.05815 -117.015 -3.05815 3.05815 1.09 0.00111879 0.00102402 0.0646507 0.0592316 44 2023 47 6.95648e+06 347416 787024. 2723.27 6.54 0.518452 0.462204 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0461188 0.0413834 69 65 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 9.16 vpr 55.79 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 17.5 MiB 1.62 684 10105 3894 4557 1654 56.1 MiB 0.14 0.00 3.30215 -110.841 -3.30215 3.30215 1.08 0.00110796 0.00101439 0.0768358 0.0704031 36 2232 46 6.95648e+06 144757 648988. 2245.63 5.37 0.475583 0.423763 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.29 0.11 0.27 -1 -1 0.29 0.0464687 0.0416674 59 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 9.19 vpr 56.01 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 17.4 MiB 1.01 949 12711 4087 6844 1780 56.3 MiB 0.18 0.00 3.1285 -115.995 -3.1285 3.1285 1.09 0.00122023 0.00111919 0.0883109 0.0810975 40 2353 22 6.95648e+06 318465 706193. 2443.58 2.97 0.348513 0.31322 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0545814 0.0490875 79 60 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.93 vpr 55.92 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30288 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 17.5 MiB 0.79 684 10156 4202 5354 600 56.2 MiB 0.14 0.00 4.24545 -126.653 -4.24545 4.24545 1.10 0.00110432 0.00101392 0.0728848 0.0669703 38 2620 28 6.95648e+06 231611 678818. 2348.85 7.19 0.322981 0.289914 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0498232 0.0447942 74 34 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.16 vpr 55.97 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30012 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 17.3 MiB 0.92 607 9374 3879 5147 348 56.2 MiB 0.12 0.00 3.0545 -108.859 -3.0545 3.0545 1.08 0.0010673 0.000978325 0.0672428 0.0616541 38 1982 33 6.95648e+06 173708 678818. 2348.85 4.42 0.316059 0.282704 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0480865 0.0431235 61 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.01 vpr 55.95 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 17.5 MiB 1.46 777 7669 3175 4304 190 56.5 MiB 0.11 0.00 3.0765 -113.072 -3.0765 3.0765 1.09 0.00113701 0.0010405 0.0595326 0.0545845 36 2390 29 6.95648e+06 144757 648988. 2245.63 4.30 0.290183 0.258937 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0512541 0.0459159 60 91 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 10.62 vpr 55.82 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30096 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.3 MiB 0.20 795 9448 3333 4743 1372 56.2 MiB 0.13 0.00 3.89245 -136.332 -3.89245 3.89245 1.09 0.0011447 0.00104929 0.0600089 0.0552093 50 2553 48 6.95648e+06 361892 902133. 3121.57 7.97 0.533607 0.47717 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.35 0.17 0.36 -1 -1 0.35 0.0528653 0.0476886 86 4 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 10.59 vpr 56.03 MiB 0.05 7072 -1 -1 1 0.05 -1 -1 30596 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 17.6 MiB 0.98 926 10495 2590 6894 1011 56.5 MiB 0.17 0.00 3.78219 -140.482 -3.78219 3.78219 1.13 0.00132488 0.00121557 0.0716802 0.0657643 44 2797 31 6.95648e+06 390843 787024. 2723.27 7.54 0.548921 0.491493 27778 195446 -1 2243 24 2072 3440 271776 53627 4.11966 4.11966 -151.056 -4.11966 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.061397 0.0553399 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 12.32 vpr 56.02 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30400 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 17.8 MiB 1.90 831 9336 3198 4890 1248 56.3 MiB 0.14 0.00 3.70819 -135.715 -3.70819 3.70819 0.98 0.00131555 0.00120568 0.0650884 0.0597001 46 2950 33 6.95648e+06 376368 828058. 2865.25 5.71 0.370042 0.332118 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.33 0.15 0.32 -1 -1 0.33 0.0591856 0.0533197 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.29 vpr 56.12 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 17.4 MiB 1.19 822 13351 4683 6743 1925 56.4 MiB 0.19 0.00 3.75544 -130.593 -3.75544 3.75544 1.08 0.0013088 0.00119325 0.0889987 0.0816368 48 3144 32 6.95648e+06 390843 865456. 2994.66 4.14 0.381536 0.342844 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0590308 0.0531983 86 65 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 7.75 vpr 55.61 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30196 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 17.1 MiB 0.83 551 9064 3696 4990 378 55.8 MiB 0.12 0.00 3.29416 -111.889 -3.29416 3.29416 1.09 0.00100274 0.000918791 0.061351 0.0563046 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.99 0.283432 0.253427 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0421474 0.0377961 62 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.13 vpr 56.06 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30272 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 17.8 MiB 0.87 751 12465 5336 6622 507 56.6 MiB 0.18 0.00 4.015 -133.992 -4.015 4.015 1.09 0.00124832 0.00114481 0.0991475 0.0910144 50 2020 39 6.95648e+06 217135 902133. 3121.57 10.80 0.681876 0.609696 28642 213929 -1 1643 20 1664 2248 177098 40098 3.95216 3.95216 -137.304 -3.95216 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0502919 0.0453904 78 63 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.10 vpr 55.99 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30716 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58140 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 17.9 MiB 1.83 807 14351 4061 7900 2390 56.8 MiB 0.22 0.00 3.71619 -135.355 -3.71619 3.71619 1.09 0.0014392 0.00131911 0.108473 0.099264 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.48 0.389336 0.349462 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0641582 0.057644 88 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 10.92 vpr 55.97 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30264 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57816 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 17.5 MiB 1.03 718 14035 5965 7479 591 56.5 MiB 0.23 0.00 3.9948 -135.983 -3.9948 3.9948 1.08 0.00132719 0.00121536 0.124816 0.114244 46 2454 32 6.95648e+06 318465 828058. 2865.25 5.81 0.437389 0.393278 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053108 0.0478893 81 94 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.68 vpr 56.14 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 17.5 MiB 1.63 700 13668 5834 7221 613 56.4 MiB 0.19 0.00 3.27591 -109.838 -3.27591 3.27591 1.10 0.00127604 0.00116329 0.104398 0.0956517 46 2600 45 6.95648e+06 260562 828058. 2865.25 4.19 0.426489 0.38233 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0593692 0.0534036 75 92 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.27 vpr 55.97 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58068 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.8 MiB 1.92 782 12628 3922 6830 1876 56.7 MiB 0.19 0.00 3.65989 -133.508 -3.65989 3.65989 1.09 0.00131076 0.0012018 0.102702 0.0942152 48 2610 29 6.95648e+06 188184 865456. 2994.66 4.84 0.407081 0.366043 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.35 0.25 0.35 -1 -1 0.35 0.0771882 0.0696211 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 8.91 vpr 56.02 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30184 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 17.7 MiB 1.11 662 10163 3749 4795 1619 56.5 MiB 0.13 0.00 3.14182 -102.393 -3.14182 3.14182 1.09 0.00122041 0.00111795 0.072063 0.0660747 48 1906 29 6.95648e+06 318465 865456. 2994.66 3.93 0.346316 0.310461 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.35 0.15 0.35 -1 -1 0.35 0.054278 0.0488649 77 88 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 8.27 vpr 55.64 MiB 0.05 6812 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.84 574 9219 3815 5040 364 56.0 MiB 0.12 0.00 2.94595 -112.182 -2.94595 2.94595 1.09 0.00100073 0.000919158 0.0622626 0.0572147 62 1582 28 6.95648e+06 144757 1.05005e+06 3633.38 7.19 0.427956 0.382799 30946 263737 -1 1177 19 1240 1905 137799 33305 3.13582 3.13582 -113.41 -3.13582 0 0 1.30136e+06 4502.97 0.42 0.10 0.46 -1 -1 0.42 0.0364767 0.0328469 61 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.61 vpr 56.20 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 17.6 MiB 3.79 749 15688 6578 8529 581 56.5 MiB 0.21 0.00 3.77419 -136.605 -3.77419 3.77419 1.09 0.00131676 0.0012077 0.110005 0.10091 54 2315 29 6.95648e+06 347416 949917. 3286.91 4.13 0.404609 0.364168 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.38 0.14 0.40 -1 -1 0.38 0.0597107 0.0538828 84 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 8.88 vpr 56.28 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30400 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 0.77 800 13117 5732 6986 399 56.4 MiB 0.19 0.00 3.79019 -142.199 -3.79019 3.79019 1.09 0.0013207 0.00121117 0.10921 0.100253 44 2724 46 6.95648e+06 188184 787024. 2723.27 3.10 0.442527 0.398192 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0545276 0.04912 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.04 vpr 55.65 MiB 0.03 6920 -1 -1 1 0.04 -1 -1 30196 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 17.1 MiB 1.21 575 11609 4562 5941 1106 56.1 MiB 0.15 0.00 3.25495 -109.238 -3.25495 3.25495 1.08 0.00103206 0.000945267 0.0788817 0.0723099 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.43 0.294303 0.263751 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0430239 0.0385979 60 55 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.65 vpr 55.37 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30196 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.30 835 9529 3959 5371 199 55.9 MiB 0.12 0.00 3.0815 -119.168 -3.0815 3.0815 1.09 0.000971747 0.000891309 0.0624392 0.0573784 38 2078 34 6.95648e+06 159232 678818. 2348.85 5.58 0.40656 0.362846 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.29 0.10 0.31 -1 -1 0.29 0.0386929 0.0348551 63 4 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.46 vpr 56.21 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 17.6 MiB 1.35 782 14483 5692 6794 1997 56.2 MiB 0.20 0.00 3.70334 -129.205 -3.70334 3.70334 1.09 0.0012514 0.00114867 0.104303 0.0956314 38 2558 24 6.95648e+06 275038 678818. 2348.85 4.66 0.373069 0.335377 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0469186 0.0424536 78 59 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 10.81 vpr 56.06 MiB 0.05 7160 -1 -1 1 0.41 -1 -1 30108 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 17.5 MiB 0.75 793 11474 4768 6294 412 56.4 MiB 0.17 0.00 3.90986 -132.869 -3.90986 3.90986 1.08 0.00127496 0.00116789 0.0872254 0.0799913 40 2890 43 6.95648e+06 260562 706193. 2443.58 8.27 0.414406 0.371951 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0555461 0.0499961 78 88 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 9.23 vpr 56.20 MiB 0.10 7032 -1 -1 1 0.41 -1 -1 30408 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58028 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.9 MiB 0.43 1152 4375 861 3334 180 56.7 MiB 0.09 0.00 4.48239 -161.071 -4.48239 4.48239 1.08 0.00136817 0.00125747 0.0332239 0.0306376 46 3119 32 6.95648e+06 390843 828058. 2865.25 6.66 0.354917 0.319322 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.34 0.16 0.33 -1 -1 0.34 0.0563478 0.0511067 100 3 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.72 vpr 56.07 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 17.8 MiB 1.05 698 14528 6104 7488 936 56.6 MiB 0.20 0.00 3.34296 -113.702 -3.34296 3.34296 1.08 0.00119821 0.00109831 0.104718 0.0960619 44 2314 27 6.95648e+06 260562 787024. 2723.27 3.10 0.37127 0.333854 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0591834 0.0531779 77 59 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.96 vpr 55.59 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 17.3 MiB 0.54 465 10459 4157 5359 943 55.9 MiB 0.14 0.00 3.15776 -95.8334 -3.15776 3.15776 1.10 0.000917356 0.000841296 0.0740647 0.0678907 38 1652 25 6.95648e+06 217135 678818. 2348.85 5.04 0.384385 0.342494 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0342114 0.0307177 57 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 9.29 vpr 56.30 MiB 0.05 7292 -1 -1 1 0.05 -1 -1 30472 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 18.2 MiB 0.90 956 13513 4288 6425 2800 56.6 MiB 0.20 0.00 4.037 -139.704 -4.037 4.037 1.09 0.00155869 0.00142942 0.103566 0.0950383 54 3228 47 6.95648e+06 434271 949917. 3286.91 8.84 0.701419 0.628858 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.38 0.18 0.39 -1 -1 0.38 0.070541 0.0636286 103 95 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 14.62 vpr 55.92 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30380 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58172 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 18.0 MiB 3.62 899 8716 2535 4990 1191 56.8 MiB 0.14 0.00 4.57784 -152.287 -4.57784 4.57784 1.09 0.00139742 0.00128222 0.0783709 0.0719727 40 2620 26 6.95648e+06 202660 706193. 2443.58 3.61 0.380083 0.340722 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0560166 0.0503962 79 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 11.53 vpr 55.83 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 17.5 MiB 3.12 500 11389 4353 5738 1298 56.5 MiB 0.15 0.00 3.0346 -106.135 -3.0346 3.0346 1.09 0.00113202 0.00103664 0.0867382 0.0795135 42 2142 50 6.95648e+06 144757 744469. 2576.02 13.20 0.6367 0.56685 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.31 0.10 0.30 -1 -1 0.31 0.0484561 0.0434722 58 89 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 7.92 vpr 55.93 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.43 819 12938 5293 7361 284 56.3 MiB 0.18 0.00 4.12326 -140.658 -4.12326 4.12326 1.10 0.00121508 0.00111393 0.0870922 0.0799583 46 2429 24 6.95648e+06 318465 828058. 2865.25 6.38 0.482164 0.432371 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0531962 0.0479402 83 34 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 9.21 vpr 56.12 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30548 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58012 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 17.8 MiB 0.96 852 12560 4728 5964 1868 56.7 MiB 0.19 0.00 4.1192 -140.393 -4.1192 4.1192 1.09 0.00143535 0.00131808 0.0995828 0.0915308 44 3193 49 6.95648e+06 332941 787024. 2723.27 3.68 0.482635 0.434046 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.34 0.15 0.23 -1 -1 0.34 0.0665179 0.0599931 95 64 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 11.17 vpr 55.81 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30236 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 17.8 MiB 0.96 739 10762 4429 5782 551 56.7 MiB 0.14 0.00 3.27396 -108.751 -3.27396 3.27396 1.09 0.00120667 0.00110443 0.0763097 0.0700094 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.84 0.293249 0.263612 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.35 0.12 0.37 -1 -1 0.35 0.0527813 0.0475011 78 61 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 10.82 vpr 56.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58016 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 17.9 MiB 0.64 907 15848 6161 8045 1642 56.7 MiB 0.20 0.00 3.79319 -139.401 -3.79319 3.79319 1.11 0.00133992 0.00122802 0.0969903 0.0888647 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.59 0.369418 0.332065 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.18 0.34 -1 -1 0.35 0.0573937 0.0517312 91 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.20 vpr 56.14 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58060 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 17.8 MiB 0.39 794 15215 5485 7366 2364 56.7 MiB 0.20 0.00 3.05335 -116.88 -3.05335 3.05335 1.10 0.00131332 0.00120301 0.0964503 0.0883512 38 2664 32 6.95648e+06 448746 678818. 2348.85 14.31 0.660166 0.591052 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0592563 0.0533417 90 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.40 vpr 55.59 MiB 0.08 6928 -1 -1 1 0.27 -1 -1 30108 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 17.3 MiB 3.33 577 8599 3570 4706 323 55.9 MiB 0.10 0.00 3.17976 -103.796 -3.17976 3.17976 1.09 0.000977423 0.000893891 0.0570353 0.0522728 34 1710 33 6.95648e+06 188184 618332. 2139.56 2.00 0.240217 0.214804 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0393341 0.0352805 56 34 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 8.19 vpr 55.81 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 17.4 MiB 0.89 584 9839 4132 5456 251 56.2 MiB 0.13 0.00 2.9814 -102.92 -2.9814 2.9814 1.11 0.00106727 0.000976717 0.0709454 0.0650059 42 1955 38 6.95648e+06 144757 744469. 2576.02 6.25 0.488447 0.434321 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0389154 0.0349064 58 82 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 9.02 vpr 55.84 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 0.53 743 12331 4128 5906 2297 56.5 MiB 0.15 0.00 4.24545 -140.476 -4.24545 4.24545 1.09 0.00121649 0.00111607 0.0771041 0.0708042 52 2318 48 6.95648e+06 405319 926341. 3205.33 8.18 0.622738 0.557407 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.37 0.13 0.38 -1 -1 0.37 0.0513301 0.0462667 86 34 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.01 vpr 55.67 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30212 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 17.3 MiB 1.23 494 12399 5297 6440 662 55.9 MiB 0.14 0.00 3.26295 -100.502 -3.26295 3.26295 1.08 0.000983031 0.000901478 0.0801406 0.07352 40 2019 35 6.95648e+06 202660 706193. 2443.58 3.74 0.322594 0.288738 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.041729 0.037302 59 56 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.82 vpr 55.50 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 17.2 MiB 0.87 698 10149 3910 5225 1014 55.8 MiB 0.14 0.00 3.05815 -118.306 -3.05815 3.05815 0.91 0.00105823 0.000970693 0.0726988 0.0667482 38 2191 39 6.95648e+06 144757 678818. 2348.85 11.66 0.504448 0.449993 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0447559 0.0401844 61 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.86 vpr 56.08 MiB 0.03 7016 -1 -1 1 0.03 -1 -1 30248 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 17.5 MiB 0.76 717 11607 3761 5813 2033 56.4 MiB 0.08 0.00 3.1175 -113.433 -3.1175 3.1175 0.74 0.000459665 0.000414213 0.0301033 0.0272558 44 1996 23 6.95648e+06 347416 787024. 2723.27 4.51 0.361136 0.321778 27778 195446 -1 1542 18 1591 2057 137516 32127 3.20637 3.20637 -119.126 -3.20637 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0465852 0.0420409 82 64 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 9.41 vpr 55.72 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30260 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 2.21 682 10459 3058 6921 480 55.9 MiB 0.13 0.00 3.13575 -104.344 -3.13575 3.13575 1.08 0.00101945 0.000934856 0.0711642 0.0652532 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.21 0.192026 0.171298 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0460906 0.0413256 57 55 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 9.00 vpr 56.17 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 17.6 MiB 1.78 710 12323 5117 6727 479 56.4 MiB 0.16 0.00 3.0155 -107.222 -3.0155 3.0155 1.10 0.00123051 0.00112843 0.0878957 0.0805773 48 2125 29 6.95648e+06 275038 865456. 2994.66 3.35 0.365621 0.328441 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0509388 0.045856 76 65 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.77 vpr 56.15 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30192 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 17.7 MiB 1.57 717 15298 5325 7460 2513 56.6 MiB 0.21 0.00 3.41641 -118.296 -3.41641 3.41641 1.09 0.00132789 0.00121668 0.104679 0.0958412 44 2443 41 6.95648e+06 361892 787024. 2723.27 6.51 0.563776 0.50584 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0557462 0.0502268 85 93 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 8.67 vpr 55.81 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30216 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 0.91 564 10149 3066 5426 1657 56.3 MiB 0.15 0.00 2.9023 -103.177 -2.9023 2.9023 1.10 0.00108818 0.000997353 0.0746445 0.0684847 44 2002 28 6.95648e+06 144757 787024. 2723.27 5.88 0.465708 0.415587 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.048056 0.0430679 61 61 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.62 vpr 55.68 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 17.5 MiB 0.76 611 8289 3413 4626 250 56.4 MiB 0.11 0.00 3.0515 -113.367 -3.0515 3.0515 0.83 0.00110348 0.00101041 0.062218 0.0570542 52 1978 31 6.95648e+06 144757 926341. 3205.33 6.89 0.451101 0.402349 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.37 0.11 0.40 -1 -1 0.37 0.046306 0.0415836 63 63 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 10.67 vpr 55.98 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30584 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 17.6 MiB 1.08 951 8283 1857 5834 592 56.5 MiB 0.13 0.00 3.78219 -143.123 -3.78219 3.78219 1.09 0.00129864 0.00119118 0.0549675 0.0504641 40 2477 25 6.95648e+06 419795 706193. 2443.58 4.82 0.341606 0.306189 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0690988 0.0621809 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.13 vpr 55.98 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 739 8336 2662 4258 1416 56.2 MiB 0.12 0.00 3.1065 -104.923 -3.1065 3.1065 1.08 0.00118927 0.00109002 0.0609616 0.0559909 38 2387 48 6.95648e+06 275038 678818. 2348.85 11.88 0.615736 0.549976 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0488341 0.0440831 77 62 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.51 vpr 56.27 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30672 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58152 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 18.0 MiB 1.90 819 16473 6066 7302 3105 56.8 MiB 0.21 0.00 3.81039 -138.347 -3.81039 3.81039 1.09 0.0014429 0.00132167 0.11745 0.107634 48 2605 47 6.95648e+06 419795 865456. 2994.66 7.28 0.487999 0.437685 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.36 0.21 0.34 -1 -1 0.36 0.0791086 0.0709628 89 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 8.21 vpr 55.51 MiB 0.04 6760 -1 -1 1 0.03 -1 -1 30128 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 17.1 MiB 1.25 588 9529 3953 5280 296 55.7 MiB 0.11 0.00 3.02776 -101.68 -3.02776 3.02776 1.09 0.000920775 0.000845309 0.0593258 0.0544919 38 2072 26 6.95648e+06 159232 678818. 2348.85 3.30 0.262979 0.235006 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0417613 0.0373795 58 4 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.96 vpr 56.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58044 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.09 751 13335 4844 6817 1674 56.7 MiB 0.18 0.00 3.74945 -128.098 -3.74945 3.74945 1.11 0.00131829 0.00120736 0.0956107 0.0875067 50 2285 32 6.95648e+06 332941 902133. 3121.57 4.64 0.399594 0.358957 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0570136 0.051306 81 92 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.38 vpr 55.97 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30076 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.5 MiB 2.95 613 11854 5235 6332 287 56.2 MiB 0.16 0.00 2.96105 -113.67 -2.96105 2.96105 1.09 0.00118941 0.0010895 0.0939151 0.086067 40 2066 46 6.95648e+06 144757 706193. 2443.58 13.27 0.665482 0.593469 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0568819 0.0510321 61 96 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 8.92 vpr 55.98 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 1.30 784 11983 4223 5778 1982 56.4 MiB 0.17 0.00 3.13882 -116.487 -3.13882 3.13882 1.12 0.0012929 0.00118454 0.0817383 0.0748738 48 2212 28 6.95648e+06 347416 865456. 2994.66 2.95 0.371644 0.333828 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0572075 0.0516248 84 65 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 12.83 vpr 56.21 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30624 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 18.4 MiB 1.60 961 18301 6218 9454 2629 56.7 MiB 0.26 0.00 4.52824 -160.34 -4.52824 4.52824 1.09 0.00157359 0.00144406 0.134368 0.123321 46 3150 41 6.95648e+06 477698 828058. 2865.25 6.37 0.44243 0.39771 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0660315 0.0596009 104 96 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 8.89 vpr 55.48 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30068 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 16.9 MiB 0.51 395 8267 2975 4043 1249 55.5 MiB 0.09 0.00 2.20646 -76.6701 -2.20646 2.20646 1.09 0.000820752 0.000750585 0.048116 0.0440817 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.95 0.251038 0.222604 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0354479 0.0315251 45 56 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 8.82 vpr 55.71 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30280 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 1.64 505 9994 3801 4923 1270 55.9 MiB 0.13 0.00 3.20866 -106.336 -3.20866 3.20866 1.10 0.00100772 0.000925015 0.0683057 0.0627268 40 1597 24 6.95648e+06 173708 706193. 2443.58 2.44 0.283172 0.253512 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0474906 0.0424626 58 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.09 vpr 55.71 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 17.4 MiB 0.28 594 9219 3126 4706 1387 56.0 MiB 0.13 0.00 2.93285 -111.664 -2.93285 2.93285 1.09 0.0010611 0.000972688 0.0677214 0.0621498 52 1888 25 6.95648e+06 144757 926341. 3205.33 6.74 0.420574 0.375381 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0501063 0.0450145 65 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.40 vpr 55.47 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30276 -1 -1 15 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 17.3 MiB 0.51 415 9310 3976 4598 736 55.8 MiB 0.10 0.00 3.24096 -89.6096 -3.24096 3.24096 1.09 0.000857735 0.000786565 0.0563127 0.0517129 40 1641 47 6.95648e+06 217135 706193. 2443.58 2.95 0.273201 0.243229 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.30 0.08 0.28 -1 -1 0.30 0.0356654 0.0318837 56 34 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 14.36 vpr 56.05 MiB 0.05 7136 -1 -1 1 0.05 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 17.8 MiB 1.31 849 10835 4559 6029 247 56.3 MiB 0.18 0.00 3.79924 -134.385 -3.79924 3.79924 1.18 0.00135307 0.00123981 0.0960042 0.0881023 48 3013 23 6.95648e+06 188184 865456. 2994.66 6.85 0.561782 0.503515 28354 207349 -1 2586 21 1951 3485 346305 68574 4.33406 4.33406 -153.19 -4.33406 0 0 1.05005e+06 3633.38 0.35 0.18 0.36 -1 -1 0.35 0.0626458 0.0561033 77 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 9.79 vpr 56.24 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30212 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 17.9 MiB 1.05 742 12512 4241 5927 2344 56.6 MiB 0.17 0.00 3.1116 -112.527 -3.1116 3.1116 1.09 0.0013258 0.00121388 0.0840633 0.0769803 40 2297 45 6.95648e+06 419795 706193. 2443.58 3.75 0.417533 0.374817 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.34 0.18 0.28 -1 -1 0.34 0.0737225 0.0662994 87 94 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.89 vpr 55.84 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 17.9 MiB 0.73 1062 15584 5717 7278 2589 56.5 MiB 0.23 0.00 4.46104 -158.567 -4.46104 4.46104 1.10 0.00137337 0.00125931 0.117262 0.107455 50 2979 31 6.99608e+06 323745 902133. 3121.57 3.60 0.431744 0.388178 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0412321 0.0367847 130 96 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 9.78 vpr 55.82 MiB 0.06 7264 -1 -1 1 0.03 -1 -1 30596 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 17.8 MiB 1.39 1018 13610 5732 7207 671 56.5 MiB 0.20 0.00 4.50158 -148.332 -4.50158 4.50158 1.08 0.00128938 0.00118143 0.102219 0.093741 54 3118 36 6.99608e+06 294314 949917. 3286.91 7.08 0.554204 0.496926 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.36 0.15 0.21 -1 -1 0.36 0.0527242 0.0476024 117 91 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 8.21 vpr 55.84 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30268 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 17.3 MiB 1.01 1040 13610 5701 7488 421 56.2 MiB 0.19 0.00 3.59279 -128.627 -3.59279 3.59279 1.14 0.0012387 0.00113636 0.0987332 0.0906087 46 2926 28 6.99608e+06 264882 828058. 2865.25 6.02 0.497392 0.446337 28066 200906 -1 2312 22 1747 2063 162737 34627 4.13566 4.13566 -142.913 -4.13566 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0542072 0.0488594 106 65 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 8.33 vpr 55.64 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 17.4 MiB 0.71 806 14444 6101 7602 741 56.0 MiB 0.20 0.00 3.79615 -125.537 -3.79615 3.79615 1.09 0.00114872 0.00105499 0.101306 0.0930462 40 2767 26 6.99608e+06 264882 706193. 2443.58 4.36 0.364531 0.328143 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0504752 0.0454288 89 34 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.67 vpr 55.84 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 17.7 MiB 0.61 871 12416 4669 6393 1354 56.5 MiB 0.19 0.00 4.27644 -154.345 -4.27644 4.27644 1.12 0.00126178 0.0011576 0.0966609 0.0887407 56 2565 50 6.99608e+06 220735 973134. 3367.25 4.24 0.433776 0.389246 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.38 0.16 0.42 -1 -1 0.38 0.0615922 0.0555374 93 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 10.99 vpr 56.23 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30200 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 17.7 MiB 0.61 1298 16069 5589 8587 1893 56.4 MiB 0.23 0.00 3.60699 -134.626 -3.60699 3.60699 1.11 0.00129625 0.00118866 0.102142 0.0936983 48 3162 26 6.99608e+06 441471 865456. 2994.66 7.35 0.590646 0.529705 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.34 0.16 0.34 -1 -1 0.34 0.0571622 0.0515038 117 64 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 9.94 vpr 55.44 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 17.0 MiB 1.27 620 8289 3348 4414 527 55.6 MiB 0.10 0.00 3.30124 -103.988 -3.30124 3.30124 1.09 0.000919508 0.000843935 0.0521139 0.0478907 44 2016 40 6.99608e+06 220735 787024. 2723.27 5.97 0.411271 0.365865 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0402531 0.0360636 68 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.75 vpr 55.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30056 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.0 MiB 0.48 708 9368 3795 5080 493 55.7 MiB 0.12 0.00 2.88485 -101.173 -2.88485 2.88485 1.09 0.00110469 0.00101433 0.0633039 0.0581989 46 2433 35 6.99608e+06 250167 828058. 2865.25 6.43 0.331858 0.297795 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0587588 0.0528301 77 4 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 9.94 vpr 55.56 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 17.4 MiB 2.64 865 11366 4429 5807 1130 56.0 MiB 0.15 0.00 3.3156 -116.953 -3.3156 3.3156 1.09 0.00107791 0.000986815 0.0767401 0.070279 44 2856 40 6.99608e+06 220735 787024. 2723.27 3.98 0.346343 0.309451 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0488772 0.0438366 96 85 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.78 vpr 55.75 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30188 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 0.71 668 10346 4043 5155 1148 55.9 MiB 0.09 0.00 3.58059 -133.895 -3.58059 3.58059 1.09 0.000390684 0.000352615 0.0267628 0.0242459 46 2113 26 6.99608e+06 191304 828058. 2865.25 6.47 0.412839 0.367365 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.047881 0.0430039 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 7.44 vpr 55.97 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 17.6 MiB 2.26 858 10835 4264 5113 1458 56.3 MiB 0.15 0.00 3.85932 -133.017 -3.85932 3.85932 1.11 0.00106629 0.000977287 0.0739569 0.0677759 44 2584 26 6.99608e+06 220735 787024. 2723.27 2.79 0.259398 0.232732 27778 195446 -1 2084 20 1700 2299 199472 41488 3.792 3.792 -141.165 -3.792 0 0 997811. 3452.63 0.34 0.11 0.32 -1 -1 0.34 0.042807 0.0384646 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.85 vpr 55.64 MiB 0.11 6808 -1 -1 1 0.58 -1 -1 30140 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 17.6 MiB 0.78 1078 12030 4277 6214 1539 56.4 MiB 0.16 0.00 3.0712 -121.401 -3.0712 3.0712 1.03 0.00107108 0.000980409 0.0809159 0.0741417 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.17 0.283352 0.252944 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0501693 0.0449205 91 65 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.38 vpr 55.75 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30476 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 17.5 MiB 0.93 883 7132 1837 4428 867 56.2 MiB 0.13 0.00 3.50359 -126.552 -3.50359 3.50359 0.97 0.00125687 0.00115256 0.0564183 0.0518336 50 2388 31 6.99608e+06 235451 902133. 3121.57 3.13 0.329659 0.296043 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.35 0.13 0.35 -1 -1 0.35 0.0588242 0.0529547 101 58 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 12.05 vpr 56.18 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30508 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1134 14123 4441 7724 1958 56.5 MiB 0.21 0.00 4.28564 -153.93 -4.28564 4.28564 1.08 0.00132139 0.00121219 0.107746 0.0989315 48 3127 38 6.99608e+06 279598 865456. 2994.66 20.10 0.772486 0.692246 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0641816 0.0578181 112 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.92 vpr 55.31 MiB 0.06 6980 -1 -1 1 0.03 -1 -1 30708 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 17.1 MiB 2.14 572 11293 4723 5996 574 55.7 MiB 0.13 0.00 2.92195 -96.6009 -2.92195 2.92195 1.09 0.000935853 0.000858475 0.069851 0.064104 40 1775 30 6.99608e+06 206020 706193. 2443.58 13.31 0.518779 0.460699 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0389886 0.0349457 67 29 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.84 vpr 56.14 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 17.9 MiB 2.08 1040 13324 4763 6768 1793 56.6 MiB 0.20 0.00 3.68279 -132.173 -3.68279 3.68279 1.11 0.0013045 0.00119517 0.104538 0.0958138 50 2876 28 6.99608e+06 235451 902133. 3121.57 19.10 0.604371 0.540796 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0630874 0.0567631 106 63 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.84 vpr 55.86 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1122 6731 1649 4394 688 56.2 MiB 0.11 0.00 3.32994 -131.897 -3.32994 3.32994 1.11 0.00126208 0.00115824 0.0518488 0.0476198 38 3062 22 6.99608e+06 250167 678818. 2348.85 4.98 0.322564 0.289342 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0504062 0.0454715 99 57 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 9.19 vpr 55.89 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30292 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 17.6 MiB 0.67 871 13856 5887 7726 243 56.4 MiB 0.20 0.00 3.39034 -128.572 -3.39034 3.39034 1.12 0.00111472 0.00102214 0.0972887 0.0892205 44 3195 31 6.99608e+06 206020 787024. 2723.27 3.03 0.34649 0.310362 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0446146 0.0401006 91 65 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.80 vpr 55.17 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30172 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 16.6 MiB 2.07 536 9041 3932 4796 313 55.2 MiB 0.10 0.00 2.34646 -88.6787 -2.34646 2.34646 1.10 0.000790368 0.000724261 0.049027 0.0449334 36 1652 38 6.99608e+06 161872 648988. 2245.63 2.63 0.231471 0.205412 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.30 0.07 0.25 -1 -1 0.30 0.0319045 0.0285327 56 34 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.12 vpr 55.82 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 1018 11532 3380 6660 1492 56.2 MiB 0.16 0.00 3.58639 -133.629 -3.58639 3.58639 1.11 0.00108586 0.000994843 0.0773672 0.0708984 40 2527 22 6.99608e+06 220735 706193. 2443.58 3.18 0.309191 0.276912 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.32 0.14 0.30 -1 -1 0.32 0.0520569 0.0467271 91 64 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.33 vpr 55.84 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 17.5 MiB 0.51 1089 12759 4547 6573 1639 56.4 MiB 0.17 0.00 4.04748 -146.851 -4.04748 4.04748 1.11 0.00122108 0.00112036 0.0862787 0.0793035 46 2738 33 6.99608e+06 338461 828058. 2865.25 6.30 0.498576 0.44751 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.33 0.13 0.34 -1 -1 0.33 0.0536176 0.0483271 97 34 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 12.98 vpr 55.88 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30636 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 18.0 MiB 1.30 1280 15206 4884 7262 3060 56.5 MiB 0.23 0.00 4.01908 -141.768 -4.01908 4.01908 1.09 0.00143224 0.00130991 0.119131 0.109406 46 3184 26 6.99608e+06 323745 828058. 2865.25 6.35 0.603976 0.541522 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.35 0.14 0.33 -1 -1 0.35 0.0620097 0.0557058 138 124 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.85 vpr 55.32 MiB 0.03 6776 -1 -1 1 0.04 -1 -1 30572 -1 -1 15 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 16.8 MiB 0.72 401 7217 2934 3827 456 55.4 MiB 0.07 0.00 2.7074 -79.2163 -2.7074 2.7074 1.09 0.000686446 0.000627258 0.0346819 0.0317254 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.72 0.166708 0.147935 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.28 0.06 0.25 -1 -1 0.28 0.023085 0.0206384 52 30 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.98 vpr 55.57 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 17.1 MiB 0.81 698 9036 3669 4978 389 55.8 MiB 0.13 0.00 3.97238 -133.231 -3.97238 3.97238 1.10 0.00117027 0.00107565 0.0687781 0.0632065 54 2240 31 6.99608e+06 176588 949917. 3286.91 3.56 0.333423 0.299671 29506 232905 -1 1677 21 1598 2534 192423 45363 3.87582 3.87582 -138.421 -3.87582 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0484017 0.0436273 75 3 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 6.31 vpr 54.91 MiB 0.04 6732 -1 -1 1 0.03 -1 -1 30376 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.8 MiB 0.23 736 9906 3603 5031 1272 55.3 MiB 0.10 0.00 2.06111 -84.6894 -2.06111 2.06111 1.09 0.000723153 0.000661638 0.050482 0.0462583 34 1682 40 6.99608e+06 117725 618332. 2139.56 2.10 0.222681 0.198317 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.27 0.08 0.26 -1 -1 0.27 0.0325348 0.0290661 44 3 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.47 vpr 55.55 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 17.4 MiB 1.25 836 12681 5269 6945 467 56.4 MiB 0.20 0.00 3.87925 -141.78 -3.87925 3.87925 1.08 0.00125456 0.00115165 0.103862 0.0955911 44 3391 42 6.99608e+06 250167 787024. 2723.27 3.48 0.36852 0.332156 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.33 0.15 0.34 -1 -1 0.33 0.0566662 0.0511474 95 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.62 vpr 55.82 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30104 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.4 MiB 0.30 1064 14375 4737 7721 1917 56.2 MiB 0.17 0.00 2.93295 -116.62 -2.93295 2.93295 1.11 0.00116536 0.00106972 0.084381 0.0775432 40 2476 21 6.99608e+06 412039 706193. 2443.58 6.32 0.580802 0.520929 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0566841 0.0515721 87 3 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 11.97 vpr 56.00 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30592 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58020 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1077 13105 3562 8179 1364 56.7 MiB 0.20 0.00 3.82425 -139.818 -3.82425 3.82425 1.08 0.00131552 0.00120708 0.0966411 0.0887209 46 3235 48 6.99608e+06 309029 828058. 2865.25 7.05 0.599409 0.537701 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0517736 0.0467441 115 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.38 vpr 55.73 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30164 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 17.2 MiB 1.23 701 9397 3869 5271 257 55.9 MiB 0.13 0.00 2.9841 -107.493 -2.9841 2.9841 1.11 0.00100161 0.000918746 0.0628261 0.057695 40 2056 26 6.99608e+06 161872 706193. 2443.58 5.37 0.390453 0.348049 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0420966 0.0377777 72 34 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 10.09 vpr 55.45 MiB 0.05 6872 -1 -1 1 0.03 -1 -1 30236 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 17.3 MiB 7.13 650 7975 2399 4401 1175 56.0 MiB 0.12 0.00 3.55679 -118.022 -3.55679 3.55679 1.12 0.0010031 0.000915706 0.0591108 0.0543738 46 2056 46 6.99608e+06 191304 828058. 2865.25 4.99 0.311063 0.278063 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0439002 0.0393745 73 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.89 vpr 55.70 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30312 -1 -1 15 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 16.8 MiB 1.12 739 7975 3247 4371 357 55.5 MiB 0.10 0.00 3.69125 -116.127 -3.69125 3.69125 1.09 0.000948807 0.000870271 0.0507994 0.0465874 38 2264 33 6.99608e+06 220735 678818. 2348.85 5.12 0.336816 0.299227 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.038303 0.0343625 72 34 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.70 vpr 55.54 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30404 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.9 MiB 0.25 696 7204 2957 4121 126 55.6 MiB 0.10 0.00 2.86245 -113.51 -2.86245 2.86245 1.09 0.00100592 0.000923228 0.049861 0.0458494 42 2358 35 6.99608e+06 147157 744469. 2576.02 5.71 0.396965 0.354561 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.33 0.11 0.30 -1 -1 0.33 0.0389132 0.0350312 64 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.52 vpr 55.63 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 17.3 MiB 0.71 709 9540 3934 5278 328 55.8 MiB 0.12 0.00 2.94395 -107.519 -2.94395 2.94395 1.09 0.00102557 0.000939593 0.0619531 0.0568492 46 2091 24 6.99608e+06 220735 828058. 2865.25 3.55 0.251558 0.224996 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.35 0.09 0.33 -1 -1 0.35 0.0414756 0.0373035 77 34 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 9.60 vpr 55.51 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30148 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 17.3 MiB 2.91 930 10835 4554 5858 423 56.2 MiB 0.14 0.00 2.88685 -103.645 -2.88685 2.88685 1.09 0.00102129 0.000935776 0.0712239 0.0652874 36 2556 47 6.99608e+06 235451 648988. 2245.63 2.94 0.282334 0.252721 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0415524 0.0373117 86 61 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.90 vpr 55.91 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30444 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 17.8 MiB 1.05 1138 15273 6065 7495 1713 56.5 MiB 0.26 0.00 3.90815 -143.373 -3.90815 3.90815 1.10 0.00141808 0.00130268 0.132468 0.121854 46 3798 44 6.99608e+06 294314 828058. 2865.25 32.17 0.806265 0.724084 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0622822 0.0562618 106 29 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 10.58 vpr 56.20 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 1.05 999 10762 3395 5388 1979 56.3 MiB 0.17 0.00 4.20458 -152.083 -4.20458 4.20458 1.13 0.00130309 0.00119431 0.0830164 0.0761784 54 3189 47 6.99608e+06 264882 949917. 3286.91 4.68 0.406678 0.36491 29506 232905 -1 2202 20 2117 2841 248515 55676 3.94235 3.94235 -153.962 -3.94235 0 0 1.17392e+06 4061.99 0.37 0.14 0.39 -1 -1 0.37 0.052728 0.0476284 110 65 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.40 vpr 55.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30468 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 0.85 1070 8867 2185 5933 749 56.1 MiB 0.12 0.00 3.49385 -125.494 -3.49385 3.49385 1.08 0.00110703 0.00101456 0.0618238 0.0566638 38 2592 37 6.99608e+06 235451 678818. 2348.85 3.62 0.322592 0.288187 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.30 0.11 0.27 -1 -1 0.30 0.0498874 0.0448488 99 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 9.72 vpr 56.02 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 17.8 MiB 0.88 1182 9006 2249 6265 492 56.4 MiB 0.14 0.00 3.66135 -134.693 -3.66135 3.66135 1.10 0.00126327 0.00115836 0.0685946 0.0629774 40 2955 30 6.99608e+06 264882 706193. 2443.58 3.12 0.357525 0.321082 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.051408 0.0463459 105 64 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 10.99 vpr 56.19 MiB 0.06 7320 -1 -1 1 0.03 -1 -1 30456 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58000 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 18.3 MiB 1.14 1281 17663 7641 9474 548 56.6 MiB 0.26 0.00 4.62587 -160.146 -4.62587 4.62587 1.11 0.00140858 0.00129033 0.135493 0.124153 48 3305 25 6.99608e+06 338461 865456. 2994.66 6.76 0.624617 0.559363 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0655247 0.0588948 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 11.57 vpr 56.24 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 17.5 MiB 3.19 1159 10762 4075 5172 1515 56.2 MiB 0.19 0.00 4.92973 -159.817 -4.92973 4.92973 1.09 0.00131395 0.00120503 0.0908716 0.0836392 44 3431 27 6.99608e+06 279598 787024. 2723.27 3.15 0.321781 0.289974 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0599656 0.0540845 117 90 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.75 vpr 56.12 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30352 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57920 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 17.9 MiB 2.16 1059 13763 5785 7510 468 56.6 MiB 0.20 0.00 3.58185 -130.714 -3.58185 3.58185 1.10 0.00125597 0.0011451 0.0909089 0.0831004 46 2920 39 6.99608e+06 294314 828058. 2865.25 4.30 0.399842 0.358923 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0559714 0.0504833 107 64 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 9.59 vpr 55.60 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.8 MiB 0.92 1271 6556 1686 3783 1087 56.5 MiB 0.11 0.00 3.81927 -146.587 -3.81927 3.81927 1.08 0.00130702 0.00120018 0.0524386 0.0482024 40 3290 49 6.99608e+06 250167 706193. 2443.58 5.70 0.388172 0.347709 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.30 0.22 0.28 -1 -1 0.30 0.06687 0.0601346 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.15 vpr 56.40 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58052 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 18.2 MiB 1.93 1530 16529 5778 8459 2292 56.7 MiB 0.28 0.00 4.81093 -174.639 -4.81093 4.81093 1.08 0.00157935 0.00144733 0.142753 0.130935 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.72 0.459862 0.414571 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.33 0.21 0.33 -1 -1 0.33 0.0772453 0.069724 139 96 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.49 vpr 55.42 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 0.87 802 9996 3771 4383 1842 55.6 MiB 0.13 0.00 3.1395 -118.304 -3.1395 3.1395 1.09 0.00102956 0.000944636 0.0674647 0.0619769 44 2051 29 6.99608e+06 191304 787024. 2723.27 4.89 0.401166 0.358123 27778 195446 -1 1628 20 1398 1706 120876 25222 3.03987 3.03987 -121.096 -3.03987 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0417615 0.0375525 75 34 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 8.61 vpr 55.93 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30316 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 17.5 MiB 0.69 1237 14606 4845 8003 1758 56.2 MiB 0.23 0.00 4.54014 -162.571 -4.54014 4.54014 1.13 0.0012797 0.00117452 0.11096 0.101883 44 3549 35 6.99608e+06 264882 787024. 2723.27 5.20 0.415929 0.374329 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0582224 0.0525379 106 64 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.22 vpr 55.81 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30712 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 17.6 MiB 1.17 1279 13077 3808 7089 2180 56.4 MiB 0.20 0.00 3.54953 -133.609 -3.54953 3.54953 1.10 0.00127799 0.00117197 0.0958621 0.0880649 46 3226 21 6.99608e+06 294314 828058. 2865.25 6.15 0.473528 0.424907 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.051663 0.0466231 108 63 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 9.38 vpr 55.78 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.82 797 9368 3826 5299 243 56.0 MiB 0.15 0.00 3.54729 -133.832 -3.54729 3.54729 1.09 0.00120343 0.0010955 0.0718829 0.0660808 46 2734 24 6.99608e+06 191304 828058. 2865.25 6.55 0.467082 0.418585 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.34 0.11 0.33 -1 -1 0.34 0.0434728 0.0391414 77 3 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 8.83 vpr 56.04 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30332 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 17.8 MiB 1.28 1139 10883 2905 7208 770 56.5 MiB 0.17 0.00 3.32994 -127.882 -3.32994 3.32994 1.09 0.0013209 0.00120489 0.084156 0.0771482 46 3143 36 6.99608e+06 279598 828058. 2865.25 6.11 0.505078 0.451281 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0513786 0.0460928 120 96 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.76 vpr 55.85 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 17.5 MiB 0.79 1139 12528 3436 7246 1846 56.2 MiB 0.09 0.00 3.59669 -136.453 -3.59669 3.59669 0.74 0.000478201 0.00043323 0.0350698 0.0317967 40 3651 35 6.99608e+06 294314 706193. 2443.58 5.81 0.341654 0.305533 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0566059 0.0510656 106 61 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 12.42 vpr 56.17 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58008 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1314 14431 4781 7561 2089 56.6 MiB 0.22 0.00 3.61639 -141.899 -3.61639 3.61639 1.09 0.00132587 0.00121602 0.110256 0.101117 40 3393 43 6.99608e+06 250167 706193. 2443.58 20.56 0.740471 0.663852 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0597878 0.0539029 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.76 vpr 55.55 MiB 0.06 6996 -1 -1 1 0.03 -1 -1 30564 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 17.5 MiB 0.97 813 11432 3614 6147 1671 56.4 MiB 0.17 0.00 3.93015 -141.517 -3.93015 3.93015 1.09 0.00124684 0.00114438 0.086312 0.0793313 48 3063 38 6.99608e+06 235451 865456. 2994.66 5.09 0.385488 0.346589 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.34 0.17 0.35 -1 -1 0.34 0.0587326 0.0529157 94 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.72 vpr 55.68 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30672 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.94 930 14500 5516 6956 2028 56.4 MiB 0.21 0.00 3.81585 -138.808 -3.81585 3.81585 1.08 0.00130401 0.00119614 0.110078 0.101014 44 3517 47 6.99608e+06 264882 787024. 2723.27 4.33 0.440197 0.395985 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.33 0.14 0.33 -1 -1 0.33 0.0575743 0.0519804 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 11.05 vpr 56.06 MiB 0.06 7296 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 18.1 MiB 1.44 1399 14035 5589 6713 1733 56.4 MiB 0.22 0.00 3.97768 -141.845 -3.97768 3.97768 1.11 0.00138125 0.00126713 0.109254 0.100099 44 3778 32 6.99608e+06 323745 787024. 2723.27 3.87 0.406637 0.364578 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0559858 0.0504197 132 122 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 10.01 vpr 56.21 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.9 MiB 1.13 1318 15273 5215 8174 1884 56.4 MiB 0.24 0.00 3.73195 -141.182 -3.73195 3.73195 1.09 0.00138991 0.00127386 0.119416 0.109421 40 3892 28 6.99608e+06 294314 706193. 2443.58 6.08 0.428633 0.385263 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.30 0.26 0.29 -1 -1 0.30 0.0798056 0.0716808 126 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.93 vpr 55.21 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30700 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 17.3 MiB 0.57 921 12528 4814 6023 1691 56.0 MiB 0.17 0.00 2.98795 -120.412 -2.98795 2.98795 1.12 0.00103956 0.000953572 0.0818745 0.0751365 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.97 0.271892 0.244388 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0467548 0.0420776 80 34 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 8.59 vpr 55.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 17.8 MiB 0.87 1095 11776 4100 5415 2261 56.4 MiB 0.17 0.00 3.80663 -140.003 -3.80663 3.80663 1.09 0.00116145 0.00106237 0.0829914 0.0760441 46 2887 24 6.99608e+06 235451 828058. 2865.25 6.47 0.461377 0.412195 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.048829 0.0439049 108 94 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.37 vpr 56.22 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30868 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 18.2 MiB 0.89 1231 15273 6501 8321 451 56.6 MiB 0.25 0.00 4.57343 -162.846 -4.57343 4.57343 1.08 0.00151537 0.00139149 0.130643 0.120088 54 3744 47 6.99608e+06 294314 949917. 3286.91 7.99 0.755733 0.678759 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.37 0.21 0.41 -1 -1 0.37 0.0764211 0.0689724 126 65 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 9.70 vpr 56.07 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.64 1100 10916 2969 6188 1759 56.4 MiB 0.17 0.00 3.58059 -138.842 -3.58059 3.58059 1.14 0.00123678 0.00113522 0.0824364 0.0757937 40 2715 36 6.99608e+06 235451 706193. 2443.58 3.60 0.371054 0.33376 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0559143 0.050395 93 34 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 9.60 vpr 55.47 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 17.5 MiB 0.75 716 11804 3687 5992 2125 55.9 MiB 0.14 0.00 3.75245 -123.293 -3.75245 3.75245 1.08 0.00100318 0.000919479 0.0655237 0.06013 44 2072 24 6.99608e+06 353176 787024. 2723.27 5.38 0.384206 0.343123 27778 195446 -1 1643 19 1404 2036 156733 34754 3.38681 3.38681 -125.581 -3.38681 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0391843 0.0352479 80 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 13.62 vpr 56.39 MiB 0.03 7460 -1 -1 1 0.04 -1 -1 30916 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58256 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 18.6 MiB 0.92 1504 15883 5797 7858 2228 56.9 MiB 0.28 0.00 5.34997 -188.353 -5.34997 5.34997 1.11 0.00162711 0.00149377 0.137737 0.126475 48 4489 33 6.99608e+06 353176 865456. 2994.66 4.57 0.519448 0.468031 28354 207349 -1 3556 27 4154 5142 574739 139988 6.44269 6.44269 -224.607 -6.44269 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0844685 0.07608 159 127 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 9.25 vpr 55.96 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30440 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.72 938 15044 6550 8115 379 56.4 MiB 0.23 0.00 4.27644 -157.663 -4.27644 4.27644 0.81 0.00125476 0.00115106 0.122022 0.111893 48 2674 27 6.99608e+06 235451 865456. 2994.66 6.58 0.555158 0.498799 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0545958 0.0492722 92 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.28 vpr 55.27 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 660 12763 5275 7138 350 55.8 MiB 0.15 0.00 2.98775 -114.509 -2.98775 2.98775 1.09 0.00100004 0.000917958 0.0681153 0.0625514 46 2129 35 6.99608e+06 353176 828058. 2865.25 18.65 0.597141 0.532343 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0468107 0.0419938 70 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.67 vpr 55.95 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58024 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 17.7 MiB 0.74 1143 13432 5563 7207 662 56.7 MiB 0.22 0.00 4.46895 -161.038 -4.46895 4.46895 1.10 0.0014555 0.00133685 0.114117 0.104925 46 4011 41 6.99608e+06 264882 828058. 2865.25 7.68 0.46624 0.419987 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0639506 0.0577985 112 34 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 8.11 vpr 55.32 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30296 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.9 MiB 0.35 625 10614 4416 5947 251 55.6 MiB 0.14 0.00 2.85145 -111.794 -2.85145 2.85145 1.13 0.00100256 0.000920622 0.0713912 0.0655599 40 2195 42 6.99608e+06 147157 706193. 2443.58 3.76 0.316194 0.283253 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.32 0.12 0.29 -1 -1 0.32 0.0447992 0.0402007 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 9.23 vpr 55.49 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30056 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 17.1 MiB 0.72 755 9857 4076 5498 283 55.6 MiB 0.13 0.00 3.30794 -118.735 -3.30794 3.30794 1.11 0.00100483 0.000921768 0.0651403 0.0598114 44 2377 21 6.99608e+06 220735 787024. 2723.27 2.97 0.281302 0.252129 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0435416 0.0390516 74 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 12.15 vpr 56.07 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30328 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57860 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 17.8 MiB 1.71 1003 15481 6003 6865 2613 56.5 MiB 0.22 0.00 3.85703 -126.704 -3.85703 3.85703 1.13 0.00124658 0.00114234 0.113877 0.104432 46 3294 37 6.99608e+06 294314 828058. 2865.25 4.86 0.415269 0.372947 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0584932 0.0525913 113 88 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.53 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 1.02 1068 14144 5407 6800 1937 56.5 MiB 0.21 0.00 4.29664 -157.784 -4.29664 4.29664 1.09 0.0013267 0.00121802 0.108824 0.099966 48 2789 28 6.99608e+06 264882 865456. 2994.66 6.66 0.552943 0.496249 28354 207349 -1 2360 21 2516 3352 291577 61875 4.53561 4.53561 -172.239 -4.53561 0 0 1.05005e+06 3633.38 0.34 0.15 0.34 -1 -1 0.34 0.0563529 0.0509667 109 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 11.99 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30600 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 0.83 1151 6846 1472 4993 381 56.5 MiB 0.12 0.00 4.30354 -157.84 -4.30354 4.30354 1.08 0.00131959 0.00121202 0.0546038 0.0502083 44 3666 26 6.99608e+06 264882 787024. 2723.27 3.23 0.283229 0.254667 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.34 0.17 0.32 -1 -1 0.34 0.0569675 0.0513519 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.03 vpr 55.67 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30524 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 17.6 MiB 0.67 792 12585 5306 6906 373 56.5 MiB 0.17 0.00 3.44424 -128.433 -3.44424 3.44424 1.08 0.00111815 0.00102471 0.0868191 0.0795222 46 2594 31 6.99608e+06 220735 828058. 2865.25 4.73 0.346702 0.310678 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.36 0.13 0.33 -1 -1 0.36 0.0501909 0.0450386 92 65 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.85 vpr 55.74 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30456 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 17.5 MiB 2.35 885 11260 4668 6241 351 56.3 MiB 0.15 0.00 3.46644 -123.995 -3.46644 3.46644 1.09 0.00111357 0.00101939 0.0763824 0.0699881 44 3163 36 6.99608e+06 250167 787024. 2723.27 19.18 0.582993 0.519382 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.34 0.12 0.32 -1 -1 0.34 0.0452512 0.0406548 102 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.96 vpr 55.78 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 17.6 MiB 1.22 904 12506 5230 6653 623 56.6 MiB 0.19 0.00 3.42074 -117.96 -3.42074 3.42074 1.08 0.00121419 0.00111346 0.100462 0.092175 44 3198 37 6.99608e+06 279598 787024. 2723.27 4.39 0.389974 0.350521 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0527695 0.047621 101 60 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.13 vpr 55.68 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 17.2 MiB 0.67 824 9872 4064 5274 534 55.8 MiB 0.15 0.00 3.73195 -121.956 -3.73195 3.73195 1.08 0.0011094 0.00101838 0.076309 0.0701894 44 2539 27 6.99608e+06 264882 787024. 2723.27 6.18 0.503467 0.450379 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0518272 0.0465847 87 34 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 9.61 vpr 55.75 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 17.3 MiB 1.77 814 10672 3702 5165 1805 55.8 MiB 0.14 0.00 4.51934 -148.35 -4.51934 4.51934 1.09 0.00106162 0.000972754 0.0726021 0.066594 44 2874 44 6.99608e+06 220735 787024. 2723.27 4.09 0.338652 0.302641 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.044399 0.0398231 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 10.34 vpr 56.03 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1000 12585 4720 5647 2218 56.5 MiB 0.18 0.00 3.77345 -134.122 -3.77345 3.77345 1.08 0.00114121 0.00104451 0.0885777 0.0810978 46 3110 45 6.99608e+06 220735 828058. 2865.25 4.48 0.373038 0.333892 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0497567 0.0446605 104 91 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.86 vpr 55.84 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.6 MiB 0.18 808 15688 5217 8110 2361 56.2 MiB 0.21 0.00 3.76925 -134.079 -3.76925 3.76925 1.12 0.00116532 0.00107085 0.0965693 0.0887259 46 3039 46 6.99608e+06 367892 828058. 2865.25 6.02 0.40061 0.360064 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.29 0.07 0.17 -1 -1 0.29 0.0212761 0.0190044 86 4 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.46 vpr 56.08 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30728 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57972 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 17.8 MiB 0.69 1209 11281 3120 7720 441 56.6 MiB 0.18 0.00 4.19534 -154.628 -4.19534 4.19534 1.09 0.00131433 0.00120653 0.0884265 0.0811596 44 3513 23 6.99608e+06 250167 787024. 2723.27 3.90 0.353964 0.318661 27778 195446 -1 2754 24 2419 3189 274672 55034 4.82351 4.82351 -173.98 -4.82351 0 0 997811. 3452.63 0.34 0.16 0.32 -1 -1 0.34 0.0613436 0.0553035 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 12.90 vpr 56.00 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 17.8 MiB 0.65 1142 12364 5175 6807 382 56.7 MiB 0.19 0.00 5.12678 -171.348 -5.12678 5.12678 1.10 0.00131725 0.00120362 0.0950269 0.0871336 54 3283 29 6.99608e+06 264882 949917. 3286.91 5.41 0.473326 0.424988 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.38 0.15 0.42 -1 -1 0.38 0.0539089 0.0487243 108 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.81 vpr 56.07 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 17.8 MiB 0.68 1089 13788 4649 7550 1589 56.6 MiB 0.22 0.00 4.15408 -148.064 -4.15408 4.15408 1.11 0.00129245 0.00118469 0.104224 0.0955964 44 3953 47 6.99608e+06 264882 787024. 2723.27 30.00 0.71597 0.640939 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0545575 0.049231 107 65 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.42 vpr 55.51 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 17.3 MiB 0.77 692 12241 5462 6300 479 55.8 MiB 0.15 0.00 3.58339 -124.571 -3.58339 3.58339 1.09 0.00101181 0.000928751 0.0811137 0.0744342 48 2391 37 6.99608e+06 191304 865456. 2994.66 6.51 0.444323 0.396368 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.39 0.12 0.34 -1 -1 0.39 0.0405935 0.0364534 76 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.94 vpr 55.98 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 17.7 MiB 2.28 1070 13152 5486 7187 479 56.4 MiB 0.20 0.00 4.68713 -157.481 -4.68713 4.68713 1.11 0.00124908 0.00114657 0.0994205 0.0912977 46 3476 35 6.99608e+06 264882 828058. 2865.25 4.68 0.396501 0.356379 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0504418 0.0455439 105 63 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 10.06 vpr 55.89 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30916 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57876 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1372 11615 4190 5568 1857 56.5 MiB 0.18 0.00 4.17744 -155.5 -4.17744 4.17744 1.10 0.00143088 0.00131256 0.0915556 0.0839811 46 3391 25 6.99608e+06 323745 828058. 2865.25 4.33 0.406355 0.364614 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.33 0.14 0.36 -1 -1 0.33 0.0665943 0.0598407 139 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 12.96 vpr 55.93 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 17.7 MiB 1.44 1101 12733 5285 6817 631 56.3 MiB 0.18 0.00 4.35899 -150.667 -4.35899 4.35899 1.10 0.00132659 0.00121539 0.0948747 0.0869667 54 2946 36 6.99608e+06 323745 949917. 3286.91 7.38 0.637945 0.571876 29506 232905 -1 2087 21 2106 2410 180381 43349 4.43961 4.43961 -155.342 -4.43961 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0560547 0.0505797 125 94 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 12.87 vpr 56.23 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 17.8 MiB 2.64 1072 15456 6595 7994 867 56.5 MiB 0.22 0.00 4.1343 -135.415 -4.1343 4.1343 1.09 0.00126838 0.00116219 0.111079 0.101794 48 3698 50 6.99608e+06 323745 865456. 2994.66 7.07 0.447566 0.401982 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.37 0.19 0.34 -1 -1 0.37 0.0559297 0.0503455 114 92 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.22 vpr 55.96 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30624 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.8 MiB 1.02 1174 14500 5592 7226 1682 56.5 MiB 0.22 0.00 4.33244 -160.384 -4.33244 4.33244 1.10 0.00133302 0.00122438 0.111233 0.102043 46 3851 34 6.99608e+06 264882 828058. 2865.25 3.39 0.363667 0.327685 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.35 0.18 0.33 -1 -1 0.35 0.0576232 0.0520209 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.64 vpr 56.28 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30360 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57940 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 17.8 MiB 1.69 1070 11106 4662 5983 461 56.6 MiB 0.17 0.00 3.53179 -119.754 -3.53179 3.53179 1.09 0.00122326 0.00112113 0.0816893 0.0749196 38 3405 45 6.99608e+06 294314 678818. 2348.85 8.11 0.39088 0.350384 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.31 0.16 0.27 -1 -1 0.31 0.0561256 0.0505238 112 88 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.77 vpr 55.43 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 17.0 MiB 0.64 592 9684 3186 4658 1840 55.6 MiB 0.12 0.00 2.86245 -110.719 -2.86245 2.86245 1.08 0.00100016 0.000917325 0.0650541 0.0597612 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.80 0.288409 0.258378 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0450758 0.0404158 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 10.75 vpr 56.19 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.69 999 9872 3990 5501 381 56.5 MiB 0.15 0.00 4.9054 -173.166 -4.9054 4.9054 1.09 0.00131522 0.00120579 0.0767015 0.0704061 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 3.55 0.356097 0.319714 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.42 0.15 0.46 -1 -1 0.42 0.0622881 0.0561889 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 11.85 vpr 56.06 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 17.6 MiB 0.90 1203 7431 1958 4126 1347 56.4 MiB 0.12 0.00 4.63877 -167.295 -4.63877 4.63877 1.09 0.00131692 0.00120715 0.059911 0.0550389 44 3706 30 6.99608e+06 250167 787024. 2723.27 3.70 0.31488 0.283153 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.34 0.17 0.25 -1 -1 0.34 0.0600825 0.0541473 111 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.44 vpr 55.61 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 17.4 MiB 1.92 766 11324 4293 5664 1367 55.9 MiB 0.15 0.00 3.24452 -112.954 -3.24452 3.24452 1.09 0.00104213 0.000955185 0.0759857 0.0697207 52 2311 46 6.99608e+06 191304 926341. 3205.33 3.14 0.294294 0.263557 29218 227130 -1 1681 29 1656 1972 307039 128679 3.27646 3.27646 -116.799 -3.27646 0 0 1.14541e+06 3963.36 0.40 0.18 0.35 -1 -1 0.40 0.0562104 0.0502841 85 55 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.33 vpr 55.43 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30380 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 0.27 592 7514 3020 4270 224 55.4 MiB 0.10 0.00 3.0031 -111.146 -3.0031 3.0031 1.09 0.000972276 0.000891852 0.0502228 0.0461683 44 2109 28 6.99608e+06 161872 787024. 2723.27 5.59 0.380504 0.338464 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0440716 0.0395247 63 4 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.97 vpr 55.77 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 17.5 MiB 0.92 1014 12331 5131 6918 282 56.3 MiB 0.17 0.00 4.03648 -138.539 -4.03648 4.03648 1.09 0.00124537 0.00114292 0.0910826 0.0835815 40 2840 45 6.99608e+06 250167 706193. 2443.58 16.30 0.670272 0.599559 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.30 0.23 0.29 -1 -1 0.30 0.0728882 0.0655127 102 59 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 10.26 vpr 56.09 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 17.5 MiB 1.35 1077 13043 5447 7262 334 56.3 MiB 0.19 0.00 4.38874 -150.527 -4.38874 4.38874 1.08 0.00128167 0.00117433 0.096665 0.0885951 48 2878 41 6.99608e+06 279598 865456. 2994.66 3.85 0.411309 0.368999 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.39 0.22 0.36 -1 -1 0.39 0.0733195 0.0658584 115 88 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.71 vpr 55.93 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30520 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57712 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.7 MiB 0.41 981 8047 1739 5489 819 56.4 MiB 0.13 0.00 4.28063 -149.977 -4.28063 4.28063 1.09 0.00136992 0.00125958 0.057814 0.0531722 48 3128 28 6.99608e+06 397324 865456. 2994.66 6.93 0.523267 0.470595 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.36 0.18 0.34 -1 -1 0.36 0.0600127 0.0539861 100 3 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.43 vpr 55.66 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 17.6 MiB 0.98 884 14431 6074 7798 559 56.5 MiB 0.20 0.00 3.66815 -119.86 -3.66815 3.66815 1.09 0.00120224 0.00110295 0.102723 0.094263 40 3422 29 6.99608e+06 279598 706193. 2443.58 19.39 0.675763 0.604857 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0529506 0.0477304 101 59 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 8.93 vpr 55.25 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30596 -1 -1 16 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 17.0 MiB 1.25 589 11925 5033 6263 629 55.6 MiB 0.15 0.00 3.68305 -110.555 -3.68305 3.68305 1.09 0.000895784 0.000827925 0.0753146 0.0689761 40 1692 28 6.99608e+06 235451 706193. 2443.58 5.49 0.387982 0.345639 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0354722 0.0317432 67 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 13.92 vpr 56.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 18.1 MiB 0.85 1512 15151 5383 7381 2387 56.6 MiB 0.27 0.00 4.46404 -157.207 -4.46404 4.46404 1.09 0.00156463 0.0014367 0.132123 0.121326 54 3932 27 6.99608e+06 309029 949917. 3286.91 4.53 0.480224 0.432708 29506 232905 -1 3228 23 2653 3708 434053 80854 4.60891 4.60891 -163.196 -4.60891 0 0 1.17392e+06 4061.99 0.37 0.20 0.39 -1 -1 0.37 0.0705774 0.0636551 141 95 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 11.72 vpr 56.09 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 17.8 MiB 2.49 1389 9013 2681 4820 1512 56.3 MiB 0.15 0.00 4.97674 -167.764 -4.97674 4.97674 1.11 0.00139692 0.00128051 0.073319 0.0673562 42 3808 25 6.99608e+06 323745 744469. 2576.02 22.70 0.702382 0.626776 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.32 0.17 0.30 -1 -1 0.32 0.0617448 0.0556171 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.98 vpr 55.81 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 17.3 MiB 2.78 1031 11233 4729 6294 210 56.1 MiB 0.16 0.00 3.87693 -140.03 -3.87693 3.87693 1.08 0.0011251 0.00103005 0.0784349 0.0718619 46 3029 25 6.99608e+06 220735 828058. 2865.25 3.68 0.322219 0.288467 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0474342 0.042602 102 89 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.85 vpr 55.77 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 0.95 1034 14184 5996 7912 276 56.2 MiB 0.20 0.00 3.78975 -136.67 -3.78975 3.78975 1.09 0.00123141 0.0011307 0.10432 0.0958127 46 3037 39 6.99608e+06 235451 828058. 2865.25 6.50 0.540444 0.484988 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0551747 0.0497356 92 34 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.65 vpr 56.35 MiB 0.05 7216 -1 -1 1 0.04 -1 -1 30664 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 17.7 MiB 1.56 1068 13943 4857 7191 1895 56.6 MiB 0.22 0.00 3.9689 -135.877 -3.9689 3.9689 1.11 0.00145629 0.00133459 0.115502 0.106086 44 3217 23 6.99608e+06 294314 787024. 2723.27 5.72 0.477594 0.428077 27778 195446 -1 2448 21 2374 3214 252324 52621 3.92082 3.92082 -146.029 -3.92082 0 0 997811. 3452.63 0.34 0.08 0.32 -1 -1 0.34 0.0316143 0.0283813 117 64 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 9.07 vpr 55.92 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30436 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 17.6 MiB 1.12 1088 13788 5313 5928 2547 56.5 MiB 0.19 0.00 3.56069 -123.887 -3.56069 3.56069 1.09 0.00120931 0.00110905 0.0968444 0.0888445 36 3765 43 6.99608e+06 294314 648988. 2245.63 10.33 0.397195 0.356311 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.28 0.17 0.25 -1 -1 0.28 0.0568075 0.0511266 101 61 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.86 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30664 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1034 13906 5203 6656 2047 56.3 MiB 0.22 0.00 4.17744 -150.809 -4.17744 4.17744 1.10 0.00131173 0.0012033 0.108543 0.0996265 46 3490 34 6.99608e+06 250167 828058. 2865.25 6.53 0.42099 0.378431 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0532231 0.048072 107 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 12.68 vpr 56.23 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 17.7 MiB 0.78 1295 11830 3708 6867 1255 56.6 MiB 0.19 0.00 3.61179 -138.351 -3.61179 3.61179 1.09 0.00131497 0.00119858 0.0908284 0.0829396 44 3300 26 6.99608e+06 264882 787024. 2723.27 3.75 0.382391 0.343675 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0534193 0.0482926 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.71 vpr 55.50 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 17.0 MiB 1.10 714 7817 3113 4376 328 55.7 MiB 0.10 0.00 3.29694 -113.946 -3.29694 3.29694 1.08 0.000974812 0.000894743 0.0508927 0.0467315 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.19 0.237151 0.212087 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0410487 0.0368481 73 34 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.56 vpr 55.88 MiB 0.06 6944 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 17.4 MiB 2.38 796 13192 4518 6301 2373 56.1 MiB 0.17 0.00 3.75163 -124.237 -3.75163 3.75163 1.09 0.00106486 0.000974075 0.088051 0.0806093 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.96 0.298667 0.267226 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0491895 0.0441805 91 82 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 9.61 vpr 55.55 MiB 0.06 6956 -1 -1 1 0.04 -1 -1 30476 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 17.4 MiB 0.63 1104 8164 1792 5984 388 56.3 MiB 0.13 0.00 3.79614 -138.31 -3.79614 3.79614 1.13 0.00126084 0.00116182 0.0634551 0.0585239 38 3147 50 6.99608e+06 250167 678818. 2348.85 5.53 0.367907 0.330352 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.30 0.14 0.27 -1 -1 0.30 0.0572325 0.0515628 92 34 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 8.08 vpr 55.55 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 17.1 MiB 1.54 924 11813 4851 6237 725 55.7 MiB 0.15 0.00 3.23604 -112.025 -3.23604 3.23604 1.14 0.000969957 0.000887119 0.0732954 0.0671676 38 2436 26 6.99608e+06 235451 678818. 2348.85 3.79 0.273534 0.244306 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0458066 0.0409725 81 56 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 8.78 vpr 55.50 MiB 0.05 6832 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 17.4 MiB 0.71 800 12628 5339 6973 316 56.0 MiB 0.16 0.00 3.56959 -131.903 -3.56959 3.56959 1.08 0.00106811 0.000980425 0.0856997 0.0786217 44 2487 30 6.99608e+06 191304 787024. 2723.27 3.48 0.323283 0.289865 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0374563 0.033755 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 8.65 vpr 55.95 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30580 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57948 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 17.6 MiB 1.20 964 11296 3574 5293 2429 56.6 MiB 0.17 0.00 4.06828 -143.162 -4.06828 4.06828 1.09 0.00126817 0.00116073 0.0840498 0.0770325 40 3214 32 6.99608e+06 279598 706193. 2443.58 4.83 0.372558 0.334568 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.055115 0.0497059 105 64 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.68 vpr 55.47 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30448 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 2.24 694 11756 4613 5996 1147 55.7 MiB 0.15 0.00 3.23724 -109.795 -3.23724 3.23724 1.11 0.00102562 0.000939892 0.0782487 0.0716974 48 2270 42 6.99608e+06 191304 865456. 2994.66 4.09 0.330206 0.29531 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0421999 0.0378294 81 55 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.12 vpr 56.08 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 17.7 MiB 1.53 911 15034 6476 7971 587 56.6 MiB 0.20 0.00 3.61105 -126.923 -3.61105 3.61105 1.08 0.0012541 0.00115098 0.108868 0.0999116 52 2649 36 6.99608e+06 264882 926341. 3205.33 19.31 0.662975 0.593472 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.37 0.13 0.39 -1 -1 0.37 0.0530494 0.0478806 103 65 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 12.63 vpr 56.36 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 17.9 MiB 0.89 1135 16081 6006 7648 2427 56.4 MiB 0.12 0.00 4.67827 -157.924 -4.67827 4.67827 1.09 0.000504862 0.000457017 0.0462976 0.0419877 44 3513 45 6.99608e+06 323745 787024. 2723.27 4.33 0.345067 0.308621 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.33 0.14 0.35 -1 -1 0.33 0.0568765 0.0517319 123 93 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 11.01 vpr 55.96 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 17.5 MiB 2.45 1185 10050 2506 6241 1303 56.3 MiB 0.13 0.00 3.59004 -135.268 -3.59004 3.59004 1.09 0.00108283 0.000992064 0.067544 0.0619543 38 3007 50 6.99608e+06 220735 678818. 2348.85 16.21 0.531274 0.473341 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0438396 0.0394054 88 61 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.84 vpr 55.55 MiB 0.06 6864 -1 -1 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 17.5 MiB 0.72 844 13856 5698 7170 988 56.0 MiB 0.18 0.00 3.30794 -123.058 -3.30794 3.30794 1.08 0.00110124 0.00100834 0.0952684 0.087315 46 2571 29 6.99608e+06 206020 828058. 2865.25 6.34 0.447426 0.400056 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.049885 0.044756 91 63 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.42 vpr 55.48 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30720 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1239 11118 3579 5407 2132 56.4 MiB 0.17 0.00 3.81515 -143.501 -3.81515 3.81515 1.11 0.00130439 0.00119748 0.0853355 0.0783935 46 2851 29 6.99608e+06 264882 828058. 2865.25 6.24 0.550503 0.493564 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0566725 0.0511179 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.85 vpr 55.98 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 17.4 MiB 1.52 913 9160 3758 4976 426 56.4 MiB 0.14 0.00 3.41124 -117.262 -3.41124 3.41124 1.09 0.00119741 0.00109744 0.0655974 0.0602333 38 3163 50 6.99608e+06 309029 678818. 2348.85 6.72 0.380948 0.341376 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0520233 0.0467929 101 62 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 13.15 vpr 56.34 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57980 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.2 MiB 0.78 1399 13316 4006 7788 1522 56.6 MiB 0.22 0.00 4.54237 -164.626 -4.54237 4.54237 1.09 0.00144941 0.0013279 0.106215 0.0973627 38 4423 46 6.99608e+06 323745 678818. 2348.85 4.02 0.419894 0.376876 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0626403 0.0564506 140 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.64 vpr 55.46 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 17.1 MiB 0.89 486 10149 3821 5138 1190 55.6 MiB 0.12 0.00 2.81885 -95.7056 -2.81885 2.81885 1.09 0.000921198 0.000844854 0.0636403 0.0584464 48 1604 38 6.99608e+06 161872 865456. 2994.66 12.73 0.483724 0.429932 28354 207349 -1 1346 20 1093 1651 144110 34639 3.02157 3.02157 -111.693 -3.02157 0 0 1.05005e+06 3633.38 0.36 0.09 0.34 -1 -1 0.36 0.0372911 0.0334475 57 4 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 10.08 vpr 56.43 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 17.7 MiB 2.59 1299 14303 5218 6688 2397 56.2 MiB 0.21 0.00 4.76923 -166.635 -4.76923 4.76923 1.11 0.0013275 0.00121754 0.109685 0.100627 46 3535 24 6.99608e+06 279598 828058. 2865.25 6.32 0.569835 0.511168 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0538762 0.0486808 118 92 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 10.74 vpr 56.22 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1244 15216 5143 8703 1370 56.6 MiB 0.24 0.00 4.66407 -173.875 -4.66407 4.66407 1.11 0.00119444 0.00109347 0.117626 0.107891 44 3377 41 6.99608e+06 235451 787024. 2723.27 3.47 0.34527 0.310512 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0536323 0.0481815 110 96 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 10.02 vpr 55.92 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57924 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 17.8 MiB 0.81 1129 13403 5326 6238 1839 56.6 MiB 0.20 0.00 3.33684 -128.417 -3.33684 3.33684 1.10 0.00130031 0.0011926 0.100638 0.0923657 38 3758 46 6.99608e+06 279598 678818. 2348.85 19.47 0.722978 0.647976 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.30 0.27 0.28 -1 -1 0.30 0.0822478 0.0738117 106 65 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 11.51 vpr 56.23 MiB 0.05 7272 -1 -1 1 0.04 -1 -1 30780 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 18.1 MiB 0.73 1500 14261 4373 7976 1912 56.6 MiB 0.23 0.00 4.89654 -177.942 -4.89654 4.89654 1.09 0.00157061 0.00144169 0.123023 0.112988 44 4144 38 6.99608e+06 323745 787024. 2723.27 6.14 0.688876 0.618846 27778 195446 -1 3101 23 2911 3336 281290 56419 5.48635 5.48635 -193.082 -5.48635 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0718545 0.0648849 140 96 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.73 vpr 55.17 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30120 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 16.9 MiB 1.95 577 8449 3482 4728 239 55.5 MiB 0.09 0.00 2.75275 -95.2487 -2.75275 2.75275 1.08 0.000820825 0.000750605 0.0459407 0.0420302 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.45 0.224324 0.198957 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.29 0.08 0.25 -1 -1 0.29 0.034375 0.0306165 65 56 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.42 vpr 55.72 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 17.0 MiB 2.87 870 9516 3877 5353 286 55.8 MiB 0.12 0.00 3.41559 -121.499 -3.41559 3.41559 1.09 0.00101691 0.000932178 0.0649211 0.0596276 34 2262 25 6.99608e+06 206020 618332. 2139.56 3.04 0.284882 0.254656 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0355179 0.0319476 72 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 8.79 vpr 55.56 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 0.30 764 10316 3722 4683 1911 55.8 MiB 0.15 0.00 3.37904 -128.379 -3.37904 3.37904 1.10 0.00107167 0.000982807 0.0745767 0.0683008 44 3301 35 6.99608e+06 176588 787024. 2723.27 4.92 0.327754 0.293414 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0476313 0.0427693 80 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 8.28 vpr 55.16 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 16.8 MiB 0.68 497 10819 4307 4933 1579 55.4 MiB 0.12 0.00 3.31386 -89.9377 -3.31386 3.31386 1.09 0.000861816 0.000790982 0.061479 0.0564812 38 1712 31 6.99608e+06 264882 678818. 2348.85 5.06 0.339258 0.301953 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0377031 0.0337203 68 34 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.56 vpr 56.21 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.7 MiB 0.99 1423 14358 4574 7658 2126 56.3 MiB 0.22 0.00 3.77875 -143.667 -3.77875 3.77875 1.09 0.0013508 0.00123873 0.110126 0.101021 46 3969 25 6.99608e+06 294314 828058. 2865.25 4.90 0.413955 0.371989 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.34 0.17 0.33 -1 -1 0.34 0.056049 0.0505443 125 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 10.88 vpr 56.50 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 17.8 MiB 0.94 1182 13663 4698 6384 2581 56.6 MiB 0.21 0.00 4.16978 -143.827 -4.16978 4.16978 1.08 0.00132256 0.00121189 0.10241 0.0939363 40 3516 38 6.99608e+06 323745 706193. 2443.58 4.41 0.421469 0.379033 26914 176310 -1 2935 22 2946 3843 357357 76076 4.3072 4.3072 -160.219 -4.3072 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0584809 0.0527307 121 94 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 13.53 vpr 55.61 MiB 0.05 6824 -1 -1 14 0.26 -1 -1 32880 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1265 9263 2276 5364 1623 55.8 MiB 0.16 0.00 8.4853 -170.751 -8.4853 8.4853 1.06 0.00159218 0.00144876 0.0885916 0.0810983 44 3187 47 6.79088e+06 255968 787024. 2723.27 3.97 0.427778 0.38536 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.33 0.24 0.32 -1 -1 0.33 0.0869215 0.0785367 134 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 11.39 vpr 55.69 MiB 0.05 6800 -1 -1 14 0.28 -1 -1 32744 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1228 8270 2008 5297 965 55.7 MiB 0.14 0.00 7.98833 -161.421 -7.98833 7.98833 1.09 0.00156715 0.00143783 0.0779809 0.0715855 38 3303 16 6.79088e+06 269440 678818. 2348.85 4.78 0.40701 0.366143 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.054866 0.0498565 132 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 13.40 vpr 55.68 MiB 0.05 6876 -1 -1 11 0.21 -1 -1 32760 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1125 11613 3520 5862 2231 55.9 MiB 0.19 0.00 7.03202 -141.666 -7.03202 7.03202 1.08 0.00155124 0.00142139 0.103011 0.0944246 38 3591 44 6.79088e+06 269440 678818. 2348.85 7.33 0.502122 0.451545 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0493531 0.044854 138 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 10.60 vpr 55.38 MiB 0.02 6704 -1 -1 12 0.33 -1 -1 32784 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 17.2 MiB 1.39 1021 7643 1879 4700 1064 55.8 MiB 0.12 0.00 7.24011 -138.658 -7.24011 7.24011 1.12 0.00107108 0.000965395 0.0556292 0.0505647 38 2805 20 6.79088e+06 296384 678818. 2348.85 5.51 0.568335 0.508986 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0572676 0.0519541 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 9.51 vpr 55.77 MiB 0.05 6656 -1 -1 13 0.31 -1 -1 33072 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 17.3 MiB 2.02 1463 12568 3276 7023 2269 55.9 MiB 0.22 0.00 8.02445 -169.708 -8.02445 8.02445 1.09 0.00182868 0.00167632 0.12334 0.113098 46 3660 20 6.79088e+06 323328 828058. 2865.25 5.80 0.696166 0.627516 27406 200422 -1 2903 15 1384 3728 182895 41588 7.21431 7.21431 -161.115 -7.21431 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0604389 0.0550799 160 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 11.02 vpr 55.64 MiB 0.06 6672 -1 -1 12 0.27 -1 -1 32736 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 17.4 MiB 2.23 1344 4768 918 3685 165 56.0 MiB 0.09 0.00 7.61832 -163.245 -7.61832 7.61832 1.08 0.0016823 0.00154207 0.0464961 0.0427257 44 3529 23 6.79088e+06 323328 787024. 2723.27 3.41 0.314195 0.282714 27118 194962 -1 2985 17 1359 4066 236003 51425 6.72076 6.72076 -157.449 -6.72076 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0613868 0.0557602 150 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 9.09 vpr 55.06 MiB 0.05 6552 -1 -1 12 0.18 -1 -1 32292 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 16.6 MiB 1.37 1000 7177 1656 4753 768 55.2 MiB 0.10 0.00 7.28149 -137.47 -7.28149 7.28149 1.13 0.0011978 0.0010983 0.0546217 0.0501608 36 2895 37 6.79088e+06 269440 648988. 2245.63 2.73 0.272468 0.245207 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0428948 0.0388204 101 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 9.79 vpr 55.39 MiB 0.04 6792 -1 -1 11 0.18 -1 -1 32856 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 1.39 1129 9531 2421 6090 1020 55.5 MiB 0.15 0.00 6.82017 -140.384 -6.82017 6.82017 1.09 0.00147135 0.00133821 0.084373 0.0771799 38 3033 23 6.79088e+06 242496 678818. 2348.85 6.04 0.565103 0.506614 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0509133 0.0461715 118 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 11.06 vpr 55.22 MiB 0.05 6704 -1 -1 12 0.17 -1 -1 32652 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 2.34 1115 11631 3187 7135 1309 55.5 MiB 0.16 0.00 6.73244 -139.285 -6.73244 6.73244 1.09 0.00128831 0.00117934 0.089563 0.0820481 36 2986 40 6.79088e+06 242496 648988. 2245.63 5.47 0.411578 0.369725 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0449253 0.0407504 111 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 11.37 vpr 55.32 MiB 0.04 6536 -1 -1 13 0.19 -1 -1 32816 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1011 5412 1090 4064 258 55.4 MiB 0.09 0.00 7.30367 -163.797 -7.30367 7.30367 1.16 0.00139971 0.00128367 0.0483172 0.0443574 34 3575 46 6.79088e+06 215552 618332. 2139.56 14.26 0.590801 0.528122 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.050573 0.0457909 107 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 7.29 vpr 55.21 MiB 0.04 6680 -1 -1 12 0.17 -1 -1 32780 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 16.7 MiB 1.35 838 6386 1352 4871 163 55.3 MiB 0.09 0.00 7.31171 -145.298 -7.31171 7.31171 1.11 0.00119109 0.00109041 0.0492951 0.045177 38 2306 22 6.79088e+06 215552 678818. 2348.85 5.12 0.372214 0.333394 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0376856 0.0341939 93 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 11.76 vpr 55.24 MiB 0.06 6784 -1 -1 12 0.14 -1 -1 32864 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 16.6 MiB 1.81 1055 4560 1014 3240 306 55.2 MiB 0.08 0.00 6.46989 -155.558 -6.46989 6.46989 1.09 0.00121383 0.00111103 0.0368792 0.0337846 40 2500 20 6.79088e+06 188608 706193. 2443.58 15.26 0.539308 0.481678 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0461453 0.0417325 94 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 9.02 vpr 55.52 MiB 0.05 6760 -1 -1 13 0.26 -1 -1 32896 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 17.2 MiB 1.44 1239 11431 3102 6258 2071 55.7 MiB 0.20 0.00 7.91359 -165.523 -7.91359 7.91359 1.08 0.0017309 0.00158605 0.112432 0.103108 36 3864 39 6.79088e+06 282912 648988. 2245.63 24.13 0.791113 0.710257 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0720657 0.0653878 148 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 11.24 vpr 55.70 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33088 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1366 11245 3016 6173 2056 55.9 MiB 0.20 0.00 9.12295 -182.881 -9.12295 9.12295 1.08 0.00173002 0.00158414 0.1101 0.100858 40 3379 26 6.79088e+06 282912 706193. 2443.58 3.64 0.497332 0.448111 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.30 0.27 0.28 -1 -1 0.30 0.0906031 0.0819358 149 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 10.94 vpr 55.35 MiB 0.05 6596 -1 -1 11 0.17 -1 -1 32556 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 16.8 MiB 1.42 857 12681 3929 6469 2283 55.5 MiB 0.17 0.00 6.92892 -133.02 -6.92892 6.92892 1.09 0.00128857 0.00117927 0.0973478 0.0891997 44 2366 27 6.79088e+06 269440 787024. 2723.27 2.63 0.318867 0.287235 27118 194962 -1 1895 17 1033 2535 134756 31487 5.95428 5.95428 -123.689 -5.95428 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0468221 0.0424391 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 10.52 vpr 55.70 MiB 0.05 6764 -1 -1 12 0.27 -1 -1 32876 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 17.4 MiB 2.36 1420 13992 4103 7703 2186 56.2 MiB 0.25 0.00 7.6046 -160.271 -7.6046 7.6046 1.10 0.00174978 0.00160541 0.139625 0.127973 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.62 0.458507 0.413407 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0792836 0.0717498 146 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 13.10 vpr 55.60 MiB 0.04 6768 -1 -1 13 0.26 -1 -1 32684 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 17.5 MiB 1.47 1236 10687 3174 5565 1948 56.2 MiB 0.19 0.00 8.28661 -168.45 -8.28661 8.28661 1.09 0.00170522 0.00155667 0.106552 0.0976191 44 3216 47 6.79088e+06 282912 787024. 2723.27 6.52 0.76384 0.686402 27118 194962 -1 2637 18 1231 3745 198363 45004 7.17085 7.17085 -157.888 -7.17085 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.082128 0.0745819 144 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 10.66 vpr 55.25 MiB 0.04 6580 -1 -1 12 0.15 -1 -1 32504 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 945 7992 1779 4650 1563 55.3 MiB 0.12 0.00 6.70943 -154.61 -6.70943 6.70943 1.09 0.00128287 0.0011735 0.0635709 0.0582129 36 2644 29 6.79088e+06 215552 648988. 2245.63 3.16 0.359209 0.32278 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0409593 0.03724 104 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 8.09 vpr 54.79 MiB 0.04 6432 -1 -1 10 0.10 -1 -1 32088 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 16.4 MiB 2.45 878 7049 1926 4350 773 54.8 MiB 0.09 0.00 5.18321 -124.627 -5.18321 5.18321 1.09 0.000923085 0.000845274 0.0447416 0.0409876 38 2075 46 6.79088e+06 161664 678818. 2348.85 5.79 0.393047 0.349446 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0299975 0.0270007 67 88 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 9.83 vpr 55.04 MiB 0.05 6644 -1 -1 13 0.16 -1 -1 32708 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 17.0 MiB 1.82 974 6332 1469 4570 293 55.5 MiB 0.10 0.00 7.59608 -163.359 -7.59608 7.59608 1.09 0.00125023 0.00114428 0.0518902 0.0475006 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.93 0.313184 0.281007 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0416725 0.0377831 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 16.57 vpr 55.68 MiB 0.05 6740 -1 -1 13 0.28 -1 -1 32752 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 17.4 MiB 1.17 1254 12371 3408 7445 1518 55.8 MiB 0.20 0.00 7.46133 -157.73 -7.46133 7.46133 1.10 0.00170288 0.00156167 0.115983 0.106197 38 3224 45 6.79088e+06 296384 678818. 2348.85 18.44 0.828961 0.744701 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0645444 0.058576 143 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 13.19 vpr 55.84 MiB 0.05 6828 -1 -1 13 0.29 -1 -1 33176 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 17.2 MiB 1.88 1425 10883 2960 6054 1869 56.0 MiB 0.18 0.00 8.13867 -171.504 -8.13867 8.13867 1.13 0.00167609 0.00153539 0.103648 0.0951004 44 3504 27 6.79088e+06 255968 787024. 2723.27 6.70 0.64191 0.577516 27118 194962 -1 2782 17 1335 3719 207746 45749 7.06211 7.06211 -160.813 -7.06211 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0677973 0.0614807 141 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 7.05 vpr 54.76 MiB 0.04 6492 -1 -1 9 0.09 -1 -1 32140 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 16.1 MiB 1.51 588 10149 2859 5591 1699 54.7 MiB 0.10 0.00 4.97273 -93.6629 -4.97273 4.97273 1.09 0.000788594 0.000722745 0.0544685 0.0499623 30 1736 26 6.79088e+06 215552 556674. 1926.21 1.30 0.153057 0.13716 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0267761 0.0239965 64 73 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 10.53 vpr 55.59 MiB 0.04 6704 -1 -1 13 0.30 -1 -1 32696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 17.2 MiB 2.10 1289 7268 1575 5261 432 55.9 MiB 0.13 0.00 8.3813 -168.316 -8.3813 8.3813 1.08 0.00169311 0.00155139 0.070197 0.0643322 38 3745 37 6.79088e+06 296384 678818. 2348.85 4.27 0.350962 0.314607 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.30 0.15 0.27 -1 -1 0.30 0.0758249 0.0686973 137 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 7.93 vpr 54.60 MiB 0.04 6396 -1 -1 8 0.09 -1 -1 31068 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 16.1 MiB 2.32 737 11631 4246 5219 2166 54.7 MiB 0.11 0.00 4.77835 -104.906 -4.77835 4.77835 1.08 0.000800262 0.000731575 0.0554518 0.0507218 30 1930 29 6.79088e+06 229024 556674. 1926.21 1.45 0.165342 0.147786 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0299797 0.0268311 64 61 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 16.57 vpr 55.48 MiB 0.04 6708 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1155 10581 3115 6097 1369 55.6 MiB 0.17 0.00 8.86251 -178.17 -8.86251 8.86251 0.88 0.00144752 0.00132843 0.092117 0.0845073 46 2717 18 6.79088e+06 229024 828058. 2865.25 5.86 0.472451 0.424685 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0479807 0.0435638 118 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 14.60 vpr 55.56 MiB 0.05 6740 -1 -1 12 0.25 -1 -1 32884 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 17.4 MiB 1.55 1241 4433 817 3477 139 56.2 MiB 0.09 0.00 7.21583 -155.808 -7.21583 7.21583 1.10 0.00172501 0.00158005 0.0465585 0.0428087 36 4047 49 6.79088e+06 296384 648988. 2245.63 4.21 0.429366 0.385383 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.24 0.26 0.13 -1 -1 0.24 0.0990771 0.0894635 145 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 12.17 vpr 55.55 MiB 0.05 6844 -1 -1 13 0.27 -1 -1 32844 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 17.0 MiB 1.32 1284 4659 748 3690 221 55.7 MiB 0.09 0.00 8.13835 -165.274 -8.13835 8.13835 1.09 0.00161568 0.00147989 0.0476202 0.0436878 38 3292 49 6.79088e+06 269440 678818. 2348.85 13.99 0.774092 0.693381 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.061657 0.0558979 136 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 9.55 vpr 55.28 MiB 0.04 6552 -1 -1 12 0.17 -1 -1 32340 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 16.7 MiB 2.01 1045 5303 1002 3952 349 55.1 MiB 0.09 0.00 6.60115 -147.873 -6.60115 6.60115 1.09 0.00130345 0.00119331 0.0423632 0.038834 38 2622 19 6.79088e+06 255968 678818. 2348.85 5.01 0.400628 0.35881 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.29 0.09 0.28 -1 -1 0.29 0.0411652 0.0374249 106 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 10.56 vpr 55.00 MiB 0.05 6520 -1 -1 11 0.15 -1 -1 32684 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 1.95 954 11652 3379 7115 1158 55.2 MiB 0.17 0.00 6.23714 -130.615 -6.23714 6.23714 1.08 0.00116386 0.00106484 0.0901099 0.0825003 38 2452 30 6.79088e+06 269440 678818. 2348.85 4.07 0.357707 0.321047 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0404284 0.0365908 97 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 8.10 vpr 55.13 MiB 0.05 6568 -1 -1 11 0.16 -1 -1 32468 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 16.6 MiB 1.17 1013 7346 1810 4929 607 55.3 MiB 0.11 0.00 6.76313 -133.919 -6.76313 6.76313 1.10 0.00117314 0.00106743 0.058298 0.0534294 36 2839 26 6.79088e+06 255968 648988. 2245.63 5.50 0.421012 0.378406 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.28 0.11 0.26 -1 -1 0.28 0.0455233 0.0412418 107 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 11.40 vpr 55.41 MiB 0.04 6604 -1 -1 12 0.19 -1 -1 32576 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 17.2 MiB 1.94 1274 9443 2812 5690 941 55.8 MiB 0.15 0.00 6.88424 -161.28 -6.88424 6.88424 1.09 0.00148507 0.00136035 0.082787 0.0759088 38 3239 49 6.79088e+06 255968 678818. 2348.85 4.23 0.464447 0.416908 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.30 0.06 0.28 -1 -1 0.30 0.0276616 0.0251072 119 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 11.72 vpr 55.00 MiB 0.04 6528 -1 -1 11 0.17 -1 -1 32692 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 908 10056 3226 4794 2036 55.3 MiB 0.15 0.00 6.39517 -140.882 -6.39517 6.39517 1.09 0.00132558 0.0012135 0.0812903 0.07446 36 2970 31 6.79088e+06 229024 648988. 2245.63 2.91 0.343048 0.308604 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0482026 0.0436747 107 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 8.75 vpr 55.16 MiB 0.04 6640 -1 -1 10 0.14 -1 -1 32800 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 16.4 MiB 1.38 870 8022 2297 4713 1012 55.1 MiB 0.12 0.00 6.19022 -129.37 -6.19022 6.19022 1.11 0.00124339 0.00113982 0.0649817 0.0596001 34 2314 24 6.79088e+06 242496 618332. 2139.56 2.35 0.275107 0.247753 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0494659 0.0446573 103 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 10.17 vpr 55.66 MiB 0.05 6936 -1 -1 13 0.33 -1 -1 33296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 17.5 MiB 1.51 1352 10103 2504 6636 963 56.3 MiB 0.20 0.00 7.85531 -169.709 -7.85531 7.85531 1.09 0.00252838 0.00231634 0.100583 0.0916888 38 3914 48 6.79088e+06 296384 678818. 2348.85 29.23 0.921052 0.827368 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0784983 0.0712614 162 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 11.29 vpr 55.69 MiB 0.04 6628 -1 -1 13 0.30 -1 -1 33160 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 17.4 MiB 1.76 1274 13849 4315 6877 2657 56.1 MiB 0.24 0.00 7.85526 -169.716 -7.85526 7.85526 1.11 0.00174078 0.00159705 0.135482 0.124164 36 4447 42 6.79088e+06 282912 648988. 2245.63 10.68 0.57053 0.513895 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.28 0.20 0.25 -1 -1 0.28 0.0751429 0.0681171 152 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 10.05 vpr 55.18 MiB 0.07 6560 -1 -1 12 0.15 -1 -1 32780 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 16.8 MiB 1.32 851 11631 4796 6628 207 55.5 MiB 0.16 0.00 7.11438 -152.359 -7.11438 7.11438 1.08 0.00126361 0.0011554 0.0880781 0.0806282 36 2928 40 6.79088e+06 242496 648988. 2245.63 8.98 0.400146 0.359132 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0459639 0.0416454 102 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 10.59 vpr 55.78 MiB 0.05 6724 -1 -1 12 0.25 -1 -1 33260 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1154 12749 3915 6368 2466 56.0 MiB 0.22 0.00 7.84323 -159.621 -7.84323 7.84323 1.10 0.00172692 0.00158318 0.12239 0.112261 40 3413 28 6.79088e+06 309856 706193. 2443.58 3.86 0.503026 0.45344 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0808612 0.073159 148 219 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 10.06 vpr 55.84 MiB 0.05 6772 -1 -1 14 0.34 -1 -1 33212 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 17.3 MiB 1.13 1375 11247 2864 6672 1711 55.8 MiB 0.19 0.00 8.18012 -172.817 -8.18012 8.18012 1.08 0.00166456 0.00152697 0.107964 0.099095 36 4160 47 6.79088e+06 282912 648988. 2245.63 15.01 0.762909 0.685264 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0691592 0.0627378 146 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 10.18 vpr 55.66 MiB 0.05 6920 -1 -1 13 0.26 -1 -1 32840 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 2.11 1310 10149 2655 5632 1862 55.7 MiB 0.17 0.00 7.78561 -164.423 -7.78561 7.78561 1.09 0.0015367 0.00140817 0.0900196 0.082673 44 3315 33 6.79088e+06 282912 787024. 2723.27 6.20 0.587687 0.527699 27118 194962 -1 2744 16 1312 3521 196631 43857 6.87069 6.87069 -154.962 -6.87069 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0429408 0.0388714 126 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 10.44 vpr 55.53 MiB 0.05 6776 -1 -1 12 0.25 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 0.96 1267 10859 2857 6722 1280 56.0 MiB 0.18 0.00 7.65156 -158.395 -7.65156 7.65156 1.09 0.00159754 0.00146466 0.0965478 0.0884712 40 3210 25 6.79088e+06 309856 706193. 2443.58 4.10 0.455424 0.410259 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.32 0.14 0.28 -1 -1 0.32 0.0583351 0.0529836 135 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 11.40 vpr 55.60 MiB 0.05 6796 -1 -1 12 0.19 -1 -1 32844 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1093 11106 3659 5731 1716 55.4 MiB 0.17 0.00 7.11863 -144.901 -7.11863 7.11863 1.12 0.0014466 0.00132675 0.0965867 0.0886042 36 3341 42 6.79088e+06 229024 648988. 2245.63 6.36 0.4512 0.405059 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.056779 0.0512753 113 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 11.07 vpr 55.88 MiB 0.05 7024 -1 -1 14 0.44 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 17.6 MiB 1.33 1406 13355 3498 8147 1710 56.4 MiB 0.25 0.00 8.18038 -175.8 -8.18038 8.18038 1.09 0.00181552 0.00165698 0.145591 0.133262 38 4021 47 6.79088e+06 336800 678818. 2348.85 32.13 1.14653 1.03339 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0353397 0.0323622 169 245 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 9.93 vpr 55.21 MiB 0.04 6648 -1 -1 11 0.19 -1 -1 32392 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1088 9006 2212 5478 1316 55.5 MiB 0.14 0.00 6.58747 -141.672 -6.58747 6.58747 1.09 0.00139211 0.00127716 0.0758288 0.0695641 36 3313 23 6.79088e+06 242496 648988. 2245.63 3.13 0.311154 0.279529 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.31 0.13 0.27 -1 -1 0.31 0.0529224 0.0477937 113 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 12.12 vpr 55.74 MiB 0.05 6788 -1 -1 13 0.27 -1 -1 32744 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 17.1 MiB 1.53 1133 5422 1123 3954 345 55.8 MiB 0.10 0.00 7.76692 -152.212 -7.76692 7.76692 1.09 0.00156181 0.0014323 0.0524823 0.0482083 36 3213 29 6.79088e+06 255968 648988. 2245.63 14.01 0.660764 0.59235 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0572987 0.0519821 132 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 11.16 vpr 55.64 MiB 0.02 6760 -1 -1 12 0.29 -1 -1 32812 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1437 6967 1505 4666 796 55.8 MiB 0.13 0.00 7.30746 -159.645 -7.30746 7.30746 1.05 0.00178641 0.00163582 0.0720291 0.0660266 38 3828 35 6.79088e+06 282912 678818. 2348.85 4.69 0.442377 0.398423 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0740088 0.0671376 153 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 8.97 vpr 55.47 MiB 0.04 6640 -1 -1 13 0.24 -1 -1 32808 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 16.9 MiB 1.30 1157 7823 1835 4914 1074 55.7 MiB 0.13 0.00 7.47708 -158.746 -7.47708 7.47708 1.09 0.00155774 0.00142802 0.0716002 0.0656892 36 3541 41 6.79088e+06 255968 648988. 2245.63 3.67 0.392381 0.352989 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0546255 0.0495985 131 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 14.84 vpr 55.30 MiB 0.04 6780 -1 -1 13 0.22 -1 -1 32744 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.8 MiB 1.89 1097 11106 3753 5771 1582 55.8 MiB 0.18 0.00 7.69072 -162.222 -7.69072 7.69072 1.13 0.00151072 0.00138468 0.100849 0.0923982 34 3515 39 6.79088e+06 229024 618332. 2139.56 11.84 0.675848 0.606368 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.27 0.19 0.24 -1 -1 0.27 0.0730548 0.0659421 118 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 17.34 vpr 55.77 MiB 0.05 6824 -1 -1 12 0.28 -1 -1 33012 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1359 8151 1869 5680 602 56.0 MiB 0.14 0.00 7.62073 -165.231 -7.62073 7.62073 1.06 0.00171005 0.00156627 0.0783365 0.0718696 36 3806 40 6.79088e+06 309856 648988. 2245.63 18.51 0.808485 0.725502 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0684737 0.0621441 150 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 16.18 vpr 55.87 MiB 0.05 6784 -1 -1 13 0.27 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 17.5 MiB 1.97 1315 9051 2036 5908 1107 55.9 MiB 0.16 0.00 7.55776 -165.084 -7.55776 7.55776 1.09 0.0017114 0.00156379 0.0896596 0.0819868 40 3325 24 6.79088e+06 269440 706193. 2443.58 3.62 0.469811 0.423463 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.30 0.26 0.28 -1 -1 0.30 0.0939307 0.0849468 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 9.99 vpr 55.66 MiB 0.04 6728 -1 -1 14 0.30 -1 -1 32988 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1139 8270 1889 5806 575 55.6 MiB 0.14 0.00 8.36252 -172.285 -8.36252 8.36252 1.09 0.00148345 0.00135996 0.0736205 0.0675564 44 3128 32 6.79088e+06 242496 787024. 2723.27 5.98 0.524949 0.471514 27118 194962 -1 2534 14 1111 3223 182733 40388 7.46496 7.46496 -165.503 -7.46496 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466977 0.0424677 123 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 15.57 vpr 55.80 MiB 0.04 6716 -1 -1 13 0.27 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 17.2 MiB 3.03 1159 8868 1881 6136 851 56.1 MiB 0.15 0.00 8.02321 -165.348 -8.02321 8.02321 1.08 0.00160877 0.00147371 0.083827 0.0768505 36 3689 32 6.79088e+06 269440 648988. 2245.63 5.83 0.623775 0.559789 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0645585 0.0585127 134 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 11.62 vpr 55.89 MiB 0.05 6876 -1 -1 13 0.28 -1 -1 33028 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1323 8591 2185 5991 415 56.0 MiB 0.16 0.00 8.19403 -174.315 -8.19403 8.19403 1.09 0.0017649 0.00161813 0.0855473 0.0784529 44 3534 38 6.79088e+06 309856 787024. 2723.27 6.64 0.677722 0.609105 27118 194962 -1 2784 18 1402 4191 225375 49843 7.17168 7.17168 -164.218 -7.17168 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0754542 0.0683844 154 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 12.12 vpr 55.73 MiB 0.04 6788 -1 -1 12 0.30 -1 -1 32672 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 17.5 MiB 1.29 1325 11983 3288 6841 1854 56.0 MiB 0.21 0.00 7.62163 -166.383 -7.62163 7.62163 1.08 0.00178066 0.00163181 0.115679 0.10598 44 3682 36 6.79088e+06 323328 787024. 2723.27 3.63 0.495 0.446358 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0762841 0.0694562 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 8.67 vpr 55.06 MiB 0.05 6540 -1 -1 11 0.13 -1 -1 32444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 16.6 MiB 1.37 956 7249 1855 4884 510 55.2 MiB 0.11 0.00 6.10061 -138.097 -6.10061 6.10061 1.11 0.00115674 0.0010581 0.0553602 0.0507117 44 2204 16 6.79088e+06 175136 787024. 2723.27 2.63 0.248158 0.222995 27118 194962 -1 1994 14 890 2260 140178 30612 5.5245 5.5245 -131.032 -5.5245 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0365418 0.0331232 90 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 10.40 vpr 55.25 MiB 0.04 6724 -1 -1 13 0.19 -1 -1 32784 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 16.7 MiB 2.31 1073 11631 3861 5991 1779 55.2 MiB 0.18 0.00 7.81611 -170.556 -7.81611 7.81611 1.12 0.0013789 0.00126294 0.0973971 0.0892058 38 2825 21 6.79088e+06 229024 678818. 2348.85 3.78 0.397936 0.357886 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0569406 0.05182 113 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 11.68 vpr 56.13 MiB 0.06 6856 -1 -1 14 0.41 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 17.4 MiB 1.05 1399 15493 4561 8338 2594 56.3 MiB 0.29 0.00 8.67312 -179.019 -8.67312 8.67312 1.09 0.00204253 0.00186714 0.167787 0.153743 40 4316 49 6.79088e+06 323328 706193. 2443.58 28.32 1.21727 1.09715 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.30 0.45 0.29 -1 -1 0.30 0.145245 0.131443 180 267 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 11.67 vpr 55.51 MiB 0.05 6680 -1 -1 13 0.32 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 17.5 MiB 2.22 1244 13849 3731 7364 2754 56.1 MiB 0.24 0.00 8.43396 -178.911 -8.43396 8.43396 1.08 0.00184203 0.00168795 0.143496 0.13154 44 3465 21 6.79088e+06 282912 787024. 2723.27 5.93 0.709202 0.63922 27118 194962 -1 2596 16 1299 3668 191666 43847 7.34737 7.34737 -162.196 -7.34737 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0652609 0.0594908 154 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 8.76 vpr 55.07 MiB 0.04 6556 -1 -1 11 0.16 -1 -1 32704 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 16.6 MiB 0.68 899 5994 1459 3795 740 55.2 MiB 0.10 0.00 6.69493 -140.456 -6.69493 6.69493 1.09 0.00123228 0.00112748 0.0479994 0.043943 30 2669 49 6.79088e+06 229024 556674. 1926.21 2.52 0.266429 0.23909 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451775 0.0409328 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 19.79 vpr 56.10 MiB 0.05 7036 -1 -1 15 0.43 -1 -1 32888 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 17.4 MiB 1.37 1572 8083 1890 5078 1115 56.1 MiB 0.16 0.00 9.61575 -193.644 -9.61575 9.61575 1.10 0.00197882 0.00180914 0.0882107 0.0809074 48 3812 19 6.79088e+06 323328 865456. 2994.66 7.12 0.69722 0.627553 27694 206865 -1 3449 20 1718 5055 320010 69240 8.25951 8.25951 -179.124 -8.25951 0 0 1.05005e+06 3633.38 0.34 0.18 0.34 -1 -1 0.34 0.0814053 0.0740548 172 241 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 8.90 vpr 55.80 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 33076 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 17.4 MiB 1.10 1447 9914 2954 6315 645 56.1 MiB 0.17 0.00 8.38843 -181.197 -8.38843 8.38843 1.09 0.00171857 0.00157526 0.0955125 0.0875975 38 3572 19 6.79088e+06 296384 678818. 2348.85 5.94 0.634475 0.570969 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0663303 0.060266 149 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 7.00 vpr 55.15 MiB 0.05 6632 -1 -1 11 0.13 -1 -1 32856 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 16.7 MiB 1.54 1043 11604 3704 5973 1927 55.3 MiB 0.16 0.00 6.83225 -151.19 -6.83225 6.83225 1.11 0.00123737 0.00113051 0.0868521 0.0793882 30 2701 43 6.79088e+06 215552 556674. 1926.21 2.14 0.286229 0.257515 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0472644 0.042746 97 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 10.14 vpr 55.65 MiB 0.05 6900 -1 -1 12 0.29 -1 -1 32856 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 17.4 MiB 1.53 1321 11989 3057 7272 1660 56.1 MiB 0.20 0.00 7.80487 -167.158 -7.80487 7.80487 1.12 0.00175088 0.00159161 0.117994 0.107949 44 3363 21 6.79088e+06 282912 787024. 2723.27 6.39 0.645089 0.580794 27118 194962 -1 2768 18 1318 3944 204921 46349 6.74877 6.74877 -155.072 -6.74877 0 0 997811. 3452.63 0.34 0.14 0.32 -1 -1 0.34 0.0673402 0.061208 152 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 9.04 vpr 55.49 MiB 0.04 6604 -1 -1 12 0.20 -1 -1 32364 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1076 11776 3996 5804 1976 55.3 MiB 0.18 0.00 7.20737 -155.525 -7.20737 7.20737 1.08 0.00142739 0.00130837 0.102074 0.093602 38 3023 28 6.79088e+06 215552 678818. 2348.85 3.50 0.367225 0.330658 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0713584 0.0644299 115 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 7.65 vpr 55.26 MiB 0.04 6556 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 16.7 MiB 1.29 861 12331 3461 6927 1943 55.4 MiB 0.16 0.00 7.68992 -150.206 -7.68992 7.68992 1.12 0.00128057 0.00117245 0.0939145 0.0860828 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.52 0.270144 0.244086 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0403674 0.0366949 105 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 9.86 vpr 55.62 MiB 0.05 6872 -1 -1 12 0.30 -1 -1 32796 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1109 13105 4321 6403 2381 55.9 MiB 0.23 0.00 7.73882 -148.46 -7.73882 7.73882 1.09 0.00169138 0.00154987 0.124502 0.114092 36 3249 25 6.79088e+06 323328 648988. 2245.63 17.54 0.80353 0.722779 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.06219 0.0565301 144 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 16.99 vpr 55.86 MiB 0.05 6712 -1 -1 14 0.31 -1 -1 33040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 17.2 MiB 2.29 1442 8024 2021 5399 604 56.0 MiB 0.15 0.00 8.63126 -174.325 -8.63126 8.63126 1.08 0.00181165 0.00166068 0.082512 0.0757084 46 3512 20 6.79088e+06 296384 828058. 2865.25 6.97 0.696006 0.625899 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0665163 0.0605328 155 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 11.36 vpr 55.72 MiB 0.06 6788 -1 -1 12 0.23 -1 -1 32752 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.36 1323 12503 3954 6429 2120 55.6 MiB 0.21 0.00 7.68002 -164.527 -7.68002 7.68002 1.08 0.0016347 0.00149338 0.118605 0.10835 38 3480 45 6.79088e+06 255968 678818. 2348.85 5.38 0.54223 0.488157 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.31 0.27 0.27 -1 -1 0.31 0.0953231 0.0862922 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 10.58 vpr 55.02 MiB 0.04 6640 -1 -1 12 0.12 -1 -1 32628 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 16.4 MiB 1.25 883 6839 1546 5160 133 55.1 MiB 0.11 0.00 7.22527 -147.319 -7.22527 7.22527 1.08 0.00120599 0.00109567 0.0531648 0.0486015 34 2749 47 6.79088e+06 202080 618332. 2139.56 4.32 0.311467 0.279317 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.28 0.20 0.26 -1 -1 0.28 0.0677826 0.0609752 95 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 11.57 vpr 55.20 MiB 0.02 6764 -1 -1 12 0.26 -1 -1 32292 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1016 11806 3829 5905 2072 55.7 MiB 0.17 0.00 7.21239 -153.602 -7.21239 7.21239 1.13 0.00144237 0.00132161 0.101392 0.092953 46 2377 20 6.79088e+06 242496 828058. 2865.25 5.82 0.476134 0.427751 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.34 0.10 0.33 -1 -1 0.34 0.0524151 0.0475029 114 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 10.06 vpr 55.45 MiB 0.05 6760 -1 -1 11 0.19 -1 -1 32704 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 2.38 1192 7587 1799 4901 887 55.5 MiB 0.06 0.00 6.65573 -139.172 -6.65573 6.65573 0.74 0.000567113 0.000512286 0.0265175 0.0240042 38 3199 19 6.79088e+06 296384 678818. 2348.85 4.44 0.355918 0.31876 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0559776 0.050778 129 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 11.03 vpr 55.38 MiB 0.05 6848 -1 -1 11 0.20 -1 -1 32628 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 16.8 MiB 1.30 990 12156 4943 6412 801 55.4 MiB 0.19 0.00 6.59863 -125.892 -6.59863 6.59863 1.09 0.00145278 0.001334 0.106052 0.0973852 40 3108 38 6.79088e+06 282912 706193. 2443.58 4.23 0.445547 0.400345 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0670324 0.0604644 125 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 8.95 vpr 55.50 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32712 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 16.7 MiB 2.68 1023 6220 1452 4481 287 55.3 MiB 0.10 0.00 7.37394 -146.255 -7.37394 7.37394 1.08 0.00123931 0.001135 0.0506218 0.046364 36 2646 31 6.79088e+06 215552 648988. 2245.63 5.08 0.420679 0.377149 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.29 0.09 0.25 -1 -1 0.29 0.0397273 0.0361409 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 9.73 vpr 55.58 MiB 0.02 6716 -1 -1 12 0.19 -1 -1 32524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.90 1239 4476 858 3235 383 55.6 MiB 0.08 0.00 7.13568 -159.479 -7.13568 7.13568 1.09 0.00151419 0.0013861 0.0435725 0.0400377 36 3048 33 6.79088e+06 269440 648988. 2245.63 4.28 0.403516 0.361627 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0524743 0.0476178 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 9.43 vpr 55.46 MiB 0.05 6776 -1 -1 13 0.29 -1 -1 32796 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 17.0 MiB 1.79 1176 7283 1697 4959 627 55.7 MiB 0.13 0.00 7.98183 -162.706 -7.98183 7.98183 1.09 0.00161089 0.00147678 0.0702416 0.0644774 44 2649 18 6.79088e+06 269440 787024. 2723.27 5.43 0.5729 0.514551 27118 194962 -1 2319 17 1093 3339 161697 38241 6.80691 6.80691 -150.674 -6.80691 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0596048 0.0540516 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 11.86 vpr 55.68 MiB 0.04 6748 -1 -1 14 0.28 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 17.1 MiB 1.47 1408 9013 2325 5592 1096 55.9 MiB 0.17 0.00 8.8032 -181.521 -8.8032 8.8032 1.09 0.00177432 0.00162753 0.0923745 0.0847867 36 3712 28 6.79088e+06 282912 648988. 2245.63 4.99 0.494786 0.44587 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0631218 0.0575108 149 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 11.71 vpr 55.59 MiB 0.05 6704 -1 -1 14 0.28 -1 -1 32820 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 17.0 MiB 2.18 1168 12528 4001 6466 2061 55.7 MiB 0.20 0.00 8.11366 -160.164 -8.11366 8.11366 1.08 0.00159894 0.00146539 0.114539 0.104981 38 3448 46 6.79088e+06 269440 678818. 2348.85 22.01 0.773028 0.694 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0659827 0.0598034 136 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 10.37 vpr 55.60 MiB 0.05 6628 -1 -1 13 0.33 -1 -1 33320 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 17.4 MiB 1.93 1266 7823 1896 4973 954 55.9 MiB 0.14 0.00 7.98865 -167.696 -7.98865 7.98865 1.11 0.00166795 0.00152914 0.0777178 0.0712967 44 3303 29 6.79088e+06 255968 787024. 2723.27 6.86 0.651417 0.585089 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0617537 0.0561913 139 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 9.68 vpr 55.14 MiB 0.04 6616 -1 -1 13 0.18 -1 -1 32776 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 16.7 MiB 1.49 955 5888 1275 4387 226 55.4 MiB 0.12 0.00 7.30909 -151.711 -7.30909 7.30909 1.09 0.00128426 0.00117362 0.062149 0.0570063 44 2529 26 6.79088e+06 215552 787024. 2723.27 5.16 0.446842 0.400589 27118 194962 -1 1987 15 914 2239 123722 28021 6.20837 6.20837 -138.38 -6.20837 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0538479 0.0496016 106 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 12.63 vpr 55.85 MiB 0.05 6648 -1 -1 13 0.43 -1 -1 32768 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 17.4 MiB 1.38 1281 12175 3045 7735 1395 55.8 MiB 0.20 0.00 8.2401 -167.978 -8.2401 8.2401 1.09 0.00171331 0.00157237 0.118064 0.108379 36 3566 29 6.79088e+06 309856 648988. 2245.63 6.62 0.517005 0.466251 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.27 0.21 0.25 -1 -1 0.27 0.0802089 0.0726895 144 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 9.57 vpr 55.58 MiB 0.04 6936 -1 -1 14 0.28 -1 -1 31480 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1252 6306 1410 4478 418 55.7 MiB 0.13 0.00 8.1933 -176.786 -8.1933 8.1933 1.10 0.00159403 0.00145964 0.0622259 0.0570844 46 3049 24 6.79088e+06 269440 828058. 2865.25 6.12 0.498681 0.447814 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0610221 0.0553973 133 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 10.31 vpr 55.46 MiB 0.02 6716 -1 -1 12 0.25 -1 -1 32912 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1214 6855 1626 4139 1090 55.6 MiB 0.13 0.00 7.87232 -159.238 -7.87232 7.87232 1.10 0.00149546 0.0013852 0.066402 0.0609309 38 3142 49 6.79088e+06 282912 678818. 2348.85 4.47 0.503026 0.452409 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0258022 0.0234878 143 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 10.25 vpr 55.56 MiB 0.05 6944 -1 -1 13 0.24 -1 -1 32732 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1166 13583 4513 7114 1956 55.7 MiB 0.21 0.00 8.05477 -151.514 -8.05477 8.05477 1.08 0.001526 0.00139828 0.120071 0.109983 38 3283 21 6.79088e+06 282912 678818. 2348.85 5.80 0.455648 0.410302 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0533732 0.0484464 126 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 10.24 vpr 55.82 MiB 0.02 6724 -1 -1 14 0.35 -1 -1 32928 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1356 6595 1328 4700 567 56.0 MiB 0.13 0.00 8.2637 -174.994 -8.2637 8.2637 1.08 0.00178985 0.00164402 0.0701034 0.0644743 38 3897 30 6.79088e+06 282912 678818. 2348.85 6.27 0.485232 0.437128 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0803394 0.0728742 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 13.58 vpr 55.39 MiB 0.06 6724 -1 -1 11 0.28 -1 -1 32888 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1061 13403 4351 6899 2153 55.5 MiB 0.20 0.00 6.99502 -136.053 -6.99502 6.99502 1.09 0.00152601 0.00140052 0.117514 0.107835 36 3032 43 6.79088e+06 296384 648988. 2245.63 6.22 0.646794 0.581175 25390 158009 -1 2540 33 1686 5540 506000 190003 6.00456 6.00456 -131.545 -6.00456 0 0 828058. 2865.25 0.29 0.28 0.25 -1 -1 0.29 0.0987324 0.0893083 130 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 9.92 vpr 54.98 MiB 0.04 6560 -1 -1 13 0.16 -1 -1 32728 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.88 995 4062 701 3272 89 55.1 MiB 0.07 0.00 6.9771 -161.617 -6.9771 6.9771 1.09 0.00125184 0.00114693 0.0343159 0.0315005 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.02 0.280988 0.251967 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.27 0.11 0.27 -1 -1 0.27 0.043515 0.0393799 99 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 11.85 vpr 55.48 MiB 0.05 6852 -1 -1 14 0.23 -1 -1 32800 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1302 5483 1117 4002 364 55.5 MiB 0.10 0.00 8.68565 -176.783 -8.68565 8.68565 1.10 0.00153478 0.00140736 0.0517198 0.0474994 36 3263 26 6.79088e+06 255968 648988. 2245.63 5.94 0.395744 0.35544 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0538029 0.0488563 129 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 10.78 vpr 56.09 MiB 0.05 6636 -1 -1 15 0.36 -1 -1 33168 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 17.4 MiB 1.82 1292 9914 2574 6184 1156 56.2 MiB 0.21 0.00 9.1052 -186.475 -9.1052 9.1052 1.11 0.00243611 0.00224347 0.110612 0.101534 40 3560 37 6.79088e+06 296384 706193. 2443.58 3.34 0.556291 0.502173 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0964495 0.0877099 153 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 7.58 vpr 55.19 MiB 0.04 6676 -1 -1 11 0.16 -1 -1 32380 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.94 829 6054 1305 4663 86 55.1 MiB 0.10 0.00 6.63906 -133.693 -6.63906 6.63906 1.09 0.00117838 0.00107793 0.0466732 0.0427186 34 2844 35 6.79088e+06 188608 618332. 2139.56 3.70 0.272449 0.244185 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429477 0.0388291 91 124 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 9.88 vpr 55.27 MiB 0.04 6592 -1 -1 12 0.18 -1 -1 32592 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 16.8 MiB 1.53 1045 8360 2472 4444 1444 55.4 MiB 0.13 0.00 7.09988 -155.106 -7.09988 7.09988 1.11 0.00137085 0.00125717 0.072884 0.0668813 36 3087 23 6.79088e+06 215552 648988. 2245.63 4.05 0.370826 0.333216 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0547694 0.0495957 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 9.16 vpr 55.76 MiB 0.04 6680 -1 -1 12 0.32 -1 -1 33132 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1231 6306 1337 4274 695 56.0 MiB 0.12 0.00 7.48442 -156.804 -7.48442 7.48442 0.97 0.00174805 0.00160418 0.0653655 0.0599992 36 3798 37 6.79088e+06 269440 648988. 2245.63 4.91 0.474481 0.42665 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0722878 0.0655854 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 13.31 vpr 55.51 MiB 0.04 6900 -1 -1 12 0.24 -1 -1 32832 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 17.0 MiB 1.61 1313 9443 2521 5826 1096 55.7 MiB 0.16 0.00 7.56551 -160.745 -7.56551 7.56551 1.09 0.0015584 0.00142834 0.0866941 0.0795438 36 3623 36 6.79088e+06 255968 648988. 2245.63 5.81 0.45629 0.410373 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.27 0.14 0.26 -1 -1 0.27 0.060047 0.0543583 133 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 10.72 vpr 56.03 MiB 0.05 6940 -1 -1 14 0.44 -1 -1 33280 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 17.4 MiB 1.31 1284 5079 907 4069 103 56.4 MiB 0.12 0.00 8.77515 -179.37 -8.77515 8.77515 1.11 0.00193498 0.00177158 0.0593918 0.0545337 38 4131 35 6.79088e+06 309856 678818. 2348.85 21.55 0.899289 0.808256 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0785107 0.0715319 170 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 14.34 vpr 55.38 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32496 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1159 11963 3648 6429 1886 55.9 MiB 0.19 0.00 7.06667 -142.983 -7.06667 7.06667 1.10 0.00151041 0.00138539 0.103651 0.0950782 44 2874 16 6.79088e+06 282912 787024. 2723.27 5.06 0.543245 0.488207 27118 194962 -1 2495 13 1107 3189 172215 38308 6.29442 6.29442 -134.943 -6.29442 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0453343 0.0413 128 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 7.31 vpr 55.21 MiB 0.03 6564 -1 -1 11 0.17 -1 -1 32380 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 16.5 MiB 1.13 770 7714 1883 5409 422 55.2 MiB 0.12 0.00 6.64923 -122.654 -6.64923 6.64923 1.10 0.00122072 0.00111821 0.0608273 0.0557515 38 2218 30 6.79088e+06 255968 678818. 2348.85 5.09 0.535511 0.479306 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.050418 0.0455395 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 12.54 vpr 56.51 MiB 0.05 6904 -1 -1 13 0.41 -1 -1 32828 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 17.9 MiB 1.68 1654 14793 4090 8037 2666 56.7 MiB 0.28 0.00 8.15219 -167.23 -8.15219 8.15219 1.08 0.00217119 0.00197864 0.15942 0.145927 40 4464 26 6.79088e+06 390688 706193. 2443.58 6.27 0.657025 0.594125 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.30 0.59 0.28 -1 -1 0.30 0.177203 0.16035 191 279 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 8.79 vpr 55.60 MiB 0.05 6804 -1 -1 14 0.27 -1 -1 33476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1216 6923 1704 4584 635 55.7 MiB 0.12 0.00 8.60637 -173.25 -8.60637 8.60637 1.08 0.00151816 0.0013917 0.0630732 0.057863 30 3569 30 6.79088e+06 269440 556674. 1926.21 3.01 0.291014 0.262265 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0581551 0.0527304 128 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 9.53 vpr 55.21 MiB 0.04 6604 -1 -1 12 0.16 -1 -1 32344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 16.7 MiB 2.16 1144 8723 2365 5890 468 55.4 MiB 0.13 0.00 7.40683 -169.316 -7.40683 7.40683 1.09 0.00128581 0.00117735 0.0660614 0.060486 44 3005 29 6.79088e+06 255968 787024. 2723.27 5.77 0.456562 0.409639 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0466657 0.0423125 109 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 11.80 vpr 55.64 MiB 0.04 6732 -1 -1 13 0.28 -1 -1 32736 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 16.9 MiB 2.67 1115 5066 1001 3852 213 55.7 MiB 0.09 0.00 8.33866 -169.136 -8.33866 8.33866 1.09 0.00151881 0.00139241 0.0480774 0.0441555 48 2783 21 6.79088e+06 242496 865456. 2994.66 6.41 0.518909 0.465398 27694 206865 -1 2457 17 1071 3000 181658 40341 7.04987 7.04987 -154.557 -7.04987 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.0556896 0.0505282 125 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 10.80 vpr 55.96 MiB 0.04 6904 -1 -1 13 0.32 -1 -1 33364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1490 8083 1681 5214 1188 56.3 MiB 0.15 0.00 7.4732 -162.473 -7.4732 7.4732 1.13 0.00184146 0.00168782 0.0811408 0.0743978 38 4261 31 6.79088e+06 336800 678818. 2348.85 6.56 0.519391 0.467521 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.29 0.30 0.27 -1 -1 0.29 0.110545 0.100054 159 234 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 11.71 vpr 55.73 MiB 0.04 6744 -1 -1 11 0.23 -1 -1 32884 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 17.0 MiB 1.54 1209 11059 2877 6113 2069 55.7 MiB 0.18 0.00 7.11391 -144.84 -7.11391 7.11391 1.08 0.00162249 0.00148787 0.101421 0.0930155 44 3241 20 6.79088e+06 309856 787024. 2723.27 6.28 0.593065 0.533481 27118 194962 -1 2589 15 1040 3335 178109 39730 6.29442 6.29442 -136.088 -6.29442 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0622453 0.0572758 140 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 10.22 vpr 55.78 MiB 0.04 6712 -1 -1 15 0.32 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1211 12503 3460 7559 1484 55.8 MiB 0.21 0.00 9.11536 -184.558 -9.11536 9.11536 1.09 0.00168114 0.00154043 0.122704 0.11216 46 2840 19 6.79088e+06 255968 828058. 2865.25 6.22 0.691761 0.62166 27406 200422 -1 2555 17 1279 3537 187100 43561 7.59386 7.59386 -164.648 -7.59386 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0627921 0.0570557 142 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 9.15 vpr 55.84 MiB 0.06 6644 -1 -1 13 0.31 -1 -1 32964 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 17.5 MiB 1.94 1357 5463 1001 4200 262 56.1 MiB 0.11 0.00 8.32676 -176.58 -8.32676 8.32676 1.08 0.00183262 0.00167552 0.057417 0.0526657 36 4143 34 6.79088e+06 309856 648988. 2245.63 12.84 0.494099 0.444582 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0601923 0.0547952 154 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 10.62 vpr 55.14 MiB 0.05 6600 -1 -1 12 0.19 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 16.9 MiB 1.92 941 10557 3755 4946 1856 55.5 MiB 0.15 0.00 7.68137 -155.362 -7.68137 7.68137 1.11 0.00129045 0.0011818 0.0846873 0.0776442 36 2695 26 6.79088e+06 242496 648988. 2245.63 4.92 0.456054 0.409724 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0491854 0.0445361 109 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 10.56 vpr 55.25 MiB 0.04 6612 -1 -1 11 0.15 -1 -1 32488 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 16.4 MiB 1.39 1148 5224 1190 3763 271 55.2 MiB 0.09 0.00 6.84847 -147.97 -6.84847 6.84847 1.12 0.00124315 0.00113753 0.043097 0.0394918 48 2763 18 6.79088e+06 188608 865456. 2994.66 5.60 0.479885 0.429876 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0424171 0.0384451 98 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 9.15 vpr 55.73 MiB 0.04 6776 -1 -1 13 0.30 -1 -1 32820 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 17.5 MiB 1.07 1115 8455 2194 4906 1355 56.0 MiB 0.15 0.00 7.89179 -153.02 -7.89179 7.89179 1.08 0.00170023 0.00155719 0.0824694 0.0756079 38 3369 23 6.79088e+06 296384 678818. 2348.85 6.32 0.464107 0.418041 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0679929 0.0617157 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 7.74 vpr 55.06 MiB 0.05 6600 -1 -1 10 0.17 -1 -1 32784 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 16.6 MiB 1.63 851 10204 2504 7246 454 55.2 MiB 0.14 0.00 6.11518 -125.484 -6.11518 6.11518 1.09 0.00122729 0.00112298 0.0785806 0.0720156 38 2368 25 6.79088e+06 229024 678818. 2348.85 5.33 0.45229 0.405506 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0503646 0.0454995 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 13.04 vpr 55.29 MiB 0.04 6512 -1 -1 14 0.18 -1 -1 32652 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 16.9 MiB 2.65 1049 6312 1330 4556 426 55.2 MiB 0.10 0.00 7.76918 -161.081 -7.76918 7.76918 1.09 0.00131616 0.00120603 0.0509297 0.0466835 36 3203 45 6.79088e+06 242496 648988. 2245.63 17.36 0.596302 0.533541 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.29 0.31 0.25 -1 -1 0.29 0.0983194 0.0886059 110 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 10.51 vpr 55.81 MiB 0.05 6776 -1 -1 12 0.30 -1 -1 32888 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1262 12919 3620 7000 2299 55.7 MiB 0.21 0.00 7.60154 -161.988 -7.60154 7.60154 1.09 0.00167876 0.00153978 0.121798 0.111728 36 3634 39 6.79088e+06 296384 648988. 2245.63 7.00 0.540211 0.486894 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0613179 0.0556916 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 10.19 vpr 55.28 MiB 0.04 6592 -1 -1 12 0.17 -1 -1 32284 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 16.8 MiB 2.02 992 10726 2823 7181 722 55.2 MiB 0.15 0.00 6.58069 -144.507 -6.58069 6.58069 1.11 0.00122821 0.00112362 0.0823296 0.075382 34 3214 45 6.79088e+06 215552 618332. 2139.56 4.94 0.391161 0.351059 25102 150614 -1 2531 19 1106 2577 182354 39807 6.0649 6.0649 -143.904 -6.0649 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0487346 0.0440227 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 9.31 vpr 55.61 MiB 0.05 6828 -1 -1 12 0.19 -1 -1 32924 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1163 7736 1889 5402 445 55.9 MiB 0.13 0.00 7.51176 -154.757 -7.51176 7.51176 1.09 0.00155894 0.00142764 0.0728061 0.0667371 38 3181 29 6.79088e+06 242496 678818. 2348.85 5.95 0.435254 0.391077 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.29 0.12 0.26 -1 -1 0.29 0.0570543 0.0517385 123 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 10.13 vpr 55.70 MiB 0.05 6732 -1 -1 13 0.27 -1 -1 32928 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 17.1 MiB 1.41 1250 11296 2557 6849 1890 55.8 MiB 0.18 0.00 7.49717 -162.624 -7.49717 7.49717 1.09 0.00155927 0.00142897 0.103647 0.0950912 40 2968 20 6.79088e+06 255968 706193. 2443.58 17.78 0.777085 0.696912 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0595625 0.0539694 134 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 10.44 vpr 55.05 MiB 0.02 6516 -1 -1 11 0.16 -1 -1 32364 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 1.25 937 7515 1724 5667 124 55.3 MiB 0.12 0.00 7.16165 -142.405 -7.16165 7.16165 1.08 0.00129089 0.00118037 0.0613696 0.0561617 46 2683 20 6.79088e+06 202080 828058. 2865.25 3.10 0.345772 0.31054 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0450549 0.0408704 105 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 11.86 vpr 55.35 MiB 0.04 6584 -1 -1 13 0.19 -1 -1 32560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 17.1 MiB 1.80 1005 13381 4639 6392 2350 55.7 MiB 0.21 0.00 7.38301 -157.601 -7.38301 7.38301 1.14 0.00146407 0.00134128 0.116175 0.106518 38 2883 22 6.79088e+06 229024 678818. 2348.85 2.78 0.365452 0.329444 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0528697 0.0479131 116 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 9.12 vpr 55.60 MiB 0.04 6840 -1 -1 13 0.25 -1 -1 32816 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 17.2 MiB 1.56 1327 8092 2018 5457 617 55.9 MiB 0.14 0.00 7.14878 -159.209 -7.14878 7.14878 1.10 0.0015734 0.00144238 0.0764217 0.0701609 46 3203 25 6.79088e+06 242496 828058. 2865.25 3.47 0.424066 0.381373 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0600511 0.0543872 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 15.07 vpr 55.41 MiB 0.02 6748 -1 -1 11 0.19 -1 -1 32692 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.49 925 13403 4743 6446 2214 55.4 MiB 0.19 0.00 6.69836 -125.024 -6.69836 6.69836 1.09 0.00137507 0.00125986 0.106677 0.0977589 36 2760 29 6.79088e+06 296384 648988. 2245.63 4.99 0.425493 0.382345 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0501484 0.0454119 115 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 9.57 vpr 55.68 MiB 0.05 6928 -1 -1 14 0.31 -1 -1 33316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 17.4 MiB 1.43 1410 8213 2036 5597 580 56.2 MiB 0.16 0.00 9.10514 -189.548 -9.10514 9.10514 1.09 0.00182237 0.00167031 0.0848684 0.0777673 44 3396 25 6.79088e+06 296384 787024. 2723.27 3.56 0.489354 0.440712 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.34 0.13 0.31 -1 -1 0.34 0.0644074 0.0587052 160 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 10.40 vpr 55.16 MiB 0.04 6704 -1 -1 12 0.16 -1 -1 32672 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 16.8 MiB 2.69 1093 11281 2937 6811 1533 55.3 MiB 0.16 0.00 6.61653 -142.296 -6.61653 6.61653 1.13 0.00127176 0.00116408 0.0861753 0.0789958 38 2817 19 6.79088e+06 242496 678818. 2348.85 2.44 0.308539 0.278261 25966 169698 -1 2363 14 1024 2534 149076 32586 5.57833 5.57833 -133.159 -5.57833 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0401526 0.0365282 108 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 10.43 vpr 55.61 MiB 0.05 6752 -1 -1 13 0.27 -1 -1 32848 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1323 14123 4442 7710 1971 55.8 MiB 0.23 0.00 7.64293 -157.325 -7.64293 7.64293 1.09 0.0015873 0.00145469 0.129904 0.119111 44 3212 24 6.79088e+06 255968 787024. 2723.27 3.73 0.406555 0.366976 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.34 0.14 0.31 -1 -1 0.34 0.0615014 0.0557958 132 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 8.49 vpr 55.20 MiB 0.05 6716 -1 -1 13 0.18 -1 -1 32732 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 16.5 MiB 1.96 1020 12120 3554 6383 2183 55.3 MiB 0.17 0.00 7.35402 -164.423 -7.35402 7.35402 1.08 0.00127735 0.00116918 0.0938643 0.0859486 36 3009 44 6.79088e+06 215552 648988. 2245.63 5.83 0.548757 0.493039 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0511829 0.0463496 104 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 8.56 vpr 55.55 MiB 0.05 6856 -1 -1 12 0.21 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 17.2 MiB 1.87 1030 11783 4465 6036 1282 56.0 MiB 0.19 0.00 7.13827 -153.033 -7.13827 7.13827 1.10 0.00148852 0.00135887 0.104482 0.0957714 44 2856 22 6.79088e+06 255968 787024. 2723.27 3.21 0.387416 0.349117 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0506526 0.0460055 121 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 10.48 vpr 56.24 MiB 0.04 6992 -1 -1 15 0.51 -1 -1 32784 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1457 12373 3076 6798 2499 56.3 MiB 0.25 0.00 9.48621 -188.88 -9.48621 9.48621 1.08 0.00201907 0.00185073 0.146159 0.134178 46 4011 21 6.79088e+06 323328 828058. 2865.25 6.94 0.781261 0.704699 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0844498 0.0767716 176 250 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 7.33 vpr 54.59 MiB 0.04 6508 -1 -1 10 0.10 -1 -1 32092 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55964 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 16.0 MiB 1.53 678 9345 2965 4615 1765 54.7 MiB 0.10 0.00 5.03415 -115.492 -5.03415 5.03415 1.09 0.00089601 0.000819572 0.0574963 0.0526502 36 1722 23 6.79088e+06 148192 648988. 2245.63 2.63 0.250018 0.223084 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0346783 0.0310799 63 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 10.41 vpr 55.35 MiB 0.05 6552 -1 -1 13 0.19 -1 -1 32484 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 16.7 MiB 1.68 930 9881 2975 5177 1729 55.4 MiB 0.14 0.00 7.15369 -149.901 -7.15369 7.15369 1.11 0.00127116 0.00115217 0.0762483 0.0698864 36 2757 44 6.79088e+06 255968 648988. 2245.63 4.65 0.402687 0.361546 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0505652 0.0457746 105 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 10.07 vpr 55.52 MiB 0.05 6464 -1 -1 12 0.19 -1 -1 32548 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1026 12331 4984 6774 573 55.6 MiB 0.19 0.00 7.35057 -161.147 -7.35057 7.35057 1.11 0.00143768 0.00131737 0.10623 0.0974066 38 3211 42 6.79088e+06 229024 678818. 2348.85 19.20 0.738941 0.662186 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0579799 0.0525428 115 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 6.32 vpr 54.70 MiB 0.05 6716 -1 -1 9 0.13 -1 -1 32360 -1 -1 20 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 16.7 MiB 1.07 772 8553 2593 4994 966 55.2 MiB 0.10 0.00 5.4216 -101.246 -5.4216 5.4216 1.08 0.00101816 0.000932745 0.0563404 0.0516462 32 2040 31 6.79088e+06 269440 586450. 2029.24 1.37 0.201784 0.181199 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0336201 0.030372 86 111 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 12.47 vpr 55.68 MiB 0.05 6836 -1 -1 12 0.26 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 17.2 MiB 2.35 1475 10263 2607 5842 1814 55.9 MiB 0.18 0.00 7.81518 -176.908 -7.81518 7.81518 1.11 0.00168186 0.00154133 0.0954285 0.0875118 38 4034 49 6.79088e+06 309856 678818. 2348.85 8.27 0.547144 0.492408 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0619064 0.0562804 146 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 16.59 vpr 55.84 MiB 0.07 6912 -1 -1 14 0.53 -1 -1 32872 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 17.3 MiB 1.21 1195 12733 3723 6434 2576 55.8 MiB 0.22 0.00 9.14434 -182.838 -9.14434 9.14434 1.12 0.00172674 0.00158239 0.125546 0.114919 38 3451 34 6.79088e+06 296384 678818. 2348.85 5.82 0.547953 0.494015 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0658858 0.059868 151 204 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 9.51 vpr 55.98 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30840 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 1.20 895 12321 3076 8292 953 56.4 MiB 0.21 0.00 4.3249 -144.349 -4.3249 4.3249 1.09 0.00138045 0.00126734 0.0751919 0.0689254 34 2773 31 6.87369e+06 517032 618332. 2139.56 5.15 0.466586 0.417978 25762 151098 -1 2211 24 2181 3652 275045 65194 4.0397 4.0397 -150.952 -4.0397 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0619853 0.0556486 155 96 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.39 vpr 55.88 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 17.4 MiB 3.40 889 13477 4603 6656 2218 56.2 MiB 0.22 0.00 4.22285 -135.326 -4.22285 4.22285 1.09 0.00128085 0.0011742 0.0957769 0.0878281 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.50 0.272422 0.245926 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.25 0.15 0.23 -1 -1 0.25 0.0563612 0.0506087 141 91 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.47 vpr 55.72 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 17.5 MiB 1.69 953 18428 5979 9684 2765 56.3 MiB 0.32 0.01 3.74716 -129.333 -3.74716 3.74716 1.10 0.0013443 0.00123288 0.117037 0.108362 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.50 0.275006 0.249542 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0529511 0.0475925 145 65 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 7.14 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30340 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 17.3 MiB 1.28 922 15090 5352 7218 2520 56.1 MiB 0.24 0.00 4.1666 -130.205 -4.1666 4.1666 1.08 0.00114721 0.00105349 0.0975709 0.0896496 34 2444 21 6.87369e+06 321398 618332. 2139.56 2.42 0.344122 0.310203 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0511668 0.0459524 136 34 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.88 vpr 55.66 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 1.63 1047 14965 5078 8038 1849 56.3 MiB 0.25 0.00 4.2175 -149.421 -4.2175 4.2175 1.08 0.00125216 0.00114933 0.104176 0.0956822 34 2922 24 6.87369e+06 293451 618332. 2139.56 2.47 0.353206 0.317581 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.26 0.17 0.24 -1 -1 0.26 0.056184 0.0505928 147 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.48 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30192 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 17.4 MiB 1.14 1041 20588 6432 11323 2833 56.3 MiB 0.29 0.00 3.55395 -124.862 -3.55395 3.55395 1.08 0.00130532 0.00119515 0.114781 0.105119 32 2871 28 6.87369e+06 544980 586450. 2029.24 1.37 0.291561 0.2632 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.25 0.13 0.22 -1 -1 0.25 0.0494854 0.0445523 154 64 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.70 vpr 55.27 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30480 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 17.1 MiB 2.02 640 10388 2730 6621 1037 55.8 MiB 0.15 0.00 3.6994 -105.15 -3.6994 3.6994 1.10 0.000917334 0.000841967 0.0590561 0.0542244 28 1921 25 6.87369e+06 279477 531479. 1839.03 1.33 0.180741 0.162114 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0426857 0.0381241 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.64 vpr 55.48 MiB 0.06 7008 -1 -1 1 0.03 -1 -1 30064 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.4 MiB 0.85 969 14273 4212 7662 2399 56.1 MiB 0.19 0.00 3.61131 -114.549 -3.61131 3.61131 1.08 0.00110868 0.00101846 0.0729663 0.0669548 30 2496 28 6.87369e+06 489084 556674. 1926.21 1.35 0.232493 0.209463 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0454954 0.0409143 141 4 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 8.25 vpr 55.67 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30044 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 17.1 MiB 2.47 735 9712 2823 5738 1151 55.7 MiB 0.14 0.00 3.24697 -108.666 -3.24697 3.24697 1.09 0.00106756 0.000975843 0.0641353 0.0586852 28 1915 21 6.87369e+06 223581 531479. 1839.03 1.22 0.206528 0.184789 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.23 0.08 0.20 -1 -1 0.23 0.0370375 0.0331946 103 85 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.35 vpr 55.42 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.2 MiB 3.66 706 12808 2978 8428 1402 55.8 MiB 0.16 0.00 3.8076 -131.302 -3.8076 3.8076 1.09 0.00107211 0.000984526 0.0823629 0.0756313 34 2315 45 6.87369e+06 223581 618332. 2139.56 2.17 0.296384 0.265999 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.0472277 0.0423147 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.47 vpr 55.53 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30056 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 17.0 MiB 2.84 860 11776 3165 7564 1047 55.9 MiB 0.17 0.00 3.7375 -122.128 -3.7375 3.7375 1.10 0.00106557 0.000977364 0.0758828 0.0695494 32 2014 21 6.87369e+06 251529 586450. 2029.24 1.81 0.246694 0.221449 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0381974 0.0342175 109 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 8.17 vpr 55.33 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30496 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 17.2 MiB 1.31 881 15207 4108 9975 1124 56.1 MiB 0.20 0.00 3.45001 -118.108 -3.45001 3.45001 1.08 0.00108076 0.000981251 0.0772711 0.0706157 34 2251 27 6.87369e+06 447163 618332. 2139.56 2.10 0.303197 0.271195 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.28 0.10 0.22 -1 -1 0.28 0.0418483 0.0374409 116 65 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.90 vpr 55.86 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30164 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 17.5 MiB 4.27 958 19935 5624 11872 2439 56.3 MiB 0.30 0.00 3.64005 -125.972 -3.64005 3.64005 1.10 0.00126759 0.00115968 0.114099 0.104427 34 2786 25 6.87369e+06 489084 618332. 2139.56 2.33 0.386098 0.347284 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0457507 0.0412162 147 58 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.68 vpr 55.86 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30436 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 2.07 1059 21016 6637 11817 2562 56.3 MiB 0.30 0.00 4.34584 -150.842 -4.34584 4.34584 1.09 0.00131981 0.00121017 0.121196 0.110962 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.41 0.293422 0.264923 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0257981 0.0229535 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.55 vpr 55.14 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 17.0 MiB 1.72 791 11776 3380 6895 1501 55.5 MiB 0.15 0.00 3.6364 -112.843 -3.6364 3.6364 1.09 0.000936288 0.000859241 0.0666323 0.0611836 32 2110 22 6.87369e+06 265503 586450. 2029.24 1.27 0.185238 0.166472 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0367869 0.0328828 102 29 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.13 vpr 55.87 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 17.4 MiB 2.40 930 14221 5969 7807 445 56.2 MiB 0.24 0.00 3.52575 -124.171 -3.52575 3.52575 1.09 0.0012662 0.00115733 0.101711 0.093189 36 2582 25 6.87369e+06 293451 648988. 2245.63 2.71 0.385768 0.346627 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.057556 0.05188 145 63 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.91 vpr 55.80 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30136 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 17.2 MiB 4.21 1056 17238 4537 10962 1739 56.1 MiB 0.24 0.00 3.55695 -127.024 -3.55695 3.55695 1.11 0.001255 0.00115171 0.0948652 0.0869606 28 2543 24 6.87369e+06 531006 531479. 1839.03 1.36 0.256654 0.231473 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0575021 0.0516681 148 57 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 8.23 vpr 55.59 MiB 0.10 6992 -1 -1 1 0.03 -1 -1 30060 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 17.0 MiB 2.31 836 17103 4501 10697 1905 55.8 MiB 0.22 0.00 3.09156 -112.02 -3.09156 3.09156 1.09 0.000710133 0.000637189 0.0889999 0.0814541 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.98 0.236503 0.212547 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0455307 0.0407705 117 65 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.64 vpr 55.11 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30064 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 16.6 MiB 0.50 560 9036 3714 4978 344 55.1 MiB 0.10 0.00 2.94056 -94.1681 -2.94056 2.94056 1.09 0.000783026 0.000716865 0.0460634 0.0421699 28 1745 31 6.87369e+06 195634 531479. 1839.03 1.29 0.156846 0.139739 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0279256 0.024847 73 34 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.53 vpr 55.57 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 17.2 MiB 1.00 944 12636 3568 7641 1427 56.0 MiB 0.09 0.00 4.39847 -135.821 -4.39847 4.39847 0.75 0.000405514 0.000366426 0.0312764 0.0282871 32 2277 24 6.87369e+06 237555 586450. 2029.24 1.27 0.17212 0.153687 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0470684 0.0422254 113 64 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.50 vpr 55.74 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 17.5 MiB 0.87 894 19124 5624 10425 3075 56.3 MiB 0.27 0.00 4.20059 -139.885 -4.20059 4.20059 1.09 0.00124239 0.00114166 0.10577 0.0969904 34 2709 23 6.87369e+06 503058 618332. 2139.56 2.33 0.367874 0.330948 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0548456 0.0489475 150 34 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.82 vpr 55.68 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 30436 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 17.9 MiB 2.90 951 19380 5821 10599 2960 56.6 MiB 0.30 0.01 3.81248 -128.436 -3.81248 3.81248 1.09 0.00141379 0.00129372 0.116407 0.106372 30 2850 21 6.87369e+06 558954 556674. 1926.21 5.99 0.483878 0.433257 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0575257 0.0516163 154 124 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.63 vpr 54.97 MiB 0.04 6784 -1 -1 1 0.02 -1 -1 30384 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 16.6 MiB 1.76 600 9219 3759 4898 562 55.1 MiB 0.10 0.00 2.91856 -82.7442 -2.91856 2.91856 1.09 0.000682525 0.000624172 0.0423464 0.0387248 28 1359 19 6.87369e+06 223581 531479. 1839.03 1.17 0.125077 0.111698 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.030344 0.0269479 69 30 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.51 vpr 55.49 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 29980 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.3 MiB 1.26 1038 9757 2635 6591 531 56.1 MiB 0.17 0.00 4.1666 -141.416 -4.1666 4.1666 1.12 0.00115667 0.00106006 0.0639539 0.0586677 36 2506 23 6.87369e+06 293451 648988. 2245.63 5.11 0.440574 0.394699 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0497226 0.044724 141 3 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.38 vpr 54.88 MiB 0.04 6600 -1 -1 1 0.02 -1 -1 30368 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.6 MiB 0.40 506 9516 2238 6770 508 55.1 MiB 0.10 0.00 2.55523 -88.1124 -2.55523 2.55523 1.09 0.000723082 0.000661298 0.0448602 0.0410295 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.74 0.19556 0.174288 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.26 0.06 0.25 -1 -1 0.26 0.0284507 0.0253709 71 3 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.09 vpr 55.37 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30380 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 17.4 MiB 0.73 1092 17964 4627 11625 1712 56.3 MiB 0.27 0.01 4.26205 -149.131 -4.26205 4.26205 1.07 0.00125626 0.00114219 0.101033 0.0926362 32 3060 24 6.87369e+06 503058 586450. 2029.24 2.17 0.316911 0.285577 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0493113 0.0443827 155 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.37 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29904 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 17.2 MiB 0.81 964 9612 2267 6482 863 56.1 MiB 0.18 0.00 3.55269 -121.215 -3.55269 3.55269 1.16 0.00117055 0.00107369 0.0602206 0.0553088 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.47 0.229188 0.206277 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464303 0.0417717 151 3 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.90 vpr 55.73 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 17.4 MiB 0.92 1088 13358 3512 8899 947 56.3 MiB 0.22 0.00 4.2809 -148.724 -4.2809 4.2809 1.15 0.00130508 0.0011942 0.0771661 0.070623 26 3507 43 6.87369e+06 544980 503264. 1741.40 7.81 0.505299 0.452498 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.22 0.20 0.19 -1 -1 0.22 0.0631934 0.0568103 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.53 vpr 55.33 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30004 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 16.7 MiB 0.89 734 6839 1724 4743 372 55.3 MiB 0.11 0.00 3.07332 -108.035 -3.07332 3.07332 1.09 0.000999544 0.000915699 0.0445472 0.0409618 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.99 0.262656 0.234405 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0346242 0.0310576 104 34 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.90 vpr 55.41 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29980 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.97 856 11260 3834 5392 2034 55.4 MiB 0.15 0.00 3.7936 -125.971 -3.7936 3.7936 1.09 0.00100214 0.000918803 0.0682975 0.0626669 32 2233 22 6.87369e+06 251529 586450. 2029.24 1.33 0.196412 0.176629 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.26 0.09 0.23 -1 -1 0.26 0.0365838 0.0328238 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.97 vpr 55.37 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 16.9 MiB 0.99 743 13092 5209 6121 1762 55.5 MiB 0.18 0.00 3.48175 -108.034 -3.48175 3.48175 1.08 0.000945866 0.000867401 0.0758317 0.0695926 28 2217 26 6.87369e+06 265503 531479. 1839.03 1.40 0.202137 0.181724 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0375191 0.033587 104 34 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.87 vpr 55.48 MiB 0.05 6816 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 1.16 861 14700 5460 6955 2285 55.4 MiB 0.20 0.00 3.58201 -129.205 -3.58201 3.58201 1.09 0.00100771 0.000925357 0.0882431 0.0810329 34 2321 22 6.87369e+06 223581 618332. 2139.56 2.10 0.300656 0.270111 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.041105 0.0368557 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 7.11 vpr 55.50 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30064 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 17.3 MiB 0.75 924 11975 3064 7554 1357 55.8 MiB 0.16 0.00 3.50375 -121.402 -3.50375 3.50375 1.09 0.0010336 0.000947459 0.0603185 0.0552863 32 2375 25 6.87369e+06 447163 586450. 2029.24 1.31 0.193541 0.17377 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.046852 0.0418938 119 34 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.60 vpr 55.31 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 29992 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 17.0 MiB 2.62 824 15003 4455 7859 2689 55.7 MiB 0.19 0.00 2.90021 -94.838 -2.90021 2.90021 1.09 0.00102391 0.000936161 0.0761459 0.0696741 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.89 0.288384 0.258102 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0418046 0.0373747 113 61 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.64 vpr 55.81 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30472 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57844 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 17.6 MiB 3.67 1315 20411 5511 12546 2354 56.5 MiB 0.35 0.01 4.25391 -147.758 -4.25391 4.25391 1.11 0.000994086 0.00089225 0.11315 0.103377 28 3619 31 6.87369e+06 614849 531479. 1839.03 3.34 0.317653 0.286604 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.23 0.18 0.20 -1 -1 0.23 0.0631457 0.0569627 184 29 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 8.24 vpr 55.91 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 17.8 MiB 2.78 1049 18419 4848 10881 2690 56.5 MiB 0.26 0.00 3.66825 -130.624 -3.66825 3.66825 1.09 0.0013016 0.00119368 0.103103 0.0944725 32 2652 21 6.87369e+06 544980 586450. 2029.24 1.38 0.267886 0.241812 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.23 0.05 0.12 -1 -1 0.23 0.0192419 0.0172037 154 65 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.37 vpr 55.46 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30344 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 17.0 MiB 3.28 881 17134 5393 9307 2434 55.9 MiB 0.12 0.00 3.56305 -119.83 -3.56305 3.56305 1.13 0.000427417 0.000385003 0.0357597 0.0321821 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.70 0.182776 0.161452 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0180912 0.0159927 116 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.59 vpr 55.79 MiB 0.03 7136 -1 -1 1 0.06 -1 -1 30240 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 17.6 MiB 1.86 1019 8641 2131 5612 898 56.4 MiB 0.17 0.00 3.59121 -120.774 -3.59121 3.59121 1.09 0.00126852 0.00116354 0.0624269 0.0573386 34 2671 24 6.87369e+06 307425 618332. 2139.56 2.23 0.333225 0.299092 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0567265 0.0510417 141 64 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.92 vpr 55.85 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 30376 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 17.6 MiB 4.80 1071 16825 7101 8757 967 56.3 MiB 0.29 0.00 4.97069 -151.888 -4.97069 4.97069 1.09 0.00139951 0.00128299 0.130549 0.119715 34 2813 21 6.87369e+06 307425 618332. 2139.56 2.51 0.423885 0.380841 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0553983 0.0497537 145 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.46 vpr 55.79 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30268 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 17.5 MiB 1.76 980 12175 3299 8119 757 56.4 MiB 0.21 0.00 4.75154 -140.36 -4.75154 4.75154 1.09 0.00132183 0.00121201 0.0894524 0.0820483 34 2589 22 6.87369e+06 307425 618332. 2139.56 2.31 0.353967 0.317724 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0388269 0.034496 141 90 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.43 vpr 55.65 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 17.4 MiB 2.40 1053 19023 5653 10954 2416 56.3 MiB 0.28 0.00 3.64005 -125.414 -3.64005 3.64005 1.09 0.00126159 0.00115487 0.109144 0.0999379 34 2453 25 6.87369e+06 503058 618332. 2139.56 2.21 0.382945 0.34433 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.26 0.12 0.23 -1 -1 0.26 0.0467467 0.0418863 148 64 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.89 vpr 55.62 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30364 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.4 MiB 1.68 1150 19618 5466 12522 1630 56.3 MiB 0.29 0.01 4.1996 -145.707 -4.1996 4.1996 1.09 0.0012939 0.00118752 0.110188 0.100899 34 2754 24 6.87369e+06 531006 618332. 2139.56 4.73 0.533585 0.47835 25762 151098 -1 2446 23 2018 3153 285501 61588 3.6528 3.6528 -145.952 -3.6528 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.042155 0.0375938 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.96 vpr 56.37 MiB 0.04 7308 -1 -1 1 0.03 -1 -1 30416 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 17.9 MiB 3.22 1303 13356 3327 8820 1209 56.5 MiB 0.25 0.01 4.31511 -149.42 -4.31511 4.31511 1.10 0.00157739 0.00143701 0.0893383 0.0817784 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.76 0.292025 0.263153 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.064505 0.0580583 186 96 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.79 vpr 55.19 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.82 908 12636 4255 7048 1333 55.4 MiB 0.20 0.00 3.7654 -130.371 -3.7654 3.7654 1.11 0.00104134 0.000956929 0.0850832 0.0782039 34 2191 32 6.87369e+06 237555 618332. 2139.56 4.23 0.3738 0.334486 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0387821 0.0347372 112 34 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.80 vpr 55.62 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30264 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 17.5 MiB 2.51 1036 19820 6398 10981 2441 56.3 MiB 0.29 0.00 4.25889 -142.345 -4.25889 4.25889 1.10 0.00128943 0.00118258 0.115337 0.105729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.82 0.313251 0.282488 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0564187 0.0507129 152 64 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.56 vpr 55.70 MiB 0.04 7012 -1 -1 1 0.04 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1118 16515 4839 10227 1449 56.2 MiB 0.25 0.01 3.56001 -125.702 -3.56001 3.56001 1.09 0.00127774 0.00117121 0.0965794 0.0885017 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.72 0.225066 0.202782 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0544757 0.0489526 150 63 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.64 vpr 55.59 MiB 0.05 6980 -1 -1 1 0.05 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 1.39 942 16081 4088 11306 687 56.2 MiB 0.25 0.00 4.1996 -144.758 -4.1996 4.1996 1.08 0.00119567 0.00109465 0.105949 0.0973951 34 3051 25 6.87369e+06 293451 618332. 2139.56 5.10 0.434607 0.390707 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0552121 0.0496552 147 3 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.92 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.57 1066 20980 7180 11264 2536 56.4 MiB 0.30 0.00 3.54349 -125.696 -3.54349 3.54349 1.09 0.00131527 0.00120455 0.12241 0.111968 34 2404 23 6.87369e+06 503058 618332. 2139.56 2.26 0.405655 0.364603 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0536573 0.0482127 148 96 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.84 vpr 55.60 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30248 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 17.4 MiB 3.54 1032 19142 4987 12020 2135 56.3 MiB 0.15 0.00 3.61805 -127.505 -3.61805 3.61805 1.07 0.000469101 0.000421996 0.0394933 0.035634 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.21 0.120024 0.105932 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.058743 0.0527504 152 61 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 10.68 vpr 55.95 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 17.6 MiB 2.71 1111 18648 5184 11229 2235 56.5 MiB 0.27 0.01 3.58025 -126.995 -3.58025 3.58025 1.10 0.00130896 0.00119985 0.103603 0.0947876 32 2918 26 6.87369e+06 558954 586450. 2029.24 1.43 0.279397 0.251941 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.25 0.14 0.23 -1 -1 0.25 0.0532971 0.0479126 156 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.05 vpr 55.73 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57744 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 17.5 MiB 0.81 973 12876 3455 7707 1714 56.4 MiB 0.17 0.00 4.3249 -147.802 -4.3249 4.3249 1.09 0.00124571 0.00114332 0.0697132 0.0639375 34 2850 24 6.87369e+06 544980 618332. 2139.56 2.97 0.3407 0.306136 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0502954 0.0452486 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.08 vpr 55.69 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30468 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 17.6 MiB 2.68 1087 15172 3966 9854 1352 56.4 MiB 0.23 0.01 4.1996 -143.047 -4.1996 4.1996 1.10 0.00130014 0.00119103 0.0833329 0.076236 34 2680 28 6.87369e+06 572927 618332. 2139.56 2.46 0.373261 0.335166 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.057636 0.0517813 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 12.59 vpr 55.73 MiB 0.05 7276 -1 -1 1 0.05 -1 -1 30344 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57832 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.89 988 19356 5396 10906 3054 56.5 MiB 0.30 0.01 4.16785 -135.645 -4.16785 4.16785 1.08 0.00135647 0.00123529 0.118891 0.108776 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.47 0.295678 0.266328 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0582534 0.0522297 150 122 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.08 vpr 55.63 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1079 15709 4633 9421 1655 56.4 MiB 0.27 0.00 4.13359 -143.515 -4.13359 4.13359 1.10 0.00136847 0.00125572 0.118955 0.109192 34 3228 24 6.87369e+06 293451 618332. 2139.56 2.52 0.415309 0.373641 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.056652 0.0507683 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.71 vpr 55.23 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 17.0 MiB 0.87 919 15426 4260 9754 1412 55.8 MiB 0.20 0.00 3.51475 -125.544 -3.51475 3.51475 1.09 0.00104438 0.00095742 0.0758532 0.069447 32 2428 31 6.87369e+06 447163 586450. 2029.24 1.25 0.178995 0.159835 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.35 0.13 0.21 -1 -1 0.35 0.0474397 0.0425683 121 34 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.55 vpr 55.68 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.87 953 12980 4579 7047 1354 55.9 MiB 0.21 0.00 3.6884 -132.193 -3.6884 3.6884 1.10 0.00116066 0.00106251 0.092584 0.0847199 32 2548 27 6.87369e+06 223581 586450. 2029.24 1.45 0.243565 0.21887 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0508874 0.045564 112 94 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 9.48 vpr 55.90 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30660 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57672 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1419 16556 4403 10830 1323 56.3 MiB 0.28 0.01 4.99284 -170.715 -4.99284 4.99284 1.09 0.0015163 0.00139071 0.101822 0.0933611 28 3950 45 6.87369e+06 614849 531479. 1839.03 3.80 0.361489 0.325926 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.32 0.17 0.19 -1 -1 0.32 0.0548735 0.0493475 189 65 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 8.58 vpr 55.57 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30268 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 2.52 1069 15831 4027 10006 1798 56.2 MiB 0.24 0.00 3.59121 -127.943 -3.59121 3.59121 1.09 0.0012387 0.00113609 0.0891017 0.0815533 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.67 0.248666 0.224236 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.22 0.16 0.19 -1 -1 0.22 0.0729201 0.0654806 150 34 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 6.41 vpr 55.17 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30312 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 16.9 MiB 0.66 823 15633 5297 7776 2560 55.9 MiB 0.20 0.00 3.51601 -116.196 -3.51601 3.51601 0.97 0.00101503 0.000930347 0.0784269 0.0717989 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.45 0.208534 0.187477 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0425954 0.0380978 116 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.67 vpr 56.05 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30780 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 18.2 MiB 5.50 1193 22455 6528 13018 2909 56.6 MiB 0.35 0.01 4.91264 -167.151 -4.91264 4.91264 1.11 0.00163181 0.00149606 0.141731 0.129909 32 3593 50 6.87369e+06 656770 586450. 2029.24 3.08 0.494372 0.445269 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.25 0.21 0.23 -1 -1 0.25 0.0774819 0.0696756 190 127 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.33 vpr 55.78 MiB 0.07 6992 -1 -1 1 0.03 -1 -1 30324 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 17.5 MiB 2.89 975 19868 5843 10688 3337 56.1 MiB 0.26 0.00 4.28153 -144.516 -4.28153 4.28153 1.09 0.001252 0.00114858 0.105196 0.0964606 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.85 0.320779 0.28915 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0494228 0.04448 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.14 vpr 55.06 MiB 0.05 6700 -1 -1 1 0.03 -1 -1 30248 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.8 MiB 0.60 857 11197 2857 7409 931 55.5 MiB 0.16 0.00 3.64005 -128.736 -3.64005 3.64005 1.08 0.00101226 0.000930229 0.0536142 0.0492483 30 2290 23 6.87369e+06 461137 556674. 1926.21 1.27 0.18241 0.164049 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0392635 0.0352122 123 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.85 vpr 55.84 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30608 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 17.7 MiB 2.45 1249 21169 5887 12519 2763 56.4 MiB 0.33 0.01 4.9297 -168.732 -4.9297 4.9297 1.09 0.00145751 0.00134042 0.122853 0.11284 28 3487 31 6.87369e+06 628823 531479. 1839.03 2.27 0.333037 0.300399 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.20 0.11 0.10 -1 -1 0.20 0.0270354 0.0239863 189 34 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.56 vpr 55.43 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.88 806 12292 2857 8871 564 55.4 MiB 0.18 0.00 3.7764 -134.344 -3.7764 3.7764 1.09 0.00100204 0.000919886 0.0740699 0.0679893 34 2200 24 6.87369e+06 223581 618332. 2139.56 2.03 0.288329 0.258602 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442734 0.0396596 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.70 vpr 55.35 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30260 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 17.0 MiB 2.17 719 10463 2628 6946 889 55.7 MiB 0.15 0.00 3.56001 -114.458 -3.56001 3.56001 1.09 0.00101289 0.000929414 0.0514505 0.0471392 28 2094 21 6.87369e+06 461137 531479. 1839.03 1.35 0.177602 0.159309 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0445794 0.0398789 118 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.87 vpr 55.88 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30300 -1 -1 35 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 17.3 MiB 3.13 1008 14550 3923 8443 2184 56.2 MiB 0.22 0.00 3.54707 -114.227 -3.54707 3.54707 1.09 0.00124764 0.00114373 0.0860133 0.0788152 34 2543 22 6.87369e+06 489084 618332. 2139.56 2.16 0.348064 0.312387 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0506559 0.04548 141 88 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.96 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.6 MiB 2.01 854 12175 2685 7576 1914 56.4 MiB 0.17 0.00 4.2388 -146.065 -4.2388 4.2388 1.08 0.00130557 0.00119751 0.088378 0.0810944 34 2806 28 6.87369e+06 293451 618332. 2139.56 2.72 0.3845 0.345708 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0624378 0.056084 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.62 vpr 55.56 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.8 MiB 3.66 1100 18901 5336 11603 1962 56.5 MiB 0.28 0.01 4.27679 -150.534 -4.27679 4.27679 1.13 0.00133257 0.00121361 0.109351 0.100212 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.49 0.275835 0.248934 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.25 0.13 0.22 -1 -1 0.25 0.0577267 0.0519657 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 9.00 vpr 55.22 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30304 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 17.5 MiB 2.87 825 17191 6233 8742 2216 56.2 MiB 0.22 0.00 3.60705 -126.657 -3.60705 3.60705 1.09 0.00112453 0.00102156 0.0892121 0.0815829 36 2048 23 6.87369e+06 461137 648988. 2245.63 2.19 0.327152 0.293305 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0455333 0.040803 123 65 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.56 vpr 55.48 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 17.2 MiB 3.65 738 4456 873 3135 448 55.8 MiB 0.09 0.00 3.6994 -119.902 -3.6994 3.6994 1.11 0.00111945 0.00102554 0.0312417 0.0286211 34 2217 18 6.87369e+06 251529 618332. 2139.56 2.18 0.257052 0.228718 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0473432 0.0423573 108 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.76 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 17.4 MiB 2.81 914 16740 4391 9932 2417 56.2 MiB 0.25 0.00 3.59605 -116.379 -3.59605 3.59605 1.09 0.0012127 0.00111184 0.0962897 0.0883068 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.93 0.294224 0.265012 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0456676 0.0410751 143 60 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.24 vpr 55.54 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30236 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 17.4 MiB 1.51 905 12191 3346 7959 886 56.1 MiB 0.18 0.00 4.19891 -125.962 -4.19891 4.19891 1.08 0.00107909 0.0009876 0.0656185 0.0601336 26 2593 24 6.87369e+06 489084 503264. 1741.40 5.06 0.356639 0.319114 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.22 0.17 0.19 -1 -1 0.22 0.0581896 0.0521135 139 34 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 8.02 vpr 55.38 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30008 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 16.9 MiB 2.30 882 11432 3518 6484 1430 55.9 MiB 0.17 0.00 3.7324 -126.153 -3.7324 3.7324 1.09 0.00106159 0.00096851 0.0732226 0.0671212 30 2191 20 6.87369e+06 251529 556674. 1926.21 1.27 0.204554 0.183942 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.24 0.10 0.22 -1 -1 0.24 0.0434814 0.0389239 110 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.81 vpr 55.64 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30248 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 17.0 MiB 3.00 904 14256 4718 7453 2085 55.7 MiB 0.21 0.00 3.6144 -123.374 -3.6144 3.6144 1.09 0.00113787 0.00104103 0.0955617 0.0874761 34 2227 20 6.87369e+06 237555 618332. 2139.56 2.01 0.329273 0.295005 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0474534 0.0424574 110 91 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.15 vpr 55.70 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30092 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.80 962 16804 5215 8614 2975 55.7 MiB 0.24 0.00 4.24789 -140.354 -4.24789 4.24789 1.09 0.00116145 0.00106722 0.0873249 0.0801762 28 3199 26 6.87369e+06 517032 531479. 1839.03 2.28 0.250761 0.22665 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.23 0.13 0.19 -1 -1 0.23 0.0437922 0.039451 151 4 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.36 vpr 55.75 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30600 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.6 MiB 3.79 1093 19380 5712 11198 2470 56.4 MiB 0.28 0.00 4.29189 -149.386 -4.29189 4.29189 1.10 0.00130819 0.00119912 0.110505 0.101271 28 2995 25 6.87369e+06 531006 531479. 1839.03 2.01 0.285741 0.25811 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.23 0.17 0.20 -1 -1 0.23 0.061956 0.0556043 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 10.38 vpr 55.95 MiB 0.06 7120 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57868 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 3.49 1146 17256 4889 10338 2029 56.5 MiB 0.25 0.01 4.30289 -150.744 -4.30289 4.30289 1.13 0.00131452 0.00120538 0.10021 0.0917902 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.49 0.271869 0.245314 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0539159 0.0485512 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.93 vpr 55.87 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1114 16491 4519 10066 1906 56.4 MiB 0.24 0.00 4.16249 -142.489 -4.16249 4.16249 1.09 0.00128902 0.001182 0.0919472 0.0842052 28 3159 33 6.87369e+06 544980 531479. 1839.03 2.22 0.279039 0.251149 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0551732 0.049603 152 65 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 9.14 vpr 55.57 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30320 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 17.0 MiB 2.33 746 10406 2932 6420 1054 55.6 MiB 0.08 0.00 3.7324 -121.378 -3.7324 3.7324 0.85 0.000372419 0.000336969 0.0239254 0.0216664 32 2264 21 6.87369e+06 265503 586450. 2029.24 1.06 0.127374 0.113439 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0379553 0.0340229 110 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.47 vpr 55.76 MiB 0.09 7120 -1 -1 1 0.03 -1 -1 30244 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 17.6 MiB 2.86 980 15709 4819 8970 1920 56.2 MiB 0.24 0.00 4.23999 -140.261 -4.23999 4.23999 1.09 0.00123933 0.00113657 0.108104 0.0991652 30 2357 25 6.87369e+06 321398 556674. 1926.21 1.40 0.273552 0.247045 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.048876 0.0439815 140 63 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.80 vpr 55.66 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30704 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 17.8 MiB 4.94 1155 15540 3963 10188 1389 56.4 MiB 0.25 0.01 4.23385 -146.284 -4.23385 4.23385 1.10 0.00143231 0.00131125 0.0918142 0.0839438 36 2614 23 6.87369e+06 600875 648988. 2245.63 5.31 0.553709 0.495023 26050 158493 -1 2236 22 1922 3310 238312 53285 3.7984 3.7984 -145.312 -3.7984 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0606896 0.0544609 158 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 8.54 vpr 55.84 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30672 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 17.5 MiB 1.13 1029 18273 5989 9373 2911 56.4 MiB 0.28 0.00 4.26989 -143.564 -4.26989 4.26989 1.10 0.0013292 0.00121843 0.115224 0.105399 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.96 0.29021 0.261855 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0587209 0.0527411 149 94 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.68 vpr 55.72 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30296 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 17.4 MiB 2.13 942 16921 5030 8706 3185 56.3 MiB 0.26 0.00 3.63595 -118.056 -3.63595 3.63595 1.11 0.00129147 0.0011745 0.104866 0.0959652 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.43 0.26805 0.241618 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0544816 0.0490122 141 92 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.33 vpr 55.72 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 4.20 1087 14593 4252 9147 1194 56.4 MiB 0.25 0.00 4.1996 -148.308 -4.1996 4.1996 1.09 0.00131185 0.00119979 0.104756 0.0960073 34 3260 29 6.87369e+06 293451 618332. 2139.56 2.76 0.405476 0.3646 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.27 0.17 0.25 -1 -1 0.27 0.0585466 0.0526476 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.52 vpr 55.64 MiB 0.05 7192 -1 -1 1 0.05 -1 -1 30256 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 17.5 MiB 2.06 943 12751 3363 8405 983 56.3 MiB 0.19 0.00 3.54105 -112.818 -3.54105 3.54105 1.09 0.00123142 0.00112562 0.0748271 0.0684231 26 2618 24 6.87369e+06 503058 503264. 1741.40 1.38 0.234725 0.211018 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0545144 0.0487992 138 88 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.53 vpr 55.13 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.57 862 12292 3174 7904 1214 55.4 MiB 0.18 0.00 3.7104 -131.958 -3.7104 3.7104 1.12 0.00100362 0.000922219 0.0746089 0.0685757 34 2313 18 6.87369e+06 223581 618332. 2139.56 2.03 0.28088 0.25212 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.03976 0.0356894 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.39 vpr 55.92 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 4.26 1088 19841 5443 12522 1876 56.2 MiB 0.29 0.00 4.3249 -149.309 -4.3249 4.3249 0.97 0.00131232 0.00120317 0.114438 0.104874 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.47 0.28609 0.258578 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0608695 0.0547121 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.36 vpr 55.89 MiB 0.06 7144 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 3.73 1071 15151 5130 8107 1914 56.2 MiB 0.25 0.00 4.2388 -148.068 -4.2388 4.2388 1.11 0.00132256 0.00121264 0.110844 0.101689 36 2570 23 6.87369e+06 293451 648988. 2245.63 2.42 0.386212 0.348119 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0568759 0.051179 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.72 vpr 55.30 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30408 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 3.30 885 16708 4981 9424 2303 55.7 MiB 0.21 0.00 3.50501 -121.209 -3.50501 3.50501 1.09 0.00103825 0.000950236 0.08374 0.0765164 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.96 0.300484 0.268971 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0441301 0.0394684 112 55 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.58 vpr 55.52 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.1 MiB 0.81 723 6960 1528 4773 659 55.7 MiB 0.11 0.00 3.7434 -125.643 -3.7434 3.7434 1.09 0.000977327 0.000897497 0.0418375 0.0384254 32 2245 24 6.87369e+06 237555 586450. 2029.24 1.29 0.168793 0.151451 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.26 0.10 0.22 -1 -1 0.26 0.0377807 0.0338349 112 4 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.25 vpr 55.90 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30144 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1023 18795 5447 10788 2560 56.2 MiB 0.27 0.00 4.30799 -144.78 -4.30799 4.30799 1.09 0.00125949 0.00115511 0.107386 0.0984442 28 2603 22 6.87369e+06 489084 531479. 1839.03 1.36 0.26606 0.240151 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0483096 0.0434119 144 59 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 8.97 vpr 55.94 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 17.5 MiB 1.11 1094 18745 5603 10775 2367 56.4 MiB 0.29 0.00 4.21185 -141.009 -4.21185 4.21185 1.11 0.00128774 0.00117989 0.11907 0.109052 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.84 0.314912 0.284099 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0590969 0.0530692 142 88 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.58 vpr 55.80 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.7 MiB 0.82 1329 17642 5677 9392 2573 56.4 MiB 0.30 0.01 4.98719 -165.596 -4.98719 4.98719 1.09 0.00136193 0.00125091 0.100963 0.0927292 34 3730 48 6.87369e+06 572927 618332. 2139.56 4.55 0.458307 0.413016 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0607563 0.0548514 183 3 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.65 vpr 55.59 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 17.3 MiB 2.48 1005 13300 3782 8501 1017 56.1 MiB 0.20 0.00 3.59605 -120.715 -3.59605 3.59605 1.09 0.000850777 0.000752712 0.0744596 0.067962 34 2294 27 6.87369e+06 447163 618332. 2139.56 2.19 0.350218 0.313814 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0455673 0.0409405 141 59 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 6.02 vpr 55.20 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30552 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 16.7 MiB 0.71 735 12247 4571 5926 1750 55.2 MiB 0.15 0.00 3.6866 -109.378 -3.6866 3.6866 1.10 0.000920412 0.000844213 0.0691612 0.0634772 32 1771 18 6.87369e+06 279477 586450. 2029.24 1.22 0.180616 0.162515 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0360551 0.0322131 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 11.40 vpr 56.18 MiB 0.03 7320 -1 -1 1 0.04 -1 -1 30500 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 18.0 MiB 2.43 1290 11856 2585 8478 793 56.7 MiB 0.22 0.01 4.1886 -144.868 -4.1886 4.1886 1.09 0.00155832 0.00142839 0.0795426 0.0728919 30 3626 23 6.87369e+06 586901 556674. 1926.21 2.08 0.280669 0.252705 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.24 0.15 0.21 -1 -1 0.24 0.0685829 0.0616929 184 95 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 10.85 vpr 55.87 MiB 0.07 7372 -1 -1 1 0.03 -1 -1 30360 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 17.6 MiB 3.37 874 9914 2276 6234 1404 56.4 MiB 0.17 0.00 4.91157 -150.663 -4.91157 4.91157 1.09 0.00139285 0.00127718 0.0768254 0.0704378 34 2604 24 6.87369e+06 321398 618332. 2139.56 3.12 0.379643 0.340289 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0593029 0.0531926 144 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.20 vpr 55.56 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 17.1 MiB 3.07 802 14356 5267 6628 2461 56.0 MiB 0.23 0.00 4.598 -126.496 -4.598 4.598 1.09 0.00119132 0.0010923 0.102433 0.0938666 34 2153 24 6.87369e+06 223581 618332. 2139.56 2.11 0.341766 0.306251 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03469 0.0311654 107 89 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 6.72 vpr 55.86 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 17.4 MiB 0.91 1114 14723 4652 8968 1103 56.3 MiB 0.23 0.00 4.1955 -143.003 -4.1955 4.1955 1.09 0.00121566 0.00111521 0.0828473 0.0759451 28 2955 24 6.87369e+06 475111 531479. 1839.03 2.21 0.24866 0.224311 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.31 0.15 0.17 -1 -1 0.31 0.0463086 0.0416025 147 34 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.14 vpr 55.91 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30488 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 17.8 MiB 1.86 1006 19865 6118 9930 3817 56.6 MiB 0.30 0.01 4.28153 -140.004 -4.28153 4.28153 1.08 0.00145131 0.00132535 0.122994 0.112698 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.85 0.448514 0.403318 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0699357 0.063202 176 64 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.81 vpr 55.66 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 17.4 MiB 1.78 1085 17873 5357 10009 2507 56.3 MiB 0.26 0.00 3.50639 -115.998 -3.50639 3.50639 1.03 0.00120742 0.00110619 0.0991312 0.0906683 34 2647 22 6.87369e+06 503058 618332. 2139.56 2.39 0.360665 0.324009 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0508431 0.0456254 144 61 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 10.80 vpr 55.95 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30428 -1 -1 46 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57760 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 17.6 MiB 2.50 1127 20887 5685 13197 2005 56.4 MiB 0.30 0.01 4.26133 -148.826 -4.26133 4.26133 1.13 0.00132608 0.00121627 0.108511 0.0993462 28 2839 24 6.87369e+06 642796 531479. 1839.03 4.62 0.48434 0.434526 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0604467 0.0542994 160 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.92 vpr 56.01 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 17.5 MiB 2.72 1115 19606 5308 11826 2472 56.4 MiB 0.22 0.00 3.52575 -126.542 -3.52575 3.52575 1.09 0.00130927 0.00120004 0.0773502 0.0705829 26 2952 46 6.87369e+06 586901 503264. 1741.40 5.33 0.489945 0.438441 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0604928 0.0544232 157 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.85 vpr 55.21 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30244 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 16.8 MiB 1.59 669 12808 5105 6141 1562 55.3 MiB 0.17 0.00 3.73366 -117.212 -3.73366 3.73366 1.09 0.000986938 0.000905567 0.075913 0.0696974 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.88 0.283186 0.253465 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0384609 0.0343803 107 34 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.66 vpr 55.68 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 29896 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 2.15 808 7256 1653 5365 238 55.8 MiB 0.12 0.00 4.2805 -117.484 -4.2805 4.2805 1.08 0.00106351 0.000973242 0.0469331 0.0429648 34 2056 25 6.87369e+06 237555 618332. 2139.56 2.16 0.27409 0.244396 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0278174 0.0250143 102 82 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.91 vpr 55.51 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 17.4 MiB 1.51 1136 19618 6151 11073 2394 56.3 MiB 0.16 0.00 4.1886 -141.394 -4.1886 4.1886 0.74 0.00044562 0.000402307 0.0387907 0.0349967 28 2901 39 6.87369e+06 544980 531479. 1839.03 7.23 0.449361 0.401422 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0507999 0.0457325 152 34 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.13 vpr 55.48 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30256 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 16.8 MiB 3.01 794 17103 5256 9538 2309 55.5 MiB 0.20 0.00 3.45975 -106.144 -3.45975 3.45975 1.09 0.000979672 0.000896522 0.08238 0.0754043 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.88 0.228654 0.204946 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.21 0.15 0.18 -1 -1 0.21 0.0463009 0.0412794 108 56 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.77 vpr 55.31 MiB 0.03 6876 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.9 MiB 3.03 809 12464 3077 8852 535 55.6 MiB 0.18 0.00 3.7104 -131.395 -3.7104 3.7104 1.09 0.00105807 0.000969767 0.0795555 0.0729274 34 2309 26 6.87369e+06 223581 618332. 2139.56 2.09 0.310146 0.27807 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0454597 0.0407274 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.81 vpr 55.83 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30248 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 2.40 1003 13598 3664 8482 1452 56.1 MiB 0.21 0.00 3.61625 -124.489 -3.61625 3.61625 1.10 0.00126571 0.00115235 0.0810274 0.074193 34 2208 22 6.87369e+06 489084 618332. 2139.56 2.04 0.343567 0.308435 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.25 0.11 0.12 -1 -1 0.25 0.0499151 0.0449128 146 64 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.54 vpr 55.40 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 16.9 MiB 2.72 698 11402 3727 5924 1751 55.5 MiB 0.16 0.00 3.33623 -109.833 -3.33623 3.33623 1.09 0.00101284 0.000927695 0.0709334 0.0650056 26 2239 28 6.87369e+06 223581 503264. 1741.40 1.39 0.210077 0.188495 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0414317 0.0370302 103 55 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 8.03 vpr 55.85 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30336 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1019 17256 4700 9815 2741 56.3 MiB 0.27 0.00 3.59195 -122.625 -3.59195 3.59195 1.12 0.00127267 0.00117015 0.103855 0.0954727 32 2782 36 6.87369e+06 517032 586450. 2029.24 1.50 0.29674 0.268021 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.26 0.12 0.23 -1 -1 0.26 0.052765 0.0473424 143 65 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.71 vpr 55.93 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30184 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 17.4 MiB 3.20 929 10336 2368 6764 1204 56.3 MiB 0.17 0.00 3.59605 -120.102 -3.59605 3.59605 1.09 0.00133545 0.00122132 0.0616196 0.0564357 32 2620 21 6.87369e+06 544980 586450. 2029.24 1.37 0.234426 0.211059 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0590926 0.0530465 151 93 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.88 vpr 55.40 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 17.1 MiB 2.45 812 13206 3975 7418 1813 56.0 MiB 0.19 0.00 3.26897 -114.681 -3.26897 3.26897 1.10 0.00108392 0.000993278 0.0850913 0.078055 34 2174 27 6.87369e+06 237555 618332. 2139.56 2.02 0.321308 0.287997 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0448786 0.0401443 110 61 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.76 vpr 55.59 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 923 10056 2840 6443 773 55.9 MiB 0.15 0.00 3.6884 -128.712 -3.6884 3.6884 1.13 0.000405948 0.000366752 0.0511513 0.0463937 32 2547 22 6.87369e+06 223581 586450. 2029.24 1.26 0.191901 0.171803 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.26 0.13 0.23 -1 -1 0.26 0.0483064 0.0432727 112 63 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.35 vpr 55.73 MiB 0.07 7076 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 17.4 MiB 2.74 1032 14988 3846 9829 1313 56.1 MiB 0.22 0.00 4.29009 -147.998 -4.29009 4.29009 1.09 0.00130278 0.00119408 0.0834234 0.0763957 34 2540 20 6.87369e+06 558954 618332. 2139.56 4.29 0.428636 0.38496 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0571672 0.0512904 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 8.48 vpr 55.82 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 17.5 MiB 2.21 880 11759 2826 8215 718 56.3 MiB 0.18 0.00 3.59605 -112.745 -3.59605 3.59605 1.08 0.00119842 0.00109756 0.0680043 0.0622394 26 2672 41 6.87369e+06 475111 503264. 1741.40 2.51 0.259521 0.232995 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.22 0.14 0.19 -1 -1 0.22 0.0530434 0.0476059 140 62 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.66 vpr 56.02 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58116 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 17.8 MiB 4.91 930 19136 5654 10352 3130 56.8 MiB 0.29 0.00 4.25669 -144.754 -4.25669 4.25669 1.09 0.00145576 0.00132467 0.117157 0.107151 34 2868 25 6.87369e+06 558954 618332. 2139.56 2.66 0.430571 0.386365 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0642893 0.0576968 157 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.28 vpr 55.14 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 0.66 801 6501 1452 4525 524 55.3 MiB 0.10 0.00 3.09052 -106.923 -3.09052 3.09052 1.10 0.000927716 0.000847719 0.0378828 0.0348177 32 2327 32 6.87369e+06 223581 586450. 2029.24 1.28 0.170328 0.15258 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.25 0.09 0.24 -1 -1 0.25 0.0368146 0.0329258 104 4 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.28 vpr 55.93 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30404 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 17.4 MiB 1.56 977 17961 5555 9821 2585 56.3 MiB 0.27 0.00 4.24789 -140.827 -4.24789 4.24789 1.07 0.00131904 0.00120688 0.106961 0.0978882 34 2366 23 6.87369e+06 517032 618332. 2139.56 2.23 0.38647 0.347304 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0455769 0.0410556 147 92 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.11 vpr 55.75 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.3 MiB 3.97 961 12808 4157 6979 1672 56.1 MiB 0.19 0.00 3.7416 -135.274 -3.7416 3.7416 1.08 0.00118931 0.00108583 0.0914608 0.0837769 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.99 0.330419 0.296459 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0505681 0.0453162 114 96 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.59 vpr 55.62 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30140 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 17.7 MiB 2.67 1013 13117 3136 9263 718 56.4 MiB 0.20 0.00 3.62407 -127.528 -3.62407 3.62407 1.12 0.00129711 0.00118762 0.0743217 0.0680471 28 2551 39 6.87369e+06 544980 531479. 1839.03 4.91 0.492159 0.440991 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0586254 0.0526483 153 65 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.36 vpr 56.08 MiB 0.05 7344 -1 -1 1 0.04 -1 -1 30636 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 18.0 MiB 4.25 1138 14475 3597 10051 827 56.5 MiB 0.24 0.01 4.97494 -166.026 -4.97494 4.97494 1.11 0.00157429 0.00144372 0.0902171 0.0826053 32 3530 43 6.87369e+06 656770 586450. 2029.24 3.19 0.449144 0.403601 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.25 0.18 0.23 -1 -1 0.25 0.0697728 0.0627571 190 96 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.19 vpr 55.13 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30060 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 16.5 MiB 1.88 613 9036 2242 6211 583 55.1 MiB 0.10 0.00 2.94746 -92.2629 -2.94746 2.94746 1.08 0.000826164 0.000756074 0.0485089 0.0443973 32 1520 24 6.87369e+06 195634 586450. 2029.24 1.18 0.154719 0.137871 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.27 0.06 0.23 -1 -1 0.27 0.0270632 0.0241373 72 56 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 6.80 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30400 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 17.0 MiB 0.88 764 12120 4745 5717 1658 55.6 MiB 0.17 0.00 3.7196 -120.247 -3.7196 3.7196 1.08 0.00100245 0.000919293 0.073641 0.0676216 32 2131 23 6.87369e+06 251529 586450. 2029.24 1.32 0.208901 0.187767 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0417964 0.0374989 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.36 vpr 55.49 MiB 0.06 6788 -1 -1 1 0.03 -1 -1 29972 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 1.20 884 12464 4265 6183 2016 55.8 MiB 0.19 0.00 3.52575 -127.584 -3.52575 3.52575 1.12 0.00105951 0.000971489 0.0798827 0.0732865 34 2591 20 6.87369e+06 223581 618332. 2139.56 2.20 0.302826 0.271749 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0454407 0.040734 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.55 vpr 55.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30220 -1 -1 37 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 16.8 MiB 0.70 742 15004 4316 8330 2358 55.4 MiB 0.16 0.00 3.44875 -93.4127 -3.44875 3.44875 1.09 0.000854018 0.000783927 0.0607647 0.0557098 30 1638 20 6.87369e+06 517032 556674. 1926.21 1.16 0.166854 0.149702 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0363373 0.0323751 105 34 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 9.00 vpr 55.77 MiB 0.05 7084 -1 -1 1 0.04 -1 -1 30456 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.59 1035 11989 3061 8035 893 56.4 MiB 0.22 0.00 4.14459 -143.245 -4.14459 4.14459 1.09 0.0013562 0.001244 0.0907648 0.0832284 34 2922 23 6.87369e+06 293451 618332. 2139.56 2.47 0.381062 0.342383 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0540051 0.0485936 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.25 vpr 56.01 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30368 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 17.5 MiB 2.48 969 12394 3038 8536 820 56.4 MiB 0.22 0.00 3.62425 -121.977 -3.62425 3.62425 1.09 0.0013258 0.00121371 0.0731911 0.0669092 34 2208 23 6.87369e+06 558954 618332. 2139.56 2.12 0.348828 0.313058 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0563087 0.050581 151 94 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.98 vpr 55.70 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30696 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 17.7 MiB 1.51 1383 18363 6134 9531 2698 56.5 MiB 0.29 0.00 5.11247 -173.262 -5.11247 5.11247 1.11 0.00136889 0.00125589 0.123562 0.113312 36 3373 46 6.89349e+06 408721 648988. 2245.63 2.32 0.406356 0.365566 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0544409 0.0490083 192 96 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 8.04 vpr 55.62 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 17.3 MiB 1.40 1338 16411 5641 8181 2589 56.2 MiB 0.27 0.00 5.22297 -160.634 -5.22297 5.22297 1.10 0.00128627 0.001179 0.107 0.0981205 36 3246 31 6.89349e+06 408721 648988. 2245.63 3.18 0.406578 0.365169 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.059088 0.0531184 177 91 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.84 vpr 55.46 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1277 15533 4267 9018 2248 56.2 MiB 0.25 0.00 4.0146 -140.879 -4.0146 4.0146 1.11 0.00124275 0.00114037 0.101139 0.0928326 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.72 0.344117 0.309048 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0543935 0.0488254 167 65 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.58 vpr 55.38 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1071 16718 5447 9404 1867 55.8 MiB 0.26 0.00 4.53305 -141.516 -4.53305 4.53305 1.09 0.00115246 0.00105837 0.104988 0.0964274 34 2586 28 6.89349e+06 352346 618332. 2139.56 2.31 0.360871 0.324595 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.25 0.12 0.12 -1 -1 0.25 0.0544238 0.0491291 148 34 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.81 vpr 55.50 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30176 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.80 1361 14518 4265 8140 2113 56.1 MiB 0.25 0.00 5.03124 -172.909 -5.03124 5.03124 1.09 0.0012536 0.00115063 0.096697 0.088769 36 3336 26 6.89349e+06 338252 648988. 2245.63 3.02 0.368821 0.331917 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.051755 0.0466229 163 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.74 vpr 55.73 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30272 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 17.3 MiB 1.67 1499 20359 6047 11800 2512 56.2 MiB 0.31 0.00 4.44565 -148.532 -4.44565 4.44565 1.11 0.00130863 0.00119477 0.111076 0.101693 34 3677 25 6.89349e+06 577847 618332. 2139.56 2.42 0.394564 0.354635 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0602492 0.0541408 179 64 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 7.07 vpr 55.34 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.40 730 14528 4147 9388 993 55.4 MiB 0.18 0.00 3.83226 -109.129 -3.83226 3.83226 1.09 0.00092199 0.000846013 0.080196 0.073594 30 2039 26 6.89349e+06 295971 556674. 1926.21 1.26 0.203473 0.183027 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.0348895 0.0312113 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.95 vpr 55.32 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30068 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.0 MiB 0.71 921 14273 4335 7347 2591 55.9 MiB 0.19 0.00 3.53335 -112.01 -3.53335 3.53335 1.12 0.00110927 0.00101633 0.0732409 0.067169 34 2397 23 6.89349e+06 493284 618332. 2139.56 2.27 0.310785 0.278997 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0435769 0.0392277 141 4 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.91 vpr 55.37 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30036 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 16.9 MiB 1.45 1141 14358 3961 8348 2049 55.8 MiB 0.21 0.00 3.63141 -123.531 -3.63141 3.63141 1.08 0.00108759 0.00099754 0.0883532 0.0809961 34 2852 46 6.89349e+06 295971 618332. 2139.56 2.15 0.358428 0.320911 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0178254 0.0158153 140 85 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 8.38 vpr 55.60 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30172 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 16.8 MiB 1.54 873 6923 1573 5100 250 55.4 MiB 0.13 0.00 3.71245 -131.003 -3.71245 3.71245 1.12 0.00106001 0.000971926 0.0437538 0.0401808 34 2505 33 6.89349e+06 267783 618332. 2139.56 2.19 0.287155 0.256707 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.043448 0.038937 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 8.12 vpr 55.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 29956 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.85 942 6923 1677 4944 302 55.8 MiB 0.12 0.00 4.3965 -138.695 -4.3965 4.3965 1.09 0.00105606 0.000968547 0.0434979 0.0398943 34 2532 21 6.89349e+06 295971 618332. 2139.56 2.02 0.265101 0.236665 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0404029 0.0362732 135 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.70 vpr 55.42 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 17.1 MiB 1.46 883 15822 6326 7340 2156 56.0 MiB 0.21 0.00 3.8129 -121.35 -3.8129 3.8129 1.09 0.00107698 0.000986947 0.0956625 0.0876655 36 2401 21 6.89349e+06 281877 648988. 2245.63 2.21 0.208253 0.185991 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.28 0.08 0.26 -1 -1 0.28 0.0349059 0.0313245 135 65 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.61 vpr 55.43 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30156 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 17.3 MiB 1.18 987 17513 5731 7853 3929 56.2 MiB 0.24 0.00 4.23419 -140.25 -4.23419 4.23419 1.09 0.00125968 0.0011549 0.114865 0.105364 38 3008 43 6.89349e+06 352346 678818. 2348.85 5.66 0.434431 0.390421 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0517175 0.0465408 161 58 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.25 vpr 55.73 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30324 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1162 11063 2970 6995 1098 56.2 MiB 0.20 0.00 5.02024 -166.562 -5.02024 5.02024 1.09 0.00130709 0.00119856 0.0738583 0.0677701 36 3019 23 6.89349e+06 394628 648988. 2245.63 5.11 0.513472 0.460421 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0524035 0.0472601 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.28 vpr 55.11 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 16.9 MiB 1.28 754 11296 2879 7697 720 55.4 MiB 0.14 0.00 3.61645 -112 -3.61645 3.61645 1.09 0.000927892 0.000851206 0.061432 0.056349 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.56 0.168444 0.149699 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0382689 0.0342084 112 29 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.65 vpr 55.64 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1259 17315 5682 9212 2421 56.0 MiB 0.30 0.00 4.31019 -146.5 -4.31019 4.31019 1.08 0.00130856 0.00119838 0.118818 0.108724 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.93 0.421214 0.378867 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.26 0.16 0.25 -1 -1 0.26 0.0559457 0.0503326 174 63 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 8.15 vpr 55.36 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30088 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 17.5 MiB 1.12 1183 12365 3291 7811 1263 56.2 MiB 0.21 0.00 3.69045 -130.871 -3.69045 3.69045 1.09 0.00124759 0.00114426 0.0812765 0.0745712 34 2840 24 6.89349e+06 352346 618332. 2139.56 2.09 0.350162 0.314537 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0430797 0.0387803 160 57 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 8.81 vpr 55.70 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 29980 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1015 15395 4903 8010 2482 55.8 MiB 0.23 0.00 3.61051 -123.557 -3.61051 3.61051 1.09 0.00110378 0.00101189 0.0930561 0.0852333 38 2435 45 6.89349e+06 310065 678818. 2348.85 2.16 0.329983 0.295801 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0436179 0.0391263 139 65 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.15 vpr 54.88 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30008 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 16.6 MiB 0.91 569 8227 1998 5670 559 55.2 MiB 0.09 0.00 3.06366 -95.1937 -3.06366 3.06366 1.08 0.000785957 0.000719875 0.0417056 0.0382333 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.72 0.19894 0.176349 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0306987 0.0272957 85 34 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 8.29 vpr 55.26 MiB 0.07 7028 -1 -1 1 0.03 -1 -1 30204 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.25 1101 13663 4048 7780 1835 55.9 MiB 0.20 0.00 4.32835 -147.32 -4.32835 4.32835 1.09 0.00108544 0.000994356 0.0826283 0.075713 34 2756 25 6.89349e+06 310065 618332. 2139.56 2.20 0.31735 0.28424 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0428532 0.0383767 141 64 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 7.61 vpr 55.39 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30128 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 17.2 MiB 0.88 1052 20112 6009 11047 3056 56.0 MiB 0.28 0.00 4.67003 -155.404 -4.67003 4.67003 1.09 0.00122759 0.00112697 0.104547 0.0958651 34 2792 26 6.89349e+06 563754 618332. 2139.56 2.25 0.372358 0.335067 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0482795 0.0434386 166 34 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.24 vpr 55.65 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30424 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 17.7 MiB 1.19 1507 16511 4972 9774 1765 56.6 MiB 0.28 0.00 4.34661 -147.62 -4.34661 4.34661 1.09 0.00141635 0.00129871 0.11316 0.103747 36 3423 27 6.89349e+06 436909 648988. 2245.63 2.45 0.425235 0.381742 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0604197 0.0542048 201 124 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 7.23 vpr 54.97 MiB 0.04 6844 -1 -1 1 0.02 -1 -1 30416 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 16.4 MiB 1.24 692 10476 3888 5359 1229 55.0 MiB 0.11 0.00 2.84541 -81.5212 -2.84541 2.84541 1.08 0.000681952 0.000623278 0.0465168 0.0425616 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.11 0.142382 0.127156 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0200953 0.0179743 77 30 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.81 vpr 55.14 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30068 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.0 MiB 1.04 1016 9571 2543 6414 614 55.6 MiB 0.16 0.00 4.12784 -139.243 -4.12784 4.12784 1.09 0.00116065 0.0010666 0.0625346 0.0574674 30 2786 37 6.89349e+06 295971 556674. 1926.21 6.83 0.390306 0.34993 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.25 0.12 0.21 -1 -1 0.25 0.0535346 0.0481575 141 3 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.13 vpr 54.64 MiB 0.04 6604 -1 -1 1 0.03 -1 -1 30372 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.4 MiB 0.32 514 9356 2285 6456 615 54.8 MiB 0.10 0.00 2.43188 -86.7872 -2.43188 2.43188 1.09 0.000727314 0.000665536 0.0442692 0.0405313 28 1509 16 6.89349e+06 169126 531479. 1839.03 1.17 0.12814 0.114784 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.23 0.07 0.21 -1 -1 0.23 0.0271462 0.0242241 71 3 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 7.56 vpr 55.33 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 17.1 MiB 1.25 1097 15929 4551 10101 1277 55.9 MiB 0.27 0.00 4.62958 -159.64 -4.62958 4.62958 1.11 0.00124584 0.00114369 0.103313 0.0949122 30 2755 25 6.89349e+06 352346 556674. 1926.21 1.40 0.270652 0.245017 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451724 0.0407672 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.35 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29992 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.9 MiB 0.67 885 10772 2583 7345 844 56.0 MiB 0.17 0.00 3.4709 -116.935 -3.4709 3.4709 1.09 0.00118467 0.00108796 0.0576658 0.0529116 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.44 0.244892 0.220432 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0479959 0.0431734 151 3 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.86 vpr 55.67 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30384 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.64 1365 8130 1863 5269 998 56.2 MiB 0.16 0.00 4.69935 -162.091 -4.69935 4.69935 1.10 0.00132339 0.00121653 0.0569596 0.0523617 34 3698 26 6.89349e+06 366440 618332. 2139.56 2.79 0.346041 0.310608 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0564116 0.0508141 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.29 vpr 55.23 MiB 0.16 6920 -1 -1 1 0.03 -1 -1 29932 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.68 863 14256 5690 7135 1431 55.4 MiB 0.19 0.00 3.57625 -122.952 -3.57625 3.57625 1.08 0.000996731 0.00091434 0.0839661 0.0769847 36 2395 27 6.89349e+06 239595 648988. 2245.63 4.94 0.395944 0.353557 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0429802 0.0384585 118 34 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.81 vpr 55.27 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30168 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1065 12331 4460 6746 1125 55.6 MiB 0.18 0.00 4.27029 -139.911 -4.27029 4.27029 1.08 0.00100928 0.000926212 0.0737705 0.0677089 34 2653 21 6.89349e+06 267783 618332. 2139.56 2.25 0.285551 0.255699 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0396524 0.0355326 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.82 vpr 55.13 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 16.7 MiB 1.87 839 10231 2827 6777 627 55.4 MiB 0.16 0.00 4.26535 -126.926 -4.26535 4.26535 1.09 0.00094951 0.000870116 0.0578418 0.0530903 34 2258 25 6.89349e+06 295971 618332. 2139.56 4.11 0.359073 0.319933 25762 151098 -1 1828 19 1146 1838 127720 29375 3.55595 3.55595 -122.712 -3.55595 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0362229 0.0324125 115 34 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.03 vpr 55.11 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.96 860 14700 5342 7547 1811 55.3 MiB 0.20 0.00 3.60535 -129.612 -3.60535 3.60535 1.09 0.000998987 0.000916923 0.0880782 0.0809076 34 2261 23 6.89349e+06 225501 618332. 2139.56 2.07 0.302199 0.271587 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0408594 0.0368003 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.52 vpr 55.23 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 16.7 MiB 1.28 985 14322 4727 7440 2155 55.3 MiB 0.21 0.00 3.69435 -127.028 -3.69435 3.69435 1.08 0.00101964 0.00093562 0.0847504 0.077734 30 2355 32 6.89349e+06 267783 556674. 1926.21 1.32 0.233376 0.210042 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0367137 0.0329514 121 34 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.87 vpr 55.33 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30016 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 16.8 MiB 1.35 1052 14724 4760 7779 2185 55.5 MiB 0.21 0.00 3.57215 -115.596 -3.57215 3.57215 1.10 0.00102399 0.00093978 0.0856234 0.0785513 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.98 0.344654 0.308479 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.036882 0.0330607 130 61 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.53 vpr 55.48 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30420 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1199 18247 5521 9891 2835 56.3 MiB 0.31 0.00 4.73855 -160.484 -4.73855 4.73855 1.09 0.00142695 0.00131267 0.130958 0.120403 34 3612 43 6.89349e+06 380534 618332. 2139.56 3.02 0.414774 0.374503 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0562537 0.0506776 184 29 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.68 vpr 55.85 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30272 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1143 14147 4354 7296 2497 56.2 MiB 0.24 0.00 4.17974 -143.168 -4.17974 4.17974 1.09 0.00130275 0.00119484 0.0966987 0.0887025 34 3686 37 6.89349e+06 352346 618332. 2139.56 2.80 0.399366 0.358303 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0599371 0.0538992 173 65 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.49 vpr 55.17 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 17.4 MiB 0.82 1094 14965 4562 8063 2340 56.1 MiB 0.22 0.00 3.67235 -123.222 -3.67235 3.67235 1.09 0.00110506 0.0010105 0.0923466 0.0845122 34 2583 23 6.89349e+06 310065 618332. 2139.56 2.04 0.326399 0.292242 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0434878 0.0389408 143 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.43 vpr 55.97 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30332 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 17.6 MiB 2.14 1244 16523 4277 10843 1403 56.2 MiB 0.29 0.00 4.45875 -146.616 -4.45875 4.45875 1.09 0.00126648 0.0011629 0.109036 0.100069 34 3212 33 6.89349e+06 366440 618332. 2139.56 2.39 0.399783 0.359577 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0542891 0.0487985 170 64 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.85 vpr 55.89 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 17.7 MiB 1.75 1489 17560 4957 10293 2310 56.5 MiB 0.31 0.01 5.02254 -165.43 -5.02254 5.02254 1.09 0.00140753 0.00129067 0.119443 0.109551 34 3603 25 6.89349e+06 436909 618332. 2139.56 2.44 0.359887 0.323515 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0533741 0.0479794 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 10.73 vpr 55.73 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30260 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 17.5 MiB 2.15 1401 11923 3470 7236 1217 56.4 MiB 0.22 0.00 5.49816 -175.294 -5.49816 5.49816 1.09 0.00130556 0.00119659 0.0797054 0.0730851 34 3760 29 6.89349e+06 394628 618332. 2139.56 8.65 0.605303 0.541596 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.28 0.14 0.24 -1 -1 0.28 0.0541885 0.0487864 181 90 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 8.62 vpr 55.59 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30208 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 17.2 MiB 1.53 1340 14763 4284 8311 2168 56.1 MiB 0.26 0.00 3.76655 -130.012 -3.76655 3.76655 1.09 0.00127831 0.00116647 0.0973254 0.0888877 34 3258 47 6.89349e+06 380534 618332. 2139.56 2.27 0.366235 0.328236 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.25 0.13 0.12 -1 -1 0.25 0.0543267 0.0488639 168 64 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.92 vpr 55.23 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1284 16207 4365 9844 1998 56.1 MiB 0.27 0.00 4.62085 -160.706 -4.62085 4.62085 1.08 0.00128894 0.00118268 0.105784 0.0971168 38 2889 43 6.89349e+06 380534 678818. 2348.85 2.56 0.307527 0.27659 26626 170182 -1 2536 20 1893 2539 183204 39509 4.03796 4.03796 -157.104 -4.03796 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0476485 0.0427974 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.19 vpr 56.18 MiB 0.06 7228 -1 -1 1 0.03 -1 -1 30496 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 17.8 MiB 1.99 1764 15215 4236 8627 2352 56.2 MiB 0.30 0.01 5.15348 -175.341 -5.15348 5.15348 1.09 0.00157225 0.00144247 0.115243 0.105877 34 4947 37 6.89349e+06 436909 618332. 2139.56 4.58 0.495876 0.445826 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.30 0.20 0.18 -1 -1 0.30 0.0654914 0.0590466 220 96 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.35 vpr 55.24 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30420 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 822 6743 1455 4759 529 55.5 MiB 0.12 0.00 3.853 -129.297 -3.853 3.853 1.09 0.00103596 0.000951174 0.0422376 0.0388394 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.98 0.285488 0.255118 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0422428 0.0378346 127 34 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.98 vpr 55.50 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30228 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 17.2 MiB 1.50 1294 17376 6419 8627 2330 56.0 MiB 0.29 0.01 5.00234 -161.335 -5.00234 5.00234 1.09 0.00128033 0.00117244 0.114493 0.105011 34 3454 30 6.89349e+06 380534 618332. 2139.56 3.18 0.40471 0.363917 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0551427 0.0496345 168 64 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 9.20 vpr 55.67 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1356 15391 5368 7626 2397 56.1 MiB 0.26 0.00 4.39449 -148.549 -4.39449 4.39449 1.09 0.00128612 0.00117975 0.0996391 0.0912512 36 3343 28 6.89349e+06 380534 648988. 2245.63 3.06 0.387 0.347517 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0486113 0.0437863 172 63 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.01 vpr 55.45 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 1.16 953 14407 3720 10033 654 55.7 MiB 0.23 0.00 4.3344 -147.594 -4.3344 4.3344 1.08 0.00119106 0.00109412 0.0950427 0.0872857 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.86 0.354269 0.318805 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0503135 0.0452521 147 3 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.25 vpr 55.76 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 17.7 MiB 1.42 1279 18101 5797 9598 2706 56.4 MiB 0.30 0.00 4.41459 -148.068 -4.41459 4.41459 1.09 0.00131683 0.00120707 0.118971 0.109103 34 3456 36 6.89349e+06 394628 618332. 2139.56 2.54 0.429009 0.385815 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0459154 0.0413705 184 96 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.82 vpr 55.71 MiB 0.06 7016 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1221 17635 5673 8836 3126 56.3 MiB 0.26 0.00 4.28929 -146.442 -4.28929 4.28929 1.11 0.00128457 0.00117812 0.114266 0.104817 36 3258 26 6.89349e+06 380534 648988. 2245.63 2.43 0.313952 0.28247 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0613249 0.0551254 169 61 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.42 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.3 MiB 1.54 1303 7027 1560 5110 357 56.2 MiB 0.15 0.00 3.72045 -130.455 -3.72045 3.72045 1.09 0.00130943 0.00120185 0.048371 0.0443903 34 3432 32 6.89349e+06 380534 618332. 2139.56 2.40 0.351655 0.315636 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0498393 0.0449185 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.25 vpr 55.33 MiB 0.05 7020 -1 -1 1 0.04 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.48 1190 14518 4171 8562 1785 56.1 MiB 0.24 0.00 4.63815 -161.109 -4.63815 4.63815 1.09 0.00124974 0.00114671 0.0956139 0.0877817 34 2867 24 6.89349e+06 338252 618332. 2139.56 2.30 0.362923 0.326283 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0491654 0.0443053 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.86 vpr 55.58 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.18 1201 13351 3240 8446 1665 56.2 MiB 0.22 0.00 4.60525 -158.398 -4.60525 4.60525 1.08 0.00130803 0.0012003 0.0889713 0.081623 36 3088 18 6.89349e+06 380534 648988. 2245.63 4.98 0.491722 0.441103 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.28 0.13 0.27 -1 -1 0.28 0.0556249 0.050024 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.88 vpr 55.80 MiB 0.07 7292 -1 -1 1 0.03 -1 -1 30276 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 17.5 MiB 1.17 1470 18625 5270 10765 2590 56.2 MiB 0.31 0.01 5.00359 -155.604 -5.00359 5.00359 1.08 0.00139104 0.00127576 0.124965 0.114594 34 3523 29 6.89349e+06 436909 618332. 2139.56 2.38 0.434487 0.390182 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0600898 0.0541227 195 122 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.20 vpr 55.93 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 17.5 MiB 2.41 1648 15391 4130 9133 2128 56.3 MiB 0.28 0.01 4.77885 -161.828 -4.77885 4.77885 1.09 0.00136045 0.00124719 0.106623 0.0977718 36 3608 22 6.89349e+06 380534 648988. 2245.63 4.75 0.466559 0.41752 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0585695 0.0526883 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.73 vpr 55.03 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1067 16081 5068 9178 1835 55.6 MiB 0.23 0.00 3.68745 -131.866 -3.68745 3.68745 1.10 0.00105294 0.00096593 0.093125 0.0854001 34 2400 20 6.89349e+06 295971 618332. 2139.56 2.08 0.309355 0.277793 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0376215 0.0337705 127 34 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.10 vpr 55.59 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1122 7711 1541 6020 150 55.9 MiB 0.14 0.00 4.29439 -143.523 -4.29439 4.29439 1.12 0.00116796 0.00106959 0.0514201 0.0470992 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.06 0.304549 0.271604 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.044221 0.0397047 154 94 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.87 vpr 55.89 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30788 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 17.7 MiB 1.60 1537 17347 5978 9037 2332 56.6 MiB 0.36 0.01 5.35709 -181.872 -5.35709 5.35709 1.12 0.00152315 0.00139855 0.127188 0.116848 38 3731 22 6.89349e+06 422815 678818. 2348.85 2.37 0.37723 0.340825 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0627866 0.0566334 209 65 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 9.12 vpr 55.66 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.63 1176 14295 4272 7910 2113 56.1 MiB 0.24 0.00 3.7808 -134.415 -3.7808 3.7808 1.09 0.00123057 0.00112515 0.0947122 0.0869107 34 2997 45 6.89349e+06 324158 618332. 2139.56 3.00 0.402892 0.361698 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.26 0.15 0.25 -1 -1 0.26 0.0575797 0.0517842 156 34 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 7.85 vpr 55.17 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 17.0 MiB 1.01 932 11809 3108 7963 738 55.6 MiB 0.17 0.00 4.33203 -134.423 -4.33203 4.33203 1.09 0.00100618 0.000923045 0.0586693 0.0537704 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.92 0.266286 0.238039 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.040118 0.0359259 129 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 11.33 vpr 56.06 MiB 0.05 7380 -1 -1 1 0.04 -1 -1 30940 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 18.0 MiB 1.63 1787 18111 5206 10704 2201 56.3 MiB 0.36 0.01 5.73258 -193.193 -5.73258 5.73258 1.09 0.00162988 0.00149502 0.133375 0.12236 36 4099 45 6.89349e+06 493284 648988. 2245.63 3.85 0.455695 0.408907 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0701517 0.0631746 239 127 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.61 vpr 55.50 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.25 1091 13143 3864 7923 1356 56.2 MiB 0.23 0.00 4.41749 -154.465 -4.41749 4.41749 1.09 0.00126244 0.00115915 0.0921316 0.0845973 34 2892 26 6.89349e+06 324158 618332. 2139.56 2.33 0.365643 0.32913 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.051862 0.0467176 159 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.85 vpr 55.09 MiB 0.05 6700 -1 -1 1 0.04 -1 -1 30164 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.6 MiB 0.52 849 10087 2557 6780 750 55.2 MiB 0.15 0.00 3.73565 -131.011 -3.73565 3.73565 1.11 0.00102424 0.000940448 0.0484455 0.0444971 30 2269 22 6.89349e+06 465097 556674. 1926.21 1.31 0.175297 0.157406 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.037593 0.0337028 123 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 9.46 vpr 55.50 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30816 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 17.7 MiB 1.74 1275 12273 3390 7733 1150 56.4 MiB 0.24 0.00 5.39711 -179.414 -5.39711 5.39711 1.09 0.0014575 0.00134056 0.089363 0.0822349 34 3822 27 6.89349e+06 408721 618332. 2139.56 3.26 0.343587 0.309359 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0631185 0.0568883 194 34 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 6.44 vpr 55.20 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 0.74 787 10056 2193 7590 273 55.5 MiB 0.15 0.00 3.8468 -135.678 -3.8468 3.8468 1.09 0.000999332 0.000917136 0.0603931 0.0554682 34 2224 26 6.89349e+06 225501 618332. 2139.56 2.16 0.276526 0.247677 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0439163 0.0394186 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.99 vpr 55.29 MiB 0.06 6920 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.7 MiB 1.08 801 8131 1824 5536 771 55.3 MiB 0.12 0.00 3.71635 -120.03 -3.71635 3.71635 1.09 0.00101184 0.000927559 0.0494515 0.0454071 36 2120 22 6.89349e+06 267783 648988. 2245.63 4.76 0.349204 0.31149 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0379791 0.0340425 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.30 vpr 55.68 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30164 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1254 15203 3953 9019 2231 56.3 MiB 0.24 0.00 4.1318 -129.307 -4.1318 4.1318 1.12 0.00124063 0.00113748 0.0945359 0.0866537 34 2921 25 6.89349e+06 436909 618332. 2139.56 2.20 0.366711 0.329456 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0212634 0.018888 171 88 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.69 vpr 55.78 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30496 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1381 16974 4929 9664 2381 56.1 MiB 0.25 0.00 5.29596 -177.687 -5.29596 5.29596 1.09 0.00130373 0.00119607 0.114648 0.105129 36 3381 23 6.89349e+06 366440 648988. 2245.63 2.68 0.394291 0.354428 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0563627 0.0507202 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.72 vpr 55.70 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30600 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.5 MiB 1.50 1376 18180 6112 9250 2818 56.5 MiB 0.28 0.01 5.13064 -174.448 -5.13064 5.13064 1.07 0.00131112 0.00120263 0.0947669 0.0865421 34 3618 39 6.89349e+06 366440 618332. 2139.56 2.80 0.405032 0.363419 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.053927 0.0485617 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.73 vpr 55.24 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 17.0 MiB 1.12 1013 14221 3579 9597 1045 56.0 MiB 0.21 0.00 4.30029 -147.314 -4.30029 4.30029 1.09 0.00111044 0.00101824 0.0881833 0.0808069 34 2793 24 6.89349e+06 295971 618332. 2139.56 2.35 0.323991 0.290391 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419937 0.0376607 141 65 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.44 vpr 55.58 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 17.1 MiB 1.50 1168 10501 2617 6825 1059 55.9 MiB 0.18 0.00 4.23729 -139.76 -4.23729 4.23729 1.11 0.00137437 0.00127647 0.0708424 0.0650004 34 2811 21 6.89349e+06 310065 618332. 2139.56 2.10 0.269718 0.240718 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456469 0.0408783 146 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 8.35 vpr 55.36 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30256 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 17.0 MiB 1.70 1158 18043 5948 9235 2860 55.9 MiB 0.27 0.00 3.9471 -130.183 -3.9471 3.9471 1.08 0.00122519 0.00112439 0.11169 0.102532 36 2742 19 6.89349e+06 408721 648988. 2245.63 2.37 0.362352 0.326176 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.28 0.10 0.26 -1 -1 0.28 0.0413773 0.0369874 164 60 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 7.08 vpr 55.29 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30336 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 17.0 MiB 1.11 970 11031 2869 6600 1562 55.9 MiB 0.16 0.00 4.51585 -132.654 -4.51585 4.51585 1.11 0.00111305 0.00102216 0.0667786 0.0613647 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.41 0.209629 0.188964 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0458097 0.041161 145 34 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.56 vpr 55.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 29948 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 16.9 MiB 1.78 1087 9083 2557 5800 726 55.8 MiB 0.15 0.00 4.36859 -139.508 -4.36859 4.36859 1.09 0.00106209 0.000973869 0.0563589 0.051678 36 2461 21 6.89349e+06 295971 648988. 2245.63 2.12 0.228674 0.204922 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0385918 0.0346276 136 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.96 vpr 55.76 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 17.2 MiB 1.55 1180 8827 2269 5871 687 56.0 MiB 0.16 0.01 3.8008 -130.21 -3.8008 3.8008 1.07 0.00158299 0.00142968 0.0579837 0.0530433 34 2947 27 6.89349e+06 295971 618332. 2139.56 2.31 0.264166 0.236237 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0432588 0.0387779 150 91 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.79 vpr 55.23 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.66 1032 15180 4497 8229 2454 55.8 MiB 0.22 0.00 4.35445 -144.691 -4.35445 4.35445 1.09 0.00117601 0.00108136 0.0795239 0.0730612 28 3116 24 6.89349e+06 521472 531479. 1839.03 2.63 0.222983 0.201123 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0514867 0.046279 151 4 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.37 vpr 55.52 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30536 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1263 12351 3110 8140 1101 56.1 MiB 0.22 0.00 4.78058 -162.367 -4.78058 4.78058 1.09 0.00131769 0.0012077 0.0840691 0.0770435 34 3370 34 6.89349e+06 366440 618332. 2139.56 2.56 0.388503 0.348521 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.27 0.10 0.21 -1 -1 0.27 0.0389661 0.0348911 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.13 vpr 55.86 MiB 0.07 7176 -1 -1 1 0.03 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1405 10743 3107 6650 986 56.2 MiB 0.20 0.01 4.9601 -169.723 -4.9601 4.9601 1.11 0.00131492 0.00120643 0.0720409 0.065997 36 3352 21 6.89349e+06 366440 648988. 2245.63 3.60 0.358137 0.322067 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.30 0.16 0.25 -1 -1 0.30 0.0608626 0.054749 171 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.15 vpr 55.64 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 17.5 MiB 1.61 1306 10087 2279 7315 493 56.3 MiB 0.19 0.01 4.3224 -145.723 -4.3224 4.3224 1.08 0.00129052 0.00118486 0.0668803 0.0614013 34 4019 38 6.89349e+06 380534 618332. 2139.56 3.47 0.371649 0.333465 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0554955 0.0499365 172 65 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.73 vpr 55.37 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30232 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.51 814 9181 2458 5686 1037 55.5 MiB 0.15 0.00 3.809 -121.257 -3.809 3.809 1.08 0.00100824 0.000924304 0.0557543 0.0511823 34 2414 23 6.89349e+06 267783 618332. 2139.56 2.16 0.269852 0.241306 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0365064 0.0327872 122 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 8.79 vpr 56.03 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30300 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 17.5 MiB 2.06 1287 12568 3293 7724 1551 56.2 MiB 0.21 0.00 5.05854 -160.711 -5.05854 5.05854 1.09 0.00125387 0.00115149 0.0843199 0.0774406 34 3215 23 6.89349e+06 366440 618332. 2139.56 2.50 0.340498 0.306093 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.0222602 0.0197516 165 63 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.25 vpr 55.67 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30764 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57884 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 17.7 MiB 1.06 1479 11383 3062 7492 829 56.5 MiB 0.21 0.00 4.57601 -155.587 -4.57601 4.57601 1.09 0.00143785 0.00131832 0.080564 0.0738535 36 3485 21 6.89349e+06 422815 648988. 2245.63 4.99 0.520318 0.465343 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0610931 0.0546763 204 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.41 vpr 55.45 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30696 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1301 16445 5093 9336 2016 56.2 MiB 0.28 0.00 5.17904 -171.173 -5.17904 5.17904 1.08 0.00132261 0.00121214 0.108678 0.0996245 36 3067 22 6.89349e+06 408721 648988. 2245.63 4.95 0.508678 0.456582 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0546629 0.0492368 186 94 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.88 vpr 56.05 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 17.3 MiB 1.90 1252 12351 3368 8179 804 56.2 MiB 0.22 0.00 4.25135 -136.296 -4.25135 4.25135 1.08 0.00127 0.00116465 0.081697 0.0748844 34 3685 43 6.89349e+06 394628 618332. 2139.56 3.15 0.346071 0.310579 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0500565 0.0450053 175 92 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.52 vpr 55.81 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30440 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.1 MiB 1.62 1349 14160 4180 8412 1568 56.1 MiB 0.25 0.00 5.11687 -171.214 -5.11687 5.11687 1.08 0.001269 0.00116058 0.0954561 0.087521 34 3581 27 6.89349e+06 366440 618332. 2139.56 2.91 0.385601 0.34695 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0522007 0.047049 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 8.00 vpr 55.58 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30184 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1337 17431 5595 9274 2562 56.0 MiB 0.20 0.00 4.49555 -136.793 -4.49555 4.49555 1.10 0.00122769 0.00112596 0.066125 0.0603478 34 3073 24 6.89349e+06 422815 618332. 2139.56 2.20 0.331232 0.296619 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0506274 0.0454793 170 88 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.67 vpr 55.18 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.49 851 10744 3065 7267 412 55.3 MiB 0.16 0.00 3.7888 -133.854 -3.7888 3.7888 1.08 0.000996222 0.000914601 0.0649002 0.0595895 34 2305 21 6.89349e+06 225501 618332. 2139.56 2.05 0.2735 0.245129 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0378247 0.0339311 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 9.06 vpr 55.76 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 17.3 MiB 1.42 1266 16411 5685 8276 2450 56.3 MiB 0.28 0.00 5.17997 -174.972 -5.17997 5.17997 1.09 0.00132604 0.00121422 0.109804 0.100525 34 3964 24 6.89349e+06 380534 618332. 2139.56 3.37 0.398108 0.357985 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0563244 0.0507129 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 10.05 vpr 55.77 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 17.6 MiB 2.37 1294 9791 2343 6863 585 56.2 MiB 0.19 0.00 5.01095 -168.663 -5.01095 5.01095 1.08 0.00132154 0.00121336 0.066427 0.0609533 34 3734 27 6.89349e+06 352346 618332. 2139.56 3.10 0.355716 0.319354 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.28 0.16 0.24 -1 -1 0.28 0.0554544 0.0499788 176 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.71 vpr 55.19 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30304 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 971 13043 4021 6975 2047 55.7 MiB 0.19 0.00 3.51612 -116.281 -3.51612 3.51612 1.09 0.001033 0.000946224 0.0801956 0.0734596 34 2366 21 6.89349e+06 267783 618332. 2139.56 2.07 0.301933 0.269661 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405084 0.0363058 128 55 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.57 vpr 55.08 MiB 0.05 6776 -1 -1 1 0.03 -1 -1 30260 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.0 MiB 0.67 734 11604 2641 7381 1582 55.5 MiB 0.16 0.00 3.8218 -128.161 -3.8218 3.8218 1.09 0.000980043 0.000900155 0.0685767 0.0630281 32 2249 20 6.89349e+06 239595 586450. 2029.24 1.28 0.189069 0.170303 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0397498 0.0355595 112 4 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 8.38 vpr 55.54 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 17.4 MiB 1.29 1234 14147 4178 8444 1525 56.2 MiB 0.23 0.00 4.31849 -141.833 -4.31849 4.31849 1.08 0.00124301 0.0011412 0.0920639 0.0844442 34 3001 25 6.89349e+06 352346 618332. 2139.56 2.25 0.362835 0.326393 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0551296 0.0495841 158 59 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.14 vpr 55.73 MiB 0.06 7104 -1 -1 1 0.03 -1 -1 30216 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1314 10341 2747 6842 752 56.0 MiB 0.19 0.01 5.10864 -160.907 -5.10864 5.10864 1.09 0.00128119 0.00117403 0.0705993 0.0646762 34 3382 28 6.89349e+06 366440 618332. 2139.56 2.66 0.361719 0.324473 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0528448 0.0476058 170 88 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.63 vpr 55.45 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.3 MiB 0.73 1292 15419 3797 10101 1521 56.2 MiB 0.25 0.01 4.85078 -164.688 -4.85078 4.85078 1.11 0.00136602 0.00125634 0.0893361 0.082034 34 3291 24 6.89349e+06 577847 618332. 2139.56 2.67 0.382748 0.345095 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0586736 0.0529735 183 3 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.27 vpr 55.33 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30356 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1124 9395 2323 6078 994 56.2 MiB 0.16 0.00 3.8961 -125.22 -3.8961 3.8961 1.09 0.00120379 0.00110474 0.0602169 0.0552565 34 2687 35 6.89349e+06 380534 618332. 2139.56 2.29 0.338951 0.303629 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051632 0.0463934 160 59 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.42 vpr 55.05 MiB 0.06 6960 -1 -1 1 0.03 -1 -1 30424 -1 -1 22 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 915 13031 5095 6351 1585 55.1 MiB 0.17 0.00 4.34539 -126.288 -4.34539 4.34539 1.09 0.00092097 0.000844866 0.0714774 0.0656212 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.94 0.260402 0.233169 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0360837 0.0322635 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.25 vpr 56.22 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30416 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 17.8 MiB 1.58 1748 16302 4126 10044 2132 56.4 MiB 0.34 0.01 5.09354 -170.611 -5.09354 5.09354 1.09 0.00156689 0.00143787 0.115255 0.105667 34 4285 25 6.89349e+06 451003 618332. 2139.56 3.18 0.45793 0.412026 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0672702 0.0606111 219 95 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.65 vpr 55.59 MiB 0.04 7276 -1 -1 1 0.03 -1 -1 30436 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 17.6 MiB 1.95 1467 12661 2948 8528 1185 56.5 MiB 0.25 0.00 5.14784 -166.315 -5.14784 5.14784 1.15 0.00140194 0.00128578 0.0926005 0.0850475 36 3334 29 6.89349e+06 436909 648988. 2245.63 5.38 0.571313 0.511139 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0556775 0.0501013 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.16 vpr 55.40 MiB 0.02 7036 -1 -1 1 0.02 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 17.3 MiB 1.79 1133 9914 2313 7132 469 56.1 MiB 0.16 0.00 4.28535 -139.234 -4.28535 4.28535 1.09 0.00112622 0.00103138 0.0620172 0.0567627 34 3076 43 6.89349e+06 310065 618332. 2139.56 2.56 0.338411 0.302184 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0426553 0.0382436 150 89 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.25 vpr 55.34 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30224 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.56 1114 12951 3612 7720 1619 56.1 MiB 0.22 0.00 4.53785 -150.754 -4.53785 4.53785 1.09 0.00121587 0.00111611 0.0853887 0.0784129 34 2799 24 6.89349e+06 324158 618332. 2139.56 2.14 0.350699 0.315667 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0482091 0.0434212 151 34 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 8.12 vpr 55.82 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30572 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 17.6 MiB 1.42 1475 19413 5609 11709 2095 56.4 MiB 0.35 0.01 4.64537 -154.979 -4.64537 4.64537 1.09 0.00144552 0.00131788 0.136575 0.125321 34 3553 32 6.89349e+06 422815 618332. 2139.56 2.53 0.467214 0.420492 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0662385 0.0597017 193 64 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.06 vpr 55.57 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30356 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 17.2 MiB 1.70 1223 16773 5429 8542 2802 56.0 MiB 0.26 0.00 4.28025 -135.791 -4.28025 4.28025 1.09 0.00120646 0.00110665 0.104019 0.0953862 36 2894 24 6.89349e+06 394628 648988. 2245.63 2.48 0.362663 0.325817 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0455944 0.0409159 162 61 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 9.03 vpr 55.77 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 17.2 MiB 1.34 1373 17066 5393 8866 2807 56.2 MiB 0.32 0.00 5.03124 -168.563 -5.03124 5.03124 1.11 0.00130489 0.00119569 0.114383 0.104809 34 3693 35 6.89349e+06 394628 618332. 2139.56 3.08 0.423254 0.380489 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.26 0.14 0.26 -1 -1 0.26 0.0565055 0.0508795 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 9.65 vpr 55.79 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30256 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57644 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.4 MiB 1.69 1418 13147 3928 7969 1250 56.3 MiB 0.23 0.01 3.78872 -134.171 -3.78872 3.78872 1.10 0.00165544 0.00153095 0.0894017 0.0820227 34 3370 23 6.89349e+06 380534 618332. 2139.56 2.33 0.364967 0.327888 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.26 0.13 0.26 -1 -1 0.26 0.054382 0.0489921 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 7.07 vpr 55.32 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 1.16 802 14322 5252 6511 2559 55.3 MiB 0.19 0.00 3.809 -119.785 -3.809 3.809 0.76 0.000982051 0.000901084 0.0815792 0.0749142 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.91 0.288328 0.25819 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0368065 0.0329674 118 34 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.91 vpr 55.52 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 17.0 MiB 1.06 1059 7038 1561 5080 397 55.5 MiB 0.12 0.00 4.31213 -129.707 -4.31213 4.31213 1.09 0.00106543 0.000975409 0.0437521 0.0400533 34 2689 32 6.89349e+06 281877 618332. 2139.56 2.38 0.28569 0.254486 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0373944 0.033602 136 82 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.00 vpr 55.47 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30460 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 17.1 MiB 1.26 1144 15255 6301 7544 1410 55.9 MiB 0.24 0.00 4.60015 -151.135 -4.60015 4.60015 1.08 0.00122223 0.00112177 0.0968273 0.0887116 36 2816 23 6.89349e+06 338252 648988. 2245.63 5.06 0.471461 0.423082 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0463702 0.0417816 154 34 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.47 vpr 55.15 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30332 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 16.7 MiB 1.12 955 13610 4945 6467 2198 55.3 MiB 0.19 0.00 3.4839 -106.878 -3.4839 3.4839 1.09 0.000975979 0.000894182 0.0791014 0.0724981 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.95 0.287517 0.257116 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0349151 0.0312405 123 56 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 8.27 vpr 55.07 MiB 0.04 6752 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 16.8 MiB 1.65 1000 12186 3922 6390 1874 55.4 MiB 0.20 0.00 3.839 -135.657 -3.839 3.839 1.11 0.00106518 0.00097665 0.0836756 0.0767115 34 2613 22 6.89349e+06 253689 618332. 2139.56 2.30 0.308519 0.276612 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.046297 0.0414268 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 8.09 vpr 55.59 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 17.3 MiB 1.51 1201 16773 5048 9300 2425 56.1 MiB 0.27 0.00 4.20938 -143.511 -4.20938 4.20938 1.09 0.00126058 0.00115708 0.110245 0.101123 36 2859 23 6.89349e+06 380534 648988. 2245.63 2.78 0.378429 0.340299 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0537475 0.048345 164 64 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.80 vpr 55.02 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 1.31 877 7953 1966 5579 408 55.4 MiB 0.12 0.00 3.31212 -108.619 -3.31212 3.31212 1.09 0.00101911 0.000930005 0.0467043 0.0428072 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.96 0.260412 0.232318 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0366874 0.032865 125 55 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.79 vpr 55.64 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 17.3 MiB 1.46 1287 17711 6388 9306 2017 56.0 MiB 0.31 0.00 4.20729 -140.905 -4.20729 4.20729 1.11 0.00123482 0.00113152 0.118512 0.108567 34 3044 21 6.89349e+06 352346 618332. 2139.56 2.60 0.378875 0.340952 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0493652 0.044415 162 65 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.06 vpr 55.88 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30184 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 17.6 MiB 1.64 1441 16921 4862 9627 2432 56.3 MiB 0.30 0.00 5.00842 -163.951 -5.00842 5.00842 1.10 0.00133268 0.00121993 0.109683 0.100391 36 3492 23 6.89349e+06 436909 648988. 2245.63 3.27 0.395273 0.355127 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.30 0.14 0.26 -1 -1 0.30 0.0440489 0.0392221 185 93 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.33 vpr 55.62 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.29 1150 11245 3095 6987 1163 55.8 MiB 0.17 0.00 3.53115 -123.245 -3.53115 3.53115 1.08 0.00105584 0.000966267 0.068317 0.0625923 34 2943 19 6.89349e+06 295971 618332. 2139.56 2.39 0.290938 0.26024 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0374803 0.0336655 137 61 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.96 vpr 55.12 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.18 1121 13443 3684 8167 1592 56.1 MiB 0.21 0.00 3.817 -131.483 -3.817 3.817 1.12 0.00110775 0.00101467 0.0839381 0.076901 34 2949 27 6.89349e+06 281877 618332. 2139.56 2.44 0.327997 0.293909 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456433 0.0409209 139 63 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.65 vpr 55.34 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30620 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.30 1272 13147 3375 7731 2041 56.2 MiB 0.22 0.00 4.61515 -160.202 -4.61515 4.61515 1.11 0.00130029 0.00119203 0.0876541 0.0803849 36 3093 23 6.89349e+06 380534 648988. 2245.63 2.69 0.372583 0.335185 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.24 0.07 0.13 -1 -1 0.24 0.029553 0.0264522 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 8.30 vpr 55.59 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30428 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 17.2 MiB 1.46 1161 15639 4794 8641 2204 55.9 MiB 0.25 0.00 3.67945 -117.378 -3.67945 3.67945 1.10 0.00119996 0.00110142 0.100791 0.0924976 30 2520 23 6.89349e+06 366440 556674. 1926.21 1.33 0.254983 0.230021 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0452376 0.0406706 157 62 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.42 vpr 55.81 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30540 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 17.8 MiB 1.24 1517 16893 4857 9388 2648 56.5 MiB 0.29 0.00 4.97404 -168.093 -4.97404 4.97404 1.08 0.00144341 0.00132428 0.119725 0.109751 36 3623 47 6.89349e+06 408721 648988. 2245.63 2.89 0.482717 0.432985 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0622312 0.0558943 203 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.93 vpr 55.14 MiB 0.04 6816 -1 -1 1 0.03 -1 -1 30164 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.7 MiB 0.53 803 5149 1186 3599 364 55.4 MiB 0.08 0.00 2.99217 -104.791 -2.99217 2.99217 1.08 0.000928555 0.000852928 0.030521 0.0280694 30 2012 19 6.89349e+06 225501 556674. 1926.21 1.21 0.142973 0.128065 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0395679 0.0353567 104 4 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.82 vpr 56.04 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30252 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 17.2 MiB 1.45 1396 18101 5815 9868 2418 56.2 MiB 0.29 0.00 5.41163 -177.078 -5.41163 5.41163 1.09 0.0013281 0.0012184 0.11985 0.109888 34 3746 48 6.89349e+06 394628 618332. 2139.56 2.72 0.458309 0.411863 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0566334 0.0509007 179 92 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.60 vpr 55.97 MiB 0.05 6876 -1 -1 1 0.04 -1 -1 29992 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1193 17248 5142 9796 2310 56.0 MiB 0.27 0.00 4.89074 -162.672 -4.89074 4.89074 1.08 0.00118909 0.00108889 0.108382 0.0992639 36 3213 26 6.89349e+06 338252 648988. 2245.63 5.41 0.485078 0.434278 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0511288 0.0458688 161 96 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 8.40 vpr 55.50 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.60 1163 10187 2742 6187 1258 56.2 MiB 0.18 0.00 3.75965 -128.904 -3.75965 3.75965 1.10 0.0012926 0.00118584 0.0699471 0.0641767 34 3025 27 6.89349e+06 352346 618332. 2139.56 2.23 0.355152 0.318879 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0488732 0.0440051 170 65 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.90 vpr 56.08 MiB 0.05 7292 -1 -1 1 0.04 -1 -1 30636 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1578 21409 7235 11132 3042 56.0 MiB 0.36 0.01 5.18464 -176.869 -5.18464 5.18464 1.12 0.00157643 0.00144788 0.128716 0.117997 36 3817 25 6.89349e+06 465097 648988. 2245.63 3.87 0.48275 0.43468 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0695126 0.062584 224 96 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.52 vpr 54.93 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 29948 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 0.97 774 12860 4018 7384 1458 55.2 MiB 0.14 0.00 3.08706 -94.2237 -3.08706 3.08706 1.09 0.000820142 0.000750211 0.0660086 0.0604088 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.74 0.233137 0.207128 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.26 0.05 0.25 -1 -1 0.26 0.0255526 0.0227796 93 56 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 7.07 vpr 55.38 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30312 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 16.7 MiB 1.04 936 13763 4663 7110 1990 55.4 MiB 0.19 0.00 4.23979 -138.497 -4.23979 4.23979 1.09 0.00100287 0.000919115 0.0793302 0.0727941 34 2090 22 6.89349e+06 295971 618332. 2139.56 2.00 0.290228 0.259714 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442889 0.0396072 124 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.45 vpr 55.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 29920 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 16.8 MiB 1.93 1009 8448 2021 6048 379 55.4 MiB 0.15 0.00 4.33609 -148.866 -4.33609 4.33609 1.13 0.00106811 0.000979928 0.052345 0.0479884 36 2726 23 6.89349e+06 253689 648988. 2245.63 3.09 0.275449 0.246391 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0472281 0.0422791 129 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.80 vpr 55.16 MiB 0.07 6936 -1 -1 1 0.03 -1 -1 30280 -1 -1 24 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 16.7 MiB 1.12 636 10231 2621 6138 1472 55.1 MiB 0.14 0.00 3.787 -96.2626 -3.787 3.787 1.09 0.000858878 0.000788419 0.0526702 0.0483437 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.90 0.23155 0.206486 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.28 0.08 0.24 -1 -1 0.28 0.035311 0.0314398 107 34 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.79 vpr 55.65 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30308 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 17.5 MiB 2.33 1453 17273 5845 8574 2854 56.2 MiB 0.31 0.01 4.55715 -154.068 -4.55715 4.55715 1.09 0.00135973 0.00124667 0.11696 0.107233 38 3543 25 6.89349e+06 394628 678818. 2348.85 5.56 0.518162 0.464115 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.29 0.15 0.29 -1 -1 0.29 0.0623778 0.056352 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 9.15 vpr 56.19 MiB 0.11 7080 -1 -1 1 0.64 -1 -1 30056 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1285 13758 3623 8223 1912 56.2 MiB 0.24 0.00 4.84654 -156.987 -4.84654 4.84654 0.94 0.00133329 0.00122224 0.0946318 0.0867577 34 3577 46 6.89349e+06 380534 618332. 2139.56 2.58 0.376091 0.337973 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.26 0.18 0.24 -1 -1 0.26 0.0702979 0.063149 183 94 29 29 93 31 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 7.95 vpr 55.27 MiB 0.04 6676 -1 -1 14 0.26 -1 -1 32876 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1354 8532 2094 5512 926 55.6 MiB 0.14 0.00 8.19013 -165.934 -8.19013 8.19013 1.05 0.00158061 0.00145029 0.0717353 0.065761 28 3693 28 6.55708e+06 313430 500653. 1732.36 5.28 0.53329 0.478568 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0646335 0.0584114 186 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 8.13 vpr 55.40 MiB 0.02 6852 -1 -1 14 0.28 -1 -1 32752 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56836 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.41 1292 15824 4267 9033 2524 55.5 MiB 0.23 0.00 8.12966 -162.719 -8.12966 8.12966 1.05 0.00156893 0.00143869 0.124562 0.114222 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.81 0.345944 0.31248 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0590807 0.053456 189 189 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 8.11 vpr 55.46 MiB 0.05 6648 -1 -1 11 0.21 -1 -1 32868 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 17.1 MiB 0.34 1266 13157 3416 7667 2074 55.6 MiB 0.20 0.00 6.4728 -136.716 -6.4728 6.4728 1.07 0.00155511 0.00142484 0.10819 0.0990878 36 3746 35 6.55708e+06 301375 612192. 2118.31 20.01 0.73914 0.663365 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0666209 0.0602227 180 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.29 vpr 55.38 MiB 0.02 6828 -1 -1 12 0.33 -1 -1 32788 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1320 8130 2002 5291 837 55.5 MiB 0.13 0.00 7.77357 -147.192 -7.77357 7.77357 1.06 0.0015693 0.00143952 0.068828 0.0631923 36 3542 23 6.55708e+06 349595 612192. 2118.31 5.81 0.520222 0.467177 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0568462 0.051505 185 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 8.23 vpr 55.54 MiB 0.06 6780 -1 -1 13 0.31 -1 -1 32904 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57504 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 17.5 MiB 0.42 1568 9951 2486 6481 984 56.2 MiB 0.17 0.00 7.68511 -161.036 -7.68511 7.68511 1.05 0.00182242 0.00167093 0.0887681 0.0814162 30 4458 47 6.55708e+06 385760 526063. 1820.29 2.80 0.40244 0.363148 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0723155 0.0655736 223 223 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.87 vpr 55.42 MiB 0.04 6836 -1 -1 12 0.27 -1 -1 32804 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 16.9 MiB 0.46 1500 9773 2280 6498 995 55.8 MiB 0.15 0.00 7.53766 -152.093 -7.53766 7.53766 1.10 0.00168294 0.00154249 0.07802 0.0714763 36 3688 23 6.55708e+06 409870 612192. 2118.31 3.42 0.443701 0.399337 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0557222 0.0506649 209 205 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.44 vpr 55.06 MiB 0.04 6600 -1 -1 12 0.20 -1 -1 32292 -1 -1 27 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 16.4 MiB 0.27 1024 5945 1385 4013 547 54.9 MiB 0.11 0.00 7.15274 -128.455 -7.15274 7.15274 1.07 0.00119071 0.00109273 0.0512681 0.0471054 28 3014 27 6.55708e+06 325485 500653. 1732.36 2.60 0.218082 0.196302 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.24 0.11 0.18 -1 -1 0.24 0.0428581 0.0387766 136 131 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 8.79 vpr 55.01 MiB 0.05 6668 -1 -1 11 0.18 -1 -1 32868 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 16.7 MiB 0.25 1220 9679 2547 5973 1159 55.4 MiB 0.14 0.00 6.45772 -132.139 -6.45772 6.45772 1.05 0.00145854 0.00133623 0.0732423 0.0670701 36 3012 18 6.55708e+06 337540 612192. 2118.31 5.63 0.601053 0.538043 22750 144809 -1 2688 17 1131 3571 200803 45790 5.46178 5.46178 -126.123 -5.46178 0 0 782063. 2706.10 0.27 0.12 0.23 -1 -1 0.27 0.0527168 0.0477184 175 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.15 vpr 55.25 MiB 0.04 6496 -1 -1 12 0.17 -1 -1 32452 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 16.4 MiB 0.32 1146 12373 3633 6385 2355 55.1 MiB 0.16 0.00 7.00181 -148.703 -7.00181 7.00181 1.04 0.00129771 0.00118859 0.086291 0.0790342 28 3391 24 6.55708e+06 301375 500653. 1732.36 2.36 0.258475 0.233153 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.22 0.12 0.15 -1 -1 0.22 0.0496111 0.0449457 145 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.85 vpr 55.20 MiB 0.04 6472 -1 -1 13 0.19 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1098 10979 3065 6306 1608 55.1 MiB 0.16 0.00 7.23855 -159.771 -7.23855 7.23855 1.05 0.00139452 0.00127789 0.0810209 0.0741114 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.66 0.270877 0.243859 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0506487 0.0458149 162 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.58 vpr 54.81 MiB 0.04 6528 -1 -1 12 0.17 -1 -1 32632 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 16.5 MiB 0.36 1073 8868 2309 4974 1585 54.9 MiB 0.12 0.00 7.23424 -146.32 -7.23424 7.23424 0.79 0.00118902 0.00108846 0.061107 0.055947 28 2862 44 6.55708e+06 265210 500653. 1732.36 2.17 0.259268 0.23296 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0408665 0.0369637 132 129 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.14 vpr 55.05 MiB 0.03 6580 -1 -1 12 0.15 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 16.3 MiB 0.21 971 12175 3572 6038 2565 54.9 MiB 0.16 0.00 6.75009 -143.946 -6.75009 6.75009 1.05 0.00121301 0.00111019 0.0828367 0.0757274 36 2632 22 6.55708e+06 253155 612192. 2118.31 4.88 0.417425 0.374254 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.0375322 0.0339784 138 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.45 vpr 55.28 MiB 0.04 6668 -1 -1 13 0.28 -1 -1 32828 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1456 5419 862 4216 341 55.7 MiB 0.10 0.00 7.90792 -162.801 -7.90792 7.90792 1.04 0.00169128 0.00154591 0.0491411 0.0450844 28 4018 41 6.55708e+06 361650 500653. 1732.36 9.66 0.66259 0.594509 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0658684 0.0597542 212 212 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.84 vpr 55.36 MiB 0.05 6720 -1 -1 14 0.31 -1 -1 33244 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 17.1 MiB 0.48 1487 7653 1685 5037 931 55.8 MiB 0.13 0.00 8.67599 -179.222 -8.67599 8.67599 1.05 0.00172626 0.00158108 0.068036 0.0623941 34 4030 26 6.55708e+06 349595 585099. 2024.56 2.53 0.367208 0.330782 22462 138074 -1 3285 20 1626 4702 256491 60555 7.53782 7.53782 -169.858 -7.53782 0 0 742403. 2568.87 0.26 0.17 0.22 -1 -1 0.26 0.0749868 0.0681645 208 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.96 vpr 54.97 MiB 0.04 6508 -1 -1 11 0.17 -1 -1 32488 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1095 15366 4454 8585 2327 55.2 MiB 0.19 0.00 6.42654 -129.9 -6.42654 6.42654 1.06 0.0012954 0.00118776 0.102823 0.0942001 36 2830 20 6.55708e+06 349595 612192. 2118.31 2.20 0.320956 0.289531 22750 144809 -1 2387 14 976 2696 166897 37529 5.60952 5.60952 -124.13 -5.60952 0 0 782063. 2706.10 0.36 0.10 0.23 -1 -1 0.36 0.0414205 0.0376803 160 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.77 vpr 55.51 MiB 0.05 6668 -1 -1 12 0.27 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 16.8 MiB 0.51 1497 7523 1547 5261 715 55.8 MiB 0.13 0.00 7.78498 -159.33 -7.78498 7.78498 1.07 0.00175619 0.00160731 0.0659455 0.0604299 36 3844 37 6.55708e+06 409870 612192. 2118.31 16.38 0.737808 0.6622 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.063637 0.0578131 213 212 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.83 vpr 55.27 MiB 0.03 6744 -1 -1 13 0.26 -1 -1 32756 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.28 1448 9075 2050 5697 1328 55.9 MiB 0.15 0.00 8.28129 -168.719 -8.28129 8.28129 1.07 0.0017541 0.00160687 0.0779001 0.0713393 30 3798 28 6.55708e+06 385760 526063. 1820.29 2.44 0.327316 0.295523 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.07 0.19 -1 -1 0.22 0.0288488 0.0261221 217 217 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.84 vpr 54.79 MiB 0.06 6560 -1 -1 12 0.15 -1 -1 32644 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 16.5 MiB 0.50 1089 8402 1864 6112 426 55.0 MiB 0.12 0.00 7.26292 -158.375 -7.26292 7.26292 1.05 0.00129452 0.00118558 0.0616027 0.0565106 28 3024 19 6.55708e+06 265210 500653. 1732.36 2.07 0.222108 0.200329 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0440985 0.0399784 139 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.87 vpr 54.22 MiB 0.04 6396 -1 -1 10 0.10 -1 -1 32300 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 16.1 MiB 0.13 786 5244 1130 3909 205 54.6 MiB 0.07 0.00 5.1986 -117.15 -5.1986 5.1986 1.05 0.00107964 0.00100519 0.0323955 0.029672 34 2066 32 6.55708e+06 241100 585099. 2024.56 2.18 0.197464 0.175957 22462 138074 -1 1763 15 662 1690 102174 24087 4.711 4.711 -115.001 -4.711 0 0 742403. 2568.87 0.26 0.07 0.22 -1 -1 0.26 0.0297451 0.0267504 96 88 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.57 vpr 54.89 MiB 0.05 6572 -1 -1 13 0.16 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 16.6 MiB 0.36 1123 5079 946 3658 475 55.2 MiB 0.08 0.00 7.44701 -156.373 -7.44701 7.44701 1.11 0.00125172 0.00114618 0.0383243 0.0350854 26 3256 40 6.55708e+06 289320 477104. 1650.88 6.85 0.397369 0.355926 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.23 0.11 0.17 -1 -1 0.23 0.0495813 0.0448564 139 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.35 vpr 55.64 MiB 0.05 6784 -1 -1 13 0.30 -1 -1 32992 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1494 10031 2522 6626 883 55.5 MiB 0.16 0.00 7.77584 -154.394 -7.77584 7.77584 1.05 0.00169368 0.00155236 0.0838518 0.0767855 28 4288 44 6.55708e+06 373705 500653. 1732.36 3.52 0.37137 0.334867 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0731536 0.0661888 208 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 13.77 vpr 55.22 MiB 0.05 6776 -1 -1 13 0.28 -1 -1 33268 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 17.0 MiB 0.42 1626 7973 1601 5735 637 55.8 MiB 0.13 0.00 7.9648 -163.763 -7.9648 7.9648 1.05 0.00168163 0.00154207 0.0645773 0.0591789 34 4543 38 6.55708e+06 409870 585099. 2024.56 13.37 0.687735 0.616575 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.27 0.29 0.23 -1 -1 0.27 0.0932029 0.0842865 207 205 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.36 vpr 54.27 MiB 0.02 6500 -1 -1 9 0.09 -1 -1 32228 -1 -1 21 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 15.8 MiB 0.28 710 10557 2762 6888 907 54.5 MiB 0.10 0.00 4.66154 -94.5374 -4.66154 4.66154 1.05 0.000794834 0.000728345 0.0514945 0.0471739 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.47 0.167994 0.15026 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0240516 0.0215726 83 73 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 7.31 vpr 55.36 MiB 0.05 6568 -1 -1 13 0.30 -1 -1 32732 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1530 4780 793 3650 337 55.9 MiB 0.09 0.00 7.84695 -156.636 -7.84695 7.84695 1.04 0.00169359 0.00155103 0.0445193 0.0408285 26 4457 46 6.55708e+06 361650 477104. 1650.88 9.40 0.580959 0.52066 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.21 0.99 0.17 -1 -1 0.21 0.230626 0.207067 211 210 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.91 vpr 54.23 MiB 0.04 6380 -1 -1 8 0.09 -1 -1 31196 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55496 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 15.6 MiB 0.20 436 8831 2193 4716 1922 54.2 MiB 0.09 0.00 4.66158 -87.3613 -4.66158 4.66158 1.09 0.000805986 0.000737532 0.0431038 0.0395112 30 1374 37 6.55708e+06 204935 526063. 1820.29 4.39 0.292614 0.25928 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.25 0.05 0.20 -1 -1 0.25 0.023032 0.0206286 77 61 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.53 vpr 55.39 MiB 0.05 6804 -1 -1 15 0.24 -1 -1 33024 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 16.3 MiB 0.19 1127 8999 2110 5455 1434 55.0 MiB 0.14 0.00 8.78748 -168.447 -8.78748 8.78748 1.05 0.00143957 0.00132107 0.070012 0.0642632 30 3036 31 6.55708e+06 301375 526063. 1820.29 8.21 0.489584 0.439016 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0568623 0.0513379 161 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.87 vpr 55.17 MiB 0.04 6788 -1 -1 12 0.25 -1 -1 32784 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 16.9 MiB 0.23 1426 7871 1871 5355 645 55.7 MiB 0.14 0.00 6.97141 -150.212 -6.97141 6.97141 1.09 0.00172873 0.00158362 0.0703352 0.064457 30 3857 27 6.55708e+06 373705 526063. 1820.29 13.16 0.575593 0.516835 21886 126133 -1 3289 24 1509 4913 363335 114600 6.49978 6.49978 -148.902 -6.49978 0 0 666494. 2306.21 0.24 0.21 0.20 -1 -1 0.24 0.0840065 0.0758888 218 215 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 6.15 vpr 55.17 MiB 0.05 6776 -1 -1 13 0.27 -1 -1 32692 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 17.0 MiB 0.32 1403 8993 2077 6178 738 55.7 MiB 0.15 0.00 7.73601 -160.617 -7.73601 7.73601 1.06 0.00161024 0.00147568 0.0747439 0.0684968 30 3593 32 6.55708e+06 337540 526063. 1820.29 2.28 0.313714 0.2829 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0610573 0.0553391 196 195 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 8.42 vpr 54.87 MiB 0.04 6484 -1 -1 12 0.16 -1 -1 32308 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1093 9158 2327 6239 592 55.0 MiB 0.13 0.00 6.471 -143.803 -6.471 6.471 1.07 0.00129791 0.00118399 0.0668344 0.061086 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.96 0.285103 0.256331 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0509788 0.0460288 146 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.63 vpr 54.66 MiB 0.04 6636 -1 -1 11 0.15 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1045 6781 1469 4387 925 55.1 MiB 0.09 0.00 6.28146 -130.954 -6.28146 6.28146 1.05 0.00116036 0.00106273 0.0407445 0.0371836 30 2354 17 6.55708e+06 277265 526063. 1820.29 3.57 0.309003 0.276124 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0326225 0.0296412 128 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.48 vpr 55.14 MiB 0.05 6516 -1 -1 11 0.16 -1 -1 32408 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1079 8535 1915 5707 913 55.0 MiB 0.12 0.00 6.57292 -128.193 -6.57292 6.57292 1.07 0.00123926 0.00113506 0.0589558 0.0540407 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.89 0.27648 0.248847 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.24 0.17 0.21 -1 -1 0.24 0.0636049 0.0573838 142 139 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.89 vpr 55.09 MiB 0.02 6484 -1 -1 12 0.17 -1 -1 32576 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 16.7 MiB 0.20 1327 6716 1263 5020 433 55.4 MiB 0.11 0.00 7.20375 -160.021 -7.20375 7.20375 1.06 0.00149369 0.00137023 0.0533185 0.0489103 30 3050 19 6.55708e+06 337540 526063. 1820.29 4.13 0.463944 0.41578 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0564782 0.0508866 180 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.15 vpr 55.05 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32644 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 16.6 MiB 0.26 1072 4244 722 3315 207 55.1 MiB 0.07 0.00 6.41894 -136.128 -6.41894 6.41894 1.06 0.00133016 0.00121814 0.0350244 0.0321211 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.62 0.217672 0.195604 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0584813 0.0527037 147 147 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 5.38 vpr 54.95 MiB 0.04 6576 -1 -1 10 0.14 -1 -1 32656 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 16.6 MiB 0.22 967 12733 4051 6442 2240 55.1 MiB 0.16 0.00 6.08886 -123.876 -6.08886 6.08886 1.05 0.00123814 0.00113338 0.0884426 0.0809489 32 2471 22 6.55708e+06 289320 554710. 1919.41 1.27 0.249715 0.225451 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.27 0.09 0.19 -1 -1 0.27 0.0378687 0.034373 138 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.88 vpr 55.84 MiB 0.05 6972 -1 -1 13 0.32 -1 -1 33208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 17.4 MiB 0.31 1621 5869 1104 4212 553 56.0 MiB 0.11 0.00 7.46683 -155.207 -7.46683 7.46683 1.07 0.00190053 0.00174227 0.0561222 0.0515117 30 3995 44 6.55708e+06 397815 526063. 1820.29 4.01 0.373151 0.336324 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.25 0.15 0.20 -1 -1 0.25 0.0694714 0.0631385 239 239 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 7.11 vpr 55.43 MiB 0.05 6840 -1 -1 13 0.31 -1 -1 33072 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 16.9 MiB 0.39 1508 8283 1888 5355 1040 55.5 MiB 0.14 0.00 8.09706 -175.077 -8.09706 8.09706 1.05 0.00172376 0.00157927 0.073143 0.0670206 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.31 0.391396 0.352633 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.27 0.16 0.23 -1 -1 0.27 0.0658884 0.0598027 203 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.12 vpr 54.86 MiB 0.04 6656 -1 -1 12 0.15 -1 -1 32712 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1096 12568 3446 6926 2196 55.0 MiB 0.16 0.00 6.66868 -144.132 -6.66868 6.66868 1.05 0.00126561 0.00115766 0.0850329 0.0776615 36 2895 29 6.55708e+06 301375 612192. 2118.31 5.07 0.486318 0.435683 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.29 0.10 0.23 -1 -1 0.29 0.0394496 0.0357878 150 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.95 vpr 55.47 MiB 0.05 6756 -1 -1 12 0.28 -1 -1 33128 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1489 8977 2020 5913 1044 55.8 MiB 0.15 0.00 8.10558 -165.766 -8.10558 8.10558 1.07 0.00173681 0.00159288 0.0751733 0.06891 36 3566 22 6.55708e+06 409870 612192. 2118.31 3.77 0.456193 0.410946 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.27 0.13 0.23 -1 -1 0.27 0.0576066 0.0524406 219 219 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 6.77 vpr 55.67 MiB 0.05 6768 -1 -1 14 0.34 -1 -1 33092 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1460 6211 1289 4295 627 55.7 MiB 0.11 0.00 8.35283 -161.679 -8.35283 8.35283 1.06 0.00168193 0.00154283 0.0561068 0.0515012 30 3894 50 6.55708e+06 337540 526063. 1820.29 3.13 0.355242 0.31986 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0602465 0.0547082 194 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 7.58 vpr 55.23 MiB 0.05 6832 -1 -1 13 0.25 -1 -1 32968 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1364 9271 2151 5683 1437 55.4 MiB 0.15 0.00 7.40806 -157.551 -7.40806 7.40806 1.05 0.00152886 0.00139873 0.0760096 0.0694878 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.73 0.292682 0.263514 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.24 0.13 0.21 -1 -1 0.24 0.0555454 0.0503008 181 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.44 vpr 55.41 MiB 0.05 6772 -1 -1 12 0.25 -1 -1 32924 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 17.1 MiB 0.50 1374 13743 3666 8130 1947 55.6 MiB 0.22 0.00 6.76701 -143.203 -6.76701 6.76701 1.06 0.00160907 0.00147604 0.118125 0.108134 34 4200 50 6.55708e+06 361650 585099. 2024.56 5.02 0.530496 0.477192 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0681219 0.0616402 189 189 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 6.20 vpr 55.38 MiB 0.05 6852 -1 -1 12 0.19 -1 -1 32680 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 16.5 MiB 0.26 1252 8278 1977 5044 1257 55.2 MiB 0.13 0.00 7.19338 -143.847 -7.19338 7.19338 1.05 0.00145062 0.00133006 0.0653242 0.05988 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.36 0.239667 0.215853 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0514732 0.0465681 172 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.73 vpr 55.70 MiB 0.05 6824 -1 -1 14 0.43 -1 -1 32512 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.35 1757 10673 2583 7118 972 55.7 MiB 0.19 0.00 8.08019 -170.094 -8.08019 8.08019 1.07 0.00195504 0.00179308 0.0980598 0.0899095 38 4328 19 6.55708e+06 409870 638502. 2209.35 26.22 0.873873 0.786495 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.29 0.17 0.25 -1 -1 0.29 0.0744361 0.0676232 245 245 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 6.07 vpr 54.97 MiB 0.04 6612 -1 -1 11 0.18 -1 -1 32372 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1212 8009 2047 5116 846 55.2 MiB 0.12 0.00 6.43815 -136.573 -6.43815 6.43815 1.05 0.00139448 0.00127896 0.0605636 0.0555217 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.87 0.267 0.240119 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0524819 0.0474584 160 155 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.19 vpr 55.34 MiB 0.05 6924 -1 -1 13 0.27 -1 -1 32904 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1339 4512 785 3381 346 55.4 MiB 0.09 0.00 8.23298 -156.44 -8.23298 8.23298 1.07 0.00157959 0.00143598 0.0410936 0.0378409 36 3361 29 6.55708e+06 325485 612192. 2118.31 4.60 0.406861 0.365593 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.27 0.12 0.25 -1 -1 0.27 0.054486 0.0494655 177 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.51 vpr 55.52 MiB 0.02 6744 -1 -1 12 0.28 -1 -1 32912 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 17.0 MiB 0.35 1513 7973 1697 5548 728 55.6 MiB 0.15 0.00 7.05697 -153.444 -7.05697 7.05697 1.07 0.0017887 0.00163897 0.0691471 0.0634731 34 4231 45 6.55708e+06 409870 585099. 2024.56 4.11 0.475307 0.427004 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.26 0.29 0.22 -1 -1 0.26 0.0996208 0.0902505 227 224 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.98 vpr 55.26 MiB 0.04 6636 -1 -1 13 0.24 -1 -1 32884 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 16.8 MiB 0.18 1286 13340 3362 8056 1922 55.3 MiB 0.21 0.00 7.57452 -156.038 -7.57452 7.57452 1.05 0.0015646 0.0014345 0.115043 0.105414 28 3767 45 6.55708e+06 337540 500653. 1732.36 10.52 0.636032 0.571323 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.22 0.22 0.18 -1 -1 0.22 0.0845574 0.0762556 184 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.97 vpr 55.26 MiB 0.05 6744 -1 -1 13 0.22 -1 -1 32792 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1203 12563 3367 6823 2373 55.5 MiB 0.18 0.00 7.77281 -162.033 -7.77281 7.77281 0.81 0.00150769 0.00138154 0.100441 0.0918099 30 2961 38 6.55708e+06 301375 526063. 1820.29 2.00 0.340434 0.306861 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0471758 0.0428135 175 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.77 vpr 55.30 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 32928 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 17.0 MiB 0.63 1416 10679 2747 6565 1367 55.8 MiB 0.17 0.00 6.86528 -151.049 -6.86528 6.86528 1.05 0.00171815 0.00157454 0.0902988 0.0826979 36 3519 46 6.55708e+06 373705 612192. 2118.31 6.27 0.672632 0.604984 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0600395 0.0546031 205 204 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.19 vpr 55.50 MiB 0.05 6872 -1 -1 13 0.28 -1 -1 32776 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1584 11223 2635 7117 1471 55.4 MiB 0.18 0.00 7.96921 -159.229 -7.96921 7.96921 1.05 0.00170389 0.00156205 0.0965322 0.088456 36 3876 21 6.55708e+06 349595 612192. 2118.31 5.38 0.461336 0.415327 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0620256 0.0563331 205 205 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.86 vpr 55.18 MiB 0.05 6716 -1 -1 14 0.29 -1 -1 32992 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 16.8 MiB 0.38 1228 9197 2464 5958 775 55.3 MiB 0.14 0.00 7.91369 -163.421 -7.91369 7.91369 1.09 0.00149985 0.00136412 0.0750989 0.0687248 28 3563 32 6.55708e+06 301375 500653. 1732.36 3.18 0.299666 0.269764 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.0634698 0.0573009 167 165 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 8.33 vpr 55.39 MiB 0.04 6808 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 16.7 MiB 0.49 1537 7336 1683 5066 587 55.3 MiB 0.12 0.00 8.38432 -170.174 -8.38432 8.38432 1.06 0.00161444 0.00147957 0.062049 0.0568194 38 3362 32 6.55708e+06 361650 638502. 2209.35 5.58 0.582894 0.522708 23326 155178 -1 2978 15 1374 3965 188691 44200 7.21136 7.21136 -157.114 -7.21136 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0534632 0.0485525 199 199 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 8.32 vpr 55.71 MiB 0.03 6836 -1 -1 13 0.28 -1 -1 33120 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 16.9 MiB 0.31 1531 8951 1993 6087 871 55.8 MiB 0.15 0.00 8.45326 -176.134 -8.45326 8.45326 1.09 0.00195245 0.00178634 0.0775527 0.0709209 38 3461 21 6.55708e+06 385760 638502. 2209.35 6.01 0.662124 0.594815 23326 155178 -1 2972 14 1250 4091 193064 44497 7.36616 7.36616 -162.608 -7.36616 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0565557 0.0515565 221 220 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.35 vpr 55.52 MiB 0.04 6780 -1 -1 12 0.33 -1 -1 32684 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1599 7323 1463 5208 652 55.7 MiB 0.15 0.00 7.47193 -159.786 -7.47193 7.47193 1.05 0.00160762 0.00150533 0.074181 0.0680498 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.25 0.41036 0.369942 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.27 0.15 0.23 -1 -1 0.27 0.0647682 0.0588088 231 230 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.10 vpr 54.85 MiB 0.04 6616 -1 -1 11 0.13 -1 -1 32524 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 16.1 MiB 0.20 1043 10883 2916 6057 1910 54.8 MiB 0.14 0.00 5.95009 -133.303 -5.95009 5.95009 1.06 0.00115558 0.0010567 0.0734671 0.0671415 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.40 0.242775 0.218237 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0422223 0.0381188 127 122 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 6.80 vpr 55.13 MiB 0.04 6592 -1 -1 13 0.21 -1 -1 32792 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 16.6 MiB 0.45 1281 6211 1217 4524 470 55.3 MiB 0.10 0.00 7.73937 -166.104 -7.73937 7.73937 1.05 0.00138912 0.00127382 0.0473656 0.0434408 28 3459 26 6.55708e+06 325485 500653. 1732.36 2.44 0.236523 0.212649 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.23 0.15 0.21 -1 -1 0.23 0.0664926 0.0599691 156 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.44 vpr 55.89 MiB 0.05 6892 -1 -1 14 0.44 -1 -1 33080 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 17.7 MiB 0.37 1818 9380 1999 6471 910 56.0 MiB 0.17 0.00 8.82888 -183.788 -8.82888 8.82888 1.04 0.00203461 0.00186364 0.0885432 0.0811599 36 4579 30 6.55708e+06 433980 612192. 2118.31 5.45 0.566356 0.51094 22750 144809 -1 3780 17 1639 5179 293117 66152 7.76595 7.76595 -173.279 -7.76595 0 0 782063. 2706.10 0.28 0.17 0.23 -1 -1 0.28 0.0758363 0.0691542 267 267 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.82 vpr 55.12 MiB 0.04 6788 -1 -1 13 0.32 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 17.0 MiB 0.49 1477 8735 1981 6002 752 55.8 MiB 0.15 0.00 7.79483 -168.531 -7.79483 7.79483 1.05 0.00184633 0.00169238 0.0820304 0.0750558 26 4757 42 6.55708e+06 373705 477104. 1650.88 8.19 0.634428 0.570565 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.22 0.31 0.17 -1 -1 0.22 0.131845 0.119113 224 224 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.85 vpr 54.79 MiB 0.05 6540 -1 -1 11 0.16 -1 -1 32716 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 16.4 MiB 0.20 916 9943 3248 5072 1623 54.9 MiB 0.14 0.00 6.47975 -131.851 -6.47975 6.47975 1.07 0.00123955 0.00113508 0.0700747 0.0640659 36 2386 24 6.55708e+06 277265 612192. 2118.31 4.93 0.439965 0.394161 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.27 0.09 0.23 -1 -1 0.27 0.042569 0.0385803 137 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 9.65 vpr 55.66 MiB 0.05 7116 -1 -1 15 0.45 -1 -1 32868 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1670 7867 1614 5465 788 56.0 MiB 0.15 0.00 8.70958 -179.837 -8.70958 8.70958 1.06 0.00195493 0.00179145 0.075405 0.0691463 36 4552 44 6.55708e+06 397815 612192. 2118.31 5.86 0.570721 0.514333 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.27 0.20 0.23 -1 -1 0.27 0.082099 0.0744768 241 241 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.44 vpr 55.55 MiB 0.04 6660 -1 -1 13 0.31 -1 -1 32980 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1370 12483 3068 7076 2339 55.6 MiB 0.21 0.00 7.72925 -154.988 -7.72925 7.72925 1.05 0.00172318 0.00157928 0.111599 0.10226 38 3720 24 6.55708e+06 349595 638502. 2209.35 19.56 0.821044 0.737552 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.29 0.13 0.25 -1 -1 0.29 0.0626732 0.056938 207 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.78 vpr 55.03 MiB 0.04 6628 -1 -1 11 0.13 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1161 6718 1477 4583 658 54.9 MiB 0.10 0.00 6.62468 -135.028 -6.62468 6.62468 1.04 0.00123663 0.00113166 0.0462763 0.0423545 28 3179 30 6.55708e+06 289320 500653. 1732.36 8.01 0.383186 0.34288 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.23 0.14 0.18 -1 -1 0.23 0.0506809 0.0457874 149 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.35 vpr 55.80 MiB 0.04 6876 -1 -1 12 0.33 -1 -1 32704 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1540 8735 2140 5810 785 55.6 MiB 0.15 0.00 7.17512 -150.872 -7.17512 7.17512 1.06 0.00174545 0.00159804 0.0757152 0.0693652 38 3444 21 6.55708e+06 373705 638502. 2209.35 5.63 0.621913 0.558859 23326 155178 -1 2888 15 1226 3932 189527 43326 6.31224 6.31224 -142.735 -6.31224 0 0 851065. 2944.86 0.29 0.12 0.25 -1 -1 0.29 0.0581905 0.0528705 217 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.22 vpr 55.22 MiB 0.04 6584 -1 -1 12 0.20 -1 -1 32532 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1252 5517 962 4221 334 55.1 MiB 0.09 0.00 7.41221 -152.744 -7.41221 7.41221 1.11 0.00143357 0.00131379 0.0426852 0.0391467 30 2953 20 6.55708e+06 313430 526063. 1820.29 4.35 0.477066 0.427262 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0513219 0.0464698 164 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 7.05 vpr 54.96 MiB 0.04 6584 -1 -1 12 0.18 -1 -1 32736 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 16.5 MiB 0.21 998 6383 1524 4361 498 55.0 MiB 0.12 0.00 7.15324 -144.822 -7.15324 7.15324 1.06 0.00088075 0.000790294 0.0582231 0.0533159 28 2443 17 6.55708e+06 253155 500653. 1732.36 3.52 0.338269 0.302736 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0547264 0.0494445 139 139 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.75 vpr 55.58 MiB 0.05 6760 -1 -1 12 0.28 -1 -1 32864 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 16.9 MiB 0.26 1315 14583 4048 7926 2609 55.6 MiB 0.22 0.00 7.005 -132.757 -7.005 7.005 1.04 0.00170066 0.00155946 0.122325 0.112031 30 3666 44 6.55708e+06 385760 526063. 1820.29 3.21 0.415895 0.375978 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0620603 0.0563467 208 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 7.80 vpr 55.73 MiB 0.05 6744 -1 -1 14 0.32 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 17.3 MiB 0.51 1622 11046 2782 7202 1062 55.9 MiB 0.19 0.00 8.27143 -173.321 -8.27143 8.27143 1.06 0.00182707 0.00167659 0.0974203 0.0892994 30 4187 27 6.55708e+06 385760 526063. 1820.29 2.03 0.348656 0.314945 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.24 0.15 0.16 -1 -1 0.24 0.0680064 0.0617131 227 222 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.93 vpr 55.43 MiB 0.05 6716 -1 -1 12 0.23 -1 -1 32776 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 17.1 MiB 0.36 1318 5191 912 3744 535 55.6 MiB 0.09 0.00 7.44045 -154.388 -7.44045 7.44045 0.88 0.0016361 0.00149899 0.0463444 0.042548 28 3868 27 6.55708e+06 325485 500653. 1732.36 2.58 0.272133 0.245118 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.22 0.16 0.18 -1 -1 0.22 0.0616719 0.0559177 192 192 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.70 vpr 54.79 MiB 0.04 6700 -1 -1 12 0.14 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1100 6615 1512 4600 503 54.8 MiB 0.11 0.01 6.69922 -140.427 -6.69922 6.69922 1.06 0.0038875 0.00355745 0.0512008 0.0468729 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.57 0.198098 0.178185 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0425031 0.0383707 133 127 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 6.88 vpr 54.93 MiB 0.02 6644 -1 -1 12 0.23 -1 -1 32364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1148 11398 2849 6739 1810 55.1 MiB 0.17 0.00 7.39043 -143.264 -7.39043 7.39043 1.07 0.00144854 0.00132977 0.0892775 0.0819758 28 3477 38 6.55708e+06 301375 500653. 1732.36 9.16 0.596773 0.534736 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.22 0.14 0.20 -1 -1 0.22 0.0593155 0.0535855 170 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 9.64 vpr 55.30 MiB 0.05 6748 -1 -1 11 0.19 -1 -1 32940 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 16.8 MiB 0.22 1267 6723 1289 4852 582 55.4 MiB 0.11 0.00 6.0378 -125.718 -6.0378 6.0378 1.12 0.00154 0.00141266 0.0538567 0.0492871 28 3807 32 6.55708e+06 337540 500653. 1732.36 3.40 0.285816 0.257143 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.24 0.18 0.18 -1 -1 0.24 0.0658058 0.0594448 189 189 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.26 vpr 55.27 MiB 0.04 6752 -1 -1 11 0.20 -1 -1 32736 -1 -1 28 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 16.7 MiB 0.32 1153 14128 4158 7800 2170 55.4 MiB 0.20 0.00 6.59995 -118.466 -6.59995 6.59995 1.05 0.00144559 0.00132516 0.109007 0.0999831 38 2640 22 6.55708e+06 337540 638502. 2209.35 5.11 0.501641 0.450767 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.29 0.11 0.27 -1 -1 0.29 0.0501783 0.0455059 171 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.11 vpr 54.96 MiB 0.04 6548 -1 -1 13 0.18 -1 -1 32704 -1 -1 25 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 16.6 MiB 0.43 1112 5463 1180 3669 614 55.1 MiB 0.08 0.00 7.87624 -151.634 -7.87624 7.87624 1.05 0.00126564 0.0011607 0.0395405 0.0362924 30 2565 19 6.55708e+06 301375 526063. 1820.29 3.99 0.358572 0.321662 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0384435 0.0348995 142 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.15 vpr 55.11 MiB 0.04 6656 -1 -1 12 0.22 -1 -1 32412 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 16.9 MiB 0.34 1245 6211 1266 4515 430 55.4 MiB 0.11 0.00 7.2362 -155.292 -7.2362 7.2362 1.07 0.00150813 0.00138215 0.0505199 0.046341 34 3145 23 6.55708e+06 325485 585099. 2024.56 4.20 0.493695 0.442309 22462 138074 -1 2771 14 1227 3252 178140 42327 6.38924 6.38924 -148.221 -6.38924 0 0 742403. 2568.87 0.26 0.11 0.22 -1 -1 0.26 0.0469171 0.0425693 180 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.00 vpr 55.37 MiB 0.05 6668 -1 -1 13 0.28 -1 -1 32804 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 16.8 MiB 0.37 1187 15843 5382 8046 2415 55.4 MiB 0.23 0.00 7.69912 -151.004 -7.69912 7.69912 1.05 0.00161306 0.0014785 0.127334 0.116699 32 3890 40 6.55708e+06 361650 554710. 1919.41 14.73 0.745445 0.669192 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.25 0.18 0.16 -1 -1 0.25 0.0717666 0.0648554 195 192 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.83 vpr 55.25 MiB 0.05 6736 -1 -1 14 0.31 -1 -1 32924 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.28 1371 16295 4299 9326 2670 55.4 MiB 0.25 0.00 7.90558 -162.398 -7.90558 7.90558 1.07 0.00176261 0.00161567 0.138288 0.126695 30 3631 37 6.55708e+06 373705 526063. 1820.29 10.06 0.655133 0.589794 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.26 0.13 0.20 -1 -1 0.26 0.0668355 0.0606901 215 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.89 vpr 55.24 MiB 0.04 6768 -1 -1 14 0.26 -1 -1 32852 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1364 9067 2106 6307 654 55.6 MiB 0.15 0.00 7.8859 -150.917 -7.8859 7.8859 1.05 0.00159805 0.0014633 0.0753546 0.0689786 36 3364 28 6.55708e+06 325485 612192. 2118.31 5.07 0.44437 0.399836 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.060476 0.0548419 183 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.79 vpr 55.55 MiB 0.04 6844 -1 -1 13 0.33 -1 -1 33252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 16.9 MiB 0.38 1350 6211 1219 4577 415 55.5 MiB 0.11 0.00 7.98147 -162.621 -7.98147 7.98147 1.04 0.0016792 0.0015403 0.0577606 0.0530184 36 3253 20 6.55708e+06 325485 612192. 2118.31 3.40 0.416727 0.374837 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.24 0.08 0.21 -1 -1 0.24 0.0283175 0.0256211 195 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.93 vpr 54.79 MiB 0.04 6696 -1 -1 13 0.18 -1 -1 32704 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 16.3 MiB 0.26 1092 10670 2647 6412 1611 54.9 MiB 0.14 0.00 7.9674 -161.443 -7.9674 7.9674 1.10 0.00128282 0.0011753 0.0776175 0.0711099 32 2870 34 6.55708e+06 289320 554710. 1919.41 2.73 0.389309 0.349985 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.26 0.10 0.21 -1 -1 0.26 0.0426228 0.0386276 146 142 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 8.72 vpr 55.48 MiB 0.05 6824 -1 -1 13 0.43 -1 -1 32920 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 16.8 MiB 0.34 1304 7653 1748 5033 872 55.7 MiB 0.14 0.00 8.34953 -161.953 -8.34953 8.34953 1.05 0.0017132 0.00157123 0.0695901 0.0639062 30 3707 24 6.55708e+06 373705 526063. 1820.29 2.44 0.302563 0.273375 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0681447 0.0618533 208 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 7.19 vpr 55.24 MiB 0.05 6892 -1 -1 14 0.28 -1 -1 31488 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 16.8 MiB 0.35 1332 7336 1480 5450 406 55.3 MiB 0.12 0.00 7.42283 -159.831 -7.42283 7.42283 1.04 0.00159275 0.00145987 0.0610949 0.0559217 28 3869 50 6.55708e+06 361650 500653. 1732.36 11.57 0.687715 0.617283 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.22 0.68 0.18 -1 -1 0.22 0.170927 0.153341 184 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.37 vpr 55.40 MiB 0.05 6788 -1 -1 12 0.25 -1 -1 33016 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1420 6575 1256 4964 355 55.5 MiB 0.11 0.00 8.28906 -160.635 -8.28906 8.28906 1.05 0.00164982 0.00151379 0.0552008 0.0506724 34 3727 35 6.55708e+06 385760 585099. 2024.56 5.74 0.613486 0.550755 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0595078 0.0541626 203 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 9.68 vpr 55.27 MiB 0.05 6772 -1 -1 13 0.23 -1 -1 32904 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 16.9 MiB 0.24 1315 6522 1420 4675 427 55.6 MiB 0.11 0.00 7.42898 -137.517 -7.42898 7.42898 1.05 0.00154167 0.00141503 0.0561738 0.0515267 30 3356 18 6.55708e+06 337540 526063. 1820.29 2.56 0.249606 0.225272 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0553616 0.0502198 186 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.44 vpr 55.70 MiB 0.02 6756 -1 -1 14 0.34 -1 -1 32892 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 17.4 MiB 0.48 1483 8199 1652 5918 629 55.9 MiB 0.14 0.00 8.85275 -170.114 -8.85275 8.85275 1.05 0.00178525 0.00163153 0.0721702 0.0661061 28 4521 37 6.55708e+06 385760 500653. 1732.36 12.88 0.588764 0.529368 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0764262 0.0692793 220 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.88 vpr 55.46 MiB 0.04 6776 -1 -1 11 0.28 -1 -1 32756 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 16.8 MiB 0.31 1183 4512 917 3199 396 55.3 MiB 0.08 0.00 6.95549 -133.856 -6.95549 6.95549 1.04 0.00150902 0.00138555 0.0383013 0.0351444 28 3440 40 6.55708e+06 349595 500653. 1732.36 8.98 0.607915 0.543597 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.21 0.18 -1 -1 0.22 0.0748488 0.0674849 174 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 7.87 vpr 55.05 MiB 0.04 6480 -1 -1 13 0.16 -1 -1 32572 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1098 6999 1531 4700 768 55.1 MiB 0.10 0.00 7.85907 -167.622 -7.85907 7.85907 1.04 0.00124672 0.00114118 0.0492086 0.0450668 26 3154 29 6.55708e+06 277265 477104. 1650.88 2.68 0.226191 0.2033 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.23 0.12 0.17 -1 -1 0.23 0.0491871 0.0444309 142 131 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 10.19 vpr 55.24 MiB 0.05 6832 -1 -1 14 0.23 -1 -1 32736 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1308 7027 1497 5027 503 55.4 MiB 0.12 0.00 8.02087 -160.438 -8.02087 8.02087 1.04 0.00155512 0.00141697 0.057695 0.0528692 28 3737 36 6.55708e+06 325485 500653. 1732.36 8.59 0.570896 0.511661 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.22 0.15 0.18 -1 -1 0.22 0.065383 0.0590323 183 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.89 vpr 55.90 MiB 0.05 6732 -1 -1 15 0.36 -1 -1 33280 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 17.2 MiB 0.54 1579 7323 1484 5148 691 55.8 MiB 0.13 0.00 9.31018 -193.267 -9.31018 9.31018 1.08 0.00182715 0.00167535 0.0667704 0.0612093 28 4344 42 6.55708e+06 385760 500653. 1732.36 2.49 0.366017 0.33018 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0694484 0.0630225 228 228 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.93 vpr 54.74 MiB 0.04 6548 -1 -1 11 0.16 -1 -1 32476 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 16.4 MiB 0.57 1088 7079 1594 5001 484 54.8 MiB 0.10 0.00 6.82798 -137.917 -6.82798 6.82798 1.11 0.00118489 0.00108007 0.0478437 0.0437565 28 2912 30 6.55708e+06 265210 500653. 1732.36 3.27 0.228674 0.205567 21310 115450 -1 2481 64 1445 5105 1045472 613892 5.86358 5.86358 -137.858 -5.86358 0 0 612192. 2118.31 0.22 0.53 0.18 -1 -1 0.22 0.133271 0.119236 126 124 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.70 vpr 55.17 MiB 0.04 6528 -1 -1 12 0.18 -1 -1 32488 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1155 8207 1978 5141 1088 55.1 MiB 0.12 0.00 7.38032 -154.384 -7.38032 7.38032 1.05 0.0013655 0.00125107 0.0610134 0.0559849 46 2574 16 6.55708e+06 313430 782063. 2706.10 4.87 0.43912 0.393126 24766 183262 -1 2168 17 929 2778 124629 29449 6.47024 6.47024 -143.196 -6.47024 0 0 958460. 3316.47 0.33 0.10 0.30 -1 -1 0.33 0.0494643 0.0447796 157 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 7.16 vpr 55.40 MiB 0.05 6704 -1 -1 12 0.30 -1 -1 33000 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 17.0 MiB 0.34 1424 7439 1505 5396 538 55.8 MiB 0.13 0.00 7.41461 -164.576 -7.41461 7.41461 1.05 0.00173532 0.00158803 0.0666674 0.0610506 34 3820 24 6.55708e+06 373705 585099. 2024.56 4.55 0.493087 0.442952 22462 138074 -1 3126 15 1357 3877 209257 49419 6.7229 6.7229 -159.681 -6.7229 0 0 742403. 2568.87 0.26 0.13 0.19 -1 -1 0.26 0.0572853 0.0520771 209 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 7.62 vpr 55.12 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32868 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 17.0 MiB 0.47 1429 8579 2186 5781 612 55.7 MiB 0.14 0.00 7.42022 -157.463 -7.42022 7.42022 1.05 0.00154368 0.00141304 0.0694416 0.0636671 30 3708 20 6.55708e+06 337540 526063. 1820.29 2.05 0.266346 0.240173 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.22 0.07 0.10 -1 -1 0.22 0.0262101 0.0237065 186 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 11.30 vpr 55.76 MiB 0.05 6864 -1 -1 14 0.46 -1 -1 33324 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1656 14691 3485 9017 2189 55.8 MiB 0.24 0.00 8.55829 -177.042 -8.55829 8.55829 1.04 0.00193157 0.00177069 0.129995 0.11918 38 3905 20 6.55708e+06 421925 638502. 2209.35 5.79 0.692246 0.624088 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.28 0.15 0.25 -1 -1 0.28 0.0703929 0.0640838 241 239 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 7.23 vpr 55.20 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32532 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1210 13157 4017 6643 2497 55.3 MiB 0.19 0.00 6.86503 -131.636 -6.86503 6.86503 1.05 0.00150857 0.00138312 0.104338 0.0956301 30 3211 36 6.55708e+06 325485 526063. 1820.29 2.10 0.335543 0.302607 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.051727 0.0469074 176 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 5.57 vpr 54.85 MiB 0.04 6592 -1 -1 11 0.17 -1 -1 32356 -1 -1 25 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 16.4 MiB 0.22 858 9234 2019 6554 661 54.9 MiB 0.16 0.00 6.39815 -115.858 -6.39815 6.39815 1.07 0.00122167 0.00111864 0.090794 0.0831485 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.57 0.254516 0.229707 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0566443 0.0508183 138 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 11.85 vpr 55.96 MiB 0.05 7028 -1 -1 13 0.41 -1 -1 33036 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 17.8 MiB 0.27 1915 8888 1943 6342 603 56.0 MiB 0.17 0.00 7.96961 -161.89 -7.96961 7.96961 1.05 0.00215819 0.00197941 0.0851364 0.0780885 36 5494 32 6.55708e+06 482200 612192. 2118.31 7.40 0.746579 0.673031 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.27 0.19 0.23 -1 -1 0.27 0.07906 0.0720521 280 279 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 6.71 vpr 55.28 MiB 0.05 6844 -1 -1 14 0.26 -1 -1 33128 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 17.0 MiB 0.27 1307 6821 1398 4713 710 55.5 MiB 0.11 0.00 8.63003 -171.716 -8.63003 8.63003 1.04 0.00153037 0.00140356 0.0586958 0.0538591 28 3653 27 6.55708e+06 313430 500653. 1732.36 10.55 0.534767 0.4793 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0547028 0.0495538 178 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.68 vpr 55.00 MiB 0.04 6580 -1 -1 12 0.16 -1 -1 32292 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1197 8251 1803 5271 1177 54.9 MiB 0.11 0.00 7.37817 -162.484 -7.37817 7.37817 1.05 0.00129686 0.00118844 0.05599 0.0513393 28 3416 42 6.55708e+06 325485 500653. 1732.36 2.68 0.26409 0.237519 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0445335 0.0403685 144 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.40 vpr 55.25 MiB 0.04 6592 -1 -1 13 0.29 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 16.8 MiB 0.44 1296 6623 1420 4442 761 55.3 MiB 0.12 0.00 7.83929 -154.667 -7.83929 7.83929 1.05 0.00152501 0.00139922 0.0574432 0.0526812 30 3458 27 6.55708e+06 301375 526063. 1820.29 9.47 0.48898 0.438491 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0529112 0.0480454 172 171 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 8.35 vpr 55.82 MiB 0.03 6812 -1 -1 13 0.31 -1 -1 33516 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 17.3 MiB 0.33 1675 5723 977 4473 273 55.9 MiB 0.11 0.00 7.72485 -162.113 -7.72485 7.72485 1.06 0.00184348 0.00169113 0.0526985 0.0484279 30 4421 42 6.55708e+06 421925 526063. 1820.29 3.19 0.358461 0.323176 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0665945 0.0605167 235 234 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.74 vpr 55.51 MiB 0.05 6740 -1 -1 11 0.23 -1 -1 32892 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 17.0 MiB 0.40 1363 8827 2077 5986 764 55.6 MiB 0.14 0.00 7.0834 -142.912 -7.0834 7.0834 1.06 0.00162525 0.00148949 0.0739497 0.0677753 30 3732 37 6.55708e+06 385760 526063. 1820.29 2.95 0.333311 0.300675 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.24 0.15 0.20 -1 -1 0.24 0.0593074 0.0537365 199 199 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 8.27 vpr 55.58 MiB 0.03 6748 -1 -1 15 0.32 -1 -1 32856 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 17.0 MiB 0.31 1473 9543 2499 5737 1307 55.7 MiB 0.16 0.00 9.02492 -182.614 -9.02492 9.02492 1.07 0.00170425 0.00155937 0.0834121 0.0762538 36 3930 43 6.55708e+06 349595 612192. 2118.31 5.96 0.64415 0.578972 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610698 0.0553805 203 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 6.80 vpr 55.38 MiB 0.05 6676 -1 -1 13 0.31 -1 -1 32944 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 17.1 MiB 0.22 1528 11922 3138 7505 1279 55.7 MiB 0.20 0.00 8.01701 -168.403 -8.01701 8.01701 1.05 0.00136382 0.00124055 0.103502 0.0947721 34 4013 32 6.55708e+06 385760 585099. 2024.56 3.25 0.428402 0.386334 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.29 0.15 0.16 -1 -1 0.29 0.0676822 0.0615819 217 217 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.05 vpr 55.28 MiB 0.04 6544 -1 -1 12 0.20 -1 -1 32288 -1 -1 29 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 16.4 MiB 0.47 1144 6321 1459 4287 575 55.0 MiB 0.10 0.00 6.98904 -150.776 -6.98904 6.98904 1.05 0.0012962 0.00118838 0.0448126 0.0411148 30 2863 42 6.55708e+06 349595 526063. 1820.29 2.00 0.255304 0.22938 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0441448 0.0400114 159 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.43 vpr 54.96 MiB 0.03 6512 -1 -1 11 0.15 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 16.6 MiB 0.39 1041 8402 1813 6153 436 55.1 MiB 0.12 0.00 6.97021 -142.93 -6.97021 6.97021 1.05 0.0012389 0.00113424 0.0588392 0.0538441 30 2905 24 6.55708e+06 265210 526063. 1820.29 2.30 0.232955 0.209659 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0449475 0.0406488 138 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 9.48 vpr 55.54 MiB 0.05 6840 -1 -1 13 0.32 -1 -1 32896 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 17.0 MiB 0.38 1528 7975 1701 5466 808 55.7 MiB 0.13 0.00 8.19329 -167.366 -8.19329 8.19329 1.08 0.00170237 0.00155868 0.0691094 0.0633781 28 4213 29 6.55708e+06 373705 500653. 1732.36 9.31 0.619605 0.556544 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0610316 0.0553164 204 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.20 vpr 54.84 MiB 0.02 6616 -1 -1 10 0.15 -1 -1 32856 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1030 5107 1053 3581 473 55.1 MiB 0.10 0.00 6.08471 -123.999 -6.08471 6.08471 1.05 0.00121626 0.00111315 0.0475233 0.0434209 30 2309 29 6.55708e+06 289320 526063. 1820.29 3.80 0.39355 0.352358 21886 126133 -1 1984 35 866 2657 373349 213628 5.25032 5.25032 -118.026 -5.25032 0 0 666494. 2306.21 0.26 0.24 0.20 -1 -1 0.26 0.0802863 0.072171 138 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 6.78 vpr 55.10 MiB 0.04 6668 -1 -1 14 0.19 -1 -1 32780 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 16.4 MiB 0.42 1019 11203 3089 5915 2199 55.0 MiB 0.15 0.00 7.69221 -156.392 -7.69221 7.69221 1.05 0.00132736 0.00121554 0.0791989 0.0724887 34 2803 37 6.55708e+06 289320 585099. 2024.56 2.54 0.333525 0.299941 22462 138074 -1 2326 18 1079 3249 175189 43266 6.7601 6.7601 -147.192 -6.7601 0 0 742403. 2568.87 0.28 0.12 0.23 -1 -1 0.28 0.0503284 0.0453972 149 146 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 6.40 vpr 55.41 MiB 0.05 6684 -1 -1 12 0.30 -1 -1 32908 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 17.0 MiB 0.30 1351 11891 3061 6959 1871 55.6 MiB 0.19 0.00 7.58423 -159.03 -7.58423 7.58423 1.08 0.00167668 0.00153839 0.103121 0.094297 36 3367 18 6.55708e+06 349595 612192. 2118.31 3.62 0.451807 0.406828 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.27 0.14 0.23 -1 -1 0.27 0.0610964 0.0554537 201 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 8.33 vpr 54.74 MiB 0.05 6552 -1 -1 12 0.16 -1 -1 32292 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 16.2 MiB 0.30 1079 5567 1026 4331 210 54.8 MiB 0.08 0.00 6.95154 -149.121 -6.95154 6.95154 1.04 0.00122763 0.00112318 0.039747 0.0364123 28 3150 46 6.55708e+06 277265 500653. 1732.36 7.03 0.438707 0.391887 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.20 0.11 0.09 -1 -1 0.20 0.0469118 0.042471 141 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 9.18 vpr 55.19 MiB 0.05 6716 -1 -1 12 0.19 -1 -1 32856 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 16.9 MiB 0.28 1263 7843 1830 5405 608 55.4 MiB 0.13 0.00 7.086 -151.926 -7.086 7.086 1.05 0.00155138 0.00142046 0.0659666 0.060399 28 3643 19 6.55708e+06 325485 500653. 1732.36 2.50 0.266154 0.239664 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.23 0.22 0.18 -1 -1 0.23 0.0750401 0.0676982 188 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 6.67 vpr 55.32 MiB 0.05 6748 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 1349 6509 1390 4237 882 55.5 MiB 0.11 0.00 7.60996 -160.091 -7.60996 7.60996 1.07 0.00156315 0.00143197 0.0540348 0.0495299 34 3758 47 6.55708e+06 349595 585099. 2024.56 2.93 0.419411 0.376743 22462 138074 -1 3187 19 1257 3833 298777 77572 6.5197 6.5197 -154.677 -6.5197 0 0 742403. 2568.87 0.26 0.16 0.22 -1 -1 0.26 0.0623382 0.0564277 179 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.03 vpr 55.03 MiB 0.04 6620 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 16.6 MiB 0.27 1256 8251 2031 5471 749 55.2 MiB 0.12 0.00 6.67834 -143.715 -6.67834 6.67834 1.07 0.00128913 0.00118107 0.0564648 0.0516941 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.79 0.230362 0.207374 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0516899 0.0467213 148 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.14 vpr 54.96 MiB 0.04 6568 -1 -1 13 0.19 -1 -1 32508 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1339 8047 1963 5261 823 55.1 MiB 0.10 0.00 7.72555 -161.807 -7.72555 7.72555 1.06 0.000546167 0.000493652 0.0368678 0.0332272 28 3857 33 6.55708e+06 325485 500653. 1732.36 9.24 0.56761 0.507103 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.23 0.24 0.18 -1 -1 0.23 0.0843968 0.0758925 167 165 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.44 vpr 55.53 MiB 0.05 6840 -1 -1 13 0.25 -1 -1 32928 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 16.8 MiB 0.20 1276 15187 4382 8407 2398 55.6 MiB 0.23 0.00 7.99583 -160.474 -7.99583 7.99583 1.07 0.00156065 0.00143128 0.121243 0.111127 40 2881 19 6.55708e+06 325485 666494. 2306.21 5.02 0.578971 0.520822 23614 160646 -1 2859 15 1242 3716 205051 47781 7.09316 7.09316 -151.569 -7.09316 0 0 872365. 3018.56 0.30 0.12 0.27 -1 -1 0.30 0.0518574 0.0470708 184 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 6.67 vpr 55.12 MiB 0.05 6880 -1 -1 11 0.19 -1 -1 32740 -1 -1 28 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1142 12761 3414 7382 1965 55.1 MiB 0.19 0.00 6.37111 -124.414 -6.37111 6.37111 1.05 0.00137673 0.00125894 0.103842 0.0949386 36 2747 19 6.55708e+06 337540 612192. 2118.31 4.87 0.481412 0.431847 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0477242 0.043124 162 160 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.44 vpr 55.93 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33456 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 17.3 MiB 0.39 1569 9951 2260 6812 879 55.9 MiB 0.18 0.00 8.3634 -177.338 -8.3634 8.3634 1.00 0.00084219 0.000760871 0.0916238 0.0838099 34 4532 35 6.55708e+06 385760 585099. 2024.56 3.43 0.463318 0.417773 22462 138074 -1 3580 16 1687 4869 264649 62027 7.41056 7.41056 -172.227 -7.41056 0 0 742403. 2568.87 0.26 0.15 0.22 -1 -1 0.26 0.0642241 0.0584273 225 222 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.16 vpr 55.05 MiB 0.04 6612 -1 -1 12 0.20 -1 -1 32476 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 16.5 MiB 0.45 1144 6619 1429 4488 702 55.0 MiB 0.10 0.00 6.81857 -143.271 -6.81857 6.81857 1.05 0.00126147 0.00115514 0.04513 0.0413824 36 2680 25 6.55708e+06 337540 612192. 2118.31 2.70 0.328613 0.294904 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.27 0.10 0.23 -1 -1 0.27 0.0394137 0.0358377 145 139 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.30 vpr 55.35 MiB 0.04 6744 -1 -1 13 0.29 -1 -1 32992 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1396 7843 1736 5120 987 55.4 MiB 0.12 0.00 7.69421 -153.973 -7.69421 7.69421 1.08 0.0015876 0.00145072 0.0658667 0.0603216 28 3900 43 6.55708e+06 325485 500653. 1732.36 3.26 0.308391 0.277594 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.22 0.19 0.18 -1 -1 0.22 0.0681866 0.0616621 189 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.66 vpr 55.04 MiB 0.04 6620 -1 -1 13 0.18 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 16.3 MiB 0.36 1076 10583 2933 6087 1563 54.9 MiB 0.14 0.00 7.44215 -162.135 -7.44215 7.44215 1.05 0.00128006 0.0011715 0.0721755 0.0660637 28 3369 28 6.55708e+06 301375 500653. 1732.36 2.87 0.261323 0.235436 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0569187 0.0513276 146 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.70 vpr 55.46 MiB 0.05 6660 -1 -1 12 0.21 -1 -1 32812 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 16.5 MiB 0.31 1148 5517 1034 4096 387 55.2 MiB 0.09 0.00 7.36755 -151.17 -7.36755 7.36755 1.05 0.00152259 0.0013947 0.0463069 0.0424714 34 3150 21 6.55708e+06 313430 585099. 2024.56 4.31 0.495371 0.443919 22462 138074 -1 2544 17 1051 3386 187761 43277 6.5237 6.5237 -142.576 -6.5237 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0554314 0.0502404 172 171 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.82 vpr 55.96 MiB 0.05 6976 -1 -1 15 0.50 -1 -1 32832 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1759 9998 2422 6696 880 55.8 MiB 0.18 0.00 8.78932 -180.299 -8.78932 8.78932 1.07 0.00202495 0.00186002 0.0969755 0.0888388 36 4483 32 6.55708e+06 409870 612192. 2118.31 6.18 0.569647 0.514341 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.27 0.21 0.25 -1 -1 0.27 0.0841946 0.0764979 250 250 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.15 vpr 54.30 MiB 0.04 6412 -1 -1 10 0.10 -1 -1 32068 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55736 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 16.0 MiB 0.29 757 9042 2084 6396 562 54.4 MiB 0.10 0.00 5.22063 -120.025 -5.22063 5.22063 1.07 0.000893745 0.00081805 0.051473 0.0469983 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.55 0.160243 0.143452 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.23 0.08 0.18 -1 -1 0.23 0.0301454 0.0270752 92 85 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 6.71 vpr 54.79 MiB 0.03 6612 -1 -1 13 0.15 -1 -1 32592 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 16.6 MiB 0.21 1069 6415 1411 4237 767 55.1 MiB 0.09 0.00 7.77311 -151.473 -7.77311 7.77311 1.07 0.00128432 0.00117689 0.0442048 0.0404886 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.87 0.265755 0.238888 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.23 0.18 0.18 -1 -1 0.23 0.0710206 0.0639536 150 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.24 vpr 55.18 MiB 0.05 6636 -1 -1 12 0.19 -1 -1 32624 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1241 11223 2642 6703 1878 55.1 MiB 0.17 0.00 6.72746 -150.964 -6.72746 6.72746 1.05 0.001451 0.00133137 0.0894805 0.0821083 34 3118 16 6.55708e+06 277265 585099. 2024.56 2.50 0.313877 0.283085 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.26 0.12 0.22 -1 -1 0.26 0.0545664 0.0493467 167 167 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.53 vpr 54.68 MiB 0.05 6580 -1 -1 9 0.13 -1 -1 32424 -1 -1 25 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 16.1 MiB 0.17 840 9694 2571 5897 1226 54.7 MiB 0.12 0.00 5.60806 -104.508 -5.60806 5.60806 1.07 0.0010197 0.00093416 0.058698 0.0538446 26 2429 32 6.55708e+06 301375 477104. 1650.88 3.47 0.209499 0.188176 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0433009 0.0389052 112 111 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 9.64 vpr 55.72 MiB 0.05 6716 -1 -1 12 0.26 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 17.1 MiB 0.57 1640 5273 863 4118 292 55.7 MiB 0.09 0.00 7.59969 -165.851 -7.59969 7.59969 1.05 0.00168915 0.00153707 0.0443563 0.0406678 36 4101 31 6.55708e+06 409870 612192. 2118.31 16.35 0.683667 0.612659 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.27 0.24 0.23 -1 -1 0.27 0.100153 0.0904891 209 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.78 vpr 55.60 MiB 0.07 6804 -1 -1 14 0.65 -1 -1 32856 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 17.1 MiB 0.42 1228 13340 3394 7367 2579 55.9 MiB 0.22 0.00 8.33716 -163.889 -8.33716 8.33716 1.05 0.00171935 0.00157379 0.116386 0.106507 38 3334 33 6.55708e+06 349595 638502. 2209.35 15.36 0.799747 0.718221 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.29 0.12 0.27 -1 -1 0.29 0.0570099 0.0518879 204 204 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.01 vpr 55.59 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30656 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 929 17268 4565 10218 2485 56.0 MiB 0.27 0.00 4.24756 -141.398 -4.24756 4.24756 1.07 0.00137294 0.00125818 0.106057 0.0969715 32 2653 22 6.64007e+06 452088 554710. 1919.41 1.38 0.280755 0.253215 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.055258 0.0498254 153 96 32 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.45 vpr 55.61 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 17.4 MiB 0.24 873 12919 4129 6395 2395 56.0 MiB 0.21 0.00 4.44716 -130.844 -4.44716 4.44716 1.03 0.00128814 0.00118101 0.0918461 0.0841975 32 2348 20 6.64007e+06 288834 554710. 1919.41 1.32 0.263396 0.237783 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0552136 0.0496668 142 91 30 30 89 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.64 vpr 55.29 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30192 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1003 9675 2005 7104 566 55.7 MiB 0.15 0.00 3.83457 -129.818 -3.83457 3.83457 1.05 0.00128652 0.00118285 0.0582171 0.0534792 30 2305 22 6.64007e+06 439530 526063. 1820.29 1.24 0.220376 0.198559 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.32 0.07 0.18 -1 -1 0.32 0.0307765 0.0275688 142 65 54 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.05 vpr 55.21 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30368 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 17.1 MiB 0.09 990 11245 3461 6773 1011 55.9 MiB 0.20 0.00 4.46418 -132.921 -4.46418 4.46418 1.05 0.00117595 0.00108149 0.0741681 0.0682493 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.46 0.219108 0.197959 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.22 0.14 0.18 -1 -1 0.22 0.060055 0.0542688 138 34 87 29 29 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.79 vpr 55.36 MiB 0.03 7032 -1 -1 1 0.03 -1 -1 30232 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 17.3 MiB 0.12 849 15017 4515 8552 1950 55.9 MiB 0.26 0.00 4.14936 -139.21 -4.14936 4.14936 1.05 0.00125237 0.00114944 0.103123 0.0947044 32 2360 21 6.64007e+06 276276 554710. 1919.41 1.33 0.261821 0.236873 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0550582 0.0496775 153 34 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.92 vpr 55.45 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 17.4 MiB 0.13 1024 19142 5848 10342 2952 56.1 MiB 0.28 0.01 3.5603 -122.153 -3.5603 3.5603 1.06 0.00137015 0.00125922 0.10756 0.0985194 32 2260 24 6.64007e+06 489762 554710. 1919.41 1.28 0.277724 0.2508 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0541696 0.0488047 156 64 63 32 63 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.99 vpr 54.93 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30460 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 16.3 MiB 0.12 722 12923 4015 7171 1737 55.0 MiB 0.17 0.00 3.7987 -103.375 -3.7987 3.7987 0.80 0.000915725 0.000840192 0.07377 0.0670434 32 1657 16 6.64007e+06 251160 554710. 1919.41 1.15 0.181756 0.163032 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0336964 0.0302072 96 34 54 27 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.97 vpr 55.18 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30004 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 16.7 MiB 0.09 948 16081 4441 8879 2761 55.6 MiB 0.20 0.00 3.49449 -109.504 -3.49449 3.49449 1.06 0.00110375 0.00101491 0.0689728 0.0632262 28 2371 22 6.64007e+06 426972 500653. 1732.36 1.35 0.210871 0.190021 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0448822 0.040489 140 4 115 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.11 vpr 55.33 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30040 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 16.7 MiB 0.18 706 7820 1805 5417 598 55.6 MiB 0.12 0.00 3.31336 -101.862 -3.31336 3.31336 1.06 0.00107676 0.000986984 0.0519688 0.0476378 28 1873 21 6.64007e+06 213486 500653. 1732.36 1.07 0.186327 0.167111 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0407442 0.0365137 106 85 0 0 84 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.18 vpr 55.15 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 16.9 MiB 0.18 890 10756 2975 5928 1853 55.6 MiB 0.08 0.00 3.5061 -124.869 -3.5061 3.5061 1.04 0.000387342 0.000350169 0.0257644 0.023324 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.77 0.0768339 0.0678766 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.26 0.09 0.21 -1 -1 0.26 0.0392327 0.0352998 121 34 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.97 vpr 55.25 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 29992 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 16.9 MiB 0.17 822 14012 5060 7295 1657 55.6 MiB 0.20 0.00 3.4841 -115.834 -3.4841 3.4841 1.05 0.00106519 0.000977506 0.0897426 0.0823383 28 1767 16 6.64007e+06 226044 500653. 1732.36 1.12 0.216138 0.194887 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.22 0.08 0.18 -1 -1 0.22 0.0388869 0.0349265 110 63 30 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.99 vpr 55.02 MiB 0.02 6904 -1 -1 1 0.02 -1 -1 30328 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.8 MiB 0.13 840 9753 2297 6936 520 55.5 MiB 0.14 0.00 3.52209 -114.564 -3.52209 3.52209 1.05 0.00107733 0.000986628 0.0522698 0.0478189 30 1922 21 6.64007e+06 364182 526063. 1820.29 1.19 0.186412 0.167135 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.24 0.08 0.22 -1 -1 0.24 0.0374285 0.0336356 114 65 25 25 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.51 vpr 55.32 MiB 0.07 7104 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 17.2 MiB 0.24 893 19448 6133 10048 3267 55.8 MiB 0.28 0.00 3.56129 -122.026 -3.56129 3.56129 1.05 0.00125396 0.00114913 0.111689 0.102377 32 2222 23 6.64007e+06 426972 554710. 1919.41 1.33 0.274374 0.247935 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.27 0.14 0.21 -1 -1 0.27 0.0548642 0.0494335 145 58 64 32 57 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.69 vpr 55.42 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30344 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1031 17036 4693 9820 2523 56.0 MiB 0.26 0.00 4.31123 -147.759 -4.31123 4.31123 1.12 0.00131247 0.00120392 0.100211 0.0918588 26 2990 23 6.64007e+06 452088 477104. 1650.88 2.33 0.272916 0.246206 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.21 0.13 0.17 -1 -1 0.21 0.0549128 0.0494706 158 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.85 vpr 55.11 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30628 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 800 8852 2481 5509 862 55.2 MiB 0.07 0.00 3.4261 -103.793 -3.4261 3.4261 0.86 0.000348744 0.000315524 0.0197965 0.0179423 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.73 0.0656575 0.0577674 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.27 0.08 0.23 -1 -1 0.27 0.0348072 0.0309915 108 29 58 29 24 24 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.28 vpr 55.57 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1068 13316 3890 7652 1774 56.0 MiB 0.22 0.00 3.5141 -124.724 -3.5141 3.5141 1.03 0.00130096 0.00119221 0.0948447 0.0869652 32 2326 21 6.64007e+06 276276 554710. 1919.41 1.29 0.258662 0.233591 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.31 0.06 0.14 -1 -1 0.31 0.0231827 0.02072 147 63 64 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.44 vpr 55.54 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30244 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 17.3 MiB 0.20 964 16340 5208 8057 3075 55.9 MiB 0.20 0.00 3.6263 -123.14 -3.6263 3.6263 1.05 0.00124994 0.00114594 0.0909267 0.0833106 34 2358 39 6.64007e+06 452088 585099. 2024.56 2.88 0.387948 0.348479 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.31 0.12 0.22 -1 -1 0.31 0.0370198 0.0331174 144 57 64 32 56 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.23 vpr 55.34 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30044 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 919 13487 3473 7992 2022 55.7 MiB 0.18 0.00 2.83964 -105.375 -2.83964 2.83964 1.05 0.00109892 0.00100631 0.0721393 0.066111 26 2137 22 6.64007e+06 389298 477104. 1650.88 1.13 0.213442 0.192014 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.21 0.09 0.19 -1 -1 0.21 0.0407777 0.036702 119 65 29 29 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.81 vpr 54.88 MiB 0.04 6700 -1 -1 1 0.03 -1 -1 30032 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56004 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.1 MiB 0.06 670 10835 3352 6011 1472 54.7 MiB 0.12 0.00 2.72344 -89.4054 -2.72344 2.72344 0.94 0.000781874 0.000715656 0.0540326 0.0494786 32 1416 19 6.64007e+06 188370 554710. 1919.41 1.13 0.14952 0.133831 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.27 0.07 0.23 -1 -1 0.27 0.0311481 0.0277317 85 34 24 24 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 6.59 vpr 55.31 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30328 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 16.8 MiB 0.14 727 12120 4439 5930 1751 55.6 MiB 0.18 0.00 4.19115 -121.049 -4.19115 4.19115 1.05 0.00109019 0.000998833 0.0801954 0.0735341 32 2029 16 6.64007e+06 213486 554710. 1919.41 1.19 0.207352 0.186821 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.25 0.07 0.22 -1 -1 0.25 0.0363707 0.0327424 113 64 31 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.02 vpr 55.54 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30056 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 16.7 MiB 0.10 885 17732 4998 9545 3189 55.7 MiB 0.26 0.00 4.22193 -138.344 -4.22193 4.22193 1.05 0.00122416 0.00112453 0.101095 0.0927748 32 2479 24 6.64007e+06 452088 554710. 1919.41 1.29 0.26267 0.237339 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0514446 0.0463942 147 34 91 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 6.66 vpr 55.86 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 960 11288 2842 7087 1359 56.1 MiB 0.21 0.01 3.74425 -123.858 -3.74425 3.74425 1.05 0.00141823 0.00130013 0.0795518 0.072765 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.35 0.261477 0.235141 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.060895 0.054662 150 124 0 0 125 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.74 vpr 54.80 MiB 0.02 6696 -1 -1 1 0.02 -1 -1 30352 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.1 MiB 0.11 395 10503 3120 6151 1232 54.6 MiB 0.10 0.00 2.74064 -71.156 -2.74064 2.74064 1.05 0.000682856 0.000624286 0.0472801 0.0432418 28 1145 19 6.64007e+06 213486 500653. 1732.36 1.06 0.130664 0.116942 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.0260333 0.0231926 77 30 26 26 22 22 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.55 vpr 55.25 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 29976 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 16.9 MiB 0.09 990 12749 4130 6257 2362 55.6 MiB 0.21 0.00 4.45633 -140.507 -4.45633 4.45633 1.07 0.00115288 0.00105971 0.0823503 0.0756772 32 2561 21 6.64007e+06 276276 554710. 1919.41 1.31 0.228995 0.207016 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0449407 0.0405688 138 3 122 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.60 vpr 54.55 MiB 0.04 6704 -1 -1 1 0.03 -1 -1 30148 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56164 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.3 MiB 0.05 603 10672 2424 7898 350 54.8 MiB 0.12 0.00 2.3583 -83.9313 -2.3583 2.3583 1.14 0.000723994 0.000662986 0.0495188 0.045349 28 1546 20 6.64007e+06 163254 500653. 1732.36 1.25 0.145628 0.13058 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.22 0.06 0.20 -1 -1 0.22 0.0266707 0.0238664 81 3 53 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.95 vpr 55.24 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30384 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.09 956 14691 4376 8904 1411 55.8 MiB 0.23 0.00 4.18856 -140.856 -4.18856 4.18856 1.06 0.00125527 0.00115302 0.0839117 0.0769085 32 2560 22 6.64007e+06 439530 554710. 1919.41 1.33 0.243605 0.219756 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0541553 0.0486609 153 34 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.99 vpr 55.28 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30064 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1019 8796 1857 6524 415 55.9 MiB 0.15 0.00 3.60659 -123.354 -3.60659 3.60659 1.05 0.00119146 0.00109593 0.0475793 0.0436458 26 3249 33 6.64007e+06 464646 477104. 1650.88 7.03 0.372195 0.3336 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0493401 0.0444749 152 3 124 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.09 vpr 55.49 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30368 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.10 1069 18901 5689 10576 2636 56.0 MiB 0.28 0.01 4.16036 -141.868 -4.16036 4.16036 1.05 0.00131411 0.00120484 0.108774 0.0996816 32 2736 22 6.64007e+06 464646 554710. 1919.41 1.34 0.275853 0.249275 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0568292 0.051201 155 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.92 vpr 54.97 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 16.7 MiB 0.08 857 10572 2555 6423 1594 55.6 MiB 0.15 0.00 3.07196 -107.422 -3.07196 3.07196 1.08 0.00099784 0.000914248 0.0640299 0.0587363 32 1869 19 6.64007e+06 200928 554710. 1919.41 1.19 0.195673 0.175925 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.25 0.09 0.23 -1 -1 0.25 0.0385831 0.0346183 107 34 54 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.81 vpr 55.11 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30000 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.9 MiB 0.09 824 11806 3275 6761 1770 55.3 MiB 0.16 0.00 3.4951 -114.009 -3.4951 3.4951 1.05 0.00100574 0.000922809 0.0707527 0.0649754 32 1835 21 6.64007e+06 238602 554710. 1919.41 1.19 0.196985 0.177293 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0456569 0.0409146 115 34 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.15 vpr 54.90 MiB 0.02 6884 -1 -1 1 0.02 -1 -1 30176 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 658 7132 1686 4570 876 55.1 MiB 0.11 0.00 3.4309 -100.483 -3.4309 3.4309 1.05 0.00094543 0.000867205 0.0418195 0.0383956 32 1851 20 6.64007e+06 251160 554710. 1919.41 1.21 0.160148 0.143671 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0365116 0.0327435 107 34 56 28 28 28 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.27 vpr 55.09 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30140 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.7 MiB 0.09 802 15390 5648 7380 2362 55.4 MiB 0.22 0.00 3.5251 -121.985 -3.5251 3.5251 1.06 0.00100168 0.000919428 0.089409 0.0820991 32 2003 23 6.64007e+06 226044 554710. 1919.41 1.23 0.219109 0.197617 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0533375 0.0477763 125 3 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 5.14 vpr 54.94 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.7 MiB 0.07 772 9679 2262 6618 799 55.5 MiB 0.14 0.00 3.47387 -114.287 -3.47387 3.47387 1.05 0.00103043 0.000945764 0.0496711 0.0455735 28 2025 20 6.64007e+06 389298 500653. 1732.36 1.16 0.177364 0.159354 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0388123 0.034891 119 34 61 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.06 vpr 55.23 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 16.9 MiB 0.16 877 15824 4460 9332 2032 55.6 MiB 0.20 0.00 2.80466 -91.9047 -2.80466 2.80466 1.07 0.00101723 0.000931474 0.0810886 0.0742085 26 2073 22 6.64007e+06 389298 477104. 1650.88 1.18 0.204935 0.184146 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0432509 0.0386193 110 61 29 29 57 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.34 vpr 55.59 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30420 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 17.5 MiB 0.21 1234 17889 5288 10109 2492 55.9 MiB 0.32 0.01 4.16036 -142.499 -4.16036 4.16036 1.06 0.00142439 0.00130997 0.106172 0.0974593 28 3347 24 6.64007e+06 514878 500653. 1732.36 2.67 0.293882 0.265546 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0575938 0.052059 181 29 128 32 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.69 vpr 55.79 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30328 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 996 11616 2636 8022 958 56.1 MiB 0.23 0.00 3.5823 -125.213 -3.5823 3.5823 1.10 0.0013311 0.00121219 0.0647492 0.0590421 30 2080 20 6.64007e+06 464646 526063. 1820.29 1.27 0.228138 0.20539 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510926 0.046132 154 65 62 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.19 vpr 55.27 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30424 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 17.0 MiB 0.23 803 9407 2189 6388 830 55.7 MiB 0.14 0.00 3.6833 -114.43 -3.6833 3.6833 1.04 0.00110479 0.00101058 0.0530788 0.0485902 30 1852 20 6.64007e+06 364182 526063. 1820.29 1.17 0.190169 0.170442 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0401364 0.0360176 114 90 0 0 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.39 vpr 55.38 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1052 11799 3060 6831 1908 55.9 MiB 0.20 0.00 3.64847 -119.816 -3.64847 3.64847 1.05 0.00127223 0.00116732 0.0815481 0.074865 32 2372 21 6.64007e+06 301392 554710. 1919.41 1.28 0.241194 0.217691 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.26 0.13 0.11 -1 -1 0.26 0.0546795 0.049459 149 64 60 30 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.42 vpr 55.51 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30336 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 17.4 MiB 0.42 953 7835 1760 5704 371 56.1 MiB 0.15 0.00 5.23812 -147.937 -5.23812 5.23812 1.05 0.0014085 0.00129296 0.062018 0.056929 32 2549 24 6.64007e+06 288834 554710. 1919.41 1.33 0.255594 0.229826 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.28 0.12 0.24 -1 -1 0.28 0.0546275 0.0490509 150 124 0 0 124 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.63 vpr 55.71 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30248 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.21 955 10859 3044 7047 768 56.1 MiB 0.20 0.00 5.02279 -136.574 -5.02279 5.02279 1.06 0.00130854 0.00119897 0.0790271 0.0725077 30 2107 21 6.64007e+06 288834 526063. 1820.29 1.24 0.244696 0.220718 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0459545 0.0415279 144 90 31 31 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.16 vpr 55.34 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30276 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 0.11 1046 15623 4332 9609 1682 55.8 MiB 0.13 0.00 3.5621 -120.379 -3.5621 3.5621 0.72 0.000471116 0.00042694 0.0351109 0.0316882 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.81 0.0988372 0.0876969 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0449083 0.040528 148 64 60 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.70 vpr 55.43 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30416 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 17.0 MiB 0.13 865 10206 2264 6941 1001 55.9 MiB 0.18 0.00 4.23656 -140.329 -4.23656 4.23656 1.05 0.00129043 0.00118296 0.061301 0.0562135 32 2829 21 6.64007e+06 464646 554710. 1919.41 1.36 0.223724 0.201453 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.25 0.12 0.23 -1 -1 0.25 0.0539649 0.048595 156 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.78 vpr 55.86 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30640 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 17.7 MiB 0.22 1205 17356 4219 10649 2488 56.1 MiB 0.29 0.01 4.21478 -145.938 -4.21478 4.21478 1.05 0.00157943 0.00145058 0.114258 0.104985 32 2779 22 6.64007e+06 527436 554710. 1919.41 1.33 0.315288 0.284995 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0651661 0.0588169 186 96 62 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.08 vpr 55.19 MiB 0.03 6776 -1 -1 1 0.03 -1 -1 30416 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.12 655 13731 5030 6417 2284 55.4 MiB 0.20 0.00 3.7665 -117.146 -3.7665 3.7665 1.05 0.00102124 0.00093564 0.0920338 0.0843554 32 1931 27 6.64007e+06 226044 554710. 1919.41 1.31 0.232142 0.20908 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0442073 0.0398636 116 34 62 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.67 vpr 55.79 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 30416 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 17.1 MiB 0.17 910 7386 1527 5477 382 55.9 MiB 0.13 0.00 4.20356 -136.322 -4.20356 4.20356 1.05 0.00128572 0.00117999 0.0439211 0.0402868 32 2713 25 6.64007e+06 477204 554710. 1919.41 1.27 0.199558 0.179353 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.053345 0.0480808 152 64 62 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 6.87 vpr 55.37 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 17.1 MiB 0.13 994 14048 3500 8468 2080 55.9 MiB 0.23 0.00 3.7163 -119.726 -3.7163 3.7163 0.91 0.00127945 0.00117418 0.0836927 0.0768458 32 2435 23 6.64007e+06 426972 554710. 1919.41 1.27 0.250008 0.225677 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.27 0.12 0.21 -1 -1 0.27 0.0517773 0.0467113 149 63 62 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.95 vpr 55.33 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 16.9 MiB 0.10 1080 15017 4624 8554 1839 55.8 MiB 0.26 0.00 4.14936 -144.892 -4.14936 4.14936 1.04 0.00120402 0.00110683 0.105899 0.0974313 32 2624 22 6.64007e+06 276276 554710. 1919.41 1.33 0.260787 0.236348 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.22 0.07 0.11 -1 -1 0.22 0.0220454 0.0197173 151 3 128 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 6.30 vpr 55.66 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30308 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 17.3 MiB 0.22 1044 15603 4218 9336 2049 56.0 MiB 0.24 0.00 3.55822 -125.535 -3.55822 3.55822 1.05 0.00132349 0.00121278 0.0938649 0.0859795 32 2394 19 6.64007e+06 439530 554710. 1919.41 1.28 0.255419 0.230498 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0526038 0.0473171 146 96 25 25 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.81 vpr 55.63 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30188 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 17.2 MiB 0.21 1017 12791 3286 8285 1220 55.8 MiB 0.11 0.00 3.47912 -120.914 -3.47912 3.47912 1.07 0.000475577 0.000430279 0.0284306 0.0256573 26 2568 45 6.64007e+06 464646 477104. 1650.88 2.08 0.233211 0.208745 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0473752 0.0427138 148 61 64 32 60 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.18 vpr 55.88 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30372 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1102 19142 5372 11310 2460 56.1 MiB 0.27 0.01 3.5243 -123.608 -3.5243 3.5243 1.05 0.00130918 0.0012003 0.107637 0.0986642 32 2414 19 6.64007e+06 489762 554710. 1919.41 1.28 0.268777 0.243038 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.25 0.11 0.25 -1 -1 0.25 0.0504312 0.0455428 157 65 63 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.99 vpr 55.16 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 17.3 MiB 0.09 1032 14906 4320 9186 1400 56.0 MiB 0.24 0.00 4.18856 -144.112 -4.18856 4.18856 1.05 0.00124988 0.00114811 0.0837632 0.0769465 30 2290 20 6.64007e+06 464646 526063. 1820.29 1.29 0.241242 0.217994 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0497973 0.0449443 152 34 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1016 12153 3010 8355 788 56.1 MiB 0.19 0.00 4.23153 -146.068 -4.23153 4.23153 1.06 0.00129772 0.00118939 0.0693798 0.0635831 26 2842 35 6.64007e+06 489762 477104. 1650.88 5.50 0.425951 0.381787 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.22 0.15 0.20 -1 -1 0.22 0.057821 0.0521731 155 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.97 vpr 55.82 MiB 0.02 7328 -1 -1 1 0.04 -1 -1 30320 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 17.4 MiB 0.25 1141 13095 3356 8753 986 56.2 MiB 0.23 0.00 4.67535 -137.171 -4.67535 4.67535 1.05 0.00139126 0.0012751 0.0832999 0.0763313 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.87 0.260623 0.234497 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0526128 0.047255 147 122 0 0 122 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.44 vpr 55.80 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 17.1 MiB 0.18 1069 15584 4992 8664 1928 55.9 MiB 0.26 0.00 4.34993 -137.194 -4.34993 4.34993 1.05 0.00136046 0.00124846 0.11558 0.106028 32 2657 20 6.64007e+06 276276 554710. 1919.41 1.30 0.284601 0.25722 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.25 0.13 0.23 -1 -1 0.25 0.0550126 0.0496451 151 94 32 32 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.09 vpr 54.96 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30428 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 16.6 MiB 0.08 928 8735 1852 5986 897 55.2 MiB 0.13 0.00 3.50687 -122.364 -3.50687 3.50687 1.05 0.00104763 0.000960412 0.0455496 0.0417699 28 2197 22 6.64007e+06 389298 500653. 1732.36 1.13 0.179099 0.160504 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.25 0.10 0.18 -1 -1 0.25 0.043659 0.0391901 125 34 63 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.08 vpr 55.19 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30208 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 17.0 MiB 0.21 885 10406 2864 6861 681 55.7 MiB 0.17 0.00 3.5031 -121.505 -3.5031 3.5031 1.05 0.00116393 0.00106615 0.0709577 0.0650521 26 2358 26 6.64007e+06 226044 477104. 1650.88 1.28 0.226995 0.204097 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.23 0.11 0.20 -1 -1 0.23 0.0447618 0.0402069 121 94 0 0 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.08 vpr 55.66 MiB 0.02 7144 -1 -1 1 0.05 -1 -1 30660 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 17.7 MiB 0.08 1352 17606 4821 10688 2097 56.1 MiB 0.32 0.01 4.98622 -168.741 -4.98622 4.98622 1.04 0.0015383 0.00141405 0.111872 0.102807 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.43 0.309191 0.279613 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.26 0.18 0.21 -1 -1 0.26 0.0751814 0.06769 189 65 96 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.19 vpr 55.49 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30368 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1055 17857 5354 10411 2092 55.9 MiB 0.15 0.00 3.51607 -123.396 -3.51607 3.51607 0.81 0.00045669 0.000410582 0.0394075 0.0354883 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.74 0.0985556 0.0873011 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0475492 0.042949 148 34 92 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.89 vpr 54.98 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30176 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 16.7 MiB 0.08 853 17523 5443 9889 2191 55.2 MiB 0.22 0.00 3.4529 -114.711 -3.4529 3.4529 1.05 0.00100337 0.000920183 0.0865702 0.0793253 30 1885 20 6.64007e+06 389298 526063. 1820.29 1.14 0.211139 0.190215 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.32 0.08 0.18 -1 -1 0.32 0.043582 0.0390159 116 34 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.89 vpr 55.67 MiB 0.03 7240 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.36 1192 13629 3357 8864 1408 56.2 MiB 0.24 0.01 4.97469 -167.233 -4.97469 4.97469 1.05 0.00163103 0.00149636 0.0899147 0.0824168 32 2825 26 6.64007e+06 565110 554710. 1919.41 1.44 0.313272 0.282593 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.062573 0.0564454 188 127 32 32 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.52 vpr 55.44 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30456 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 17.1 MiB 0.16 1027 16762 4357 10483 1922 55.9 MiB 0.24 0.00 4.27488 -146.847 -4.27488 4.27488 1.06 0.0012577 0.00115473 0.0921762 0.0845069 28 2563 23 6.64007e+06 477204 500653. 1732.36 1.29 0.255355 0.230595 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.23 0.11 0.18 -1 -1 0.23 0.0460567 0.0416201 153 34 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.87 vpr 54.93 MiB 0.04 6688 -1 -1 1 0.03 -1 -1 30096 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 17.0 MiB 0.09 882 11046 2802 6952 1292 55.5 MiB 0.16 0.00 3.5621 -124.172 -3.5621 3.5621 1.07 0.00100748 0.000924811 0.054147 0.0496189 30 1857 21 6.64007e+06 401856 526063. 1820.29 1.25 0.185361 0.16656 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.34 0.09 0.15 -1 -1 0.34 0.0428854 0.0387424 124 3 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.49 vpr 55.32 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30700 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 17.5 MiB 0.09 1334 20347 5362 13158 1827 55.9 MiB 0.18 0.00 4.95502 -168.119 -4.95502 4.95502 0.72 0.000528865 0.000478496 0.0452319 0.040935 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.00 0.11712 0.103994 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.24 0.16 0.20 -1 -1 0.24 0.0676236 0.0611178 190 34 128 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.81 vpr 54.84 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30132 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 16.6 MiB 0.10 623 13731 4925 6406 2400 55.1 MiB 0.19 0.00 3.5061 -118.666 -3.5061 3.5061 1.05 0.00099857 0.000917096 0.081639 0.0750215 32 2131 28 6.64007e+06 213486 554710. 1919.41 1.28 0.222841 0.200702 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0396032 0.035452 121 3 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.08 vpr 55.04 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30052 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 17.0 MiB 0.09 855 13939 4099 8667 1173 55.7 MiB 0.18 0.00 3.47387 -112.968 -3.47387 3.47387 1.06 0.00100564 0.000922618 0.0689214 0.0631201 28 1888 22 6.64007e+06 401856 500653. 1732.36 1.15 0.196859 0.176979 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0402767 0.0361234 114 34 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.46 vpr 55.39 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30284 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 17.3 MiB 0.20 1003 12839 3224 8329 1286 55.9 MiB 0.20 0.00 3.6803 -109.03 -3.6803 3.6803 1.05 0.00124513 0.00114069 0.0772871 0.0708789 26 2529 22 6.64007e+06 426972 477104. 1650.88 1.27 0.235788 0.212555 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.049759 0.044791 134 88 29 29 85 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.17 vpr 55.44 MiB 0.05 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 17.1 MiB 0.09 937 11048 2797 7564 687 55.9 MiB 0.10 0.00 4.21976 -143.232 -4.21976 4.21976 0.72 0.000477426 0.000430346 0.0301697 0.027283 32 2378 24 6.64007e+06 276276 554710. 1919.41 1.29 0.199789 0.179065 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0527214 0.0475618 152 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.26 vpr 55.30 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30500 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 17.3 MiB 0.27 1070 15876 4480 9346 2050 56.0 MiB 0.26 0.01 4.25856 -146.098 -4.25856 4.25856 1.05 0.00132236 0.00121333 0.0942745 0.0864867 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.46 0.29616 0.26703 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.27 0.14 0.22 -1 -1 0.27 0.059244 0.0534081 154 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.22 vpr 55.38 MiB 0.04 6984 -1 -1 1 0.05 -1 -1 30372 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 16.7 MiB 0.18 863 8856 1892 6516 448 55.5 MiB 0.14 0.00 3.4749 -121.747 -3.4749 3.4749 1.06 0.00112036 0.00102685 0.0485605 0.0444489 32 2048 21 6.64007e+06 401856 554710. 1919.41 1.23 0.191595 0.172026 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0462755 0.0415336 122 65 32 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.64 vpr 55.49 MiB 0.05 6916 -1 -1 1 0.04 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 821 8336 2395 4162 1779 55.8 MiB 0.13 0.00 3.72326 -116.749 -3.72326 3.72326 1.04 0.00110859 0.00101531 0.0566862 0.0519478 32 1980 18 6.64007e+06 213486 554710. 1919.41 1.21 0.190514 0.1711 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0441328 0.0395571 109 90 0 0 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 6.06 vpr 55.20 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 16.9 MiB 0.17 985 17635 4923 10695 2017 55.8 MiB 0.27 0.00 3.4529 -110.073 -3.4529 3.4529 1.05 0.00121317 0.00111362 0.100009 0.0917748 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.69 0.266048 0.23999 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0468873 0.0422569 139 60 60 30 57 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.56 vpr 55.11 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 16.9 MiB 0.10 939 14996 4215 8524 2257 55.7 MiB 0.21 0.00 4.39198 -124.88 -4.39198 4.39198 1.05 0.0011054 0.00101461 0.0833251 0.0764293 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.87 0.239375 0.2159 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.20 0.05 0.09 -1 -1 0.20 0.0202394 0.018137 134 34 84 28 28 28 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.29 vpr 55.23 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30008 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 16.7 MiB 0.20 846 13731 4520 7348 1863 55.4 MiB 0.20 0.00 3.5343 -117.296 -3.5343 3.5343 1.05 0.00105949 0.000970617 0.0860166 0.0788566 32 1980 19 6.64007e+06 238602 554710. 1919.41 1.23 0.221041 0.198949 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.27 0.10 0.21 -1 -1 0.27 0.0410077 0.0367911 114 63 30 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.28 vpr 55.31 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 17.0 MiB 0.14 892 11281 2807 6986 1488 55.7 MiB 0.17 0.00 3.6865 -117.315 -3.6865 3.6865 1.04 0.00114211 0.00104597 0.0766431 0.0702538 30 1846 19 6.64007e+06 213486 526063. 1820.29 1.13 0.215415 0.193931 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0318038 0.0282908 114 91 0 0 91 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.42 vpr 55.18 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30352 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 17.0 MiB 0.07 1121 19124 6194 10224 2706 55.9 MiB 0.27 0.00 4.18856 -139.706 -4.18856 4.18856 1.05 0.00115981 0.00106592 0.0990031 0.0909037 32 2557 23 6.64007e+06 464646 554710. 1919.41 1.27 0.250534 0.226351 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0507878 0.0457501 152 4 124 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.89 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.21 1037 18660 5257 10625 2778 56.0 MiB 0.28 0.00 4.17032 -143.358 -4.17032 4.17032 1.05 0.00131033 0.00120238 0.10928 0.100132 32 2589 21 6.64007e+06 452088 554710. 1919.41 1.31 0.275482 0.249069 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.25 0.13 0.24 -1 -1 0.25 0.0534406 0.0482574 155 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.43 vpr 55.35 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30332 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 17.4 MiB 0.21 1085 15876 4268 10377 1231 56.2 MiB 0.24 0.00 4.15553 -144.194 -4.15553 4.15553 1.05 0.00133427 0.00122529 0.0950285 0.0871671 32 2670 22 6.64007e+06 452088 554710. 1919.41 1.35 0.267194 0.241568 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0547757 0.0494116 153 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.65 vpr 55.54 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30280 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 17.0 MiB 0.17 963 9146 1745 6045 1356 55.8 MiB 0.13 0.00 4.17056 -135.219 -4.17056 4.17056 1.06 0.00129923 0.00119146 0.0534929 0.0490784 30 3028 24 6.64007e+06 477204 526063. 1820.29 4.11 0.41421 0.371418 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.25 0.12 0.20 -1 -1 0.25 0.0588011 0.0529675 149 65 60 30 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.92 vpr 55.16 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 16.7 MiB 0.11 840 12856 4254 6466 2136 55.5 MiB 0.18 0.00 3.4921 -115.538 -3.4921 3.4921 0.93 0.00100641 0.000923602 0.0770531 0.0707705 32 2099 22 6.64007e+06 238602 554710. 1919.41 1.22 0.204681 0.184357 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0403359 0.0362079 113 34 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.32 vpr 55.61 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 17.0 MiB 0.19 996 13127 3599 7422 2106 55.9 MiB 0.21 0.00 4.20393 -135.69 -4.20393 4.20393 1.08 0.00123952 0.00113419 0.08993 0.0824502 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.66 0.284503 0.256489 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0480125 0.0433434 146 63 60 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.86 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30700 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1061 10232 2187 7405 640 55.9 MiB 0.17 0.00 4.16036 -143.59 -4.16036 4.16036 0.85 0.00143536 0.00131582 0.0631531 0.0578799 26 3037 26 6.64007e+06 514878 477104. 1650.88 2.62 0.258853 0.232303 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.21 0.14 0.17 -1 -1 0.21 0.0586937 0.0526751 156 127 0 0 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.55 vpr 55.47 MiB 0.08 7156 -1 -1 1 0.03 -1 -1 30684 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 924 14769 3776 9247 1746 55.9 MiB 0.23 0.00 4.18868 -135.93 -4.18868 4.18868 1.07 0.00132272 0.00121148 0.0929273 0.0851 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.29 0.26409 0.23814 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0554051 0.049948 148 94 31 31 93 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.22 vpr 55.72 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30352 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 973 15004 4033 8498 2473 55.8 MiB 0.23 0.00 3.6693 -113.052 -3.6693 3.6693 1.07 0.00127053 0.00116374 0.0930932 0.0852981 32 2183 19 6.64007e+06 401856 554710. 1919.41 1.25 0.249909 0.225552 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.27 0.10 0.24 -1 -1 0.27 0.050113 0.0451349 138 92 26 26 90 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.30 vpr 55.61 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 17.3 MiB 0.31 1125 9725 2385 6614 726 56.0 MiB 0.19 0.00 4.21673 -144.443 -4.21673 4.21673 1.05 0.00132533 0.00121222 0.0714439 0.0656261 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.41 0.249974 0.225404 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0540025 0.0487296 155 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.29 vpr 55.42 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30140 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 964 18079 5189 10710 2180 55.8 MiB 0.25 0.01 3.5353 -109.312 -3.5353 3.5353 1.05 0.00177736 0.00162604 0.104007 0.0951663 32 2101 19 6.64007e+06 452088 554710. 1919.41 1.23 0.253839 0.228985 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0490144 0.0440913 136 88 26 26 85 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.98 vpr 54.81 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30192 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 0.07 799 9356 2113 6168 1075 55.4 MiB 0.14 0.00 3.4921 -122.483 -3.4921 3.4921 1.07 0.00100403 0.000920974 0.0561914 0.0516319 32 1948 20 6.64007e+06 213486 554710. 1919.41 1.22 0.188725 0.169856 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0386589 0.034755 115 3 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.59 vpr 55.64 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30280 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 992 16743 5741 8435 2567 56.1 MiB 0.25 0.00 4.25856 -144.485 -4.25856 4.25856 1.06 0.00131985 0.00121018 0.100311 0.0919532 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.55 0.277531 0.250419 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.24 0.13 0.18 -1 -1 0.24 0.0550652 0.049651 152 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.57 vpr 55.67 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30268 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 17.3 MiB 0.12 1054 17367 5167 10302 1898 56.1 MiB 0.28 0.00 4.21976 -145.962 -4.21976 4.21976 1.06 0.00131734 0.00120908 0.122301 0.11223 32 2466 19 6.64007e+06 288834 554710. 1919.41 1.27 0.285232 0.258216 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0623077 0.0562074 158 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.44 vpr 55.05 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30356 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 0.19 691 7975 1531 6145 299 55.5 MiB 0.12 0.00 3.6913 -111.241 -3.6913 3.6913 1.07 0.00103186 0.000944444 0.0414361 0.0379303 26 2376 30 6.64007e+06 376740 477104. 1650.88 2.00 0.193813 0.17318 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.22 0.08 0.17 -1 -1 0.22 0.0349786 0.031347 112 55 32 32 54 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.87 vpr 54.85 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.7 MiB 0.09 653 13381 4684 6039 2658 55.1 MiB 0.19 0.00 3.5533 -116.629 -3.5533 3.5533 1.08 0.000971299 0.000891432 0.0774471 0.0711454 32 1990 24 6.64007e+06 226044 554710. 1919.41 1.26 0.206711 0.186341 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0421946 0.0378353 118 4 93 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.22 vpr 55.64 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30176 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 17.2 MiB 0.17 927 16303 4785 8793 2725 55.9 MiB 0.24 0.00 4.16476 -135.871 -4.16476 4.16476 1.03 0.00124156 0.0011387 0.0949523 0.0870547 32 2289 21 6.64007e+06 414414 554710. 1919.41 1.23 0.251172 0.226712 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0518616 0.0466519 139 59 60 32 58 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.40 vpr 55.64 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30136 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 17.1 MiB 0.12 1051 17397 5163 9750 2484 56.0 MiB 0.26 0.00 4.41596 -136.112 -4.41596 4.41596 1.05 0.00128196 0.00117435 0.102702 0.0941093 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.73 0.231706 0.208878 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.24 0.13 0.17 -1 -1 0.24 0.0547931 0.0491792 136 88 28 28 88 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.99 vpr 55.75 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 17.4 MiB 0.10 1159 10441 2545 7247 649 55.7 MiB 0.19 0.00 4.95022 -163.094 -4.95022 4.95022 1.08 0.00136854 0.00125791 0.0656561 0.0604157 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.56 0.247047 0.22344 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0599087 0.0542162 179 3 156 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.06 vpr 55.28 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 16.9 MiB 0.17 813 9732 2096 6039 1597 55.8 MiB 0.13 0.00 3.7815 -111.41 -3.7815 3.7815 1.05 0.00120679 0.0011059 0.0567784 0.0520472 28 2429 27 6.64007e+06 426972 500653. 1732.36 2.09 0.221123 0.198589 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0402802 0.0363366 138 59 60 30 56 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.61 vpr 54.95 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30460 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 16.4 MiB 0.10 529 12292 5081 5761 1450 55.0 MiB 0.14 0.00 3.54427 -98.353 -3.54427 3.54427 1.05 0.000919665 0.000843569 0.0684978 0.0628783 32 1668 31 6.64007e+06 263718 554710. 1919.41 1.29 0.198856 0.178471 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0400883 0.0358249 107 34 54 27 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.55 vpr 55.62 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30448 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 17.5 MiB 0.18 1462 20856 5895 12562 2399 55.9 MiB 0.37 0.01 4.52196 -148.077 -4.52196 4.52196 1.05 0.00155719 0.00142831 0.134225 0.123203 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.53 0.335947 0.304042 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0630288 0.0567112 186 95 62 31 95 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.54 vpr 55.65 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 17.3 MiB 0.29 998 12919 3192 8538 1189 56.0 MiB 0.22 0.00 4.42996 -140.975 -4.42996 4.42996 1.05 0.00139901 0.00128311 0.101053 0.0927489 32 2535 22 6.64007e+06 276276 554710. 1919.41 1.36 0.287761 0.259014 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0621537 0.0557817 145 124 0 0 124 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.41 vpr 55.36 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 17.0 MiB 0.25 894 11948 3681 7128 1139 55.8 MiB 0.18 0.00 3.6755 -115.703 -3.6755 3.6755 1.07 0.00112512 0.00103048 0.0813656 0.0745713 32 1930 19 6.64007e+06 200928 554710. 1919.41 1.20 0.221576 0.199614 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0393538 0.0353591 108 89 0 0 89 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.76 vpr 55.22 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30252 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 17.3 MiB 0.08 1023 18745 6322 9498 2925 56.0 MiB 0.28 0.00 4.46396 -140.121 -4.46396 4.46396 1.05 0.00120869 0.0011085 0.106129 0.0973526 28 3262 26 6.64007e+06 414414 500653. 1732.36 2.10 0.270364 0.244185 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.0528788 0.0475995 147 34 90 30 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.01 vpr 55.77 MiB 0.04 7304 -1 -1 1 0.03 -1 -1 30612 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1135 20076 5790 11566 2720 55.8 MiB 0.17 0.00 4.51716 -144.659 -4.51716 4.51716 1.05 0.000525179 0.000475606 0.0477573 0.0432607 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.81 0.11755 0.10446 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0598704 0.0538754 173 64 87 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.32 vpr 55.12 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30264 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 17.2 MiB 0.13 923 11484 2608 8162 714 55.8 MiB 0.18 0.00 3.73061 -110.59 -3.73061 3.73061 1.05 0.00120162 0.0011009 0.0660836 0.0604918 26 3004 29 6.64007e+06 426972 477104. 1650.88 2.48 0.239797 0.215707 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.21 0.13 0.18 -1 -1 0.21 0.0540627 0.0485842 135 61 58 30 58 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.96 vpr 56.00 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30368 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 17.2 MiB 0.16 1008 13516 3637 9135 744 55.7 MiB 0.24 0.01 4.19956 -142.899 -4.19956 4.19956 1.05 0.00131852 0.0012095 0.0803168 0.0734207 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.59 0.290275 0.261208 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0593716 0.0535246 158 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.36 vpr 55.56 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30336 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 17.1 MiB 0.17 988 17184 5218 8807 3159 56.0 MiB 0.25 0.00 3.62559 -123.648 -3.62559 3.62559 1.05 0.00131302 0.00120449 0.0959092 0.0879898 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.95 0.269417 0.24312 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.22 0.17 0.20 -1 -1 0.22 0.0696533 0.062653 157 65 63 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.88 vpr 54.99 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30200 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 16.6 MiB 0.09 573 13430 5649 6739 1042 55.3 MiB 0.16 0.00 3.6785 -105.931 -3.6785 3.6785 1.07 0.000976675 0.000895559 0.0796449 0.0730907 28 1653 18 6.64007e+06 226044 500653. 1732.36 1.05 0.131489 0.118321 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.22 0.09 0.18 -1 -1 0.22 0.0398437 0.0356805 95 34 58 29 29 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.08 vpr 55.26 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30112 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 16.5 MiB 0.19 857 11783 4174 5528 2081 55.5 MiB 0.19 0.00 4.00656 -110.848 -4.00656 4.00656 1.08 0.00106401 0.000973802 0.0820563 0.0751292 30 1873 19 6.64007e+06 238602 526063. 1820.29 1.19 0.194732 0.174684 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0335728 0.0301894 112 82 0 0 82 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.18 vpr 55.47 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30284 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.12 1100 13261 3564 8068 1629 55.8 MiB 0.18 0.00 4.80256 -145.153 -4.80256 4.80256 1.06 0.00121894 0.00111877 0.072291 0.0663308 28 2902 24 6.64007e+06 477204 500653. 1732.36 3.90 0.40015 0.358551 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0510047 0.0459481 151 34 93 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.35 vpr 55.04 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30360 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56988 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.9 MiB 0.21 620 10442 2502 7352 588 55.7 MiB 0.14 0.00 3.6803 -100.526 -3.6803 3.6803 1.05 0.000975395 0.000893918 0.0519281 0.0475534 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.51 0.167866 0.149882 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.22 0.09 0.17 -1 -1 0.22 0.037361 0.0333843 108 56 29 29 52 26 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 5.09 vpr 55.07 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30112 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 16.6 MiB 0.16 691 13906 4599 7385 1922 55.5 MiB 0.20 0.00 3.53127 -120.288 -3.53127 3.53127 1.05 0.00106677 0.00097929 0.087393 0.08024 32 2039 20 6.64007e+06 213486 554710. 1919.41 1.28 0.213479 0.192513 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.25 0.11 0.23 -1 -1 0.25 0.044617 0.0400972 118 34 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.33 vpr 55.61 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30256 -1 -1 38 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 17.2 MiB 0.18 999 13261 3446 8635 1180 55.8 MiB 0.19 0.00 3.5665 -119.865 -3.5665 3.5665 1.04 0.00125855 0.00115397 0.0744826 0.0681984 30 2030 20 6.64007e+06 477204 526063. 1820.29 1.20 0.2306 0.2079 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0483865 0.0434082 144 64 58 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.00 vpr 55.06 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 16.8 MiB 0.17 869 9368 2508 6076 784 55.5 MiB 0.14 0.00 3.34153 -105.882 -3.34153 3.34153 1.05 0.00100174 0.00091668 0.0581428 0.0533356 32 1935 19 6.64007e+06 213486 554710. 1919.41 1.17 0.182319 0.16378 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0355479 0.0318938 106 55 31 31 53 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.34 vpr 55.33 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 16.9 MiB 0.16 879 9865 2512 6573 780 55.9 MiB 0.15 0.00 3.57229 -117.612 -3.57229 3.57229 1.03 0.00123995 0.00113653 0.0587771 0.0538537 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.75 0.231702 0.208362 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.047711 0.0430243 137 65 52 26 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.36 vpr 55.57 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 17.2 MiB 0.29 875 10540 2287 7686 567 55.9 MiB 0.19 0.00 3.79366 -119.555 -3.79366 3.79366 1.09 0.00133896 0.00122676 0.0729341 0.0669137 30 2033 25 6.64007e+06 464646 526063. 1820.29 1.28 0.24985 0.224903 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0510956 0.0460656 149 93 31 31 92 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.21 vpr 55.20 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30204 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 17.0 MiB 0.17 816 8626 2345 5890 391 55.7 MiB 0.14 0.00 3.06096 -106.925 -3.06096 3.06096 1.05 0.00108683 0.000995915 0.0553231 0.0507273 32 2043 18 6.64007e+06 226044 554710. 1919.41 1.23 0.188004 0.169097 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.25 0.10 0.22 -1 -1 0.25 0.0449396 0.0403321 115 61 32 32 60 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.26 vpr 55.21 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.20 920 11296 3024 7326 946 55.6 MiB 0.17 0.00 3.5031 -121.121 -3.5031 3.5031 1.05 0.00111123 0.00101844 0.0732044 0.0671231 30 2197 20 6.64007e+06 226044 526063. 1820.29 1.12 0.181123 0.162508 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0450467 0.0404539 121 63 32 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.29 vpr 55.54 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30580 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 17.3 MiB 0.16 1027 12240 2965 8371 904 56.0 MiB 0.19 0.00 4.25676 -144.495 -4.25676 4.25676 1.13 0.00130301 0.00119484 0.0704251 0.0645493 32 2501 30 6.64007e+06 477204 554710. 1919.41 1.44 0.262847 0.236714 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.058365 0.0525856 156 65 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.23 vpr 55.45 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30512 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1021 16079 4076 10280 1723 55.8 MiB 0.16 0.00 3.7925 -111.563 -3.7925 3.7925 1.03 0.000437226 0.000394134 0.0478999 0.0434832 32 2199 23 6.64007e+06 426972 554710. 1919.41 1.14 0.20129 0.180465 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.045776 0.0412528 135 62 56 29 58 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.71 vpr 55.96 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 17.3 MiB 0.30 937 9020 1835 6701 484 55.9 MiB 0.16 0.01 4.29776 -145.038 -4.29776 4.29776 1.06 0.00145479 0.00133386 0.0581837 0.0533538 32 2670 31 6.64007e+06 489762 554710. 1919.41 1.40 0.263477 0.23657 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0618353 0.0555575 158 127 0 0 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.80 vpr 54.87 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30164 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 16.2 MiB 0.08 804 11948 3966 6404 1578 54.9 MiB 0.15 0.00 3.08296 -103.61 -3.08296 3.08296 1.04 0.000921943 0.00084658 0.0669025 0.0614338 32 1812 20 6.64007e+06 213486 554710. 1919.41 1.18 0.191357 0.172369 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.25 0.08 0.22 -1 -1 0.25 0.0347888 0.0310368 106 4 85 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.27 vpr 55.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30232 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 17.1 MiB 0.10 998 18111 4956 10747 2408 55.7 MiB 0.14 0.00 4.26296 -139.632 -4.26296 4.26296 1.06 0.000479012 0.000431854 0.0404269 0.0364651 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.76 0.229125 0.20518 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.22 0.13 0.18 -1 -1 0.22 0.0572017 0.0515105 144 92 28 28 92 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.42 vpr 55.55 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30028 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.9 MiB 0.32 734 13381 4309 7077 1995 55.7 MiB 0.20 0.00 3.54047 -121.881 -3.54047 3.54047 1.06 0.00137499 0.00126292 0.0962368 0.088278 28 2004 19 6.64007e+06 213486 500653. 1732.36 1.20 0.241626 0.217943 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.22 0.11 0.18 -1 -1 0.22 0.0488515 0.0438367 114 96 0 0 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.47 vpr 55.46 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30244 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1102 9501 2041 6911 549 56.2 MiB 0.16 0.01 3.5841 -124.322 -3.5841 3.5841 1.05 0.00129492 0.00118817 0.0554789 0.050903 30 2381 21 6.64007e+06 464646 526063. 1820.29 1.26 0.219561 0.197791 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0476442 0.0430128 151 65 61 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.93 vpr 55.43 MiB 0.05 7348 -1 -1 1 0.03 -1 -1 30664 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 17.8 MiB 0.26 1244 16489 4012 10933 1544 56.3 MiB 0.28 0.01 4.96651 -168.366 -4.96651 4.96651 1.05 0.001615 0.00147831 0.106904 0.098176 26 3486 28 6.64007e+06 565110 477104. 1650.88 3.19 0.324512 0.293038 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.21 0.16 0.17 -1 -1 0.21 0.0630546 0.0569107 188 96 64 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.90 vpr 54.70 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30096 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.10 483 10509 2545 7262 702 55.0 MiB 0.11 0.00 2.73878 -81.5531 -2.73878 2.73878 1.06 0.00081907 0.000749193 0.0555462 0.0508053 28 1397 23 6.64007e+06 188370 500653. 1732.36 1.12 0.162415 0.145 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.22 0.07 0.18 -1 -1 0.22 0.0338227 0.0300703 83 56 0 0 53 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.96 vpr 55.02 MiB 0.05 6892 -1 -1 1 0.03 -1 -1 30324 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 16.4 MiB 0.08 793 10388 3558 5136 1694 55.0 MiB 0.14 0.00 3.6815 -114.291 -3.6815 3.6815 1.05 0.00100083 0.000917528 0.064177 0.0588883 32 1615 19 6.64007e+06 213486 554710. 1919.41 1.15 0.187007 0.168235 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0403113 0.0361639 97 34 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.96 vpr 55.17 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.9 MiB 0.11 798 13966 5020 6560 2386 55.6 MiB 0.21 0.00 3.4859 -119.604 -3.4859 3.4859 1.06 0.00106125 0.000973399 0.0861333 0.0790485 32 2382 23 6.64007e+06 226044 554710. 1919.41 1.38 0.223093 0.201109 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0457113 0.0410063 126 34 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.86 vpr 54.74 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30372 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.4 MiB 0.06 678 12127 3168 7672 1287 55.0 MiB 0.14 0.00 3.4089 -91.215 -3.4089 3.4089 1.04 0.00117672 0.00107809 0.0538512 0.0494329 26 1687 20 6.64007e+06 426972 477104. 1650.88 1.28 0.159814 0.143333 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.21 0.10 0.17 -1 -1 0.21 0.0442308 0.0393992 103 34 50 25 25 25 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.42 vpr 55.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1064 14828 5337 7470 2021 55.8 MiB 0.24 0.00 4.34676 -140.278 -4.34676 4.34676 1.06 0.000807085 0.000734388 0.0883533 0.0805688 32 2475 24 6.64007e+06 276276 554710. 1919.41 1.26 0.266315 0.239407 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.24 0.12 0.11 -1 -1 0.24 0.0566516 0.0510199 149 94 32 32 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.54 vpr 55.86 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30344 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 17.3 MiB 0.19 786 10336 2273 7345 718 56.0 MiB 0.09 0.00 3.53327 -114.261 -3.53327 3.53327 1.07 0.000498228 0.000443033 0.0243597 0.0219332 28 2510 49 6.64007e+06 489762 500653. 1732.36 2.36 0.240548 0.214758 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.22 0.13 0.20 -1 -1 0.22 0.0546721 0.0493793 148 94 29 29 93 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.66 vpr 55.34 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 17.3 MiB 0.20 984 7523 1506 5708 309 55.8 MiB 0.14 0.00 3.92206 -133.487 -3.92206 3.92206 1.05 0.00137067 0.00125757 0.0497852 0.0456441 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.84 0.248154 0.222431 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.27 0.17 0.22 -1 -1 0.27 0.0642352 0.057744 151 96 32 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.51 vpr 55.31 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 17.1 MiB 0.34 986 12323 4513 6271 1539 55.8 MiB 0.21 0.00 4.33507 -129.747 -4.33507 4.33507 1.05 0.00127901 0.00117203 0.0910724 0.0835554 32 2540 23 6.65987e+06 266238 554710. 1919.41 1.30 0.257887 0.232747 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0536876 0.0483671 140 91 30 30 89 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.88 vpr 55.04 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 17.3 MiB 0.14 1040 16523 4439 10256 1828 55.9 MiB 0.24 0.00 3.41879 -119.689 -3.41879 3.41879 1.06 0.00125118 0.00114677 0.0952753 0.0874299 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.58 0.257862 0.232788 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.23 0.13 0.18 -1 -1 0.23 0.0571844 0.0515881 141 65 54 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.33 vpr 55.06 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30492 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 16.6 MiB 0.13 793 11603 2857 6819 1927 55.5 MiB 0.16 0.00 4.2977 -123.649 -4.2977 4.2977 1.05 0.00114653 0.00105196 0.0772747 0.0709645 34 2278 23 6.65987e+06 278916 585099. 2024.56 2.16 0.269989 0.242956 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.26 0.13 0.22 -1 -1 0.26 0.05252 0.0472835 138 34 87 29 29 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 6.12 vpr 55.04 MiB 0.05 7056 -1 -1 1 0.05 -1 -1 30168 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1026 15456 4961 8586 1909 55.5 MiB 0.26 0.00 4.14936 -143.085 -4.14936 4.14936 1.09 0.00125067 0.00114695 0.109707 0.100689 32 2926 21 6.65987e+06 253560 554710. 1919.41 1.41 0.274933 0.248726 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.25 0.16 0.21 -1 -1 0.25 0.0574555 0.0518716 151 34 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.08 vpr 55.28 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 17.0 MiB 0.20 1029 9501 1978 7135 388 55.4 MiB 0.16 0.00 3.43623 -117.882 -3.43623 3.43623 1.07 0.00131834 0.00120651 0.0565238 0.051835 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.93 0.124558 0.111381 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.25 0.12 0.22 -1 -1 0.25 0.0548377 0.049448 154 64 63 32 63 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.93 vpr 54.68 MiB 0.02 6960 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 16.1 MiB 0.20 580 13026 4344 6329 2353 54.9 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 1.06 0.000955119 0.000876981 0.0746351 0.0685204 30 1363 17 6.65987e+06 240882 526063. 1820.29 1.06 0.185149 0.166772 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0327821 0.0294105 96 34 54 27 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.02 vpr 55.14 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30052 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1006 10170 2426 6636 1108 55.5 MiB 0.15 0.00 3.27903 -106.33 -3.27903 3.27903 1.03 0.00110905 0.00101816 0.054649 0.050174 28 2449 18 6.65987e+06 418374 500653. 1732.36 1.31 0.193834 0.174623 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.22 0.10 0.20 -1 -1 0.22 0.0445708 0.0401505 139 4 115 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.16 vpr 55.31 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30016 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 16.7 MiB 0.27 870 11571 3268 6617 1686 55.5 MiB 0.15 0.00 3.07084 -101.313 -3.07084 3.07084 1.07 0.00108156 0.000990332 0.0653262 0.0596821 32 1812 21 6.65987e+06 202848 554710. 1919.41 1.16 0.201471 0.180874 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0431414 0.0386952 105 85 0 0 84 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.31 vpr 55.02 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 16.7 MiB 0.19 642 11432 4032 4649 2751 55.4 MiB 0.15 0.00 3.56921 -118.924 -3.56921 3.56921 0.92 0.00106261 0.000970312 0.0734364 0.0673744 36 2032 39 6.65987e+06 202848 612192. 2118.31 3.24 0.329633 0.294558 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.27 0.10 0.24 -1 -1 0.27 0.0411531 0.0369138 121 34 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.02 vpr 55.04 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30032 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 16.6 MiB 0.24 784 11571 3060 7609 902 55.4 MiB 0.17 0.00 3.4841 -113.76 -3.4841 3.4841 1.07 0.00106762 0.000978702 0.0759783 0.0696433 32 1689 20 6.65987e+06 215526 554710. 1919.41 1.19 0.195798 0.175748 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.25 0.10 0.23 -1 -1 0.25 0.0479643 0.0429902 110 63 30 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 5.14 vpr 55.15 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30476 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.9 MiB 0.22 841 11223 2602 8034 587 55.5 MiB 0.16 0.00 3.27957 -108.894 -3.27957 3.27957 1.08 0.0010708 0.000979503 0.0602796 0.0552202 30 1969 21 6.65987e+06 367662 526063. 1820.29 1.22 0.194145 0.174292 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.25 0.08 0.20 -1 -1 0.25 0.0402884 0.036201 114 65 25 25 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.44 vpr 55.44 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30184 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 17.2 MiB 0.39 1002 18711 5900 10256 2555 55.8 MiB 0.28 0.00 3.50686 -122.446 -3.50686 3.50686 1.07 0.00125494 0.00114995 0.111504 0.102227 32 2409 24 6.65987e+06 405696 554710. 1919.41 1.30 0.276868 0.250225 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0569309 0.0512388 143 58 64 32 57 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.44 vpr 55.45 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 17.0 MiB 0.27 942 7973 1567 6126 280 55.5 MiB 0.15 0.00 4.02327 -135.611 -4.02327 4.02327 1.07 0.00132467 0.00121557 0.0504346 0.04628 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.42 0.226447 0.203972 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.26 0.16 0.23 -1 -1 0.26 0.0621108 0.0560387 156 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.89 vpr 54.79 MiB 0.03 6996 -1 -1 1 0.03 -1 -1 30424 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 16.2 MiB 0.16 686 7177 1709 4538 930 54.9 MiB 0.11 0.00 3.15358 -93.6229 -3.15358 3.15358 1.06 0.000937189 0.000859094 0.0426784 0.0391884 28 1802 20 6.65987e+06 228204 500653. 1732.36 1.18 0.15865 0.142203 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.23 0.09 0.18 -1 -1 0.23 0.0407115 0.0364626 107 29 58 29 24 24 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.57 vpr 55.38 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 1074 13992 4161 7846 1985 55.9 MiB 0.24 0.00 3.5141 -125.301 -3.5141 3.5141 1.07 0.00130083 0.00119329 0.103564 0.0950837 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.31 0.271227 0.245193 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0530136 0.0478926 146 63 64 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.66 vpr 55.34 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 17.1 MiB 0.33 934 18323 6450 8556 3317 55.8 MiB 0.23 0.00 3.6343 -123.732 -3.6343 3.6343 1.05 0.0012488 0.00114415 0.105495 0.0967105 30 2475 27 6.65987e+06 431052 526063. 1820.29 6.25 0.493804 0.44283 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0463459 0.0418076 142 57 64 32 56 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.97 vpr 55.10 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 29964 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 16.9 MiB 0.23 832 15430 4777 8349 2304 55.5 MiB 0.21 0.00 2.83964 -101.748 -2.83964 2.83964 1.04 0.00110264 0.00100972 0.0830171 0.076024 30 1919 16 6.65987e+06 380340 526063. 1820.29 1.18 0.215495 0.194221 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0387878 0.0349131 118 65 29 29 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.67 vpr 54.48 MiB 0.02 6772 -1 -1 1 0.03 -1 -1 29984 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 16.3 MiB 0.15 661 10835 3152 6204 1479 54.7 MiB 0.12 0.00 2.60038 -85.2282 -2.60038 2.60038 1.05 0.000791966 0.00072671 0.0548181 0.0502851 28 1412 25 6.65987e+06 190170 500653. 1732.36 1.05 0.158034 0.141339 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.22 0.06 0.18 -1 -1 0.22 0.028531 0.0254443 85 34 24 24 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.40 vpr 54.92 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30364 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 16.7 MiB 0.21 855 13768 4604 7573 1591 55.5 MiB 0.20 0.00 3.94338 -122.155 -3.94338 3.94338 0.95 0.000637775 0.000577947 0.0931743 0.0854171 32 1948 20 6.65987e+06 202848 554710. 1919.41 1.14 0.227972 0.205556 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0401114 0.0360384 113 64 31 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.05 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.05 -1 -1 30008 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 17.1 MiB 0.07 1021 12248 3399 7922 927 55.8 MiB 0.21 0.00 3.9823 -134.861 -3.9823 3.9823 1.06 0.00134363 0.00122449 0.0798405 0.0731428 26 2573 27 6.65987e+06 431052 477104. 1650.88 1.53 0.251242 0.226795 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.22 0.12 0.17 -1 -1 0.22 0.0529492 0.0478262 145 34 91 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.27 vpr 55.54 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30432 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 17.4 MiB 0.32 1084 15644 4587 8678 2379 55.7 MiB 0.24 0.01 3.46744 -121.209 -3.46744 3.46744 1.05 0.00142028 0.00130135 0.0994392 0.0911577 32 2893 24 6.65987e+06 456408 554710. 1919.41 1.37 0.266558 0.239569 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.27 0.11 0.21 -1 -1 0.27 0.0465621 0.0417213 149 124 0 0 125 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.94 vpr 54.52 MiB 0.04 6764 -1 -1 1 0.04 -1 -1 30504 -1 -1 17 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 16.0 MiB 0.20 410 10345 3142 6004 1199 54.7 MiB 0.10 0.00 2.61938 -68.655 -2.61938 2.61938 1.06 0.000682999 0.000624426 0.0467985 0.0428526 30 1108 22 6.65987e+06 215526 526063. 1820.29 1.05 0.133367 0.11936 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.26 0.05 0.20 -1 -1 0.26 0.0243357 0.0217542 77 30 26 26 22 22 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.72 vpr 55.23 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1123 11064 3077 6737 1250 55.5 MiB 0.19 0.00 4.10424 -135.549 -4.10424 4.10424 1.05 0.00115418 0.00106042 0.0718984 0.0660899 32 2636 25 6.65987e+06 253560 554710. 1919.41 1.35 0.226606 0.204538 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.046815 0.0422241 137 3 122 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.62 vpr 54.29 MiB 0.04 6588 -1 -1 1 0.03 -1 -1 30216 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 16.2 MiB 0.05 594 8553 1943 6358 252 54.8 MiB 0.09 0.00 2.22607 -81.0919 -2.22607 2.22607 1.04 0.00072048 0.000658924 0.0397925 0.0364155 28 1546 23 6.65987e+06 164814 500653. 1732.36 1.18 0.13224 0.118224 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.23 0.05 0.18 -1 -1 0.23 0.0207431 0.018679 81 3 53 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.02 vpr 55.21 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30492 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 17.2 MiB 0.08 1112 19189 6002 11213 1974 55.9 MiB 0.28 0.00 4.06247 -140.472 -4.06247 4.06247 1.05 0.00124928 0.0011469 0.111177 0.101981 32 2640 23 6.65987e+06 418374 554710. 1919.41 1.34 0.272976 0.246964 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0545103 0.0491758 151 34 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.19 vpr 54.90 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 29988 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 16.9 MiB 0.14 1134 16059 4004 10217 1838 55.6 MiB 0.25 0.01 3.38184 -119.391 -3.38184 3.38184 1.05 0.00119836 0.00110321 0.0878816 0.0809264 30 2437 23 6.65987e+06 443730 526063. 1820.29 1.27 0.242715 0.219788 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0492631 0.0444222 150 3 124 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.31 vpr 55.35 MiB 0.05 6940 -1 -1 1 0.04 -1 -1 30544 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 16.9 MiB 0.13 1120 14463 4038 8924 1501 55.4 MiB 0.24 0.00 3.91784 -136.256 -3.91784 3.91784 1.06 0.0013076 0.00119892 0.0864023 0.07923 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.91 0.261434 0.235841 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.23 0.15 0.18 -1 -1 0.23 0.0608918 0.0548513 153 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 5.05 vpr 55.02 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 29964 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 16.7 MiB 0.07 736 8191 2107 5347 737 55.2 MiB 0.12 0.00 2.8895 -100.047 -2.8895 2.8895 1.05 0.000999552 0.000916055 0.0504124 0.0461954 28 1959 23 6.65987e+06 190170 500653. 1732.36 1.17 0.179442 0.160845 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.22 0.09 0.19 -1 -1 0.22 0.0369099 0.0331445 106 34 54 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 5.05 vpr 54.87 MiB 0.02 6828 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.09 832 12156 3666 7026 1464 55.4 MiB 0.16 0.00 3.4951 -115.55 -3.4951 3.4951 1.05 0.00100324 0.000921046 0.0726376 0.066663 32 1928 21 6.65987e+06 240882 554710. 1919.41 1.19 0.198756 0.179033 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0406313 0.036505 115 34 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.01 vpr 54.74 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30164 -1 -1 20 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.6 MiB 0.13 590 7820 1903 5456 461 55.1 MiB 0.12 0.00 3.4309 -99.7277 -3.4309 3.4309 1.05 0.000951808 0.000872622 0.0461646 0.0423333 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.42 0.21077 0.188607 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0402513 0.0360958 107 34 56 28 28 28 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.12 vpr 54.76 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30240 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.6 MiB 0.12 686 12008 2561 8162 1285 55.1 MiB 0.14 0.00 3.4859 -118.026 -3.4859 3.4859 1.05 0.000996608 0.000915557 0.0702471 0.0644983 32 2225 24 6.65987e+06 228204 554710. 1919.41 1.27 0.203609 0.183369 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0474662 0.0425585 125 3 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.94 vpr 55.11 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.6 MiB 0.08 778 11809 2809 7761 1239 55.2 MiB 0.17 0.00 3.29178 -109.233 -3.29178 3.29178 1.05 0.00102396 0.00093902 0.0596901 0.0547288 26 2453 37 6.65987e+06 393018 477104. 1650.88 2.11 0.217196 0.194865 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.21 0.11 0.18 -1 -1 0.21 0.0427751 0.0383931 119 34 61 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.14 vpr 54.89 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29992 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 16.7 MiB 0.23 717 8047 1725 5786 536 55.5 MiB 0.12 0.00 2.76744 -86.2128 -2.76744 2.76744 1.05 0.00102687 0.000941732 0.0434244 0.039798 32 1839 18 6.65987e+06 380340 554710. 1919.41 1.16 0.166901 0.149738 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394439 0.0354111 109 61 29 29 57 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.22 vpr 55.80 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30440 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 17.5 MiB 0.30 1246 13117 3185 8526 1406 55.8 MiB 0.24 0.01 4.16036 -141.523 -4.16036 4.16036 1.05 0.00141727 0.00130376 0.0813696 0.0748285 26 4082 47 6.65987e+06 494442 477104. 1650.88 10.09 0.510675 0.458992 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.21 0.17 0.17 -1 -1 0.21 0.055621 0.0502959 179 29 128 32 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.15 vpr 55.59 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30292 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 0.25 1041 9447 2232 6542 673 56.1 MiB 0.16 0.00 3.5061 -122.514 -3.5061 3.5061 1.05 0.00131086 0.00120108 0.0579123 0.0530226 32 2399 23 6.65987e+06 443730 554710. 1919.41 1.27 0.228087 0.205469 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.050632 0.0457516 152 65 62 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.20 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 16.6 MiB 0.31 709 5599 957 4403 239 55.4 MiB 0.10 0.00 3.18838 -103.883 -3.18838 3.18838 1.06 0.00110577 0.0010124 0.0336432 0.030828 26 2166 21 6.65987e+06 354984 477104. 1650.88 2.10 0.172512 0.154203 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.22 0.10 0.17 -1 -1 0.22 0.0477704 0.0427876 113 90 0 0 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.42 vpr 55.55 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 17.3 MiB 0.23 1062 14541 4862 7202 2477 55.9 MiB 0.26 0.00 3.4921 -118.867 -3.4921 3.4921 1.06 0.00126588 0.00115994 0.113081 0.103974 32 2506 18 6.65987e+06 266238 554710. 1919.41 1.26 0.267305 0.242082 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0555391 0.0500245 148 64 60 30 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.58 vpr 55.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57492 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 17.2 MiB 0.28 1075 7953 1851 5455 647 56.1 MiB 0.15 0.00 4.84238 -140.996 -4.84238 4.84238 1.05 0.00140591 0.00128908 0.0648333 0.0594913 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.29 0.23704 0.213258 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0519342 0.0467881 149 124 0 0 124 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.10 vpr 55.54 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 17.0 MiB 0.39 977 8868 2457 6032 379 55.8 MiB 0.16 0.00 4.78027 -132.334 -4.78027 4.78027 1.05 0.00131079 0.00120044 0.0673211 0.0617271 30 2304 21 6.65987e+06 266238 526063. 1820.29 1.23 0.236623 0.21335 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0441531 0.0399301 143 90 31 31 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.67 vpr 55.33 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30184 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 17.2 MiB 0.24 1043 11922 3052 7896 974 55.5 MiB 0.20 0.00 3.40784 -114.93 -3.40784 3.40784 1.05 0.00126687 0.00115932 0.0725945 0.0664838 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.94 0.233996 0.210773 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.22 0.14 0.17 -1 -1 0.22 0.0572352 0.0516096 146 64 60 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.44 vpr 54.90 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30392 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 17.0 MiB 0.13 1091 9903 2241 6952 710 55.4 MiB 0.17 0.00 3.91784 -134.792 -3.91784 3.91784 1.05 0.0012944 0.00118757 0.059781 0.0548311 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.40 0.235866 0.212397 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0566692 0.0510885 154 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.66 vpr 55.62 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30456 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.27 1177 18648 4595 11838 2215 55.9 MiB 0.35 0.01 4.0593 -137.323 -4.0593 4.0593 1.06 0.00157777 0.00144798 0.123361 0.113229 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.66 0.328598 0.297177 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0689439 0.0622355 184 96 62 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.17 vpr 54.77 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 30436 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.7 MiB 0.14 685 11806 2914 7153 1739 55.5 MiB 0.17 0.00 3.55518 -111.493 -3.55518 3.55518 1.07 0.00102181 0.000937291 0.0722175 0.0662841 32 2030 23 6.65987e+06 228204 554710. 1919.41 1.28 0.204646 0.18418 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.26 0.11 0.22 -1 -1 0.26 0.0413874 0.0371872 116 34 62 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.97 vpr 55.74 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 17.2 MiB 0.28 976 9675 2155 7053 467 55.6 MiB 0.16 0.01 4.0281 -131.561 -4.0281 4.0281 1.09 0.00128488 0.00117955 0.0578887 0.0531327 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.92 0.22461 0.202286 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.22 0.14 0.18 -1 -1 0.22 0.0559747 0.0504675 150 64 62 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.71 vpr 55.23 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30416 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 16.9 MiB 0.15 1040 11641 3109 7665 867 55.4 MiB 0.20 0.00 3.62624 -117.445 -3.62624 3.62624 1.05 0.00127986 0.00117393 0.0709358 0.0650205 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.41 0.237516 0.214027 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.021162 0.0189285 148 63 62 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.20 vpr 55.20 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 17.2 MiB 0.16 853 8685 1897 5601 1187 55.7 MiB 0.14 0.00 4.14936 -138.467 -4.14936 4.14936 1.05 0.00118917 0.00109227 0.0598665 0.0550157 32 3554 31 6.65987e+06 253560 554710. 1919.41 2.30 0.29422 0.264706 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0584658 0.0527418 150 3 128 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.60 vpr 55.44 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 17.2 MiB 0.33 1097 11798 3144 7589 1065 55.6 MiB 0.20 0.00 3.29555 -116.715 -3.29555 3.29555 1.05 0.00132858 0.00121774 0.0733096 0.0671949 32 2610 28 6.65987e+06 431052 554710. 1919.41 1.32 0.255434 0.230093 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0688844 0.0619885 145 96 25 25 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.96 vpr 55.37 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30100 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 17.1 MiB 0.32 1042 7623 1446 5778 399 55.5 MiB 0.08 0.00 3.5841 -121.365 -3.5841 3.5841 1.10 0.00047034 0.000424146 0.0183568 0.0166702 32 2739 23 6.65987e+06 443730 554710. 1919.41 1.21 0.184643 0.165459 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.0516239 0.0467119 146 61 64 32 60 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.75 vpr 55.69 MiB 0.05 7004 -1 -1 1 0.04 -1 -1 30356 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1118 19136 5296 11671 2169 55.5 MiB 0.31 0.01 3.42984 -118.83 -3.42984 3.42984 1.07 0.00130547 0.00119566 0.111212 0.101866 32 2579 24 6.65987e+06 469086 554710. 1919.41 1.32 0.284569 0.257162 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.25 0.13 0.22 -1 -1 0.25 0.0574366 0.0517783 155 65 63 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.06 vpr 55.25 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 17.0 MiB 0.05 1049 17883 5721 9099 3063 55.4 MiB 0.28 0.00 4.02327 -139.097 -4.02327 4.02327 1.08 0.00149342 0.00136792 0.107416 0.0985898 32 2663 21 6.65987e+06 443730 554710. 1919.41 1.42 0.275329 0.248918 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0583972 0.0526435 150 34 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.17 vpr 55.14 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30588 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1032 17491 4961 10150 2380 55.8 MiB 0.28 0.00 3.95704 -138.916 -3.95704 3.95704 1.07 0.001304 0.00119499 0.108657 0.0996674 32 2565 23 6.65987e+06 469086 554710. 1919.41 1.34 0.277026 0.250119 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0587593 0.05295 153 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.64 vpr 55.47 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30300 -1 -1 34 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 17.5 MiB 0.36 1081 15859 4297 9232 2330 55.7 MiB 0.25 0.00 4.24338 -127.817 -4.24338 4.24338 0.82 0.00140294 0.0012855 0.104525 0.0956587 28 2788 21 6.65987e+06 431052 500653. 1732.36 1.34 0.279068 0.251371 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.06 0.10 -1 -1 0.20 0.022439 0.0199945 145 122 0 0 122 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.46 vpr 55.22 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1088 15822 4733 9518 1571 55.5 MiB 0.28 0.00 4.01118 -127.976 -4.01118 4.01118 0.85 0.00136157 0.00124829 0.121888 0.111829 32 2771 23 6.65987e+06 253560 554710. 1919.41 1.33 0.275803 0.249095 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.27 0.15 0.21 -1 -1 0.27 0.0623543 0.0561593 149 94 32 32 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.00 vpr 54.80 MiB 0.08 6936 -1 -1 1 0.03 -1 -1 30440 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 16.8 MiB 0.07 798 8401 2034 5819 548 55.3 MiB 0.13 0.00 3.27158 -111.236 -3.27158 3.27158 1.06 0.00105251 0.000956504 0.0440923 0.0403958 30 1935 19 6.65987e+06 380340 526063. 1820.29 1.18 0.171615 0.154045 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.24 0.09 0.20 -1 -1 0.24 0.0436546 0.0392642 124 34 63 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.20 vpr 55.30 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.9 MiB 0.27 912 11830 3154 7792 884 55.7 MiB 0.19 0.00 3.41618 -118.934 -3.41618 3.41618 1.05 0.00116321 0.00106443 0.0805029 0.0737111 32 2244 21 6.65987e+06 228204 554710. 1919.41 1.24 0.226891 0.204159 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.048934 0.0439708 121 94 0 0 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.73 vpr 55.45 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30640 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 17.5 MiB 0.17 1362 14988 3862 9734 1392 55.8 MiB 0.26 0.01 4.6627 -159.741 -4.6627 4.6627 1.06 0.00152371 0.0014016 0.0982609 0.0903005 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.55 0.305847 0.276503 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.25 0.16 0.22 -1 -1 0.25 0.0668247 0.0603586 187 65 96 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.18 vpr 55.15 MiB 0.05 6988 -1 -1 1 0.04 -1 -1 30232 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57124 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 17.1 MiB 0.17 954 14567 4735 7432 2400 55.8 MiB 0.22 0.00 3.51422 -121.562 -3.51422 3.51422 1.05 0.00123366 0.00113255 0.0869937 0.0798762 32 2533 23 6.65987e+06 393018 554710. 1919.41 1.29 0.247163 0.223282 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0520615 0.046956 146 34 92 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.24 vpr 55.14 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30128 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 16.6 MiB 0.11 839 17066 5534 9253 2279 55.2 MiB 0.22 0.00 3.49012 -114.14 -3.49012 3.49012 1.05 0.00100282 0.000919975 0.0858074 0.0786055 32 1859 23 6.65987e+06 380340 554710. 1919.41 1.18 0.21538 0.193952 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0454808 0.040772 115 34 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.05 vpr 55.69 MiB 0.05 7396 -1 -1 1 0.03 -1 -1 30768 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 17.7 MiB 0.57 1333 18829 5161 11634 2034 55.9 MiB 0.33 0.01 4.64147 -157.361 -4.64147 4.64147 1.05 0.0016344 0.00149899 0.126121 0.115526 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.45 0.341617 0.30847 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.24 0.13 0.20 -1 -1 0.24 0.0684025 0.0617753 186 127 32 32 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 5.35 vpr 55.17 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1044 16340 4500 10034 1806 55.3 MiB 0.23 0.00 4.15932 -143.209 -4.15932 4.15932 1.05 0.0012537 0.00115042 0.0916309 0.0840458 28 2433 22 6.65987e+06 456408 500653. 1732.36 1.30 0.252991 0.228684 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0445553 0.0402844 151 34 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.86 vpr 54.88 MiB 0.07 6816 -1 -1 1 0.03 -1 -1 30148 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 16.8 MiB 0.07 722 13703 3609 8489 1605 55.3 MiB 0.19 0.00 3.4859 -117.474 -3.4859 3.4859 1.07 0.00101868 0.000935357 0.0671784 0.0615911 28 2223 23 6.65987e+06 393018 500653. 1732.36 1.42 0.196818 0.177136 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.22 0.10 0.18 -1 -1 0.22 0.0418917 0.0376499 123 3 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.37 vpr 55.27 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30764 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 17.3 MiB 0.19 1337 12702 3419 8223 1060 55.7 MiB 0.23 0.01 4.90437 -166.477 -4.90437 4.90437 1.07 0.00147841 0.00135989 0.0799468 0.0735818 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.43 0.271605 0.245531 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.24 0.14 0.20 -1 -1 0.24 0.0616983 0.0557606 188 34 128 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.71 vpr 54.71 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30152 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 16.5 MiB 0.12 852 11260 3935 5447 1878 55.0 MiB 0.16 0.00 3.4749 -119.679 -3.4749 3.4749 1.05 0.00101734 0.000932727 0.0702409 0.064472 32 2124 48 6.65987e+06 202848 554710. 1919.41 1.95 0.258585 0.231886 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0378926 0.0339623 121 3 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.23 vpr 54.88 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30252 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 16.5 MiB 0.22 707 8073 1842 5622 609 55.1 MiB 0.12 0.00 3.47387 -110.471 -3.47387 3.47387 1.07 0.000590206 0.000534908 0.0301772 0.0274102 28 1935 20 6.65987e+06 393018 500653. 1732.36 1.18 0.15743 0.14085 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.26 0.10 0.18 -1 -1 0.26 0.0403385 0.0363816 113 34 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.74 vpr 55.59 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30288 -1 -1 33 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 17.1 MiB 0.30 964 15856 4550 8712 2594 55.8 MiB 0.24 0.00 3.50895 -109.722 -3.50895 3.50895 1.05 0.00124123 0.00113799 0.0960778 0.0880128 30 2020 23 6.65987e+06 418374 526063. 1820.29 1.23 0.257672 0.232465 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.28 0.09 0.20 -1 -1 0.28 0.048532 0.043803 133 88 29 29 85 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.19 vpr 55.49 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30500 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 17.1 MiB 0.14 1002 7770 1874 5369 527 55.8 MiB 0.15 0.00 4.0593 -140.547 -4.0593 4.0593 1.05 0.00130765 0.0011997 0.0590967 0.0542881 32 2537 20 6.65987e+06 253560 554710. 1919.41 1.35 0.222907 0.201107 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0574623 0.051806 151 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.34 vpr 55.39 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30592 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 17.2 MiB 0.42 1039 19223 6359 10018 2846 55.6 MiB 0.29 0.00 4.06007 -140.169 -4.06007 4.06007 1.05 0.00131091 0.00120194 0.11577 0.106113 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.52 0.28657 0.259183 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.22 0.13 0.18 -1 -1 0.22 0.0548821 0.0494993 152 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.12 vpr 55.00 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30368 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 697 8614 1900 5780 934 55.4 MiB 0.13 0.00 3.41884 -113.998 -3.41884 3.41884 1.05 0.00111543 0.00102073 0.0481406 0.0441127 32 1903 25 6.65987e+06 380340 554710. 1919.41 1.26 0.195663 0.175536 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.28 0.11 0.11 -1 -1 0.28 0.0472281 0.0424964 120 65 32 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.10 vpr 55.28 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.7 MiB 0.30 800 12464 4465 5577 2422 55.4 MiB 0.19 0.00 3.46898 -107.312 -3.46898 3.46898 1.07 0.00110782 0.00101461 0.0837628 0.0767233 32 1982 23 6.65987e+06 215526 554710. 1919.41 1.19 0.217613 0.195731 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0491484 0.0439889 109 90 0 0 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.70 vpr 55.05 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30188 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 17.2 MiB 0.22 996 12623 3384 8308 931 55.8 MiB 0.20 0.00 3.33164 -109.888 -3.33164 3.33164 1.05 0.000843648 0.000758211 0.0731578 0.0669488 26 2507 31 6.65987e+06 418374 477104. 1650.88 2.06 0.246843 0.222139 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.21 0.11 0.17 -1 -1 0.21 0.0489028 0.0440564 137 60 60 30 57 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 5.77 vpr 55.14 MiB 0.17 7032 -1 -1 1 0.03 -1 -1 30244 -1 -1 31 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 17.1 MiB 0.13 995 16207 5283 8775 2149 55.7 MiB 0.24 0.00 4.24344 -123.397 -4.24344 4.24344 0.89 0.00123939 0.00114798 0.0913861 0.0838621 28 2478 21 6.65987e+06 393018 500653. 1732.36 1.25 0.23143 0.208969 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0464454 0.0418151 133 34 84 28 28 28 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.18 vpr 54.98 MiB 0.17 6964 -1 -1 1 0.03 -1 -1 30012 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.31 727 13152 3808 7208 2136 55.5 MiB 0.19 0.00 3.5343 -112.204 -3.5343 3.5343 1.05 0.00105863 0.000970189 0.0839192 0.0769484 30 1865 21 6.65987e+06 228204 526063. 1820.29 1.19 0.217533 0.195938 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0389613 0.0350177 114 63 30 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 5.70 vpr 55.17 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 16.7 MiB 0.29 910 8164 2057 5403 704 55.5 MiB 0.14 0.00 3.44398 -109.924 -3.44398 3.44398 1.08 0.00113907 0.00104235 0.0607099 0.0556096 30 1920 20 6.65987e+06 202848 526063. 1820.29 1.17 0.202306 0.181718 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.24 0.08 0.20 -1 -1 0.24 0.0440113 0.0395959 113 91 0 0 91 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.10 vpr 55.13 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 29976 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1101 12023 3143 7728 1152 55.6 MiB 0.17 0.00 4.17558 -139.576 -4.17558 4.17558 1.06 0.0011636 0.00106942 0.0564818 0.0518326 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.88 0.202624 0.182729 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.24 0.12 0.18 -1 -1 0.24 0.0477453 0.0431784 150 4 124 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.50 vpr 55.64 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30484 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1037 13598 4125 8601 872 55.5 MiB 0.23 0.01 4.1263 -141.609 -4.1263 4.1263 1.11 0.000873655 0.000792575 0.0774739 0.0708043 28 2566 22 6.65987e+06 431052 500653. 1732.36 3.89 0.45773 0.410149 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.22 0.14 0.10 -1 -1 0.22 0.0573973 0.0517514 153 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.56 vpr 55.50 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1033 10448 2380 7653 415 55.3 MiB 0.18 0.00 4.16458 -142.258 -4.16458 4.16458 1.04 0.00131875 0.00121063 0.0652073 0.059718 28 3079 34 6.65987e+06 431052 500653. 1732.36 4.67 0.468626 0.419615 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.27 0.14 0.17 -1 -1 0.27 0.0516249 0.0466333 151 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.66 vpr 55.64 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30464 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 17.2 MiB 0.26 982 9031 1878 6401 752 55.6 MiB 0.16 0.01 3.86706 -126.941 -3.86706 3.86706 1.11 0.00127262 0.00116405 0.0535549 0.0491288 30 2443 22 6.65987e+06 469086 526063. 1820.29 1.35 0.227853 0.205098 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.24 0.11 0.20 -1 -1 0.24 0.0585149 0.0527482 148 65 60 30 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.19 vpr 54.88 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30184 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 16.6 MiB 0.20 656 10400 2388 7389 623 55.4 MiB 0.16 0.00 3.50927 -110.79 -3.50927 3.50927 1.06 0.00100847 0.000925097 0.0636591 0.0584392 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.56 0.230454 0.20682 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.22 0.09 0.09 -1 -1 0.22 0.0388054 0.0348692 112 34 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.42 vpr 55.65 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 17.2 MiB 0.25 986 11613 3437 7269 907 55.8 MiB 0.20 0.00 4.19776 -134.76 -4.19776 4.19776 1.05 0.00124528 0.00114225 0.0824482 0.0756427 32 2227 20 6.65987e+06 278916 554710. 1919.41 1.25 0.237657 0.21447 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0526956 0.0475562 145 63 60 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.65 vpr 55.45 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30692 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 17.3 MiB 0.32 1052 13117 2855 8842 1420 55.6 MiB 0.19 0.00 3.91498 -132.986 -3.91498 3.91498 1.05 0.00143372 0.00131436 0.0816186 0.0748052 32 2892 25 6.65987e+06 494442 554710. 1919.41 1.37 0.272402 0.245133 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.24 0.09 0.21 -1 -1 0.24 0.0290565 0.0257049 154 127 0 0 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.54 vpr 55.25 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30536 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 17.2 MiB 0.17 1048 9679 2436 6757 486 55.7 MiB 0.09 0.00 3.91106 -131.073 -3.91106 3.91106 0.72 0.000488095 0.000441263 0.0246862 0.0223351 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.47 0.196293 0.176036 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.22 0.12 0.17 -1 -1 0.22 0.0557535 0.0502575 146 94 31 31 93 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.88 vpr 55.43 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30288 -1 -1 30 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 16.9 MiB 0.29 967 14375 3613 8859 1903 55.7 MiB 0.22 0.00 3.7785 -114.4 -3.7785 3.7785 1.05 0.00126862 0.00116295 0.0916913 0.0840689 30 2034 21 6.65987e+06 380340 526063. 1820.29 1.19 0.251751 0.227193 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.24 0.04 0.22 -1 -1 0.24 0.02039 0.018287 136 92 26 26 90 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.55 vpr 55.32 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1103 13477 4009 7448 2020 55.4 MiB 0.23 0.00 4.11944 -143.283 -4.11944 4.11944 1.05 0.00131174 0.00120264 0.0987738 0.090628 32 2896 23 6.65987e+06 266238 554710. 1919.41 1.37 0.270016 0.244044 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.25 0.17 0.21 -1 -1 0.25 0.0593398 0.053577 154 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.04 vpr 55.37 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30176 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 16.9 MiB 0.16 870 10463 2796 6767 900 55.8 MiB 0.17 0.00 3.39684 -102.663 -3.39684 3.39684 1.05 0.00121937 0.00111767 0.0626764 0.0574288 32 2139 21 6.65987e+06 431052 554710. 1919.41 1.25 0.216788 0.195119 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0494509 0.0445345 134 88 26 26 85 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.92 vpr 54.68 MiB 0.03 6676 -1 -1 1 0.03 -1 -1 30204 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 16.7 MiB 0.10 838 13496 3888 8529 1079 55.5 MiB 0.19 0.00 3.5031 -123.339 -3.5031 3.5031 1.05 0.00100991 0.000927017 0.0818664 0.0752212 32 2175 23 6.65987e+06 202848 554710. 1919.41 1.29 0.212205 0.191276 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0422587 0.0379979 116 3 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.63 vpr 55.52 MiB 0.05 7164 -1 -1 1 0.03 -1 -1 30268 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 16.9 MiB 0.37 1015 16525 5345 8784 2396 55.3 MiB 0.27 0.00 4.18856 -142.192 -4.18856 4.18856 1.05 0.00134058 0.00123027 0.103247 0.0947805 32 2598 23 6.65987e+06 418374 554710. 1919.41 1.39 0.2775 0.250996 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.26 0.14 0.23 -1 -1 0.26 0.0600287 0.0541523 150 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.56 vpr 55.40 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 17.1 MiB 0.28 1026 16081 4881 8736 2464 56.0 MiB 0.27 0.00 4.23393 -146.239 -4.23393 4.23393 1.05 0.00131243 0.00120385 0.11726 0.107585 32 2633 23 6.65987e+06 266238 554710. 1919.41 1.38 0.289853 0.262226 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0579346 0.0522599 157 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.89 vpr 55.13 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30332 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 16.6 MiB 0.24 688 16683 5557 7719 3407 55.4 MiB 0.19 0.00 3.44878 -105.048 -3.44878 3.44878 1.07 0.00103133 0.000943465 0.0852974 0.0781031 30 2275 33 6.65987e+06 367662 526063. 1820.29 2.20 0.238733 0.214419 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.22 0.05 0.10 -1 -1 0.22 0.0188386 0.0167004 111 55 32 32 54 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.86 vpr 54.87 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30180 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.4 MiB 0.12 746 13556 4162 7429 1965 55.0 MiB 0.19 0.00 3.4529 -114.38 -3.4529 3.4529 1.05 0.0009728 0.000893544 0.0782122 0.0718342 30 2037 22 6.65987e+06 228204 526063. 1820.29 1.20 0.203294 0.18303 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0363688 0.0327232 118 4 93 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.57 vpr 55.73 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30180 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 17.0 MiB 0.25 900 5133 854 4121 158 55.6 MiB 0.05 0.00 4.0123 -128.007 -4.0123 4.0123 0.72 0.000456586 0.00041277 0.0129582 0.0117831 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.78 0.073741 0.0649619 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0500288 0.0450954 138 59 60 32 58 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.99 vpr 55.59 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30120 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 17.2 MiB 0.25 879 9892 2434 7009 449 55.6 MiB 0.17 0.00 4.11224 -123.302 -4.11224 4.11224 1.06 0.00128392 0.00117682 0.0632022 0.0579443 28 2733 50 6.65987e+06 380340 500653. 1732.36 2.64 0.286612 0.257401 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.23 0.13 0.24 -1 -1 0.23 0.0567883 0.0510591 134 88 28 28 88 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 7.23 vpr 55.71 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 17.4 MiB 0.08 1224 16515 4921 9863 1731 55.7 MiB 0.27 0.01 4.82096 -159.28 -4.82096 4.82096 1.05 0.00136352 0.00125336 0.0938587 0.0863167 34 3026 21 6.65987e+06 443730 585099. 2024.56 4.25 0.476647 0.42935 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.26 0.14 0.22 -1 -1 0.26 0.0576425 0.0522035 177 3 156 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.11 vpr 55.00 MiB 0.03 7052 -1 -1 1 0.04 -1 -1 30416 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57120 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1012 13726 3606 8436 1684 55.8 MiB 0.21 0.00 3.638 -113.448 -3.638 3.638 1.05 0.00120191 0.00110245 0.0808583 0.0741212 32 2171 21 6.65987e+06 405696 554710. 1919.41 1.23 0.232421 0.209564 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.25 0.11 0.21 -1 -1 0.25 0.0483774 0.0435884 136 59 60 30 56 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.88 vpr 54.83 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 16.4 MiB 0.09 768 12754 4322 6521 1911 55.1 MiB 0.16 0.00 3.3979 -99.6122 -3.3979 3.3979 1.06 0.000917602 0.000841722 0.0718876 0.0659659 32 1581 21 6.65987e+06 253560 554710. 1919.41 1.17 0.187071 0.168178 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.25 0.09 0.21 -1 -1 0.25 0.0412988 0.0369326 107 34 54 27 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.99 vpr 55.55 MiB 0.03 7380 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 17.7 MiB 0.21 1366 15232 4128 9656 1448 56.0 MiB 0.27 0.01 4.15924 -136.806 -4.15924 4.15924 1.06 0.00154997 0.0014231 0.101586 0.0932061 32 3584 25 6.65987e+06 507120 554710. 1919.41 1.45 0.311142 0.280993 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.25 0.21 0.21 -1 -1 0.25 0.078368 0.0705949 184 95 62 31 95 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.87 vpr 55.27 MiB 0.05 7328 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 16.9 MiB 0.38 999 12894 3350 8149 1395 55.8 MiB 0.23 0.00 4.3007 -134.868 -4.3007 4.3007 1.10 0.00140465 0.00128829 0.102443 0.0939897 32 2741 23 6.65987e+06 266238 554710. 1919.41 1.36 0.28026 0.252617 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.25 0.14 0.21 -1 -1 0.25 0.065022 0.0583907 144 124 0 0 124 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.84 vpr 55.38 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 16.7 MiB 0.32 739 9540 2469 6056 1015 55.4 MiB 0.15 0.00 3.43298 -108.977 -3.43298 3.43298 1.06 0.0011319 0.00103271 0.0657736 0.0602985 28 1956 23 6.65987e+06 202848 500653. 1732.36 1.17 0.202433 0.18181 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.25 0.11 0.18 -1 -1 0.25 0.0547076 0.0493275 109 89 0 0 89 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.99 vpr 55.39 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 16.9 MiB 0.11 1126 15645 4217 9584 1844 55.7 MiB 0.24 0.00 4.2677 -137.429 -4.2677 4.2677 1.05 0.00123286 0.00112252 0.0906959 0.0831897 28 2607 21 6.65987e+06 405696 500653. 1732.36 1.21 0.223137 0.201832 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.23 0.10 0.14 -1 -1 0.23 0.0456851 0.0413739 146 34 90 30 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.08 vpr 55.75 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30536 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 17.3 MiB 0.17 1167 13551 3218 9177 1156 55.7 MiB 0.24 0.00 4.22766 -133.836 -4.22766 4.22766 1.05 0.00145523 0.00133792 0.0900014 0.0826726 32 2713 24 6.65987e+06 456408 554710. 1919.41 1.32 0.279899 0.252798 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0583063 0.0526311 171 64 87 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.13 vpr 55.27 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30408 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 16.9 MiB 0.12 1070 11111 2802 7426 883 55.6 MiB 0.09 0.00 3.62941 -110.797 -3.62941 3.62941 0.72 0.000442846 0.00039888 0.0249129 0.0225263 26 2917 46 6.65987e+06 418374 477104. 1650.88 3.75 0.340996 0.30367 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.050615 0.0456627 134 61 58 30 58 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.44 vpr 55.68 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30516 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 16.9 MiB 0.27 1074 12606 3053 8336 1217 55.4 MiB 0.21 0.01 4.0783 -140.694 -4.0783 4.0783 1.07 0.0013173 0.00120761 0.0703135 0.0645219 30 2464 23 6.65987e+06 532476 526063. 1820.29 1.37 0.245591 0.221507 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.24 0.12 0.20 -1 -1 0.24 0.0608115 0.0547949 157 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 6.15 vpr 55.33 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 17.1 MiB 0.26 985 6766 1235 5165 366 55.6 MiB 0.13 0.01 3.41884 -116.445 -3.41884 3.41884 1.06 0.00131369 0.00120562 0.0412665 0.0378716 28 2716 20 6.65987e+06 481764 500653. 1732.36 1.32 0.205694 0.185022 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.23 0.14 0.21 -1 -1 0.23 0.0637753 0.0574237 155 65 63 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.02 vpr 54.93 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 16.6 MiB 0.13 502 12791 3342 7797 1652 55.1 MiB 0.14 0.00 3.7595 -104.343 -3.7595 3.7595 1.05 0.000970831 0.00089018 0.0789557 0.0724566 32 1548 18 6.65987e+06 202848 554710. 1919.41 1.15 0.197213 0.177697 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.25 0.09 0.22 -1 -1 0.25 0.0394657 0.0354004 93 34 58 29 29 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.10 vpr 54.95 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 29928 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 16.6 MiB 0.30 872 14431 4553 8297 1581 55.4 MiB 0.19 0.00 3.69338 -109.525 -3.69338 3.69338 1.05 0.00106595 0.000975245 0.0907082 0.0830455 32 1973 19 6.65987e+06 215526 554710. 1919.41 1.20 0.220808 0.198767 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0426629 0.0381982 111 82 0 0 82 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.39 vpr 55.51 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 17.2 MiB 0.15 973 15876 4279 9893 1704 55.8 MiB 0.25 0.00 4.55701 -136.44 -4.55701 4.55701 1.04 0.00122417 0.0011216 0.0871514 0.079945 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.51 0.264177 0.238348 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.25 0.14 0.22 -1 -1 0.25 0.0536916 0.0484511 150 34 93 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.94 vpr 55.00 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.8 MiB 0.28 621 11063 2736 7707 620 55.3 MiB 0.15 0.00 3.58224 -95.8028 -3.58224 3.58224 1.06 0.000976863 0.000894339 0.0552985 0.0506382 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.90 0.201479 0.180238 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.22 0.09 0.18 -1 -1 0.22 0.0360556 0.0323147 108 56 29 29 52 26 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.84 vpr 54.84 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.22 823 7992 1920 5681 391 55.5 MiB 0.14 0.00 3.5141 -118.56 -3.5141 3.5141 1.06 0.00106435 0.000977064 0.0533687 0.0489943 34 2038 19 6.65987e+06 202848 585099. 2024.56 3.54 0.283508 0.253073 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.27 0.10 0.22 -1 -1 0.27 0.0433173 0.0389559 119 34 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.44 vpr 55.56 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30240 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 16.9 MiB 0.21 1001 11955 3102 7859 994 55.7 MiB 0.10 0.00 3.4951 -117.77 -3.4951 3.4951 0.72 0.000461088 0.000416717 0.026651 0.0240479 26 2363 24 6.65987e+06 456408 477104. 1650.88 1.05 0.157982 0.141119 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.22 0.11 0.17 -1 -1 0.22 0.0507114 0.0457146 142 64 58 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.05 vpr 55.00 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 16.4 MiB 0.30 876 12923 4161 7145 1617 55.2 MiB 0.17 0.00 3.11304 -101.32 -3.11304 3.11304 1.05 0.00101361 0.000928338 0.0803814 0.0737018 32 1966 17 6.65987e+06 202848 554710. 1919.41 1.16 0.20121 0.181203 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.28 0.10 0.21 -1 -1 0.28 0.0423481 0.0382106 105 55 31 31 53 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.00 vpr 55.49 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 17.1 MiB 0.24 929 17616 5738 7949 3929 55.7 MiB 0.22 0.00 3.3979 -111.1 -3.3979 3.3979 1.05 0.00123593 0.00113283 0.103591 0.0949763 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.62 0.355957 0.320116 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.28 0.12 0.24 -1 -1 0.28 0.0522675 0.0471528 136 65 52 26 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 6.01 vpr 55.35 MiB 0.07 7244 -1 -1 1 0.03 -1 -1 30348 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 16.9 MiB 0.60 965 17427 4981 9867 2579 55.4 MiB 0.26 0.00 3.7445 -120.758 -3.7445 3.7445 1.07 0.00133251 0.0012195 0.106558 0.0975124 28 2286 21 6.65987e+06 456408 500653. 1732.36 1.26 0.275656 0.248874 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.22 0.12 0.18 -1 -1 0.22 0.05369 0.0484326 148 93 31 31 92 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.19 vpr 55.08 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.8 MiB 0.18 861 11652 3522 6006 2124 55.5 MiB 0.17 0.00 2.81844 -100.349 -2.81844 2.81844 1.05 0.00108749 0.000996076 0.073925 0.0677835 32 2079 23 6.65987e+06 228204 554710. 1919.41 1.24 0.214728 0.1932 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0452347 0.0406077 115 61 32 32 60 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 5.08 vpr 55.03 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.8 MiB 0.29 667 7380 1595 4913 872 55.6 MiB 0.11 0.00 3.38184 -112.707 -3.38184 3.38184 1.06 0.0011026 0.00101006 0.0487385 0.0447191 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.70 0.224949 0.201475 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.26 0.11 0.21 -1 -1 0.26 0.0461537 0.0414299 121 63 32 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.57 vpr 55.33 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30584 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 17.1 MiB 0.17 1042 12164 2979 8000 1185 55.5 MiB 0.19 0.00 4.02524 -139.262 -4.02524 4.02524 1.05 0.00130052 0.00119293 0.0718199 0.0657845 28 2653 23 6.65987e+06 456408 500653. 1732.36 1.35 0.239815 0.216093 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.23 0.12 0.18 -1 -1 0.23 0.0496852 0.044856 154 65 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.21 vpr 55.09 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30316 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 16.8 MiB 0.23 968 17313 5602 9212 2499 55.5 MiB 0.24 0.00 3.57304 -105.57 -3.57304 3.57304 1.05 0.00118879 0.00109006 0.101565 0.0930569 32 2179 18 6.65987e+06 405696 554710. 1919.41 1.20 0.246401 0.222493 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.25 0.10 0.21 -1 -1 0.25 0.0518417 0.0466315 133 62 56 29 58 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.42 vpr 55.48 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 17.2 MiB 0.37 1004 11616 2968 7911 737 55.6 MiB 0.20 0.00 3.97241 -135.454 -3.97241 3.97241 1.05 0.00146143 0.00134013 0.07749 0.0709592 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.91 0.149774 0.134191 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.25 0.15 0.21 -1 -1 0.25 0.0641464 0.0576209 156 127 0 0 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.90 vpr 54.66 MiB 0.06 6848 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 16.4 MiB 0.11 715 5825 1215 4401 209 55.1 MiB 0.10 0.00 2.9397 -97.4988 -2.9397 2.9397 1.07 0.000931858 0.000855881 0.0350821 0.0322905 30 1705 18 6.65987e+06 202848 526063. 1820.29 1.12 0.147857 0.132686 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.24 0.07 0.20 -1 -1 0.24 0.0374246 0.0335811 105 4 85 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.54 vpr 55.40 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 17.0 MiB 0.19 948 20077 6167 11074 2836 55.8 MiB 0.27 0.00 4.10497 -133.778 -4.10497 4.10497 1.01 0.00132385 0.00120582 0.107607 0.0983664 32 2340 22 6.65987e+06 418374 554710. 1919.41 1.25 0.275431 0.248435 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.25 0.11 0.22 -1 -1 0.25 0.0509649 0.0459877 142 92 28 28 92 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 5.35 vpr 55.09 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 29984 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.8 MiB 0.25 805 9196 3450 4876 870 55.7 MiB 0.14 0.00 3.54047 -120.422 -3.54047 3.54047 1.09 0.00118155 0.00108041 0.066736 0.0611469 30 2070 21 6.65987e+06 202848 526063. 1820.29 4.21 0.401562 0.359142 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.24 0.10 0.20 -1 -1 0.24 0.0428527 0.0385564 115 96 0 0 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.37 vpr 55.38 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30264 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 17.0 MiB 0.25 1002 18111 5520 9663 2928 55.4 MiB 0.26 0.00 3.45184 -118.995 -3.45184 3.45184 1.05 0.0012912 0.00118132 0.106443 0.0975463 32 2572 22 6.65987e+06 443730 554710. 1919.41 1.29 0.272394 0.246116 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.25 0.13 0.21 -1 -1 0.25 0.0588671 0.0530782 149 65 61 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.22 vpr 55.54 MiB 0.09 7264 -1 -1 1 0.03 -1 -1 30620 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 17.9 MiB 0.36 1201 15034 3694 9653 1687 56.1 MiB 0.26 0.01 4.6905 -158.567 -4.6905 4.6905 1.05 0.0015764 0.00144672 0.0981723 0.0901973 26 3501 45 6.65987e+06 545154 477104. 1650.88 3.92 0.358494 0.323052 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.22 0.20 0.17 -1 -1 0.22 0.0822624 0.0741769 186 96 64 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.93 vpr 54.62 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 16.4 MiB 0.21 532 10509 2640 7460 409 54.9 MiB 0.12 0.00 2.61752 -80.0454 -2.61752 2.61752 1.05 0.000826678 0.000757258 0.0553374 0.0506648 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.42 0.158197 0.141379 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.22 0.07 0.17 -1 -1 0.22 0.032265 0.0287016 83 56 0 0 53 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 5.21 vpr 55.12 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30328 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 16.7 MiB 0.10 758 10536 3415 5493 1628 55.1 MiB 0.15 0.00 3.52904 -110.224 -3.52904 3.52904 1.08 0.00100569 0.00092227 0.0669074 0.0614531 32 1744 20 6.65987e+06 202848 554710. 1919.41 1.19 0.192567 0.17332 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.25 0.08 0.21 -1 -1 0.25 0.0390442 0.035106 96 34 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.10 vpr 54.89 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 29916 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.7 MiB 0.12 856 9872 2316 7018 538 55.5 MiB 0.16 0.00 3.4859 -122.574 -3.4859 3.4859 1.07 0.00106035 0.000972327 0.0619939 0.0569285 32 2373 21 6.65987e+06 228204 554710. 1919.41 1.32 0.197944 0.178117 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.25 0.12 0.21 -1 -1 0.25 0.0445619 0.0400533 126 34 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 5.85 vpr 54.72 MiB 0.10 6904 -1 -1 1 0.03 -1 -1 30200 -1 -1 34 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.2 MiB 0.09 696 13351 3608 8032 1711 54.8 MiB 0.15 0.00 3.32684 -88.9535 -3.32684 3.32684 1.08 0.000857613 0.000787376 0.0582343 0.0534455 26 1641 17 6.65987e+06 431052 477104. 1650.88 1.08 0.160181 0.143841 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.21 0.08 0.17 -1 -1 0.21 0.0342023 0.0305555 103 34 50 25 25 25 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.33 vpr 55.30 MiB 0.06 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 17.1 MiB 0.23 877 14541 4608 7775 2158 55.5 MiB 0.26 0.00 4.02035 -125.217 -4.02035 4.02035 1.05 0.00136171 0.00124728 0.113251 0.10381 32 2783 25 6.65987e+06 253560 554710. 1919.41 1.39 0.294306 0.265727 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.26 0.14 0.21 -1 -1 0.26 0.0601149 0.0541638 147 94 32 32 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.46 vpr 55.63 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30208 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 17.0 MiB 0.22 938 18660 5414 10450 2796 55.5 MiB 0.28 0.00 3.4903 -116.326 -3.4903 3.4903 1.07 0.00133237 0.00122092 0.111665 0.102344 32 2461 21 6.65987e+06 469086 554710. 1919.41 1.30 0.279514 0.252419 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.28 0.11 0.21 -1 -1 0.28 0.037618 0.0334571 146 94 29 29 93 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.32 vpr 56.10 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58184 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 18.1 MiB 0.98 758 13949 4789 6835 2325 56.8 MiB 0.19 0.00 3.74419 -135.496 -3.74419 3.74419 1.09 0.00137008 0.00125651 0.100178 0.0918235 58 1960 26 6.95648e+06 361892 997811. 3452.63 7.63 0.634014 0.567665 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.41 0.13 0.44 -1 -1 0.41 0.056823 0.0511585 84 96 32 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.44 vpr 56.07 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30460 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 17.6 MiB 2.31 807 12716 4975 6082 1659 56.5 MiB 0.18 0.00 3.9478 -130.518 -3.9478 3.9478 1.10 0.00127975 0.00117323 0.107006 0.0981254 48 2407 29 6.95648e+06 202660 865456. 2994.66 20.11 0.741826 0.663405 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.39 0.20 0.34 -1 -1 0.39 0.0635829 0.0573219 76 91 30 30 89 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 9.02 vpr 56.09 MiB 0.10 7140 -1 -1 1 0.03 -1 -1 30436 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 17.8 MiB 0.84 1022 7103 1835 4569 699 56.6 MiB 0.11 0.00 3.60914 -132.635 -3.60914 3.60914 1.09 0.00123963 0.00113757 0.0529541 0.0486293 44 2666 29 6.95648e+06 275038 787024. 2723.27 2.80 0.283192 0.254258 27778 195446 -1 2250 23 1533 2295 200856 39573 3.61236 3.61236 -138.488 -3.61236 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0564311 0.0507589 77 65 54 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 7.59 vpr 55.86 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30320 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 17.6 MiB 0.41 752 10672 3799 5216 1657 56.1 MiB 0.15 0.00 4.001 -128.21 -4.001 4.001 1.15 0.00114472 0.00105057 0.0785126 0.0721531 44 2696 27 6.95648e+06 231611 787024. 2723.27 6.24 0.459148 0.4116 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.054131 0.0486959 75 34 87 29 29 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 10.05 vpr 55.93 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30264 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 17.6 MiB 0.76 716 9857 3295 4764 1798 56.5 MiB 0.15 0.00 3.66789 -133.791 -3.66789 3.66789 1.09 0.00125313 0.00115036 0.0793378 0.0728746 56 2163 40 6.95648e+06 188184 973134. 3367.25 4.54 0.394529 0.354816 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.40 0.15 0.41 -1 -1 0.40 0.0573497 0.0518198 78 34 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 9.04 vpr 56.18 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30324 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58092 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 17.8 MiB 0.43 727 15003 5272 7155 2576 56.7 MiB 0.18 0.00 3.0985 -114.166 -3.0985 3.0985 1.08 0.00129876 0.00118948 0.0965033 0.0884806 46 2435 46 6.95648e+06 419795 828058. 2865.25 4.51 0.43736 0.393829 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.32 0.13 0.17 -1 -1 0.32 0.0525061 0.0474012 89 64 63 32 63 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.42 vpr 55.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30392 -1 -1 14 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 17.0 MiB 3.40 451 8433 2993 4087 1353 55.6 MiB 0.10 0.00 3.26916 -93.4177 -3.26916 3.26916 1.09 0.000921653 0.000845959 0.0538676 0.0494935 40 1397 46 6.95648e+06 202660 706193. 2443.58 3.43 0.289261 0.258172 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.30 0.08 0.29 -1 -1 0.30 0.037006 0.0331411 54 34 54 27 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 7.66 vpr 55.78 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.5 MiB 0.51 722 11088 4563 6076 449 56.0 MiB 0.15 0.00 3.0394 -105.493 -3.0394 3.0394 1.10 0.00111173 0.00102104 0.0753461 0.0693071 46 2382 26 6.95648e+06 246087 828058. 2865.25 3.74 0.318468 0.286166 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0501625 0.0451182 77 4 115 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 8.82 vpr 56.07 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 29976 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 1.76 523 9994 2759 5612 1623 56.0 MiB 0.13 0.00 3.10275 -98.727 -3.10275 3.10275 1.11 0.00107127 0.000979356 0.0724902 0.0664483 40 1829 42 6.95648e+06 159232 706193. 2443.58 3.73 0.33807 0.30191 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0572823 0.0511815 57 85 0 0 84 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 7.69 vpr 55.88 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57304 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.71 638 10614 4216 4843 1555 56.0 MiB 0.14 0.00 2.95005 -114.898 -2.95005 2.95005 1.09 0.000977005 0.000888142 0.0752835 0.0690908 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.69 0.275765 0.247564 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.29 0.12 0.14 -1 -1 0.29 0.0443805 0.0398939 62 34 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.85 vpr 55.76 MiB 0.06 7000 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 1.70 651 11079 4648 6085 346 55.9 MiB 0.15 0.00 3.1095 -111.937 -3.1095 3.1095 1.10 0.00105748 0.000969002 0.0789684 0.0724571 38 1744 25 6.95648e+06 173708 678818. 2348.85 5.27 0.437354 0.390275 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.30 0.09 0.27 -1 -1 0.30 0.0427749 0.0384129 60 63 30 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.75 vpr 55.79 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30316 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 17.2 MiB 0.95 540 10476 4331 5741 404 56.1 MiB 0.14 0.00 2.9793 -106.716 -2.9793 2.9793 1.14 0.00123881 0.00112774 0.0783514 0.0717282 50 1707 47 6.95648e+06 173708 902133. 3121.57 6.69 0.542564 0.484091 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.35 0.10 0.37 -1 -1 0.35 0.0413329 0.0371069 60 65 25 25 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.59 vpr 56.04 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 17.6 MiB 1.53 751 11803 3277 6504 2022 56.5 MiB 0.17 0.00 3.1024 -116.565 -3.1024 3.1024 1.08 0.00125565 0.00115123 0.0832591 0.0764367 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.95 0.336126 0.302029 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0497819 0.0448748 79 58 64 32 57 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 8.12 vpr 56.12 MiB 0.07 7020 -1 -1 1 0.03 -1 -1 30420 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 17.6 MiB 1.26 832 16371 6652 7990 1729 56.5 MiB 0.23 0.00 3.72719 -138.885 -3.72719 3.72719 1.11 0.00131754 0.00120845 0.111158 0.101936 44 2523 32 6.95648e+06 376368 787024. 2723.27 6.67 0.589108 0.528456 27778 195446 -1 1993 25 2157 3068 280465 63460 4.23576 4.23576 -153.24 -4.23576 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0644037 0.0580945 87 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 8.12 vpr 55.41 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 17.1 MiB 1.13 465 11234 4544 5569 1121 55.6 MiB 0.13 0.00 3.14676 -95.8879 -3.14676 3.14676 1.13 0.000935914 0.000858037 0.0700007 0.0642224 46 1613 28 6.95648e+06 188184 828058. 2865.25 5.82 0.36928 0.329287 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0479787 0.0428575 58 29 58 29 24 24 - fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.47 vpr 55.92 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30420 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57912 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 17.7 MiB 1.73 807 11813 5009 6533 271 56.6 MiB 0.18 0.00 3.1505 -120.688 -3.1505 3.1505 1.09 0.00130398 0.00119677 0.0980353 0.0899709 46 2437 23 6.95648e+06 188184 828058. 2865.25 3.11 0.379928 0.342259 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.33 0.16 0.36 -1 -1 0.33 0.0642713 0.0578504 77 63 64 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 10.27 vpr 56.00 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30108 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 17.4 MiB 1.65 707 11064 3419 5711 1934 56.3 MiB 0.18 0.00 3.0804 -113.837 -3.0804 3.0804 1.14 0.00126528 0.00115895 0.0929678 0.085307 46 2393 47 6.95648e+06 289514 828058. 2865.25 3.42 0.39009 0.350106 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.34 0.13 0.33 -1 -1 0.34 0.0615775 0.0559192 78 57 64 32 56 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 9.20 vpr 55.69 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 29964 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 17.4 MiB 1.00 574 10698 2981 5511 2206 56.4 MiB 0.13 0.00 2.43656 -93.1005 -2.43656 2.43656 1.11 0.00111095 0.00101726 0.0684111 0.0627337 48 1509 24 6.95648e+06 289514 865456. 2994.66 6.18 0.482443 0.429997 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0458271 0.0411188 67 65 29 29 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.45 vpr 55.25 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30004 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 16.7 MiB 0.34 450 11098 4789 5936 373 55.3 MiB 0.11 0.00 2.21746 -80.6728 -2.21746 2.21746 1.08 0.000778791 0.000712911 0.0602434 0.0551878 36 1377 32 6.95648e+06 144757 648988. 2245.63 2.36 0.236366 0.21024 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.29 0.07 0.25 -1 -1 0.29 0.031074 0.0276552 45 34 24 24 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 8.91 vpr 55.96 MiB 0.06 6924 -1 -1 1 0.03 -1 -1 30296 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 1.14 525 9374 3845 5090 439 56.3 MiB 0.13 0.00 3.8254 -127.041 -3.8254 3.8254 1.10 0.0010907 0.000999647 0.068889 0.0631966 46 1860 48 6.95648e+06 159232 828058. 2865.25 4.48 0.35424 0.316689 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.35 0.11 0.33 -1 -1 0.35 0.0543192 0.0487476 61 64 31 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 8.75 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30012 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 17.6 MiB 0.44 664 13663 4054 7770 1839 56.4 MiB 0.19 0.00 3.70954 -128.174 -3.70954 3.70954 1.10 0.00121834 0.00111771 0.0936137 0.0859832 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.35 0.323518 0.291434 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0514083 0.0463616 81 34 91 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 10.36 vpr 56.22 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30600 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 1.38 791 14779 5223 7361 2195 56.6 MiB 0.21 0.00 3.66119 -126.81 -3.66119 3.66119 1.05 0.00141539 0.00129729 0.106701 0.0978509 48 2442 23 6.95648e+06 390843 865456. 2994.66 6.50 0.559313 0.50063 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.34 0.14 0.34 -1 -1 0.34 0.066004 0.059319 85 124 0 0 125 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.45 vpr 55.14 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30412 -1 -1 13 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 16.9 MiB 0.95 348 7809 2770 3912 1127 55.4 MiB 0.07 0.00 2.19726 -66.8557 -2.19726 2.19726 1.11 0.000682143 0.000623316 0.038416 0.0351841 46 937 48 6.95648e+06 188184 828058. 2865.25 2.40 0.190209 0.168928 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.33 0.05 0.33 -1 -1 0.33 0.0229495 0.0205223 44 30 26 26 22 22 - fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.98 vpr 55.57 MiB 0.06 6840 -1 -1 1 0.03 -1 -1 30028 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 17.4 MiB 0.85 737 10316 4241 5568 507 56.2 MiB 0.14 0.00 4.02534 -135.509 -4.02534 4.02534 1.09 0.00114748 0.00105309 0.0777136 0.0714011 54 2026 41 6.95648e+06 173708 949917. 3286.91 8.17 0.535166 0.479747 29506 232905 -1 1641 22 1840 2844 317217 104806 3.76887 3.76887 -137.001 -3.76887 0 0 1.17392e+06 4061.99 0.37 0.16 0.40 -1 -1 0.37 0.0507955 0.0457669 74 3 122 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.39 vpr 55.34 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30372 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 17.0 MiB 0.24 731 9906 3689 5081 1136 55.6 MiB 0.10 0.00 2.15326 -87.6492 -2.15326 2.15326 0.93 0.00072053 0.000658428 0.0499973 0.0457607 34 1791 46 6.95648e+06 115805 618332. 2139.56 2.18 0.21102 0.187768 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0228622 0.0204879 44 3 53 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 14.02 vpr 55.91 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58004 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 17.8 MiB 0.54 827 16371 5667 8716 1988 56.6 MiB 0.22 0.00 3.67409 -135.23 -3.67409 3.67409 1.12 0.00124679 0.00114306 0.105666 0.0967833 40 2687 28 6.95648e+06 376368 706193. 2443.58 18.88 0.670912 0.60115 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.32 0.27 0.29 -1 -1 0.32 0.0667233 0.0599961 85 34 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.80 vpr 55.87 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30000 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.5 MiB 0.34 985 13754 4254 7657 1843 56.4 MiB 0.18 0.00 3.0955 -119.852 -3.0955 3.0955 1.11 0.00118181 0.00108518 0.0824311 0.0756701 36 2880 44 6.95648e+06 405319 648988. 2245.63 6.48 0.35081 0.314865 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0453874 0.0410165 87 3 124 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.43 vpr 55.95 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58188 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 17.9 MiB 0.46 789 18308 6099 10070 2139 56.8 MiB 0.25 0.00 3.69663 -134.61 -3.69663 3.69663 1.09 0.00130698 0.00119854 0.119895 0.10981 46 2780 28 6.95648e+06 405319 828058. 2865.25 4.23 0.415008 0.373453 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.33 0.14 0.32 -1 -1 0.33 0.0569073 0.0513107 87 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.14 vpr 55.77 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 17.2 MiB 0.82 541 9374 3087 4731 1556 55.9 MiB 0.12 0.00 2.8982 -102.358 -2.8982 2.8982 1.04 0.000997602 0.000914097 0.0634656 0.0582116 38 2009 38 6.95648e+06 144757 678818. 2348.85 4.54 0.305537 0.272824 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.045479 0.0407919 57 34 54 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.53 vpr 55.60 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30148 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57172 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 17.2 MiB 0.65 571 8444 3466 4635 343 55.8 MiB 0.13 0.00 3.1175 -112.058 -3.1175 3.1175 1.09 0.00100524 0.000917792 0.0678176 0.0622788 40 1947 30 6.95648e+06 173708 706193. 2443.58 2.81 0.289667 0.259122 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.30 0.10 0.29 -1 -1 0.30 0.0439755 0.0394459 60 34 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 7.78 vpr 55.64 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 17.0 MiB 0.58 505 10257 3681 4972 1604 55.7 MiB 0.14 0.00 3.0435 -97.9378 -3.0435 3.0435 1.03 0.000944777 0.000866727 0.0765075 0.0703025 44 1727 27 6.95648e+06 188184 787024. 2723.27 3.11 0.284837 0.254818 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.33 0.08 0.27 -1 -1 0.33 0.0369724 0.0332213 61 34 56 28 28 28 - fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.67 vpr 55.69 MiB 0.04 6708 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 17.1 MiB 0.28 703 9374 3895 5319 160 55.8 MiB 0.13 0.00 2.93285 -116.414 -2.93285 2.93285 0.86 0.0010048 0.000916232 0.0647637 0.0595546 44 2101 25 6.95648e+06 144757 787024. 2723.27 3.18 0.283162 0.253823 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.33 0.12 0.33 -1 -1 0.33 0.045166 0.0406153 64 3 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.36 vpr 55.59 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 17.6 MiB 0.26 623 13443 5605 7395 443 56.0 MiB 0.16 0.00 3.0955 -111.973 -3.0955 3.0955 1.09 0.00102412 0.000938457 0.0778022 0.0713537 44 2077 38 6.95648e+06 303989 787024. 2723.27 3.31 0.3187 0.2853 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.044477 0.0400519 68 34 61 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.68 vpr 55.87 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 30164 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 17.1 MiB 0.84 508 10219 3550 4648 2021 55.8 MiB 0.12 0.00 2.43392 -85.0275 -2.43392 2.43392 1.09 0.00101841 0.000932803 0.0648626 0.0594797 46 1411 35 6.95648e+06 260562 828058. 2865.25 3.05 0.305081 0.27295 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.33 0.10 0.32 -1 -1 0.33 0.0434913 0.0389733 64 61 29 29 57 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.41 vpr 56.06 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30364 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58168 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 18.0 MiB 0.86 944 14375 4687 7097 2591 56.8 MiB 0.21 0.00 3.95585 -140.771 -3.95585 3.95585 1.12 0.00142896 0.00131172 0.103704 0.0953187 54 2725 29 6.95648e+06 405319 949917. 3286.91 5.30 0.381034 0.339845 29506 232905 -1 2082 21 1977 3135 234047 51401 4.37502 4.37502 -152.214 -4.37502 0 0 1.17392e+06 4061.99 0.38 0.14 0.36 -1 -1 0.38 0.0607904 0.0550503 100 29 128 32 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 9.02 vpr 56.06 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30332 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 17.8 MiB 1.15 786 12739 3070 7853 1816 56.7 MiB 0.18 0.00 3.0804 -115.407 -3.0804 3.0804 1.08 0.00130452 0.00119429 0.085153 0.078142 40 2423 28 6.95648e+06 390843 706193. 2443.58 15.07 0.678754 0.60775 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.27 0.11 0.15 -1 -1 0.27 0.029328 0.0260261 87 65 62 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.61 vpr 55.88 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30360 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 17.2 MiB 1.31 525 12362 5188 6715 459 56.1 MiB 0.15 0.00 3.26916 -109.722 -3.26916 3.26916 1.08 0.00110248 0.00100863 0.0852293 0.0780413 50 1653 27 6.95648e+06 217135 902133. 3121.57 6.18 0.417734 0.372831 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.35 0.08 0.35 -1 -1 0.35 0.0350221 0.0315134 62 90 0 0 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.77 vpr 56.03 MiB 0.05 7024 -1 -1 1 0.05 -1 -1 30228 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.75 965 12791 5492 6957 342 56.4 MiB 0.18 0.00 3.0625 -116.847 -3.0625 3.0625 1.09 0.00126189 0.00115793 0.102764 0.0943064 38 2599 23 6.95648e+06 202660 678818. 2348.85 5.43 0.498503 0.447379 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0491479 0.0443674 79 64 60 30 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 9.82 vpr 56.54 MiB 0.08 7228 -1 -1 1 0.03 -1 -1 30344 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58032 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 18.0 MiB 2.69 778 10998 4559 6059 380 56.7 MiB 0.17 0.00 4.63397 -149.774 -4.63397 4.63397 1.08 0.00140799 0.00129191 0.0989475 0.0908412 44 2926 36 6.95648e+06 202660 787024. 2723.27 7.82 0.655136 0.585083 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.33 0.15 0.26 -1 -1 0.33 0.0639882 0.0575411 78 124 0 0 124 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.82 vpr 55.98 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 17.7 MiB 1.23 775 10476 3672 5136 1668 56.6 MiB 0.17 0.00 4.49354 -135.009 -4.49354 4.49354 1.09 0.00130239 0.00119234 0.0894755 0.08203 44 2669 43 6.95648e+06 188184 787024. 2723.27 6.52 0.611164 0.547006 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0652764 0.0587279 76 90 31 31 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.14 vpr 56.01 MiB 0.06 7136 -1 -1 1 0.03 -1 -1 30184 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 17.6 MiB 1.01 864 15493 5631 7761 2101 56.5 MiB 0.21 0.00 3.1285 -114.829 -3.1285 3.1285 1.09 0.00126075 0.00115657 0.103344 0.0947559 38 2848 26 6.95648e+06 361892 678818. 2348.85 4.66 0.387088 0.34763 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.26 0.07 0.14 -1 -1 0.26 0.0241034 0.0215718 85 64 60 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 9.30 vpr 55.66 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 17.7 MiB 0.61 956 10743 3793 5013 1937 56.6 MiB 0.15 0.00 3.77119 -139.239 -3.77119 3.77119 1.08 0.00128445 0.00117695 0.0721906 0.0661995 44 2711 27 6.95648e+06 376368 787024. 2723.27 7.14 0.591248 0.529153 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0593414 0.0534828 86 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.31 vpr 56.73 MiB 0.05 7240 -1 -1 1 0.04 -1 -1 30476 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58148 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 18.5 MiB 1.29 1078 14999 4071 8495 2433 56.8 MiB 0.22 0.00 3.84845 -142.865 -3.84845 3.84845 1.09 0.00157872 0.00144892 0.113614 0.104184 40 2955 26 6.95648e+06 448746 706193. 2443.58 4.17 0.468156 0.421393 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.27 0.08 0.15 -1 -1 0.27 0.0268109 0.0240174 104 96 62 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.14 vpr 55.73 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30424 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 17.3 MiB 0.72 721 10304 4339 5695 270 56.0 MiB 0.13 0.00 3.34916 -121.065 -3.34916 3.34916 1.12 0.00102344 0.000937883 0.0713091 0.0654265 36 2215 27 6.95648e+06 159232 648988. 2245.63 4.70 0.303669 0.271809 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0433552 0.0389899 62 34 62 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 9.93 vpr 56.04 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 17.5 MiB 0.49 784 13959 3819 8017 2123 56.6 MiB 0.20 0.00 4.0519 -136.516 -4.0519 4.0519 1.09 0.00127608 0.00116959 0.0924189 0.0847955 48 2294 26 6.95648e+06 390843 865456. 2994.66 6.41 0.51146 0.45866 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.35 0.13 0.36 -1 -1 0.35 0.0517193 0.0466739 86 64 62 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 9.07 vpr 56.14 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30344 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 17.6 MiB 0.93 863 13557 4887 6407 2263 56.6 MiB 0.17 0.00 3.29596 -116.543 -3.29596 3.29596 1.09 0.0012779 0.00117143 0.0903202 0.0828532 54 2269 23 6.95648e+06 376368 949917. 3286.91 6.96 0.501498 0.450167 29506 232905 -1 1764 21 1634 2724 193460 42892 3.13397 3.13397 -112.027 -3.13397 0 0 1.17392e+06 4061.99 0.38 0.13 0.40 -1 -1 0.38 0.0554592 0.0499474 85 63 62 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.49 vpr 55.96 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 17.8 MiB 0.85 760 7738 3134 4374 230 56.3 MiB 0.12 0.00 3.65689 -135.736 -3.65689 3.65689 1.08 0.00119038 0.00109296 0.0599785 0.0551661 44 3266 47 6.95648e+06 188184 787024. 2723.27 28.50 0.635676 0.568637 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0545204 0.0491509 78 3 128 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.40 vpr 56.03 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58120 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.92 808 11991 3810 6067 2114 56.8 MiB 0.16 0.00 3.1768 -117.392 -3.1768 3.1768 1.09 0.00131485 0.00120425 0.0859013 0.0787649 46 2159 29 6.95648e+06 332941 828058. 2865.25 6.14 0.524741 0.4698 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.35 0.10 0.33 -1 -1 0.35 0.0526985 0.0475051 81 96 25 25 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 12.28 vpr 56.18 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30160 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.98 845 12926 3665 7173 2088 56.6 MiB 0.18 0.00 3.1214 -116.244 -3.1214 3.1214 1.09 0.00128239 0.0011765 0.0844104 0.077487 46 2291 24 6.95648e+06 405319 828058. 2865.25 6.11 0.490128 0.439342 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0579681 0.0522279 85 61 64 32 60 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.68 vpr 56.29 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 17.7 MiB 0.69 803 14996 4547 7782 2667 56.6 MiB 0.21 0.00 3.09676 -115.471 -3.09676 3.09676 1.12 0.0013123 0.00120114 0.0990352 0.0907497 46 2386 25 6.95648e+06 405319 828058. 2865.25 3.71 0.386455 0.347396 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053174 0.0480234 88 65 63 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 7.94 vpr 55.81 MiB 0.05 7016 -1 -1 1 0.04 -1 -1 30484 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 17.6 MiB 0.57 938 15617 5888 7604 2125 56.4 MiB 0.21 0.00 3.66789 -137.042 -3.66789 3.66789 1.09 0.00124251 0.00114049 0.098879 0.0908026 44 2729 48 6.95648e+06 405319 787024. 2723.27 3.92 0.364238 0.327933 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0565426 0.0509175 85 34 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 10.19 vpr 56.11 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30560 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 17.8 MiB 1.15 799 12448 3955 5788 2705 56.5 MiB 0.16 0.00 3.78219 -138.337 -3.78219 3.78219 1.09 0.00129422 0.00118519 0.0797554 0.0731428 44 2633 42 6.95648e+06 434271 787024. 2723.27 3.34 0.356732 0.320245 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.32 0.13 0.16 -1 -1 0.32 0.0574067 0.051861 88 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 11.76 vpr 56.19 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 17.8 MiB 1.64 822 11983 4768 6508 707 56.6 MiB 0.18 0.00 4.19045 -134.89 -4.19045 4.19045 1.09 0.00138265 0.00126248 0.0887663 0.0813681 48 2637 22 6.95648e+06 361892 865456. 2994.66 6.44 0.558409 0.497903 28354 207349 -1 2137 24 1540 2402 225363 46826 4.04142 4.04142 -139.672 -4.04142 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0647566 0.0581982 84 122 0 0 122 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 11.04 vpr 56.54 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58200 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 18.1 MiB 1.22 840 10346 3694 5398 1254 56.8 MiB 0.17 0.00 3.7688 -130.649 -3.7688 3.7688 1.09 0.00138091 0.00126765 0.0910123 0.0835746 40 2535 24 6.95648e+06 188184 706193. 2443.58 4.10 0.387616 0.348294 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0613399 0.0552047 78 94 32 32 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 17.04 vpr 55.59 MiB 0.06 6868 -1 -1 1 0.03 -1 -1 30580 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 17.2 MiB 0.21 594 10647 4341 5910 396 55.9 MiB 0.13 0.00 3.12656 -113.614 -3.12656 3.12656 1.09 0.00104218 0.000955614 0.0610739 0.0559171 56 1741 22 6.95648e+06 332941 973134. 3367.25 6.96 0.422414 0.376318 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.38 0.10 0.41 -1 -1 0.38 0.0416823 0.0374251 71 34 63 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.77 vpr 55.86 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30248 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57656 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 17.8 MiB 1.35 610 8444 3495 4676 273 56.3 MiB 0.12 0.00 3.0405 -112.422 -3.0405 3.0405 1.13 0.00116613 0.00106699 0.0681808 0.0624177 52 1849 26 6.95648e+06 144757 926341. 3205.33 2.76 0.279919 0.250763 29218 227130 -1 1370 23 1369 2031 153581 37136 3.03252 3.03252 -119.471 -3.03252 0 0 1.14541e+06 3963.36 0.37 0.11 0.39 -1 -1 0.37 0.0526518 0.0472736 63 94 0 0 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.50 vpr 56.41 MiB 0.06 7212 -1 -1 1 0.03 -1 -1 30728 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 18.1 MiB 0.75 1000 14152 3772 8188 2192 56.4 MiB 0.23 0.00 4.46224 -157.711 -4.46224 4.46224 1.10 0.00153169 0.00140856 0.106715 0.098133 54 3033 30 6.95648e+06 434271 949917. 3286.91 7.64 0.613701 0.550968 29506 232905 -1 2329 24 2607 4128 362524 74061 4.97191 4.97191 -169.58 -4.97191 0 0 1.17392e+06 4061.99 0.38 0.19 0.40 -1 -1 0.38 0.071073 0.0640762 103 65 96 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 8.74 vpr 56.11 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57684 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 17.4 MiB 1.09 717 11983 4638 6220 1125 56.3 MiB 0.15 0.00 3.1457 -117.079 -3.1457 3.1457 1.09 0.00124566 0.00114373 0.0801177 0.0736451 52 1977 32 6.95648e+06 347416 926341. 3205.33 2.85 0.312388 0.281064 29218 227130 -1 1529 23 1474 1953 166020 38664 3.18617 3.18617 -120.879 -3.18617 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.055696 0.0501995 83 34 92 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 8.23 vpr 55.86 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30248 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 17.1 MiB 0.36 571 10581 4367 5776 438 55.9 MiB 0.13 0.00 3.0735 -108.432 -3.0735 3.0735 1.09 0.00101199 0.000928311 0.0645638 0.0593128 38 2214 32 6.95648e+06 275038 678818. 2348.85 4.85 0.304862 0.272714 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0405936 0.0364505 65 34 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 12.69 vpr 56.50 MiB 0.08 7404 -1 -1 1 0.04 -1 -1 30920 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 18.3 MiB 2.45 1126 15215 3732 10105 1378 56.6 MiB 0.25 0.00 4.49524 -160.999 -4.49524 4.49524 1.09 0.00170037 0.00156543 0.124871 0.115065 48 3031 35 6.95648e+06 448746 865456. 2994.66 20.87 0.817149 0.735661 28354 207349 -1 2801 53 4379 6142 1660922 828010 5.02371 5.02371 -179.054 -5.02371 0 0 1.05005e+06 3633.38 0.35 0.77 0.35 -1 -1 0.35 0.158086 0.141814 103 127 32 32 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.38 vpr 56.26 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30312 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 17.6 MiB 1.34 804 14375 4842 7223 2310 56.3 MiB 0.19 0.00 3.73321 -136.441 -3.73321 3.73321 1.08 0.000854505 0.000767794 0.0695557 0.0629002 40 2325 28 6.95648e+06 405319 706193. 2443.58 3.80 0.334096 0.298714 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.054673 0.0492998 86 34 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 6.82 vpr 55.50 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.3 MiB 0.36 740 12763 4452 6451 1860 55.8 MiB 0.15 0.00 3.05815 -117.559 -3.05815 3.05815 1.09 0.00100968 0.00092642 0.0687585 0.0631934 44 2104 25 6.95648e+06 347416 787024. 2723.27 3.30 0.285377 0.255817 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.041819 0.0375886 70 3 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 14.02 vpr 55.96 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30664 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 18.2 MiB 0.63 924 14567 5045 6877 2645 56.5 MiB 0.21 0.00 4.52824 -159.979 -4.52824 4.52824 1.09 0.00145719 0.00133898 0.103177 0.0948078 54 3003 36 6.95648e+06 448746 949917. 3286.91 6.94 0.518235 0.465768 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.41 0.20 0.40 -1 -1 0.41 0.0738998 0.066636 105 34 128 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.41 vpr 55.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30244 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 17.3 MiB 0.40 618 10614 4475 5915 224 55.9 MiB 0.14 0.00 2.92185 -113.699 -2.92185 2.92185 1.10 0.000997586 0.000915108 0.071427 0.0655363 46 1828 25 6.95648e+06 144757 828058. 2865.25 6.27 0.451092 0.402636 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0470208 0.0421897 62 3 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 9.08 vpr 55.61 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 17.4 MiB 0.89 601 10163 2708 5873 1582 55.8 MiB 0.12 0.00 3.10776 -107.419 -3.10776 3.10776 1.09 0.00100863 0.000924981 0.0600311 0.0551339 52 1508 25 6.95648e+06 303989 926341. 3205.33 2.69 0.232747 0.208755 29218 227130 -1 1108 22 1138 1745 119544 29707 3.03987 3.03987 -107.252 -3.03987 0 0 1.14541e+06 3963.36 0.40 0.10 0.38 -1 -1 0.40 0.0452438 0.0406662 65 34 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.64 vpr 56.23 MiB 0.04 7132 -1 -1 1 0.27 -1 -1 30136 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 17.8 MiB 1.45 705 12856 4698 6070 2088 56.5 MiB 0.18 0.00 3.39446 -107.671 -3.39446 3.39446 1.14 0.00124212 0.00113772 0.0957051 0.0878096 48 2602 41 6.95648e+06 289514 865456. 2994.66 7.15 0.57247 0.512412 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.34 0.13 0.35 -1 -1 0.34 0.0501713 0.0452156 77 88 29 29 85 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.45 vpr 56.04 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 17.4 MiB 1.02 807 13117 5264 6347 1506 56.4 MiB 0.19 0.00 3.65689 -136.729 -3.65689 3.65689 1.09 0.00130474 0.00119745 0.108878 0.0999617 46 2061 24 6.95648e+06 188184 828058. 2865.25 5.31 0.529209 0.475139 28066 200906 -1 1777 22 2020 2624 211029 44669 3.92996 3.92996 -145.52 -3.92996 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0574376 0.0517901 78 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.39 vpr 56.07 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30520 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 17.5 MiB 1.87 890 14345 5510 6931 1904 56.4 MiB 0.19 0.00 3.74419 -138.408 -3.74419 3.74419 1.09 0.00130485 0.00119721 0.0984535 0.090346 48 2618 24 6.95648e+06 361892 865456. 2994.66 3.60 0.375018 0.337101 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.34 0.19 0.35 -1 -1 0.34 0.0615794 0.055449 85 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 10.21 vpr 55.85 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 17.5 MiB 1.38 685 10813 4185 5763 865 56.2 MiB 0.13 0.00 3.05815 -117.015 -3.05815 3.05815 1.09 0.00111879 0.00102402 0.0646507 0.0592316 44 2023 47 6.95648e+06 347416 787024. 2723.27 6.54 0.518452 0.462204 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0461188 0.0413834 69 65 32 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 9.16 vpr 55.79 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 17.5 MiB 1.62 684 10105 3894 4557 1654 56.1 MiB 0.14 0.00 3.30215 -110.841 -3.30215 3.30215 1.08 0.00110796 0.00101439 0.0768358 0.0704031 36 2232 46 6.95648e+06 144757 648988. 2245.63 5.37 0.475583 0.423763 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.29 0.11 0.27 -1 -1 0.29 0.0464687 0.0416674 59 90 0 0 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 9.19 vpr 56.01 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 17.4 MiB 1.01 949 12711 4087 6844 1780 56.3 MiB 0.18 0.00 3.1285 -115.995 -3.1285 3.1285 1.09 0.00122023 0.00111919 0.0883109 0.0810975 40 2353 22 6.95648e+06 318465 706193. 2443.58 2.97 0.348513 0.31322 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.30 0.13 0.29 -1 -1 0.30 0.0545814 0.0490875 79 60 60 30 57 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.93 vpr 55.92 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30288 -1 -1 16 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 17.5 MiB 0.79 684 10156 4202 5354 600 56.2 MiB 0.14 0.00 4.24545 -126.653 -4.24545 4.24545 1.10 0.00110432 0.00101392 0.0728848 0.0669703 38 2620 28 6.95648e+06 231611 678818. 2348.85 7.19 0.322981 0.289914 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0498232 0.0447942 74 34 84 28 28 28 - fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.16 vpr 55.97 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30012 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 17.3 MiB 0.92 607 9374 3879 5147 348 56.2 MiB 0.12 0.00 3.0545 -108.859 -3.0545 3.0545 1.08 0.0010673 0.000978325 0.0672428 0.0616541 38 1982 33 6.95648e+06 173708 678818. 2348.85 4.42 0.316059 0.282704 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0480865 0.0431235 61 63 30 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.01 vpr 55.95 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 17.5 MiB 1.46 777 7669 3175 4304 190 56.5 MiB 0.11 0.00 3.0765 -113.072 -3.0765 3.0765 1.09 0.00113701 0.0010405 0.0595326 0.0545845 36 2390 29 6.95648e+06 144757 648988. 2245.63 4.30 0.290183 0.258937 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0512541 0.0459159 60 91 0 0 91 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 10.62 vpr 55.82 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30096 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.3 MiB 0.20 795 9448 3333 4743 1372 56.2 MiB 0.13 0.00 3.89245 -136.332 -3.89245 3.89245 1.09 0.0011447 0.00104929 0.0600089 0.0552093 50 2553 48 6.95648e+06 361892 902133. 3121.57 7.97 0.533607 0.47717 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.35 0.17 0.36 -1 -1 0.35 0.0528653 0.0476886 86 4 124 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 10.59 vpr 56.03 MiB 0.05 7072 -1 -1 1 0.05 -1 -1 30596 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 17.6 MiB 0.98 926 10495 2590 6894 1011 56.5 MiB 0.17 0.00 3.78219 -140.482 -3.78219 3.78219 1.13 0.00132488 0.00121557 0.0716802 0.0657643 44 2797 31 6.95648e+06 390843 787024. 2723.27 7.54 0.548921 0.491493 27778 195446 -1 2243 24 2072 3440 271776 53627 4.11966 4.11966 -151.056 -4.11966 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.061397 0.0553399 86 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 12.32 vpr 56.02 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30400 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 17.8 MiB 1.90 831 9336 3198 4890 1248 56.3 MiB 0.14 0.00 3.70819 -135.715 -3.70819 3.70819 0.98 0.00131555 0.00120568 0.0650884 0.0597001 46 2950 33 6.95648e+06 376368 828058. 2865.25 5.71 0.370042 0.332118 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.33 0.15 0.32 -1 -1 0.33 0.0591856 0.0533197 85 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.29 vpr 56.12 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 17.4 MiB 1.19 822 13351 4683 6743 1925 56.4 MiB 0.19 0.00 3.75544 -130.593 -3.75544 3.75544 1.08 0.0013088 0.00119325 0.0889987 0.0816368 48 3144 32 6.95648e+06 390843 865456. 2994.66 4.14 0.381536 0.342844 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0590308 0.0531983 86 65 60 30 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 7.75 vpr 55.61 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30196 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 17.1 MiB 0.83 551 9064 3696 4990 378 55.8 MiB 0.12 0.00 3.29416 -111.889 -3.29416 3.29416 1.09 0.00100274 0.000918791 0.061351 0.0563046 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.99 0.283432 0.253427 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.30 0.12 0.29 -1 -1 0.30 0.0421474 0.0377961 62 34 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.13 vpr 56.06 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30272 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 17.8 MiB 0.87 751 12465 5336 6622 507 56.6 MiB 0.18 0.00 4.015 -133.992 -4.015 4.015 1.09 0.00124832 0.00114481 0.0991475 0.0910144 50 2020 39 6.95648e+06 217135 902133. 3121.57 10.80 0.681876 0.609696 28642 213929 -1 1643 20 1664 2248 177098 40098 3.95216 3.95216 -137.304 -3.95216 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0502919 0.0453904 78 63 60 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.10 vpr 55.99 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30716 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58140 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 17.9 MiB 1.83 807 14351 4061 7900 2390 56.8 MiB 0.22 0.00 3.71619 -135.355 -3.71619 3.71619 1.09 0.0014392 0.00131911 0.108473 0.099264 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.48 0.389336 0.349462 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0641582 0.057644 88 127 0 0 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 10.92 vpr 55.97 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30264 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57816 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 17.5 MiB 1.03 718 14035 5965 7479 591 56.5 MiB 0.23 0.00 3.9948 -135.983 -3.9948 3.9948 1.08 0.00132719 0.00121536 0.124816 0.114244 46 2454 32 6.95648e+06 318465 828058. 2865.25 5.81 0.437389 0.393278 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.053108 0.0478893 81 94 31 31 93 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.68 vpr 56.14 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30360 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 17.5 MiB 1.63 700 13668 5834 7221 613 56.4 MiB 0.19 0.00 3.27591 -109.838 -3.27591 3.27591 1.10 0.00127604 0.00116329 0.104398 0.0956517 46 2600 45 6.95648e+06 260562 828058. 2865.25 4.19 0.426489 0.38233 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0593692 0.0534036 75 92 26 26 90 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.27 vpr 55.97 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58068 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.8 MiB 1.92 782 12628 3922 6830 1876 56.7 MiB 0.19 0.00 3.65989 -133.508 -3.65989 3.65989 1.09 0.00131076 0.0012018 0.102702 0.0942152 48 2610 29 6.95648e+06 188184 865456. 2994.66 4.84 0.407081 0.366043 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.35 0.25 0.35 -1 -1 0.35 0.0771882 0.0696211 81 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 8.91 vpr 56.02 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30184 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57896 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 17.7 MiB 1.11 662 10163 3749 4795 1619 56.5 MiB 0.13 0.00 3.14182 -102.393 -3.14182 3.14182 1.09 0.00122041 0.00111795 0.072063 0.0660747 48 1906 29 6.95648e+06 318465 865456. 2994.66 3.93 0.346316 0.310461 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.35 0.15 0.35 -1 -1 0.35 0.054278 0.0488649 77 88 26 26 85 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 8.27 vpr 55.64 MiB 0.05 6812 -1 -1 1 0.03 -1 -1 30232 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.84 574 9219 3815 5040 364 56.0 MiB 0.12 0.00 2.94595 -112.182 -2.94595 2.94595 1.09 0.00100073 0.000919158 0.0622626 0.0572147 62 1582 28 6.95648e+06 144757 1.05005e+06 3633.38 7.19 0.427956 0.382799 30946 263737 -1 1177 19 1240 1905 137799 33305 3.13582 3.13582 -113.41 -3.13582 0 0 1.30136e+06 4502.97 0.42 0.10 0.46 -1 -1 0.42 0.0364767 0.0328469 61 3 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.61 vpr 56.20 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30284 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 17.6 MiB 3.79 749 15688 6578 8529 581 56.5 MiB 0.21 0.00 3.77419 -136.605 -3.77419 3.77419 1.09 0.00131676 0.0012077 0.110005 0.10091 54 2315 29 6.95648e+06 347416 949917. 3286.91 4.13 0.404609 0.364168 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.38 0.14 0.40 -1 -1 0.38 0.0597107 0.0538828 84 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 8.88 vpr 56.28 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30400 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.5 MiB 0.77 800 13117 5732 6986 399 56.4 MiB 0.19 0.00 3.79019 -142.199 -3.79019 3.79019 1.09 0.0013207 0.00121117 0.10921 0.100253 44 2724 46 6.95648e+06 188184 787024. 2723.27 3.10 0.442527 0.398192 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0545276 0.04912 81 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.04 vpr 55.65 MiB 0.03 6920 -1 -1 1 0.04 -1 -1 30196 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 17.1 MiB 1.21 575 11609 4562 5941 1106 56.1 MiB 0.15 0.00 3.25495 -109.238 -3.25495 3.25495 1.08 0.00103206 0.000945267 0.0788817 0.0723099 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.43 0.294303 0.263751 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.0430239 0.0385979 60 55 32 32 54 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.65 vpr 55.37 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30196 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 17.3 MiB 0.30 835 9529 3959 5371 199 55.9 MiB 0.12 0.00 3.0815 -119.168 -3.0815 3.0815 1.09 0.000971747 0.000891309 0.0624392 0.0573784 38 2078 34 6.95648e+06 159232 678818. 2348.85 5.58 0.40656 0.362846 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.29 0.10 0.31 -1 -1 0.29 0.0386929 0.0348551 63 4 93 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.46 vpr 56.21 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 17.6 MiB 1.35 782 14483 5692 6794 1997 56.2 MiB 0.20 0.00 3.70334 -129.205 -3.70334 3.70334 1.09 0.0012514 0.00114867 0.104303 0.0956314 38 2558 24 6.95648e+06 275038 678818. 2348.85 4.66 0.373069 0.335377 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0469186 0.0424536 78 59 60 32 58 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 10.81 vpr 56.06 MiB 0.05 7160 -1 -1 1 0.41 -1 -1 30108 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 17.5 MiB 0.75 793 11474 4768 6294 412 56.4 MiB 0.17 0.00 3.90986 -132.869 -3.90986 3.90986 1.08 0.00127496 0.00116789 0.0872254 0.0799913 40 2890 43 6.95648e+06 260562 706193. 2443.58 8.27 0.414406 0.371951 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0555461 0.0499961 78 88 28 28 88 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 9.23 vpr 56.20 MiB 0.10 7032 -1 -1 1 0.41 -1 -1 30408 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58028 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.9 MiB 0.43 1152 4375 861 3334 180 56.7 MiB 0.09 0.00 4.48239 -161.071 -4.48239 4.48239 1.08 0.00136817 0.00125747 0.0332239 0.0306376 46 3119 32 6.95648e+06 390843 828058. 2865.25 6.66 0.354917 0.319322 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.34 0.16 0.33 -1 -1 0.34 0.0563478 0.0511067 100 3 156 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.72 vpr 56.07 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 17.8 MiB 1.05 698 14528 6104 7488 936 56.6 MiB 0.20 0.00 3.34296 -113.702 -3.34296 3.34296 1.08 0.00119821 0.00109831 0.104718 0.0960619 44 2314 27 6.95648e+06 260562 787024. 2723.27 3.10 0.37127 0.333854 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0591834 0.0531779 77 59 60 30 56 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.96 vpr 55.59 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 17.3 MiB 0.54 465 10459 4157 5359 943 55.9 MiB 0.14 0.00 3.15776 -95.8334 -3.15776 3.15776 1.10 0.000917356 0.000841296 0.0740647 0.0678907 38 1652 25 6.95648e+06 217135 678818. 2348.85 5.04 0.384385 0.342494 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0342114 0.0307177 57 34 54 27 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 9.29 vpr 56.30 MiB 0.05 7292 -1 -1 1 0.05 -1 -1 30472 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 18.2 MiB 0.90 956 13513 4288 6425 2800 56.6 MiB 0.20 0.00 4.037 -139.704 -4.037 4.037 1.09 0.00155869 0.00142942 0.103566 0.0950383 54 3228 47 6.95648e+06 434271 949917. 3286.91 8.84 0.701419 0.628858 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.38 0.18 0.39 -1 -1 0.38 0.070541 0.0636286 103 95 62 31 95 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 14.62 vpr 55.92 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30380 -1 -1 14 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58172 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 18.0 MiB 3.62 899 8716 2535 4990 1191 56.8 MiB 0.14 0.00 4.57784 -152.287 -4.57784 4.57784 1.09 0.00139742 0.00128222 0.0783709 0.0719727 40 2620 26 6.95648e+06 202660 706193. 2443.58 3.61 0.380083 0.340722 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0560166 0.0503962 79 124 0 0 124 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 11.53 vpr 55.83 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 17.5 MiB 3.12 500 11389 4353 5738 1298 56.5 MiB 0.15 0.00 3.0346 -106.135 -3.0346 3.0346 1.09 0.00113202 0.00103664 0.0867382 0.0795135 42 2142 50 6.95648e+06 144757 744469. 2576.02 13.20 0.6367 0.56685 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.31 0.10 0.30 -1 -1 0.31 0.0484561 0.0434722 58 89 0 0 89 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 7.92 vpr 55.93 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 17.4 MiB 0.43 819 12938 5293 7361 284 56.3 MiB 0.18 0.00 4.12326 -140.658 -4.12326 4.12326 1.10 0.00121508 0.00111393 0.0870922 0.0799583 46 2429 24 6.95648e+06 318465 828058. 2865.25 6.38 0.482164 0.432371 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0531962 0.0479402 83 34 90 30 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 9.21 vpr 56.12 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30548 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58012 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 17.8 MiB 0.96 852 12560 4728 5964 1868 56.7 MiB 0.19 0.00 4.1192 -140.393 -4.1192 4.1192 1.09 0.00143535 0.00131808 0.0995828 0.0915308 44 3193 49 6.95648e+06 332941 787024. 2723.27 3.68 0.482635 0.434046 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.34 0.15 0.23 -1 -1 0.34 0.0665179 0.0599931 95 64 87 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 11.17 vpr 55.81 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30236 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 17.8 MiB 0.96 739 10762 4429 5782 551 56.7 MiB 0.14 0.00 3.27396 -108.751 -3.27396 3.27396 1.09 0.00120667 0.00110443 0.0763097 0.0700094 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.84 0.293249 0.263612 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.35 0.12 0.37 -1 -1 0.35 0.0527813 0.0475011 78 61 58 30 58 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 10.82 vpr 56.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58016 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 17.9 MiB 0.64 907 15848 6161 8045 1642 56.7 MiB 0.20 0.00 3.79319 -139.401 -3.79319 3.79319 1.11 0.00133992 0.00122802 0.0969903 0.0888647 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.59 0.369418 0.332065 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.18 0.34 -1 -1 0.35 0.0573937 0.0517312 91 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.20 vpr 56.14 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58060 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 17.8 MiB 0.39 794 15215 5485 7366 2364 56.7 MiB 0.20 0.00 3.05335 -116.88 -3.05335 3.05335 1.10 0.00131332 0.00120301 0.0964503 0.0883512 38 2664 32 6.95648e+06 448746 678818. 2348.85 14.31 0.660166 0.591052 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0592563 0.0533417 90 65 63 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.40 vpr 55.59 MiB 0.08 6928 -1 -1 1 0.27 -1 -1 30108 -1 -1 13 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 17.3 MiB 3.33 577 8599 3570 4706 323 55.9 MiB 0.10 0.00 3.17976 -103.796 -3.17976 3.17976 1.09 0.000977423 0.000893891 0.0570353 0.0522728 34 1710 33 6.95648e+06 188184 618332. 2139.56 2.00 0.240217 0.214804 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0393341 0.0352805 56 34 58 29 29 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 8.19 vpr 55.81 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 17.4 MiB 0.89 584 9839 4132 5456 251 56.2 MiB 0.13 0.00 2.9814 -102.92 -2.9814 2.9814 1.11 0.00106727 0.000976717 0.0709454 0.0650059 42 1955 38 6.95648e+06 144757 744469. 2576.02 6.25 0.488447 0.434321 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.31 0.09 0.29 -1 -1 0.31 0.0389154 0.0349064 58 82 0 0 82 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 9.02 vpr 55.84 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 17.7 MiB 0.53 743 12331 4128 5906 2297 56.5 MiB 0.15 0.00 4.24545 -140.476 -4.24545 4.24545 1.09 0.00121649 0.00111607 0.0771041 0.0708042 52 2318 48 6.95648e+06 405319 926341. 3205.33 8.18 0.622738 0.557407 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.37 0.13 0.38 -1 -1 0.37 0.0513301 0.0462667 86 34 93 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.01 vpr 55.67 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30212 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 17.3 MiB 1.23 494 12399 5297 6440 662 55.9 MiB 0.14 0.00 3.26295 -100.502 -3.26295 3.26295 1.08 0.000983031 0.000901478 0.0801406 0.07352 40 2019 35 6.95648e+06 202660 706193. 2443.58 3.74 0.322594 0.288738 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.30 0.10 0.28 -1 -1 0.30 0.041729 0.037302 59 56 29 29 52 26 - fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.82 vpr 55.50 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 17.2 MiB 0.87 698 10149 3910 5225 1014 55.8 MiB 0.14 0.00 3.05815 -118.306 -3.05815 3.05815 0.91 0.00105823 0.000970693 0.0726988 0.0667482 38 2191 39 6.95648e+06 144757 678818. 2348.85 11.66 0.504448 0.449993 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0447559 0.0401844 61 34 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.86 vpr 56.08 MiB 0.03 7016 -1 -1 1 0.03 -1 -1 30248 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 17.5 MiB 0.76 717 11607 3761 5813 2033 56.4 MiB 0.08 0.00 3.1175 -113.433 -3.1175 3.1175 0.74 0.000459665 0.000414213 0.0301033 0.0272558 44 1996 23 6.95648e+06 347416 787024. 2723.27 4.51 0.361136 0.321778 27778 195446 -1 1542 18 1591 2057 137516 32127 3.20637 3.20637 -119.126 -3.20637 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0465852 0.0420409 82 64 58 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 9.41 vpr 55.72 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30260 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 17.2 MiB 2.21 682 10459 3058 6921 480 55.9 MiB 0.13 0.00 3.13575 -104.344 -3.13575 3.13575 1.08 0.00101945 0.000934856 0.0711642 0.0652532 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.21 0.192026 0.171298 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0460906 0.0413256 57 55 31 31 53 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 9.00 vpr 56.17 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57780 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 17.6 MiB 1.78 710 12323 5117 6727 479 56.4 MiB 0.16 0.00 3.0155 -107.222 -3.0155 3.0155 1.10 0.00123051 0.00112843 0.0878957 0.0805773 48 2125 29 6.95648e+06 275038 865456. 2994.66 3.35 0.365621 0.328441 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.35 0.11 0.34 -1 -1 0.35 0.0509388 0.045856 76 65 52 26 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.77 vpr 56.15 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30192 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 17.7 MiB 1.57 717 15298 5325 7460 2513 56.6 MiB 0.21 0.00 3.41641 -118.296 -3.41641 3.41641 1.09 0.00132789 0.00121668 0.104679 0.0958412 44 2443 41 6.95648e+06 361892 787024. 2723.27 6.51 0.563776 0.50584 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0557462 0.0502268 85 93 31 31 92 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 8.67 vpr 55.81 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30216 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 17.4 MiB 0.91 564 10149 3066 5426 1657 56.3 MiB 0.15 0.00 2.9023 -103.177 -2.9023 2.9023 1.10 0.00108818 0.000997353 0.0746445 0.0684847 44 2002 28 6.95648e+06 144757 787024. 2723.27 5.88 0.465708 0.415587 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.048056 0.0430679 61 61 32 32 60 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.62 vpr 55.68 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30144 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 17.5 MiB 0.76 611 8289 3413 4626 250 56.4 MiB 0.11 0.00 3.0515 -113.367 -3.0515 3.0515 0.83 0.00110348 0.00101041 0.062218 0.0570542 52 1978 31 6.95648e+06 144757 926341. 3205.33 6.89 0.451101 0.402349 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.37 0.11 0.40 -1 -1 0.37 0.046306 0.0415836 63 63 32 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 10.67 vpr 55.98 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30584 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 17.6 MiB 1.08 951 8283 1857 5834 592 56.5 MiB 0.13 0.00 3.78219 -143.123 -3.78219 3.78219 1.09 0.00129864 0.00119118 0.0549675 0.0504641 40 2477 25 6.95648e+06 419795 706193. 2443.58 4.82 0.341606 0.306189 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.30 0.20 0.29 -1 -1 0.30 0.0690988 0.0621809 88 65 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 8.13 vpr 55.98 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30344 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 17.6 MiB 1.01 739 8336 2662 4258 1416 56.2 MiB 0.12 0.00 3.1065 -104.923 -3.1065 3.1065 1.08 0.00118927 0.00109002 0.0609616 0.0559909 38 2387 48 6.95648e+06 275038 678818. 2348.85 11.88 0.615736 0.549976 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.29 0.10 0.29 -1 -1 0.29 0.0488341 0.0440831 77 62 56 29 58 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.51 vpr 56.27 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30672 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58152 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 18.0 MiB 1.90 819 16473 6066 7302 3105 56.8 MiB 0.21 0.00 3.81039 -138.347 -3.81039 3.81039 1.09 0.0014429 0.00132167 0.11745 0.107634 48 2605 47 6.95648e+06 419795 865456. 2994.66 7.28 0.487999 0.437685 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.36 0.21 0.34 -1 -1 0.36 0.0791086 0.0709628 89 127 0 0 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 8.21 vpr 55.51 MiB 0.04 6760 -1 -1 1 0.03 -1 -1 30128 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 17.1 MiB 1.25 588 9529 3953 5280 296 55.7 MiB 0.11 0.00 3.02776 -101.68 -3.02776 3.02776 1.09 0.000920775 0.000845309 0.0593258 0.0544919 38 2072 26 6.95648e+06 159232 678818. 2348.85 3.30 0.262979 0.235006 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0417613 0.0373795 58 4 85 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.96 vpr 56.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58044 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 17.8 MiB 1.09 751 13335 4844 6817 1674 56.7 MiB 0.18 0.00 3.74945 -128.098 -3.74945 3.74945 1.11 0.00131829 0.00120736 0.0956107 0.0875067 50 2285 32 6.95648e+06 332941 902133. 3121.57 4.64 0.399594 0.358957 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.35 0.12 0.36 -1 -1 0.35 0.0570136 0.051306 81 92 28 28 92 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.38 vpr 55.97 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30076 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57588 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 17.5 MiB 2.95 613 11854 5235 6332 287 56.2 MiB 0.16 0.00 2.96105 -113.67 -2.96105 2.96105 1.09 0.00118941 0.0010895 0.0939151 0.086067 40 2066 46 6.95648e+06 144757 706193. 2443.58 13.27 0.665482 0.593469 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.0568819 0.0510321 61 96 0 0 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 8.92 vpr 55.98 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30224 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 17.5 MiB 1.30 784 11983 4223 5778 1982 56.4 MiB 0.17 0.00 3.13882 -116.487 -3.13882 3.13882 1.12 0.0012929 0.00118454 0.0817383 0.0748738 48 2212 28 6.95648e+06 347416 865456. 2994.66 2.95 0.371644 0.333828 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.34 0.13 0.34 -1 -1 0.34 0.0572075 0.0516248 84 65 61 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 12.83 vpr 56.21 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30624 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 18.4 MiB 1.60 961 18301 6218 9454 2629 56.7 MiB 0.26 0.00 4.52824 -160.34 -4.52824 4.52824 1.09 0.00157359 0.00144406 0.134368 0.123321 46 3150 41 6.95648e+06 477698 828058. 2865.25 6.37 0.44243 0.39771 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.33 0.17 0.33 -1 -1 0.33 0.0660315 0.0596009 104 96 64 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 8.89 vpr 55.48 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30068 -1 -1 10 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 16.9 MiB 0.51 395 8267 2975 4043 1249 55.5 MiB 0.09 0.00 2.20646 -76.6701 -2.20646 2.20646 1.09 0.000820752 0.000750585 0.048116 0.0440817 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.95 0.251038 0.222604 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.29 0.06 0.27 -1 -1 0.29 0.0354479 0.0315251 45 56 0 0 53 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 8.82 vpr 55.71 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30280 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 17.2 MiB 1.64 505 9994 3801 4923 1270 55.9 MiB 0.13 0.00 3.20866 -106.336 -3.20866 3.20866 1.10 0.00100772 0.000925015 0.0683057 0.0627268 40 1597 24 6.95648e+06 173708 706193. 2443.58 2.44 0.283172 0.253512 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0474906 0.0424626 58 34 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.09 vpr 55.71 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 29900 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 17.4 MiB 0.28 594 9219 3126 4706 1387 56.0 MiB 0.13 0.00 2.93285 -111.664 -2.93285 2.93285 1.09 0.0010611 0.000972688 0.0677214 0.0621498 52 1888 25 6.95648e+06 144757 926341. 3205.33 6.74 0.420574 0.375381 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.37 0.12 0.38 -1 -1 0.37 0.0501063 0.0450145 65 34 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.40 vpr 55.47 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30276 -1 -1 15 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 17.3 MiB 0.51 415 9310 3976 4598 736 55.8 MiB 0.10 0.00 3.24096 -89.6096 -3.24096 3.24096 1.09 0.000857735 0.000786565 0.0563127 0.0517129 40 1641 47 6.95648e+06 217135 706193. 2443.58 2.95 0.273201 0.243229 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.30 0.08 0.28 -1 -1 0.30 0.0356654 0.0318837 56 34 50 25 25 25 - fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 14.36 vpr 56.05 MiB 0.05 7136 -1 -1 1 0.05 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 17.8 MiB 1.31 849 10835 4559 6029 247 56.3 MiB 0.18 0.00 3.79924 -134.385 -3.79924 3.79924 1.18 0.00135307 0.00123981 0.0960042 0.0881023 48 3013 23 6.95648e+06 188184 865456. 2994.66 6.85 0.561782 0.503515 28354 207349 -1 2586 21 1951 3485 346305 68574 4.33406 4.33406 -153.19 -4.33406 0 0 1.05005e+06 3633.38 0.35 0.18 0.36 -1 -1 0.35 0.0626458 0.0561033 77 94 32 32 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 9.79 vpr 56.24 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30212 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57956 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 17.9 MiB 1.05 742 12512 4241 5927 2344 56.6 MiB 0.17 0.00 3.1116 -112.527 -3.1116 3.1116 1.09 0.0013258 0.00121388 0.0840633 0.0769803 40 2297 45 6.95648e+06 419795 706193. 2443.58 3.75 0.417533 0.374817 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.34 0.18 0.28 -1 -1 0.34 0.0737225 0.0662994 87 94 29 29 93 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.89 vpr 55.84 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57828 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 17.9 MiB 0.73 1062 15584 5717 7278 2589 56.5 MiB 0.23 0.00 4.46104 -158.567 -4.46104 4.46104 1.10 0.00137337 0.00125931 0.117262 0.107455 50 2979 31 6.99608e+06 323745 902133. 3121.57 3.60 0.431744 0.388178 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.35 0.11 0.36 -1 -1 0.35 0.0412321 0.0367847 130 96 32 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 9.78 vpr 55.82 MiB 0.06 7264 -1 -1 1 0.03 -1 -1 30596 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 17.8 MiB 1.39 1018 13610 5732 7207 671 56.5 MiB 0.20 0.00 4.50158 -148.332 -4.50158 4.50158 1.08 0.00128938 0.00118143 0.102219 0.093741 54 3118 36 6.99608e+06 294314 949917. 3286.91 7.08 0.554204 0.496926 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.36 0.15 0.21 -1 -1 0.36 0.0527242 0.0476024 117 91 30 30 89 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 8.21 vpr 55.84 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30268 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 17.3 MiB 1.01 1040 13610 5701 7488 421 56.2 MiB 0.19 0.00 3.59279 -128.627 -3.59279 3.59279 1.14 0.0012387 0.00113636 0.0987332 0.0906087 46 2926 28 6.99608e+06 264882 828058. 2865.25 6.02 0.497392 0.446337 28066 200906 -1 2312 22 1747 2063 162737 34627 4.13566 4.13566 -142.913 -4.13566 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0542072 0.0488594 106 65 54 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 8.33 vpr 55.64 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 17.4 MiB 0.71 806 14444 6101 7602 741 56.0 MiB 0.20 0.00 3.79615 -125.537 -3.79615 3.79615 1.09 0.00114872 0.00105499 0.101306 0.0930462 40 2767 26 6.99608e+06 264882 706193. 2443.58 4.36 0.364531 0.328143 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.0504752 0.0454288 89 34 87 29 29 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.67 vpr 55.84 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 17.7 MiB 0.61 871 12416 4669 6393 1354 56.5 MiB 0.19 0.00 4.27644 -154.345 -4.27644 4.27644 1.12 0.00126178 0.0011576 0.0966609 0.0887407 56 2565 50 6.99608e+06 220735 973134. 3367.25 4.24 0.433776 0.389246 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.38 0.16 0.42 -1 -1 0.38 0.0615922 0.0555374 93 34 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 10.99 vpr 56.23 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30200 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 17.7 MiB 0.61 1298 16069 5589 8587 1893 56.4 MiB 0.23 0.00 3.60699 -134.626 -3.60699 3.60699 1.11 0.00129625 0.00118866 0.102142 0.0936983 48 3162 26 6.99608e+06 441471 865456. 2994.66 7.35 0.590646 0.529705 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.34 0.16 0.34 -1 -1 0.34 0.0571622 0.0515038 117 64 63 32 63 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 9.94 vpr 55.44 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 17.0 MiB 1.27 620 8289 3348 4414 527 55.6 MiB 0.10 0.00 3.30124 -103.988 -3.30124 3.30124 1.09 0.000919508 0.000843935 0.0521139 0.0478907 44 2016 40 6.99608e+06 220735 787024. 2723.27 5.97 0.411271 0.365865 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.34 0.10 0.32 -1 -1 0.34 0.0402531 0.0360636 68 34 54 27 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.75 vpr 55.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30056 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 17.0 MiB 0.48 708 9368 3795 5080 493 55.7 MiB 0.12 0.00 2.88485 -101.173 -2.88485 2.88485 1.09 0.00110469 0.00101433 0.0633039 0.0581989 46 2433 35 6.99608e+06 250167 828058. 2865.25 6.43 0.331858 0.297795 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.33 0.18 0.33 -1 -1 0.33 0.0587588 0.0528301 77 4 115 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 9.94 vpr 55.56 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 17.4 MiB 2.64 865 11366 4429 5807 1130 56.0 MiB 0.15 0.00 3.3156 -116.953 -3.3156 3.3156 1.09 0.00107791 0.000986815 0.0767401 0.070279 44 2856 40 6.99608e+06 220735 787024. 2723.27 3.98 0.346343 0.309451 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0488772 0.0438366 96 85 0 0 84 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.78 vpr 55.75 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30188 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 17.3 MiB 0.71 668 10346 4043 5155 1148 55.9 MiB 0.09 0.00 3.58059 -133.895 -3.58059 3.58059 1.09 0.000390684 0.000352615 0.0267628 0.0242459 46 2113 26 6.99608e+06 191304 828058. 2865.25 6.47 0.412839 0.367365 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.047881 0.0430039 79 34 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 7.44 vpr 55.97 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30028 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 17.6 MiB 2.26 858 10835 4264 5113 1458 56.3 MiB 0.15 0.00 3.85932 -133.017 -3.85932 3.85932 1.11 0.00106629 0.000977287 0.0739569 0.0677759 44 2584 26 6.99608e+06 220735 787024. 2723.27 2.79 0.259398 0.232732 27778 195446 -1 2084 20 1700 2299 199472 41488 3.792 3.792 -141.165 -3.792 0 0 997811. 3452.63 0.34 0.11 0.32 -1 -1 0.34 0.042807 0.0384646 88 63 30 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.85 vpr 55.64 MiB 0.11 6808 -1 -1 1 0.58 -1 -1 30140 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 17.6 MiB 0.78 1078 12030 4277 6214 1539 56.4 MiB 0.16 0.00 3.0712 -121.401 -3.0712 3.0712 1.03 0.00107108 0.000980409 0.0809159 0.0741417 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.17 0.283352 0.252944 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0501693 0.0449205 91 65 25 25 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.38 vpr 55.75 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30476 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 17.5 MiB 0.93 883 7132 1837 4428 867 56.2 MiB 0.13 0.00 3.50359 -126.552 -3.50359 3.50359 0.97 0.00125687 0.00115256 0.0564183 0.0518336 50 2388 31 6.99608e+06 235451 902133. 3121.57 3.13 0.329659 0.296043 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.35 0.13 0.35 -1 -1 0.35 0.0588242 0.0529547 101 58 64 32 57 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 12.05 vpr 56.18 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30508 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57856 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1134 14123 4441 7724 1958 56.5 MiB 0.21 0.00 4.28564 -153.93 -4.28564 4.28564 1.08 0.00132139 0.00121219 0.107746 0.0989315 48 3127 38 6.99608e+06 279598 865456. 2994.66 20.10 0.772486 0.692246 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.35 0.17 0.34 -1 -1 0.35 0.0641816 0.0578181 112 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.92 vpr 55.31 MiB 0.06 6980 -1 -1 1 0.03 -1 -1 30708 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 17.1 MiB 2.14 572 11293 4723 5996 574 55.7 MiB 0.13 0.00 2.92195 -96.6009 -2.92195 2.92195 1.09 0.000935853 0.000858475 0.069851 0.064104 40 1775 30 6.99608e+06 206020 706193. 2443.58 13.31 0.518779 0.460699 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.30 0.09 0.29 -1 -1 0.30 0.0389886 0.0349457 67 29 58 29 24 24 - fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.84 vpr 56.14 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57984 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 17.9 MiB 2.08 1040 13324 4763 6768 1793 56.6 MiB 0.20 0.00 3.68279 -132.173 -3.68279 3.68279 1.11 0.0013045 0.00119517 0.104538 0.0958138 50 2876 28 6.99608e+06 235451 902133. 3121.57 19.10 0.604371 0.540796 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.35 0.18 0.35 -1 -1 0.35 0.0630874 0.0567631 106 63 64 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.84 vpr 55.86 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1122 6731 1649 4394 688 56.2 MiB 0.11 0.00 3.32994 -131.897 -3.32994 3.32994 1.11 0.00126208 0.00115824 0.0518488 0.0476198 38 3062 22 6.99608e+06 250167 678818. 2348.85 4.98 0.322564 0.289342 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0504062 0.0454715 99 57 64 32 56 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 9.19 vpr 55.89 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30292 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 17.6 MiB 0.67 871 13856 5887 7726 243 56.4 MiB 0.20 0.00 3.39034 -128.572 -3.39034 3.39034 1.12 0.00111472 0.00102214 0.0972887 0.0892205 44 3195 31 6.99608e+06 206020 787024. 2723.27 3.03 0.34649 0.310362 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0446146 0.0401006 91 65 29 29 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.80 vpr 55.17 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30172 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 16.6 MiB 2.07 536 9041 3932 4796 313 55.2 MiB 0.10 0.00 2.34646 -88.6787 -2.34646 2.34646 1.10 0.000790368 0.000724261 0.049027 0.0449334 36 1652 38 6.99608e+06 161872 648988. 2245.63 2.63 0.231471 0.205412 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.30 0.07 0.25 -1 -1 0.30 0.0319045 0.0285327 56 34 24 24 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.12 vpr 55.82 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 17.4 MiB 2.25 1018 11532 3380 6660 1492 56.2 MiB 0.16 0.00 3.58639 -133.629 -3.58639 3.58639 1.11 0.00108586 0.000994843 0.0773672 0.0708984 40 2527 22 6.99608e+06 220735 706193. 2443.58 3.18 0.309191 0.276912 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.32 0.14 0.30 -1 -1 0.32 0.0520569 0.0467271 91 64 31 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.33 vpr 55.84 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30240 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 17.5 MiB 0.51 1089 12759 4547 6573 1639 56.4 MiB 0.17 0.00 4.04748 -146.851 -4.04748 4.04748 1.11 0.00122108 0.00112036 0.0862787 0.0793035 46 2738 33 6.99608e+06 338461 828058. 2865.25 6.30 0.498576 0.44751 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.33 0.13 0.34 -1 -1 0.33 0.0536176 0.0483271 97 34 91 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 12.98 vpr 55.88 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30636 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 18.0 MiB 1.30 1280 15206 4884 7262 3060 56.5 MiB 0.23 0.00 4.01908 -141.768 -4.01908 4.01908 1.09 0.00143224 0.00130991 0.119131 0.109406 46 3184 26 6.99608e+06 323745 828058. 2865.25 6.35 0.603976 0.541522 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.35 0.14 0.33 -1 -1 0.35 0.0620097 0.0557058 138 124 0 0 125 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.85 vpr 55.32 MiB 0.03 6776 -1 -1 1 0.04 -1 -1 30572 -1 -1 15 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 16.8 MiB 0.72 401 7217 2934 3827 456 55.4 MiB 0.07 0.00 2.7074 -79.2163 -2.7074 2.7074 1.09 0.000686446 0.000627258 0.0346819 0.0317254 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.72 0.166708 0.147935 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.28 0.06 0.25 -1 -1 0.28 0.023085 0.0206384 52 30 26 26 22 22 - fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.98 vpr 55.57 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 17.1 MiB 0.81 698 9036 3669 4978 389 55.8 MiB 0.13 0.00 3.97238 -133.231 -3.97238 3.97238 1.10 0.00117027 0.00107565 0.0687781 0.0632065 54 2240 31 6.99608e+06 176588 949917. 3286.91 3.56 0.333423 0.299671 29506 232905 -1 1677 21 1598 2534 192423 45363 3.87582 3.87582 -138.421 -3.87582 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0484017 0.0436273 75 3 122 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 6.31 vpr 54.91 MiB 0.04 6732 -1 -1 1 0.03 -1 -1 30376 -1 -1 8 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.8 MiB 0.23 736 9906 3603 5031 1272 55.3 MiB 0.10 0.00 2.06111 -84.6894 -2.06111 2.06111 1.09 0.000723153 0.000661638 0.050482 0.0462583 34 1682 40 6.99608e+06 117725 618332. 2139.56 2.10 0.222681 0.198317 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.27 0.08 0.26 -1 -1 0.27 0.0325348 0.0290661 44 3 53 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.47 vpr 55.55 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57704 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 17.4 MiB 1.25 836 12681 5269 6945 467 56.4 MiB 0.20 0.00 3.87925 -141.78 -3.87925 3.87925 1.08 0.00125456 0.00115165 0.103862 0.0955911 44 3391 42 6.99608e+06 250167 787024. 2723.27 3.48 0.36852 0.332156 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.33 0.15 0.34 -1 -1 0.33 0.0566662 0.0511474 95 34 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.62 vpr 55.82 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30104 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 17.4 MiB 0.30 1064 14375 4737 7721 1917 56.2 MiB 0.17 0.00 2.93295 -116.62 -2.93295 2.93295 1.11 0.00116536 0.00106972 0.084381 0.0775432 40 2476 21 6.99608e+06 412039 706193. 2443.58 6.32 0.580802 0.520929 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.30 0.14 0.28 -1 -1 0.30 0.0566841 0.0515721 87 3 124 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 11.97 vpr 56.00 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30592 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58020 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1077 13105 3562 8179 1364 56.7 MiB 0.20 0.00 3.82425 -139.818 -3.82425 3.82425 1.08 0.00131552 0.00120708 0.0966411 0.0887209 46 3235 48 6.99608e+06 309029 828058. 2865.25 7.05 0.599409 0.537701 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.34 0.14 0.33 -1 -1 0.34 0.0517736 0.0467441 115 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.38 vpr 55.73 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30164 -1 -1 11 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 17.2 MiB 1.23 701 9397 3869 5271 257 55.9 MiB 0.13 0.00 2.9841 -107.493 -2.9841 2.9841 1.11 0.00100161 0.000918746 0.0628261 0.057695 40 2056 26 6.99608e+06 161872 706193. 2443.58 5.37 0.390453 0.348049 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.30 0.11 0.29 -1 -1 0.30 0.0420966 0.0377777 72 34 54 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 10.09 vpr 55.45 MiB 0.05 6872 -1 -1 1 0.03 -1 -1 30236 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 17.3 MiB 7.13 650 7975 2399 4401 1175 56.0 MiB 0.12 0.00 3.55679 -118.022 -3.55679 3.55679 1.12 0.0010031 0.000915706 0.0591108 0.0543738 46 2056 46 6.99608e+06 191304 828058. 2865.25 4.99 0.311063 0.278063 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0439002 0.0393745 73 34 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.89 vpr 55.70 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30312 -1 -1 15 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 16.8 MiB 1.12 739 7975 3247 4371 357 55.5 MiB 0.10 0.00 3.69125 -116.127 -3.69125 3.69125 1.09 0.000948807 0.000870271 0.0507994 0.0465874 38 2264 33 6.99608e+06 220735 678818. 2348.85 5.12 0.336816 0.299227 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.038303 0.0343625 72 34 56 28 28 28 - fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.70 vpr 55.54 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30404 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.9 MiB 0.25 696 7204 2957 4121 126 55.6 MiB 0.10 0.00 2.86245 -113.51 -2.86245 2.86245 1.09 0.00100592 0.000923228 0.049861 0.0458494 42 2358 35 6.99608e+06 147157 744469. 2576.02 5.71 0.396965 0.354561 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.33 0.11 0.30 -1 -1 0.33 0.0389132 0.0350312 64 3 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.52 vpr 55.63 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 17.3 MiB 0.71 709 9540 3934 5278 328 55.8 MiB 0.12 0.00 2.94395 -107.519 -2.94395 2.94395 1.09 0.00102557 0.000939593 0.0619531 0.0568492 46 2091 24 6.99608e+06 220735 828058. 2865.25 3.55 0.251558 0.224996 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.35 0.09 0.33 -1 -1 0.35 0.0414756 0.0373035 77 34 61 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 9.60 vpr 55.51 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30148 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 17.3 MiB 2.91 930 10835 4554 5858 423 56.2 MiB 0.14 0.00 2.88685 -103.645 -2.88685 2.88685 1.09 0.00102129 0.000935776 0.0712239 0.0652874 36 2556 47 6.99608e+06 235451 648988. 2245.63 2.94 0.282334 0.252721 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0415524 0.0373117 86 61 29 29 57 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.90 vpr 55.91 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30444 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 17.8 MiB 1.05 1138 15273 6065 7495 1713 56.5 MiB 0.26 0.00 3.90815 -143.373 -3.90815 3.90815 1.10 0.00141808 0.00130268 0.132468 0.121854 46 3798 44 6.99608e+06 294314 828058. 2865.25 32.17 0.806265 0.724084 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.33 0.16 0.33 -1 -1 0.33 0.0622822 0.0562618 106 29 128 32 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 10.58 vpr 56.20 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30480 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 1.05 999 10762 3395 5388 1979 56.3 MiB 0.17 0.00 4.20458 -152.083 -4.20458 4.20458 1.13 0.00130309 0.00119431 0.0830164 0.0761784 54 3189 47 6.99608e+06 264882 949917. 3286.91 4.68 0.406678 0.36491 29506 232905 -1 2202 20 2117 2841 248515 55676 3.94235 3.94235 -153.962 -3.94235 0 0 1.17392e+06 4061.99 0.37 0.14 0.39 -1 -1 0.37 0.052728 0.0476284 110 65 62 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.40 vpr 55.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30468 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 17.2 MiB 0.85 1070 8867 2185 5933 749 56.1 MiB 0.12 0.00 3.49385 -125.494 -3.49385 3.49385 1.08 0.00110703 0.00101456 0.0618238 0.0566638 38 2592 37 6.99608e+06 235451 678818. 2348.85 3.62 0.322592 0.288187 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.30 0.11 0.27 -1 -1 0.30 0.0498874 0.0448488 99 90 0 0 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 9.72 vpr 56.02 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 17.8 MiB 0.88 1182 9006 2249 6265 492 56.4 MiB 0.14 0.00 3.66135 -134.693 -3.66135 3.66135 1.10 0.00126327 0.00115836 0.0685946 0.0629774 40 2955 30 6.99608e+06 264882 706193. 2443.58 3.12 0.357525 0.321082 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.30 0.14 0.29 -1 -1 0.30 0.051408 0.0463459 105 64 60 30 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 10.99 vpr 56.19 MiB 0.06 7320 -1 -1 1 0.03 -1 -1 30456 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58000 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 18.3 MiB 1.14 1281 17663 7641 9474 548 56.6 MiB 0.26 0.00 4.62587 -160.146 -4.62587 4.62587 1.11 0.00140858 0.00129033 0.135493 0.124153 48 3305 25 6.99608e+06 338461 865456. 2994.66 6.76 0.624617 0.559363 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.35 0.19 0.34 -1 -1 0.35 0.0655247 0.0588948 138 124 0 0 124 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 11.57 vpr 56.24 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57572 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 17.5 MiB 3.19 1159 10762 4075 5172 1515 56.2 MiB 0.19 0.00 4.92973 -159.817 -4.92973 4.92973 1.09 0.00131395 0.00120503 0.0908716 0.0836392 44 3431 27 6.99608e+06 279598 787024. 2723.27 3.15 0.321781 0.289974 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0599656 0.0540845 117 90 31 31 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.75 vpr 56.12 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30352 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57920 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 17.9 MiB 2.16 1059 13763 5785 7510 468 56.6 MiB 0.20 0.00 3.58185 -130.714 -3.58185 3.58185 1.10 0.00125597 0.0011451 0.0909089 0.0831004 46 2920 39 6.99608e+06 294314 828058. 2865.25 4.30 0.399842 0.358923 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.33 0.13 0.35 -1 -1 0.33 0.0559714 0.0504833 107 64 60 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 9.59 vpr 55.60 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57900 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.8 MiB 0.92 1271 6556 1686 3783 1087 56.5 MiB 0.11 0.00 3.81927 -146.587 -3.81927 3.81927 1.08 0.00130702 0.00120018 0.0524386 0.0482024 40 3290 49 6.99608e+06 250167 706193. 2443.58 5.70 0.388172 0.347709 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.30 0.22 0.28 -1 -1 0.30 0.06687 0.0601346 110 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.15 vpr 56.40 MiB 0.05 7356 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58052 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 18.2 MiB 1.93 1530 16529 5778 8459 2292 56.7 MiB 0.28 0.00 4.81093 -174.639 -4.81093 4.81093 1.08 0.00157935 0.00144733 0.142753 0.130935 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.72 0.459862 0.414571 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.33 0.21 0.33 -1 -1 0.33 0.0772453 0.069724 139 96 62 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.49 vpr 55.42 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 17.2 MiB 0.87 802 9996 3771 4383 1842 55.6 MiB 0.13 0.00 3.1395 -118.304 -3.1395 3.1395 1.09 0.00102956 0.000944636 0.0674647 0.0619769 44 2051 29 6.99608e+06 191304 787024. 2723.27 4.89 0.401166 0.358123 27778 195446 -1 1628 20 1398 1706 120876 25222 3.03987 3.03987 -121.096 -3.03987 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0417615 0.0375525 75 34 62 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 8.61 vpr 55.93 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30316 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57536 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 17.5 MiB 0.69 1237 14606 4845 8003 1758 56.2 MiB 0.23 0.00 4.54014 -162.571 -4.54014 4.54014 1.13 0.0012797 0.00117452 0.11096 0.101883 44 3549 35 6.99608e+06 264882 787024. 2723.27 5.20 0.415929 0.374329 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.33 0.14 0.32 -1 -1 0.33 0.0582224 0.0525379 106 64 62 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.22 vpr 55.81 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30712 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 17.6 MiB 1.17 1279 13077 3808 7089 2180 56.4 MiB 0.20 0.00 3.54953 -133.609 -3.54953 3.54953 1.10 0.00127799 0.00117197 0.0958621 0.0880649 46 3226 21 6.99608e+06 294314 828058. 2865.25 6.15 0.473528 0.424907 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.051663 0.0466231 108 63 62 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 9.38 vpr 55.78 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 17.5 MiB 0.82 797 9368 3826 5299 243 56.0 MiB 0.15 0.00 3.54729 -133.832 -3.54729 3.54729 1.09 0.00120343 0.0010955 0.0718829 0.0660808 46 2734 24 6.99608e+06 191304 828058. 2865.25 6.55 0.467082 0.418585 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.34 0.11 0.33 -1 -1 0.34 0.0434728 0.0391414 77 3 128 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 8.83 vpr 56.04 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30332 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57840 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 17.8 MiB 1.28 1139 10883 2905 7208 770 56.5 MiB 0.17 0.00 3.32994 -127.882 -3.32994 3.32994 1.09 0.0013209 0.00120489 0.084156 0.0771482 46 3143 36 6.99608e+06 279598 828058. 2865.25 6.11 0.505078 0.451281 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0513786 0.0460928 120 96 25 25 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.76 vpr 55.85 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30448 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 17.5 MiB 0.79 1139 12528 3436 7246 1846 56.2 MiB 0.09 0.00 3.59669 -136.453 -3.59669 3.59669 0.74 0.000478201 0.00043323 0.0350698 0.0317967 40 3651 35 6.99608e+06 294314 706193. 2443.58 5.81 0.341654 0.305533 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.30 0.17 0.29 -1 -1 0.30 0.0566059 0.0510656 106 61 64 32 60 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 12.42 vpr 56.17 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30448 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58008 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1314 14431 4781 7561 2089 56.6 MiB 0.22 0.00 3.61639 -141.899 -3.61639 3.61639 1.09 0.00132587 0.00121602 0.110256 0.101117 40 3393 43 6.99608e+06 250167 706193. 2443.58 20.56 0.740471 0.663852 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.30 0.16 0.28 -1 -1 0.30 0.0597878 0.0539029 108 65 63 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.76 vpr 55.55 MiB 0.06 6996 -1 -1 1 0.03 -1 -1 30564 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57772 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 17.5 MiB 0.97 813 11432 3614 6147 1671 56.4 MiB 0.17 0.00 3.93015 -141.517 -3.93015 3.93015 1.09 0.00124684 0.00114438 0.086312 0.0793313 48 3063 38 6.99608e+06 235451 865456. 2994.66 5.09 0.385488 0.346589 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.34 0.17 0.35 -1 -1 0.34 0.0587326 0.0529157 94 34 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.72 vpr 55.68 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30672 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.94 930 14500 5516 6956 2028 56.4 MiB 0.21 0.00 3.81585 -138.808 -3.81585 3.81585 1.08 0.00130401 0.00119614 0.110078 0.101014 44 3517 47 6.99608e+06 264882 787024. 2723.27 4.33 0.440197 0.395985 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.33 0.14 0.33 -1 -1 0.33 0.0575743 0.0519804 110 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 11.05 vpr 56.06 MiB 0.06 7296 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57788 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 18.1 MiB 1.44 1399 14035 5589 6713 1733 56.4 MiB 0.22 0.00 3.97768 -141.845 -3.97768 3.97768 1.11 0.00138125 0.00126713 0.109254 0.100099 44 3778 32 6.99608e+06 323745 787024. 2723.27 3.87 0.406637 0.364578 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0559858 0.0504197 132 122 0 0 122 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 10.01 vpr 56.21 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.9 MiB 1.13 1318 15273 5215 8174 1884 56.4 MiB 0.24 0.00 3.73195 -141.182 -3.73195 3.73195 1.09 0.00138991 0.00127386 0.119416 0.109421 40 3892 28 6.99608e+06 294314 706193. 2443.58 6.08 0.428633 0.385263 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.30 0.26 0.29 -1 -1 0.30 0.0798056 0.0716808 126 94 32 32 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.93 vpr 55.21 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30700 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 17.3 MiB 0.57 921 12528 4814 6023 1691 56.0 MiB 0.17 0.00 2.98795 -120.412 -2.98795 2.98795 1.12 0.00103956 0.000953572 0.0818745 0.0751365 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.97 0.271892 0.244388 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.33 0.11 0.33 -1 -1 0.33 0.0467548 0.0420776 80 34 63 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 8.59 vpr 55.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 17.8 MiB 0.87 1095 11776 4100 5415 2261 56.4 MiB 0.17 0.00 3.80663 -140.003 -3.80663 3.80663 1.09 0.00116145 0.00106237 0.0829914 0.0760441 46 2887 24 6.99608e+06 235451 828058. 2865.25 6.47 0.461377 0.412195 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.048829 0.0439049 108 94 0 0 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 10.37 vpr 56.22 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30868 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57960 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 18.2 MiB 0.89 1231 15273 6501 8321 451 56.6 MiB 0.25 0.00 4.57343 -162.846 -4.57343 4.57343 1.08 0.00151537 0.00139149 0.130643 0.120088 54 3744 47 6.99608e+06 294314 949917. 3286.91 7.99 0.755733 0.678759 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.37 0.21 0.41 -1 -1 0.37 0.0764211 0.0689724 126 65 96 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 9.70 vpr 56.07 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.64 1100 10916 2969 6188 1759 56.4 MiB 0.17 0.00 3.58059 -138.842 -3.58059 3.58059 1.14 0.00123678 0.00113522 0.0824364 0.0757937 40 2715 36 6.99608e+06 235451 706193. 2443.58 3.60 0.371054 0.33376 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0559143 0.050395 93 34 92 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 9.60 vpr 55.47 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30296 -1 -1 24 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 17.5 MiB 0.75 716 11804 3687 5992 2125 55.9 MiB 0.14 0.00 3.75245 -123.293 -3.75245 3.75245 1.08 0.00100318 0.000919479 0.0655237 0.06013 44 2072 24 6.99608e+06 353176 787024. 2723.27 5.38 0.384206 0.343123 27778 195446 -1 1643 19 1404 2036 156733 34754 3.38681 3.38681 -125.581 -3.38681 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0391843 0.0352479 80 34 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 13.62 vpr 56.39 MiB 0.03 7460 -1 -1 1 0.04 -1 -1 30916 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58256 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 18.6 MiB 0.92 1504 15883 5797 7858 2228 56.9 MiB 0.28 0.00 5.34997 -188.353 -5.34997 5.34997 1.11 0.00162711 0.00149377 0.137737 0.126475 48 4489 33 6.99608e+06 353176 865456. 2994.66 4.57 0.519448 0.468031 28354 207349 -1 3556 27 4154 5142 574739 139988 6.44269 6.44269 -224.607 -6.44269 0 0 1.05005e+06 3633.38 0.34 0.26 0.34 -1 -1 0.34 0.0844685 0.07608 159 127 32 32 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 9.25 vpr 55.96 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30440 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 17.5 MiB 0.72 938 15044 6550 8115 379 56.4 MiB 0.23 0.00 4.27644 -157.663 -4.27644 4.27644 0.81 0.00125476 0.00115106 0.122022 0.111893 48 2674 27 6.99608e+06 235451 865456. 2994.66 6.58 0.555158 0.498799 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.35 0.14 0.34 -1 -1 0.35 0.0545958 0.0492722 92 34 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.28 vpr 55.27 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 17.2 MiB 0.30 660 12763 5275 7138 350 55.8 MiB 0.15 0.00 2.98775 -114.509 -2.98775 2.98775 1.09 0.00100004 0.000917958 0.0681153 0.0625514 46 2129 35 6.99608e+06 353176 828058. 2865.25 18.65 0.597141 0.532343 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0468107 0.0419938 70 3 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.67 vpr 55.95 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58024 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 17.7 MiB 0.74 1143 13432 5563 7207 662 56.7 MiB 0.22 0.00 4.46895 -161.038 -4.46895 4.46895 1.10 0.0014555 0.00133685 0.114117 0.104925 46 4011 41 6.99608e+06 264882 828058. 2865.25 7.68 0.46624 0.419987 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0639506 0.0577985 112 34 128 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 8.11 vpr 55.32 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30296 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.9 MiB 0.35 625 10614 4416 5947 251 55.6 MiB 0.14 0.00 2.85145 -111.794 -2.85145 2.85145 1.13 0.00100256 0.000920622 0.0713912 0.0655599 40 2195 42 6.99608e+06 147157 706193. 2443.58 3.76 0.316194 0.283253 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.32 0.12 0.29 -1 -1 0.32 0.0447992 0.0402007 62 3 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 9.23 vpr 55.49 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30056 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 17.1 MiB 0.72 755 9857 4076 5498 283 55.6 MiB 0.13 0.00 3.30794 -118.735 -3.30794 3.30794 1.11 0.00100483 0.000921768 0.0651403 0.0598114 44 2377 21 6.99608e+06 220735 787024. 2723.27 2.97 0.281302 0.252129 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0435416 0.0390516 74 34 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 12.15 vpr 56.07 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30328 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57860 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 17.8 MiB 1.71 1003 15481 6003 6865 2613 56.5 MiB 0.22 0.00 3.85703 -126.704 -3.85703 3.85703 1.13 0.00124658 0.00114234 0.113877 0.104432 46 3294 37 6.99608e+06 294314 828058. 2865.25 4.86 0.415269 0.372947 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0584932 0.0525913 113 88 29 29 85 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.53 vpr 56.00 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30620 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 1.02 1068 14144 5407 6800 1937 56.5 MiB 0.21 0.00 4.29664 -157.784 -4.29664 4.29664 1.09 0.0013267 0.00121802 0.108824 0.099966 48 2789 28 6.99608e+06 264882 865456. 2994.66 6.66 0.552943 0.496249 28354 207349 -1 2360 21 2516 3352 291577 61875 4.53561 4.53561 -172.239 -4.53561 0 0 1.05005e+06 3633.38 0.34 0.15 0.34 -1 -1 0.34 0.0563529 0.0509667 109 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 11.99 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30600 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.7 MiB 0.83 1151 6846 1472 4993 381 56.5 MiB 0.12 0.00 4.30354 -157.84 -4.30354 4.30354 1.08 0.00131959 0.00121202 0.0546038 0.0502083 44 3666 26 6.99608e+06 264882 787024. 2723.27 3.23 0.283229 0.254667 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.34 0.17 0.32 -1 -1 0.34 0.0569675 0.0513519 110 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.03 vpr 55.67 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30524 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 17.6 MiB 0.67 792 12585 5306 6906 373 56.5 MiB 0.17 0.00 3.44424 -128.433 -3.44424 3.44424 1.08 0.00111815 0.00102471 0.0868191 0.0795222 46 2594 31 6.99608e+06 220735 828058. 2865.25 4.73 0.346702 0.310678 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.36 0.13 0.33 -1 -1 0.36 0.0501909 0.0450386 92 65 32 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.85 vpr 55.74 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30456 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 17.5 MiB 2.35 885 11260 4668 6241 351 56.3 MiB 0.15 0.00 3.46644 -123.995 -3.46644 3.46644 1.09 0.00111357 0.00101939 0.0763824 0.0699881 44 3163 36 6.99608e+06 250167 787024. 2723.27 19.18 0.582993 0.519382 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.34 0.12 0.32 -1 -1 0.34 0.0452512 0.0406548 102 90 0 0 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.96 vpr 55.78 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57908 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 17.6 MiB 1.22 904 12506 5230 6653 623 56.6 MiB 0.19 0.00 3.42074 -117.96 -3.42074 3.42074 1.08 0.00121419 0.00111346 0.100462 0.092175 44 3198 37 6.99608e+06 279598 787024. 2723.27 4.39 0.389974 0.350521 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.33 0.13 0.31 -1 -1 0.33 0.0527695 0.047621 101 60 60 30 57 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.13 vpr 55.68 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 17.2 MiB 0.67 824 9872 4064 5274 534 55.8 MiB 0.15 0.00 3.73195 -121.956 -3.73195 3.73195 1.08 0.0011094 0.00101838 0.076309 0.0701894 44 2539 27 6.99608e+06 264882 787024. 2723.27 6.18 0.503467 0.450379 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.33 0.12 0.31 -1 -1 0.33 0.0518272 0.0465847 87 34 84 28 28 28 - fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 9.61 vpr 55.75 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 17.3 MiB 1.77 814 10672 3702 5165 1805 55.8 MiB 0.14 0.00 4.51934 -148.35 -4.51934 4.51934 1.09 0.00106162 0.000972754 0.0726021 0.066594 44 2874 44 6.99608e+06 220735 787024. 2723.27 4.09 0.338652 0.302641 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.044399 0.0398231 88 63 30 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 10.34 vpr 56.03 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1000 12585 4720 5647 2218 56.5 MiB 0.18 0.00 3.77345 -134.122 -3.77345 3.77345 1.08 0.00114121 0.00104451 0.0885777 0.0810978 46 3110 45 6.99608e+06 220735 828058. 2865.25 4.48 0.373038 0.333892 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0497567 0.0446605 104 91 0 0 91 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.86 vpr 55.84 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.6 MiB 0.18 808 15688 5217 8110 2361 56.2 MiB 0.21 0.00 3.76925 -134.079 -3.76925 3.76925 1.12 0.00116532 0.00107085 0.0965693 0.0887259 46 3039 46 6.99608e+06 367892 828058. 2865.25 6.02 0.40061 0.360064 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.29 0.07 0.17 -1 -1 0.29 0.0212761 0.0190044 86 4 124 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.46 vpr 56.08 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30728 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57972 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 17.8 MiB 0.69 1209 11281 3120 7720 441 56.6 MiB 0.18 0.00 4.19534 -154.628 -4.19534 4.19534 1.09 0.00131433 0.00120653 0.0884265 0.0811596 44 3513 23 6.99608e+06 250167 787024. 2723.27 3.90 0.353964 0.318661 27778 195446 -1 2754 24 2419 3189 274672 55034 4.82351 4.82351 -173.98 -4.82351 0 0 997811. 3452.63 0.34 0.16 0.32 -1 -1 0.34 0.0613436 0.0553035 110 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 12.90 vpr 56.00 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 17.8 MiB 0.65 1142 12364 5175 6807 382 56.7 MiB 0.19 0.00 5.12678 -171.348 -5.12678 5.12678 1.10 0.00131725 0.00120362 0.0950269 0.0871336 54 3283 29 6.99608e+06 264882 949917. 3286.91 5.41 0.473326 0.424988 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.38 0.15 0.42 -1 -1 0.38 0.0539089 0.0487243 108 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.81 vpr 56.07 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30396 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 17.8 MiB 0.68 1089 13788 4649 7550 1589 56.6 MiB 0.22 0.00 4.15408 -148.064 -4.15408 4.15408 1.11 0.00129245 0.00118469 0.104224 0.0955964 44 3953 47 6.99608e+06 264882 787024. 2723.27 30.00 0.71597 0.640939 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.33 0.15 0.31 -1 -1 0.33 0.0545575 0.049231 107 65 60 30 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.42 vpr 55.51 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30528 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 17.3 MiB 0.77 692 12241 5462 6300 479 55.8 MiB 0.15 0.00 3.58339 -124.571 -3.58339 3.58339 1.09 0.00101181 0.000928751 0.0811137 0.0744342 48 2391 37 6.99608e+06 191304 865456. 2994.66 6.51 0.444323 0.396368 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.39 0.12 0.34 -1 -1 0.39 0.0405935 0.0364534 76 34 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.94 vpr 55.98 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 17.7 MiB 2.28 1070 13152 5486 7187 479 56.4 MiB 0.20 0.00 4.68713 -157.481 -4.68713 4.68713 1.11 0.00124908 0.00114657 0.0994205 0.0912977 46 3476 35 6.99608e+06 264882 828058. 2865.25 4.68 0.396501 0.356379 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.33 0.15 0.33 -1 -1 0.33 0.0504418 0.0455439 105 63 60 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 10.06 vpr 55.89 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30916 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57876 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.0 MiB 0.77 1372 11615 4190 5568 1857 56.5 MiB 0.18 0.00 4.17744 -155.5 -4.17744 4.17744 1.10 0.00143088 0.00131256 0.0915556 0.0839811 46 3391 25 6.99608e+06 323745 828058. 2865.25 4.33 0.406355 0.364614 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.33 0.14 0.36 -1 -1 0.33 0.0665943 0.0598407 139 127 0 0 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 12.96 vpr 55.93 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57664 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 17.7 MiB 1.44 1101 12733 5285 6817 631 56.3 MiB 0.18 0.00 4.35899 -150.667 -4.35899 4.35899 1.10 0.00132659 0.00121539 0.0948747 0.0869667 54 2946 36 6.99608e+06 323745 949917. 3286.91 7.38 0.637945 0.571876 29506 232905 -1 2087 21 2106 2410 180381 43349 4.43961 4.43961 -155.342 -4.43961 0 0 1.17392e+06 4061.99 0.38 0.12 0.40 -1 -1 0.38 0.0560547 0.0505797 125 94 31 31 93 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 12.87 vpr 56.23 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30484 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 17.8 MiB 2.64 1072 15456 6595 7994 867 56.5 MiB 0.22 0.00 4.1343 -135.415 -4.1343 4.1343 1.09 0.00126838 0.00116219 0.111079 0.101794 48 3698 50 6.99608e+06 323745 865456. 2994.66 7.07 0.447566 0.401982 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.37 0.19 0.34 -1 -1 0.37 0.0559297 0.0503455 114 92 26 26 90 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 10.22 vpr 55.96 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30624 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57852 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.8 MiB 1.02 1174 14500 5592 7226 1682 56.5 MiB 0.22 0.00 4.33244 -160.384 -4.33244 4.33244 1.10 0.00133302 0.00122438 0.111233 0.102043 46 3851 34 6.99608e+06 264882 828058. 2865.25 3.39 0.363667 0.327685 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.35 0.18 0.33 -1 -1 0.35 0.0576232 0.0520209 110 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.64 vpr 56.28 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30360 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57940 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 17.8 MiB 1.69 1070 11106 4662 5983 461 56.6 MiB 0.17 0.00 3.53179 -119.754 -3.53179 3.53179 1.09 0.00122326 0.00112113 0.0816893 0.0749196 38 3405 45 6.99608e+06 294314 678818. 2348.85 8.11 0.39088 0.350384 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.31 0.16 0.27 -1 -1 0.31 0.0561256 0.0505238 112 88 26 26 85 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.77 vpr 55.43 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 17.0 MiB 0.64 592 9684 3186 4658 1840 55.6 MiB 0.12 0.00 2.86245 -110.719 -2.86245 2.86245 1.08 0.00100016 0.000917325 0.0650541 0.0597612 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.80 0.288409 0.258378 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.31 0.12 0.30 -1 -1 0.31 0.0450758 0.0404158 62 3 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 10.75 vpr 56.19 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.8 MiB 0.69 999 9872 3990 5501 381 56.5 MiB 0.15 0.00 4.9054 -173.166 -4.9054 4.9054 1.09 0.00131522 0.00120579 0.0767015 0.0704061 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 3.55 0.356097 0.319714 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.42 0.15 0.46 -1 -1 0.42 0.0622881 0.0561889 110 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 11.85 vpr 56.06 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 17.6 MiB 0.90 1203 7431 1958 4126 1347 56.4 MiB 0.12 0.00 4.63877 -167.295 -4.63877 4.63877 1.09 0.00131692 0.00120715 0.059911 0.0550389 44 3706 30 6.99608e+06 250167 787024. 2723.27 3.70 0.31488 0.283153 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.34 0.17 0.25 -1 -1 0.34 0.0600825 0.0541473 111 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.44 vpr 55.61 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 17.4 MiB 1.92 766 11324 4293 5664 1367 55.9 MiB 0.15 0.00 3.24452 -112.954 -3.24452 3.24452 1.09 0.00104213 0.000955185 0.0759857 0.0697207 52 2311 46 6.99608e+06 191304 926341. 3205.33 3.14 0.294294 0.263557 29218 227130 -1 1681 29 1656 1972 307039 128679 3.27646 3.27646 -116.799 -3.27646 0 0 1.14541e+06 3963.36 0.40 0.18 0.35 -1 -1 0.40 0.0562104 0.0502841 85 55 32 32 54 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.33 vpr 55.43 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30380 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 0.27 592 7514 3020 4270 224 55.4 MiB 0.10 0.00 3.0031 -111.146 -3.0031 3.0031 1.09 0.000972276 0.000891852 0.0502228 0.0461683 44 2109 28 6.99608e+06 161872 787024. 2723.27 5.59 0.380504 0.338464 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0440716 0.0395247 63 4 93 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.97 vpr 55.77 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 17.5 MiB 0.92 1014 12331 5131 6918 282 56.3 MiB 0.17 0.00 4.03648 -138.539 -4.03648 4.03648 1.09 0.00124537 0.00114292 0.0910826 0.0835815 40 2840 45 6.99608e+06 250167 706193. 2443.58 16.30 0.670272 0.599559 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.30 0.23 0.29 -1 -1 0.30 0.0728882 0.0655127 102 59 60 32 58 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 10.26 vpr 56.09 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 17.5 MiB 1.35 1077 13043 5447 7262 334 56.3 MiB 0.19 0.00 4.38874 -150.527 -4.38874 4.38874 1.08 0.00128167 0.00117433 0.096665 0.0885951 48 2878 41 6.99608e+06 279598 865456. 2994.66 3.85 0.411309 0.368999 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.39 0.22 0.36 -1 -1 0.39 0.0733195 0.0658584 115 88 28 28 88 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.71 vpr 55.93 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30520 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57712 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.7 MiB 0.41 981 8047 1739 5489 819 56.4 MiB 0.13 0.00 4.28063 -149.977 -4.28063 4.28063 1.09 0.00136992 0.00125958 0.057814 0.0531722 48 3128 28 6.99608e+06 397324 865456. 2994.66 6.93 0.523267 0.470595 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.36 0.18 0.34 -1 -1 0.36 0.0600127 0.0539861 100 3 156 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 8.43 vpr 55.66 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57892 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 17.6 MiB 0.98 884 14431 6074 7798 559 56.5 MiB 0.20 0.00 3.66815 -119.86 -3.66815 3.66815 1.09 0.00120224 0.00110295 0.102723 0.094263 40 3422 29 6.99608e+06 279598 706193. 2443.58 19.39 0.675763 0.604857 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.30 0.15 0.29 -1 -1 0.30 0.0529506 0.0477304 101 59 60 30 56 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 8.93 vpr 55.25 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30596 -1 -1 16 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 17.0 MiB 1.25 589 11925 5033 6263 629 55.6 MiB 0.15 0.00 3.68305 -110.555 -3.68305 3.68305 1.09 0.000895784 0.000827925 0.0753146 0.0689761 40 1692 28 6.99608e+06 235451 706193. 2443.58 5.49 0.387982 0.345639 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.30 0.09 0.28 -1 -1 0.30 0.0354722 0.0317432 67 34 54 27 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 13.92 vpr 56.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 18.1 MiB 0.85 1512 15151 5383 7381 2387 56.6 MiB 0.27 0.00 4.46404 -157.207 -4.46404 4.46404 1.09 0.00156463 0.0014367 0.132123 0.121326 54 3932 27 6.99608e+06 309029 949917. 3286.91 4.53 0.480224 0.432708 29506 232905 -1 3228 23 2653 3708 434053 80854 4.60891 4.60891 -163.196 -4.60891 0 0 1.17392e+06 4061.99 0.37 0.20 0.39 -1 -1 0.37 0.0705774 0.0636551 141 95 62 31 95 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 11.72 vpr 56.09 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 17.8 MiB 2.49 1389 9013 2681 4820 1512 56.3 MiB 0.15 0.00 4.97674 -167.764 -4.97674 4.97674 1.11 0.00139692 0.00128051 0.073319 0.0673562 42 3808 25 6.99608e+06 323745 744469. 2576.02 22.70 0.702382 0.626776 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.32 0.17 0.30 -1 -1 0.32 0.0617448 0.0556171 138 124 0 0 124 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.98 vpr 55.81 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30408 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 17.3 MiB 2.78 1031 11233 4729 6294 210 56.1 MiB 0.16 0.00 3.87693 -140.03 -3.87693 3.87693 1.08 0.0011251 0.00103005 0.0784349 0.0718619 46 3029 25 6.99608e+06 220735 828058. 2865.25 3.68 0.322219 0.288467 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0474342 0.042602 102 89 0 0 89 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.85 vpr 55.77 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30316 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57548 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 17.3 MiB 0.95 1034 14184 5996 7912 276 56.2 MiB 0.20 0.00 3.78975 -136.67 -3.78975 3.78975 1.09 0.00123141 0.0011307 0.10432 0.0958127 46 3037 39 6.99608e+06 235451 828058. 2865.25 6.50 0.540444 0.484988 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0551747 0.0497356 92 34 90 30 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.65 vpr 56.35 MiB 0.05 7216 -1 -1 1 0.04 -1 -1 30664 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57988 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 17.7 MiB 1.56 1068 13943 4857 7191 1895 56.6 MiB 0.22 0.00 3.9689 -135.877 -3.9689 3.9689 1.11 0.00145629 0.00133459 0.115502 0.106086 44 3217 23 6.99608e+06 294314 787024. 2723.27 5.72 0.477594 0.428077 27778 195446 -1 2448 21 2374 3214 252324 52621 3.92082 3.92082 -146.029 -3.92082 0 0 997811. 3452.63 0.34 0.08 0.32 -1 -1 0.34 0.0316143 0.0283813 117 64 87 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 9.07 vpr 55.92 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30436 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57808 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 17.6 MiB 1.12 1088 13788 5313 5928 2547 56.5 MiB 0.19 0.00 3.56069 -123.887 -3.56069 3.56069 1.09 0.00120931 0.00110905 0.0968444 0.0888445 36 3765 43 6.99608e+06 294314 648988. 2245.63 10.33 0.397195 0.356311 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.28 0.17 0.25 -1 -1 0.28 0.0568075 0.0511266 101 61 58 30 58 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 9.86 vpr 55.88 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30664 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.6 MiB 0.68 1034 13906 5203 6656 2047 56.3 MiB 0.22 0.00 4.17744 -150.809 -4.17744 4.17744 1.10 0.00131173 0.0012033 0.108543 0.0996265 46 3490 34 6.99608e+06 250167 828058. 2865.25 6.53 0.42099 0.378431 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.33 0.13 0.32 -1 -1 0.33 0.0532231 0.048072 107 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 12.68 vpr 56.23 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57968 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 17.7 MiB 0.78 1295 11830 3708 6867 1255 56.6 MiB 0.19 0.00 3.61179 -138.351 -3.61179 3.61179 1.09 0.00131497 0.00119858 0.0908284 0.0829396 44 3300 26 6.99608e+06 264882 787024. 2723.27 3.75 0.382391 0.343675 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0534193 0.0482926 108 65 63 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.71 vpr 55.50 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 17.0 MiB 1.10 714 7817 3113 4376 328 55.7 MiB 0.10 0.00 3.29694 -113.946 -3.29694 3.29694 1.08 0.000974812 0.000894743 0.0508927 0.0467315 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.19 0.237151 0.212087 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0410487 0.0368481 73 34 58 29 29 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.56 vpr 55.88 MiB 0.06 6944 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 17.4 MiB 2.38 796 13192 4518 6301 2373 56.1 MiB 0.17 0.00 3.75163 -124.237 -3.75163 3.75163 1.09 0.00106486 0.000974075 0.088051 0.0806093 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.96 0.298667 0.267226 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.35 0.13 0.34 -1 -1 0.35 0.0491895 0.0441805 91 82 0 0 82 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 9.61 vpr 55.55 MiB 0.06 6956 -1 -1 1 0.04 -1 -1 30476 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 17.4 MiB 0.63 1104 8164 1792 5984 388 56.3 MiB 0.13 0.00 3.79614 -138.31 -3.79614 3.79614 1.13 0.00126084 0.00116182 0.0634551 0.0585239 38 3147 50 6.99608e+06 250167 678818. 2348.85 5.53 0.367907 0.330352 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.30 0.14 0.27 -1 -1 0.30 0.0572325 0.0515628 92 34 93 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 8.08 vpr 55.55 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 17.1 MiB 1.54 924 11813 4851 6237 725 55.7 MiB 0.15 0.00 3.23604 -112.025 -3.23604 3.23604 1.14 0.000969957 0.000887119 0.0732954 0.0671676 38 2436 26 6.99608e+06 235451 678818. 2348.85 3.79 0.273534 0.244306 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0458066 0.0409725 81 56 29 29 52 26 - fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 8.78 vpr 55.50 MiB 0.05 6832 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 17.4 MiB 0.71 800 12628 5339 6973 316 56.0 MiB 0.16 0.00 3.56959 -131.903 -3.56959 3.56959 1.08 0.00106811 0.000980425 0.0856997 0.0786217 44 2487 30 6.99608e+06 191304 787024. 2723.27 3.48 0.323283 0.289865 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0374563 0.033755 79 34 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 8.65 vpr 55.95 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30580 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57948 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 17.6 MiB 1.20 964 11296 3574 5293 2429 56.6 MiB 0.17 0.00 4.06828 -143.162 -4.06828 4.06828 1.09 0.00126817 0.00116073 0.0840498 0.0770325 40 3214 32 6.99608e+06 279598 706193. 2443.58 4.83 0.372558 0.334568 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.30 0.15 0.28 -1 -1 0.30 0.055115 0.0497059 105 64 58 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.68 vpr 55.47 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30448 -1 -1 13 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 2.24 694 11756 4613 5996 1147 55.7 MiB 0.15 0.00 3.23724 -109.795 -3.23724 3.23724 1.11 0.00102562 0.000939892 0.0782487 0.0716974 48 2270 42 6.99608e+06 191304 865456. 2994.66 4.09 0.330206 0.29531 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.34 0.10 0.34 -1 -1 0.34 0.0421999 0.0378294 81 55 31 31 53 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.12 vpr 56.08 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 17.7 MiB 1.53 911 15034 6476 7971 587 56.6 MiB 0.20 0.00 3.61105 -126.923 -3.61105 3.61105 1.08 0.0012541 0.00115098 0.108868 0.0999116 52 2649 36 6.99608e+06 264882 926341. 3205.33 19.31 0.662975 0.593472 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.37 0.13 0.39 -1 -1 0.37 0.0530494 0.0478806 103 65 52 26 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 12.63 vpr 56.36 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 17.9 MiB 0.89 1135 16081 6006 7648 2427 56.4 MiB 0.12 0.00 4.67827 -157.924 -4.67827 4.67827 1.09 0.000504862 0.000457017 0.0462976 0.0419877 44 3513 45 6.99608e+06 323745 787024. 2723.27 4.33 0.345067 0.308621 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.33 0.14 0.35 -1 -1 0.33 0.0568765 0.0517319 123 93 31 31 92 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 11.01 vpr 55.96 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 17.5 MiB 2.45 1185 10050 2506 6241 1303 56.3 MiB 0.13 0.00 3.59004 -135.268 -3.59004 3.59004 1.09 0.00108283 0.000992064 0.067544 0.0619543 38 3007 50 6.99608e+06 220735 678818. 2348.85 16.21 0.531274 0.473341 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0438396 0.0394054 88 61 32 32 60 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.84 vpr 55.55 MiB 0.06 6864 -1 -1 1 0.03 -1 -1 30120 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 17.5 MiB 0.72 844 13856 5698 7170 988 56.0 MiB 0.18 0.00 3.30794 -123.058 -3.30794 3.30794 1.08 0.00110124 0.00100834 0.0952684 0.087315 46 2571 29 6.99608e+06 206020 828058. 2865.25 6.34 0.447426 0.400056 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.049885 0.044756 91 63 32 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.42 vpr 55.48 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30720 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57736 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.6 MiB 0.91 1239 11118 3579 5407 2132 56.4 MiB 0.17 0.00 3.81515 -143.501 -3.81515 3.81515 1.11 0.00130439 0.00119748 0.0853355 0.0783935 46 2851 29 6.99608e+06 264882 828058. 2865.25 6.24 0.550503 0.493564 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.33 0.12 0.33 -1 -1 0.33 0.0566725 0.0511179 110 65 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.85 vpr 55.98 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 17.4 MiB 1.52 913 9160 3758 4976 426 56.4 MiB 0.14 0.00 3.41124 -117.262 -3.41124 3.41124 1.09 0.00119741 0.00109744 0.0655974 0.0602333 38 3163 50 6.99608e+06 309029 678818. 2348.85 6.72 0.380948 0.341376 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.0520233 0.0467929 101 62 56 29 58 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 13.15 vpr 56.34 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57980 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 18.2 MiB 0.78 1399 13316 4006 7788 1522 56.6 MiB 0.22 0.00 4.54237 -164.626 -4.54237 4.54237 1.09 0.00144941 0.0013279 0.106215 0.0973627 38 4423 46 6.99608e+06 323745 678818. 2348.85 4.02 0.419894 0.376876 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0626403 0.0564506 140 127 0 0 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.64 vpr 55.46 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 11 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 17.1 MiB 0.89 486 10149 3821 5138 1190 55.6 MiB 0.12 0.00 2.81885 -95.7056 -2.81885 2.81885 1.09 0.000921198 0.000844854 0.0636403 0.0584464 48 1604 38 6.99608e+06 161872 865456. 2994.66 12.73 0.483724 0.429932 28354 207349 -1 1346 20 1093 1651 144110 34639 3.02157 3.02157 -111.693 -3.02157 0 0 1.05005e+06 3633.38 0.36 0.09 0.34 -1 -1 0.36 0.0372911 0.0334475 57 4 85 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 10.08 vpr 56.43 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 17.7 MiB 2.59 1299 14303 5218 6688 2397 56.2 MiB 0.21 0.00 4.76923 -166.635 -4.76923 4.76923 1.11 0.0013275 0.00121754 0.109685 0.100627 46 3535 24 6.99608e+06 279598 828058. 2865.25 6.32 0.569835 0.511168 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0538762 0.0486808 118 92 28 28 92 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 10.74 vpr 56.22 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.9 MiB 0.90 1244 15216 5143 8703 1370 56.6 MiB 0.24 0.00 4.66407 -173.875 -4.66407 4.66407 1.11 0.00119444 0.00109347 0.117626 0.107891 44 3377 41 6.99608e+06 235451 787024. 2723.27 3.47 0.34527 0.310512 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0536323 0.0481815 110 96 0 0 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 10.02 vpr 55.92 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30384 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57924 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 17.8 MiB 0.81 1129 13403 5326 6238 1839 56.6 MiB 0.20 0.00 3.33684 -128.417 -3.33684 3.33684 1.10 0.00130031 0.0011926 0.100638 0.0923657 38 3758 46 6.99608e+06 279598 678818. 2348.85 19.47 0.722978 0.647976 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.30 0.27 0.28 -1 -1 0.30 0.0822478 0.0738117 106 65 61 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 11.51 vpr 56.23 MiB 0.05 7272 -1 -1 1 0.04 -1 -1 30780 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 18.1 MiB 0.73 1500 14261 4373 7976 1912 56.6 MiB 0.23 0.00 4.89654 -177.942 -4.89654 4.89654 1.09 0.00157061 0.00144169 0.123023 0.112988 44 4144 38 6.99608e+06 323745 787024. 2723.27 6.14 0.688876 0.618846 27778 195446 -1 3101 23 2911 3336 281290 56419 5.48635 5.48635 -193.082 -5.48635 0 0 997811. 3452.63 0.33 0.17 0.32 -1 -1 0.33 0.0718545 0.0648849 140 96 64 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.73 vpr 55.17 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30120 -1 -1 13 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 16.9 MiB 1.95 577 8449 3482 4728 239 55.5 MiB 0.09 0.00 2.75275 -95.2487 -2.75275 2.75275 1.08 0.000820825 0.000750605 0.0459407 0.0420302 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.45 0.224324 0.198957 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.29 0.08 0.25 -1 -1 0.29 0.034375 0.0306165 65 56 0 0 53 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.42 vpr 55.72 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 17.0 MiB 2.87 870 9516 3877 5353 286 55.8 MiB 0.12 0.00 3.41559 -121.499 -3.41559 3.41559 1.09 0.00101691 0.000932178 0.0649211 0.0596276 34 2262 25 6.99608e+06 206020 618332. 2139.56 3.04 0.284882 0.254656 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0355179 0.0319476 72 34 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 8.79 vpr 55.56 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30100 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 17.1 MiB 0.30 764 10316 3722 4683 1911 55.8 MiB 0.15 0.00 3.37904 -128.379 -3.37904 3.37904 1.10 0.00107167 0.000982807 0.0745767 0.0683008 44 3301 35 6.99608e+06 176588 787024. 2723.27 4.92 0.327754 0.293414 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0476313 0.0427693 80 34 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 8.28 vpr 55.16 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 16.8 MiB 0.68 497 10819 4307 4933 1579 55.4 MiB 0.12 0.00 3.31386 -89.9377 -3.31386 3.31386 1.09 0.000861816 0.000790982 0.061479 0.0564812 38 1712 31 6.99608e+06 264882 678818. 2348.85 5.06 0.339258 0.301953 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0377031 0.0337203 68 34 50 25 25 25 - fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.56 vpr 56.21 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.7 MiB 0.99 1423 14358 4574 7658 2126 56.3 MiB 0.22 0.00 3.77875 -143.667 -3.77875 3.77875 1.09 0.0013508 0.00123873 0.110126 0.101021 46 3969 25 6.99608e+06 294314 828058. 2865.25 4.90 0.413955 0.371989 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.34 0.17 0.33 -1 -1 0.34 0.056049 0.0505443 125 94 32 32 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 10.88 vpr 56.50 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30352 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57932 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 17.8 MiB 0.94 1182 13663 4698 6384 2581 56.6 MiB 0.21 0.00 4.16978 -143.827 -4.16978 4.16978 1.08 0.00132256 0.00121189 0.10241 0.0939363 40 3516 38 6.99608e+06 323745 706193. 2443.58 4.41 0.421469 0.379033 26914 176310 -1 2935 22 2946 3843 357357 76076 4.3072 4.3072 -160.219 -4.3072 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0584809 0.0527307 121 94 29 29 93 31 - fixed_k6_frac_N8_22nm.xml mult_001.v common 13.53 vpr 55.61 MiB 0.05 6824 -1 -1 14 0.26 -1 -1 32880 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 17.1 MiB 1.93 1265 9263 2276 5364 1623 55.8 MiB 0.16 0.00 8.4853 -170.751 -8.4853 8.4853 1.06 0.00159218 0.00144876 0.0885916 0.0810983 44 3187 47 6.79088e+06 255968 787024. 2723.27 3.97 0.427778 0.38536 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.33 0.24 0.32 -1 -1 0.33 0.0869215 0.0785367 134 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_002.v common 11.39 vpr 55.69 MiB 0.05 6800 -1 -1 14 0.28 -1 -1 32744 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1228 8270 2008 5297 965 55.7 MiB 0.14 0.00 7.98833 -161.421 -7.98833 7.98833 1.09 0.00156715 0.00143783 0.0779809 0.0715855 38 3303 16 6.79088e+06 269440 678818. 2348.85 4.78 0.40701 0.366143 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.054866 0.0498565 132 189 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_003.v common 13.40 vpr 55.68 MiB 0.05 6876 -1 -1 11 0.21 -1 -1 32760 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 1.65 1125 11613 3520 5862 2231 55.9 MiB 0.19 0.00 7.03202 -141.666 -7.03202 7.03202 1.08 0.00155124 0.00142139 0.103011 0.0944246 38 3591 44 6.79088e+06 269440 678818. 2348.85 7.33 0.502122 0.451545 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0493531 0.044854 138 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_004.v common 10.60 vpr 55.38 MiB 0.02 6704 -1 -1 12 0.33 -1 -1 32784 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 17.2 MiB 1.39 1021 7643 1879 4700 1064 55.8 MiB 0.12 0.00 7.24011 -138.658 -7.24011 7.24011 1.12 0.00107108 0.000965395 0.0556292 0.0505647 38 2805 20 6.79088e+06 296384 678818. 2348.85 5.51 0.568335 0.508986 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0572676 0.0519541 136 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_005.v common 9.51 vpr 55.77 MiB 0.05 6656 -1 -1 13 0.31 -1 -1 33072 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 17.3 MiB 2.02 1463 12568 3276 7023 2269 55.9 MiB 0.22 0.00 8.02445 -169.708 -8.02445 8.02445 1.09 0.00182868 0.00167632 0.12334 0.113098 46 3660 20 6.79088e+06 323328 828058. 2865.25 5.80 0.696166 0.627516 27406 200422 -1 2903 15 1384 3728 182895 41588 7.21431 7.21431 -161.115 -7.21431 0 0 1.01997e+06 3529.29 0.33 0.12 0.32 -1 -1 0.33 0.0604389 0.0550799 160 223 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_006.v common 11.02 vpr 55.64 MiB 0.06 6672 -1 -1 12 0.27 -1 -1 32736 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 17.4 MiB 2.23 1344 4768 918 3685 165 56.0 MiB 0.09 0.00 7.61832 -163.245 -7.61832 7.61832 1.08 0.0016823 0.00154207 0.0464961 0.0427257 44 3529 23 6.79088e+06 323328 787024. 2723.27 3.41 0.314195 0.282714 27118 194962 -1 2985 17 1359 4066 236003 51425 6.72076 6.72076 -157.449 -6.72076 0 0 997811. 3452.63 0.33 0.14 0.31 -1 -1 0.33 0.0613868 0.0557602 150 205 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_007.v common 9.09 vpr 55.06 MiB 0.05 6552 -1 -1 12 0.18 -1 -1 32292 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 16.6 MiB 1.37 1000 7177 1656 4753 768 55.2 MiB 0.10 0.00 7.28149 -137.47 -7.28149 7.28149 1.13 0.0011978 0.0010983 0.0546217 0.0501608 36 2895 37 6.79088e+06 269440 648988. 2245.63 2.73 0.272468 0.245207 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0428948 0.0388204 101 131 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_008.v common 9.79 vpr 55.39 MiB 0.04 6792 -1 -1 11 0.18 -1 -1 32856 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 1.39 1129 9531 2421 6090 1020 55.5 MiB 0.15 0.00 6.82017 -140.384 -6.82017 6.82017 1.09 0.00147135 0.00133821 0.084373 0.0771799 38 3033 23 6.79088e+06 242496 678818. 2348.85 6.04 0.565103 0.506614 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0509133 0.0461715 118 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_009.v common 11.06 vpr 55.22 MiB 0.05 6704 -1 -1 12 0.17 -1 -1 32652 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 17.0 MiB 2.34 1115 11631 3187 7135 1309 55.5 MiB 0.16 0.00 6.73244 -139.285 -6.73244 6.73244 1.09 0.00128831 0.00117934 0.089563 0.0820481 36 2986 40 6.79088e+06 242496 648988. 2245.63 5.47 0.411578 0.369725 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0449253 0.0407504 111 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_010.v common 11.37 vpr 55.32 MiB 0.04 6536 -1 -1 13 0.19 -1 -1 32816 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1011 5412 1090 4064 258 55.4 MiB 0.09 0.00 7.30367 -163.797 -7.30367 7.30367 1.16 0.00139971 0.00128367 0.0483172 0.0443574 34 3575 46 6.79088e+06 215552 618332. 2139.56 14.26 0.590801 0.528122 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.050573 0.0457909 107 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_011.v common 7.29 vpr 55.21 MiB 0.04 6680 -1 -1 12 0.17 -1 -1 32780 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 16.7 MiB 1.35 838 6386 1352 4871 163 55.3 MiB 0.09 0.00 7.31171 -145.298 -7.31171 7.31171 1.11 0.00119109 0.00109041 0.0492951 0.045177 38 2306 22 6.79088e+06 215552 678818. 2348.85 5.12 0.372214 0.333394 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0376856 0.0341939 93 129 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_012.v common 11.76 vpr 55.24 MiB 0.06 6784 -1 -1 12 0.14 -1 -1 32864 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 16.6 MiB 1.81 1055 4560 1014 3240 306 55.2 MiB 0.08 0.00 6.46989 -155.558 -6.46989 6.46989 1.09 0.00121383 0.00111103 0.0368792 0.0337846 40 2500 20 6.79088e+06 188608 706193. 2443.58 15.26 0.539308 0.481678 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.30 0.11 0.28 -1 -1 0.30 0.0461453 0.0417325 94 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_013.v common 9.02 vpr 55.52 MiB 0.05 6760 -1 -1 13 0.26 -1 -1 32896 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 17.2 MiB 1.44 1239 11431 3102 6258 2071 55.7 MiB 0.20 0.00 7.91359 -165.523 -7.91359 7.91359 1.08 0.0017309 0.00158605 0.112432 0.103108 36 3864 39 6.79088e+06 282912 648988. 2245.63 24.13 0.791113 0.710257 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0720657 0.0653878 148 212 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_014.v common 11.24 vpr 55.70 MiB 0.05 6752 -1 -1 14 0.31 -1 -1 33088 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1366 11245 3016 6173 2056 55.9 MiB 0.20 0.00 9.12295 -182.881 -9.12295 9.12295 1.08 0.00173002 0.00158414 0.1101 0.100858 40 3379 26 6.79088e+06 282912 706193. 2443.58 3.64 0.497332 0.448111 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.30 0.27 0.28 -1 -1 0.30 0.0906031 0.0819358 149 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_015.v common 10.94 vpr 55.35 MiB 0.05 6596 -1 -1 11 0.17 -1 -1 32556 -1 -1 20 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 16.8 MiB 1.42 857 12681 3929 6469 2283 55.5 MiB 0.17 0.00 6.92892 -133.02 -6.92892 6.92892 1.09 0.00128857 0.00117927 0.0973478 0.0891997 44 2366 27 6.79088e+06 269440 787024. 2723.27 2.63 0.318867 0.287235 27118 194962 -1 1895 17 1033 2535 134756 31487 5.95428 5.95428 -123.689 -5.95428 0 0 997811. 3452.63 0.33 0.10 0.31 -1 -1 0.33 0.0468221 0.0424391 111 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_016.v common 10.52 vpr 55.70 MiB 0.05 6764 -1 -1 12 0.27 -1 -1 32876 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 17.4 MiB 2.36 1420 13992 4103 7703 2186 56.2 MiB 0.25 0.00 7.6046 -160.271 -7.6046 7.6046 1.10 0.00174978 0.00160541 0.139625 0.127973 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.62 0.458507 0.413407 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0792836 0.0717498 146 212 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_017.v common 13.10 vpr 55.60 MiB 0.04 6768 -1 -1 13 0.26 -1 -1 32684 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 17.5 MiB 1.47 1236 10687 3174 5565 1948 56.2 MiB 0.19 0.00 8.28661 -168.45 -8.28661 8.28661 1.09 0.00170522 0.00155667 0.106552 0.0976191 44 3216 47 6.79088e+06 282912 787024. 2723.27 6.52 0.76384 0.686402 27118 194962 -1 2637 18 1231 3745 198363 45004 7.17085 7.17085 -157.888 -7.17085 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.082128 0.0745819 144 217 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_018.v common 10.66 vpr 55.25 MiB 0.04 6580 -1 -1 12 0.15 -1 -1 32504 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 16.5 MiB 1.88 945 7992 1779 4650 1563 55.3 MiB 0.12 0.00 6.70943 -154.61 -6.70943 6.70943 1.09 0.00128287 0.0011735 0.0635709 0.0582129 36 2644 29 6.79088e+06 215552 648988. 2245.63 3.16 0.359209 0.32278 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0409593 0.03724 104 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_019.v common 8.09 vpr 54.79 MiB 0.04 6432 -1 -1 10 0.10 -1 -1 32088 -1 -1 12 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 16.4 MiB 2.45 878 7049 1926 4350 773 54.8 MiB 0.09 0.00 5.18321 -124.627 -5.18321 5.18321 1.09 0.000923085 0.000845274 0.0447416 0.0409876 38 2075 46 6.79088e+06 161664 678818. 2348.85 5.79 0.393047 0.349446 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.29 0.07 0.27 -1 -1 0.29 0.0299975 0.0270007 67 88 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_020.v common 9.83 vpr 55.04 MiB 0.05 6644 -1 -1 13 0.16 -1 -1 32708 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 17.0 MiB 1.82 974 6332 1469 4570 293 55.5 MiB 0.10 0.00 7.59608 -163.359 -7.59608 7.59608 1.09 0.00125023 0.00114428 0.0518902 0.0475006 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.93 0.313184 0.281007 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0416725 0.0377831 99 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_021.v common 16.57 vpr 55.68 MiB 0.05 6740 -1 -1 13 0.28 -1 -1 32752 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57180 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 17.4 MiB 1.17 1254 12371 3408 7445 1518 55.8 MiB 0.20 0.00 7.46133 -157.73 -7.46133 7.46133 1.10 0.00170288 0.00156167 0.115983 0.106197 38 3224 45 6.79088e+06 296384 678818. 2348.85 18.44 0.828961 0.744701 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0645444 0.058576 143 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_022.v common 13.19 vpr 55.84 MiB 0.05 6828 -1 -1 13 0.29 -1 -1 33176 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 17.2 MiB 1.88 1425 10883 2960 6054 1869 56.0 MiB 0.18 0.00 8.13867 -171.504 -8.13867 8.13867 1.13 0.00167609 0.00153539 0.103648 0.0951004 44 3504 27 6.79088e+06 255968 787024. 2723.27 6.70 0.64191 0.577516 27118 194962 -1 2782 17 1335 3719 207746 45749 7.06211 7.06211 -160.813 -7.06211 0 0 997811. 3452.63 0.33 0.15 0.32 -1 -1 0.33 0.0677973 0.0614807 141 205 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_023.v common 7.05 vpr 54.76 MiB 0.04 6492 -1 -1 9 0.09 -1 -1 32140 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 16.1 MiB 1.51 588 10149 2859 5591 1699 54.7 MiB 0.10 0.00 4.97273 -93.6629 -4.97273 4.97273 1.09 0.000788594 0.000722745 0.0544685 0.0499623 30 1736 26 6.79088e+06 215552 556674. 1926.21 1.30 0.153057 0.13716 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.24 0.06 0.22 -1 -1 0.24 0.0267761 0.0239965 64 73 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_024.v common 10.53 vpr 55.59 MiB 0.04 6704 -1 -1 13 0.30 -1 -1 32696 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 17.2 MiB 2.10 1289 7268 1575 5261 432 55.9 MiB 0.13 0.00 8.3813 -168.316 -8.3813 8.3813 1.08 0.00169311 0.00155139 0.070197 0.0643322 38 3745 37 6.79088e+06 296384 678818. 2348.85 4.27 0.350962 0.314607 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.30 0.15 0.27 -1 -1 0.30 0.0758249 0.0686973 137 210 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_025.v common 7.93 vpr 54.60 MiB 0.04 6396 -1 -1 8 0.09 -1 -1 31068 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 16.1 MiB 2.32 737 11631 4246 5219 2166 54.7 MiB 0.11 0.00 4.77835 -104.906 -4.77835 4.77835 1.08 0.000800262 0.000731575 0.0554518 0.0507218 30 1930 29 6.79088e+06 229024 556674. 1926.21 1.45 0.165342 0.147786 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0299797 0.0268311 64 61 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_026.v common 16.57 vpr 55.48 MiB 0.04 6708 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1155 10581 3115 6097 1369 55.6 MiB 0.17 0.00 8.86251 -178.17 -8.86251 8.86251 0.88 0.00144752 0.00132843 0.092117 0.0845073 46 2717 18 6.79088e+06 229024 828058. 2865.25 5.86 0.472451 0.424685 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0479807 0.0435638 118 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_027.v common 14.60 vpr 55.56 MiB 0.05 6740 -1 -1 12 0.25 -1 -1 32884 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 17.4 MiB 1.55 1241 4433 817 3477 139 56.2 MiB 0.09 0.00 7.21583 -155.808 -7.21583 7.21583 1.10 0.00172501 0.00158005 0.0465585 0.0428087 36 4047 49 6.79088e+06 296384 648988. 2245.63 4.21 0.429366 0.385383 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.24 0.26 0.13 -1 -1 0.24 0.0990771 0.0894635 145 215 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_028.v common 12.17 vpr 55.55 MiB 0.05 6844 -1 -1 13 0.27 -1 -1 32844 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 17.0 MiB 1.32 1284 4659 748 3690 221 55.7 MiB 0.09 0.00 8.13835 -165.274 -8.13835 8.13835 1.09 0.00161568 0.00147989 0.0476202 0.0436878 38 3292 49 6.79088e+06 269440 678818. 2348.85 13.99 0.774092 0.693381 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.29 0.13 0.27 -1 -1 0.29 0.061657 0.0558979 136 195 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_029.v common 9.55 vpr 55.28 MiB 0.04 6552 -1 -1 12 0.17 -1 -1 32340 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 16.7 MiB 2.01 1045 5303 1002 3952 349 55.1 MiB 0.09 0.00 6.60115 -147.873 -6.60115 6.60115 1.09 0.00130345 0.00119331 0.0423632 0.038834 38 2622 19 6.79088e+06 255968 678818. 2348.85 5.01 0.400628 0.35881 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.29 0.09 0.28 -1 -1 0.29 0.0411652 0.0374249 106 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_030.v common 10.56 vpr 55.00 MiB 0.05 6520 -1 -1 11 0.15 -1 -1 32684 -1 -1 20 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 16.5 MiB 1.95 954 11652 3379 7115 1158 55.2 MiB 0.17 0.00 6.23714 -130.615 -6.23714 6.23714 1.08 0.00116386 0.00106484 0.0901099 0.0825003 38 2452 30 6.79088e+06 269440 678818. 2348.85 4.07 0.357707 0.321047 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.29 0.09 0.27 -1 -1 0.29 0.0404284 0.0365908 97 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_031.v common 8.10 vpr 55.13 MiB 0.05 6568 -1 -1 11 0.16 -1 -1 32468 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 16.6 MiB 1.17 1013 7346 1810 4929 607 55.3 MiB 0.11 0.00 6.76313 -133.919 -6.76313 6.76313 1.10 0.00117314 0.00106743 0.058298 0.0534294 36 2839 26 6.79088e+06 255968 648988. 2245.63 5.50 0.421012 0.378406 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.28 0.11 0.26 -1 -1 0.28 0.0455233 0.0412418 107 139 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_032.v common 11.40 vpr 55.41 MiB 0.04 6604 -1 -1 12 0.19 -1 -1 32576 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 17.2 MiB 1.94 1274 9443 2812 5690 941 55.8 MiB 0.15 0.00 6.88424 -161.28 -6.88424 6.88424 1.09 0.00148507 0.00136035 0.082787 0.0759088 38 3239 49 6.79088e+06 255968 678818. 2348.85 4.23 0.464447 0.416908 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.30 0.06 0.28 -1 -1 0.30 0.0276616 0.0251072 119 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_033.v common 11.72 vpr 55.00 MiB 0.04 6528 -1 -1 11 0.17 -1 -1 32692 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 16.8 MiB 1.50 908 10056 3226 4794 2036 55.3 MiB 0.15 0.00 6.39517 -140.882 -6.39517 6.39517 1.09 0.00132558 0.0012135 0.0812903 0.07446 36 2970 31 6.79088e+06 229024 648988. 2245.63 2.91 0.343048 0.308604 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0482026 0.0436747 107 147 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_034.v common 8.75 vpr 55.16 MiB 0.04 6640 -1 -1 10 0.14 -1 -1 32800 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 16.4 MiB 1.38 870 8022 2297 4713 1012 55.1 MiB 0.12 0.00 6.19022 -129.37 -6.19022 6.19022 1.11 0.00124339 0.00113982 0.0649817 0.0596001 34 2314 24 6.79088e+06 242496 618332. 2139.56 2.35 0.275107 0.247753 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0494659 0.0446573 103 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_035.v common 10.17 vpr 55.66 MiB 0.05 6936 -1 -1 13 0.33 -1 -1 33296 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57632 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 17.5 MiB 1.51 1352 10103 2504 6636 963 56.3 MiB 0.20 0.00 7.85531 -169.709 -7.85531 7.85531 1.09 0.00252838 0.00231634 0.100583 0.0916888 38 3914 48 6.79088e+06 296384 678818. 2348.85 29.23 0.921052 0.827368 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0784983 0.0712614 162 239 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_036.v common 11.29 vpr 55.69 MiB 0.04 6628 -1 -1 13 0.30 -1 -1 33160 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 17.4 MiB 1.76 1274 13849 4315 6877 2657 56.1 MiB 0.24 0.00 7.85526 -169.716 -7.85526 7.85526 1.11 0.00174078 0.00159705 0.135482 0.124164 36 4447 42 6.79088e+06 282912 648988. 2245.63 10.68 0.57053 0.513895 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.28 0.20 0.25 -1 -1 0.28 0.0751429 0.0681171 152 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_037.v common 10.05 vpr 55.18 MiB 0.07 6560 -1 -1 12 0.15 -1 -1 32780 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 16.8 MiB 1.32 851 11631 4796 6628 207 55.5 MiB 0.16 0.00 7.11438 -152.359 -7.11438 7.11438 1.08 0.00126361 0.0011554 0.0880781 0.0806282 36 2928 40 6.79088e+06 242496 648988. 2245.63 8.98 0.400146 0.359132 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0459639 0.0416454 102 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_038.v common 10.59 vpr 55.78 MiB 0.05 6724 -1 -1 12 0.25 -1 -1 33260 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 17.2 MiB 1.22 1154 12749 3915 6368 2466 56.0 MiB 0.22 0.00 7.84323 -159.621 -7.84323 7.84323 1.10 0.00172692 0.00158318 0.12239 0.112261 40 3413 28 6.79088e+06 309856 706193. 2443.58 3.86 0.503026 0.45344 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0808612 0.073159 148 219 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_039.v common 10.06 vpr 55.84 MiB 0.05 6772 -1 -1 14 0.34 -1 -1 33212 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 17.3 MiB 1.13 1375 11247 2864 6672 1711 55.8 MiB 0.19 0.00 8.18012 -172.817 -8.18012 8.18012 1.08 0.00166456 0.00152697 0.107964 0.099095 36 4160 47 6.79088e+06 282912 648988. 2245.63 15.01 0.762909 0.685264 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0691592 0.0627378 146 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_040.v common 10.18 vpr 55.66 MiB 0.05 6920 -1 -1 13 0.26 -1 -1 32840 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 16.9 MiB 2.11 1310 10149 2655 5632 1862 55.7 MiB 0.17 0.00 7.78561 -164.423 -7.78561 7.78561 1.09 0.0015367 0.00140817 0.0900196 0.082673 44 3315 33 6.79088e+06 282912 787024. 2723.27 6.20 0.587687 0.527699 27118 194962 -1 2744 16 1312 3521 196631 43857 6.87069 6.87069 -154.962 -6.87069 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0429408 0.0388714 126 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_041.v common 10.44 vpr 55.53 MiB 0.05 6776 -1 -1 12 0.25 -1 -1 32840 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 17.1 MiB 0.96 1267 10859 2857 6722 1280 56.0 MiB 0.18 0.00 7.65156 -158.395 -7.65156 7.65156 1.09 0.00159754 0.00146466 0.0965478 0.0884712 40 3210 25 6.79088e+06 309856 706193. 2443.58 4.10 0.455424 0.410259 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.32 0.14 0.28 -1 -1 0.32 0.0583351 0.0529836 135 189 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_042.v common 11.40 vpr 55.60 MiB 0.05 6796 -1 -1 12 0.19 -1 -1 32844 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1093 11106 3659 5731 1716 55.4 MiB 0.17 0.00 7.11863 -144.901 -7.11863 7.11863 1.12 0.0014466 0.00132675 0.0965867 0.0886042 36 3341 42 6.79088e+06 229024 648988. 2245.63 6.36 0.4512 0.405059 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.056779 0.0512753 113 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_043.v common 11.07 vpr 55.88 MiB 0.05 7024 -1 -1 14 0.44 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 17.6 MiB 1.33 1406 13355 3498 8147 1710 56.4 MiB 0.25 0.00 8.18038 -175.8 -8.18038 8.18038 1.09 0.00181552 0.00165698 0.145591 0.133262 38 4021 47 6.79088e+06 336800 678818. 2348.85 32.13 1.14653 1.03339 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.31 0.08 0.27 -1 -1 0.31 0.0353397 0.0323622 169 245 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_044.v common 9.93 vpr 55.21 MiB 0.04 6648 -1 -1 11 0.19 -1 -1 32392 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 17.0 MiB 1.71 1088 9006 2212 5478 1316 55.5 MiB 0.14 0.00 6.58747 -141.672 -6.58747 6.58747 1.09 0.00139211 0.00127716 0.0758288 0.0695641 36 3313 23 6.79088e+06 242496 648988. 2245.63 3.13 0.311154 0.279529 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.31 0.13 0.27 -1 -1 0.31 0.0529224 0.0477937 113 155 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_045.v common 12.12 vpr 55.74 MiB 0.05 6788 -1 -1 13 0.27 -1 -1 32744 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 17.1 MiB 1.53 1133 5422 1123 3954 345 55.8 MiB 0.10 0.00 7.76692 -152.212 -7.76692 7.76692 1.09 0.00156181 0.0014323 0.0524823 0.0482083 36 3213 29 6.79088e+06 255968 648988. 2245.63 14.01 0.660764 0.59235 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0572987 0.0519821 132 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_046.v common 11.16 vpr 55.64 MiB 0.02 6760 -1 -1 12 0.29 -1 -1 32812 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1437 6967 1505 4666 796 55.8 MiB 0.13 0.00 7.30746 -159.645 -7.30746 7.30746 1.05 0.00178641 0.00163582 0.0720291 0.0660266 38 3828 35 6.79088e+06 282912 678818. 2348.85 4.69 0.442377 0.398423 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.29 0.16 0.27 -1 -1 0.29 0.0740088 0.0671376 153 224 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_047.v common 8.97 vpr 55.47 MiB 0.04 6640 -1 -1 13 0.24 -1 -1 32808 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 16.9 MiB 1.30 1157 7823 1835 4914 1074 55.7 MiB 0.13 0.00 7.47708 -158.746 -7.47708 7.47708 1.09 0.00155774 0.00142802 0.0716002 0.0656892 36 3541 41 6.79088e+06 255968 648988. 2245.63 3.67 0.392381 0.352989 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0546255 0.0495985 131 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_048.v common 14.84 vpr 55.30 MiB 0.04 6780 -1 -1 13 0.22 -1 -1 32744 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.8 MiB 1.89 1097 11106 3753 5771 1582 55.8 MiB 0.18 0.00 7.69072 -162.222 -7.69072 7.69072 1.13 0.00151072 0.00138468 0.100849 0.0923982 34 3515 39 6.79088e+06 229024 618332. 2139.56 11.84 0.675848 0.606368 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.27 0.19 0.24 -1 -1 0.27 0.0730548 0.0659421 118 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_049.v common 17.34 vpr 55.77 MiB 0.05 6824 -1 -1 12 0.28 -1 -1 33012 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1359 8151 1869 5680 602 56.0 MiB 0.14 0.00 7.62073 -165.231 -7.62073 7.62073 1.06 0.00171005 0.00156627 0.0783365 0.0718696 36 3806 40 6.79088e+06 309856 648988. 2245.63 18.51 0.808485 0.725502 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.27 0.15 0.25 -1 -1 0.27 0.0684737 0.0621441 150 204 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_050.v common 16.18 vpr 55.87 MiB 0.05 6784 -1 -1 13 0.27 -1 -1 32756 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 17.5 MiB 1.97 1315 9051 2036 5908 1107 55.9 MiB 0.16 0.00 7.55776 -165.084 -7.55776 7.55776 1.09 0.0017114 0.00156379 0.0896596 0.0819868 40 3325 24 6.79088e+06 269440 706193. 2443.58 3.62 0.469811 0.423463 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.30 0.26 0.28 -1 -1 0.30 0.0939307 0.0849468 143 205 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_051.v common 9.99 vpr 55.66 MiB 0.04 6728 -1 -1 14 0.30 -1 -1 32988 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 17.0 MiB 2.07 1139 8270 1889 5806 575 55.6 MiB 0.14 0.00 8.36252 -172.285 -8.36252 8.36252 1.09 0.00148345 0.00135996 0.0736205 0.0675564 44 3128 32 6.79088e+06 242496 787024. 2723.27 5.98 0.524949 0.471514 27118 194962 -1 2534 14 1111 3223 182733 40388 7.46496 7.46496 -165.503 -7.46496 0 0 997811. 3452.63 0.33 0.11 0.31 -1 -1 0.33 0.0466977 0.0424677 123 165 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_052.v common 15.57 vpr 55.80 MiB 0.04 6716 -1 -1 13 0.27 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 17.2 MiB 3.03 1159 8868 1881 6136 851 56.1 MiB 0.15 0.00 8.02321 -165.348 -8.02321 8.02321 1.08 0.00160877 0.00147371 0.083827 0.0768505 36 3689 32 6.79088e+06 269440 648988. 2245.63 5.83 0.623775 0.559789 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0645585 0.0585127 134 199 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_053.v common 11.62 vpr 55.89 MiB 0.05 6876 -1 -1 13 0.28 -1 -1 33028 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 17.2 MiB 1.21 1323 8591 2185 5991 415 56.0 MiB 0.16 0.00 8.19403 -174.315 -8.19403 8.19403 1.09 0.0017649 0.00161813 0.0855473 0.0784529 44 3534 38 6.79088e+06 309856 787024. 2723.27 6.64 0.677722 0.609105 27118 194962 -1 2784 18 1402 4191 225375 49843 7.17168 7.17168 -164.218 -7.17168 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0754542 0.0683844 154 220 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_054.v common 12.12 vpr 55.73 MiB 0.04 6788 -1 -1 12 0.30 -1 -1 32672 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 17.5 MiB 1.29 1325 11983 3288 6841 1854 56.0 MiB 0.21 0.00 7.62163 -166.383 -7.62163 7.62163 1.08 0.00178066 0.00163181 0.115679 0.10598 44 3682 36 6.79088e+06 323328 787024. 2723.27 3.63 0.495 0.446358 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.33 0.16 0.32 -1 -1 0.33 0.0762841 0.0694562 157 230 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_055.v common 8.67 vpr 55.06 MiB 0.05 6540 -1 -1 11 0.13 -1 -1 32444 -1 -1 13 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 16.6 MiB 1.37 956 7249 1855 4884 510 55.2 MiB 0.11 0.00 6.10061 -138.097 -6.10061 6.10061 1.11 0.00115674 0.0010581 0.0553602 0.0507117 44 2204 16 6.79088e+06 175136 787024. 2723.27 2.63 0.248158 0.222995 27118 194962 -1 1994 14 890 2260 140178 30612 5.5245 5.5245 -131.032 -5.5245 0 0 997811. 3452.63 0.33 0.09 0.32 -1 -1 0.33 0.0365418 0.0331232 90 122 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_056.v common 10.40 vpr 55.25 MiB 0.04 6724 -1 -1 13 0.19 -1 -1 32784 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 16.7 MiB 2.31 1073 11631 3861 5991 1779 55.2 MiB 0.18 0.00 7.81611 -170.556 -7.81611 7.81611 1.12 0.0013789 0.00126294 0.0973971 0.0892058 38 2825 21 6.79088e+06 229024 678818. 2348.85 3.78 0.397936 0.357886 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0569406 0.05182 113 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_057.v common 11.68 vpr 56.13 MiB 0.06 6856 -1 -1 14 0.41 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 17.4 MiB 1.05 1399 15493 4561 8338 2594 56.3 MiB 0.29 0.00 8.67312 -179.019 -8.67312 8.67312 1.09 0.00204253 0.00186714 0.167787 0.153743 40 4316 49 6.79088e+06 323328 706193. 2443.58 28.32 1.21727 1.09715 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.30 0.45 0.29 -1 -1 0.30 0.145245 0.131443 180 267 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_058.v common 11.67 vpr 55.51 MiB 0.05 6680 -1 -1 13 0.32 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 17.5 MiB 2.22 1244 13849 3731 7364 2754 56.1 MiB 0.24 0.00 8.43396 -178.911 -8.43396 8.43396 1.08 0.00184203 0.00168795 0.143496 0.13154 44 3465 21 6.79088e+06 282912 787024. 2723.27 5.93 0.709202 0.63922 27118 194962 -1 2596 16 1299 3668 191666 43847 7.34737 7.34737 -162.196 -7.34737 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0652609 0.0594908 154 224 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_059.v common 8.76 vpr 55.07 MiB 0.04 6556 -1 -1 11 0.16 -1 -1 32704 -1 -1 17 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 16.6 MiB 0.68 899 5994 1459 3795 740 55.2 MiB 0.10 0.00 6.69493 -140.456 -6.69493 6.69493 1.09 0.00123228 0.00112748 0.0479994 0.043943 30 2669 49 6.79088e+06 229024 556674. 1926.21 2.52 0.266429 0.23909 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451775 0.0409328 99 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_060.v common 19.79 vpr 56.10 MiB 0.05 7036 -1 -1 15 0.43 -1 -1 32888 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 17.4 MiB 1.37 1572 8083 1890 5078 1115 56.1 MiB 0.16 0.00 9.61575 -193.644 -9.61575 9.61575 1.10 0.00197882 0.00180914 0.0882107 0.0809074 48 3812 19 6.79088e+06 323328 865456. 2994.66 7.12 0.69722 0.627553 27694 206865 -1 3449 20 1718 5055 320010 69240 8.25951 8.25951 -179.124 -8.25951 0 0 1.05005e+06 3633.38 0.34 0.18 0.34 -1 -1 0.34 0.0814053 0.0740548 172 241 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_061.v common 8.90 vpr 55.80 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 33076 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 17.4 MiB 1.10 1447 9914 2954 6315 645 56.1 MiB 0.17 0.00 8.38843 -181.197 -8.38843 8.38843 1.09 0.00171857 0.00157526 0.0955125 0.0875975 38 3572 19 6.79088e+06 296384 678818. 2348.85 5.94 0.634475 0.570969 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0663303 0.060266 149 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_062.v common 7.00 vpr 55.15 MiB 0.05 6632 -1 -1 11 0.13 -1 -1 32856 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 16.7 MiB 1.54 1043 11604 3704 5973 1927 55.3 MiB 0.16 0.00 6.83225 -151.19 -6.83225 6.83225 1.11 0.00123737 0.00113051 0.0868521 0.0793882 30 2701 43 6.79088e+06 215552 556674. 1926.21 2.14 0.286229 0.257515 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.25 0.10 0.21 -1 -1 0.25 0.0472644 0.042746 97 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_063.v common 10.14 vpr 55.65 MiB 0.05 6900 -1 -1 12 0.29 -1 -1 32856 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 17.4 MiB 1.53 1321 11989 3057 7272 1660 56.1 MiB 0.20 0.00 7.80487 -167.158 -7.80487 7.80487 1.12 0.00175088 0.00159161 0.117994 0.107949 44 3363 21 6.79088e+06 282912 787024. 2723.27 6.39 0.645089 0.580794 27118 194962 -1 2768 18 1318 3944 204921 46349 6.74877 6.74877 -155.072 -6.74877 0 0 997811. 3452.63 0.34 0.14 0.32 -1 -1 0.34 0.0673402 0.061208 152 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_064.v common 9.04 vpr 55.49 MiB 0.04 6604 -1 -1 12 0.20 -1 -1 32364 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1076 11776 3996 5804 1976 55.3 MiB 0.18 0.00 7.20737 -155.525 -7.20737 7.20737 1.08 0.00142739 0.00130837 0.102074 0.093602 38 3023 28 6.79088e+06 215552 678818. 2348.85 3.50 0.367225 0.330658 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0713584 0.0644299 115 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_065.v common 7.65 vpr 55.26 MiB 0.04 6556 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 16.7 MiB 1.29 861 12331 3461 6927 1943 55.4 MiB 0.16 0.00 7.68992 -150.206 -7.68992 7.68992 1.12 0.00128057 0.00117245 0.0939145 0.0860828 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.52 0.270144 0.244086 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0403674 0.0366949 105 139 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_066.v common 9.86 vpr 55.62 MiB 0.05 6872 -1 -1 12 0.30 -1 -1 32796 -1 -1 24 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 17.2 MiB 1.35 1109 13105 4321 6403 2381 55.9 MiB 0.23 0.00 7.73882 -148.46 -7.73882 7.73882 1.09 0.00169138 0.00154987 0.124502 0.114092 36 3249 25 6.79088e+06 323328 648988. 2245.63 17.54 0.80353 0.722779 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.06219 0.0565301 144 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_067.v common 16.99 vpr 55.86 MiB 0.05 6712 -1 -1 14 0.31 -1 -1 33040 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 17.2 MiB 2.29 1442 8024 2021 5399 604 56.0 MiB 0.15 0.00 8.63126 -174.325 -8.63126 8.63126 1.08 0.00181165 0.00166068 0.082512 0.0757084 46 3512 20 6.79088e+06 296384 828058. 2865.25 6.97 0.696006 0.625899 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.33 0.14 0.33 -1 -1 0.33 0.0665163 0.0605328 155 222 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_068.v common 11.36 vpr 55.72 MiB 0.06 6788 -1 -1 12 0.23 -1 -1 32752 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.36 1323 12503 3954 6429 2120 55.6 MiB 0.21 0.00 7.68002 -164.527 -7.68002 7.68002 1.08 0.0016347 0.00149338 0.118605 0.10835 38 3480 45 6.79088e+06 255968 678818. 2348.85 5.38 0.54223 0.488157 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.31 0.27 0.27 -1 -1 0.31 0.0953231 0.0862922 137 192 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_069.v common 10.58 vpr 55.02 MiB 0.04 6640 -1 -1 12 0.12 -1 -1 32628 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 16.4 MiB 1.25 883 6839 1546 5160 133 55.1 MiB 0.11 0.00 7.22527 -147.319 -7.22527 7.22527 1.08 0.00120599 0.00109567 0.0531648 0.0486015 34 2749 47 6.79088e+06 202080 618332. 2139.56 4.32 0.311467 0.279317 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.28 0.20 0.26 -1 -1 0.28 0.0677826 0.0609752 95 127 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_070.v common 11.57 vpr 55.20 MiB 0.02 6764 -1 -1 12 0.26 -1 -1 32292 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 16.9 MiB 1.87 1016 11806 3829 5905 2072 55.7 MiB 0.17 0.00 7.21239 -153.602 -7.21239 7.21239 1.13 0.00144237 0.00132161 0.101392 0.092953 46 2377 20 6.79088e+06 242496 828058. 2865.25 5.82 0.476134 0.427751 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.34 0.10 0.33 -1 -1 0.34 0.0524151 0.0475029 114 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_071.v common 10.06 vpr 55.45 MiB 0.05 6760 -1 -1 11 0.19 -1 -1 32704 -1 -1 22 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 16.9 MiB 2.38 1192 7587 1799 4901 887 55.5 MiB 0.06 0.00 6.65573 -139.172 -6.65573 6.65573 0.74 0.000567113 0.000512286 0.0265175 0.0240042 38 3199 19 6.79088e+06 296384 678818. 2348.85 4.44 0.355918 0.31876 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0559776 0.050778 129 189 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_072.v common 11.03 vpr 55.38 MiB 0.05 6848 -1 -1 11 0.20 -1 -1 32628 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 16.8 MiB 1.30 990 12156 4943 6412 801 55.4 MiB 0.19 0.00 6.59863 -125.892 -6.59863 6.59863 1.09 0.00145278 0.001334 0.106052 0.0973852 40 3108 38 6.79088e+06 282912 706193. 2443.58 4.23 0.445547 0.400345 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.30 0.17 0.28 -1 -1 0.30 0.0670324 0.0604644 125 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_073.v common 8.95 vpr 55.50 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32712 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 16.7 MiB 2.68 1023 6220 1452 4481 287 55.3 MiB 0.10 0.00 7.37394 -146.255 -7.37394 7.37394 1.08 0.00123931 0.001135 0.0506218 0.046364 36 2646 31 6.79088e+06 215552 648988. 2245.63 5.08 0.420679 0.377149 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.29 0.09 0.25 -1 -1 0.29 0.0397273 0.0361409 104 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_074.v common 9.73 vpr 55.58 MiB 0.02 6716 -1 -1 12 0.19 -1 -1 32524 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 16.7 MiB 1.90 1239 4476 858 3235 383 55.6 MiB 0.08 0.00 7.13568 -159.479 -7.13568 7.13568 1.09 0.00151419 0.0013861 0.0435725 0.0400377 36 3048 33 6.79088e+06 269440 648988. 2245.63 4.28 0.403516 0.361627 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0524743 0.0476178 125 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_075.v common 9.43 vpr 55.46 MiB 0.05 6776 -1 -1 13 0.29 -1 -1 32796 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 17.0 MiB 1.79 1176 7283 1697 4959 627 55.7 MiB 0.13 0.00 7.98183 -162.706 -7.98183 7.98183 1.09 0.00161089 0.00147678 0.0702416 0.0644774 44 2649 18 6.79088e+06 269440 787024. 2723.27 5.43 0.5729 0.514551 27118 194962 -1 2319 17 1093 3339 161697 38241 6.80691 6.80691 -150.674 -6.80691 0 0 997811. 3452.63 0.33 0.12 0.32 -1 -1 0.33 0.0596048 0.0540516 137 192 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_076.v common 11.86 vpr 55.68 MiB 0.04 6748 -1 -1 14 0.28 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 17.1 MiB 1.47 1408 9013 2325 5592 1096 55.9 MiB 0.17 0.00 8.8032 -181.521 -8.8032 8.8032 1.09 0.00177432 0.00162753 0.0923745 0.0847867 36 3712 28 6.79088e+06 282912 648988. 2245.63 4.99 0.494786 0.44587 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.29 0.14 0.25 -1 -1 0.29 0.0631218 0.0575108 149 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_077.v common 11.71 vpr 55.59 MiB 0.05 6704 -1 -1 14 0.28 -1 -1 32820 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 17.0 MiB 2.18 1168 12528 4001 6466 2061 55.7 MiB 0.20 0.00 8.11366 -160.164 -8.11366 8.11366 1.08 0.00159894 0.00146539 0.114539 0.104981 38 3448 46 6.79088e+06 269440 678818. 2348.85 22.01 0.773028 0.694 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0659827 0.0598034 136 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_078.v common 10.37 vpr 55.60 MiB 0.05 6628 -1 -1 13 0.33 -1 -1 33320 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 17.4 MiB 1.93 1266 7823 1896 4973 954 55.9 MiB 0.14 0.00 7.98865 -167.696 -7.98865 7.98865 1.11 0.00166795 0.00152914 0.0777178 0.0712967 44 3303 29 6.79088e+06 255968 787024. 2723.27 6.86 0.651417 0.585089 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.33 0.13 0.32 -1 -1 0.33 0.0617537 0.0561913 139 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_079.v common 9.68 vpr 55.14 MiB 0.04 6616 -1 -1 13 0.18 -1 -1 32776 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 16.7 MiB 1.49 955 5888 1275 4387 226 55.4 MiB 0.12 0.00 7.30909 -151.711 -7.30909 7.30909 1.09 0.00128426 0.00117362 0.062149 0.0570063 44 2529 26 6.79088e+06 215552 787024. 2723.27 5.16 0.446842 0.400589 27118 194962 -1 1987 15 914 2239 123722 28021 6.20837 6.20837 -138.38 -6.20837 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0538479 0.0496016 106 142 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_080.v common 12.63 vpr 55.85 MiB 0.05 6648 -1 -1 13 0.43 -1 -1 32768 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 17.4 MiB 1.38 1281 12175 3045 7735 1395 55.8 MiB 0.20 0.00 8.2401 -167.978 -8.2401 8.2401 1.09 0.00171331 0.00157237 0.118064 0.108379 36 3566 29 6.79088e+06 309856 648988. 2245.63 6.62 0.517005 0.466251 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.27 0.21 0.25 -1 -1 0.27 0.0802089 0.0726895 144 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_081.v common 9.57 vpr 55.58 MiB 0.04 6936 -1 -1 14 0.28 -1 -1 31480 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 17.1 MiB 1.59 1252 6306 1410 4478 418 55.7 MiB 0.13 0.00 8.1933 -176.786 -8.1933 8.1933 1.10 0.00159403 0.00145964 0.0622259 0.0570844 46 3049 24 6.79088e+06 269440 828058. 2865.25 6.12 0.498681 0.447814 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0610221 0.0553973 133 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_082.v common 10.31 vpr 55.46 MiB 0.02 6716 -1 -1 12 0.25 -1 -1 32912 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 16.9 MiB 1.67 1214 6855 1626 4139 1090 55.6 MiB 0.13 0.00 7.87232 -159.238 -7.87232 7.87232 1.10 0.00149546 0.0013852 0.066402 0.0609309 38 3142 49 6.79088e+06 282912 678818. 2348.85 4.47 0.503026 0.452409 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.26 0.06 0.14 -1 -1 0.26 0.0258022 0.0234878 143 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_083.v common 10.25 vpr 55.56 MiB 0.05 6944 -1 -1 13 0.24 -1 -1 32732 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1166 13583 4513 7114 1956 55.7 MiB 0.21 0.00 8.05477 -151.514 -8.05477 8.05477 1.08 0.001526 0.00139828 0.120071 0.109983 38 3283 21 6.79088e+06 282912 678818. 2348.85 5.80 0.455648 0.410302 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0533732 0.0484464 126 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_084.v common 10.24 vpr 55.82 MiB 0.02 6724 -1 -1 14 0.35 -1 -1 32928 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1356 6595 1328 4700 567 56.0 MiB 0.13 0.00 8.2637 -174.994 -8.2637 8.2637 1.08 0.00178985 0.00164402 0.0701034 0.0644743 38 3897 30 6.79088e+06 282912 678818. 2348.85 6.27 0.485232 0.437128 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0803394 0.0728742 154 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_085.v common 13.58 vpr 55.39 MiB 0.06 6724 -1 -1 11 0.28 -1 -1 32888 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 16.9 MiB 1.23 1061 13403 4351 6899 2153 55.5 MiB 0.20 0.00 6.99502 -136.053 -6.99502 6.99502 1.09 0.00152601 0.00140052 0.117514 0.107835 36 3032 43 6.79088e+06 296384 648988. 2245.63 6.22 0.646794 0.581175 25390 158009 -1 2540 33 1686 5540 506000 190003 6.00456 6.00456 -131.545 -6.00456 0 0 828058. 2865.25 0.29 0.28 0.25 -1 -1 0.29 0.0987324 0.0893083 130 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_086.v common 9.92 vpr 54.98 MiB 0.04 6560 -1 -1 13 0.16 -1 -1 32728 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 16.4 MiB 2.88 995 4062 701 3272 89 55.1 MiB 0.07 0.00 6.9771 -161.617 -6.9771 6.9771 1.09 0.00125184 0.00114693 0.0343159 0.0315005 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.02 0.280988 0.251967 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.27 0.11 0.27 -1 -1 0.27 0.043515 0.0393799 99 131 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_087.v common 11.85 vpr 55.48 MiB 0.05 6852 -1 -1 14 0.23 -1 -1 32800 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1302 5483 1117 4002 364 55.5 MiB 0.10 0.00 8.68565 -176.783 -8.68565 8.68565 1.10 0.00153478 0.00140736 0.0517198 0.0474994 36 3263 26 6.79088e+06 255968 648988. 2245.63 5.94 0.395744 0.35544 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0538029 0.0488563 129 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_088.v common 10.78 vpr 56.09 MiB 0.05 6636 -1 -1 15 0.36 -1 -1 33168 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 17.4 MiB 1.82 1292 9914 2574 6184 1156 56.2 MiB 0.21 0.00 9.1052 -186.475 -9.1052 9.1052 1.11 0.00243611 0.00224347 0.110612 0.101534 40 3560 37 6.79088e+06 296384 706193. 2443.58 3.34 0.556291 0.502173 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.30 0.19 0.28 -1 -1 0.30 0.0964495 0.0877099 153 228 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_089.v common 7.58 vpr 55.19 MiB 0.04 6676 -1 -1 11 0.16 -1 -1 32380 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 1.94 829 6054 1305 4663 86 55.1 MiB 0.10 0.00 6.63906 -133.693 -6.63906 6.63906 1.09 0.00117838 0.00107793 0.0466732 0.0427186 34 2844 35 6.79088e+06 188608 618332. 2139.56 3.70 0.272449 0.244185 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0429477 0.0388291 91 124 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_090.v common 9.88 vpr 55.27 MiB 0.04 6592 -1 -1 12 0.18 -1 -1 32592 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 16.8 MiB 1.53 1045 8360 2472 4444 1444 55.4 MiB 0.13 0.00 7.09988 -155.106 -7.09988 7.09988 1.11 0.00137085 0.00125717 0.072884 0.0668813 36 3087 23 6.79088e+06 215552 648988. 2245.63 4.05 0.370826 0.333216 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0547694 0.0495957 111 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_091.v common 9.16 vpr 55.76 MiB 0.04 6680 -1 -1 12 0.32 -1 -1 33132 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1231 6306 1337 4274 695 56.0 MiB 0.12 0.00 7.48442 -156.804 -7.48442 7.48442 0.97 0.00174805 0.00160418 0.0653655 0.0599992 36 3798 37 6.79088e+06 269440 648988. 2245.63 4.91 0.474481 0.42665 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.27 0.16 0.25 -1 -1 0.27 0.0722878 0.0655854 145 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_092.v common 13.31 vpr 55.51 MiB 0.04 6900 -1 -1 12 0.24 -1 -1 32832 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 17.0 MiB 1.61 1313 9443 2521 5826 1096 55.7 MiB 0.16 0.00 7.56551 -160.745 -7.56551 7.56551 1.09 0.0015584 0.00142834 0.0866941 0.0795438 36 3623 36 6.79088e+06 255968 648988. 2245.63 5.81 0.45629 0.410373 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.27 0.14 0.26 -1 -1 0.27 0.060047 0.0543583 133 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_093.v common 10.72 vpr 56.03 MiB 0.05 6940 -1 -1 14 0.44 -1 -1 33280 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57724 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 17.4 MiB 1.31 1284 5079 907 4069 103 56.4 MiB 0.12 0.00 8.77515 -179.37 -8.77515 8.77515 1.11 0.00193498 0.00177158 0.0593918 0.0545337 38 4131 35 6.79088e+06 309856 678818. 2348.85 21.55 0.899289 0.808256 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.29 0.17 0.27 -1 -1 0.29 0.0785107 0.0715319 170 239 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_094.v common 14.34 vpr 55.38 MiB 0.05 6784 -1 -1 11 0.23 -1 -1 32496 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 17.1 MiB 1.88 1159 11963 3648 6429 1886 55.9 MiB 0.19 0.00 7.06667 -142.983 -7.06667 7.06667 1.10 0.00151041 0.00138539 0.103651 0.0950782 44 2874 16 6.79088e+06 282912 787024. 2723.27 5.06 0.543245 0.488207 27118 194962 -1 2495 13 1107 3189 172215 38308 6.29442 6.29442 -134.943 -6.29442 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0453343 0.0413 128 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_095.v common 7.31 vpr 55.21 MiB 0.03 6564 -1 -1 11 0.17 -1 -1 32380 -1 -1 19 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 16.5 MiB 1.13 770 7714 1883 5409 422 55.2 MiB 0.12 0.00 6.64923 -122.654 -6.64923 6.64923 1.10 0.00122072 0.00111821 0.0608273 0.0557515 38 2218 30 6.79088e+06 255968 678818. 2348.85 5.09 0.535511 0.479306 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.050418 0.0455395 101 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_096.v common 12.54 vpr 56.51 MiB 0.05 6904 -1 -1 13 0.41 -1 -1 32828 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 17.9 MiB 1.68 1654 14793 4090 8037 2666 56.7 MiB 0.28 0.00 8.15219 -167.23 -8.15219 8.15219 1.08 0.00217119 0.00197864 0.15942 0.145927 40 4464 26 6.79088e+06 390688 706193. 2443.58 6.27 0.657025 0.594125 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.30 0.59 0.28 -1 -1 0.30 0.177203 0.16035 191 279 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_097.v common 8.79 vpr 55.60 MiB 0.05 6804 -1 -1 14 0.27 -1 -1 33476 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1216 6923 1704 4584 635 55.7 MiB 0.12 0.00 8.60637 -173.25 -8.60637 8.60637 1.08 0.00151816 0.0013917 0.0630732 0.057863 30 3569 30 6.79088e+06 269440 556674. 1926.21 3.01 0.291014 0.262265 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0581551 0.0527304 128 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_098.v common 9.53 vpr 55.21 MiB 0.04 6604 -1 -1 12 0.16 -1 -1 32344 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 16.7 MiB 2.16 1144 8723 2365 5890 468 55.4 MiB 0.13 0.00 7.40683 -169.316 -7.40683 7.40683 1.09 0.00128581 0.00117735 0.0660614 0.060486 44 3005 29 6.79088e+06 255968 787024. 2723.27 5.77 0.456562 0.409639 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.33 0.10 0.32 -1 -1 0.33 0.0466657 0.0423125 109 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_099.v common 11.80 vpr 55.64 MiB 0.04 6732 -1 -1 13 0.28 -1 -1 32736 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 16.9 MiB 2.67 1115 5066 1001 3852 213 55.7 MiB 0.09 0.00 8.33866 -169.136 -8.33866 8.33866 1.09 0.00151881 0.00139241 0.0480774 0.0441555 48 2783 21 6.79088e+06 242496 865456. 2994.66 6.41 0.518909 0.465398 27694 206865 -1 2457 17 1071 3000 181658 40341 7.04987 7.04987 -154.557 -7.04987 0 0 1.05005e+06 3633.38 0.34 0.12 0.34 -1 -1 0.34 0.0556896 0.0505282 125 171 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_100.v common 10.80 vpr 55.96 MiB 0.04 6904 -1 -1 13 0.32 -1 -1 33364 -1 -1 25 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1490 8083 1681 5214 1188 56.3 MiB 0.15 0.00 7.4732 -162.473 -7.4732 7.4732 1.13 0.00184146 0.00168782 0.0811408 0.0743978 38 4261 31 6.79088e+06 336800 678818. 2348.85 6.56 0.519391 0.467521 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.29 0.30 0.27 -1 -1 0.29 0.110545 0.100054 159 234 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_101.v common 11.71 vpr 55.73 MiB 0.04 6744 -1 -1 11 0.23 -1 -1 32884 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 17.0 MiB 1.54 1209 11059 2877 6113 2069 55.7 MiB 0.18 0.00 7.11391 -144.84 -7.11391 7.11391 1.08 0.00162249 0.00148787 0.101421 0.0930155 44 3241 20 6.79088e+06 309856 787024. 2723.27 6.28 0.593065 0.533481 27118 194962 -1 2589 15 1040 3335 178109 39730 6.29442 6.29442 -136.088 -6.29442 0 0 997811. 3452.63 0.35 0.13 0.32 -1 -1 0.35 0.0622453 0.0572758 140 199 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_102.v common 10.22 vpr 55.78 MiB 0.04 6712 -1 -1 15 0.32 -1 -1 33016 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1211 12503 3460 7559 1484 55.8 MiB 0.21 0.00 9.11536 -184.558 -9.11536 9.11536 1.09 0.00168114 0.00154043 0.122704 0.11216 46 2840 19 6.79088e+06 255968 828058. 2865.25 6.22 0.691761 0.62166 27406 200422 -1 2555 17 1279 3537 187100 43561 7.59386 7.59386 -164.648 -7.59386 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0627921 0.0570557 142 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_103.v common 9.15 vpr 55.84 MiB 0.06 6644 -1 -1 13 0.31 -1 -1 32964 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 17.5 MiB 1.94 1357 5463 1001 4200 262 56.1 MiB 0.11 0.00 8.32676 -176.58 -8.32676 8.32676 1.08 0.00183262 0.00167552 0.057417 0.0526657 36 4143 34 6.79088e+06 309856 648988. 2245.63 12.84 0.494099 0.444582 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0601923 0.0547952 154 217 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_104.v common 10.62 vpr 55.14 MiB 0.05 6600 -1 -1 12 0.19 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 16.9 MiB 1.92 941 10557 3755 4946 1856 55.5 MiB 0.15 0.00 7.68137 -155.362 -7.68137 7.68137 1.11 0.00129045 0.0011818 0.0846873 0.0776442 36 2695 26 6.79088e+06 242496 648988. 2245.63 4.92 0.456054 0.409724 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0491854 0.0445361 109 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_105.v common 10.56 vpr 55.25 MiB 0.04 6612 -1 -1 11 0.15 -1 -1 32488 -1 -1 14 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 16.4 MiB 1.39 1148 5224 1190 3763 271 55.2 MiB 0.09 0.00 6.84847 -147.97 -6.84847 6.84847 1.12 0.00124315 0.00113753 0.043097 0.0394918 48 2763 18 6.79088e+06 188608 865456. 2994.66 5.60 0.479885 0.429876 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.35 0.10 0.34 -1 -1 0.35 0.0424171 0.0384451 98 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_106.v common 9.15 vpr 55.73 MiB 0.04 6776 -1 -1 13 0.30 -1 -1 32820 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 17.5 MiB 1.07 1115 8455 2194 4906 1355 56.0 MiB 0.15 0.00 7.89179 -153.02 -7.89179 7.89179 1.08 0.00170023 0.00155719 0.0824694 0.0756079 38 3369 23 6.79088e+06 296384 678818. 2348.85 6.32 0.464107 0.418041 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0679929 0.0617157 144 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_107.v common 7.74 vpr 55.06 MiB 0.05 6600 -1 -1 10 0.17 -1 -1 32784 -1 -1 17 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 16.6 MiB 1.63 851 10204 2504 7246 454 55.2 MiB 0.14 0.00 6.11518 -125.484 -6.11518 6.11518 1.09 0.00122729 0.00112298 0.0785806 0.0720156 38 2368 25 6.79088e+06 229024 678818. 2348.85 5.33 0.45229 0.405506 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0503646 0.0454995 98 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_108.v common 13.04 vpr 55.29 MiB 0.04 6512 -1 -1 14 0.18 -1 -1 32652 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 16.9 MiB 2.65 1049 6312 1330 4556 426 55.2 MiB 0.10 0.00 7.76918 -161.081 -7.76918 7.76918 1.09 0.00131616 0.00120603 0.0509297 0.0466835 36 3203 45 6.79088e+06 242496 648988. 2245.63 17.36 0.596302 0.533541 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.29 0.31 0.25 -1 -1 0.29 0.0983194 0.0886059 110 146 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_109.v common 10.51 vpr 55.81 MiB 0.05 6776 -1 -1 12 0.30 -1 -1 32888 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 17.3 MiB 1.16 1262 12919 3620 7000 2299 55.7 MiB 0.21 0.00 7.60154 -161.988 -7.60154 7.60154 1.09 0.00167876 0.00153978 0.121798 0.111728 36 3634 39 6.79088e+06 296384 648988. 2245.63 7.00 0.540211 0.486894 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0613179 0.0556916 143 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_110.v common 10.19 vpr 55.28 MiB 0.04 6592 -1 -1 12 0.17 -1 -1 32284 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 16.8 MiB 2.02 992 10726 2823 7181 722 55.2 MiB 0.15 0.00 6.58069 -144.507 -6.58069 6.58069 1.11 0.00122821 0.00112362 0.0823296 0.075382 34 3214 45 6.79088e+06 215552 618332. 2139.56 4.94 0.391161 0.351059 25102 150614 -1 2531 19 1106 2577 182354 39807 6.0649 6.0649 -143.904 -6.0649 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0487346 0.0440227 101 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_111.v common 9.31 vpr 55.61 MiB 0.05 6828 -1 -1 12 0.19 -1 -1 32924 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 17.0 MiB 1.36 1163 7736 1889 5402 445 55.9 MiB 0.13 0.00 7.51176 -154.757 -7.51176 7.51176 1.09 0.00155894 0.00142764 0.0728061 0.0667371 38 3181 29 6.79088e+06 242496 678818. 2348.85 5.95 0.435254 0.391077 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.29 0.12 0.26 -1 -1 0.29 0.0570543 0.0517385 123 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_112.v common 10.13 vpr 55.70 MiB 0.05 6732 -1 -1 13 0.27 -1 -1 32928 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 17.1 MiB 1.41 1250 11296 2557 6849 1890 55.8 MiB 0.18 0.00 7.49717 -162.624 -7.49717 7.49717 1.09 0.00155927 0.00142897 0.103647 0.0950912 40 2968 20 6.79088e+06 255968 706193. 2443.58 17.78 0.777085 0.696912 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.30 0.13 0.28 -1 -1 0.30 0.0595625 0.0539694 134 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_113.v common 10.44 vpr 55.05 MiB 0.02 6516 -1 -1 11 0.16 -1 -1 32364 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 16.8 MiB 1.25 937 7515 1724 5667 124 55.3 MiB 0.12 0.00 7.16165 -142.405 -7.16165 7.16165 1.08 0.00129089 0.00118037 0.0613696 0.0561617 46 2683 20 6.79088e+06 202080 828058. 2865.25 3.10 0.345772 0.31054 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.33 0.10 0.33 -1 -1 0.33 0.0450549 0.0408704 105 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_114.v common 11.86 vpr 55.35 MiB 0.04 6584 -1 -1 13 0.19 -1 -1 32560 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 17.1 MiB 1.80 1005 13381 4639 6392 2350 55.7 MiB 0.21 0.00 7.38301 -157.601 -7.38301 7.38301 1.14 0.00146407 0.00134128 0.116175 0.106518 38 2883 22 6.79088e+06 229024 678818. 2348.85 2.78 0.365452 0.329444 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.29 0.11 0.27 -1 -1 0.29 0.0528697 0.0479131 116 165 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_115.v common 9.12 vpr 55.60 MiB 0.04 6840 -1 -1 13 0.25 -1 -1 32816 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 17.2 MiB 1.56 1327 8092 2018 5457 617 55.9 MiB 0.14 0.00 7.14878 -159.209 -7.14878 7.14878 1.10 0.0015734 0.00144238 0.0764217 0.0701609 46 3203 25 6.79088e+06 242496 828058. 2865.25 3.47 0.424066 0.381373 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.33 0.13 0.33 -1 -1 0.33 0.0600511 0.0543872 130 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_116.v common 15.07 vpr 55.41 MiB 0.02 6748 -1 -1 11 0.19 -1 -1 32692 -1 -1 22 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 16.9 MiB 1.49 925 13403 4743 6446 2214 55.4 MiB 0.19 0.00 6.69836 -125.024 -6.69836 6.69836 1.09 0.00137507 0.00125986 0.106677 0.0977589 36 2760 29 6.79088e+06 296384 648988. 2245.63 4.99 0.425493 0.382345 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0501484 0.0454119 115 160 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_117.v common 9.57 vpr 55.68 MiB 0.05 6928 -1 -1 14 0.31 -1 -1 33316 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 17.4 MiB 1.43 1410 8213 2036 5597 580 56.2 MiB 0.16 0.00 9.10514 -189.548 -9.10514 9.10514 1.09 0.00182237 0.00167031 0.0848684 0.0777673 44 3396 25 6.79088e+06 296384 787024. 2723.27 3.56 0.489354 0.440712 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.34 0.13 0.31 -1 -1 0.34 0.0644074 0.0587052 160 222 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_118.v common 10.40 vpr 55.16 MiB 0.04 6704 -1 -1 12 0.16 -1 -1 32672 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 16.8 MiB 2.69 1093 11281 2937 6811 1533 55.3 MiB 0.16 0.00 6.61653 -142.296 -6.61653 6.61653 1.13 0.00127176 0.00116408 0.0861753 0.0789958 38 2817 19 6.79088e+06 242496 678818. 2348.85 2.44 0.308539 0.278261 25966 169698 -1 2363 14 1024 2534 149076 32586 5.57833 5.57833 -133.159 -5.57833 0 0 902133. 3121.57 0.31 0.09 0.27 -1 -1 0.31 0.0401526 0.0365282 108 139 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_119.v common 10.43 vpr 55.61 MiB 0.05 6752 -1 -1 13 0.27 -1 -1 32848 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1323 14123 4442 7710 1971 55.8 MiB 0.23 0.00 7.64293 -157.325 -7.64293 7.64293 1.09 0.0015873 0.00145469 0.129904 0.119111 44 3212 24 6.79088e+06 255968 787024. 2723.27 3.73 0.406555 0.366976 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.34 0.14 0.31 -1 -1 0.34 0.0615014 0.0557958 132 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_120.v common 8.49 vpr 55.20 MiB 0.05 6716 -1 -1 13 0.18 -1 -1 32732 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 16.5 MiB 1.96 1020 12120 3554 6383 2183 55.3 MiB 0.17 0.00 7.35402 -164.423 -7.35402 7.35402 1.08 0.00127735 0.00116918 0.0938643 0.0859486 36 3009 44 6.79088e+06 215552 648988. 2245.63 5.83 0.548757 0.493039 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0511829 0.0463496 104 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_121.v common 8.56 vpr 55.55 MiB 0.05 6856 -1 -1 12 0.21 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 17.2 MiB 1.87 1030 11783 4465 6036 1282 56.0 MiB 0.19 0.00 7.13827 -153.033 -7.13827 7.13827 1.10 0.00148852 0.00135887 0.104482 0.0957714 44 2856 22 6.79088e+06 255968 787024. 2723.27 3.21 0.387416 0.349117 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.33 0.11 0.32 -1 -1 0.33 0.0506526 0.0460055 121 171 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_122.v common 10.48 vpr 56.24 MiB 0.04 6992 -1 -1 15 0.51 -1 -1 32784 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1457 12373 3076 6798 2499 56.3 MiB 0.25 0.00 9.48621 -188.88 -9.48621 9.48621 1.08 0.00201907 0.00185073 0.146159 0.134178 46 4011 21 6.79088e+06 323328 828058. 2865.25 6.94 0.781261 0.704699 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.33 0.17 0.32 -1 -1 0.33 0.0844498 0.0767716 176 250 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_123.v common 7.33 vpr 54.59 MiB 0.04 6508 -1 -1 10 0.10 -1 -1 32092 -1 -1 11 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55964 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 16.0 MiB 1.53 678 9345 2965 4615 1765 54.7 MiB 0.10 0.00 5.03415 -115.492 -5.03415 5.03415 1.09 0.00089601 0.000819572 0.0574963 0.0526502 36 1722 23 6.79088e+06 148192 648988. 2245.63 2.63 0.250018 0.223084 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.27 0.07 0.25 -1 -1 0.27 0.0346783 0.0310799 63 85 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_124.v common 10.41 vpr 55.35 MiB 0.05 6552 -1 -1 13 0.19 -1 -1 32484 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 16.7 MiB 1.68 930 9881 2975 5177 1729 55.4 MiB 0.14 0.00 7.15369 -149.901 -7.15369 7.15369 1.11 0.00127116 0.00115217 0.0762483 0.0698864 36 2757 44 6.79088e+06 255968 648988. 2245.63 4.65 0.402687 0.361546 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0505652 0.0457746 105 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_125.v common 10.07 vpr 55.52 MiB 0.05 6464 -1 -1 12 0.19 -1 -1 32548 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1026 12331 4984 6774 573 55.6 MiB 0.19 0.00 7.35057 -161.147 -7.35057 7.35057 1.11 0.00143768 0.00131737 0.10623 0.0974066 38 3211 42 6.79088e+06 229024 678818. 2348.85 19.20 0.738941 0.662186 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0579799 0.0525428 115 167 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_126.v common 6.32 vpr 54.70 MiB 0.05 6716 -1 -1 9 0.13 -1 -1 32360 -1 -1 20 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 16.7 MiB 1.07 772 8553 2593 4994 966 55.2 MiB 0.10 0.00 5.4216 -101.246 -5.4216 5.4216 1.08 0.00101816 0.000932745 0.0563404 0.0516462 32 2040 31 6.79088e+06 269440 586450. 2029.24 1.37 0.201784 0.181199 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.25 0.08 0.23 -1 -1 0.25 0.0336201 0.030372 86 111 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_127.v common 12.47 vpr 55.68 MiB 0.05 6836 -1 -1 12 0.26 -1 -1 32684 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 17.2 MiB 2.35 1475 10263 2607 5842 1814 55.9 MiB 0.18 0.00 7.81518 -176.908 -7.81518 7.81518 1.11 0.00168186 0.00154133 0.0954285 0.0875118 38 4034 49 6.79088e+06 309856 678818. 2348.85 8.27 0.547144 0.492408 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.29 0.14 0.27 -1 -1 0.29 0.0619064 0.0562804 146 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_128.v common 16.59 vpr 55.84 MiB 0.07 6912 -1 -1 14 0.53 -1 -1 32872 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 17.3 MiB 1.21 1195 12733 3723 6434 2576 55.8 MiB 0.22 0.00 9.14434 -182.838 -9.14434 9.14434 1.12 0.00172674 0.00158239 0.125546 0.114919 38 3451 34 6.79088e+06 296384 678818. 2348.85 5.82 0.547953 0.494015 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0658858 0.059868 151 204 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 9.51 vpr 55.98 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30840 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 1.20 895 12321 3076 8292 953 56.4 MiB 0.21 0.00 4.3249 -144.349 -4.3249 4.3249 1.09 0.00138045 0.00126734 0.0751919 0.0689254 34 2773 31 6.87369e+06 517032 618332. 2139.56 5.15 0.466586 0.417978 25762 151098 -1 2211 24 2181 3652 275045 65194 4.0397 4.0397 -150.952 -4.0397 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0619853 0.0556486 155 96 32 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.39 vpr 55.88 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 17.4 MiB 3.40 889 13477 4603 6656 2218 56.2 MiB 0.22 0.00 4.22285 -135.326 -4.22285 4.22285 1.09 0.00128085 0.0011742 0.0957769 0.0878281 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.50 0.272422 0.245926 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.25 0.15 0.23 -1 -1 0.25 0.0563612 0.0506087 141 91 30 30 89 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.47 vpr 55.72 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 17.5 MiB 1.69 953 18428 5979 9684 2765 56.3 MiB 0.32 0.01 3.74716 -129.333 -3.74716 3.74716 1.10 0.0013443 0.00123288 0.117037 0.108362 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.50 0.275006 0.249542 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.24 0.11 0.22 -1 -1 0.24 0.0529511 0.0475925 145 65 54 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 7.14 vpr 55.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30340 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 17.3 MiB 1.28 922 15090 5352 7218 2520 56.1 MiB 0.24 0.00 4.1666 -130.205 -4.1666 4.1666 1.08 0.00114721 0.00105349 0.0975709 0.0896496 34 2444 21 6.87369e+06 321398 618332. 2139.56 2.42 0.344122 0.310203 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0511668 0.0459524 136 34 87 29 29 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.88 vpr 55.66 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 1.63 1047 14965 5078 8038 1849 56.3 MiB 0.25 0.00 4.2175 -149.421 -4.2175 4.2175 1.08 0.00125216 0.00114933 0.104176 0.0956822 34 2922 24 6.87369e+06 293451 618332. 2139.56 2.47 0.353206 0.317581 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.26 0.17 0.24 -1 -1 0.26 0.056184 0.0505928 147 34 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.48 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30192 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 17.4 MiB 1.14 1041 20588 6432 11323 2833 56.3 MiB 0.29 0.00 3.55395 -124.862 -3.55395 3.55395 1.08 0.00130532 0.00119515 0.114781 0.105119 32 2871 28 6.87369e+06 544980 586450. 2029.24 1.37 0.291561 0.2632 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.25 0.13 0.22 -1 -1 0.25 0.0494854 0.0445523 154 64 63 32 63 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.70 vpr 55.27 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30480 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 17.1 MiB 2.02 640 10388 2730 6621 1037 55.8 MiB 0.15 0.00 3.6994 -105.15 -3.6994 3.6994 1.10 0.000917334 0.000841967 0.0590561 0.0542244 28 1921 25 6.87369e+06 279477 531479. 1839.03 1.33 0.180741 0.162114 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0426857 0.0381241 102 34 54 27 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.64 vpr 55.48 MiB 0.06 7008 -1 -1 1 0.03 -1 -1 30064 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.4 MiB 0.85 969 14273 4212 7662 2399 56.1 MiB 0.19 0.00 3.61131 -114.549 -3.61131 3.61131 1.08 0.00110868 0.00101846 0.0729663 0.0669548 30 2496 28 6.87369e+06 489084 556674. 1926.21 1.35 0.232493 0.209463 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0454954 0.0409143 141 4 115 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 8.25 vpr 55.67 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30044 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 17.1 MiB 2.47 735 9712 2823 5738 1151 55.7 MiB 0.14 0.00 3.24697 -108.666 -3.24697 3.24697 1.09 0.00106756 0.000975843 0.0641353 0.0586852 28 1915 21 6.87369e+06 223581 531479. 1839.03 1.22 0.206528 0.184789 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.23 0.08 0.20 -1 -1 0.23 0.0370375 0.0331946 103 85 0 0 84 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.35 vpr 55.42 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.2 MiB 3.66 706 12808 2978 8428 1402 55.8 MiB 0.16 0.00 3.8076 -131.302 -3.8076 3.8076 1.09 0.00107211 0.000984526 0.0823629 0.0756313 34 2315 45 6.87369e+06 223581 618332. 2139.56 2.17 0.296384 0.265999 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.0472277 0.0423147 114 34 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.47 vpr 55.53 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30056 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 17.0 MiB 2.84 860 11776 3165 7564 1047 55.9 MiB 0.17 0.00 3.7375 -122.128 -3.7375 3.7375 1.10 0.00106557 0.000977364 0.0758828 0.0695494 32 2014 21 6.87369e+06 251529 586450. 2029.24 1.81 0.246694 0.221449 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0381974 0.0342175 109 63 30 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 8.17 vpr 55.33 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30496 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 17.2 MiB 1.31 881 15207 4108 9975 1124 56.1 MiB 0.20 0.00 3.45001 -118.108 -3.45001 3.45001 1.08 0.00108076 0.000981251 0.0772711 0.0706157 34 2251 27 6.87369e+06 447163 618332. 2139.56 2.10 0.303197 0.271195 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.28 0.10 0.22 -1 -1 0.28 0.0418483 0.0374409 116 65 25 25 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.90 vpr 55.86 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30164 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 17.5 MiB 4.27 958 19935 5624 11872 2439 56.3 MiB 0.30 0.00 3.64005 -125.972 -3.64005 3.64005 1.10 0.00126759 0.00115968 0.114099 0.104427 34 2786 25 6.87369e+06 489084 618332. 2139.56 2.33 0.386098 0.347284 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0457507 0.0412162 147 58 64 32 57 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.68 vpr 55.86 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30436 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 2.07 1059 21016 6637 11817 2562 56.3 MiB 0.30 0.00 4.34584 -150.842 -4.34584 4.34584 1.09 0.00131981 0.00121017 0.121196 0.110962 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.41 0.293422 0.264923 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.25 0.07 0.21 -1 -1 0.25 0.0257981 0.0229535 155 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.55 vpr 55.14 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30620 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 17.0 MiB 1.72 791 11776 3380 6895 1501 55.5 MiB 0.15 0.00 3.6364 -112.843 -3.6364 3.6364 1.09 0.000936288 0.000859241 0.0666323 0.0611836 32 2110 22 6.87369e+06 265503 586450. 2029.24 1.27 0.185238 0.166472 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0367869 0.0328828 102 29 58 29 24 24 - fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.13 vpr 55.87 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 17.4 MiB 2.40 930 14221 5969 7807 445 56.2 MiB 0.24 0.00 3.52575 -124.171 -3.52575 3.52575 1.09 0.0012662 0.00115733 0.101711 0.093189 36 2582 25 6.87369e+06 293451 648988. 2245.63 2.71 0.385768 0.346627 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.29 0.15 0.25 -1 -1 0.29 0.057556 0.05188 145 63 64 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.91 vpr 55.80 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30136 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 17.2 MiB 4.21 1056 17238 4537 10962 1739 56.1 MiB 0.24 0.00 3.55695 -127.024 -3.55695 3.55695 1.11 0.001255 0.00115171 0.0948652 0.0869606 28 2543 24 6.87369e+06 531006 531479. 1839.03 1.36 0.256654 0.231473 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0575021 0.0516681 148 57 64 32 56 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 8.23 vpr 55.59 MiB 0.10 6992 -1 -1 1 0.03 -1 -1 30060 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 17.0 MiB 2.31 836 17103 4501 10697 1905 55.8 MiB 0.22 0.00 3.09156 -112.02 -3.09156 3.09156 1.09 0.000710133 0.000637189 0.0889999 0.0814541 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.98 0.236503 0.212547 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.22 0.11 0.19 -1 -1 0.22 0.0455307 0.0407705 117 65 29 29 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.64 vpr 55.11 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30064 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 16.6 MiB 0.50 560 9036 3714 4978 344 55.1 MiB 0.10 0.00 2.94056 -94.1681 -2.94056 2.94056 1.09 0.000783026 0.000716865 0.0460634 0.0421699 28 1745 31 6.87369e+06 195634 531479. 1839.03 1.29 0.156846 0.139739 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.0279256 0.024847 73 34 24 24 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.53 vpr 55.57 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30356 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 17.2 MiB 1.00 944 12636 3568 7641 1427 56.0 MiB 0.09 0.00 4.39847 -135.821 -4.39847 4.39847 0.75 0.000405514 0.000366426 0.0312764 0.0282871 32 2277 24 6.87369e+06 237555 586450. 2029.24 1.27 0.17212 0.153687 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0470684 0.0422254 113 64 31 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.50 vpr 55.74 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57636 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 17.5 MiB 0.87 894 19124 5624 10425 3075 56.3 MiB 0.27 0.00 4.20059 -139.885 -4.20059 4.20059 1.09 0.00124239 0.00114166 0.10577 0.0969904 34 2709 23 6.87369e+06 503058 618332. 2139.56 2.33 0.367874 0.330948 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0548456 0.0489475 150 34 91 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.82 vpr 55.68 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 30436 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 17.9 MiB 2.90 951 19380 5821 10599 2960 56.6 MiB 0.30 0.01 3.81248 -128.436 -3.81248 3.81248 1.09 0.00141379 0.00129372 0.116407 0.106372 30 2850 21 6.87369e+06 558954 556674. 1926.21 5.99 0.483878 0.433257 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.24 0.12 0.22 -1 -1 0.24 0.0575257 0.0516163 154 124 0 0 125 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.63 vpr 54.97 MiB 0.04 6784 -1 -1 1 0.02 -1 -1 30384 -1 -1 16 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 16.6 MiB 1.76 600 9219 3759 4898 562 55.1 MiB 0.10 0.00 2.91856 -82.7442 -2.91856 2.91856 1.09 0.000682525 0.000624172 0.0423464 0.0387248 28 1359 19 6.87369e+06 223581 531479. 1839.03 1.17 0.125077 0.111698 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.23 0.07 0.20 -1 -1 0.23 0.030344 0.0269479 69 30 26 26 22 22 - fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.51 vpr 55.49 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 29980 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.3 MiB 1.26 1038 9757 2635 6591 531 56.1 MiB 0.17 0.00 4.1666 -141.416 -4.1666 4.1666 1.12 0.00115667 0.00106006 0.0639539 0.0586677 36 2506 23 6.87369e+06 293451 648988. 2245.63 5.11 0.440574 0.394699 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0497226 0.044724 141 3 122 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.38 vpr 54.88 MiB 0.04 6600 -1 -1 1 0.02 -1 -1 30368 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.6 MiB 0.40 506 9516 2238 6770 508 55.1 MiB 0.10 0.00 2.55523 -88.1124 -2.55523 2.55523 1.09 0.000723082 0.000661298 0.0448602 0.0410295 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.74 0.19556 0.174288 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.26 0.06 0.25 -1 -1 0.26 0.0284507 0.0253709 71 3 53 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.09 vpr 55.37 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30380 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 17.4 MiB 0.73 1092 17964 4627 11625 1712 56.3 MiB 0.27 0.01 4.26205 -149.131 -4.26205 4.26205 1.07 0.00125626 0.00114219 0.101033 0.0926362 32 3060 24 6.87369e+06 503058 586450. 2029.24 2.17 0.316911 0.285577 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0493113 0.0443827 155 34 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.37 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29904 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 17.2 MiB 0.81 964 9612 2267 6482 863 56.1 MiB 0.18 0.00 3.55269 -121.215 -3.55269 3.55269 1.16 0.00117055 0.00107369 0.0602206 0.0553088 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.47 0.229188 0.206277 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.26 0.11 0.23 -1 -1 0.26 0.0464303 0.0417717 151 3 124 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.90 vpr 55.73 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 17.4 MiB 0.92 1088 13358 3512 8899 947 56.3 MiB 0.22 0.00 4.2809 -148.724 -4.2809 4.2809 1.15 0.00130508 0.0011942 0.0771661 0.070623 26 3507 43 6.87369e+06 544980 503264. 1741.40 7.81 0.505299 0.452498 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.22 0.20 0.19 -1 -1 0.22 0.0631934 0.0568103 156 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.53 vpr 55.33 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30004 -1 -1 15 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 16.7 MiB 0.89 734 6839 1724 4743 372 55.3 MiB 0.11 0.00 3.07332 -108.035 -3.07332 3.07332 1.09 0.000999544 0.000915699 0.0445472 0.0409618 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.99 0.262656 0.234405 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.27 0.08 0.24 -1 -1 0.27 0.0346242 0.0310576 104 34 54 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.90 vpr 55.41 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 29980 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 16.8 MiB 0.97 856 11260 3834 5392 2034 55.4 MiB 0.15 0.00 3.7936 -125.971 -3.7936 3.7936 1.09 0.00100214 0.000918803 0.0682975 0.0626669 32 2233 22 6.87369e+06 251529 586450. 2029.24 1.33 0.196412 0.176629 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.26 0.09 0.23 -1 -1 0.26 0.0365838 0.0328238 109 34 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.97 vpr 55.37 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 16.9 MiB 0.99 743 13092 5209 6121 1762 55.5 MiB 0.18 0.00 3.48175 -108.034 -3.48175 3.48175 1.08 0.000945866 0.000867401 0.0758317 0.0695926 28 2217 26 6.87369e+06 265503 531479. 1839.03 1.40 0.202137 0.181724 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0375191 0.033587 104 34 56 28 28 28 - fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.87 vpr 55.48 MiB 0.05 6816 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 1.16 861 14700 5460 6955 2285 55.4 MiB 0.20 0.00 3.58201 -129.205 -3.58201 3.58201 1.09 0.00100771 0.000925357 0.0882431 0.0810329 34 2321 22 6.87369e+06 223581 618332. 2139.56 2.10 0.300656 0.270111 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.041105 0.0368557 114 3 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 7.11 vpr 55.50 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30064 -1 -1 32 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57100 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 17.3 MiB 0.75 924 11975 3064 7554 1357 55.8 MiB 0.16 0.00 3.50375 -121.402 -3.50375 3.50375 1.09 0.0010336 0.000947459 0.0603185 0.0552863 32 2375 25 6.87369e+06 447163 586450. 2029.24 1.31 0.193541 0.17377 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.25 0.12 0.23 -1 -1 0.25 0.046852 0.0418938 119 34 61 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.60 vpr 55.31 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 29992 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 17.0 MiB 2.62 824 15003 4455 7859 2689 55.7 MiB 0.19 0.00 2.90021 -94.838 -2.90021 2.90021 1.09 0.00102391 0.000936161 0.0761459 0.0696741 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.89 0.288384 0.258102 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0418046 0.0373747 113 61 29 29 57 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.64 vpr 55.81 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30472 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57844 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 17.6 MiB 3.67 1315 20411 5511 12546 2354 56.5 MiB 0.35 0.01 4.25391 -147.758 -4.25391 4.25391 1.11 0.000994086 0.00089225 0.11315 0.103377 28 3619 31 6.87369e+06 614849 531479. 1839.03 3.34 0.317653 0.286604 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.23 0.18 0.20 -1 -1 0.23 0.0631457 0.0569627 184 29 128 32 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 8.24 vpr 55.91 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57888 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 17.8 MiB 2.78 1049 18419 4848 10881 2690 56.5 MiB 0.26 0.00 3.66825 -130.624 -3.66825 3.66825 1.09 0.0013016 0.00119368 0.103103 0.0944725 32 2652 21 6.87369e+06 544980 586450. 2029.24 1.38 0.267886 0.241812 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.23 0.05 0.12 -1 -1 0.23 0.0192419 0.0172037 154 65 62 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.37 vpr 55.46 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30344 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 17.0 MiB 3.28 881 17134 5393 9307 2434 55.9 MiB 0.12 0.00 3.56305 -119.83 -3.56305 3.56305 1.13 0.000427417 0.000385003 0.0357597 0.0321821 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.70 0.182776 0.161452 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0180912 0.0159927 116 90 0 0 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.59 vpr 55.79 MiB 0.03 7136 -1 -1 1 0.06 -1 -1 30240 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57784 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 17.6 MiB 1.86 1019 8641 2131 5612 898 56.4 MiB 0.17 0.00 3.59121 -120.774 -3.59121 3.59121 1.09 0.00126852 0.00116354 0.0624269 0.0573386 34 2671 24 6.87369e+06 307425 618332. 2139.56 2.23 0.333225 0.299092 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0567265 0.0510417 141 64 60 30 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.92 vpr 55.85 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 30376 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57652 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 17.6 MiB 4.80 1071 16825 7101 8757 967 56.3 MiB 0.29 0.00 4.97069 -151.888 -4.97069 4.97069 1.09 0.00139951 0.00128299 0.130549 0.119715 34 2813 21 6.87369e+06 307425 618332. 2139.56 2.51 0.423885 0.380841 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0553983 0.0497537 145 124 0 0 124 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.46 vpr 55.79 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30268 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 17.5 MiB 1.76 980 12175 3299 8119 757 56.4 MiB 0.21 0.00 4.75154 -140.36 -4.75154 4.75154 1.09 0.00132183 0.00121201 0.0894524 0.0820483 34 2589 22 6.87369e+06 307425 618332. 2139.56 2.31 0.353967 0.317724 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.29 0.10 0.24 -1 -1 0.29 0.0388269 0.034496 141 90 31 31 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.43 vpr 55.65 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30200 -1 -1 36 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57696 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 17.4 MiB 2.40 1053 19023 5653 10954 2416 56.3 MiB 0.28 0.00 3.64005 -125.414 -3.64005 3.64005 1.09 0.00126159 0.00115487 0.109144 0.0999379 34 2453 25 6.87369e+06 503058 618332. 2139.56 2.21 0.382945 0.34433 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.26 0.12 0.23 -1 -1 0.26 0.0467467 0.0418863 148 64 60 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.89 vpr 55.62 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30364 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57624 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.4 MiB 1.68 1150 19618 5466 12522 1630 56.3 MiB 0.29 0.01 4.1996 -145.707 -4.1996 4.1996 1.09 0.0012939 0.00118752 0.110188 0.100899 34 2754 24 6.87369e+06 531006 618332. 2139.56 4.73 0.533585 0.47835 25762 151098 -1 2446 23 2018 3153 285501 61588 3.6528 3.6528 -145.952 -3.6528 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.042155 0.0375938 156 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.96 vpr 56.37 MiB 0.04 7308 -1 -1 1 0.03 -1 -1 30416 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57864 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 17.9 MiB 3.22 1303 13356 3327 8820 1209 56.5 MiB 0.25 0.01 4.31511 -149.42 -4.31511 4.31511 1.10 0.00157739 0.00143701 0.0893383 0.0817784 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.76 0.292025 0.263153 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.23 0.16 0.20 -1 -1 0.23 0.064505 0.0580583 186 96 62 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.79 vpr 55.19 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.82 908 12636 4255 7048 1333 55.4 MiB 0.20 0.00 3.7654 -130.371 -3.7654 3.7654 1.11 0.00104134 0.000956929 0.0850832 0.0782039 34 2191 32 6.87369e+06 237555 618332. 2139.56 4.23 0.3738 0.334486 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0387821 0.0347372 112 34 62 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.80 vpr 55.62 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30264 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57648 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 17.5 MiB 2.51 1036 19820 6398 10981 2441 56.3 MiB 0.29 0.00 4.25889 -142.345 -4.25889 4.25889 1.10 0.00128943 0.00118258 0.115337 0.105729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.82 0.313251 0.282488 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0564187 0.0507129 152 64 62 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.56 vpr 55.70 MiB 0.04 7012 -1 -1 1 0.04 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 1.66 1118 16515 4839 10227 1449 56.2 MiB 0.25 0.01 3.56001 -125.702 -3.56001 3.56001 1.09 0.00127774 0.00117121 0.0965794 0.0885017 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.72 0.225066 0.202782 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0544757 0.0489526 150 63 62 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.64 vpr 55.59 MiB 0.05 6980 -1 -1 1 0.05 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 1.39 942 16081 4088 11306 687 56.2 MiB 0.25 0.00 4.1996 -144.758 -4.1996 4.1996 1.08 0.00119567 0.00109465 0.105949 0.0973951 34 3051 25 6.87369e+06 293451 618332. 2139.56 5.10 0.434607 0.390707 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0552121 0.0496552 147 3 128 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.92 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.57 1066 20980 7180 11264 2536 56.4 MiB 0.30 0.00 3.54349 -125.696 -3.54349 3.54349 1.09 0.00131527 0.00120455 0.12241 0.111968 34 2404 23 6.87369e+06 503058 618332. 2139.56 2.26 0.405655 0.364603 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0536573 0.0482127 148 96 25 25 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.84 vpr 55.60 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30248 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57640 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 17.4 MiB 3.54 1032 19142 4987 12020 2135 56.3 MiB 0.15 0.00 3.61805 -127.505 -3.61805 3.61805 1.07 0.000469101 0.000421996 0.0394933 0.035634 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.21 0.120024 0.105932 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.058743 0.0527504 152 61 64 32 60 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 10.68 vpr 55.95 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 17.6 MiB 2.71 1111 18648 5184 11229 2235 56.5 MiB 0.27 0.01 3.58025 -126.995 -3.58025 3.58025 1.10 0.00130896 0.00119985 0.103603 0.0947876 32 2918 26 6.87369e+06 558954 586450. 2029.24 1.43 0.279397 0.251941 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.25 0.14 0.23 -1 -1 0.25 0.0532971 0.0479126 156 65 63 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 6.05 vpr 55.73 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57744 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 17.5 MiB 0.81 973 12876 3455 7707 1714 56.4 MiB 0.17 0.00 4.3249 -147.802 -4.3249 4.3249 1.09 0.00124571 0.00114332 0.0697132 0.0639375 34 2850 24 6.87369e+06 544980 618332. 2139.56 2.97 0.3407 0.306136 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0502954 0.0452486 156 34 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.08 vpr 55.69 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30468 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 17.6 MiB 2.68 1087 15172 3966 9854 1352 56.4 MiB 0.23 0.01 4.1996 -143.047 -4.1996 4.1996 1.10 0.00130014 0.00119103 0.0833329 0.076236 34 2680 28 6.87369e+06 572927 618332. 2139.56 2.46 0.373261 0.335166 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.057636 0.0517813 157 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 12.59 vpr 55.73 MiB 0.05 7276 -1 -1 1 0.05 -1 -1 30344 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57832 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 17.5 MiB 3.89 988 19356 5396 10906 3054 56.5 MiB 0.30 0.01 4.16785 -135.645 -4.16785 4.16785 1.08 0.00135647 0.00123529 0.118891 0.108776 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.47 0.295678 0.266328 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0582534 0.0522297 150 122 0 0 122 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.08 vpr 55.63 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57748 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1079 15709 4633 9421 1655 56.4 MiB 0.27 0.00 4.13359 -143.515 -4.13359 4.13359 1.10 0.00136847 0.00125572 0.118955 0.109192 34 3228 24 6.87369e+06 293451 618332. 2139.56 2.52 0.415309 0.373641 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.056652 0.0507683 145 94 32 32 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.71 vpr 55.23 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 17.0 MiB 0.87 919 15426 4260 9754 1412 55.8 MiB 0.20 0.00 3.51475 -125.544 -3.51475 3.51475 1.09 0.00104438 0.00095742 0.0758532 0.069447 32 2428 31 6.87369e+06 447163 586450. 2029.24 1.25 0.178995 0.159835 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.35 0.13 0.21 -1 -1 0.35 0.0474397 0.0425683 121 34 63 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.55 vpr 55.68 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.87 953 12980 4579 7047 1354 55.9 MiB 0.21 0.00 3.6884 -132.193 -3.6884 3.6884 1.10 0.00116066 0.00106251 0.092584 0.0847199 32 2548 27 6.87369e+06 223581 586450. 2029.24 1.45 0.243565 0.21887 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0508874 0.045564 112 94 0 0 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 9.48 vpr 55.90 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30660 -1 -1 44 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57672 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 17.7 MiB 1.92 1419 16556 4403 10830 1323 56.3 MiB 0.28 0.01 4.99284 -170.715 -4.99284 4.99284 1.09 0.0015163 0.00139071 0.101822 0.0933611 28 3950 45 6.87369e+06 614849 531479. 1839.03 3.80 0.361489 0.325926 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.32 0.17 0.19 -1 -1 0.32 0.0548735 0.0493475 189 65 96 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 8.58 vpr 55.57 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30268 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 17.3 MiB 2.52 1069 15831 4027 10006 1798 56.2 MiB 0.24 0.00 3.59121 -127.943 -3.59121 3.59121 1.09 0.0012387 0.00113609 0.0891017 0.0815533 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.67 0.248666 0.224236 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.22 0.16 0.19 -1 -1 0.22 0.0729201 0.0654806 150 34 92 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 6.41 vpr 55.17 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30312 -1 -1 31 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 16.9 MiB 0.66 823 15633 5297 7776 2560 55.9 MiB 0.20 0.00 3.51601 -116.196 -3.51601 3.51601 0.97 0.00101503 0.000930347 0.0784269 0.0717989 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.45 0.208534 0.187477 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.23 0.10 0.20 -1 -1 0.23 0.0425954 0.0380978 116 34 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.67 vpr 56.05 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30780 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57928 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 18.2 MiB 5.50 1193 22455 6528 13018 2909 56.6 MiB 0.35 0.01 4.91264 -167.151 -4.91264 4.91264 1.11 0.00163181 0.00149606 0.141731 0.129909 32 3593 50 6.87369e+06 656770 586450. 2029.24 3.08 0.494372 0.445269 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.25 0.21 0.23 -1 -1 0.25 0.0774819 0.0696756 190 127 32 32 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.33 vpr 55.78 MiB 0.07 6992 -1 -1 1 0.03 -1 -1 30324 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 17.5 MiB 2.89 975 19868 5843 10688 3337 56.1 MiB 0.26 0.00 4.28153 -144.516 -4.28153 4.28153 1.09 0.001252 0.00114858 0.105196 0.0964606 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.85 0.320779 0.28915 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.25 0.13 0.23 -1 -1 0.25 0.0494228 0.04448 156 34 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.14 vpr 55.06 MiB 0.05 6700 -1 -1 1 0.03 -1 -1 30248 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.8 MiB 0.60 857 11197 2857 7409 931 55.5 MiB 0.16 0.00 3.64005 -128.736 -3.64005 3.64005 1.08 0.00101226 0.000930229 0.0536142 0.0492483 30 2290 23 6.87369e+06 461137 556674. 1926.21 1.27 0.18241 0.164049 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.24 0.09 0.21 -1 -1 0.24 0.0392635 0.0352122 123 3 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.85 vpr 55.84 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30608 -1 -1 45 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 17.7 MiB 2.45 1249 21169 5887 12519 2763 56.4 MiB 0.33 0.01 4.9297 -168.732 -4.9297 4.9297 1.09 0.00145751 0.00134042 0.122853 0.11284 28 3487 31 6.87369e+06 628823 531479. 1839.03 2.27 0.333037 0.300399 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.20 0.11 0.10 -1 -1 0.20 0.0270354 0.0239863 189 34 128 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.56 vpr 55.43 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.88 806 12292 2857 8871 564 55.4 MiB 0.18 0.00 3.7764 -134.344 -3.7764 3.7764 1.09 0.00100204 0.000919886 0.0740699 0.0679893 34 2200 24 6.87369e+06 223581 618332. 2139.56 2.03 0.288329 0.258602 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442734 0.0396596 114 3 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.70 vpr 55.35 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30260 -1 -1 33 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 17.0 MiB 2.17 719 10463 2628 6946 889 55.7 MiB 0.15 0.00 3.56001 -114.458 -3.56001 3.56001 1.09 0.00101289 0.000929414 0.0514505 0.0471392 28 2094 21 6.87369e+06 461137 531479. 1839.03 1.35 0.177602 0.159309 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.23 0.12 0.20 -1 -1 0.23 0.0445794 0.0398789 118 34 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.87 vpr 55.88 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30300 -1 -1 35 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 17.3 MiB 3.13 1008 14550 3923 8443 2184 56.2 MiB 0.22 0.00 3.54707 -114.227 -3.54707 3.54707 1.09 0.00124764 0.00114373 0.0860133 0.0788152 34 2543 22 6.87369e+06 489084 618332. 2139.56 2.16 0.348064 0.312387 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0506559 0.04548 141 88 29 29 85 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.96 vpr 55.86 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.6 MiB 2.01 854 12175 2685 7576 1914 56.4 MiB 0.17 0.00 4.2388 -146.065 -4.2388 4.2388 1.08 0.00130557 0.00119751 0.088378 0.0810944 34 2806 28 6.87369e+06 293451 618332. 2139.56 2.72 0.3845 0.345708 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0624378 0.056084 147 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.62 vpr 55.56 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57872 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.8 MiB 3.66 1100 18901 5336 11603 1962 56.5 MiB 0.28 0.01 4.27679 -150.534 -4.27679 4.27679 1.13 0.00133257 0.00121361 0.109351 0.100212 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.49 0.275835 0.248934 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.25 0.13 0.22 -1 -1 0.25 0.0577267 0.0519657 155 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 9.00 vpr 55.22 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30304 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 17.5 MiB 2.87 825 17191 6233 8742 2216 56.2 MiB 0.22 0.00 3.60705 -126.657 -3.60705 3.60705 1.09 0.00112453 0.00102156 0.0892121 0.0815829 36 2048 23 6.87369e+06 461137 648988. 2245.63 2.19 0.327152 0.293305 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.28 0.10 0.25 -1 -1 0.28 0.0455333 0.040803 123 65 32 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.56 vpr 55.48 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 17.2 MiB 3.65 738 4456 873 3135 448 55.8 MiB 0.09 0.00 3.6994 -119.902 -3.6994 3.6994 1.11 0.00111945 0.00102554 0.0312417 0.0286211 34 2217 18 6.87369e+06 251529 618332. 2139.56 2.18 0.257052 0.228718 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0473432 0.0423573 108 90 0 0 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.76 vpr 55.80 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30340 -1 -1 34 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 17.4 MiB 2.81 914 16740 4391 9932 2417 56.2 MiB 0.25 0.00 3.59605 -116.379 -3.59605 3.59605 1.09 0.0012127 0.00111184 0.0962897 0.0883068 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.93 0.294224 0.265012 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0456676 0.0410751 143 60 60 30 57 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.24 vpr 55.54 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30236 -1 -1 35 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 17.4 MiB 1.51 905 12191 3346 7959 886 56.1 MiB 0.18 0.00 4.19891 -125.962 -4.19891 4.19891 1.08 0.00107909 0.0009876 0.0656185 0.0601336 26 2593 24 6.87369e+06 489084 503264. 1741.40 5.06 0.356639 0.319114 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.22 0.17 0.19 -1 -1 0.22 0.0581896 0.0521135 139 34 84 28 28 28 - fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 8.02 vpr 55.38 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30008 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 16.9 MiB 2.30 882 11432 3518 6484 1430 55.9 MiB 0.17 0.00 3.7324 -126.153 -3.7324 3.7324 1.09 0.00106159 0.00096851 0.0732226 0.0671212 30 2191 20 6.87369e+06 251529 556674. 1926.21 1.27 0.204554 0.183942 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.24 0.10 0.22 -1 -1 0.24 0.0434814 0.0389239 110 63 30 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.81 vpr 55.64 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30248 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 17.0 MiB 3.00 904 14256 4718 7453 2085 55.7 MiB 0.21 0.00 3.6144 -123.374 -3.6144 3.6144 1.09 0.00113787 0.00104103 0.0955617 0.0874761 34 2227 20 6.87369e+06 237555 618332. 2139.56 2.01 0.329273 0.295005 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0474534 0.0424574 110 91 0 0 91 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.15 vpr 55.70 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30092 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.80 962 16804 5215 8614 2975 55.7 MiB 0.24 0.00 4.24789 -140.354 -4.24789 4.24789 1.09 0.00116145 0.00106722 0.0873249 0.0801762 28 3199 26 6.87369e+06 517032 531479. 1839.03 2.28 0.250761 0.22665 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.23 0.13 0.19 -1 -1 0.23 0.0437922 0.039451 151 4 124 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.36 vpr 55.75 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30600 -1 -1 38 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57764 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 17.6 MiB 3.79 1093 19380 5712 11198 2470 56.4 MiB 0.28 0.00 4.29189 -149.386 -4.29189 4.29189 1.10 0.00130819 0.00119912 0.110505 0.101271 28 2995 25 6.87369e+06 531006 531479. 1839.03 2.01 0.285741 0.25811 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.23 0.17 0.20 -1 -1 0.23 0.061956 0.0556043 156 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 10.38 vpr 55.95 MiB 0.06 7120 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57868 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.6 MiB 3.49 1146 17256 4889 10338 2029 56.5 MiB 0.25 0.01 4.30289 -150.744 -4.30289 4.30289 1.13 0.00131452 0.00120538 0.10021 0.0917902 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.49 0.271869 0.245314 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.24 0.12 0.21 -1 -1 0.24 0.0539159 0.0485512 155 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.93 vpr 55.87 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30308 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57708 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 17.6 MiB 2.76 1114 16491 4519 10066 1906 56.4 MiB 0.24 0.00 4.16249 -142.489 -4.16249 4.16249 1.09 0.00128902 0.001182 0.0919472 0.0842052 28 3159 33 6.87369e+06 544980 531479. 1839.03 2.22 0.279039 0.251149 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0551732 0.049603 152 65 60 30 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 9.14 vpr 55.57 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30320 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 17.0 MiB 2.33 746 10406 2932 6420 1054 55.6 MiB 0.08 0.00 3.7324 -121.378 -3.7324 3.7324 0.85 0.000372419 0.000336969 0.0239254 0.0216664 32 2264 21 6.87369e+06 265503 586450. 2029.24 1.06 0.127374 0.113439 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0379553 0.0340229 110 34 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.47 vpr 55.76 MiB 0.09 7120 -1 -1 1 0.03 -1 -1 30244 -1 -1 23 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 17.6 MiB 2.86 980 15709 4819 8970 1920 56.2 MiB 0.24 0.00 4.23999 -140.261 -4.23999 4.23999 1.09 0.00123933 0.00113657 0.108104 0.0991652 30 2357 25 6.87369e+06 321398 556674. 1926.21 1.40 0.273552 0.247045 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.24 0.11 0.21 -1 -1 0.24 0.048876 0.0439815 140 63 60 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.80 vpr 55.66 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30704 -1 -1 43 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57796 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 17.8 MiB 4.94 1155 15540 3963 10188 1389 56.4 MiB 0.25 0.01 4.23385 -146.284 -4.23385 4.23385 1.10 0.00143231 0.00131125 0.0918142 0.0839438 36 2614 23 6.87369e+06 600875 648988. 2245.63 5.31 0.553709 0.495023 26050 158493 -1 2236 22 1922 3310 238312 53285 3.7984 3.7984 -145.312 -3.7984 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0606896 0.0544609 158 127 0 0 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 8.54 vpr 55.84 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30672 -1 -1 33 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 17.5 MiB 1.13 1029 18273 5989 9373 2911 56.4 MiB 0.28 0.00 4.26989 -143.564 -4.26989 4.26989 1.10 0.0013292 0.00121843 0.115224 0.105399 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.96 0.29021 0.261855 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0587209 0.0527411 149 94 31 31 93 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.68 vpr 55.72 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30296 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 17.4 MiB 2.13 942 16921 5030 8706 3185 56.3 MiB 0.26 0.00 3.63595 -118.056 -3.63595 3.63595 1.11 0.00129147 0.0011745 0.104866 0.0959652 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.43 0.26805 0.241618 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.24 0.11 0.23 -1 -1 0.24 0.0544816 0.0490122 141 92 26 26 90 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.33 vpr 55.72 MiB 0.04 7108 -1 -1 1 0.03 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57752 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.5 MiB 4.20 1087 14593 4252 9147 1194 56.4 MiB 0.25 0.00 4.1996 -148.308 -4.1996 4.1996 1.09 0.00131185 0.00119979 0.104756 0.0960073 34 3260 29 6.87369e+06 293451 618332. 2139.56 2.76 0.405476 0.3646 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.27 0.17 0.25 -1 -1 0.27 0.0585466 0.0526476 147 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.52 vpr 55.64 MiB 0.05 7192 -1 -1 1 0.05 -1 -1 30256 -1 -1 36 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 17.5 MiB 2.06 943 12751 3363 8405 983 56.3 MiB 0.19 0.00 3.54105 -112.818 -3.54105 3.54105 1.09 0.00123142 0.00112562 0.0748271 0.0684231 26 2618 24 6.87369e+06 503058 503264. 1741.40 1.38 0.234725 0.211018 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0545144 0.0487992 138 88 26 26 85 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 6.53 vpr 55.13 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.57 862 12292 3174 7904 1214 55.4 MiB 0.18 0.00 3.7104 -131.958 -3.7104 3.7104 1.12 0.00100362 0.000922219 0.0746089 0.0685757 34 2313 18 6.87369e+06 223581 618332. 2139.56 2.03 0.28088 0.25212 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.03976 0.0356894 114 3 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.39 vpr 55.92 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 17.4 MiB 4.26 1088 19841 5443 12522 1876 56.2 MiB 0.29 0.00 4.3249 -149.309 -4.3249 4.3249 0.97 0.00131232 0.00120317 0.114438 0.104874 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.47 0.28609 0.258578 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.25 0.16 0.23 -1 -1 0.25 0.0608695 0.0547121 155 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 10.36 vpr 55.89 MiB 0.06 7144 -1 -1 1 0.03 -1 -1 30324 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57560 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 17.4 MiB 3.73 1071 15151 5130 8107 1914 56.2 MiB 0.25 0.00 4.2388 -148.068 -4.2388 4.2388 1.11 0.00132256 0.00121264 0.110844 0.101689 36 2570 23 6.87369e+06 293451 648988. 2245.63 2.42 0.386212 0.348119 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0568759 0.051179 147 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.72 vpr 55.30 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30408 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.8 MiB 3.30 885 16708 4981 9424 2303 55.7 MiB 0.21 0.00 3.50501 -121.209 -3.50501 3.50501 1.09 0.00103825 0.000950236 0.08374 0.0765164 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.96 0.300484 0.268971 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0441301 0.0394684 112 55 32 32 54 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.58 vpr 55.52 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30236 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.1 MiB 0.81 723 6960 1528 4773 659 55.7 MiB 0.11 0.00 3.7434 -125.643 -3.7434 3.7434 1.09 0.000977327 0.000897497 0.0418375 0.0384254 32 2245 24 6.87369e+06 237555 586450. 2029.24 1.29 0.168793 0.151451 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.26 0.10 0.22 -1 -1 0.26 0.0377807 0.0338349 112 4 93 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.25 vpr 55.90 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30144 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1023 18795 5447 10788 2560 56.2 MiB 0.27 0.00 4.30799 -144.78 -4.30799 4.30799 1.09 0.00125949 0.00115511 0.107386 0.0984442 28 2603 22 6.87369e+06 489084 531479. 1839.03 1.36 0.26606 0.240151 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.23 0.11 0.20 -1 -1 0.23 0.0483096 0.0434119 144 59 60 32 58 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 8.97 vpr 55.94 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30208 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 17.5 MiB 1.11 1094 18745 5603 10775 2367 56.4 MiB 0.29 0.00 4.21185 -141.009 -4.21185 4.21185 1.11 0.00128774 0.00117989 0.11907 0.109052 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.84 0.314912 0.284099 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0590969 0.0530692 142 88 28 28 88 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.58 vpr 55.80 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.7 MiB 0.82 1329 17642 5677 9392 2573 56.4 MiB 0.30 0.01 4.98719 -165.596 -4.98719 4.98719 1.09 0.00136193 0.00125091 0.100963 0.0927292 34 3730 48 6.87369e+06 572927 618332. 2139.56 4.55 0.458307 0.413016 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0607563 0.0548514 183 3 156 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.65 vpr 55.59 MiB 0.07 7140 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 17.3 MiB 2.48 1005 13300 3782 8501 1017 56.1 MiB 0.20 0.00 3.59605 -120.715 -3.59605 3.59605 1.09 0.000850777 0.000752712 0.0744596 0.067962 34 2294 27 6.87369e+06 447163 618332. 2139.56 2.19 0.350218 0.313814 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0455673 0.0409405 141 59 60 30 56 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 6.02 vpr 55.20 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30552 -1 -1 20 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 16.7 MiB 0.71 735 12247 4571 5926 1750 55.2 MiB 0.15 0.00 3.6866 -109.378 -3.6866 3.6866 1.10 0.000920412 0.000844213 0.0691612 0.0634772 32 1771 18 6.87369e+06 279477 586450. 2029.24 1.22 0.180616 0.162515 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.25 0.09 0.23 -1 -1 0.25 0.0360551 0.0322131 102 34 54 27 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 11.40 vpr 56.18 MiB 0.03 7320 -1 -1 1 0.04 -1 -1 30500 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58040 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 18.0 MiB 2.43 1290 11856 2585 8478 793 56.7 MiB 0.22 0.01 4.1886 -144.868 -4.1886 4.1886 1.09 0.00155832 0.00142839 0.0795426 0.0728919 30 3626 23 6.87369e+06 586901 556674. 1926.21 2.08 0.280669 0.252705 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.24 0.15 0.21 -1 -1 0.24 0.0685829 0.0616929 184 95 62 31 95 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 10.85 vpr 55.87 MiB 0.07 7372 -1 -1 1 0.03 -1 -1 30360 -1 -1 23 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57732 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 17.6 MiB 3.37 874 9914 2276 6234 1404 56.4 MiB 0.17 0.00 4.91157 -150.663 -4.91157 4.91157 1.09 0.00139285 0.00127718 0.0768254 0.0704378 34 2604 24 6.87369e+06 321398 618332. 2139.56 3.12 0.379643 0.340289 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0593029 0.0531926 144 124 0 0 124 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.20 vpr 55.56 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 17.1 MiB 3.07 802 14356 5267 6628 2461 56.0 MiB 0.23 0.00 4.598 -126.496 -4.598 4.598 1.09 0.00119132 0.0010923 0.102433 0.0938666 34 2153 24 6.87369e+06 223581 618332. 2139.56 2.11 0.341766 0.306251 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.03469 0.0311654 107 89 0 0 89 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 6.72 vpr 55.86 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 17.4 MiB 0.91 1114 14723 4652 8968 1103 56.3 MiB 0.23 0.00 4.1955 -143.003 -4.1955 4.1955 1.09 0.00121566 0.00111521 0.0828473 0.0759451 28 2955 24 6.87369e+06 475111 531479. 1839.03 2.21 0.24866 0.224311 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.31 0.15 0.17 -1 -1 0.31 0.0463086 0.0416025 147 34 90 30 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.14 vpr 55.91 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30488 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57944 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 17.8 MiB 1.86 1006 19865 6118 9930 3817 56.6 MiB 0.30 0.01 4.28153 -140.004 -4.28153 4.28153 1.08 0.00145131 0.00132535 0.122994 0.112698 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.85 0.448514 0.403318 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0699357 0.063202 176 64 87 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.81 vpr 55.66 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30276 -1 -1 36 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 17.4 MiB 1.78 1085 17873 5357 10009 2507 56.3 MiB 0.26 0.00 3.50639 -115.998 -3.50639 3.50639 1.03 0.00120742 0.00110619 0.0991312 0.0906683 34 2647 22 6.87369e+06 503058 618332. 2139.56 2.39 0.360665 0.324009 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0508431 0.0456254 144 61 58 30 58 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 10.80 vpr 55.95 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30428 -1 -1 46 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57760 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 17.6 MiB 2.50 1127 20887 5685 13197 2005 56.4 MiB 0.30 0.01 4.26133 -148.826 -4.26133 4.26133 1.13 0.00132608 0.00121627 0.108511 0.0993462 28 2839 24 6.87369e+06 642796 531479. 1839.03 4.62 0.48434 0.434526 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0604467 0.0542994 160 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.92 vpr 56.01 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30316 -1 -1 42 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 17.5 MiB 2.72 1115 19606 5308 11826 2472 56.4 MiB 0.22 0.00 3.52575 -126.542 -3.52575 3.52575 1.09 0.00130927 0.00120004 0.0773502 0.0705829 26 2952 46 6.87369e+06 586901 503264. 1741.40 5.33 0.489945 0.438441 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.22 0.15 0.19 -1 -1 0.22 0.0604928 0.0544232 157 65 63 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.85 vpr 55.21 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30244 -1 -1 19 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 16.8 MiB 1.59 669 12808 5105 6141 1562 55.3 MiB 0.17 0.00 3.73366 -117.212 -3.73366 3.73366 1.09 0.000986938 0.000905567 0.075913 0.0696974 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.88 0.283186 0.253465 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.27 0.09 0.24 -1 -1 0.27 0.0384609 0.0343803 107 34 58 29 29 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.66 vpr 55.68 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 29896 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 17.0 MiB 2.15 808 7256 1653 5365 238 55.8 MiB 0.12 0.00 4.2805 -117.484 -4.2805 4.2805 1.08 0.00106351 0.000973242 0.0469331 0.0429648 34 2056 25 6.87369e+06 237555 618332. 2139.56 2.16 0.27409 0.244396 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0278174 0.0250143 102 82 0 0 82 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.91 vpr 55.51 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 17.4 MiB 1.51 1136 19618 6151 11073 2394 56.3 MiB 0.16 0.00 4.1886 -141.394 -4.1886 4.1886 0.74 0.00044562 0.000402307 0.0387907 0.0349967 28 2901 39 6.87369e+06 544980 531479. 1839.03 7.23 0.449361 0.401422 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.23 0.15 0.20 -1 -1 0.23 0.0507999 0.0457325 152 34 93 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.13 vpr 55.48 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30256 -1 -1 32 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 16.8 MiB 3.01 794 17103 5256 9538 2309 55.5 MiB 0.20 0.00 3.45975 -106.144 -3.45975 3.45975 1.09 0.000979672 0.000896522 0.08238 0.0754043 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.88 0.228654 0.204946 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.21 0.15 0.18 -1 -1 0.21 0.0463009 0.0412794 108 56 29 29 52 26 - fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.77 vpr 55.31 MiB 0.03 6876 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.9 MiB 3.03 809 12464 3077 8852 535 55.6 MiB 0.18 0.00 3.7104 -131.395 -3.7104 3.7104 1.09 0.00105807 0.000969767 0.0795555 0.0729274 34 2309 26 6.87369e+06 223581 618332. 2139.56 2.09 0.310146 0.27807 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0454597 0.0407274 114 34 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.81 vpr 55.83 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30248 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 17.2 MiB 2.40 1003 13598 3664 8482 1452 56.1 MiB 0.21 0.00 3.61625 -124.489 -3.61625 3.61625 1.10 0.00126571 0.00115235 0.0810274 0.074193 34 2208 22 6.87369e+06 489084 618332. 2139.56 2.04 0.343567 0.308435 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.25 0.11 0.12 -1 -1 0.25 0.0499151 0.0449128 146 64 58 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.54 vpr 55.40 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 16.9 MiB 2.72 698 11402 3727 5924 1751 55.5 MiB 0.16 0.00 3.33623 -109.833 -3.33623 3.33623 1.09 0.00101284 0.000927695 0.0709334 0.0650056 26 2239 28 6.87369e+06 223581 503264. 1741.40 1.39 0.210077 0.188495 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.22 0.10 0.19 -1 -1 0.22 0.0414317 0.0370302 103 55 31 31 53 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 8.03 vpr 55.85 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30336 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 17.5 MiB 2.69 1019 17256 4700 9815 2741 56.3 MiB 0.27 0.00 3.59195 -122.625 -3.59195 3.59195 1.12 0.00127267 0.00117015 0.103855 0.0954727 32 2782 36 6.87369e+06 517032 586450. 2029.24 1.50 0.29674 0.268021 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.26 0.12 0.23 -1 -1 0.26 0.052765 0.0473424 143 65 52 26 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.71 vpr 55.93 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30184 -1 -1 39 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 17.4 MiB 3.20 929 10336 2368 6764 1204 56.3 MiB 0.17 0.00 3.59605 -120.102 -3.59605 3.59605 1.09 0.00133545 0.00122132 0.0616196 0.0564357 32 2620 21 6.87369e+06 544980 586450. 2029.24 1.37 0.234426 0.211059 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.26 0.14 0.23 -1 -1 0.26 0.0590926 0.0530465 151 93 31 31 92 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.88 vpr 55.40 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30156 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 17.1 MiB 2.45 812 13206 3975 7418 1813 56.0 MiB 0.19 0.00 3.26897 -114.681 -3.26897 3.26897 1.10 0.00108392 0.000993278 0.0850913 0.078055 34 2174 27 6.87369e+06 237555 618332. 2139.56 2.02 0.321308 0.287997 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.26 0.11 0.26 -1 -1 0.26 0.0448786 0.0401443 110 61 32 32 60 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.76 vpr 55.59 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 29980 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 17.0 MiB 2.95 923 10056 2840 6443 773 55.9 MiB 0.15 0.00 3.6884 -128.712 -3.6884 3.6884 1.13 0.000405948 0.000366752 0.0511513 0.0463937 32 2547 22 6.87369e+06 223581 586450. 2029.24 1.26 0.191901 0.171803 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.26 0.13 0.23 -1 -1 0.26 0.0483064 0.0432727 112 63 32 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.35 vpr 55.73 MiB 0.07 7076 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57444 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 17.4 MiB 2.74 1032 14988 3846 9829 1313 56.1 MiB 0.22 0.00 4.29009 -147.998 -4.29009 4.29009 1.09 0.00130278 0.00119408 0.0834234 0.0763957 34 2540 20 6.87369e+06 558954 618332. 2139.56 4.29 0.428636 0.38496 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0571672 0.0512904 157 65 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 8.48 vpr 55.82 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57608 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 17.5 MiB 2.21 880 11759 2826 8215 718 56.3 MiB 0.18 0.00 3.59605 -112.745 -3.59605 3.59605 1.08 0.00119842 0.00109756 0.0680043 0.0622394 26 2672 41 6.87369e+06 475111 503264. 1741.40 2.51 0.259521 0.232995 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.22 0.14 0.19 -1 -1 0.22 0.0530434 0.0476059 140 62 56 29 58 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.66 vpr 56.02 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58116 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 17.8 MiB 4.91 930 19136 5654 10352 3130 56.8 MiB 0.29 0.00 4.25669 -144.754 -4.25669 4.25669 1.09 0.00145576 0.00132467 0.117157 0.107151 34 2868 25 6.87369e+06 558954 618332. 2139.56 2.66 0.430571 0.386365 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0642893 0.0576968 157 127 0 0 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.28 vpr 55.14 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.8 MiB 0.66 801 6501 1452 4525 524 55.3 MiB 0.10 0.00 3.09052 -106.923 -3.09052 3.09052 1.10 0.000927716 0.000847719 0.0378828 0.0348177 32 2327 32 6.87369e+06 223581 586450. 2029.24 1.28 0.170328 0.15258 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.25 0.09 0.24 -1 -1 0.25 0.0368146 0.0329258 104 4 85 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.28 vpr 55.93 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30404 -1 -1 37 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57668 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 17.4 MiB 1.56 977 17961 5555 9821 2585 56.3 MiB 0.27 0.00 4.24789 -140.827 -4.24789 4.24789 1.07 0.00131904 0.00120688 0.106961 0.0978882 34 2366 23 6.87369e+06 517032 618332. 2139.56 2.23 0.38647 0.347304 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0455769 0.0410556 147 92 28 28 92 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.11 vpr 55.75 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57464 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 17.3 MiB 3.97 961 12808 4157 6979 1672 56.1 MiB 0.19 0.00 3.7416 -135.274 -3.7416 3.7416 1.08 0.00118931 0.00108583 0.0914608 0.0837769 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.99 0.330419 0.296459 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0505681 0.0453162 114 96 0 0 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.59 vpr 55.62 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30140 -1 -1 39 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57768 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 17.7 MiB 2.67 1013 13117 3136 9263 718 56.4 MiB 0.20 0.00 3.62407 -127.528 -3.62407 3.62407 1.12 0.00129711 0.00118762 0.0743217 0.0680471 28 2551 39 6.87369e+06 544980 531479. 1839.03 4.91 0.492159 0.440991 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.23 0.13 0.20 -1 -1 0.23 0.0586254 0.0526483 153 65 61 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.36 vpr 56.08 MiB 0.05 7344 -1 -1 1 0.04 -1 -1 30636 -1 -1 47 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57836 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 18.0 MiB 4.25 1138 14475 3597 10051 827 56.5 MiB 0.24 0.01 4.97494 -166.026 -4.97494 4.97494 1.11 0.00157429 0.00144372 0.0902171 0.0826053 32 3530 43 6.87369e+06 656770 586450. 2029.24 3.19 0.449144 0.403601 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.25 0.18 0.23 -1 -1 0.25 0.0697728 0.0627571 190 96 64 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.19 vpr 55.13 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30060 -1 -1 14 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 16.5 MiB 1.88 613 9036 2242 6211 583 55.1 MiB 0.10 0.00 2.94746 -92.2629 -2.94746 2.94746 1.08 0.000826164 0.000756074 0.0485089 0.0443973 32 1520 24 6.87369e+06 195634 586450. 2029.24 1.18 0.154719 0.137871 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.27 0.06 0.23 -1 -1 0.27 0.0270632 0.0241373 72 56 0 0 53 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 6.80 vpr 55.34 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30400 -1 -1 18 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 17.0 MiB 0.88 764 12120 4745 5717 1658 55.6 MiB 0.17 0.00 3.7196 -120.247 -3.7196 3.7196 1.08 0.00100245 0.000919293 0.073641 0.0676216 32 2131 23 6.87369e+06 251529 586450. 2029.24 1.32 0.208901 0.187767 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0417964 0.0374989 109 34 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.36 vpr 55.49 MiB 0.06 6788 -1 -1 1 0.03 -1 -1 29972 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 1.20 884 12464 4265 6183 2016 55.8 MiB 0.19 0.00 3.52575 -127.584 -3.52575 3.52575 1.12 0.00105951 0.000971489 0.0798827 0.0732865 34 2591 20 6.87369e+06 223581 618332. 2139.56 2.20 0.302826 0.271749 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0454407 0.040734 114 34 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.55 vpr 55.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30220 -1 -1 37 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 16.8 MiB 0.70 742 15004 4316 8330 2358 55.4 MiB 0.16 0.00 3.44875 -93.4127 -3.44875 3.44875 1.09 0.000854018 0.000783927 0.0607647 0.0557098 30 1638 20 6.87369e+06 517032 556674. 1926.21 1.16 0.166854 0.149702 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.24 0.07 0.21 -1 -1 0.24 0.0363373 0.0323751 105 34 50 25 25 25 - fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 9.00 vpr 55.77 MiB 0.05 7084 -1 -1 1 0.04 -1 -1 30456 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57804 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 17.6 MiB 2.59 1035 11989 3061 8035 893 56.4 MiB 0.22 0.00 4.14459 -143.245 -4.14459 4.14459 1.09 0.0013562 0.001244 0.0907648 0.0832284 34 2922 23 6.87369e+06 293451 618332. 2139.56 2.47 0.381062 0.342383 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0540051 0.0485936 145 94 32 32 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.25 vpr 56.01 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30368 -1 -1 40 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57776 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 17.5 MiB 2.48 969 12394 3038 8536 820 56.4 MiB 0.22 0.00 3.62425 -121.977 -3.62425 3.62425 1.09 0.0013258 0.00121371 0.0731911 0.0669092 34 2208 23 6.87369e+06 558954 618332. 2139.56 2.12 0.348828 0.313058 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0563087 0.050581 151 94 29 29 93 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.98 vpr 55.70 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30696 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57824 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 17.7 MiB 1.51 1383 18363 6134 9531 2698 56.5 MiB 0.29 0.00 5.11247 -173.262 -5.11247 5.11247 1.11 0.00136889 0.00125589 0.123562 0.113312 36 3373 46 6.89349e+06 408721 648988. 2245.63 2.32 0.406356 0.365566 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.27 0.13 0.25 -1 -1 0.27 0.0544409 0.0490083 192 96 32 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 8.04 vpr 55.62 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 17.3 MiB 1.40 1338 16411 5641 8181 2589 56.2 MiB 0.27 0.00 5.22297 -160.634 -5.22297 5.22297 1.10 0.00128627 0.001179 0.107 0.0981205 36 3246 31 6.89349e+06 408721 648988. 2245.63 3.18 0.406578 0.365169 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.059088 0.0531184 177 91 30 30 89 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.84 vpr 55.46 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57556 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1277 15533 4267 9018 2248 56.2 MiB 0.25 0.00 4.0146 -140.879 -4.0146 4.0146 1.11 0.00124275 0.00114037 0.101139 0.0928326 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.72 0.344117 0.309048 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0543935 0.0488254 167 65 54 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.58 vpr 55.38 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 17.1 MiB 1.87 1071 16718 5447 9404 1867 55.8 MiB 0.26 0.00 4.53305 -141.516 -4.53305 4.53305 1.09 0.00115246 0.00105837 0.104988 0.0964274 34 2586 28 6.89349e+06 352346 618332. 2139.56 2.31 0.360871 0.324595 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.25 0.12 0.12 -1 -1 0.25 0.0544238 0.0491291 148 34 87 29 29 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.81 vpr 55.50 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30176 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.80 1361 14518 4265 8140 2113 56.1 MiB 0.25 0.00 5.03124 -172.909 -5.03124 5.03124 1.09 0.0012536 0.00115063 0.096697 0.088769 36 3336 26 6.89349e+06 338252 648988. 2245.63 3.02 0.368821 0.331917 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.051755 0.0466229 163 34 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.74 vpr 55.73 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30272 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 17.3 MiB 1.67 1499 20359 6047 11800 2512 56.2 MiB 0.31 0.00 4.44565 -148.532 -4.44565 4.44565 1.11 0.00130863 0.00119477 0.111076 0.101693 34 3677 25 6.89349e+06 577847 618332. 2139.56 2.42 0.394564 0.354635 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0602492 0.0541408 179 64 63 32 63 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 7.07 vpr 55.34 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 16.8 MiB 1.40 730 14528 4147 9388 993 55.4 MiB 0.18 0.00 3.83226 -109.129 -3.83226 3.83226 1.09 0.00092199 0.000846013 0.080196 0.073594 30 2039 26 6.89349e+06 295971 556674. 1926.21 1.26 0.203473 0.183027 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.25 0.08 0.22 -1 -1 0.25 0.0348895 0.0312113 112 34 54 27 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.95 vpr 55.32 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30068 -1 -1 35 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 17.0 MiB 0.71 921 14273 4335 7347 2591 55.9 MiB 0.19 0.00 3.53335 -112.01 -3.53335 3.53335 1.12 0.00110927 0.00101633 0.0732409 0.067169 34 2397 23 6.89349e+06 493284 618332. 2139.56 2.27 0.310785 0.278997 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.28 0.10 0.24 -1 -1 0.28 0.0435769 0.0392277 141 4 115 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.91 vpr 55.37 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30036 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 16.9 MiB 1.45 1141 14358 3961 8348 2049 55.8 MiB 0.21 0.00 3.63141 -123.531 -3.63141 3.63141 1.08 0.00108759 0.00099754 0.0883532 0.0809961 34 2852 46 6.89349e+06 295971 618332. 2139.56 2.15 0.358428 0.320911 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.23 0.05 0.12 -1 -1 0.23 0.0178254 0.0158153 140 85 0 0 84 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 8.38 vpr 55.60 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30172 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 16.8 MiB 1.54 873 6923 1573 5100 250 55.4 MiB 0.13 0.00 3.71245 -131.003 -3.71245 3.71245 1.12 0.00106001 0.000971926 0.0437538 0.0401808 34 2505 33 6.89349e+06 267783 618332. 2139.56 2.19 0.287155 0.256707 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.043448 0.038937 127 34 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 8.12 vpr 55.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 29956 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 16.9 MiB 1.85 942 6923 1677 4944 302 55.8 MiB 0.12 0.00 4.3965 -138.695 -4.3965 4.3965 1.09 0.00105606 0.000968547 0.0434979 0.0398943 34 2532 21 6.89349e+06 295971 618332. 2139.56 2.02 0.265101 0.236665 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0404029 0.0362732 135 63 30 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.70 vpr 55.42 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 17.1 MiB 1.46 883 15822 6326 7340 2156 56.0 MiB 0.21 0.00 3.8129 -121.35 -3.8129 3.8129 1.09 0.00107698 0.000986947 0.0956625 0.0876655 36 2401 21 6.89349e+06 281877 648988. 2245.63 2.21 0.208253 0.185991 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.28 0.08 0.26 -1 -1 0.28 0.0349059 0.0313245 135 65 25 25 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.61 vpr 55.43 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30156 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 17.3 MiB 1.18 987 17513 5731 7853 3929 56.2 MiB 0.24 0.00 4.23419 -140.25 -4.23419 4.23419 1.09 0.00125968 0.0011549 0.114865 0.105364 38 3008 43 6.89349e+06 352346 678818. 2348.85 5.66 0.434431 0.390421 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.29 0.12 0.27 -1 -1 0.29 0.0517175 0.0465408 161 58 64 32 57 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.25 vpr 55.73 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30324 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 17.3 MiB 1.37 1162 11063 2970 6995 1098 56.2 MiB 0.20 0.00 5.02024 -166.562 -5.02024 5.02024 1.09 0.00130709 0.00119856 0.0738583 0.0677701 36 3019 23 6.89349e+06 394628 648988. 2245.63 5.11 0.513472 0.460421 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.29 0.12 0.25 -1 -1 0.29 0.0524035 0.0472601 175 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.28 vpr 55.11 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30452 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 16.9 MiB 1.28 754 11296 2879 7697 720 55.4 MiB 0.14 0.00 3.61645 -112 -3.61645 3.61645 1.09 0.000927892 0.000851206 0.061432 0.056349 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.56 0.168444 0.149699 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0382689 0.0342084 112 29 58 29 24 24 - fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.65 vpr 55.64 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30256 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 17.3 MiB 2.17 1259 17315 5682 9212 2421 56.0 MiB 0.30 0.00 4.31019 -146.5 -4.31019 4.31019 1.08 0.00130856 0.00119838 0.118818 0.108724 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.93 0.421214 0.378867 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.26 0.16 0.25 -1 -1 0.26 0.0559457 0.0503326 174 63 64 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 8.15 vpr 55.36 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30088 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 17.5 MiB 1.12 1183 12365 3291 7811 1263 56.2 MiB 0.21 0.00 3.69045 -130.871 -3.69045 3.69045 1.09 0.00124759 0.00114426 0.0812765 0.0745712 34 2840 24 6.89349e+06 352346 618332. 2139.56 2.09 0.350162 0.314537 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0430797 0.0387803 160 57 64 32 56 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 8.81 vpr 55.70 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 29980 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 17.1 MiB 1.66 1015 15395 4903 8010 2482 55.8 MiB 0.23 0.00 3.61051 -123.557 -3.61051 3.61051 1.09 0.00110378 0.00101189 0.0930561 0.0852333 38 2435 45 6.89349e+06 310065 678818. 2348.85 2.16 0.329983 0.295801 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.29 0.10 0.27 -1 -1 0.29 0.0436179 0.0391263 139 65 29 29 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.15 vpr 54.88 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30008 -1 -1 15 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 16.6 MiB 0.91 569 8227 1998 5670 559 55.2 MiB 0.09 0.00 3.06366 -95.1937 -3.06366 3.06366 1.08 0.000785957 0.000719875 0.0417056 0.0382333 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.72 0.19894 0.176349 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.26 0.06 0.24 -1 -1 0.26 0.0306987 0.0272957 85 34 24 24 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 8.29 vpr 55.26 MiB 0.07 7028 -1 -1 1 0.03 -1 -1 30204 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57228 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.25 1101 13663 4048 7780 1835 55.9 MiB 0.20 0.00 4.32835 -147.32 -4.32835 4.32835 1.09 0.00108544 0.000994356 0.0826283 0.075713 34 2756 25 6.89349e+06 310065 618332. 2139.56 2.20 0.31735 0.28424 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0428532 0.0383767 141 64 31 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 7.61 vpr 55.39 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30128 -1 -1 40 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 17.2 MiB 0.88 1052 20112 6009 11047 3056 56.0 MiB 0.28 0.00 4.67003 -155.404 -4.67003 4.67003 1.09 0.00122759 0.00112697 0.104547 0.0958651 34 2792 26 6.89349e+06 563754 618332. 2139.56 2.25 0.372358 0.335067 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0482795 0.0434386 166 34 91 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.24 vpr 55.65 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30424 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57916 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 17.7 MiB 1.19 1507 16511 4972 9774 1765 56.6 MiB 0.28 0.00 4.34661 -147.62 -4.34661 4.34661 1.09 0.00141635 0.00129871 0.11316 0.103747 36 3423 27 6.89349e+06 436909 648988. 2245.63 2.45 0.425235 0.381742 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.28 0.13 0.25 -1 -1 0.28 0.0604197 0.0542048 201 124 0 0 125 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 7.23 vpr 54.97 MiB 0.04 6844 -1 -1 1 0.02 -1 -1 30416 -1 -1 18 26 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 16.4 MiB 1.24 692 10476 3888 5359 1229 55.0 MiB 0.11 0.00 2.84541 -81.5212 -2.84541 2.84541 1.08 0.000681952 0.000623278 0.0465168 0.0425616 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.11 0.142382 0.127156 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.24 0.04 0.22 -1 -1 0.24 0.0200953 0.0179743 77 30 26 26 22 22 - fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.81 vpr 55.14 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30068 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 17.0 MiB 1.04 1016 9571 2543 6414 614 55.6 MiB 0.16 0.00 4.12784 -139.243 -4.12784 4.12784 1.09 0.00116065 0.0010666 0.0625346 0.0574674 30 2786 37 6.89349e+06 295971 556674. 1926.21 6.83 0.390306 0.34993 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.25 0.12 0.21 -1 -1 0.25 0.0535346 0.0481575 141 3 122 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.13 vpr 54.64 MiB 0.04 6604 -1 -1 1 0.03 -1 -1 30372 -1 -1 12 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.4 MiB 0.32 514 9356 2285 6456 615 54.8 MiB 0.10 0.00 2.43188 -86.7872 -2.43188 2.43188 1.09 0.000727314 0.000665536 0.0442692 0.0405313 28 1509 16 6.89349e+06 169126 531479. 1839.03 1.17 0.12814 0.114784 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.23 0.07 0.21 -1 -1 0.23 0.0271462 0.0242241 71 3 53 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 7.56 vpr 55.33 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 17.1 MiB 1.25 1097 15929 4551 10101 1277 55.9 MiB 0.27 0.00 4.62958 -159.64 -4.62958 4.62958 1.11 0.00124584 0.00114369 0.103313 0.0949122 30 2755 25 6.89349e+06 352346 556674. 1926.21 1.40 0.270652 0.245017 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.24 0.10 0.21 -1 -1 0.24 0.0451724 0.0407672 161 34 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.90 vpr 55.35 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 29992 -1 -1 36 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.9 MiB 0.67 885 10772 2583 7345 844 56.0 MiB 0.17 0.00 3.4709 -116.935 -3.4709 3.4709 1.09 0.00118467 0.00108796 0.0576658 0.0529116 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.44 0.244892 0.220432 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.25 0.11 0.23 -1 -1 0.25 0.0479959 0.0431734 151 3 124 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.86 vpr 55.67 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30384 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57576 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.64 1365 8130 1863 5269 998 56.2 MiB 0.16 0.00 4.69935 -162.091 -4.69935 4.69935 1.10 0.00132339 0.00121653 0.0569596 0.0523617 34 3698 26 6.89349e+06 366440 618332. 2139.56 2.79 0.346041 0.310608 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0564116 0.0508141 174 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.29 vpr 55.23 MiB 0.16 6920 -1 -1 1 0.03 -1 -1 29932 -1 -1 17 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 16.9 MiB 1.68 863 14256 5690 7135 1431 55.4 MiB 0.19 0.00 3.57625 -122.952 -3.57625 3.57625 1.08 0.000996731 0.00091434 0.0839661 0.0769847 36 2395 27 6.89349e+06 239595 648988. 2245.63 4.94 0.395944 0.353557 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.28 0.11 0.25 -1 -1 0.28 0.0429802 0.0384585 118 34 54 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.81 vpr 55.27 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30168 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 16.9 MiB 1.48 1065 12331 4460 6746 1125 55.6 MiB 0.18 0.00 4.27029 -139.911 -4.27029 4.27029 1.08 0.00100928 0.000926212 0.0737705 0.0677089 34 2653 21 6.89349e+06 267783 618332. 2139.56 2.25 0.285551 0.255699 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0396524 0.0355326 121 34 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.82 vpr 55.13 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 16.7 MiB 1.87 839 10231 2827 6777 627 55.4 MiB 0.16 0.00 4.26535 -126.926 -4.26535 4.26535 1.09 0.00094951 0.000870116 0.0578418 0.0530903 34 2258 25 6.89349e+06 295971 618332. 2139.56 4.11 0.359073 0.319933 25762 151098 -1 1828 19 1146 1838 127720 29375 3.55595 3.55595 -122.712 -3.55595 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0362229 0.0324125 115 34 56 28 28 28 - fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.03 vpr 55.11 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.96 860 14700 5342 7547 1811 55.3 MiB 0.20 0.00 3.60535 -129.612 -3.60535 3.60535 1.09 0.000998987 0.000916923 0.0880782 0.0809076 34 2261 23 6.89349e+06 225501 618332. 2139.56 2.07 0.302199 0.271587 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0408594 0.0368003 114 3 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.52 vpr 55.23 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 19 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 16.7 MiB 1.28 985 14322 4727 7440 2155 55.3 MiB 0.21 0.00 3.69435 -127.028 -3.69435 3.69435 1.08 0.00101964 0.00093562 0.0847504 0.077734 30 2355 32 6.89349e+06 267783 556674. 1926.21 1.32 0.233376 0.210042 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.24 0.08 0.21 -1 -1 0.24 0.0367137 0.0329514 121 34 61 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.87 vpr 55.33 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30016 -1 -1 23 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 16.8 MiB 1.35 1052 14724 4760 7779 2185 55.5 MiB 0.21 0.00 3.57215 -115.596 -3.57215 3.57215 1.10 0.00102399 0.00093978 0.0856234 0.0785513 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.98 0.344654 0.308479 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.036882 0.0330607 130 61 29 29 57 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.53 vpr 55.48 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30420 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57676 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 17.4 MiB 1.86 1199 18247 5521 9891 2835 56.3 MiB 0.31 0.00 4.73855 -160.484 -4.73855 4.73855 1.09 0.00142695 0.00131267 0.130958 0.120403 34 3612 43 6.89349e+06 380534 618332. 2139.56 3.02 0.414774 0.374503 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0562537 0.0506776 184 29 128 32 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.68 vpr 55.85 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30272 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 17.3 MiB 1.55 1143 14147 4354 7296 2497 56.2 MiB 0.24 0.00 4.17974 -143.168 -4.17974 4.17974 1.09 0.00130275 0.00119484 0.0966987 0.0887025 34 3686 37 6.89349e+06 352346 618332. 2139.56 2.80 0.399366 0.358303 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0599371 0.0538992 173 65 62 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.49 vpr 55.17 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30324 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 17.4 MiB 0.82 1094 14965 4562 8063 2340 56.1 MiB 0.22 0.00 3.67235 -123.222 -3.67235 3.67235 1.09 0.00110506 0.0010105 0.0923466 0.0845122 34 2583 23 6.89349e+06 310065 618332. 2139.56 2.04 0.326399 0.292242 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0434878 0.0389408 143 90 0 0 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.43 vpr 55.97 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30332 -1 -1 26 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 17.6 MiB 2.14 1244 16523 4277 10843 1403 56.2 MiB 0.29 0.00 4.45875 -146.616 -4.45875 4.45875 1.09 0.00126648 0.0011629 0.109036 0.100069 34 3212 33 6.89349e+06 366440 618332. 2139.56 2.39 0.399783 0.359577 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0542891 0.0487985 170 64 60 30 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.85 vpr 55.89 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57904 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 17.7 MiB 1.75 1489 17560 4957 10293 2310 56.5 MiB 0.31 0.01 5.02254 -165.43 -5.02254 5.02254 1.09 0.00140753 0.00129067 0.119443 0.109551 34 3603 25 6.89349e+06 436909 618332. 2139.56 2.44 0.359887 0.323515 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.27 0.11 0.24 -1 -1 0.27 0.0533741 0.0479794 201 124 0 0 124 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 10.73 vpr 55.73 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30260 -1 -1 28 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 17.5 MiB 2.15 1401 11923 3470 7236 1217 56.4 MiB 0.22 0.00 5.49816 -175.294 -5.49816 5.49816 1.09 0.00130556 0.00119659 0.0797054 0.0730851 34 3760 29 6.89349e+06 394628 618332. 2139.56 8.65 0.605303 0.541596 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.28 0.14 0.24 -1 -1 0.28 0.0541885 0.0487864 181 90 31 31 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 8.62 vpr 55.59 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30208 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 17.2 MiB 1.53 1340 14763 4284 8311 2168 56.1 MiB 0.26 0.00 3.76655 -130.012 -3.76655 3.76655 1.09 0.00127831 0.00116647 0.0973254 0.0888877 34 3258 47 6.89349e+06 380534 618332. 2139.56 2.27 0.366235 0.328236 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.25 0.13 0.12 -1 -1 0.25 0.0543267 0.0488639 168 64 60 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.92 vpr 55.23 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.73 1284 16207 4365 9844 1998 56.1 MiB 0.27 0.00 4.62085 -160.706 -4.62085 4.62085 1.08 0.00128894 0.00118268 0.105784 0.0971168 38 2889 43 6.89349e+06 380534 678818. 2348.85 2.56 0.307527 0.27659 26626 170182 -1 2536 20 1893 2539 183204 39509 4.03796 4.03796 -157.104 -4.03796 0 0 902133. 3121.57 0.30 0.12 0.27 -1 -1 0.30 0.0476485 0.0427974 178 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.19 vpr 56.18 MiB 0.06 7228 -1 -1 1 0.03 -1 -1 30496 -1 -1 31 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57544 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 17.8 MiB 1.99 1764 15215 4236 8627 2352 56.2 MiB 0.30 0.01 5.15348 -175.341 -5.15348 5.15348 1.09 0.00157225 0.00144247 0.115243 0.105877 34 4947 37 6.89349e+06 436909 618332. 2139.56 4.58 0.495876 0.445826 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.30 0.20 0.18 -1 -1 0.30 0.0654914 0.0590466 220 96 62 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.35 vpr 55.24 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30420 -1 -1 20 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 16.9 MiB 1.53 822 6743 1455 4759 529 55.5 MiB 0.12 0.00 3.853 -129.297 -3.853 3.853 1.09 0.00103596 0.000951174 0.0422376 0.0388394 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.98 0.285488 0.255118 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.27 0.09 0.25 -1 -1 0.27 0.0422428 0.0378346 127 34 62 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.98 vpr 55.50 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30228 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 17.2 MiB 1.50 1294 17376 6419 8627 2330 56.0 MiB 0.29 0.01 5.00234 -161.335 -5.00234 5.00234 1.09 0.00128033 0.00117244 0.114493 0.105011 34 3454 30 6.89349e+06 380534 618332. 2139.56 3.18 0.40471 0.363917 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0551427 0.0496345 168 64 62 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 9.20 vpr 55.67 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57448 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 17.2 MiB 1.69 1356 15391 5368 7626 2397 56.1 MiB 0.26 0.00 4.39449 -148.549 -4.39449 4.39449 1.09 0.00128612 0.00117975 0.0996391 0.0912512 36 3343 28 6.89349e+06 380534 648988. 2245.63 3.06 0.387 0.347517 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0486113 0.0437863 172 63 62 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.01 vpr 55.45 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30260 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57072 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 1.16 953 14407 3720 10033 654 55.7 MiB 0.23 0.00 4.3344 -147.594 -4.3344 4.3344 1.08 0.00119106 0.00109412 0.0950427 0.0872857 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.86 0.354269 0.318805 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0503135 0.0452521 147 3 128 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.25 vpr 55.76 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57756 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 17.7 MiB 1.42 1279 18101 5797 9598 2706 56.4 MiB 0.30 0.00 4.41459 -148.068 -4.41459 4.41459 1.09 0.00131683 0.00120707 0.118971 0.109103 34 3456 36 6.89349e+06 394628 618332. 2139.56 2.54 0.429009 0.385815 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0459154 0.0413705 184 96 25 25 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.82 vpr 55.71 MiB 0.06 7016 -1 -1 1 0.03 -1 -1 30252 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57604 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 17.4 MiB 1.89 1221 17635 5673 8836 3126 56.3 MiB 0.26 0.00 4.28929 -146.442 -4.28929 4.28929 1.11 0.00128457 0.00117812 0.114266 0.104817 36 3258 26 6.89349e+06 380534 648988. 2245.63 2.43 0.313952 0.28247 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0613249 0.0551254 169 61 64 32 60 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.42 vpr 55.68 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57564 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.3 MiB 1.54 1303 7027 1560 5110 357 56.2 MiB 0.15 0.00 3.72045 -130.455 -3.72045 3.72045 1.09 0.00130943 0.00120185 0.048371 0.0443903 34 3432 32 6.89349e+06 380534 618332. 2139.56 2.40 0.351655 0.315636 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.26 0.13 0.24 -1 -1 0.26 0.0498393 0.0449185 175 65 63 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.25 vpr 55.33 MiB 0.05 7020 -1 -1 1 0.04 -1 -1 30412 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 17.4 MiB 1.48 1190 14518 4171 8562 1785 56.1 MiB 0.24 0.00 4.63815 -161.109 -4.63815 4.63815 1.09 0.00124974 0.00114671 0.0956139 0.0877817 34 2867 24 6.89349e+06 338252 618332. 2139.56 2.30 0.362923 0.326283 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0491654 0.0443053 161 34 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.86 vpr 55.58 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.18 1201 13351 3240 8446 1665 56.2 MiB 0.22 0.00 4.60525 -158.398 -4.60525 4.60525 1.08 0.00130803 0.0012003 0.0889713 0.081623 36 3088 18 6.89349e+06 380534 648988. 2245.63 4.98 0.491722 0.441103 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.28 0.13 0.27 -1 -1 0.28 0.0556249 0.050024 177 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.88 vpr 55.80 MiB 0.07 7292 -1 -1 1 0.03 -1 -1 30276 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 17.5 MiB 1.17 1470 18625 5270 10765 2590 56.2 MiB 0.31 0.01 5.00359 -155.604 -5.00359 5.00359 1.08 0.00139104 0.00127576 0.124965 0.114594 34 3523 29 6.89349e+06 436909 618332. 2139.56 2.38 0.434487 0.390182 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0600898 0.0541227 195 122 0 0 122 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.20 vpr 55.93 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 17.5 MiB 2.41 1648 15391 4130 9133 2128 56.3 MiB 0.28 0.01 4.77885 -161.828 -4.77885 4.77885 1.09 0.00136045 0.00124719 0.106623 0.0977718 36 3608 22 6.89349e+06 380534 648988. 2245.63 4.75 0.466559 0.41752 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0585695 0.0526883 190 94 32 32 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.73 vpr 55.03 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56932 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 17.0 MiB 1.48 1067 16081 5068 9178 1835 55.6 MiB 0.23 0.00 3.68745 -131.866 -3.68745 3.68745 1.10 0.00105294 0.00096593 0.093125 0.0854001 34 2400 20 6.89349e+06 295971 618332. 2139.56 2.08 0.309355 0.277793 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0376215 0.0337705 127 34 63 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.10 vpr 55.59 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1122 7711 1541 6020 150 55.9 MiB 0.14 0.00 4.29439 -143.523 -4.29439 4.29439 1.12 0.00116796 0.00106959 0.0514201 0.0470992 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.06 0.304549 0.271604 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.28 0.11 0.24 -1 -1 0.28 0.044221 0.0397047 154 94 0 0 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 8.87 vpr 55.89 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30788 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57952 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 17.7 MiB 1.60 1537 17347 5978 9037 2332 56.6 MiB 0.36 0.01 5.35709 -181.872 -5.35709 5.35709 1.12 0.00152315 0.00139855 0.127188 0.116848 38 3731 22 6.89349e+06 422815 678818. 2348.85 2.37 0.37723 0.340825 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.29 0.15 0.27 -1 -1 0.29 0.0627866 0.0566334 209 65 96 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 9.12 vpr 55.66 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30228 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.63 1176 14295 4272 7910 2113 56.1 MiB 0.24 0.00 3.7808 -134.415 -3.7808 3.7808 1.09 0.00123057 0.00112515 0.0947122 0.0869107 34 2997 45 6.89349e+06 324158 618332. 2139.56 3.00 0.402892 0.361698 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.26 0.15 0.25 -1 -1 0.26 0.0575797 0.0517842 156 34 92 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 7.85 vpr 55.17 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30308 -1 -1 32 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 17.0 MiB 1.01 932 11809 3108 7963 738 55.6 MiB 0.17 0.00 4.33203 -134.423 -4.33203 4.33203 1.09 0.00100618 0.000923045 0.0586693 0.0537704 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.92 0.266286 0.238039 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.040118 0.0359259 129 34 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 11.33 vpr 56.06 MiB 0.05 7380 -1 -1 1 0.04 -1 -1 30940 -1 -1 35 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57620 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 18.0 MiB 1.63 1787 18111 5206 10704 2201 56.3 MiB 0.36 0.01 5.73258 -193.193 -5.73258 5.73258 1.09 0.00162988 0.00149502 0.133375 0.12236 36 4099 45 6.89349e+06 493284 648988. 2245.63 3.85 0.455695 0.408907 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.28 0.16 0.25 -1 -1 0.28 0.0701517 0.0631746 239 127 32 32 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.61 vpr 55.50 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.25 1091 13143 3864 7923 1356 56.2 MiB 0.23 0.00 4.41749 -154.465 -4.41749 4.41749 1.09 0.00126244 0.00115915 0.0921316 0.0845973 34 2892 26 6.89349e+06 324158 618332. 2139.56 2.33 0.365643 0.32913 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.27 0.14 0.24 -1 -1 0.27 0.051862 0.0467176 159 34 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.85 vpr 55.09 MiB 0.05 6700 -1 -1 1 0.04 -1 -1 30164 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.6 MiB 0.52 849 10087 2557 6780 750 55.2 MiB 0.15 0.00 3.73565 -131.011 -3.73565 3.73565 1.11 0.00102424 0.000940448 0.0484455 0.0444971 30 2269 22 6.89349e+06 465097 556674. 1926.21 1.31 0.175297 0.157406 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.037593 0.0337028 123 3 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 9.46 vpr 55.50 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30816 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57740 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 17.7 MiB 1.74 1275 12273 3390 7733 1150 56.4 MiB 0.24 0.00 5.39711 -179.414 -5.39711 5.39711 1.09 0.0014575 0.00134056 0.089363 0.0822349 34 3822 27 6.89349e+06 408721 618332. 2139.56 3.26 0.343587 0.309359 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0631185 0.0568883 194 34 128 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 6.44 vpr 55.20 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30324 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 17.0 MiB 0.74 787 10056 2193 7590 273 55.5 MiB 0.15 0.00 3.8468 -135.678 -3.8468 3.8468 1.09 0.000999332 0.000917136 0.0603931 0.0554682 34 2224 26 6.89349e+06 225501 618332. 2139.56 2.16 0.276526 0.247677 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.26 0.12 0.25 -1 -1 0.26 0.0439163 0.0394186 114 3 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.99 vpr 55.29 MiB 0.06 6920 -1 -1 1 0.03 -1 -1 30048 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.7 MiB 1.08 801 8131 1824 5536 771 55.3 MiB 0.12 0.00 3.71635 -120.03 -3.71635 3.71635 1.09 0.00101184 0.000927559 0.0494515 0.0454071 36 2120 22 6.89349e+06 267783 648988. 2245.63 4.76 0.349204 0.31149 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.27 0.09 0.25 -1 -1 0.27 0.0379791 0.0340425 121 34 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.30 vpr 55.68 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30164 -1 -1 31 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57692 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 17.5 MiB 1.34 1254 15203 3953 9019 2231 56.3 MiB 0.24 0.00 4.1318 -129.307 -4.1318 4.1318 1.12 0.00124063 0.00113748 0.0945359 0.0866537 34 2921 25 6.89349e+06 436909 618332. 2139.56 2.20 0.366711 0.329456 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.24 0.05 0.13 -1 -1 0.24 0.0212634 0.018888 171 88 29 29 85 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 8.69 vpr 55.78 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30496 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.3 MiB 1.70 1381 16974 4929 9664 2381 56.1 MiB 0.25 0.00 5.29596 -177.687 -5.29596 5.29596 1.09 0.00130373 0.00119607 0.114648 0.105129 36 3381 23 6.89349e+06 366440 648988. 2245.63 2.68 0.394291 0.354428 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0563627 0.0507202 178 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.72 vpr 55.70 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30600 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.5 MiB 1.50 1376 18180 6112 9250 2818 56.5 MiB 0.28 0.01 5.13064 -174.448 -5.13064 5.13064 1.07 0.00131112 0.00120263 0.0947669 0.0865421 34 3618 39 6.89349e+06 366440 618332. 2139.56 2.80 0.405032 0.363419 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.053927 0.0485617 175 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.73 vpr 55.24 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 17.0 MiB 1.12 1013 14221 3579 9597 1045 56.0 MiB 0.21 0.00 4.30029 -147.314 -4.30029 4.30029 1.09 0.00111044 0.00101824 0.0881833 0.0808069 34 2793 24 6.89349e+06 295971 618332. 2139.56 2.35 0.323991 0.290391 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0419937 0.0376607 141 65 32 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.44 vpr 55.58 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30252 -1 -1 22 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 17.1 MiB 1.50 1168 10501 2617 6825 1059 55.9 MiB 0.18 0.00 4.23729 -139.76 -4.23729 4.23729 1.11 0.00137437 0.00127647 0.0708424 0.0650004 34 2811 21 6.89349e+06 310065 618332. 2139.56 2.10 0.269718 0.240718 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456469 0.0408783 146 90 0 0 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 8.35 vpr 55.36 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30256 -1 -1 29 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 17.0 MiB 1.70 1158 18043 5948 9235 2860 55.9 MiB 0.27 0.00 3.9471 -130.183 -3.9471 3.9471 1.08 0.00122519 0.00112439 0.11169 0.102532 36 2742 19 6.89349e+06 408721 648988. 2245.63 2.37 0.362352 0.326176 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.28 0.10 0.26 -1 -1 0.28 0.0413773 0.0369874 164 60 60 30 57 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 7.08 vpr 55.29 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30336 -1 -1 27 28 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 17.0 MiB 1.11 970 11031 2869 6600 1562 55.9 MiB 0.16 0.00 4.51585 -132.654 -4.51585 4.51585 1.11 0.00111305 0.00102216 0.0667786 0.0613647 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.41 0.209629 0.188964 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.27 0.10 0.22 -1 -1 0.27 0.0458097 0.041161 145 34 84 28 28 28 - fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.56 vpr 55.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 29948 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57104 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 16.9 MiB 1.78 1087 9083 2557 5800 726 55.8 MiB 0.15 0.00 4.36859 -139.508 -4.36859 4.36859 1.09 0.00106209 0.000973869 0.0563589 0.051678 36 2461 21 6.89349e+06 295971 648988. 2245.63 2.12 0.228674 0.204922 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.27 0.10 0.25 -1 -1 0.27 0.0385918 0.0346276 136 63 30 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.96 vpr 55.76 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 17.2 MiB 1.55 1180 8827 2269 5871 687 56.0 MiB 0.16 0.01 3.8008 -130.21 -3.8008 3.8008 1.07 0.00158299 0.00142968 0.0579837 0.0530433 34 2947 27 6.89349e+06 295971 618332. 2139.56 2.31 0.264166 0.236237 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.27 0.10 0.24 -1 -1 0.27 0.0432588 0.0387779 150 91 0 0 91 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.79 vpr 55.23 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30484 -1 -1 37 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 17.1 MiB 0.66 1032 15180 4497 8229 2454 55.8 MiB 0.22 0.00 4.35445 -144.691 -4.35445 4.35445 1.09 0.00117601 0.00108136 0.0795239 0.0730612 28 3116 24 6.89349e+06 521472 531479. 1839.03 2.63 0.222983 0.201123 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.23 0.14 0.20 -1 -1 0.23 0.0514867 0.046279 151 4 124 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.37 vpr 55.52 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30536 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57484 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 17.2 MiB 1.15 1263 12351 3110 8140 1101 56.1 MiB 0.22 0.00 4.78058 -162.367 -4.78058 4.78058 1.09 0.00131769 0.0012077 0.0840691 0.0770435 34 3370 34 6.89349e+06 366440 618332. 2139.56 2.56 0.388503 0.348521 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.27 0.10 0.21 -1 -1 0.27 0.0389661 0.0348911 173 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.13 vpr 55.86 MiB 0.07 7176 -1 -1 1 0.03 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57528 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 17.2 MiB 1.48 1405 10743 3107 6650 986 56.2 MiB 0.20 0.01 4.9601 -169.723 -4.9601 4.9601 1.11 0.00131492 0.00120643 0.0720409 0.065997 36 3352 21 6.89349e+06 366440 648988. 2245.63 3.60 0.358137 0.322067 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.30 0.16 0.25 -1 -1 0.30 0.0608626 0.054749 171 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.15 vpr 55.64 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 17.5 MiB 1.61 1306 10087 2279 7315 493 56.3 MiB 0.19 0.01 4.3224 -145.723 -4.3224 4.3224 1.08 0.00129052 0.00118486 0.0668803 0.0614013 34 4019 38 6.89349e+06 380534 618332. 2139.56 3.47 0.371649 0.333465 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.26 0.15 0.24 -1 -1 0.26 0.0554955 0.0499365 172 65 60 30 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.73 vpr 55.37 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30232 -1 -1 19 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.9 MiB 1.51 814 9181 2458 5686 1037 55.5 MiB 0.15 0.00 3.809 -121.257 -3.809 3.809 1.08 0.00100824 0.000924304 0.0557543 0.0511823 34 2414 23 6.89349e+06 267783 618332. 2139.56 2.16 0.269852 0.241306 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0365064 0.0327872 122 34 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 8.79 vpr 56.03 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30300 -1 -1 26 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 17.5 MiB 2.06 1287 12568 3293 7724 1551 56.2 MiB 0.21 0.00 5.05854 -160.711 -5.05854 5.05854 1.09 0.00125387 0.00115149 0.0843199 0.0774406 34 3215 23 6.89349e+06 366440 618332. 2139.56 2.50 0.340498 0.306093 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.0222602 0.0197516 165 63 60 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.25 vpr 55.67 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30764 -1 -1 30 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57884 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 17.7 MiB 1.06 1479 11383 3062 7492 829 56.5 MiB 0.21 0.00 4.57601 -155.587 -4.57601 4.57601 1.09 0.00143785 0.00131832 0.080564 0.0738535 36 3485 21 6.89349e+06 422815 648988. 2245.63 4.99 0.520318 0.465343 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0610931 0.0546763 204 127 0 0 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.41 vpr 55.45 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30696 -1 -1 29 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57520 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 17.5 MiB 1.48 1301 16445 5093 9336 2016 56.2 MiB 0.28 0.00 5.17904 -171.173 -5.17904 5.17904 1.08 0.00132261 0.00121214 0.108678 0.0996245 36 3067 22 6.89349e+06 408721 648988. 2245.63 4.95 0.508678 0.456582 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.27 0.12 0.25 -1 -1 0.27 0.0546629 0.0492368 186 94 31 31 93 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.88 vpr 56.05 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30376 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57568 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 17.3 MiB 1.90 1252 12351 3368 8179 804 56.2 MiB 0.22 0.00 4.25135 -136.296 -4.25135 4.25135 1.08 0.00127 0.00116465 0.081697 0.0748844 34 3685 43 6.89349e+06 394628 618332. 2139.56 3.15 0.346071 0.310579 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.0500565 0.0450053 175 92 26 26 90 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.52 vpr 55.81 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30440 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 17.1 MiB 1.62 1349 14160 4180 8412 1568 56.1 MiB 0.25 0.00 5.11687 -171.214 -5.11687 5.11687 1.08 0.001269 0.00116058 0.0954561 0.087521 34 3581 27 6.89349e+06 366440 618332. 2139.56 2.91 0.385601 0.34695 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.26 0.14 0.24 -1 -1 0.26 0.0522007 0.047049 177 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 8.00 vpr 55.58 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30184 -1 -1 30 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 17.1 MiB 1.82 1337 17431 5595 9274 2562 56.0 MiB 0.20 0.00 4.49555 -136.793 -4.49555 4.49555 1.10 0.00122769 0.00112596 0.066125 0.0603478 34 3073 24 6.89349e+06 422815 618332. 2139.56 2.20 0.331232 0.296619 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0506274 0.0454793 170 88 26 26 85 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.67 vpr 55.18 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 0.49 851 10744 3065 7267 412 55.3 MiB 0.16 0.00 3.7888 -133.854 -3.7888 3.7888 1.08 0.000996222 0.000914601 0.0649002 0.0595895 34 2305 21 6.89349e+06 225501 618332. 2139.56 2.05 0.2735 0.245129 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0378247 0.0339311 114 3 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 9.06 vpr 55.76 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57616 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 17.3 MiB 1.42 1266 16411 5685 8276 2450 56.3 MiB 0.28 0.00 5.17997 -174.972 -5.17997 5.17997 1.09 0.00132604 0.00121422 0.109804 0.100525 34 3964 24 6.89349e+06 380534 618332. 2139.56 3.37 0.398108 0.357985 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.26 0.16 0.24 -1 -1 0.26 0.0563244 0.0507129 174 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 10.05 vpr 55.77 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57552 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 17.6 MiB 2.37 1294 9791 2343 6863 585 56.2 MiB 0.19 0.00 5.01095 -168.663 -5.01095 5.01095 1.08 0.00132154 0.00121336 0.066427 0.0609533 34 3734 27 6.89349e+06 352346 618332. 2139.56 3.10 0.355716 0.319354 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.28 0.16 0.24 -1 -1 0.28 0.0554544 0.0499788 176 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.71 vpr 55.19 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30304 -1 -1 19 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 17.0 MiB 1.49 971 13043 4021 6975 2047 55.7 MiB 0.19 0.00 3.51612 -116.281 -3.51612 3.51612 1.09 0.001033 0.000946224 0.0801956 0.0734596 34 2366 21 6.89349e+06 267783 618332. 2139.56 2.07 0.301933 0.269661 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0405084 0.0363058 128 55 32 32 54 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.57 vpr 55.08 MiB 0.05 6776 -1 -1 1 0.03 -1 -1 30260 -1 -1 17 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 17.0 MiB 0.67 734 11604 2641 7381 1582 55.5 MiB 0.16 0.00 3.8218 -128.161 -3.8218 3.8218 1.09 0.000980043 0.000900155 0.0685767 0.0630281 32 2249 20 6.89349e+06 239595 586450. 2029.24 1.28 0.189069 0.170303 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.25 0.10 0.23 -1 -1 0.25 0.0397498 0.0355595 112 4 93 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 8.38 vpr 55.54 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57532 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 17.4 MiB 1.29 1234 14147 4178 8444 1525 56.2 MiB 0.23 0.00 4.31849 -141.833 -4.31849 4.31849 1.08 0.00124301 0.0011412 0.0920639 0.0844442 34 3001 25 6.89349e+06 352346 618332. 2139.56 2.25 0.362835 0.326393 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.26 0.12 0.24 -1 -1 0.26 0.0551296 0.0495841 158 59 60 32 58 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.14 vpr 55.73 MiB 0.06 7104 -1 -1 1 0.03 -1 -1 30216 -1 -1 26 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 17.1 MiB 1.39 1314 10341 2747 6842 752 56.0 MiB 0.19 0.01 5.10864 -160.907 -5.10864 5.10864 1.09 0.00128119 0.00117403 0.0705993 0.0646762 34 3382 28 6.89349e+06 366440 618332. 2139.56 2.66 0.361719 0.324473 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0528448 0.0476058 170 88 28 28 88 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.63 vpr 55.45 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30360 -1 -1 41 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.3 MiB 0.73 1292 15419 3797 10101 1521 56.2 MiB 0.25 0.01 4.85078 -164.688 -4.85078 4.85078 1.11 0.00136602 0.00125634 0.0893361 0.082034 34 3291 24 6.89349e+06 577847 618332. 2139.56 2.67 0.382748 0.345095 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.27 0.15 0.24 -1 -1 0.27 0.0586736 0.0529735 183 3 156 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.27 vpr 55.33 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30356 -1 -1 27 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57516 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1124 9395 2323 6078 994 56.2 MiB 0.16 0.00 3.8961 -125.22 -3.8961 3.8961 1.09 0.00120379 0.00110474 0.0602169 0.0552565 34 2687 35 6.89349e+06 380534 618332. 2139.56 2.29 0.338951 0.303629 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.051632 0.0463934 160 59 60 30 56 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.42 vpr 55.05 MiB 0.06 6960 -1 -1 1 0.03 -1 -1 30424 -1 -1 22 27 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 16.6 MiB 1.12 915 13031 5095 6351 1585 55.1 MiB 0.17 0.00 4.34539 -126.288 -4.34539 4.34539 1.09 0.00092097 0.000844866 0.0714774 0.0656212 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.94 0.260402 0.233169 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.26 0.09 0.24 -1 -1 0.26 0.0360837 0.0322635 112 34 54 27 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.25 vpr 56.22 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30416 -1 -1 32 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57716 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 17.8 MiB 1.58 1748 16302 4126 10044 2132 56.4 MiB 0.34 0.01 5.09354 -170.611 -5.09354 5.09354 1.09 0.00156689 0.00143787 0.115255 0.105667 34 4285 25 6.89349e+06 451003 618332. 2139.56 3.18 0.45793 0.412026 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.27 0.17 0.24 -1 -1 0.27 0.0672702 0.0606111 219 95 62 31 95 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.65 vpr 55.59 MiB 0.04 7276 -1 -1 1 0.03 -1 -1 30436 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57820 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 17.6 MiB 1.95 1467 12661 2948 8528 1185 56.5 MiB 0.25 0.00 5.14784 -166.315 -5.14784 5.14784 1.15 0.00140194 0.00128578 0.0926005 0.0850475 36 3334 29 6.89349e+06 436909 648988. 2245.63 5.38 0.571313 0.511139 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0556775 0.0501013 201 124 0 0 124 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.16 vpr 55.40 MiB 0.02 7036 -1 -1 1 0.02 -1 -1 30264 -1 -1 22 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 17.3 MiB 1.79 1133 9914 2313 7132 469 56.1 MiB 0.16 0.00 4.28535 -139.234 -4.28535 4.28535 1.09 0.00112622 0.00103138 0.0620172 0.0567627 34 3076 43 6.89349e+06 310065 618332. 2139.56 2.56 0.338411 0.302184 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0426553 0.0382436 150 89 0 0 89 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.25 vpr 55.34 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30224 -1 -1 23 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 17.4 MiB 1.56 1114 12951 3612 7720 1619 56.1 MiB 0.22 0.00 4.53785 -150.754 -4.53785 4.53785 1.09 0.00121587 0.00111611 0.0853887 0.0784129 34 2799 24 6.89349e+06 324158 618332. 2139.56 2.14 0.350699 0.315667 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0482091 0.0434212 151 34 90 30 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 8.12 vpr 55.82 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30572 -1 -1 30 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57728 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 17.6 MiB 1.42 1475 19413 5609 11709 2095 56.4 MiB 0.35 0.01 4.64537 -154.979 -4.64537 4.64537 1.09 0.00144552 0.00131788 0.136575 0.125321 34 3553 32 6.89349e+06 422815 618332. 2139.56 2.53 0.467214 0.420492 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.27 0.16 0.24 -1 -1 0.27 0.0662385 0.0597017 193 64 87 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.06 vpr 55.57 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30356 -1 -1 28 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 17.2 MiB 1.70 1223 16773 5429 8542 2802 56.0 MiB 0.26 0.00 4.28025 -135.791 -4.28025 4.28025 1.09 0.00120646 0.00110665 0.104019 0.0953862 36 2894 24 6.89349e+06 394628 648988. 2245.63 2.48 0.362663 0.325817 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0455944 0.0409159 162 61 58 30 58 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 9.03 vpr 55.77 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30388 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57512 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 17.2 MiB 1.34 1373 17066 5393 8866 2807 56.2 MiB 0.32 0.00 5.03124 -168.563 -5.03124 5.03124 1.11 0.00130489 0.00119569 0.114383 0.104809 34 3693 35 6.89349e+06 394628 618332. 2139.56 3.08 0.423254 0.380489 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.26 0.14 0.26 -1 -1 0.26 0.0565055 0.0508795 173 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 9.65 vpr 55.79 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30256 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57644 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 17.4 MiB 1.69 1418 13147 3928 7969 1250 56.3 MiB 0.23 0.01 3.78872 -134.171 -3.78872 3.78872 1.10 0.00165544 0.00153095 0.0894017 0.0820227 34 3370 23 6.89349e+06 380534 618332. 2139.56 2.33 0.364967 0.327888 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.26 0.13 0.26 -1 -1 0.26 0.054382 0.0489921 175 65 63 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 7.07 vpr 55.32 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30308 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 16.7 MiB 1.16 802 14322 5252 6511 2559 55.3 MiB 0.19 0.00 3.809 -119.785 -3.809 3.809 0.76 0.000982051 0.000901084 0.0815792 0.0749142 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.91 0.288328 0.25819 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0368065 0.0329674 118 34 58 29 29 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.91 vpr 55.52 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 17.0 MiB 1.06 1059 7038 1561 5080 397 55.5 MiB 0.12 0.00 4.31213 -129.707 -4.31213 4.31213 1.09 0.00106543 0.000975409 0.0437521 0.0400533 34 2689 32 6.89349e+06 281877 618332. 2139.56 2.38 0.28569 0.254486 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0373944 0.033602 136 82 0 0 82 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.00 vpr 55.47 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30460 -1 -1 24 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 17.1 MiB 1.26 1144 15255 6301 7544 1410 55.9 MiB 0.24 0.00 4.60015 -151.135 -4.60015 4.60015 1.08 0.00122223 0.00112177 0.0968273 0.0887116 36 2816 23 6.89349e+06 338252 648988. 2245.63 5.06 0.471461 0.423082 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.27 0.11 0.25 -1 -1 0.27 0.0463702 0.0417816 154 34 93 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.47 vpr 55.15 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30332 -1 -1 21 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 16.7 MiB 1.12 955 13610 4945 6467 2198 55.3 MiB 0.19 0.00 3.4839 -106.878 -3.4839 3.4839 1.09 0.000975979 0.000894182 0.0791014 0.0724981 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.95 0.287517 0.257116 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0349151 0.0312405 123 56 29 29 52 26 - fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 8.27 vpr 55.07 MiB 0.04 6752 -1 -1 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 16.8 MiB 1.65 1000 12186 3922 6390 1874 55.4 MiB 0.20 0.00 3.839 -135.657 -3.839 3.839 1.11 0.00106518 0.00097665 0.0836756 0.0767115 34 2613 22 6.89349e+06 253689 618332. 2139.56 2.30 0.308519 0.276612 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.27 0.13 0.24 -1 -1 0.27 0.046297 0.0414268 127 34 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 8.09 vpr 55.59 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 17.3 MiB 1.51 1201 16773 5048 9300 2425 56.1 MiB 0.27 0.00 4.20938 -143.511 -4.20938 4.20938 1.09 0.00126058 0.00115708 0.110245 0.101123 36 2859 23 6.89349e+06 380534 648988. 2245.63 2.78 0.378429 0.340299 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.27 0.14 0.25 -1 -1 0.27 0.0537475 0.048345 164 64 58 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.80 vpr 55.02 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30208 -1 -1 21 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56752 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 16.8 MiB 1.31 877 7953 1966 5579 408 55.4 MiB 0.12 0.00 3.31212 -108.619 -3.31212 3.31212 1.09 0.00101911 0.000930005 0.0467043 0.0428072 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.96 0.260412 0.232318 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.26 0.08 0.24 -1 -1 0.26 0.0366874 0.032865 125 55 31 31 53 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.79 vpr 55.64 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57392 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 17.3 MiB 1.46 1287 17711 6388 9306 2017 56.0 MiB 0.31 0.00 4.20729 -140.905 -4.20729 4.20729 1.11 0.00123482 0.00113152 0.118512 0.108567 34 3044 21 6.89349e+06 352346 618332. 2139.56 2.60 0.378875 0.340952 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.27 0.12 0.24 -1 -1 0.27 0.0493652 0.044415 162 65 52 26 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.06 vpr 55.88 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30184 -1 -1 31 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57700 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 17.6 MiB 1.64 1441 16921 4862 9627 2432 56.3 MiB 0.30 0.00 5.00842 -163.951 -5.00842 5.00842 1.10 0.00133268 0.00121993 0.109683 0.100391 36 3492 23 6.89349e+06 436909 648988. 2245.63 3.27 0.395273 0.355127 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.30 0.14 0.26 -1 -1 0.30 0.0440489 0.0392221 185 93 31 31 92 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.33 vpr 55.62 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 17.1 MiB 2.29 1150 11245 3095 6987 1163 55.8 MiB 0.17 0.00 3.53115 -123.245 -3.53115 3.53115 1.08 0.00105584 0.000966267 0.068317 0.0625923 34 2943 19 6.89349e+06 295971 618332. 2139.56 2.39 0.290938 0.26024 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.26 0.09 0.25 -1 -1 0.26 0.0374803 0.0336655 137 61 32 32 60 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.96 vpr 55.12 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30000 -1 -1 20 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 17.1 MiB 1.18 1121 13443 3684 8167 1592 56.1 MiB 0.21 0.00 3.817 -131.483 -3.817 3.817 1.12 0.00110775 0.00101467 0.0839381 0.076901 34 2949 27 6.89349e+06 281877 618332. 2139.56 2.44 0.327997 0.293909 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.26 0.10 0.24 -1 -1 0.26 0.0456433 0.0409209 139 63 32 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.65 vpr 55.34 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30620 -1 -1 27 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 17.3 MiB 1.30 1272 13147 3375 7731 2041 56.2 MiB 0.22 0.00 4.61515 -160.202 -4.61515 4.61515 1.11 0.00130029 0.00119203 0.0876541 0.0803849 36 3093 23 6.89349e+06 380534 648988. 2245.63 2.69 0.372583 0.335185 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.24 0.07 0.13 -1 -1 0.24 0.029553 0.0264522 178 65 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 8.30 vpr 55.59 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30428 -1 -1 26 29 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 17.2 MiB 1.46 1161 15639 4794 8641 2204 55.9 MiB 0.25 0.00 3.67945 -117.378 -3.67945 3.67945 1.10 0.00119996 0.00110142 0.100791 0.0924976 30 2520 23 6.89349e+06 366440 556674. 1926.21 1.33 0.254983 0.230021 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0452376 0.0406706 157 62 56 29 58 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.42 vpr 55.81 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30540 -1 -1 29 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57848 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 17.8 MiB 1.24 1517 16893 4857 9388 2648 56.5 MiB 0.29 0.00 4.97404 -168.093 -4.97404 4.97404 1.08 0.00144341 0.00132428 0.119725 0.109751 36 3623 47 6.89349e+06 408721 648988. 2245.63 2.89 0.482717 0.432985 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.28 0.15 0.25 -1 -1 0.28 0.0622312 0.0558943 203 127 0 0 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.93 vpr 55.14 MiB 0.04 6816 -1 -1 1 0.03 -1 -1 30164 -1 -1 16 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.7 MiB 0.53 803 5149 1186 3599 364 55.4 MiB 0.08 0.00 2.99217 -104.791 -2.99217 2.99217 1.08 0.000928555 0.000852928 0.030521 0.0280694 30 2012 19 6.89349e+06 225501 556674. 1926.21 1.21 0.142973 0.128065 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.24 0.09 0.22 -1 -1 0.24 0.0395679 0.0353567 104 4 85 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.82 vpr 56.04 MiB 0.06 7084 -1 -1 1 0.03 -1 -1 30252 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 17.2 MiB 1.45 1396 18101 5815 9868 2418 56.2 MiB 0.29 0.00 5.41163 -177.078 -5.41163 5.41163 1.09 0.0013281 0.0012184 0.11985 0.109888 34 3746 48 6.89349e+06 394628 618332. 2139.56 2.72 0.458309 0.411863 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.26 0.14 0.25 -1 -1 0.26 0.0566334 0.0509007 179 92 28 28 92 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.60 vpr 55.97 MiB 0.05 6876 -1 -1 1 0.04 -1 -1 29992 -1 -1 24 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 17.2 MiB 1.95 1193 17248 5142 9796 2310 56.0 MiB 0.27 0.00 4.89074 -162.672 -4.89074 4.89074 1.08 0.00118909 0.00108889 0.108382 0.0992639 36 3213 26 6.89349e+06 338252 648988. 2245.63 5.41 0.485078 0.434278 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.28 0.14 0.25 -1 -1 0.28 0.0511288 0.0458688 161 96 0 0 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 8.40 vpr 55.50 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57592 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 17.4 MiB 1.60 1163 10187 2742 6187 1258 56.2 MiB 0.18 0.00 3.75965 -128.904 -3.75965 3.75965 1.10 0.0012926 0.00118584 0.0699471 0.0641767 34 3025 27 6.89349e+06 352346 618332. 2139.56 2.23 0.355152 0.318879 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0488732 0.0440051 170 65 61 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.90 vpr 56.08 MiB 0.05 7292 -1 -1 1 0.04 -1 -1 30636 -1 -1 33 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57340 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 17.4 MiB 1.47 1578 21409 7235 11132 3042 56.0 MiB 0.36 0.01 5.18464 -176.869 -5.18464 5.18464 1.12 0.00157643 0.00144788 0.128716 0.117997 36 3817 25 6.89349e+06 465097 648988. 2245.63 3.87 0.48275 0.43468 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.27 0.17 0.25 -1 -1 0.27 0.0695126 0.062584 224 96 64 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.52 vpr 54.93 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 29948 -1 -1 16 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 16.5 MiB 0.97 774 12860 4018 7384 1458 55.2 MiB 0.14 0.00 3.08706 -94.2237 -3.08706 3.08706 1.09 0.000820142 0.000750211 0.0660086 0.0604088 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.74 0.233137 0.207128 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.26 0.05 0.25 -1 -1 0.26 0.0255526 0.0227796 93 56 0 0 53 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 7.07 vpr 55.38 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30312 -1 -1 21 30 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 16.7 MiB 1.04 936 13763 4663 7110 1990 55.4 MiB 0.19 0.00 4.23979 -138.497 -4.23979 4.23979 1.09 0.00100287 0.000919115 0.0793302 0.0727941 34 2090 22 6.89349e+06 295971 618332. 2139.56 2.00 0.290228 0.259714 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.26 0.11 0.24 -1 -1 0.26 0.0442889 0.0396072 124 34 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.45 vpr 55.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 29920 -1 -1 18 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56692 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 16.8 MiB 1.93 1009 8448 2021 6048 379 55.4 MiB 0.15 0.00 4.33609 -148.866 -4.33609 4.33609 1.13 0.00106811 0.000979928 0.052345 0.0479884 36 2726 23 6.89349e+06 253689 648988. 2245.63 3.09 0.275449 0.246391 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.29 0.13 0.25 -1 -1 0.29 0.0472281 0.0422791 129 34 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.80 vpr 55.16 MiB 0.07 6936 -1 -1 1 0.03 -1 -1 30280 -1 -1 24 25 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 16.7 MiB 1.12 636 10231 2621 6138 1472 55.1 MiB 0.14 0.00 3.787 -96.2626 -3.787 3.787 1.09 0.000858878 0.000788419 0.0526702 0.0483437 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.90 0.23155 0.206486 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.28 0.08 0.24 -1 -1 0.28 0.035311 0.0314398 107 34 50 25 25 25 - fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.79 vpr 55.65 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30308 -1 -1 28 32 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 17.5 MiB 2.33 1453 17273 5845 8574 2854 56.2 MiB 0.31 0.01 4.55715 -154.068 -4.55715 4.55715 1.09 0.00135973 0.00124667 0.11696 0.107233 38 3543 25 6.89349e+06 394628 678818. 2348.85 5.56 0.518162 0.464115 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.29 0.15 0.29 -1 -1 0.29 0.0623778 0.056352 190 94 32 32 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 9.15 vpr 56.19 MiB 0.11 7080 -1 -1 1 0.64 -1 -1 30056 -1 -1 27 31 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57584 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 17.4 MiB 1.74 1285 13758 3623 8223 1912 56.2 MiB 0.24 0.00 4.84654 -156.987 -4.84654 4.84654 0.94 0.00133329 0.00122224 0.0946318 0.0867577 34 3577 46 6.89349e+06 380534 618332. 2139.56 2.58 0.376091 0.337973 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.26 0.18 0.24 -1 -1 0.26 0.0702979 0.063149 183 94 29 29 93 31 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 6.87 vpr 54.79 MiB 0.05 6804 -1 -1 14 0.26 -1 -1 32864 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.3 MiB 0.24 1354 8532 2094 5512 926 55.0 MiB 0.12 0.00 8.19013 -165.934 -8.19013 8.19013 0.76 0.00100002 0.000923747 0.0462173 0.0426911 26 4414 46 6.55708e+06 313430 477104. 1650.88 9.70 0.341069 0.297464 21022 109990 -1 3347 26 1818 5954 716887 222783 7.3219 7.3219 -166.058 -7.3219 0 0 585099. 2024.56 0.20 0.22 0.11 -1 -1 0.20 0.0506951 0.0445178 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 6.29 vpr 54.75 MiB 0.05 6844 -1 -1 14 0.28 -1 -1 32732 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 16.3 MiB 0.39 1292 15824 4267 9033 2524 54.9 MiB 0.20 0.00 8.12966 -162.719 -8.12966 8.12966 0.75 0.000986177 0.000911375 0.0793081 0.0733438 30 3474 36 6.55708e+06 361650 526063. 1820.29 1.43 0.221611 0.196353 21886 126133 -1 2797 17 1276 3537 217978 47493 7.02804 7.02804 -154.369 -7.02804 0 0 666494. 2306.21 0.24 0.09 0.13 -1 -1 0.24 0.0366003 0.0324918 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.96 vpr 54.73 MiB 0.05 6836 -1 -1 11 0.19 -1 -1 32776 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1266 13157 3416 7667 2074 54.8 MiB 0.18 0.00 6.4728 -136.716 -6.4728 6.4728 0.76 0.000980773 0.000906065 0.0687418 0.0634709 44 3168 17 6.55708e+06 301375 742403. 2568.87 4.02 0.334712 0.292274 24478 177802 -1 2491 14 1076 3558 217401 46741 6.05052 6.05052 -131.63 -6.05052 0 0 937218. 3242.97 0.31 0.09 0.19 -1 -1 0.31 0.0317125 0.0282716 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.75 vpr 54.87 MiB 0.05 6728 -1 -1 12 0.33 -1 -1 32884 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1320 8130 2002 5291 837 54.9 MiB 0.12 0.00 7.77357 -147.192 -7.77357 7.77357 0.76 0.000995194 0.000921572 0.0441083 0.0408206 34 3670 49 6.55708e+06 349595 585099. 2024.56 3.61 0.251237 0.219937 22462 138074 -1 3152 17 1354 4287 338822 69625 6.82884 6.82884 -141.794 -6.82884 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0365993 0.0324658 185 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 7.93 vpr 54.95 MiB 0.05 6596 -1 -1 13 0.30 -1 -1 32884 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1568 9951 2486 6481 984 55.6 MiB 0.15 0.00 7.68511 -161.036 -7.68511 7.68511 0.78 0.00114624 0.00106082 0.0563566 0.0521298 30 4515 42 6.55708e+06 385760 526063. 1820.29 1.99 0.229585 0.202158 21886 126133 -1 3502 28 2006 6066 507539 148279 6.97858 6.97858 -160.112 -6.97858 0 0 666494. 2306.21 0.23 0.19 0.13 -1 -1 0.23 0.0606938 0.0535037 223 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.49 vpr 54.80 MiB 0.02 6704 -1 -1 12 0.27 -1 -1 32768 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 16.4 MiB 0.41 1500 9773 2280 6498 995 55.3 MiB 0.14 0.00 7.53766 -152.093 -7.53766 7.53766 0.76 0.00106414 0.000984934 0.0504019 0.046653 36 3615 22 6.55708e+06 409870 612192. 2118.31 2.41 0.261051 0.228543 22750 144809 -1 3267 15 1282 4038 250204 54786 6.91184 6.91184 -150.725 -6.91184 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0354206 0.0315529 209 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.72 vpr 54.31 MiB 0.02 6644 -1 -1 12 0.18 -1 -1 32336 -1 -1 27 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55644 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 15.9 MiB 0.27 1024 5945 1385 4013 547 54.3 MiB 0.08 0.00 7.15274 -128.455 -7.15274 7.15274 0.75 0.000773965 0.000716254 0.0271025 0.0251036 28 2881 21 6.55708e+06 325485 500653. 1732.36 1.87 0.122127 0.107393 21310 115450 -1 2502 18 1060 3101 253804 71376 6.17638 6.17638 -123.112 -6.17638 0 0 612192. 2118.31 0.22 0.10 0.12 -1 -1 0.22 0.0291859 0.0258025 136 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 7.64 vpr 54.38 MiB 0.05 6656 -1 -1 11 0.18 -1 -1 32780 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56144 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 16.1 MiB 0.24 1220 9679 2547 5973 1159 54.8 MiB 0.13 0.00 6.45772 -132.139 -6.45772 6.45772 0.82 0.000926617 0.000856329 0.0476513 0.0440313 34 3233 33 6.55708e+06 337540 585099. 2024.56 2.31 0.205471 0.180307 22462 138074 -1 2692 15 1079 3432 234109 49429 5.57232 5.57232 -126.898 -5.57232 0 0 742403. 2568.87 0.25 0.09 0.14 -1 -1 0.25 0.0393717 0.035798 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.80 vpr 54.43 MiB 0.04 6544 -1 -1 12 0.17 -1 -1 32416 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 15.8 MiB 0.31 1146 12373 3633 6385 2355 54.4 MiB 0.14 0.00 7.00181 -148.703 -7.00181 7.00181 0.80 0.000568854 0.000515575 0.0485396 0.0444966 28 3444 25 6.55708e+06 301375 500653. 1732.36 2.22 0.157985 0.139694 21310 115450 -1 2797 15 1163 2905 215229 47266 6.33838 6.33838 -146.417 -6.33838 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.027689 0.0246011 145 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.63 vpr 54.41 MiB 0.04 6612 -1 -1 13 0.19 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 15.9 MiB 0.38 1098 10979 3065 6306 1608 54.5 MiB 0.14 0.00 7.23855 -159.771 -7.23855 7.23855 0.76 0.000894632 0.000826378 0.0521152 0.0479983 30 2916 16 6.55708e+06 301375 526063. 1820.29 1.22 0.151243 0.134162 21886 126133 -1 2360 15 1075 2940 169623 37663 6.18864 6.18864 -150.63 -6.18864 0 0 666494. 2306.21 0.28 0.07 0.14 -1 -1 0.28 0.0304653 0.0272298 162 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.76 vpr 54.22 MiB 0.04 6660 -1 -1 12 0.17 -1 -1 32776 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1073 8868 2309 4974 1585 54.3 MiB 0.10 0.00 7.23424 -146.32 -7.23424 7.23424 0.76 0.000765756 0.000705988 0.0400355 0.0369945 28 2738 31 6.55708e+06 265210 500653. 1732.36 1.38 0.14555 0.128077 21310 115450 -1 2373 18 973 2394 150083 34124 6.47024 6.47024 -142.379 -6.47024 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0290848 0.0257024 132 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.40 vpr 54.35 MiB 0.04 6588 -1 -1 12 0.14 -1 -1 32704 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55680 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 15.9 MiB 0.18 971 12175 3572 6038 2565 54.4 MiB 0.14 0.00 6.75009 -143.946 -6.75009 6.75009 0.76 0.000786491 0.000725911 0.0542998 0.0500628 34 2732 30 6.55708e+06 253155 585099. 2024.56 2.16 0.188102 0.165319 22462 138074 -1 2388 16 1037 2863 193037 44084 5.82038 5.82038 -140.579 -5.82038 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.027928 0.0248479 138 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.26 vpr 54.84 MiB 0.05 6748 -1 -1 13 0.27 -1 -1 32828 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 16.3 MiB 0.32 1456 5419 862 4216 341 55.1 MiB 0.09 0.00 7.90792 -162.801 -7.90792 7.90792 0.76 0.00107976 0.000998178 0.031627 0.0292884 34 3564 45 6.55708e+06 361650 585099. 2024.56 4.26 0.374194 0.324324 22462 138074 -1 3100 17 1282 3816 266207 55389 6.8405 6.8405 -150.939 -6.8405 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0395003 0.0350817 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 5.61 vpr 55.17 MiB 0.05 6708 -1 -1 14 0.31 -1 -1 33160 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 16.4 MiB 0.41 1487 7653 1685 5037 931 55.1 MiB 0.06 0.00 8.67599 -179.222 -8.67599 8.67599 0.62 0.000470579 0.00042963 0.0204128 0.0187189 36 3607 25 6.55708e+06 349595 612192. 2118.31 3.60 0.259198 0.224328 22750 144809 -1 3055 20 1304 3614 228238 49938 7.61881 7.61881 -167.089 -7.61881 0 0 782063. 2706.10 0.25 0.11 0.15 -1 -1 0.25 0.0447731 0.0396436 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 9.18 vpr 54.42 MiB 0.04 6540 -1 -1 11 0.17 -1 -1 32412 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.0 MiB 0.21 1095 15366 4454 8585 2327 54.6 MiB 0.17 0.00 6.42654 -129.9 -6.42654 6.42654 0.78 0.000824642 0.000761324 0.0672335 0.0620723 38 2530 16 6.55708e+06 349595 638502. 2209.35 3.93 0.273701 0.240023 23326 155178 -1 2215 14 872 2569 165338 34492 5.60952 5.60952 -121.963 -5.60952 0 0 851065. 2944.86 0.27 0.07 0.15 -1 -1 0.27 0.0262331 0.0233604 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.11 vpr 54.87 MiB 0.05 6828 -1 -1 12 0.27 -1 -1 32940 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 16.4 MiB 0.49 1497 7523 1547 5261 715 55.0 MiB 0.07 0.00 7.78498 -159.33 -7.78498 7.78498 0.63 0.000486568 0.000440871 0.0204115 0.0186472 44 3737 30 6.55708e+06 409870 742403. 2568.87 4.06 0.298043 0.258169 24478 177802 -1 2921 16 1109 3556 249234 49730 6.83084 6.83084 -148.474 -6.83084 0 0 937218. 3242.97 0.31 0.10 0.18 -1 -1 0.31 0.0385864 0.03438 213 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 12.61 vpr 54.74 MiB 0.02 6780 -1 -1 13 0.27 -1 -1 32752 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1448 9075 2050 5697 1328 55.2 MiB 0.14 0.00 8.28129 -168.719 -8.28129 8.28129 0.77 0.00109539 0.00101215 0.0500333 0.0462557 30 3614 28 6.55708e+06 385760 526063. 1820.29 1.56 0.19771 0.174447 21886 126133 -1 2873 15 1253 3756 200422 44906 7.0769 7.0769 -159.042 -7.0769 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0372825 0.0332644 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.64 vpr 54.44 MiB 0.02 6536 -1 -1 12 0.15 -1 -1 32596 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55740 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 15.9 MiB 0.53 1089 8402 1864 6112 426 54.4 MiB 0.11 0.00 7.26292 -158.375 -7.26292 7.26292 0.77 0.000831353 0.000767024 0.0398973 0.0368514 28 2902 19 6.55708e+06 265210 500653. 1732.36 1.56 0.140409 0.124107 21310 115450 -1 2466 15 1037 2818 180974 42146 6.2029 6.2029 -150.571 -6.2029 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0277489 0.0247002 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.22 vpr 53.88 MiB 0.04 6412 -1 -1 10 0.10 -1 -1 32140 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55404 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 15.6 MiB 0.12 786 5244 1130 3909 205 54.1 MiB 0.06 0.00 5.1986 -117.15 -5.1986 5.1986 0.76 0.000626036 0.000578848 0.021155 0.0195537 36 1939 26 6.55708e+06 241100 612192. 2118.31 3.65 0.172777 0.149007 22750 144809 -1 1664 15 668 1659 108652 24325 4.5098 4.5098 -113.181 -4.5098 0 0 782063. 2706.10 0.26 0.06 0.15 -1 -1 0.26 0.0204881 0.0180383 96 88 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.40 vpr 54.59 MiB 0.04 6560 -1 -1 13 0.16 -1 -1 32652 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55732 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1123 5079 946 3658 475 54.4 MiB 0.07 0.00 7.44701 -156.373 -7.44701 7.44701 0.76 0.00080568 0.00074393 0.0242495 0.0224017 28 2792 17 6.55708e+06 289320 500653. 1732.36 2.76 0.206064 0.178863 21310 115450 -1 2452 27 984 2585 276753 108584 6.45598 6.45598 -148.215 -6.45598 0 0 612192. 2118.31 0.21 0.13 0.12 -1 -1 0.21 0.040396 0.0354376 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 9.73 vpr 55.03 MiB 0.05 6680 -1 -1 13 0.30 -1 -1 32804 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1494 10031 2522 6626 883 55.1 MiB 0.14 0.00 7.77584 -154.394 -7.77584 7.77584 0.76 0.00106206 0.000982372 0.0536669 0.0495538 28 4154 45 6.55708e+06 373705 500653. 1732.36 2.58 0.226549 0.199557 21310 115450 -1 3600 19 1886 6145 464983 96681 6.70098 6.70098 -154.034 -6.70098 0 0 612192. 2118.31 0.23 0.15 0.12 -1 -1 0.23 0.0431619 0.0381451 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 9.31 vpr 55.02 MiB 0.05 6816 -1 -1 13 0.28 -1 -1 33356 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 16.5 MiB 0.41 1626 7973 1601 5735 637 55.1 MiB 0.12 0.00 7.9648 -163.763 -7.9648 7.9648 0.63 0.00105252 0.000973142 0.0419344 0.0387663 38 3853 20 6.55708e+06 409870 638502. 2209.35 5.18 0.388292 0.33748 23326 155178 -1 3261 15 1306 4444 281331 57915 6.9607 6.9607 -152.308 -6.9607 0 0 851065. 2944.86 0.27 0.11 0.15 -1 -1 0.27 0.036562 0.0326438 207 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.51 vpr 53.78 MiB 0.04 6412 -1 -1 9 0.09 -1 -1 32228 -1 -1 21 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55016 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 15.1 MiB 0.26 710 10557 2762 6888 907 53.7 MiB 0.09 0.00 4.66154 -94.5374 -4.66154 4.66154 0.76 0.000542789 0.000502201 0.0361466 0.0334588 28 1847 15 6.55708e+06 253155 500653. 1732.36 0.92 0.0961774 0.0849366 21310 115450 -1 1704 13 621 1618 119185 26142 4.08748 4.08748 -94.2196 -4.08748 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0159914 0.0140939 83 73 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.64 vpr 54.81 MiB 0.04 6688 -1 -1 13 0.30 -1 -1 32808 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 16.4 MiB 0.19 1530 4780 793 3650 337 55.2 MiB 0.08 0.00 7.84695 -156.636 -7.84695 7.84695 0.76 0.00106465 0.000980331 0.0289847 0.0268077 28 4145 48 6.55708e+06 361650 500653. 1732.36 4.43 0.367121 0.318253 21310 115450 -1 3393 21 1643 4526 459813 148006 6.9633 6.9633 -153.196 -6.9633 0 0 612192. 2118.31 0.21 0.16 0.12 -1 -1 0.21 0.0468508 0.0414806 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.11 vpr 53.67 MiB 0.04 6300 -1 -1 8 0.09 -1 -1 31032 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55160 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 15.3 MiB 0.19 436 8831 2193 4716 1922 53.9 MiB 0.08 0.00 4.66158 -87.3613 -4.66158 4.66158 0.76 0.000554085 0.000511264 0.0303352 0.0280553 32 1489 41 6.55708e+06 204935 554710. 1919.41 2.85 0.160899 0.139281 22174 131602 -1 1162 17 597 1146 99988 30533 4.04726 4.04726 -88.7754 -4.04726 0 0 701300. 2426.64 0.23 0.05 0.15 -1 -1 0.23 0.0184887 0.016193 77 61 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 6.11 vpr 54.62 MiB 0.04 6708 -1 -1 15 0.23 -1 -1 33148 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 16.1 MiB 0.21 1127 8999 2110 5455 1434 54.7 MiB 0.12 0.00 8.78748 -168.447 -8.78748 8.78748 0.76 0.000933302 0.000861918 0.0473116 0.0437828 34 3132 27 6.55708e+06 301375 585099. 2024.56 3.73 0.28838 0.25106 22462 138074 -1 2531 16 1109 3183 221854 47938 7.41762 7.41762 -157.157 -7.41762 0 0 742403. 2568.87 0.25 0.09 0.15 -1 -1 0.25 0.0325492 0.0288328 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.82 vpr 54.67 MiB 0.05 6732 -1 -1 12 0.25 -1 -1 32688 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 16.3 MiB 0.28 1426 7871 1871 5355 645 55.1 MiB 0.10 0.00 6.97141 -150.212 -6.97141 6.97141 0.81 0.00107882 0.000996966 0.0340801 0.0313775 30 3950 43 6.55708e+06 373705 526063. 1820.29 2.20 0.207998 0.182301 21886 126133 -1 3218 15 1425 4406 249922 54842 6.49978 6.49978 -150.502 -6.49978 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0365274 0.0325288 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.42 vpr 54.81 MiB 0.05 6812 -1 -1 13 0.27 -1 -1 32832 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1403 8993 2077 6178 738 55.0 MiB 0.17 0.00 7.73601 -160.617 -7.73601 7.73601 0.76 0.00069953 0.000639801 0.0364458 0.0333801 30 3495 43 6.55708e+06 337540 526063. 1820.29 1.81 0.207969 0.183182 21886 126133 -1 2907 17 1244 3835 223711 48943 6.6419 6.6419 -153.545 -6.6419 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0372301 0.0330581 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 7.04 vpr 54.39 MiB 0.04 6508 -1 -1 12 0.17 -1 -1 32284 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 16.0 MiB 0.22 1093 9158 2327 6239 592 54.6 MiB 0.12 0.00 6.471 -143.803 -6.471 6.471 0.76 0.000838648 0.000770763 0.0437493 0.0403369 28 2997 42 6.55708e+06 265210 500653. 1732.36 1.60 0.172614 0.151808 21310 115450 -1 2535 25 1047 2812 273709 92193 5.83566 5.83566 -140.532 -5.83566 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0404009 0.0355313 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.62 vpr 54.17 MiB 0.04 6664 -1 -1 11 0.15 -1 -1 32780 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55560 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 15.8 MiB 0.18 1045 6781 1469 4387 925 54.3 MiB 0.08 0.00 6.28146 -130.954 -6.28146 6.28146 0.78 0.000759171 0.000701752 0.024481 0.02252 28 2717 46 6.55708e+06 277265 500653. 1732.36 5.08 0.229256 0.198953 21310 115450 -1 2299 15 892 2470 164935 35783 5.68992 5.68992 -128.681 -5.68992 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.025115 0.0222606 128 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 6.56 vpr 54.30 MiB 0.04 6704 -1 -1 11 0.16 -1 -1 32484 -1 -1 27 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1079 8535 1915 5707 913 54.5 MiB 0.11 0.00 6.57292 -128.193 -6.57292 6.57292 0.76 0.000791607 0.000731626 0.0384749 0.0355647 30 2833 23 6.55708e+06 325485 526063. 1820.29 1.45 0.138077 0.121772 21886 126133 -1 2357 15 1025 3000 179385 38373 5.54018 5.54018 -121.408 -5.54018 0 0 666494. 2306.21 0.23 0.09 0.12 -1 -1 0.23 0.0288456 0.025288 142 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 5.98 vpr 54.61 MiB 0.04 6520 -1 -1 12 0.19 -1 -1 32572 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 16.3 MiB 0.20 1327 6716 1263 5020 433 54.7 MiB 0.10 0.00 7.20375 -160.021 -7.20375 7.20375 0.76 0.00122989 0.00115552 0.0345822 0.0320047 28 3446 27 6.55708e+06 337540 500653. 1732.36 6.95 0.271245 0.236367 21310 115450 -1 2918 17 1234 3246 203431 46346 6.47024 6.47024 -156.89 -6.47024 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0402789 0.035247 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 5.49 vpr 54.25 MiB 0.04 6460 -1 -1 11 0.17 -1 -1 32600 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55768 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 15.9 MiB 0.25 1072 4244 722 3315 207 54.5 MiB 0.06 0.00 6.41894 -136.128 -6.41894 6.41894 0.76 0.000847583 0.00078282 0.0229788 0.0212395 28 2955 25 6.55708e+06 277265 500653. 1732.36 1.29 0.130279 0.113948 21310 115450 -1 2472 21 1309 3658 233854 54032 6.01132 6.01132 -139.086 -6.01132 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0356865 0.0314219 147 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 7.36 vpr 54.22 MiB 0.04 6544 -1 -1 10 0.14 -1 -1 32624 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55596 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.21 967 12733 4051 6442 2240 54.3 MiB 0.14 0.00 6.08886 -123.876 -6.08886 6.08886 0.76 0.000788136 0.000727016 0.0573799 0.0529553 32 2530 21 6.55708e+06 289320 554710. 1919.41 0.98 0.154908 0.137341 22174 131602 -1 2226 13 810 2355 168305 37054 5.30638 5.30638 -118.841 -5.30638 0 0 701300. 2426.64 0.23 0.07 0.13 -1 -1 0.23 0.0238909 0.0212788 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 10.20 vpr 55.06 MiB 0.03 6840 -1 -1 13 0.33 -1 -1 33220 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 16.7 MiB 0.30 1621 5869 1104 4212 553 55.3 MiB 0.10 0.00 7.46683 -155.207 -7.46683 7.46683 0.76 0.00116109 0.00107259 0.0352278 0.03257 30 4073 35 6.55708e+06 397815 526063. 1820.29 1.95 0.208238 0.182851 21886 126133 -1 3209 17 1391 4648 273815 58036 6.6419 6.6419 -148.671 -6.6419 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.042762 0.0379734 239 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 5.55 vpr 54.74 MiB 0.03 6668 -1 -1 13 0.36 -1 -1 32948 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 16.4 MiB 0.40 1508 8283 1888 5355 1040 55.2 MiB 0.13 0.00 8.09706 -175.077 -8.09706 8.09706 0.76 0.00107221 0.000990947 0.0465281 0.0429809 38 3523 25 6.55708e+06 349595 638502. 2209.35 4.40 0.355647 0.309078 23326 155178 -1 3029 20 1281 4361 254328 54126 7.1207 7.1207 -164.977 -7.1207 0 0 851065. 2944.86 0.27 0.11 0.15 -1 -1 0.27 0.0449457 0.039807 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.89 vpr 54.30 MiB 0.04 6580 -1 -1 12 0.15 -1 -1 32660 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55784 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 16.0 MiB 0.28 1096 12568 3446 6926 2196 54.5 MiB 0.14 0.00 6.66868 -144.132 -6.66868 6.66868 0.83 0.00062593 0.000568803 0.0481556 0.0439477 34 2970 19 6.55708e+06 301375 585099. 2024.56 2.31 0.185802 0.163511 22462 138074 -1 2513 16 1088 2991 208088 44712 5.70218 5.70218 -136.293 -5.70218 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.027974 0.0248245 150 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.42 vpr 55.14 MiB 0.05 6816 -1 -1 12 0.25 -1 -1 33064 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1489 8977 2020 5913 1044 55.3 MiB 0.13 0.00 8.10558 -165.766 -8.10558 8.10558 0.76 0.00107668 0.000995666 0.0479922 0.0444071 36 3633 26 6.55708e+06 409870 612192. 2118.31 3.21 0.285736 0.252051 22750 144809 -1 3170 33 1275 3966 522085 228509 7.1965 7.1965 -160.118 -7.1965 0 0 782063. 2706.10 0.26 0.21 0.15 -1 -1 0.26 0.0667581 0.0584446 219 219 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 15.45 vpr 54.83 MiB 0.05 6844 -1 -1 14 0.34 -1 -1 33192 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1460 6211 1289 4295 627 55.0 MiB 0.10 0.00 8.35283 -161.679 -8.35283 8.35283 0.76 0.001046 0.000968415 0.0361224 0.0334736 30 3670 35 6.55708e+06 337540 526063. 1820.29 1.92 0.198371 0.174935 21886 126133 -1 3039 16 1312 3757 214113 46231 7.32956 7.32956 -156.91 -7.32956 0 0 666494. 2306.21 0.24 0.10 0.15 -1 -1 0.24 0.0381854 0.0341853 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 6.77 vpr 54.66 MiB 0.05 6764 -1 -1 13 0.27 -1 -1 32816 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1364 9271 2151 5683 1437 54.9 MiB 0.13 0.00 7.40806 -157.551 -7.40806 7.40806 0.77 0.000969234 0.000893807 0.0505219 0.0466412 30 3530 22 6.55708e+06 337540 526063. 1820.29 1.25 0.16963 0.149686 21886 126133 -1 2929 17 1403 3811 222616 49243 6.37758 6.37758 -149.247 -6.37758 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0354776 0.0314817 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.84 vpr 54.77 MiB 0.05 6740 -1 -1 12 0.24 -1 -1 33080 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 16.4 MiB 0.47 1374 13743 3666 8130 1947 54.9 MiB 0.18 0.00 6.76701 -143.203 -6.76701 6.76701 0.76 0.00100541 0.000929562 0.0705037 0.0651523 34 4019 49 6.55708e+06 361650 585099. 2024.56 4.00 0.320749 0.281388 22462 138074 -1 3201 17 1352 4243 298965 63294 5.90078 5.90078 -139.937 -5.90078 0 0 742403. 2568.87 0.26 0.11 0.14 -1 -1 0.26 0.0390645 0.0347982 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.14 vpr 54.68 MiB 0.05 6800 -1 -1 12 0.19 -1 -1 32840 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1252 8278 1977 5044 1257 54.9 MiB 0.11 0.00 7.19338 -143.847 -7.19338 7.19338 0.76 0.00091971 0.000850985 0.0427188 0.0395209 30 2996 16 6.55708e+06 289320 526063. 1820.29 1.04 0.146507 0.129287 21886 126133 -1 2455 16 979 2839 166694 36286 6.1631 6.1631 -136.288 -6.1631 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0317326 0.0281253 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 9.07 vpr 55.23 MiB 0.05 7048 -1 -1 14 0.43 -1 -1 32484 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1757 10673 2583 7118 972 55.0 MiB 0.17 0.00 8.08019 -170.094 -8.08019 8.08019 0.76 0.00122096 0.0011304 0.0615112 0.0568692 46 4041 18 6.55708e+06 409870 782063. 2706.10 4.34 0.414802 0.362222 24766 183262 -1 3418 16 1317 4886 320292 63286 7.0005 7.0005 -155.617 -7.0005 0 0 958460. 3316.47 0.31 0.12 0.18 -1 -1 0.31 0.0424092 0.0378099 245 245 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.88 vpr 54.54 MiB 0.05 6460 -1 -1 11 0.19 -1 -1 32368 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 15.9 MiB 0.22 1212 8009 2047 5116 846 54.5 MiB 0.11 0.00 6.43815 -136.573 -6.43815 6.43815 0.76 0.000894684 0.000828045 0.039847 0.0368511 30 2894 17 6.55708e+06 313430 526063. 1820.29 1.30 0.144552 0.127425 21886 126133 -1 2572 17 1181 3275 202480 42282 5.53052 5.53052 -132.73 -5.53052 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0326033 0.0288697 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.11 vpr 54.98 MiB 0.05 6768 -1 -1 13 0.26 -1 -1 32764 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 16.4 MiB 0.36 1339 4512 785 3381 346 54.9 MiB 0.08 0.00 8.23298 -156.44 -8.23298 8.23298 0.77 0.00099249 0.00090668 0.0262895 0.0243037 36 3369 26 6.55708e+06 325485 612192. 2118.31 2.98 0.232867 0.202354 22750 144809 -1 2780 16 1061 3515 219491 47004 7.0815 7.0815 -147.186 -7.0815 0 0 782063. 2706.10 0.26 0.09 0.14 -1 -1 0.26 0.0344235 0.0305808 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 7.83 vpr 54.96 MiB 0.02 6684 -1 -1 12 0.29 -1 -1 32900 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 16.7 MiB 0.41 1513 7973 1697 5548 728 55.2 MiB 0.12 0.00 7.05697 -153.444 -7.05697 7.05697 0.81 0.00111777 0.00103302 0.0440069 0.0407319 36 3827 24 6.55708e+06 409870 612192. 2118.31 4.54 0.361292 0.315098 22750 144809 -1 3326 16 1410 5196 341496 71669 6.34038 6.34038 -150.148 -6.34038 0 0 782063. 2706.10 0.24 0.12 0.09 -1 -1 0.24 0.0393003 0.0349586 227 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 10.79 vpr 54.75 MiB 0.05 6704 -1 -1 13 0.24 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 16.3 MiB 0.18 1286 13340 3362 8056 1922 54.9 MiB 0.17 0.00 7.57452 -156.038 -7.57452 7.57452 0.76 0.000985608 0.000911222 0.06736 0.0621945 38 2889 27 6.55708e+06 337540 638502. 2209.35 3.87 0.373083 0.325616 23326 155178 -1 2466 16 1198 3651 221364 46789 6.66944 6.66944 -147.064 -6.66944 0 0 851065. 2944.86 0.27 0.09 0.15 -1 -1 0.27 0.0346453 0.0307852 184 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 7.09 vpr 54.68 MiB 0.02 6848 -1 -1 13 0.20 -1 -1 32744 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 16.2 MiB 0.28 1203 12563 3367 6823 2373 54.7 MiB 0.16 0.00 7.77281 -162.033 -7.77281 7.77281 0.76 0.000953689 0.000879119 0.0647009 0.0596219 30 3194 40 6.55708e+06 301375 526063. 1820.29 1.43 0.209239 0.184435 21886 126133 -1 2369 16 994 3080 158360 36540 6.6027 6.6027 -146.456 -6.6027 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0337515 0.0299726 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.40 vpr 54.93 MiB 0.02 6768 -1 -1 12 0.27 -1 -1 32844 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 16.4 MiB 0.59 1416 10679 2747 6565 1367 55.1 MiB 0.15 0.00 6.86528 -151.049 -6.86528 6.86528 0.77 0.00106325 0.000981793 0.0569157 0.0525277 34 3877 44 6.55708e+06 373705 585099. 2024.56 3.24 0.305096 0.267911 22462 138074 -1 3054 16 1243 4230 282518 59991 6.14378 6.14378 -144.155 -6.14378 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0379776 0.0337955 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.90 vpr 55.12 MiB 0.05 6840 -1 -1 13 0.27 -1 -1 32752 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 16.3 MiB 0.32 1584 11223 2635 7117 1471 55.1 MiB 0.16 0.00 7.96921 -159.229 -7.96921 7.96921 0.76 0.00106371 0.000977591 0.0608821 0.0562336 36 3998 40 6.55708e+06 349595 612192. 2118.31 4.40 0.315286 0.27744 22750 144809 -1 3408 20 1540 4794 331369 68533 7.1639 7.1639 -152.595 -7.1639 0 0 782063. 2706.10 0.26 0.13 0.15 -1 -1 0.26 0.0443049 0.0392017 205 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.35 vpr 54.82 MiB 0.04 6664 -1 -1 14 0.26 -1 -1 32908 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1228 9197 2464 5958 775 54.9 MiB 0.13 0.00 7.91369 -163.421 -7.91369 7.91369 0.76 0.000957284 0.000876701 0.0488382 0.0450458 28 3368 23 6.55708e+06 301375 500653. 1732.36 2.20 0.170533 0.150639 21310 115450 -1 3015 20 1490 4712 319020 71516 7.18744 7.18744 -162.738 -7.18744 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.040093 0.0354946 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.87 vpr 54.88 MiB 0.05 6712 -1 -1 13 0.27 -1 -1 32808 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 16.4 MiB 0.48 1537 7336 1683 5066 587 55.0 MiB 0.12 0.00 8.38432 -170.174 -8.38432 8.38432 0.77 0.00102648 0.00094877 0.0408106 0.0377031 36 3607 26 6.55708e+06 361650 612192. 2118.31 2.46 0.222033 0.194445 22750 144809 -1 3162 16 1308 3779 262460 55344 7.21136 7.21136 -157.654 -7.21136 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0360743 0.032064 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 13.93 vpr 54.84 MiB 0.05 6828 -1 -1 13 0.30 -1 -1 32984 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 16.7 MiB 0.29 1531 8951 1993 6087 871 55.3 MiB 0.14 0.00 8.45326 -176.134 -8.45326 8.45326 0.77 0.00108943 0.00100669 0.0499543 0.0460788 36 3732 42 6.55708e+06 385760 612192. 2118.31 2.08 0.247006 0.216383 22750 144809 -1 3202 14 1334 4343 274009 58655 7.3983 7.3983 -163.874 -7.3983 0 0 782063. 2706.10 0.27 0.11 0.14 -1 -1 0.27 0.0362265 0.0323689 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.95 vpr 55.01 MiB 0.04 6860 -1 -1 12 0.30 -1 -1 32836 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1599 7323 1463 5208 652 55.3 MiB 0.12 0.00 7.47193 -159.786 -7.47193 7.47193 0.76 0.00111395 0.00102953 0.0420442 0.0388542 38 3591 36 6.55708e+06 385760 638502. 2209.35 4.85 0.428461 0.371839 23326 155178 -1 3156 17 1372 4497 293304 60481 6.6439 6.6439 -151.142 -6.6439 0 0 851065. 2944.86 0.27 0.11 0.15 -1 -1 0.27 0.041063 0.0365084 231 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.15 vpr 54.20 MiB 0.03 6496 -1 -1 11 0.13 -1 -1 32440 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 15.8 MiB 0.24 1043 10883 2916 6057 1910 54.2 MiB 0.13 0.00 5.95009 -133.303 -5.95009 5.95009 0.76 0.000752845 0.000694505 0.0484637 0.0446683 30 2600 34 6.55708e+06 229045 526063. 1820.29 1.11 0.154981 0.136594 21886 126133 -1 2240 17 876 2413 138426 30448 5.28046 5.28046 -128.473 -5.28046 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0274536 0.0242604 127 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 5.70 vpr 54.62 MiB 0.04 6700 -1 -1 13 0.20 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 16.1 MiB 0.48 1281 6211 1217 4524 470 54.8 MiB 0.09 0.00 7.73937 -166.104 -7.73937 7.73937 0.76 0.000883642 0.000816613 0.030877 0.0285466 28 3381 28 6.55708e+06 325485 500653. 1732.36 1.74 0.150428 0.131464 21310 115450 -1 3016 20 1150 3259 268058 70084 6.82684 6.82684 -160.33 -6.82684 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0365719 0.0322678 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 14.36 vpr 55.34 MiB 0.05 7028 -1 -1 14 0.43 -1 -1 32876 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 17.0 MiB 0.36 1818 9380 1999 6471 910 55.3 MiB 0.15 0.00 8.82888 -183.788 -8.82888 8.82888 0.76 0.00124729 0.00115319 0.0556334 0.0513741 36 4530 49 6.55708e+06 433980 612192. 2118.31 4.61 0.369532 0.324072 22750 144809 -1 3723 18 1552 4791 333610 69622 7.76855 7.76855 -172.747 -7.76855 0 0 782063. 2706.10 0.26 0.13 0.14 -1 -1 0.26 0.0476043 0.042383 267 267 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.30 vpr 54.64 MiB 0.04 6636 -1 -1 13 0.32 -1 -1 32804 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 16.5 MiB 0.45 1477 8735 1981 6002 752 55.2 MiB 0.13 0.00 7.79483 -168.531 -7.79483 7.79483 0.76 0.00112625 0.00103942 0.0513237 0.0473256 28 4106 28 6.55708e+06 373705 500653. 1732.36 3.37 0.331795 0.289909 21310 115450 -1 3378 17 1550 4546 280403 63000 6.81858 6.81858 -160.269 -6.81858 0 0 612192. 2118.31 0.23 0.11 0.12 -1 -1 0.23 0.0426201 0.0379112 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.98 vpr 54.24 MiB 0.04 6644 -1 -1 11 0.16 -1 -1 32648 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55680 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.19 916 9943 3248 5072 1623 54.4 MiB 0.12 0.00 6.47975 -131.851 -6.47975 6.47975 0.78 0.000800051 0.0007377 0.0460767 0.04248 34 2518 24 6.55708e+06 277265 585099. 2024.56 1.86 0.176741 0.155307 22462 138074 -1 2137 15 954 2833 189728 42860 5.54018 5.54018 -123.35 -5.54018 0 0 742403. 2568.87 0.25 0.07 0.14 -1 -1 0.25 0.0262405 0.0232743 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 8.42 vpr 55.18 MiB 0.05 7076 -1 -1 15 0.43 -1 -1 32956 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 16.9 MiB 0.32 1670 7867 1614 5465 788 55.5 MiB 0.13 0.00 8.70958 -179.837 -8.70958 8.70958 0.76 0.00119865 0.00110793 0.047254 0.0436797 36 4368 41 6.55708e+06 397815 612192. 2118.31 4.99 0.335949 0.294385 22750 144809 -1 3690 20 1747 5765 389698 81544 7.58523 7.58523 -169.501 -7.58523 0 0 782063. 2706.10 0.26 0.13 0.13 -1 -1 0.26 0.0453978 0.0408615 241 241 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 5.07 vpr 54.91 MiB 0.04 6784 -1 -1 13 0.31 -1 -1 33040 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1370 12483 3068 7076 2339 55.1 MiB 0.17 0.00 7.72925 -154.988 -7.72925 7.72925 0.76 0.00108108 0.000999563 0.0682238 0.063099 38 3555 25 6.55708e+06 349595 638502. 2209.35 2.54 0.288382 0.253109 23326 155178 -1 2898 17 1274 3795 245269 51573 7.0025 7.0025 -148.184 -7.0025 0 0 851065. 2944.86 0.27 0.10 0.15 -1 -1 0.27 0.0401237 0.0357141 207 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 10.77 vpr 54.35 MiB 0.04 6560 -1 -1 11 0.13 -1 -1 32776 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55672 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 15.9 MiB 0.21 1161 6718 1477 4583 658 54.4 MiB 0.09 0.00 6.62468 -135.028 -6.62468 6.62468 0.76 0.000798895 0.000737675 0.0305995 0.0282697 30 2814 20 6.55708e+06 289320 526063. 1820.29 3.12 0.22592 0.196276 21886 126133 -1 2390 15 1004 2790 161805 36457 6.09938 6.09938 -133.751 -6.09938 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0263418 0.023379 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.89 vpr 55.29 MiB 0.02 6876 -1 -1 12 0.31 -1 -1 32872 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 16.5 MiB 0.33 1540 8735 2140 5810 785 55.2 MiB 0.13 0.00 7.17512 -150.872 -7.17512 7.17512 0.76 0.00107977 0.000997351 0.0478927 0.0442161 36 3621 46 6.55708e+06 373705 612192. 2118.31 2.56 0.281124 0.2453 22750 144809 -1 3204 18 1264 4008 285489 58457 6.47224 6.47224 -147.173 -6.47224 0 0 782063. 2706.10 0.26 0.11 0.15 -1 -1 0.26 0.0419761 0.037245 217 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.05 vpr 54.54 MiB 0.04 6488 -1 -1 12 0.21 -1 -1 32336 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 16.0 MiB 0.24 1252 5517 962 4221 334 54.6 MiB 0.08 0.00 7.41221 -152.744 -7.41221 7.41221 0.77 0.00093077 0.000861576 0.0288667 0.0267624 28 3606 43 6.55708e+06 313430 500653. 1732.36 6.87 0.300582 0.260413 21310 115450 -1 2885 17 1246 3438 233079 50634 6.6027 6.6027 -150.262 -6.6027 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0333858 0.0295673 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.49 vpr 54.31 MiB 0.04 6568 -1 -1 12 0.18 -1 -1 32696 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55668 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 15.9 MiB 0.20 998 6383 1524 4361 498 54.4 MiB 0.08 0.00 7.15324 -144.822 -7.15324 7.15324 0.77 0.000620003 0.000564457 0.025785 0.0235625 26 2717 21 6.55708e+06 253155 477104. 1650.88 3.55 0.223368 0.193969 21022 109990 -1 2407 18 956 2778 197296 42815 6.50944 6.50944 -140.652 -6.50944 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0309376 0.0273159 139 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.80 vpr 54.68 MiB 0.05 6776 -1 -1 12 0.28 -1 -1 32796 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1315 14583 4048 7926 2609 55.0 MiB 0.19 0.00 7.005 -132.757 -7.005 7.005 0.76 0.00105011 0.000968815 0.0783395 0.0721189 30 3847 35 6.55708e+06 385760 526063. 1820.29 2.27 0.234515 0.207806 21886 126133 -1 2891 21 1370 4386 359593 111315 6.35204 6.35204 -127.925 -6.35204 0 0 666494. 2306.21 0.23 0.14 0.13 -1 -1 0.23 0.045356 0.0400777 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 16.19 vpr 55.30 MiB 0.05 6796 -1 -1 14 0.31 -1 -1 32988 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 16.7 MiB 0.48 1622 11046 2782 7202 1062 55.2 MiB 0.16 0.00 8.27143 -173.321 -8.27143 8.27143 0.76 0.00113955 0.0010545 0.0621315 0.0574544 30 4173 46 6.55708e+06 385760 526063. 1820.29 1.87 0.24064 0.211859 21886 126133 -1 3334 18 1567 4522 271499 57748 7.21136 7.21136 -166.906 -7.21136 0 0 666494. 2306.21 0.29 0.12 0.13 -1 -1 0.29 0.0487556 0.0438952 227 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 8.87 vpr 54.76 MiB 0.05 6660 -1 -1 12 0.23 -1 -1 32800 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 16.3 MiB 0.37 1318 5191 912 3744 535 54.9 MiB 0.09 0.00 7.44045 -154.388 -7.44045 7.44045 0.76 0.0010286 0.000949779 0.0301006 0.0278588 28 4086 41 6.55708e+06 325485 500653. 1732.36 2.44 0.191935 0.168216 21310 115450 -1 3199 20 1706 5288 400979 98452 6.59044 6.59044 -152.65 -6.59044 0 0 612192. 2118.31 0.21 0.15 0.12 -1 -1 0.21 0.0439356 0.0389368 192 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 11.87 vpr 54.25 MiB 0.03 6556 -1 -1 12 0.14 -1 -1 32704 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55504 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 15.8 MiB 0.36 1100 6615 1512 4600 503 54.2 MiB 0.05 0.00 6.69922 -140.427 -6.69922 6.69922 0.73 0.000349355 0.000320307 0.0141942 0.013032 30 2486 30 6.55708e+06 277265 526063. 1820.29 0.91 0.0658291 0.0577576 21886 126133 -1 2180 16 812 2483 134222 30361 5.85958 5.85958 -134.393 -5.85958 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0264908 0.0234412 133 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.24 vpr 54.39 MiB 0.05 6684 -1 -1 12 0.23 -1 -1 32364 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 15.9 MiB 0.23 1148 11398 2849 6739 1810 54.8 MiB 0.14 0.00 7.39043 -143.264 -7.39043 7.39043 0.76 0.000924943 0.000855825 0.0579791 0.0537068 34 2972 22 6.55708e+06 301375 585099. 2024.56 3.02 0.245382 0.214471 22462 138074 -1 2545 17 1033 2874 180703 41448 6.4825 6.4825 -138.698 -6.4825 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0334439 0.0295908 170 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.20 vpr 54.76 MiB 0.04 6792 -1 -1 11 0.19 -1 -1 32932 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1267 6723 1289 4852 582 54.8 MiB 0.10 0.00 6.0378 -125.718 -6.0378 6.0378 0.75 0.00096808 0.000895359 0.0361446 0.0334662 28 3835 47 6.55708e+06 337540 500653. 1732.36 2.30 0.197157 0.17252 21310 115450 -1 3126 25 1760 6408 637245 182346 5.49332 5.49332 -129.398 -5.49332 0 0 612192. 2118.31 0.21 0.19 0.12 -1 -1 0.21 0.0472825 0.0414437 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.83 vpr 54.59 MiB 0.05 6872 -1 -1 11 0.20 -1 -1 32744 -1 -1 28 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56028 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1153 14128 4158 7800 2170 54.7 MiB 0.17 0.00 6.59995 -118.466 -6.59995 6.59995 0.76 0.000908493 0.000839835 0.0695818 0.0643565 36 2889 50 6.55708e+06 337540 612192. 2118.31 2.12 0.249605 0.219266 22750 144809 -1 2652 19 1154 3777 272487 67580 5.62118 5.62118 -114.584 -5.62118 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0363175 0.0320686 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 5.71 vpr 54.48 MiB 0.04 6616 -1 -1 13 0.18 -1 -1 32680 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55748 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 15.9 MiB 0.45 1112 5463 1180 3669 614 54.4 MiB 0.08 0.00 7.87624 -151.634 -7.87624 7.87624 0.81 0.000800796 0.000739805 0.0261208 0.0241857 28 3091 32 6.55708e+06 301375 500653. 1732.36 6.14 0.237683 0.206669 21310 115450 -1 2532 15 1005 2710 175123 38732 6.8803 6.8803 -146.9 -6.8803 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0264979 0.0235403 142 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.38 vpr 54.53 MiB 0.04 6512 -1 -1 12 0.19 -1 -1 32628 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 16.2 MiB 0.32 1245 6211 1266 4515 430 54.8 MiB 0.09 0.00 7.2362 -155.292 -7.2362 7.2362 0.79 0.000953507 0.000879953 0.0326953 0.0302427 28 3654 37 6.55708e+06 325485 500653. 1732.36 5.34 0.306849 0.266505 21310 115450 -1 2851 17 1263 3376 222424 49514 6.39124 6.39124 -149.252 -6.39124 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0347735 0.0308019 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 5.10 vpr 54.75 MiB 0.05 6736 -1 -1 13 0.28 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1187 15843 5382 8046 2415 55.0 MiB 0.20 0.00 7.69912 -151.004 -7.69912 7.69912 0.77 0.00101045 0.000934416 0.0804924 0.0743606 36 3053 22 6.55708e+06 361650 612192. 2118.31 4.15 0.360816 0.316736 22750 144809 -1 2463 16 1174 3476 216718 48576 6.8431 6.8431 -141.499 -6.8431 0 0 782063. 2706.10 0.25 0.09 0.15 -1 -1 0.25 0.0354416 0.0314617 195 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 6.76 vpr 54.82 MiB 0.05 6720 -1 -1 14 0.28 -1 -1 32848 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 16.4 MiB 0.27 1371 16295 4299 9326 2670 55.1 MiB 0.21 0.00 7.90558 -162.398 -7.90558 7.90558 0.76 0.0010983 0.00100994 0.086977 0.0803492 34 3710 36 6.55708e+06 373705 585099. 2024.56 4.17 0.402947 0.353483 22462 138074 -1 2910 19 1286 3920 251058 55159 7.1991 7.1991 -156.449 -7.1991 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0439415 0.0389794 215 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 5.17 vpr 54.79 MiB 0.05 6840 -1 -1 14 0.28 -1 -1 32872 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1364 9067 2106 6307 654 55.0 MiB 0.13 0.00 7.8859 -150.917 -7.8859 7.8859 0.76 0.00100299 0.000924972 0.0484006 0.0446788 36 3422 25 6.55708e+06 325485 612192. 2118.31 3.17 0.253712 0.221808 22750 144809 -1 2970 27 1242 4084 435817 152680 6.6399 6.6399 -141.786 -6.6399 0 0 782063. 2706.10 0.26 0.16 0.14 -1 -1 0.26 0.0517944 0.0455109 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.69 vpr 54.99 MiB 0.02 6788 -1 -1 13 0.31 -1 -1 33256 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1350 6211 1219 4577 415 55.0 MiB 0.10 0.00 7.98147 -162.621 -7.98147 7.98147 0.76 0.00104107 0.000961698 0.0368292 0.0340647 36 3281 27 6.55708e+06 325485 612192. 2118.31 2.67 0.222765 0.194742 22750 144809 -1 2727 16 1196 3710 242013 52174 6.8777 6.8777 -147.177 -6.8777 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0367397 0.0326705 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 9.23 vpr 54.41 MiB 0.04 6544 -1 -1 13 0.18 -1 -1 32700 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 15.9 MiB 0.25 1092 10670 2647 6412 1611 54.4 MiB 0.12 0.00 7.9674 -161.443 -7.9674 7.9674 0.76 0.000819706 0.000756988 0.0494892 0.0457194 34 2721 46 6.55708e+06 289320 585099. 2024.56 3.39 0.256191 0.223752 22462 138074 -1 2322 13 847 2162 141681 31010 6.7973 6.7973 -149.416 -6.7973 0 0 742403. 2568.87 0.25 0.06 0.14 -1 -1 0.25 0.024906 0.0222109 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 7.50 vpr 55.01 MiB 0.05 6836 -1 -1 13 0.44 -1 -1 32840 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1304 7653 1748 5033 872 55.2 MiB 0.12 0.00 8.34953 -161.953 -8.34953 8.34953 0.76 0.00107481 0.000994623 0.0441927 0.0409065 30 4078 40 6.55708e+06 373705 526063. 1820.29 2.01 0.206049 0.180944 21886 126133 -1 3021 18 1463 4264 240812 53969 6.89196 6.89196 -151.972 -6.89196 0 0 666494. 2306.21 0.23 0.12 0.13 -1 -1 0.23 0.0467647 0.0412167 208 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 5.72 vpr 54.65 MiB 0.05 6816 -1 -1 14 0.28 -1 -1 31372 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1332 7336 1480 5450 406 54.8 MiB 0.11 0.00 7.42283 -159.831 -7.42283 7.42283 0.81 0.000712966 0.000652923 0.0367522 0.0338385 44 2916 18 6.55708e+06 361650 742403. 2568.87 4.06 0.31274 0.271605 24478 177802 -1 2531 14 964 3318 216415 43563 6.47284 6.47284 -147.516 -6.47284 0 0 937218. 3242.97 0.31 0.09 0.18 -1 -1 0.31 0.0347688 0.0309851 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.40 vpr 54.79 MiB 0.05 6824 -1 -1 12 0.25 -1 -1 32916 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1420 6575 1256 4964 355 55.0 MiB 0.10 0.00 8.28906 -160.635 -8.28906 8.28906 0.76 0.00103137 0.000953793 0.035515 0.0328839 28 4706 40 6.55708e+06 385760 500653. 1732.36 12.60 0.433476 0.377337 21310 115450 -1 3655 16 1537 4471 342167 73499 7.1971 7.1971 -159.044 -7.1971 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0364858 0.0324193 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 8.37 vpr 54.64 MiB 0.05 6856 -1 -1 13 0.24 -1 -1 32708 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1315 6522 1420 4675 427 55.2 MiB 0.10 0.00 7.42898 -137.517 -7.42898 7.42898 0.76 0.000969257 0.000897445 0.0361777 0.033464 30 3319 37 6.55708e+06 337540 526063. 1820.29 2.12 0.185556 0.163299 21886 126133 -1 2670 17 1103 3196 186184 40486 6.63224 6.63224 -133.041 -6.63224 0 0 666494. 2306.21 0.28 0.09 0.13 -1 -1 0.28 0.0354706 0.0314582 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.43 vpr 55.20 MiB 0.04 6784 -1 -1 14 0.34 -1 -1 33012 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 16.8 MiB 0.47 1483 8199 1652 5918 629 55.3 MiB 0.13 0.00 8.85275 -170.114 -8.85275 8.85275 0.76 0.00111106 0.00102326 0.0459529 0.0424655 34 3907 18 6.55708e+06 385760 585099. 2024.56 4.23 0.411658 0.358883 22462 138074 -1 3349 59 1547 4937 1044633 617483 7.78082 7.78082 -163.516 -7.78082 0 0 742403. 2568.87 0.25 0.42 0.14 -1 -1 0.25 0.111737 0.097351 220 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.56 vpr 54.78 MiB 0.02 6716 -1 -1 11 0.28 -1 -1 32824 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 16.3 MiB 0.30 1183 4512 917 3199 396 54.7 MiB 0.07 0.00 6.95549 -133.856 -6.95549 6.95549 0.76 0.00095412 0.000882828 0.0250708 0.0232261 42 2942 26 6.55708e+06 349595 701300. 2426.64 3.44 0.319724 0.276532 23902 167433 -1 2402 14 859 2936 184395 39518 6.23184 6.23184 -127.426 -6.23184 0 0 896083. 3100.63 0.26 0.04 0.11 -1 -1 0.26 0.016941 0.0153533 174 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.26 vpr 54.26 MiB 0.04 6448 -1 -1 13 0.17 -1 -1 32636 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 15.9 MiB 0.28 1098 6999 1531 4700 768 54.4 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.76 0.000804614 0.000742328 0.0322354 0.0297724 26 3138 31 6.55708e+06 277265 477104. 1650.88 1.88 0.141835 0.124452 21022 109990 -1 2578 16 1132 2794 190671 44077 6.5197 6.5197 -156.514 -6.5197 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0282788 0.025098 142 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.43 vpr 54.77 MiB 0.05 6660 -1 -1 14 0.24 -1 -1 32796 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 16.4 MiB 0.20 1308 7027 1497 5027 503 54.9 MiB 0.06 0.00 8.02087 -160.438 -8.02087 8.02087 0.62 0.000443849 0.00040118 0.0178379 0.0163195 34 3265 34 6.55708e+06 325485 585099. 2024.56 3.42 0.242993 0.210095 22462 138074 -1 2784 15 1150 3398 225432 48156 6.9613 6.9613 -151.265 -6.9613 0 0 742403. 2568.87 0.25 0.09 0.14 -1 -1 0.25 0.0328999 0.0292738 183 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 6.58 vpr 55.34 MiB 0.02 6676 -1 -1 15 0.39 -1 -1 33164 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 16.7 MiB 0.54 1579 7323 1484 5148 691 55.2 MiB 0.12 0.00 9.31018 -193.267 -9.31018 9.31018 0.76 0.00114028 0.0010535 0.0425524 0.0393715 28 4400 24 6.55708e+06 385760 500653. 1732.36 1.94 0.190517 0.168109 21310 115450 -1 3715 15 1659 4554 306851 68348 8.13481 8.13481 -184.388 -8.13481 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.037597 0.0334778 228 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.64 vpr 54.13 MiB 0.02 6460 -1 -1 11 0.18 -1 -1 32476 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55492 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 15.8 MiB 0.62 1088 7079 1594 5001 484 54.2 MiB 0.09 0.00 6.82798 -137.917 -6.82798 6.82798 0.80 0.000764742 0.000705511 0.0315127 0.0290728 28 2975 37 6.55708e+06 265210 500653. 1732.36 2.37 0.146496 0.128381 21310 115450 -1 2414 17 941 2624 210971 55007 5.83204 5.83204 -135.397 -5.83204 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.02796 0.0247541 126 124 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 9.46 vpr 54.59 MiB 0.04 6516 -1 -1 12 0.18 -1 -1 32540 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 16.0 MiB 0.36 1155 8207 1978 5141 1088 54.6 MiB 0.11 0.00 7.38032 -154.384 -7.38032 7.38032 0.79 0.000624248 0.000566383 0.0364464 0.0335987 38 2757 24 6.55708e+06 313430 638502. 2209.35 8.16 0.389396 0.336669 23326 155178 -1 2315 14 980 3005 184436 38708 6.47024 6.47024 -143.876 -6.47024 0 0 851065. 2944.86 0.27 0.08 0.15 -1 -1 0.27 0.028021 0.024948 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.93 vpr 54.99 MiB 0.05 6700 -1 -1 12 0.30 -1 -1 33068 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1424 7439 1505 5396 538 55.1 MiB 0.14 0.00 7.41461 -164.576 -7.41461 7.41461 0.79 0.000863416 0.000780721 0.0455344 0.0418127 36 3448 18 6.55708e+06 373705 612192. 2118.31 3.96 0.300799 0.262625 22750 144809 -1 2990 17 1344 4270 279456 59424 6.7229 6.7229 -157.345 -6.7229 0 0 782063. 2706.10 0.26 0.11 0.15 -1 -1 0.26 0.0402513 0.0358034 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 6.03 vpr 54.88 MiB 0.05 6784 -1 -1 12 0.24 -1 -1 32880 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 16.2 MiB 0.45 1429 8579 2186 5781 612 55.0 MiB 0.13 0.00 7.42022 -157.463 -7.42022 7.42022 0.76 0.000989581 0.000915367 0.0448734 0.0415239 30 3687 20 6.55708e+06 337540 526063. 1820.29 1.34 0.163077 0.14379 21886 126133 -1 3130 17 1266 4083 248462 52056 6.62964 6.62964 -154.235 -6.62964 0 0 666494. 2306.21 0.23 0.12 0.12 -1 -1 0.23 0.0337072 0.0303269 186 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.56 vpr 55.25 MiB 0.05 6812 -1 -1 14 0.44 -1 -1 33320 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1656 14691 3485 9017 2189 55.4 MiB 0.21 0.00 8.55829 -177.042 -8.55829 8.55829 0.76 0.00118767 0.00109728 0.081264 0.0750864 36 4358 41 6.55708e+06 421925 612192. 2118.31 2.89 0.314391 0.2775 22750 144809 -1 3617 17 1576 4963 351620 73254 7.36876 7.36876 -164.712 -7.36876 0 0 782063. 2706.10 0.26 0.14 0.15 -1 -1 0.26 0.0397077 0.0358287 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 7.41 vpr 54.66 MiB 0.05 6732 -1 -1 11 0.23 -1 -1 32480 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 16.4 MiB 0.43 1210 13157 4017 6643 2497 54.9 MiB 0.17 0.00 6.86503 -131.636 -6.86503 6.86503 0.76 0.000959391 0.000887346 0.0676402 0.0626362 30 3319 18 6.55708e+06 325485 526063. 1820.29 1.43 0.181086 0.160994 21886 126133 -1 2547 15 1168 3553 207961 45023 5.91504 5.91504 -124.469 -5.91504 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.032109 0.0285443 176 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 7.20 vpr 54.40 MiB 0.04 6524 -1 -1 11 0.17 -1 -1 32348 -1 -1 25 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55708 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 15.9 MiB 0.21 858 9234 2019 6554 661 54.4 MiB 0.11 0.00 6.39815 -115.858 -6.39815 6.39815 0.76 0.000783698 0.000724686 0.0427168 0.0395096 28 2509 19 6.55708e+06 301375 500653. 1732.36 0.98 0.134908 0.119121 21310 115450 -1 2126 18 1101 3144 201718 44977 5.62058 5.62058 -115.653 -5.62058 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0295901 0.0261234 138 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 8.74 vpr 55.25 MiB 0.05 6996 -1 -1 13 0.42 -1 -1 32860 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 17.2 MiB 0.26 1915 8888 1943 6342 603 55.4 MiB 0.15 0.00 7.96961 -161.89 -7.96961 7.96961 0.76 0.00130406 0.001205 0.0533635 0.0493485 34 6097 50 6.55708e+06 482200 585099. 2024.56 6.14 0.387431 0.339854 22462 138074 -1 4449 31 1935 6490 681307 211081 7.13798 7.13798 -157.586 -7.13798 0 0 742403. 2568.87 0.25 0.24 0.14 -1 -1 0.25 0.0779694 0.0687062 280 279 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.16 vpr 54.72 MiB 0.05 6944 -1 -1 14 0.31 -1 -1 33300 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 16.4 MiB 0.30 1307 6821 1398 4713 710 54.9 MiB 0.10 0.00 8.63003 -171.716 -8.63003 8.63003 0.78 0.000970139 0.000897253 0.0380632 0.0351774 36 3003 16 6.55708e+06 313430 612192. 2118.31 3.98 0.351256 0.304642 22750 144809 -1 2692 18 1032 2904 189824 40981 7.81036 7.81036 -158.302 -7.81036 0 0 782063. 2706.10 0.24 0.09 0.09 -1 -1 0.24 0.0364861 0.0322861 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 8.51 vpr 54.42 MiB 0.02 6552 -1 -1 12 0.17 -1 -1 32400 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55660 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 15.9 MiB 0.39 1197 8251 1803 5271 1177 54.4 MiB 0.10 0.00 7.37817 -162.484 -7.37817 7.37817 0.76 0.000824012 0.000761043 0.0364451 0.0336829 28 3422 49 6.55708e+06 325485 500653. 1732.36 2.04 0.174488 0.153194 21310 115450 -1 2745 15 1110 3017 210483 46590 6.61598 6.61598 -159.785 -6.61598 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0273225 0.0242676 144 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.32 vpr 54.62 MiB 0.05 6632 -1 -1 13 0.30 -1 -1 32736 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55868 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 16.1 MiB 0.42 1296 6623 1420 4442 761 54.6 MiB 0.10 0.00 7.83929 -154.667 -7.83929 7.83929 0.77 0.00096646 0.000893792 0.0370845 0.034281 34 3642 35 6.55708e+06 301375 585099. 2024.56 4.25 0.329113 0.285826 22462 138074 -1 2859 15 1200 3588 250640 53491 6.7621 6.7621 -151.137 -6.7621 0 0 742403. 2568.87 0.24 0.09 0.09 -1 -1 0.24 0.0326004 0.0289957 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 7.16 vpr 55.18 MiB 0.05 6812 -1 -1 13 0.30 -1 -1 33364 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 16.7 MiB 0.32 1675 5723 977 4473 273 55.3 MiB 0.10 0.00 7.72485 -162.113 -7.72485 7.72485 0.76 0.00113438 0.00104878 0.0338028 0.0313014 30 4309 34 6.55708e+06 421925 526063. 1820.29 2.93 0.20559 0.18132 21886 126133 -1 3255 18 1540 4577 253702 56245 6.6399 6.6399 -151.695 -6.6399 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0440373 0.0391267 235 234 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 8.63 vpr 54.85 MiB 0.05 6764 -1 -1 11 0.23 -1 -1 32696 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 16.3 MiB 0.37 1363 8827 2077 5986 764 54.9 MiB 0.13 0.00 7.0834 -142.912 -7.0834 7.0834 0.77 0.00101954 0.000942499 0.0475147 0.0438762 30 3584 37 6.55708e+06 385760 526063. 1820.29 1.90 0.199923 0.175929 21886 126133 -1 2863 16 1228 4290 238877 51714 6.23184 6.23184 -136.971 -6.23184 0 0 666494. 2306.21 0.23 0.09 0.12 -1 -1 0.23 0.0357164 0.0317553 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.19 vpr 54.99 MiB 0.05 6748 -1 -1 15 0.32 -1 -1 33008 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1473 9543 2499 5737 1307 55.3 MiB 0.15 0.00 9.02492 -182.614 -9.02492 9.02492 0.76 0.00105612 0.000975393 0.0551906 0.0509944 34 4466 33 6.55708e+06 349595 585099. 2024.56 3.30 0.267041 0.234712 22462 138074 -1 3445 25 1754 5626 443399 111434 8.04875 8.04875 -178.975 -8.04875 0 0 742403. 2568.87 0.29 0.16 0.16 -1 -1 0.29 0.0520235 0.0460107 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.48 vpr 54.78 MiB 0.05 6744 -1 -1 13 0.31 -1 -1 33016 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 16.8 MiB 0.19 1528 11922 3138 7505 1279 55.2 MiB 0.17 0.00 8.01701 -168.403 -8.01701 8.01701 0.79 0.00111532 0.0010288 0.0650037 0.0600261 36 3807 22 6.55708e+06 385760 612192. 2118.31 4.39 0.357224 0.312049 22750 144809 -1 3180 19 1291 4009 259508 54997 6.81356 6.81356 -155.33 -6.81356 0 0 782063. 2706.10 0.30 0.11 0.14 -1 -1 0.30 0.0457598 0.0407036 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 11.06 vpr 54.36 MiB 0.04 6624 -1 -1 12 0.20 -1 -1 32260 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55892 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 16.0 MiB 0.42 1144 6321 1459 4287 575 54.6 MiB 0.09 0.00 6.98904 -150.776 -6.98904 6.98904 0.77 0.000841981 0.000779665 0.0296408 0.0274531 30 2752 39 6.55708e+06 349595 526063. 1820.29 1.52 0.154689 0.135732 21886 126133 -1 2375 17 1096 2771 156350 35194 6.25938 6.25938 -141.718 -6.25938 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0298983 0.0264998 159 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 4.94 vpr 54.35 MiB 0.04 6580 -1 -1 11 0.15 -1 -1 32372 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55716 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 15.9 MiB 0.37 1041 8402 1813 6153 436 54.4 MiB 0.11 0.00 6.97021 -142.93 -6.97021 6.97021 0.76 0.000798096 0.000736679 0.0385983 0.0356199 30 3000 41 6.55708e+06 265210 526063. 1820.29 1.52 0.161559 0.141821 21886 126133 -1 2269 16 972 2756 151622 34523 5.86158 5.86158 -136.404 -5.86158 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0283132 0.0251778 138 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 7.29 vpr 54.82 MiB 0.04 6644 -1 -1 13 0.30 -1 -1 32800 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 16.5 MiB 0.34 1528 7975 1701 5466 808 55.2 MiB 0.12 0.00 8.19329 -167.366 -8.19329 8.19329 0.76 0.0010583 0.000978493 0.0437383 0.0404567 34 3607 20 6.55708e+06 373705 585099. 2024.56 3.95 0.345074 0.299843 22462 138074 -1 3151 16 1446 4259 294238 62704 7.1971 7.1971 -159.661 -7.1971 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0371513 0.0330561 204 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.35 vpr 54.25 MiB 0.05 6680 -1 -1 10 0.17 -1 -1 32928 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 15.9 MiB 0.25 1030 5107 1053 3581 473 54.4 MiB 0.07 0.00 6.08471 -123.999 -6.08471 6.08471 0.83 0.000786604 0.00072665 0.0250442 0.0231402 28 2661 26 6.55708e+06 289320 500653. 1732.36 5.86 0.217329 0.188521 21310 115450 -1 2271 20 1009 2820 175951 40006 5.33332 5.33332 -121.826 -5.33332 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0321349 0.0283098 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 11.42 vpr 54.48 MiB 0.05 6620 -1 -1 14 0.18 -1 -1 32712 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 16.1 MiB 0.41 1019 11203 3089 5915 2199 54.6 MiB 0.14 0.00 7.69221 -156.392 -7.69221 7.69221 0.92 0.000849132 0.000783115 0.0519608 0.0479909 36 2598 19 6.55708e+06 289320 612192. 2118.31 3.79 0.256883 0.224678 22750 144809 -1 2180 15 952 2802 165491 38125 6.5589 6.5589 -142.118 -6.5589 0 0 782063. 2706.10 0.26 0.07 0.14 -1 -1 0.26 0.0282712 0.0251578 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 13.57 vpr 54.62 MiB 0.02 6644 -1 -1 12 0.30 -1 -1 32984 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1351 11891 3061 6959 1871 55.0 MiB 0.16 0.00 7.58423 -159.03 -7.58423 7.58423 0.76 0.00105042 0.000968195 0.0641509 0.0591613 36 3401 37 6.55708e+06 349595 612192. 2118.31 3.69 0.303505 0.267033 22750 144809 -1 2891 18 1211 3944 256166 54216 6.38924 6.38924 -147.255 -6.38924 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0402891 0.0357531 201 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.98 vpr 54.36 MiB 0.05 6572 -1 -1 12 0.16 -1 -1 32384 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55632 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 15.8 MiB 0.29 1079 5567 1026 4331 210 54.3 MiB 0.08 0.00 6.95154 -149.121 -6.95154 6.95154 0.76 0.000792894 0.000732239 0.0262238 0.0242391 34 2770 26 6.55708e+06 277265 585099. 2024.56 3.53 0.228157 0.198017 22462 138074 -1 2446 14 962 2569 159547 36479 6.09998 6.09998 -139.998 -6.09998 0 0 742403. 2568.87 0.28 0.07 0.11 -1 -1 0.28 0.0224575 0.0202666 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 7.68 vpr 54.79 MiB 0.05 6708 -1 -1 12 0.19 -1 -1 32788 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1263 7843 1830 5405 608 55.0 MiB 0.11 0.00 7.086 -151.926 -7.086 7.086 0.77 0.00098192 0.00090616 0.0423437 0.0390988 28 3562 37 6.55708e+06 325485 500653. 1732.36 1.92 0.190865 0.167767 21310 115450 -1 3056 20 1429 4877 328095 69979 6.14578 6.14578 -149.233 -6.14578 0 0 612192. 2118.31 0.23 0.12 0.12 -1 -1 0.23 0.0400265 0.0352913 188 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.88 vpr 54.81 MiB 0.05 6720 -1 -1 13 0.27 -1 -1 32940 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1349 6509 1390 4237 882 54.9 MiB 0.10 0.00 7.60996 -160.091 -7.60996 7.60996 0.76 0.000979228 0.000904299 0.0346659 0.032066 36 3371 16 6.55708e+06 349595 612192. 2118.31 3.96 0.281267 0.245282 22750 144809 -1 2937 15 1108 3432 220497 46676 6.5197 6.5197 -152.716 -6.5197 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0332229 0.0295509 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.73 vpr 54.27 MiB 0.04 6484 -1 -1 11 0.16 -1 -1 32336 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55660 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 15.8 MiB 0.24 1256 8251 2031 5471 749 54.4 MiB 0.06 0.00 6.67834 -143.715 -6.67834 6.67834 0.74 0.000368447 0.000336694 0.0184849 0.016933 28 3401 29 6.55708e+06 325485 500653. 1732.36 1.81 0.131068 0.114418 21310 115450 -1 2974 16 1137 3586 247443 53887 5.91304 5.91304 -140.606 -5.91304 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0290196 0.0257477 148 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 6.59 vpr 54.39 MiB 0.04 6596 -1 -1 13 0.19 -1 -1 32464 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 16.1 MiB 0.25 1339 8047 1963 5261 823 54.8 MiB 0.11 0.00 7.72555 -161.807 -7.72555 7.72555 0.76 0.000873266 0.000803163 0.0402054 0.0371835 36 3037 32 6.55708e+06 325485 612192. 2118.31 4.04 0.365922 0.317894 22750 144809 -1 2635 13 949 2594 167427 36452 6.86604 6.86604 -153.177 -6.86604 0 0 782063. 2706.10 0.26 0.07 0.14 -1 -1 0.26 0.0279659 0.0249112 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 10.30 vpr 54.77 MiB 0.05 6704 -1 -1 13 0.25 -1 -1 32932 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1276 15187 4382 8407 2398 55.1 MiB 0.20 0.00 7.99583 -160.474 -7.99583 7.99583 0.79 0.00099206 0.000917317 0.0786885 0.0724086 34 3881 50 6.55708e+06 325485 585099. 2024.56 5.60 0.385603 0.336964 22462 138074 -1 2984 16 1350 3898 248992 55545 7.09316 7.09316 -155.072 -7.09316 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0346412 0.0307491 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.82 vpr 54.55 MiB 0.04 6724 -1 -1 11 0.19 -1 -1 32788 -1 -1 28 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 15.9 MiB 0.34 1142 12761 3414 7382 1965 54.5 MiB 0.15 0.00 6.37111 -124.414 -6.37111 6.37111 0.78 0.000878023 0.000810299 0.0598634 0.0551753 34 2981 18 6.55708e+06 337540 585099. 2024.56 1.84 0.185923 0.163836 22462 138074 -1 2522 15 988 3157 223542 47377 5.73112 5.73112 -122.293 -5.73112 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0293678 0.0260588 162 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 8.85 vpr 55.02 MiB 0.05 6760 -1 -1 14 0.31 -1 -1 33452 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1569 9951 2260 6812 879 55.2 MiB 0.15 0.00 8.3634 -177.338 -8.3634 8.3634 0.84 0.00113276 0.0010467 0.0560955 0.0518103 36 3929 21 6.55708e+06 385760 612192. 2118.31 4.32 0.376888 0.328852 22750 144809 -1 3425 20 1633 4884 326721 69540 7.41256 7.41256 -170.049 -7.41256 0 0 782063. 2706.10 0.26 0.13 0.15 -1 -1 0.26 0.0473613 0.042013 225 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.44 vpr 54.26 MiB 0.05 6456 -1 -1 12 0.16 -1 -1 32444 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55792 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 16.0 MiB 0.39 1144 6619 1429 4488 702 54.5 MiB 0.07 0.00 6.81857 -143.271 -6.81857 6.81857 0.80 0.000557095 0.000512503 0.0212308 0.0194064 36 2663 18 6.55708e+06 337540 612192. 2118.31 2.10 0.188646 0.164004 22750 144809 -1 2374 15 963 2605 169639 37383 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.26 0.07 0.14 -1 -1 0.26 0.0270883 0.0240583 145 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 8.72 vpr 54.77 MiB 0.05 6716 -1 -1 13 0.27 -1 -1 32884 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 16.4 MiB 0.34 1396 7843 1736 5120 987 54.9 MiB 0.11 0.00 7.69421 -153.973 -7.69421 7.69421 0.76 0.00101963 0.000940274 0.0428187 0.0395607 28 3779 45 6.55708e+06 325485 500653. 1732.36 1.97 0.209224 0.183729 21310 115450 -1 3074 28 1632 5532 547465 187131 6.8823 6.8823 -147.74 -6.8823 0 0 612192. 2118.31 0.21 0.19 0.12 -1 -1 0.21 0.0532905 0.0468018 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 9.68 vpr 54.37 MiB 0.04 6684 -1 -1 13 0.18 -1 -1 32780 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 16.0 MiB 0.35 1076 10583 2933 6087 1563 54.6 MiB 0.12 0.00 7.44215 -162.135 -7.44215 7.44215 0.76 0.000825113 0.000761892 0.0473781 0.0437536 28 3433 39 6.55708e+06 301375 500653. 1732.36 1.95 0.174228 0.153584 21310 115450 -1 2656 18 1168 3055 202051 45907 6.69898 6.69898 -159.177 -6.69898 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0310889 0.027515 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.85 vpr 54.66 MiB 0.02 6712 -1 -1 12 0.21 -1 -1 32756 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 16.1 MiB 0.30 1148 5517 1034 4096 387 54.8 MiB 0.08 0.00 7.36755 -151.17 -7.36755 7.36755 0.76 0.000959429 0.000886516 0.0300143 0.0278041 28 3274 27 6.55708e+06 313430 500653. 1732.36 5.37 0.291206 0.252302 21310 115450 -1 2868 25 1127 3700 382858 136149 6.5237 6.5237 -145.754 -6.5237 0 0 612192. 2118.31 0.21 0.15 0.12 -1 -1 0.21 0.0468847 0.0411879 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 11.37 vpr 55.17 MiB 0.05 6908 -1 -1 15 0.47 -1 -1 32860 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1759 9998 2422 6696 880 55.2 MiB 0.16 0.00 8.78932 -180.299 -8.78932 8.78932 0.76 0.00124563 0.00115119 0.0614514 0.0567129 36 4275 44 6.55708e+06 409870 612192. 2118.31 5.16 0.364865 0.320171 22750 144809 -1 3711 16 1651 5398 370763 77029 7.66062 7.66062 -166.924 -7.66062 0 0 782063. 2706.10 0.26 0.13 0.14 -1 -1 0.26 0.044085 0.0393378 250 250 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 5.03 vpr 53.88 MiB 0.04 6456 -1 -1 10 0.10 -1 -1 32056 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55164 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 15.2 MiB 0.27 757 9042 2084 6396 562 53.9 MiB 0.09 0.00 5.22063 -120.025 -5.22063 5.22063 0.76 0.000615334 0.000568741 0.0357606 0.0329859 28 1919 20 6.55708e+06 192880 500653. 1732.36 1.30 0.107877 0.0950019 21310 115450 -1 1716 15 649 1532 103267 23732 4.84286 4.84286 -121.882 -4.84286 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0195258 0.0171788 92 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 5.36 vpr 54.43 MiB 0.04 6504 -1 -1 13 0.17 -1 -1 32732 -1 -1 29 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 16.0 MiB 0.21 1069 6415 1411 4237 767 54.5 MiB 0.08 0.00 7.77311 -151.473 -7.77311 7.77311 0.78 0.000835096 0.000772472 0.029983 0.0277133 28 2856 39 6.55708e+06 349595 500653. 1732.36 1.51 0.157599 0.137807 21310 115450 -1 2440 15 917 2532 177058 38364 6.8385 6.8385 -148.81 -6.8385 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0272833 0.0242559 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.40 vpr 54.61 MiB 0.04 6492 -1 -1 12 0.19 -1 -1 32564 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 15.9 MiB 0.28 1241 11223 2642 6703 1878 54.6 MiB 0.13 0.00 6.72746 -150.964 -6.72746 6.72746 0.80 0.000614263 0.000554429 0.0471255 0.0430581 36 3010 24 6.55708e+06 277265 612192. 2118.31 3.97 0.291531 0.253757 22750 144809 -1 2620 24 1288 3907 361262 119201 6.10198 6.10198 -146.434 -6.10198 0 0 782063. 2706.10 0.26 0.14 0.15 -1 -1 0.26 0.0442872 0.038853 167 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.66 vpr 54.04 MiB 0.04 6704 -1 -1 9 0.13 -1 -1 32516 -1 -1 25 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55468 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 15.6 MiB 0.16 840 9694 2571 5897 1226 54.2 MiB 0.11 0.00 5.60806 -104.508 -5.60806 5.60806 0.80 0.000666523 0.000615155 0.0386057 0.0356894 26 2430 34 6.55708e+06 301375 477104. 1650.88 2.62 0.133032 0.117198 21022 109990 -1 1977 17 864 2424 166186 36231 5.33332 5.33332 -103.691 -5.33332 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.024306 0.0214215 112 111 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 8.10 vpr 55.09 MiB 0.04 6716 -1 -1 12 0.26 -1 -1 32764 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 16.3 MiB 0.54 1640 5273 863 4118 292 55.1 MiB 0.09 0.00 7.59969 -165.851 -7.59969 7.59969 0.77 0.00106051 0.00097097 0.0286255 0.0264793 44 3703 18 6.55708e+06 409870 742403. 2568.87 4.56 0.327159 0.284318 24478 177802 -1 3100 15 1216 3642 270299 53070 6.6811 6.6811 -154.904 -6.6811 0 0 937218. 3242.97 0.31 0.10 0.18 -1 -1 0.31 0.0359343 0.0320604 209 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.51 vpr 55.07 MiB 0.05 6848 -1 -1 14 0.30 -1 -1 32880 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1228 13340 3394 7367 2579 55.0 MiB 0.19 0.00 8.33716 -163.889 -8.33716 8.33716 0.76 0.00106551 0.000980391 0.0730078 0.067154 44 2996 17 6.55708e+06 349595 742403. 2568.87 4.10 0.367044 0.321376 24478 177802 -1 2466 19 1079 3374 204376 44918 7.26282 7.26282 -151.046 -7.26282 0 0 937218. 3242.97 0.31 0.10 0.18 -1 -1 0.31 0.0426119 0.037732 204 204 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.56 vpr 54.89 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30644 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 16.9 MiB 0.08 929 17268 4565 10218 2485 55.3 MiB 0.14 0.00 4.24756 -141.398 -4.24756 4.24756 0.62 0.000384601 0.000348583 0.0307923 0.0279818 32 2532 23 6.64007e+06 452088 554710. 1919.41 1.00 0.137218 0.119812 22834 132086 -1 2157 19 1668 2761 238210 50659 3.77883 3.77883 -140.401 -3.77883 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0331648 0.0291214 153 96 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 55.08 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30636 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 16.6 MiB 0.20 873 12919 4129 6395 2395 55.1 MiB 0.20 0.00 4.44716 -130.844 -4.44716 4.44716 0.76 0.000824514 0.000762916 0.0601776 0.0557171 32 2354 22 6.64007e+06 288834 554710. 1919.41 1.01 0.158796 0.140787 22834 132086 -1 1984 20 1649 2771 237284 50831 3.69243 3.69243 -132.015 -3.69243 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0323539 0.0283541 142 91 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.85 vpr 54.68 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 16.8 MiB 0.11 1003 9675 2005 7104 566 55.4 MiB 0.15 0.00 3.83457 -129.818 -3.83457 3.83457 0.77 0.000803942 0.000743524 0.037032 0.0342296 30 2330 20 6.64007e+06 439530 526063. 1820.29 0.96 0.131577 0.115998 22546 126617 -1 1991 19 1202 1907 131232 28068 3.43423 3.43423 -130.759 -3.43423 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0303457 0.0266712 142 65 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.19 vpr 54.68 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30484 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 16.3 MiB 0.09 990 11245 3461 6773 1011 55.1 MiB 0.19 0.00 4.46418 -132.921 -4.46418 4.46418 0.76 0.000745704 0.000690446 0.0474193 0.0439481 26 2556 27 6.64007e+06 301392 477104. 1650.88 1.04 0.142473 0.125935 21682 110474 -1 2137 17 1498 2499 209365 43448 3.83403 3.83403 -137.638 -3.83403 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.02632 0.0232127 138 34 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.24 vpr 54.73 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30312 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 16.6 MiB 0.12 849 15017 4515 8552 1950 55.2 MiB 0.26 0.00 4.14936 -139.21 -4.14936 4.14936 0.76 0.000809605 0.000749583 0.0672774 0.0623235 32 2433 23 6.64007e+06 276276 554710. 1919.41 1.01 0.166015 0.147736 22834 132086 -1 1906 19 1608 2787 201919 47121 3.64143 3.64143 -136.683 -3.64143 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0308905 0.0272041 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.62 vpr 54.88 MiB 0.02 7128 -1 -1 1 0.05 -1 -1 30404 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 16.7 MiB 0.12 1024 19142 5848 10342 2952 55.3 MiB 0.28 0.01 3.5603 -122.153 -3.5603 3.5603 0.77 0.000834499 0.000770645 0.0691942 0.0639404 32 2387 21 6.64007e+06 489762 554710. 1919.41 0.99 0.16836 0.149526 22834 132086 -1 2004 20 1320 2104 175345 37991 2.92497 2.92497 -118.502 -2.92497 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0328137 0.0288368 156 64 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.06 vpr 54.38 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30528 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 15.8 MiB 0.11 722 12923 4015 7171 1737 54.4 MiB 0.16 0.00 3.7987 -103.375 -3.7987 3.7987 0.76 0.000617553 0.000571944 0.0494395 0.0458074 32 1628 19 6.64007e+06 251160 554710. 1919.41 0.91 0.121368 0.107532 22834 132086 -1 1516 18 849 1482 144651 29312 2.92297 2.92297 -98.2405 -2.92297 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0224801 0.019672 96 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.01 vpr 54.46 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30276 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 16.3 MiB 0.08 948 16081 4441 8879 2761 55.0 MiB 0.22 0.00 3.49449 -109.504 -3.49449 3.49449 0.79 0.000725057 0.000671297 0.0548097 0.0507219 28 2256 22 6.64007e+06 426972 500653. 1732.36 1.01 0.14237 0.126336 21970 115934 -1 1928 19 1074 1783 138901 29670 2.77377 2.77377 -106.567 -2.77377 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0274415 0.024087 140 4 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.18 vpr 54.69 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30116 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 16.2 MiB 0.17 706 7820 1805 5417 598 55.1 MiB 0.11 0.00 3.31336 -101.862 -3.31336 3.31336 0.77 0.000717038 0.000663159 0.0350301 0.0324409 28 1814 19 6.64007e+06 213486 500653. 1732.36 0.93 0.119721 0.105442 21970 115934 -1 1617 17 777 1315 95791 21638 2.85097 2.85097 -102.372 -2.85097 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0246741 0.0216149 106 85 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.17 vpr 54.68 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 16.3 MiB 0.16 890 10756 2975 5928 1853 55.0 MiB 0.15 0.00 3.5061 -124.869 -3.5061 3.5061 0.77 0.000699857 0.000647676 0.0466265 0.04323 32 2081 19 6.64007e+06 213486 554710. 1919.41 0.98 0.128453 0.113862 22834 132086 -1 1825 21 1426 2125 191728 40456 2.87877 2.87877 -123.498 -2.87877 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0304753 0.0267384 121 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.05 vpr 54.55 MiB 0.02 7024 -1 -1 1 0.04 -1 -1 30312 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 16.4 MiB 0.16 822 14012 5060 7295 1657 55.1 MiB 0.19 0.00 3.4841 -115.834 -3.4841 3.4841 0.82 0.000702351 0.000650062 0.0602757 0.0558044 28 1768 18 6.64007e+06 226044 500653. 1732.36 0.89 0.140396 0.124843 21970 115934 -1 1515 18 872 1294 102473 21718 2.87677 2.87677 -111.457 -2.87677 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0254634 0.0223746 110 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.21 vpr 54.52 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30492 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.4 MiB 0.11 840 9753 2297 6936 520 55.1 MiB 0.14 0.00 3.52209 -114.564 -3.52209 3.52209 0.77 0.000713335 0.000659406 0.0354833 0.0328098 30 1904 21 6.64007e+06 364182 526063. 1820.29 0.97 0.116057 0.102292 22546 126617 -1 1687 20 1006 1683 120051 25456 2.63337 2.63337 -107.711 -2.63337 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0255355 0.0224517 114 65 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.35 vpr 54.98 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30260 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 16.6 MiB 0.22 893 19448 6133 10048 3267 55.2 MiB 0.28 0.00 3.56129 -122.026 -3.56129 3.56129 0.76 0.000825202 0.000762837 0.0730177 0.0674927 32 2243 20 6.64007e+06 426972 554710. 1919.41 1.09 0.157669 0.140812 22834 132086 -1 1900 17 1495 2473 211474 43457 2.76377 2.76377 -113.659 -2.76377 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0276559 0.0245541 145 58 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.56 vpr 54.87 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30648 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1031 17036 4693 9820 2523 55.5 MiB 0.26 0.01 4.31123 -147.759 -4.31123 4.31123 0.76 0.000846136 0.000783307 0.0652041 0.0603217 26 3087 33 6.64007e+06 452088 477104. 1650.88 1.83 0.180461 0.159867 21682 110474 -1 2347 21 1843 2875 258615 51345 3.89603 3.89603 -151.023 -3.89603 0 0 585099. 2024.56 0.23 0.10 0.12 -1 -1 0.23 0.0347476 0.0305702 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.91 vpr 54.28 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30636 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55872 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 15.9 MiB 0.12 800 8852 2481 5509 862 54.6 MiB 0.12 0.00 3.4261 -103.793 -3.4261 3.4261 0.76 0.000628799 0.000582068 0.034227 0.031721 32 1678 19 6.64007e+06 238602 554710. 1919.41 0.91 0.106429 0.0937431 22834 132086 -1 1522 21 986 1747 140294 29894 2.76377 2.76377 -98.7241 -2.76377 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0257124 0.0224418 108 29 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.33 vpr 54.84 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30388 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 16.7 MiB 0.19 1068 13316 3890 7652 1774 55.4 MiB 0.22 0.01 3.5141 -124.724 -3.5141 3.5141 0.76 0.000833003 0.000770262 0.0616135 0.0570261 32 2321 21 6.64007e+06 276276 554710. 1919.41 1.01 0.161124 0.143085 22834 132086 -1 2090 23 1618 2817 249135 49506 3.12137 3.12137 -123.8 -3.12137 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.036734 0.0322101 147 63 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.42 vpr 54.87 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30264 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 16.7 MiB 0.18 964 16340 5208 8057 3075 55.4 MiB 0.18 0.00 3.6263 -123.14 -3.6263 3.6263 0.76 0.000807109 0.00074605 0.0597634 0.0552954 36 2133 27 6.64007e+06 452088 612192. 2118.31 3.94 0.29032 0.253437 23410 145293 -1 1762 19 1218 1800 180851 37232 3.06417 3.06417 -118.76 -3.06417 0 0 782063. 2706.10 0.26 0.08 0.15 -1 -1 0.26 0.0303998 0.0267041 144 57 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.63 vpr 54.57 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30108 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 16.4 MiB 0.14 919 13487 3473 7992 2022 55.1 MiB 0.17 0.00 2.83964 -105.375 -2.83964 2.83964 0.76 0.000732124 0.000676674 0.048293 0.0446716 26 2144 20 6.64007e+06 389298 477104. 1650.88 0.87 0.133485 0.118016 21682 110474 -1 1880 21 1071 1734 150455 31003 2.24871 2.24871 -99.0537 -2.24871 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0298545 0.0261008 119 65 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.03 vpr 54.18 MiB 0.04 6832 -1 -1 1 0.03 -1 -1 30304 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55544 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 15.6 MiB 0.04 670 10835 3352 6011 1472 54.2 MiB 0.06 0.00 2.72344 -89.4054 -2.72344 2.72344 0.61 0.000234689 0.000213731 0.0168299 0.0153566 32 1469 19 6.64007e+06 188370 554710. 1919.41 0.62 0.0465173 0.0407139 22834 132086 -1 1299 16 546 819 75160 15912 1.87911 1.87911 -81.5332 -1.87911 0 0 701300. 2426.64 0.24 0.05 0.14 -1 -1 0.24 0.0178989 0.0156295 85 34 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.34 vpr 54.73 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 16.3 MiB 0.13 727 12120 4439 5930 1751 54.9 MiB 0.16 0.00 4.19115 -121.049 -4.19115 4.19115 0.77 0.000714198 0.000660339 0.0528679 0.048922 32 2075 22 6.64007e+06 213486 554710. 1919.41 0.95 0.138704 0.122846 22834 132086 -1 1627 17 770 1133 87469 20519 3.47243 3.47243 -118.874 -3.47243 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0249732 0.0219187 113 64 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.07 vpr 54.89 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30376 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 16.7 MiB 0.10 885 17732 4998 9545 3189 55.2 MiB 0.25 0.00 4.22193 -138.344 -4.22193 4.22193 0.77 0.000801659 0.000741838 0.064681 0.0598096 32 2393 21 6.64007e+06 452088 554710. 1919.41 1.03 0.158818 0.141202 22834 132086 -1 2105 19 1676 2467 252270 55142 3.91803 3.91803 -139.967 -3.91803 0 0 701300. 2426.64 0.23 0.10 0.14 -1 -1 0.23 0.0303302 0.0267043 147 34 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.74 vpr 55.11 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30576 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 16.7 MiB 0.22 960 11288 2842 7087 1359 55.6 MiB 0.19 0.01 3.74425 -123.858 -3.74425 3.74425 0.76 0.000916379 0.00084839 0.0464334 0.0429741 30 2618 24 6.64007e+06 477204 526063. 1820.29 1.02 0.158092 0.13909 22546 126617 -1 2055 20 1290 2001 139554 30289 3.47943 3.47943 -125.844 -3.47943 0 0 666494. 2306.21 0.25 0.08 0.13 -1 -1 0.25 0.0358752 0.031441 150 124 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.06 vpr 54.04 MiB 0.02 6772 -1 -1 1 0.03 -1 -1 30564 -1 -1 17 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55420 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 15.6 MiB 0.10 395 10503 3120 6151 1232 54.1 MiB 0.09 0.00 2.74064 -71.156 -2.74064 2.74064 0.76 0.000474538 0.000438219 0.0332423 0.030707 28 1200 22 6.64007e+06 213486 500653. 1732.36 0.86 0.090401 0.0796158 21970 115934 -1 956 16 598 892 63471 15661 1.90391 1.90391 -68.8591 -1.90391 0 0 612192. 2118.31 0.21 0.04 0.09 -1 -1 0.21 0.0157892 0.0137987 77 30 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.99 vpr 54.66 MiB 0.04 7044 -1 -1 1 0.06 -1 -1 30112 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 16.4 MiB 0.08 990 12749 4130 6257 2362 55.0 MiB 0.21 0.00 4.45633 -140.507 -4.45633 4.45633 0.78 0.000754456 0.000697026 0.053576 0.0496156 32 2489 18 6.64007e+06 276276 554710. 1919.41 1.00 0.139843 0.124241 22834 132086 -1 2119 19 1523 2691 214459 46705 3.83383 3.83383 -140.346 -3.83383 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0287382 0.0252949 138 3 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.80 vpr 54.05 MiB 0.04 6552 -1 -1 1 0.02 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55580 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 15.7 MiB 0.05 603 10672 2424 7898 350 54.3 MiB 0.11 0.00 2.3583 -83.9313 -2.3583 2.3583 0.82 0.000377102 0.000342528 0.0286054 0.0261618 28 1549 27 6.64007e+06 163254 500653. 1732.36 1.05 0.0904749 0.0792494 21970 115934 -1 1292 19 613 773 71085 15916 2.14151 2.14151 -87.789 -2.14151 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0186696 0.0164524 81 3 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.07 vpr 54.72 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30532 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 16.8 MiB 0.10 956 14691 4376 8904 1411 55.4 MiB 0.26 0.01 4.18856 -140.856 -4.18856 4.18856 0.77 0.000673347 0.000607731 0.0507038 0.0465729 32 2572 23 6.64007e+06 439530 554710. 1919.41 1.11 0.147971 0.130828 22834 132086 -1 2168 21 1824 2874 245365 54072 3.89783 3.89783 -143.075 -3.89783 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0334138 0.0294261 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.02 vpr 54.71 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30232 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 16.6 MiB 0.09 1019 8796 1857 6524 415 55.1 MiB 0.14 0.00 3.60659 -123.354 -3.60659 3.60659 0.76 0.000753905 0.000697378 0.0308989 0.0286021 28 2574 22 6.64007e+06 464646 500653. 1732.36 3.15 0.208911 0.181704 21970 115934 -1 2272 21 1551 2493 219552 47294 2.98117 2.98117 -122.935 -2.98117 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0309827 0.0271764 152 3 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.82 vpr 54.76 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30632 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 16.8 MiB 0.10 1069 18901 5689 10576 2636 55.5 MiB 0.28 0.01 4.16036 -141.868 -4.16036 4.16036 0.76 0.000846787 0.000782753 0.0708055 0.0654762 32 2629 23 6.64007e+06 464646 554710. 1919.41 1.06 0.173619 0.154459 22834 132086 -1 2292 20 1705 2687 216032 47106 3.74943 3.74943 -141.35 -3.74943 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0330766 0.0290816 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.08 vpr 54.49 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 16.1 MiB 0.08 857 10572 2555 6423 1594 54.7 MiB 0.14 0.00 3.07196 -107.422 -3.07196 3.07196 0.74 0.000664094 0.000613996 0.0432271 0.0400118 32 1870 21 6.64007e+06 200928 554710. 1919.41 0.92 0.122614 0.108324 22834 132086 -1 1733 21 1017 1694 154096 32415 2.79977 2.79977 -111.822 -2.79977 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0274152 0.0239502 107 34 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.12 vpr 54.37 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30176 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.1 MiB 0.09 824 11806 3275 6761 1770 54.6 MiB 0.15 0.00 3.4951 -114.009 -3.4951 3.4951 0.76 0.000663833 0.000614223 0.0471477 0.043674 32 1828 21 6.64007e+06 238602 554710. 1919.41 0.93 0.126192 0.111679 22834 132086 -1 1649 20 1205 1754 157103 33256 3.01397 3.01397 -111.961 -3.01397 0 0 701300. 2426.64 0.26 0.07 0.14 -1 -1 0.26 0.0263894 0.0230814 115 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.09 vpr 54.43 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30292 -1 -1 20 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55812 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 15.9 MiB 0.09 658 7132 1686 4570 876 54.5 MiB 0.11 0.00 3.4309 -100.483 -3.4309 3.4309 0.76 0.00063559 0.000588881 0.0283609 0.0263055 32 1870 17 6.64007e+06 251160 554710. 1919.41 0.92 0.100095 0.0880221 22834 132086 -1 1602 18 1067 1774 134329 30519 2.96317 2.96317 -103.498 -2.96317 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0232409 0.0203242 107 34 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.34 vpr 54.35 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30468 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.2 MiB 0.09 802 15390 5648 7380 2362 54.9 MiB 0.21 0.00 3.5251 -121.985 -3.5251 3.5251 0.77 0.000663435 0.000613593 0.0600151 0.0555369 32 2039 21 6.64007e+06 226044 554710. 1919.41 0.98 0.138811 0.123418 22834 132086 -1 1821 20 1476 2373 215469 45688 2.97017 2.97017 -120.449 -2.97017 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0263529 0.0230398 125 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.13 vpr 54.44 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.3 MiB 0.07 772 9679 2262 6618 799 54.8 MiB 0.15 0.00 3.47387 -114.287 -3.47387 3.47387 0.77 0.00068804 0.000637325 0.0332902 0.0308189 28 2079 20 6.64007e+06 389298 500653. 1732.36 0.93 0.112653 0.099314 21970 115934 -1 1820 19 1215 1967 153330 33487 2.79257 2.79257 -112.475 -2.79257 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0254948 0.0223088 119 34 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.97 vpr 54.61 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30320 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 16.3 MiB 0.14 877 15824 4460 9332 2032 55.0 MiB 0.19 0.00 2.80466 -91.9047 -2.80466 2.80466 0.76 0.000678726 0.000627793 0.0544545 0.0502901 26 2003 20 6.64007e+06 389298 477104. 1650.88 0.95 0.133646 0.118368 21682 110474 -1 1768 18 1088 1708 141445 29820 2.18751 2.18751 -91.7582 -2.18751 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0244495 0.0213979 110 61 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.31 vpr 55.23 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30484 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 17.1 MiB 0.19 1234 17889 5288 10109 2492 55.4 MiB 0.32 0.01 4.16036 -142.499 -4.16036 4.16036 0.76 0.000956313 0.000889208 0.068796 0.0636202 28 3463 32 6.64007e+06 514878 500653. 1732.36 1.79 0.192405 0.170531 21970 115934 -1 2701 20 1821 3022 280084 54977 4.02103 4.02103 -150.243 -4.02103 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0362795 0.0319315 181 29 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.46 vpr 55.00 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30492 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 16.7 MiB 0.16 996 11616 2636 8022 958 55.5 MiB 0.19 0.00 3.5823 -125.213 -3.5823 3.5823 0.79 0.000850253 0.000779356 0.0464004 0.0429191 30 2093 18 6.64007e+06 464646 526063. 1820.29 0.97 0.142706 0.126239 22546 126617 -1 1817 18 1355 1938 143994 29374 2.63837 2.63837 -113.677 -2.63837 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0304342 0.0268374 154 65 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.31 vpr 54.58 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30584 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 16.5 MiB 0.22 803 9407 2189 6388 830 55.2 MiB 0.14 0.00 3.6833 -114.43 -3.6833 3.6833 0.76 0.000744997 0.00068912 0.0363387 0.0336644 30 1791 21 6.64007e+06 364182 526063. 1820.29 0.92 0.122735 0.108013 22546 126617 -1 1549 17 772 1187 92728 19278 2.55517 2.55517 -105.122 -2.55517 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0251184 0.0220226 114 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.51 vpr 54.94 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30548 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1052 11799 3060 6831 1908 55.3 MiB 0.20 0.00 3.64847 -119.816 -3.64847 3.64847 0.83 0.000817142 0.000756127 0.0533772 0.0494571 32 2478 23 6.64007e+06 301392 554710. 1919.41 1.06 0.158942 0.140585 22834 132086 -1 2076 16 1345 2260 196401 39833 3.04517 3.04517 -116.497 -3.04517 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0271782 0.0239733 149 64 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.75 vpr 55.12 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30512 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 16.8 MiB 0.44 953 7835 1760 5704 371 55.4 MiB 0.15 0.00 5.23812 -147.937 -5.23812 5.23812 0.86 0.000912805 0.000846065 0.0411813 0.0382014 32 2424 23 6.64007e+06 288834 554710. 1919.41 1.05 0.151864 0.133559 22834 132086 -1 2150 19 1308 2188 193443 41902 3.99248 3.99248 -143.523 -3.99248 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0331705 0.0290426 150 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.71 vpr 55.11 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 16.7 MiB 0.20 955 10859 3044 7047 768 55.4 MiB 0.21 0.00 5.02279 -136.574 -5.02279 5.02279 0.80 0.000749401 0.000686168 0.0562539 0.0520329 30 2080 21 6.64007e+06 288834 526063. 1820.29 0.99 0.138567 0.123243 22546 126617 -1 1810 13 837 1298 91074 19179 3.74728 3.74728 -128.151 -3.74728 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0248458 0.0220917 144 90 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.23 vpr 54.94 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30292 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1046 15623 4332 9609 1682 55.3 MiB 0.23 0.00 3.5621 -120.379 -3.5621 3.5621 0.76 0.000823314 0.000757741 0.0597244 0.0551558 26 2695 23 6.64007e+06 439530 477104. 1650.88 1.17 0.165203 0.147672 21682 110474 -1 2190 20 1544 2593 205818 42851 2.94797 2.94797 -118.634 -2.94797 0 0 585099. 2024.56 0.23 0.09 0.12 -1 -1 0.23 0.0290365 0.0257423 148 64 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.77 vpr 54.68 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30816 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 16.7 MiB 0.12 865 10206 2264 6941 1001 55.4 MiB 0.17 0.00 4.23656 -140.329 -4.23656 4.23656 0.76 0.000840798 0.000777261 0.0399271 0.0369317 32 2782 37 6.64007e+06 464646 554710. 1919.41 1.21 0.158908 0.139611 22834 132086 -1 2062 21 1856 2834 233669 51547 3.72443 3.72443 -137.221 -3.72443 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0337261 0.0296246 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.72 vpr 55.12 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30656 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1205 17356 4219 10649 2488 55.5 MiB 0.28 0.01 4.21478 -145.938 -4.21478 4.21478 0.76 0.00100072 0.000927304 0.0728491 0.0675081 32 2797 19 6.64007e+06 527436 554710. 1919.41 1.04 0.187691 0.166755 22834 132086 -1 2429 21 1922 2902 260397 51978 3.60863 3.60863 -140.093 -3.60863 0 0 701300. 2426.64 0.24 0.11 0.13 -1 -1 0.24 0.0408867 0.0358616 186 96 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.05 vpr 54.48 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30572 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56144 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.1 MiB 0.11 655 13731 5030 6417 2284 54.8 MiB 0.18 0.00 3.7665 -117.146 -3.7665 3.7665 0.77 0.00067746 0.000626773 0.0556092 0.0515097 32 1994 22 6.64007e+06 226044 554710. 1919.41 0.98 0.137602 0.122112 22834 132086 -1 1499 19 1250 1973 157612 35775 2.87377 2.87377 -111.445 -2.87377 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.025795 0.022615 116 34 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.57 vpr 54.97 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30376 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 16.7 MiB 0.16 910 7386 1527 5477 382 55.4 MiB 0.13 0.00 4.20356 -136.322 -4.20356 4.20356 0.76 0.000822602 0.000760379 0.0288564 0.0266966 32 2850 23 6.64007e+06 477204 554710. 1919.41 1.05 0.12875 0.112891 22834 132086 -1 2083 22 1821 2685 209966 47406 3.85863 3.85863 -140.091 -3.85863 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0349048 0.0306 152 64 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.75 vpr 54.89 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30504 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 16.6 MiB 0.13 994 14048 3500 8468 2080 55.3 MiB 0.23 0.01 3.7163 -119.726 -3.7163 3.7163 0.77 0.000827486 0.00076598 0.0550683 0.0510073 32 2424 21 6.64007e+06 426972 554710. 1919.41 1.00 0.153353 0.135889 22834 132086 -1 2005 20 1600 2718 211820 45517 2.93577 2.93577 -111.18 -2.93577 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.03291 0.0289139 149 63 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.16 vpr 54.66 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30364 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 16.4 MiB 0.09 1080 15017 4624 8554 1839 55.3 MiB 0.24 0.00 4.14936 -144.892 -4.14936 4.14936 0.76 0.000783256 0.000725604 0.0646397 0.0599065 32 2565 23 6.64007e+06 276276 554710. 1919.41 1.04 0.15868 0.141241 22834 132086 -1 2209 20 1783 3123 255533 52066 3.38403 3.38403 -138.503 -3.38403 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0305501 0.0268629 151 3 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 6.06 vpr 55.09 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30588 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 16.8 MiB 0.20 1044 15603 4218 9336 2049 55.4 MiB 0.23 0.01 3.55822 -125.535 -3.55822 3.55822 0.76 0.000855319 0.000791132 0.0615387 0.0569315 32 2366 20 6.64007e+06 439530 554710. 1919.41 1.00 0.161805 0.143608 22834 132086 -1 2102 17 1281 1895 151509 32439 2.87377 2.87377 -117.072 -2.87377 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0292532 0.0257168 146 96 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.14 vpr 54.84 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30388 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 16.9 MiB 0.19 1017 12791 3286 8285 1220 55.6 MiB 0.20 0.00 3.47912 -120.914 -3.47912 3.47912 0.76 0.000835851 0.000773635 0.0482911 0.0446252 26 2506 30 6.64007e+06 464646 477104. 1650.88 1.48 0.158406 0.139652 21682 110474 -1 2013 17 1003 1736 125869 28597 2.95177 2.95177 -119.476 -2.95177 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0326922 0.0286438 148 61 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.57 vpr 55.02 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30588 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 16.8 MiB 0.14 1102 19142 5372 11310 2460 55.4 MiB 0.27 0.01 3.5243 -123.608 -3.5243 3.5243 0.76 0.000841647 0.000778015 0.0699792 0.0646901 32 2323 21 6.64007e+06 489762 554710. 1919.41 1.02 0.169216 0.150443 22834 132086 -1 2033 18 1463 2202 188135 37215 2.75677 2.75677 -115.524 -2.75677 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0307546 0.0270924 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.12 vpr 54.67 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 16.6 MiB 0.09 1032 14906 4320 9186 1400 55.2 MiB 0.24 0.01 4.18856 -144.112 -4.18856 4.18856 0.78 0.000807156 0.000747094 0.0538739 0.0498229 30 2314 20 6.64007e+06 464646 526063. 1820.29 0.99 0.148982 0.132291 22546 126617 -1 1942 20 1419 2142 143035 30138 3.47523 3.47523 -135.45 -3.47523 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0317715 0.0279732 152 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.19 vpr 55.04 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30720 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 16.5 MiB 0.15 1016 12153 3010 8355 788 55.3 MiB 0.19 0.01 4.23153 -146.068 -4.23153 4.23153 0.83 0.000842788 0.000778847 0.0430818 0.0397659 28 2535 21 6.64007e+06 489762 500653. 1732.36 3.02 0.251425 0.218881 21970 115934 -1 2182 21 1687 2675 234870 47721 3.68443 3.68443 -146.956 -3.68443 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0345855 0.0303532 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.21 vpr 55.16 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30488 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1141 13095 3356 8753 986 55.2 MiB 0.22 0.00 4.67535 -137.171 -4.67535 4.67535 0.82 0.000698096 0.000634141 0.048922 0.0450248 28 2935 23 6.64007e+06 452088 500653. 1732.36 1.43 0.158976 0.139897 21970 115934 -1 2441 22 1246 2308 192333 39906 3.65042 3.65042 -133.414 -3.65042 0 0 612192. 2118.31 0.21 0.09 0.08 -1 -1 0.21 0.0373426 0.0326107 147 122 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.66 vpr 54.83 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 16.8 MiB 0.17 1069 15584 4992 8664 1928 55.4 MiB 0.26 0.00 4.34993 -137.194 -4.34993 4.34993 0.77 0.000377529 0.000344996 0.0632901 0.0581977 32 2719 20 6.64007e+06 276276 554710. 1919.41 1.07 0.166388 0.147359 22834 132086 -1 2316 21 1747 3185 258192 54916 3.69742 3.69742 -138.836 -3.69742 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0358903 0.0314574 151 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.14 vpr 54.43 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30620 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 16.2 MiB 0.08 928 8735 1852 5986 897 54.7 MiB 0.12 0.00 3.50687 -122.364 -3.50687 3.50687 0.76 0.00069301 0.00064085 0.0303507 0.0280968 28 2241 22 6.64007e+06 389298 500653. 1732.36 0.92 0.112451 0.0987075 21970 115934 -1 1924 18 1108 1806 141964 30962 2.96197 2.96197 -121.11 -2.96197 0 0 612192. 2118.31 0.24 0.07 0.12 -1 -1 0.24 0.0251712 0.0220752 125 34 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.39 vpr 54.81 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.4 MiB 0.19 885 10406 2864 6861 681 55.1 MiB 0.16 0.00 3.5031 -121.505 -3.5031 3.5031 0.77 0.000773734 0.000715692 0.0474083 0.0438717 26 2246 21 6.64007e+06 226044 477104. 1650.88 0.93 0.13792 0.121903 21682 110474 -1 1967 21 1403 2284 195465 41297 2.88577 2.88577 -121.172 -2.88577 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0315182 0.0275565 121 94 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.12 vpr 54.81 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30812 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 16.9 MiB 0.13 1352 17606 4821 10688 2097 55.3 MiB 0.33 0.01 4.98622 -168.741 -4.98622 4.98622 0.76 0.000966816 0.000893898 0.0716498 0.0663293 32 3357 23 6.64007e+06 527436 554710. 1919.41 1.16 0.189324 0.168123 22834 132086 -1 2806 21 2465 4109 357232 75142 5.11829 5.11829 -178.537 -5.11829 0 0 701300. 2426.64 0.24 0.13 0.14 -1 -1 0.24 0.0396925 0.034906 189 65 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.30 vpr 54.81 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30464 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 16.8 MiB 0.14 1055 17857 5354 10411 2092 55.4 MiB 0.27 0.00 3.51607 -123.396 -3.51607 3.51607 0.79 0.000799946 0.000739188 0.0671704 0.0619634 30 2181 18 6.64007e+06 414414 526063. 1820.29 0.93 0.158247 0.140798 22546 126617 -1 1926 16 1157 1695 114529 24763 2.97637 2.97637 -120.356 -2.97637 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0268871 0.0237781 148 34 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.02 vpr 54.50 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30460 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 16.2 MiB 0.08 853 17523 5443 9889 2191 55.0 MiB 0.22 0.00 3.4529 -114.711 -3.4529 3.4529 0.77 0.000667835 0.000617917 0.0584174 0.0540227 30 1867 20 6.64007e+06 389298 526063. 1820.29 0.92 0.137306 0.122013 22546 126617 -1 1624 17 839 1212 89795 18009 2.77357 2.77357 -106.052 -2.77357 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.023473 0.0206418 116 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.74 vpr 55.11 MiB 0.05 7364 -1 -1 1 0.04 -1 -1 30976 -1 -1 45 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 17.1 MiB 0.33 1192 13629 3357 8864 1408 55.5 MiB 0.24 0.01 4.97469 -167.233 -4.97469 4.97469 0.77 0.00103557 0.000959173 0.0583767 0.0540503 32 2855 24 6.64007e+06 565110 554710. 1919.41 1.08 0.185339 0.163761 22834 132086 -1 2465 18 2092 3181 280616 56152 4.55029 4.55029 -165.816 -4.55029 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0382326 0.0336924 188 127 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.35 vpr 54.82 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30544 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1027 16762 4357 10483 1922 55.3 MiB 0.23 0.01 4.27488 -146.847 -4.27488 4.27488 0.76 0.000811853 0.000751024 0.0602102 0.0556586 28 2439 21 6.64007e+06 477204 500653. 1732.36 0.96 0.155984 0.138524 21970 115934 -1 2180 20 1673 2372 208653 43959 3.67343 3.67343 -147.366 -3.67343 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0318928 0.0280415 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.02 vpr 54.25 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30312 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 16.2 MiB 0.08 882 11046 2802 6952 1292 54.7 MiB 0.16 0.00 3.5621 -124.172 -3.5621 3.5621 0.77 0.000664194 0.000614738 0.0366084 0.0338209 30 1851 19 6.64007e+06 401856 526063. 1820.29 0.90 0.113424 0.100029 22546 126617 -1 1517 19 767 1275 81602 17948 2.46797 2.46797 -106.203 -2.46797 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0253335 0.0222221 124 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.57 vpr 54.90 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30924 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 17.1 MiB 0.14 1334 20347 5362 13158 1827 55.4 MiB 0.34 0.01 4.95502 -168.119 -4.95502 4.95502 0.78 0.000931684 0.000862814 0.0791835 0.0733699 30 3132 23 6.64007e+06 539994 526063. 1820.29 1.24 0.194559 0.173175 22546 126617 -1 2634 21 2061 3401 266542 52181 4.51109 4.51109 -169.495 -4.51109 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0379645 0.0333723 190 34 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.14 vpr 54.45 MiB 0.02 6820 -1 -1 1 0.03 -1 -1 30476 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 16.2 MiB 0.09 623 13731 4925 6406 2400 54.7 MiB 0.18 0.00 3.5061 -118.666 -3.5061 3.5061 0.76 0.00066597 0.000616478 0.0547393 0.0506944 32 2149 26 6.64007e+06 213486 554710. 1919.41 1.00 0.138714 0.122908 22834 132086 -1 1582 21 1466 2275 191386 45917 3.24357 3.24357 -120.667 -3.24357 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0273496 0.0239311 121 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.26 vpr 54.55 MiB 0.02 6832 -1 -1 1 0.03 -1 -1 30148 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56044 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 16.2 MiB 0.14 855 13939 4099 8667 1173 54.7 MiB 0.18 0.00 3.47387 -112.968 -3.47387 3.47387 0.79 0.000672511 0.000622788 0.0463978 0.0428956 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.90 0.127319 0.112515 21970 115934 -1 1678 18 932 1483 106148 23081 2.66737 2.66737 -107.139 -2.66737 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0243786 0.021381 114 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.57 vpr 55.05 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 16.7 MiB 0.20 1003 12839 3224 8329 1286 55.3 MiB 0.20 0.00 3.6803 -109.03 -3.6803 3.6803 0.82 0.000880503 0.000801832 0.0512594 0.0474536 26 2556 22 6.64007e+06 426972 477104. 1650.88 1.03 0.147755 0.130746 21682 110474 -1 2149 22 1293 2235 188727 40735 3.26557 3.26557 -111.993 -3.26557 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0339929 0.0297509 134 88 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.14 vpr 54.71 MiB 0.03 7036 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 16.8 MiB 0.17 937 11048 2797 7564 687 55.4 MiB 0.18 0.00 4.21976 -143.232 -4.21976 4.21976 0.84 0.000845019 0.000781867 0.052292 0.0484173 32 2275 21 6.64007e+06 276276 554710. 1919.41 1.05 0.152423 0.134991 22834 132086 -1 1948 22 2010 3004 285694 58969 3.78563 3.78563 -146.058 -3.78563 0 0 701300. 2426.64 0.24 0.11 0.13 -1 -1 0.24 0.0354897 0.0311509 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.59 vpr 54.75 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30668 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1070 15876 4480 9346 2050 55.4 MiB 0.21 0.00 4.25856 -146.098 -4.25856 4.25856 0.77 0.000369057 0.000336039 0.0443623 0.0407402 32 2633 21 6.64007e+06 452088 554710. 1919.41 1.08 0.137104 0.121219 22834 132086 -1 2320 17 1590 2584 216767 44248 3.73543 3.73543 -145.118 -3.73543 0 0 701300. 2426.64 0.27 0.09 0.13 -1 -1 0.27 0.0297888 0.0262733 154 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.41 vpr 54.57 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30568 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 16.4 MiB 0.15 863 8856 1892 6516 448 55.1 MiB 0.13 0.00 3.4749 -121.747 -3.4749 3.4749 0.77 0.000743949 0.00068837 0.0325188 0.0300334 32 2058 17 6.64007e+06 401856 554710. 1919.41 0.96 0.114741 0.100968 22834 132086 -1 1842 20 1242 1876 166457 34440 2.96097 2.96097 -120.151 -2.96097 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0278269 0.0243707 122 65 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.35 vpr 54.77 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30484 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.4 MiB 0.19 821 8336 2395 4162 1779 55.1 MiB 0.13 0.00 3.72326 -116.749 -3.72326 3.72326 0.76 0.000736886 0.000681469 0.0382128 0.0353985 32 1972 19 6.64007e+06 213486 554710. 1919.41 0.96 0.122812 0.108253 22834 132086 -1 1707 20 978 1859 143974 31372 2.80457 2.80457 -110.947 -2.80457 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0285257 0.0249251 109 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.72 vpr 54.73 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30432 -1 -1 35 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 16.6 MiB 0.16 985 17635 4923 10695 2017 55.2 MiB 0.27 0.01 3.4529 -110.073 -3.4529 3.4529 0.76 0.000785243 0.000727243 0.0654247 0.0605732 26 2684 26 6.64007e+06 439530 477104. 1650.88 1.43 0.166885 0.148135 21682 110474 -1 2220 20 1365 2194 191918 40499 3.08837 3.08837 -120.015 -3.08837 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0310236 0.0272106 139 60 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.19 vpr 54.58 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30440 -1 -1 32 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 16.3 MiB 0.10 939 14996 4215 8524 2257 55.1 MiB 0.21 0.00 4.39198 -124.88 -4.39198 4.39198 0.77 0.000724781 0.000671595 0.0549495 0.0508927 26 2381 25 6.64007e+06 401856 477104. 1650.88 1.35 0.146664 0.12987 21682 110474 -1 2095 20 1524 2377 201285 41059 3.82983 3.82983 -130.25 -3.82983 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.02843 0.0249307 134 34 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 54.66 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30152 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 16.4 MiB 0.18 846 13731 4520 7348 1863 55.1 MiB 0.19 0.00 3.5343 -117.296 -3.5343 3.5343 0.76 0.000701549 0.000649181 0.0575574 0.0532801 32 1932 20 6.64007e+06 238602 554710. 1919.41 0.95 0.139509 0.123805 22834 132086 -1 1827 18 1277 2121 203414 40290 2.87997 2.87997 -111.353 -2.87997 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0254371 0.0222884 114 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.36 vpr 54.84 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30376 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 16.4 MiB 0.19 892 11281 2807 6986 1488 55.1 MiB 0.16 0.00 3.6865 -117.315 -3.6865 3.6865 0.76 0.000759841 0.00070217 0.0513499 0.0474927 30 1862 18 6.64007e+06 213486 526063. 1820.29 0.92 0.136713 0.121037 22546 126617 -1 1659 20 838 1416 107695 22122 2.67977 2.67977 -105.908 -2.67977 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0293588 0.0257162 114 91 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.31 vpr 54.75 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30468 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 16.3 MiB 0.09 1121 19124 6194 10224 2706 55.0 MiB 0.27 0.01 4.18856 -139.706 -4.18856 4.18856 0.76 0.000752082 0.000696388 0.0647423 0.0598959 32 2534 23 6.64007e+06 464646 554710. 1919.41 1.02 0.157324 0.139956 22834 132086 -1 2166 19 1634 2708 233894 46812 3.55843 3.55843 -135.087 -3.55843 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0288544 0.0253978 152 4 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.64 vpr 54.97 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30592 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 16.8 MiB 0.19 1037 18660 5257 10625 2778 55.5 MiB 0.27 0.01 4.17032 -143.358 -4.17032 4.17032 0.78 0.000844456 0.000781874 0.0710996 0.0657299 32 2570 26 6.64007e+06 452088 554710. 1919.41 1.04 0.176695 0.156939 22834 132086 -1 2140 20 1754 2899 238779 48640 3.71763 3.71763 -140.268 -3.71763 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0332446 0.0292333 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.46 vpr 55.26 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 16.7 MiB 0.18 1085 15876 4268 10377 1231 55.4 MiB 0.23 0.01 4.15553 -144.194 -4.15553 4.15553 0.77 0.000852727 0.000789213 0.0613083 0.0566655 32 2694 21 6.64007e+06 452088 554710. 1919.41 1.02 0.161562 0.143425 22834 132086 -1 2282 20 1645 2600 214669 45071 3.61523 3.61523 -143.311 -3.61523 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0333719 0.0293478 153 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.51 vpr 54.84 MiB 0.05 7064 -1 -1 1 0.04 -1 -1 30584 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 16.7 MiB 0.16 963 9146 1745 6045 1356 55.4 MiB 0.13 0.00 4.17056 -135.219 -4.17056 4.17056 0.81 0.000835895 0.000772845 0.0355786 0.0329488 28 3561 44 6.64007e+06 477204 500653. 1732.36 7.01 0.265532 0.230832 21970 115934 -1 2369 21 1594 2612 215389 49614 3.76763 3.76763 -142.084 -3.76763 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0341101 0.0299495 149 65 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.11 vpr 54.34 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30532 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 16.2 MiB 0.12 840 12856 4254 6466 2136 54.9 MiB 0.17 0.00 3.4921 -115.538 -3.4921 3.4921 0.81 0.000671915 0.000621655 0.0529434 0.049107 32 1996 21 6.64007e+06 238602 554710. 1919.41 0.96 0.132492 0.11756 22834 132086 -1 1773 19 1143 1842 158697 33216 2.79557 2.79557 -113.228 -2.79557 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.026909 0.0236699 113 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.38 vpr 54.98 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30552 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 16.3 MiB 0.17 996 13127 3599 7422 2106 55.1 MiB 0.19 0.00 4.20393 -135.69 -4.20393 4.20393 0.83 0.000813428 0.000752578 0.0567154 0.052451 26 2541 24 6.64007e+06 301392 477104. 1650.88 1.24 0.157766 0.139846 21682 110474 -1 2282 21 1888 2757 268466 56063 4.03823 4.03823 -144.563 -4.03823 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0327395 0.0287319 146 63 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.76 vpr 55.01 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 31016 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1061 10232 2187 7405 640 55.2 MiB 0.17 0.01 4.16036 -143.59 -4.16036 4.16036 0.77 0.000922705 0.000854495 0.0415034 0.0384252 26 3226 32 6.64007e+06 514878 477104. 1650.88 1.93 0.166967 0.146803 21682 110474 -1 2476 20 1868 3072 269793 55372 3.87763 3.87763 -151.022 -3.87763 0 0 585099. 2024.56 0.20 0.11 0.07 -1 -1 0.20 0.0360754 0.0315705 156 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.72 vpr 54.99 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30672 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 16.8 MiB 0.13 924 14769 3776 9247 1746 55.4 MiB 0.23 0.00 4.18868 -135.93 -4.18868 4.18868 0.77 0.000856064 0.000791787 0.0616353 0.0570366 32 2460 22 6.64007e+06 414414 554710. 1919.41 1.02 0.164491 0.146016 22834 132086 -1 1978 17 1404 2244 169332 38455 4.00803 4.00803 -142.511 -4.00803 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0292602 0.0257403 148 94 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.33 vpr 55.14 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30480 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 16.7 MiB 0.15 973 15004 4033 8498 2473 55.4 MiB 0.22 0.00 3.6693 -113.052 -3.6693 3.6693 0.76 0.00082077 0.000757272 0.0607605 0.0561777 32 2172 19 6.64007e+06 401856 554710. 1919.41 0.97 0.155357 0.137818 22834 132086 -1 1892 19 1215 1923 147453 31619 2.83877 2.83877 -109.741 -2.83877 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0308134 0.0270299 138 92 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.21 vpr 54.78 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 16.7 MiB 0.28 1125 9725 2385 6614 726 55.4 MiB 0.19 0.00 4.21673 -144.443 -4.21673 4.21673 0.77 0.000846496 0.000783472 0.0463563 0.0429717 30 2730 23 6.64007e+06 276276 526063. 1820.29 1.07 0.152355 0.134686 22546 126617 -1 2455 16 1602 2713 201279 42132 3.62323 3.62323 -147.08 -3.62323 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0282316 0.0249656 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.21 vpr 54.98 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 16.5 MiB 0.15 964 18079 5189 10710 2180 55.0 MiB 0.24 0.00 3.5353 -109.312 -3.5353 3.5353 0.76 0.000794188 0.00073489 0.067045 0.0618713 32 2091 19 6.64007e+06 452088 554710. 1919.41 0.98 0.158057 0.140393 22834 132086 -1 1857 17 1318 2104 176594 37334 2.88277 2.88277 -107.59 -2.88277 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0274125 0.0241049 136 88 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.06 vpr 54.40 MiB 0.05 6800 -1 -1 1 0.03 -1 -1 30400 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.06 799 9356 2113 6168 1075 54.7 MiB 0.14 0.00 3.4921 -122.483 -3.4921 3.4921 0.76 0.000674277 0.000624681 0.0381598 0.0353873 32 1970 18 6.64007e+06 213486 554710. 1919.41 0.93 0.11433 0.101007 22834 132086 -1 1722 19 1236 1879 153670 32586 2.78457 2.78457 -118.361 -2.78457 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0253722 0.022278 115 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.89 vpr 54.91 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30536 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 16.7 MiB 0.29 992 16743 5741 8435 2567 55.5 MiB 0.25 0.01 4.25856 -144.485 -4.25856 4.25856 0.77 0.000854802 0.00079042 0.065366 0.0604426 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.14 0.172145 0.152768 21970 115934 -1 2249 19 1648 2538 223427 46806 3.85563 3.85563 -146.969 -3.85563 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.032117 0.028281 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.51 vpr 55.19 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 16.6 MiB 0.19 1054 17367 5167 10302 1898 55.3 MiB 0.28 0.00 4.21976 -145.962 -4.21976 4.21976 0.76 0.000844963 0.000782004 0.0796422 0.0737507 32 2455 22 6.64007e+06 288834 554710. 1919.41 1.02 0.181464 0.161911 22834 132086 -1 2069 23 1972 3269 286951 63259 3.70883 3.70883 -142.906 -3.70883 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0372398 0.0326757 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.56 vpr 54.79 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30484 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.4 MiB 0.17 691 7975 1531 6145 299 55.0 MiB 0.12 0.00 3.6913 -111.241 -3.6913 3.6913 0.76 0.00068995 0.000637907 0.028122 0.0260038 26 2401 39 6.64007e+06 376740 477104. 1650.88 1.45 0.12997 0.113532 21682 110474 -1 1756 18 874 1420 120932 28308 2.87797 2.87797 -110.849 -2.87797 0 0 585099. 2024.56 0.21 0.06 0.11 -1 -1 0.21 0.0247273 0.0216356 112 55 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.01 vpr 54.27 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.3 MiB 0.08 653 13381 4684 6039 2658 54.7 MiB 0.18 0.00 3.5533 -116.629 -3.5533 3.5533 0.76 0.000642459 0.000594397 0.051322 0.0475052 32 1926 23 6.64007e+06 226044 554710. 1919.41 0.96 0.130668 0.115801 22834 132086 -1 1661 20 1392 2142 187943 42705 3.31857 3.31857 -122.203 -3.31857 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0256599 0.0224773 118 4 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.32 vpr 55.10 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30296 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 16.6 MiB 0.17 927 16303 4785 8793 2725 55.2 MiB 0.23 0.00 4.16476 -135.871 -4.16476 4.16476 0.76 0.00079929 0.000739356 0.0617919 0.0571325 32 2298 20 6.64007e+06 414414 554710. 1919.41 0.99 0.155719 0.13824 22834 132086 -1 1988 19 1385 2027 190856 40270 3.64283 3.64283 -131.747 -3.64283 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0303367 0.0266422 139 59 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.48 vpr 55.06 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 16.6 MiB 0.12 1051 17397 5163 9750 2484 55.3 MiB 0.26 0.00 4.41596 -136.112 -4.41596 4.41596 0.80 0.000831536 0.000763992 0.0702514 0.0649255 26 3045 25 6.64007e+06 401856 477104. 1650.88 1.61 0.177301 0.15745 21682 110474 -1 2339 21 1597 2558 224361 46433 3.93722 3.93722 -138.517 -3.93722 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0339183 0.029735 136 88 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.10 vpr 55.12 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30524 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 17.1 MiB 0.09 1159 10441 2545 7247 649 55.3 MiB 0.19 0.01 4.95022 -163.094 -4.95022 4.95022 0.85 0.000869739 0.000805211 0.0414468 0.038377 32 3386 23 6.64007e+06 464646 554710. 1919.41 1.21 0.148218 0.131243 22834 132086 -1 2752 20 2117 3334 320799 67756 4.55248 4.55248 -166.223 -4.55248 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0349717 0.0309021 179 3 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.18 vpr 54.66 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 16.4 MiB 0.16 813 9732 2096 6039 1597 55.2 MiB 0.13 0.00 3.7815 -111.41 -3.7815 3.7815 0.76 0.000603328 0.000548645 0.0382819 0.0353172 28 2552 38 6.64007e+06 426972 500653. 1732.36 1.88 0.161826 0.142785 21970 115934 -1 1835 22 1390 2204 176608 40764 3.16737 3.16737 -112.457 -3.16737 0 0 612192. 2118.31 0.22 0.09 0.12 -1 -1 0.22 0.0337088 0.0295725 138 59 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.02 vpr 54.31 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 15.9 MiB 0.09 529 12292 5081 5761 1450 54.6 MiB 0.13 0.00 3.54427 -98.353 -3.54427 3.54427 0.76 0.000614139 0.000568389 0.0471092 0.0436081 32 1616 46 6.64007e+06 263718 554710. 1919.41 1.25 0.141701 0.124962 22834 132086 -1 1299 20 1130 1608 165142 36694 3.04217 3.04217 -98.8483 -3.04217 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0243411 0.0215216 107 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.55 vpr 54.98 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30624 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 17.1 MiB 0.17 1462 20856 5895 12562 2399 55.5 MiB 0.37 0.01 4.52196 -148.077 -4.52196 4.52196 0.76 0.0010109 0.000937167 0.0873502 0.0809663 30 3568 23 6.64007e+06 527436 526063. 1820.29 1.12 0.207159 0.184434 22546 126617 -1 2796 23 1949 3557 274079 54644 3.84562 3.84562 -147.767 -3.84562 0 0 666494. 2306.21 0.24 0.12 0.13 -1 -1 0.24 0.0408582 0.0358096 186 95 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.27 vpr 55.17 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30684 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 16.8 MiB 0.25 998 12919 3192 8538 1189 55.5 MiB 0.21 0.00 4.42996 -140.975 -4.42996 4.42996 0.77 0.000907671 0.00084059 0.0658736 0.061071 32 2482 22 6.64007e+06 276276 554710. 1919.41 1.03 0.173696 0.153979 22834 132086 -1 2164 20 1512 2516 208462 45637 3.69562 3.69562 -141.495 -3.69562 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.035349 0.0309278 145 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.38 vpr 54.72 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 16.2 MiB 0.23 894 11948 3681 7128 1139 55.1 MiB 0.17 0.00 3.6755 -115.703 -3.6755 3.6755 0.76 0.000743117 0.000686532 0.0552658 0.0511078 32 1971 18 6.64007e+06 200928 554710. 1919.41 0.94 0.139483 0.123641 22834 132086 -1 1736 18 935 1525 132412 28338 2.76777 2.76777 -114.82 -2.76777 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0271817 0.0238583 108 89 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.90 vpr 54.80 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30328 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 16.7 MiB 0.08 1023 18745 6322 9498 2925 55.4 MiB 0.27 0.01 4.46396 -140.121 -4.46396 4.46396 0.77 0.00079069 0.000731504 0.0697392 0.0644844 28 2993 24 6.64007e+06 414414 500653. 1732.36 1.44 0.16949 0.150715 21970 115934 -1 2307 18 1382 2117 188657 40217 3.82202 3.82202 -138.126 -3.82202 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290818 0.0255795 147 34 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.74 vpr 55.06 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30684 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 17.0 MiB 0.14 1135 20076 5790 11566 2720 55.3 MiB 0.31 0.01 4.51716 -144.659 -4.51716 4.51716 0.76 0.000941978 0.000872675 0.08332 0.0771783 32 2660 18 6.64007e+06 477204 554710. 1919.41 1.01 0.189245 0.168583 22834 132086 -1 2307 19 1782 2750 235942 50128 3.68462 3.68462 -138.576 -3.68462 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0345815 0.0303694 173 64 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.66 vpr 54.72 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30456 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 16.8 MiB 0.12 923 11484 2608 8162 714 55.4 MiB 0.19 0.00 3.73061 -110.59 -3.73061 3.73061 0.76 0.00078134 0.00072276 0.0438355 0.0405453 26 2813 30 6.64007e+06 426972 477104. 1650.88 1.73 0.149903 0.132052 21682 110474 -1 2128 18 1435 2401 224301 66762 3.22357 3.22357 -116.11 -3.22357 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0285717 0.0251097 135 61 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.60 vpr 55.14 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30572 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1008 13516 3637 9135 744 55.1 MiB 0.22 0.01 4.19956 -142.899 -4.19956 4.19956 0.77 0.000842544 0.000779151 0.0483901 0.0447175 28 2763 25 6.64007e+06 539994 500653. 1732.36 1.15 0.153263 0.135251 21970 115934 -1 2104 18 1685 2796 218922 48113 3.85803 3.85803 -147.485 -3.85803 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0306878 0.0270353 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.65 vpr 55.08 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 16.8 MiB 0.10 988 17184 5218 8807 3159 55.4 MiB 0.13 0.00 3.62559 -123.648 -3.62559 3.62559 0.61 0.000360777 0.000328527 0.027554 0.025151 28 2903 50 6.64007e+06 502320 500653. 1732.36 1.59 0.164059 0.142876 21970 115934 -1 2292 17 1376 2114 212165 44500 3.14237 3.14237 -126.049 -3.14237 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0293224 0.0258379 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.18 vpr 54.46 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 16.0 MiB 0.08 573 13430 5649 6739 1042 54.9 MiB 0.15 0.00 3.6785 -105.931 -3.6785 3.6785 0.76 0.0006492 0.000600675 0.0538404 0.0498401 28 1569 22 6.64007e+06 226044 500653. 1732.36 1.04 0.131694 0.116627 21970 115934 -1 1356 19 862 1223 110473 24491 2.84977 2.84977 -102.552 -2.84977 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.024719 0.0216198 95 34 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.38 vpr 54.83 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30180 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 16.2 MiB 0.18 857 11783 4174 5528 2081 55.2 MiB 0.16 0.00 4.00656 -110.848 -4.00656 4.00656 0.76 0.000710823 0.000656742 0.0500372 0.0463103 30 1904 16 6.64007e+06 238602 526063. 1820.29 0.91 0.128872 0.114136 22546 126617 -1 1617 18 635 905 67187 14496 2.71823 2.71823 -103.618 -2.71823 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0254972 0.0223597 112 82 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.28 vpr 54.80 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30532 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 16.7 MiB 0.12 1100 13261 3564 8068 1629 55.3 MiB 0.17 0.00 4.80256 -145.153 -4.80256 4.80256 0.81 0.000570341 0.000519715 0.0425557 0.0393304 26 3252 47 6.64007e+06 477204 477104. 1650.88 6.11 0.267921 0.233066 21682 110474 -1 2549 21 1658 2761 260816 54095 3.99883 3.99883 -151.282 -3.99883 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.032441 0.0284746 151 34 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.38 vpr 54.59 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30472 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.3 MiB 0.19 620 10442 2502 7352 588 55.0 MiB 0.14 0.00 3.6803 -100.526 -3.6803 3.6803 0.78 0.000455499 0.000414222 0.0282412 0.0258569 26 1915 43 6.64007e+06 389298 477104. 1650.88 1.29 0.120643 0.105436 21682 110474 -1 1571 20 1030 1716 144162 32648 2.85877 2.85877 -102.793 -2.85877 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0254787 0.0221957 108 56 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.19 vpr 54.44 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30284 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 16.1 MiB 0.15 691 13906 4599 7385 1922 55.0 MiB 0.20 0.00 3.53127 -120.288 -3.53127 3.53127 0.76 0.000702575 0.000649929 0.0582363 0.0539222 32 2095 22 6.64007e+06 213486 554710. 1919.41 1.03 0.145111 0.129035 22834 132086 -1 1668 19 1407 2186 197304 41205 2.94077 2.94077 -119.677 -2.94077 0 0 701300. 2426.64 0.27 0.07 0.14 -1 -1 0.27 0.0232599 0.0205162 118 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.17 vpr 54.98 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30472 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 16.7 MiB 0.15 999 13261 3446 8635 1180 55.2 MiB 0.19 0.00 3.5665 -119.865 -3.5665 3.5665 0.76 0.000812603 0.000751465 0.0488841 0.0451447 30 2032 21 6.64007e+06 477204 526063. 1820.29 0.97 0.145446 0.128635 22546 126617 -1 1839 19 1324 1951 150453 31193 2.83197 2.83197 -113.787 -2.83197 0 0 666494. 2306.21 0.25 0.08 0.13 -1 -1 0.25 0.0307327 0.0270376 144 64 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.16 vpr 54.71 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30340 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 16.2 MiB 0.16 869 9368 2508 6076 784 54.9 MiB 0.13 0.00 3.34153 -105.882 -3.34153 3.34153 0.77 0.000684729 0.000633443 0.0391923 0.0362852 32 1956 21 6.64007e+06 213486 554710. 1919.41 0.95 0.119532 0.105317 22834 132086 -1 1754 20 943 1606 136844 27949 2.65277 2.65277 -106.702 -2.65277 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0266702 0.0232931 106 55 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.49 vpr 54.89 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30464 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 16.4 MiB 0.15 879 9865 2512 6573 780 55.3 MiB 0.15 0.00 3.57229 -117.612 -3.57229 3.57229 0.76 0.00108875 0.00102709 0.0387722 0.0358852 28 2688 46 6.64007e+06 414414 500653. 1732.36 1.46 0.163184 0.143048 21970 115934 -1 2021 15 1111 1761 143964 31959 3.18237 3.18237 -122.994 -3.18237 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0254499 0.0224668 137 65 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.46 vpr 54.99 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30500 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 16.7 MiB 0.26 875 10540 2287 7686 567 55.4 MiB 0.17 0.01 3.79366 -119.555 -3.79366 3.79366 0.76 0.000852893 0.000789021 0.0417851 0.0386404 30 2106 18 6.64007e+06 464646 526063. 1820.29 1.00 0.139588 0.123159 22546 126617 -1 1757 17 1247 1745 132285 28565 2.98817 2.98817 -114.179 -2.98817 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0297191 0.0261556 149 93 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.24 vpr 54.52 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.3 MiB 0.14 816 8626 2345 5890 391 55.0 MiB 0.14 0.00 3.06096 -106.925 -3.06096 3.06096 0.77 0.000718723 0.000664524 0.037211 0.0344456 32 2025 20 6.64007e+06 226044 554710. 1919.41 0.95 0.121381 0.107065 22834 132086 -1 1791 20 1193 1881 168065 35151 2.77777 2.77777 -108.652 -2.77777 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0282863 0.0247209 115 61 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.23 vpr 54.77 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.3 MiB 0.19 920 11296 3024 7326 946 55.0 MiB 0.17 0.00 3.5031 -121.121 -3.5031 3.5031 0.76 0.000731866 0.000677406 0.0488628 0.0452308 30 2134 20 6.64007e+06 226044 526063. 1820.29 0.96 0.135317 0.119851 22546 126617 -1 1947 20 1181 1959 148565 31249 2.75977 2.75977 -115.023 -2.75977 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0290787 0.02552 121 63 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.24 vpr 55.02 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30692 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 16.7 MiB 0.09 1027 12240 2965 8371 904 55.5 MiB 0.19 0.00 4.25676 -144.495 -4.25676 4.25676 0.76 0.000842872 0.000779515 0.0461471 0.0426736 32 2511 30 6.64007e+06 477204 554710. 1919.41 1.09 0.156682 0.138289 22834 132086 -1 2178 22 1875 2807 281395 62206 3.93183 3.93183 -146.792 -3.93183 0 0 701300. 2426.64 0.24 0.11 0.13 -1 -1 0.24 0.0353936 0.0310483 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.20 vpr 54.78 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30536 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 16.4 MiB 0.14 1021 16079 4076 10280 1723 55.3 MiB 0.14 0.00 3.7925 -111.563 -3.7925 3.7925 0.75 0.000776383 0.000718634 0.0285531 0.0261759 32 2168 20 6.64007e+06 426972 554710. 1919.41 0.93 0.1188 0.104071 22834 132086 -1 1959 20 1165 1814 145516 30813 3.04717 3.04717 -110.394 -3.04717 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0305189 0.0267605 135 62 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.76 vpr 55.21 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30816 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 16.8 MiB 0.27 937 9020 1835 6701 484 55.7 MiB 0.16 0.01 4.29776 -145.038 -4.29776 4.29776 0.76 0.000940385 0.000870723 0.0380618 0.0352575 32 2585 22 6.64007e+06 489762 554710. 1919.41 1.04 0.149517 0.13134 22834 132086 -1 2165 21 1771 2655 239893 52602 3.90583 3.90583 -148.672 -3.90583 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0381865 0.0334373 158 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.93 vpr 54.35 MiB 0.04 6748 -1 -1 1 0.03 -1 -1 30288 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55848 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 15.9 MiB 0.07 804 11948 3966 6404 1578 54.5 MiB 0.15 0.00 3.08296 -103.61 -3.08296 3.08296 0.76 0.000638687 0.000591765 0.0471357 0.0435489 32 1825 19 6.64007e+06 213486 554710. 1919.41 0.92 0.118519 0.104899 22834 132086 -1 1638 16 849 1364 119890 26191 2.76997 2.76997 -106.858 -2.76997 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0210301 0.0185012 106 4 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.20 vpr 55.03 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 16.6 MiB 0.13 998 18111 4956 10747 2408 55.3 MiB 0.26 0.00 4.26296 -139.632 -4.26296 4.26296 0.83 0.000847902 0.000784025 0.0703706 0.0650578 26 2599 21 6.64007e+06 439530 477104. 1650.88 1.29 0.172179 0.152925 21682 110474 -1 2225 21 1573 2185 205524 42227 3.92723 3.92723 -141.021 -3.92723 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0347166 0.030452 144 92 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.30 vpr 54.70 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30224 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.3 MiB 0.30 734 13381 4309 7077 1995 55.1 MiB 0.09 0.00 3.54047 -121.881 -3.54047 3.54047 0.87 0.00032969 0.000301035 0.0273544 0.0250223 28 1926 23 6.64007e+06 213486 500653. 1732.36 0.93 0.116311 0.101721 21970 115934 -1 1696 19 1184 1716 151042 32013 2.92797 2.92797 -119.51 -2.92797 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0289001 0.025311 114 96 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.59 vpr 54.92 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30488 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1102 9501 2041 6911 549 55.5 MiB 0.16 0.01 3.5841 -124.322 -3.5841 3.5841 0.76 0.000836951 0.000774225 0.0365075 0.0338079 30 2349 17 6.64007e+06 464646 526063. 1820.29 1.00 0.129348 0.114201 22546 126617 -1 2008 22 1251 1621 132354 27613 2.79797 2.79797 -118.014 -2.79797 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0356528 0.0312833 151 65 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.87 vpr 55.08 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30772 -1 -1 45 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 17.1 MiB 0.24 1244 16489 4012 10933 1544 55.6 MiB 0.27 0.01 4.96651 -168.366 -4.96651 4.96651 0.76 0.00100534 0.000930862 0.0671385 0.0621539 26 3418 26 6.64007e+06 565110 477104. 1650.88 1.90 0.200284 0.177609 21682 110474 -1 2791 22 2536 3984 345977 69940 4.51068 4.51068 -170.322 -4.51068 0 0 585099. 2024.56 0.20 0.13 0.12 -1 -1 0.20 0.0429309 0.0377012 188 96 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.10 vpr 54.18 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30176 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55748 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 15.8 MiB 0.09 483 10509 2545 7262 702 54.4 MiB 0.10 0.00 2.73878 -81.5531 -2.73878 2.73878 0.77 0.000579455 0.000535662 0.0391392 0.0362029 28 1347 20 6.64007e+06 188370 500653. 1732.36 0.91 0.106043 0.0932648 21970 115934 -1 1158 15 603 804 64649 15968 2.05711 2.05711 -81.0144 -2.05711 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0176868 0.015449 83 56 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.15 vpr 54.39 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30380 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 16.3 MiB 0.08 793 10388 3558 5136 1694 54.7 MiB 0.13 0.00 3.6815 -114.291 -3.6815 3.6815 0.76 0.000676019 0.000626094 0.0441256 0.040936 32 1609 19 6.64007e+06 213486 554710. 1919.41 0.93 0.122014 0.108029 22834 132086 -1 1518 17 879 1277 129507 26561 2.77177 2.77177 -110.345 -2.77177 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0234433 0.0205802 97 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.07 vpr 54.66 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30116 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.2 MiB 0.10 798 13966 5020 6560 2386 54.9 MiB 0.20 0.00 3.4859 -119.604 -3.4859 3.4859 0.77 0.000699509 0.000646924 0.0575643 0.0532592 32 2353 24 6.64007e+06 226044 554710. 1919.41 1.03 0.144143 0.127857 22834 132086 -1 1951 18 1384 2432 200953 44767 3.04997 3.04997 -122.164 -3.04997 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.025496 0.0223864 126 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.48 vpr 54.26 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.0 MiB 0.06 678 12127 3168 7672 1287 54.6 MiB 0.14 0.00 3.4089 -91.215 -3.4089 3.4089 0.76 0.00057981 0.000537179 0.0362814 0.0336445 26 1683 18 6.64007e+06 426972 477104. 1650.88 1.03 0.10127 0.0891769 21682 110474 -1 1509 19 990 1459 130073 27396 2.96197 2.96197 -96.4633 -2.96197 0 0 585099. 2024.56 0.20 0.06 0.11 -1 -1 0.20 0.0217385 0.018927 103 34 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.29 vpr 54.97 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1064 14828 5337 7470 2021 55.5 MiB 0.25 0.00 4.34676 -140.278 -4.34676 4.34676 0.76 0.000870576 0.000804173 0.0713815 0.0659953 32 2396 23 6.64007e+06 276276 554710. 1919.41 1.02 0.177715 0.157649 22834 132086 -1 2083 20 1488 2616 200523 41667 3.54023 3.54023 -135.597 -3.54023 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0345201 0.0302911 149 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.49 vpr 55.07 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30448 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 16.7 MiB 0.17 786 10336 2273 7345 718 55.4 MiB 0.17 0.01 3.53327 -114.261 -3.53327 3.53327 0.76 0.000867255 0.00079527 0.0410902 0.0379467 28 2288 43 6.64007e+06 489762 500653. 1732.36 1.78 0.169793 0.148782 21970 115934 -1 2000 23 1875 2848 305281 74978 3.41997 3.41997 -125.343 -3.41997 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.03728 0.0326308 148 94 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.70 vpr 54.73 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30936 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 16.9 MiB 0.20 984 7523 1506 5708 309 55.1 MiB 0.15 0.01 3.92206 -133.487 -3.92206 3.92206 0.76 0.000882253 0.000816535 0.0327614 0.0303124 34 2600 22 6.65987e+06 431052 585099. 2024.56 3.35 0.253178 0.219809 23122 138558 -1 2232 22 1628 2696 242519 52913 3.50811 3.50811 -133.542 -3.50811 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0374536 0.0328364 151 96 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.30 vpr 54.86 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30592 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 16.6 MiB 0.32 986 12323 4513 6271 1539 55.2 MiB 0.21 0.00 4.33507 -129.747 -4.33507 4.33507 0.76 0.000833823 0.00076441 0.0594747 0.0550275 32 2555 27 6.65987e+06 266238 554710. 1919.41 1.05 0.164972 0.146084 22834 132086 -1 2079 21 1676 2772 286112 58972 3.71671 3.71671 -129.818 -3.71671 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0354802 0.0311301 140 91 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.83 vpr 54.48 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 30380 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 16.6 MiB 0.14 1040 16523 4439 10256 1828 55.4 MiB 0.23 0.00 3.41879 -119.689 -3.41879 3.41879 0.87 0.00080532 0.000744402 0.0623837 0.0577126 28 2533 20 6.65987e+06 431052 500653. 1732.36 1.14 0.157707 0.140066 21970 115934 -1 2189 20 1475 2439 218518 45467 3.03845 3.03845 -122.246 -3.03845 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0322406 0.028341 141 65 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.24 vpr 54.49 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30640 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 16.4 MiB 0.10 793 11603 2857 6819 1927 55.0 MiB 0.15 0.00 4.2977 -123.649 -4.2977 4.2977 0.87 0.000745168 0.000689509 0.0475697 0.043981 36 2029 24 6.65987e+06 278916 612192. 2118.31 3.84 0.256651 0.223375 23410 145293 -1 1678 22 1406 2401 203638 45318 3.66657 3.66657 -120.541 -3.66657 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0324962 0.0285882 138 34 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.77 vpr 54.49 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30428 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 16.6 MiB 0.19 1026 15456 4961 8586 1909 55.3 MiB 0.25 0.00 4.14936 -143.085 -4.14936 4.14936 0.84 0.000805455 0.000745005 0.0591899 0.0542699 32 2888 21 6.65987e+06 253560 554710. 1919.41 1.10 0.156928 0.13899 22834 132086 -1 2439 22 2106 3807 350055 76089 3.75443 3.75443 -149.423 -3.75443 0 0 701300. 2426.64 0.24 0.12 0.13 -1 -1 0.24 0.0346925 0.0305181 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.36 vpr 54.98 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1029 9501 1978 7135 388 54.9 MiB 0.16 0.01 3.43623 -117.882 -3.43623 3.43623 0.85 0.000841164 0.000776343 0.0355234 0.0327888 32 2586 24 6.65987e+06 469086 554710. 1919.41 1.03 0.141276 0.12442 22834 132086 -1 2136 19 1312 2071 187228 39708 2.85871 2.85871 -119.202 -2.85871 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.031712 0.0279105 154 64 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.21 vpr 54.19 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30604 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 15.8 MiB 0.17 580 13026 4344 6329 2353 54.4 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 0.76 0.000622843 0.000576743 0.0504186 0.046712 30 1446 19 6.65987e+06 240882 526063. 1820.29 0.89 0.121986 0.108172 22546 126617 -1 1147 16 627 1086 81870 17842 2.66237 2.66237 -89.6469 -2.66237 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0209329 0.0184077 96 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.95 vpr 54.41 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30212 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 16.3 MiB 0.13 1006 10170 2426 6636 1108 54.9 MiB 0.15 0.00 3.27903 -106.33 -3.27903 3.27903 0.76 0.000729109 0.000674007 0.0364133 0.0336853 28 2446 21 6.65987e+06 418374 500653. 1732.36 1.05 0.122771 0.108196 21970 115934 -1 2195 21 1220 2108 168948 36500 2.77785 2.77785 -107.538 -2.77785 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0300199 0.0263449 139 4 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.40 vpr 54.55 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30152 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 16.2 MiB 0.26 870 11571 3268 6617 1686 54.9 MiB 0.16 0.00 3.07084 -101.313 -3.07084 3.07084 0.77 0.000719607 0.000665271 0.0546417 0.050628 32 1805 19 6.65987e+06 202848 554710. 1919.41 0.91 0.137013 0.121575 22834 132086 -1 1615 21 854 1396 116661 25549 2.45705 2.45705 -97.9713 -2.45705 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0292613 0.0255636 105 85 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.48 vpr 54.47 MiB 0.05 6840 -1 -1 1 0.03 -1 -1 30484 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 16.2 MiB 0.25 642 11432 4032 4649 2751 54.9 MiB 0.07 0.00 3.56921 -118.924 -3.56921 3.56921 0.68 0.000300537 0.000273851 0.0218817 0.0200265 36 2023 31 6.65987e+06 202848 612192. 2118.31 2.27 0.171253 0.148094 23410 145293 -1 1511 22 1432 2299 187418 45961 2.94077 2.94077 -110.63 -2.94077 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0304547 0.0266713 121 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.19 vpr 54.41 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30176 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 16.2 MiB 0.23 784 11571 3060 7609 902 54.8 MiB 0.16 0.00 3.4841 -113.76 -3.4841 3.4841 0.76 0.000704243 0.000650258 0.0504325 0.0466701 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.93 0.132693 0.117403 22834 132086 -1 1528 20 1051 1525 125077 27168 2.84797 2.84797 -108.72 -2.84797 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.02845 0.0249231 110 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.30 vpr 54.38 MiB 0.05 6980 -1 -1 1 0.04 -1 -1 30516 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.1 MiB 0.21 841 11223 2602 8034 587 54.8 MiB 0.16 0.00 3.27957 -108.894 -3.27957 3.27957 0.77 0.000718538 0.000663911 0.0410342 0.0379736 30 1928 23 6.65987e+06 367662 526063. 1820.29 1.01 0.127564 0.112425 22546 126617 -1 1661 20 982 1609 119815 26510 2.51905 2.51905 -106.481 -2.51905 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0280608 0.0245806 114 65 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 6.76 vpr 54.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 16.5 MiB 0.36 1002 18711 5900 10256 2555 55.1 MiB 0.27 0.01 3.50686 -122.446 -3.50686 3.50686 0.76 0.000812293 0.000750882 0.0726455 0.0671266 32 2471 22 6.65987e+06 405696 554710. 1919.41 1.02 0.170313 0.15169 22834 132086 -1 2110 19 1562 2630 232117 50462 3.18117 3.18117 -120.591 -3.18117 0 0 701300. 2426.64 0.23 0.05 0.14 -1 -1 0.23 0.0163975 0.0146131 143 58 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.44 vpr 54.78 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30492 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 16.6 MiB 0.24 942 7973 1567 6126 280 55.0 MiB 0.15 0.01 4.02327 -135.611 -4.02327 4.02327 0.78 0.000845329 0.000782512 0.0330866 0.0306415 32 2763 26 6.65987e+06 431052 554710. 1919.41 1.12 0.140272 0.123326 22834 132086 -1 2301 21 1936 3040 306992 66787 3.93877 3.93877 -147.254 -3.93877 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0350335 0.0308222 156 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.90 vpr 54.21 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30652 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55636 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 15.9 MiB 0.15 686 7177 1709 4538 930 54.3 MiB 0.11 0.00 3.15358 -93.6229 -3.15358 3.15358 0.78 0.000631237 0.000584845 0.0288231 0.0267445 28 1771 18 6.65987e+06 228204 500653. 1732.36 0.88 0.100644 0.0883851 21970 115934 -1 1604 18 1025 1695 140190 31422 2.67639 2.67639 -95.1552 -2.67639 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0231271 0.0202604 107 29 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.52 vpr 54.93 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 30420 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1074 13992 4161 7846 1985 55.3 MiB 0.23 0.00 3.5141 -125.301 -3.5141 3.5141 0.76 0.000834453 0.000771648 0.0670568 0.0620786 32 2632 23 6.65987e+06 253560 554710. 1919.41 1.04 0.169071 0.150328 22834 132086 -1 2355 22 1855 3248 342583 71983 3.21037 3.21037 -128.366 -3.21037 0 0 701300. 2426.64 0.24 0.12 0.14 -1 -1 0.24 0.0362767 0.0318975 146 63 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.47 vpr 54.84 MiB 0.02 7104 -1 -1 1 0.04 -1 -1 30508 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 16.6 MiB 0.37 934 18323 6450 8556 3317 55.2 MiB 0.21 0.00 3.6343 -123.732 -3.6343 3.6343 0.77 0.000809964 0.000748893 0.0690604 0.0638641 36 2162 19 6.65987e+06 431052 612192. 2118.31 3.27 0.29192 0.255584 23410 145293 -1 1756 16 1114 1612 157913 32547 2.82271 2.82271 -112.641 -2.82271 0 0 782063. 2706.10 0.26 0.07 0.15 -1 -1 0.26 0.0273937 0.0241947 142 57 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.19 vpr 54.72 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30088 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 16.1 MiB 0.22 832 15430 4777 8349 2304 54.7 MiB 0.21 0.00 2.83964 -101.748 -2.83964 2.83964 0.77 0.000734053 0.00067833 0.0564349 0.0522104 30 1934 17 6.65987e+06 380340 526063. 1820.29 0.94 0.139231 0.123631 22546 126617 -1 1617 15 847 1196 86107 18561 2.15051 2.15051 -96.3351 -2.15051 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.023408 0.0206102 118 65 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.88 vpr 54.00 MiB 0.05 6660 -1 -1 1 0.03 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55472 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 15.8 MiB 0.10 661 10835 3152 6204 1479 54.2 MiB 0.12 0.00 2.60038 -85.2282 -2.60038 2.60038 0.80 0.000546854 0.00050547 0.0389388 0.0360011 28 1463 18 6.65987e+06 190170 500653. 1732.36 0.95 0.0979899 0.0867377 21970 115934 -1 1318 14 564 830 71903 15423 1.71865 1.71865 -76.5922 -1.71865 0 0 612192. 2118.31 0.22 0.05 0.12 -1 -1 0.22 0.0167725 0.0147203 85 34 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.40 vpr 54.29 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 16.2 MiB 0.20 855 13768 4604 7573 1591 54.9 MiB 0.19 0.00 3.94338 -122.155 -3.94338 3.94338 0.76 0.000722006 0.000667728 0.0612587 0.0567259 32 1972 27 6.65987e+06 202848 554710. 1919.41 1.03 0.158267 0.14053 22834 132086 -1 1766 20 997 1544 144870 30566 2.95431 2.95431 -117.826 -2.95431 0 0 701300. 2426.64 0.26 0.07 0.10 -1 -1 0.26 0.0245709 0.0216777 113 64 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.16 vpr 54.77 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30280 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 16.6 MiB 0.07 1021 12248 3399 7922 927 55.3 MiB 0.18 0.00 3.9823 -134.861 -3.9823 3.9823 0.76 0.000811767 0.000752333 0.0462129 0.0427794 26 2598 19 6.65987e+06 431052 477104. 1650.88 1.03 0.13872 0.12285 21682 110474 -1 2271 20 1637 2360 234239 49375 3.58751 3.58751 -136.586 -3.58751 0 0 585099. 2024.56 0.21 0.10 0.12 -1 -1 0.21 0.0327585 0.0289377 145 34 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.38 vpr 54.94 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30860 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1084 15644 4587 8678 2379 55.1 MiB 0.24 0.01 3.46744 -121.209 -3.46744 3.46744 0.76 0.000917246 0.000848506 0.0652108 0.0603957 32 2803 25 6.65987e+06 456408 554710. 1919.41 1.05 0.178417 0.157831 22834 132086 -1 2353 20 1566 2368 237026 50182 3.58025 3.58025 -125.949 -3.58025 0 0 701300. 2426.64 0.26 0.10 0.14 -1 -1 0.26 0.0361459 0.0316813 149 124 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.61 vpr 53.94 MiB 0.04 6708 -1 -1 1 0.03 -1 -1 30720 -1 -1 17 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55276 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 15.4 MiB 0.16 410 10345 3142 6004 1199 54.0 MiB 0.08 0.00 2.61938 -68.655 -2.61938 2.61938 0.76 0.000476987 0.000440045 0.0328574 0.0303658 30 1104 16 6.65987e+06 215526 526063. 1820.29 0.84 0.0825724 0.0729649 22546 126617 -1 925 15 425 632 39743 10042 2.04305 2.04305 -69.5237 -2.04305 0 0 666494. 2306.21 0.23 0.04 0.13 -1 -1 0.23 0.0152654 0.0134084 77 30 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.02 vpr 54.46 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30144 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 16.1 MiB 0.13 1123 11064 3077 6737 1250 54.9 MiB 0.20 0.00 4.10424 -135.549 -4.10424 4.10424 0.76 0.000747012 0.000690834 0.0480579 0.0445133 32 2649 23 6.65987e+06 253560 554710. 1919.41 1.02 0.140065 0.124009 22834 132086 -1 2275 21 1697 2847 274287 58311 3.81777 3.81777 -136.46 -3.81777 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0316062 0.0278222 137 3 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.75 vpr 53.88 MiB 0.04 6752 -1 -1 1 0.03 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55344 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 15.5 MiB 0.05 594 8553 1943 6358 252 54.0 MiB 0.09 0.00 2.22607 -81.0919 -2.22607 2.22607 0.77 0.000508156 0.00046904 0.0284531 0.0262838 28 1480 20 6.65987e+06 164814 500653. 1732.36 0.96 0.089042 0.0785651 21970 115934 -1 1335 16 654 841 73133 16653 1.88005 1.88005 -79.6313 -1.88005 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.017029 0.0149814 81 3 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.25 vpr 54.47 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30484 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 16.5 MiB 0.07 1112 19189 6002 11213 1974 55.2 MiB 0.27 0.01 4.06247 -140.472 -4.06247 4.06247 0.77 0.00080659 0.00074657 0.0727327 0.0672868 32 2623 31 6.65987e+06 418374 554710. 1919.41 1.08 0.183395 0.163013 22834 132086 -1 2274 20 1744 2646 251145 52992 3.52217 3.52217 -137.344 -3.52217 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0321435 0.0283058 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.33 vpr 54.64 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 16.5 MiB 0.13 1134 16059 4004 10217 1838 55.1 MiB 0.25 0.01 3.38184 -119.391 -3.38184 3.38184 0.79 0.000756515 0.0007002 0.0566619 0.0524833 30 2519 20 6.65987e+06 443730 526063. 1820.29 0.97 0.146775 0.13055 22546 126617 -1 2144 20 1350 2172 193746 37851 2.57805 2.57805 -112.436 -2.57805 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0304645 0.0268004 150 3 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.48 vpr 54.77 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30552 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 16.7 MiB 0.12 1120 14463 4038 8924 1501 55.1 MiB 0.24 0.01 3.91784 -136.256 -3.91784 3.91784 0.77 0.000839297 0.00077615 0.0565268 0.0523034 28 2849 26 6.65987e+06 443730 500653. 1732.36 1.55 0.165927 0.147056 21970 115934 -1 2389 21 1720 2858 250057 52904 3.28251 3.28251 -132.109 -3.28251 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0350328 0.0308283 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.15 vpr 54.34 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30192 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 16.1 MiB 0.06 736 8191 2107 5347 737 54.6 MiB 0.12 0.00 2.8895 -100.047 -2.8895 2.8895 0.77 0.000670008 0.000619604 0.0347456 0.0321985 28 2070 19 6.65987e+06 190170 500653. 1732.36 0.91 0.112285 0.0989989 21970 115934 -1 1832 17 1063 1714 154274 33200 2.60051 2.60051 -103.823 -2.60051 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.023579 0.0206805 106 34 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.05 vpr 54.46 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30260 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.0 MiB 0.11 832 12156 3666 7026 1464 54.8 MiB 0.16 0.00 3.4951 -115.55 -3.4951 3.4951 0.77 0.000670599 0.000621357 0.0489019 0.0452947 32 1923 21 6.65987e+06 240882 554710. 1919.41 0.93 0.128421 0.113789 22834 132086 -1 1735 16 1057 1519 138503 30642 3.21657 3.21657 -118.479 -3.21657 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0226158 0.0199049 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.14 vpr 54.23 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30232 -1 -1 20 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.0 MiB 0.10 590 7820 1903 5456 461 54.5 MiB 0.12 0.00 3.4309 -99.7277 -3.4309 3.4309 0.77 0.000636614 0.000589387 0.0310336 0.0287729 32 1811 24 6.65987e+06 253560 554710. 1919.41 0.98 0.109825 0.0964533 22834 132086 -1 1514 23 1360 2299 192082 46653 2.87211 2.87211 -100.239 -2.87211 0 0 701300. 2426.64 0.21 0.05 0.09 -1 -1 0.21 0.0147696 0.0129924 107 34 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.96 vpr 54.39 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.1 MiB 0.11 686 12008 2561 8162 1285 54.9 MiB 0.12 0.00 3.4859 -118.026 -3.4859 3.4859 0.87 0.000518934 0.000473476 0.0411285 0.0378881 32 2249 37 6.65987e+06 228204 554710. 1919.41 1.14 0.13663 0.11995 22834 132086 -1 1782 21 1414 2159 211771 48532 2.96277 2.96277 -119.084 -2.96277 0 0 701300. 2426.64 0.24 0.08 0.11 -1 -1 0.24 0.027596 0.02419 125 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.05 vpr 54.32 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30292 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.0 MiB 0.08 778 11809 2809 7761 1239 54.5 MiB 0.17 0.00 3.29178 -109.233 -3.29178 3.29178 0.86 0.000682276 0.000630328 0.0387778 0.0358222 26 2303 28 6.65987e+06 393018 477104. 1650.88 1.34 0.122847 0.108282 21682 110474 -1 2003 21 1419 2284 214032 47047 2.77445 2.77445 -112.463 -2.77445 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0278638 0.024363 119 34 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.28 vpr 54.40 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30164 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 16.1 MiB 0.22 717 8047 1725 5786 536 54.9 MiB 0.12 0.00 2.76744 -86.2128 -2.76744 2.76744 0.77 0.000693504 0.000641608 0.0291132 0.0269144 32 1820 27 6.65987e+06 380340 554710. 1919.41 1.01 0.109768 0.0961121 22834 132086 -1 1587 18 946 1565 143475 31436 2.18751 2.18751 -85.4353 -2.18751 0 0 701300. 2426.64 0.30 0.07 0.16 -1 -1 0.30 0.0253019 0.0222179 109 61 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.32 vpr 55.12 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30480 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1246 13117 3185 8526 1406 55.2 MiB 0.25 0.01 4.16036 -141.523 -4.16036 4.16036 0.77 0.000907988 0.000841371 0.0526767 0.0488117 28 3505 33 6.65987e+06 494442 500653. 1732.36 3.41 0.277772 0.242649 21970 115934 -1 2937 20 1876 3284 327080 66990 4.20823 4.20823 -153.954 -4.20823 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0368119 0.0324528 179 29 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.59 vpr 54.95 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30424 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1041 9447 2232 6542 673 54.8 MiB 0.16 0.00 3.5061 -122.514 -3.5061 3.5061 0.76 0.00103717 0.000960645 0.0389837 0.0359952 32 2437 19 6.65987e+06 443730 554710. 1919.41 1.01 0.137729 0.121574 22834 132086 -1 2103 21 1792 2638 234590 49464 2.84877 2.84877 -117.967 -2.84877 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0346325 0.0304268 152 65 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.21 vpr 54.34 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30476 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 16.2 MiB 0.30 709 5599 957 4403 239 55.0 MiB 0.10 0.00 3.18838 -103.883 -3.18838 3.18838 0.78 0.000743299 0.00068847 0.0230723 0.021374 26 2171 27 6.65987e+06 354984 477104. 1650.88 1.50 0.120932 0.105653 21682 110474 -1 1804 23 1187 1881 170156 37941 2.74045 2.74045 -107.323 -2.74045 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0323447 0.0281865 113 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.47 vpr 55.01 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30408 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1062 14541 4862 7202 2477 55.3 MiB 0.23 0.00 3.4921 -118.867 -3.4921 3.4921 0.76 0.00081457 0.000752516 0.0679244 0.0628351 32 2482 20 6.65987e+06 266238 554710. 1919.41 1.02 0.165278 0.147202 22834 132086 -1 2162 17 1550 2542 231433 48092 3.06217 3.06217 -116.284 -3.06217 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0292742 0.0258697 148 64 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.61 vpr 54.75 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30644 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 16.6 MiB 0.32 1075 7953 1851 5455 647 55.5 MiB 0.16 0.00 4.84238 -140.996 -4.84238 4.84238 0.78 0.000903441 0.000836752 0.0429015 0.039776 30 2423 18 6.65987e+06 266238 526063. 1820.29 1.00 0.146571 0.129098 22546 126617 -1 2013 16 894 1488 92373 20895 3.61771 3.61771 -130.591 -3.61771 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.030429 0.0268337 149 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.34 vpr 55.01 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30548 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 16.5 MiB 0.35 977 8868 2457 6032 379 55.3 MiB 0.16 0.00 4.78027 -132.334 -4.78027 4.78027 0.76 0.000845981 0.000782182 0.0440531 0.0407962 30 2244 19 6.65987e+06 266238 526063. 1820.29 0.95 0.14092 0.124525 22546 126617 -1 2005 15 892 1413 106837 23489 3.56377 3.56377 -124.535 -3.56377 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.027102 0.0240117 143 90 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 8.62 vpr 54.60 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30388 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1043 11922 3052 7896 974 54.7 MiB 0.20 0.00 3.40784 -114.93 -3.40784 3.40784 0.77 0.000825684 0.000763601 0.0479516 0.0443389 26 2888 40 6.65987e+06 418374 477104. 1650.88 1.50 0.17078 0.150369 21682 110474 -1 2380 23 1666 2858 270377 56288 2.97205 2.97205 -115.427 -2.97205 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0361351 0.0316765 146 64 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 7.78 vpr 54.62 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30792 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 16.6 MiB 0.12 1091 9903 2241 6952 710 54.9 MiB 0.12 0.00 3.91784 -134.792 -3.91784 3.91784 0.79 0.000846247 0.000783762 0.0240509 0.0221551 30 2598 28 6.65987e+06 443730 526063. 1820.29 1.05 0.132835 0.115992 22546 126617 -1 2286 22 1602 2407 193009 39771 3.47091 3.47091 -134.362 -3.47091 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0359007 0.0315533 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.47 vpr 55.11 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30656 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1177 18648 4595 11838 2215 55.3 MiB 0.35 0.01 4.0593 -137.323 -4.0593 4.0593 0.77 0.000994765 0.000921024 0.0798791 0.0740313 30 2867 24 6.65987e+06 507120 526063. 1820.29 1.08 0.18248 0.162772 22546 126617 -1 2333 20 1710 2780 223452 45932 3.59957 3.59957 -134.82 -3.59957 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0398929 0.0351587 184 96 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.13 vpr 54.26 MiB 0.03 6900 -1 -1 1 0.02 -1 -1 30564 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.0 MiB 0.13 685 11806 2914 7153 1739 54.8 MiB 0.17 0.00 3.55518 -111.493 -3.55518 3.55518 0.77 0.0006819 0.000631347 0.0488323 0.0452944 32 2040 23 6.65987e+06 228204 554710. 1919.41 1.02 0.139206 0.123179 22834 132086 -1 1691 19 1368 2124 202660 44717 3.02691 3.02691 -110.608 -3.02691 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0261145 0.0229284 116 34 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.90 vpr 55.12 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30376 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 16.4 MiB 0.28 976 9675 2155 7053 467 54.8 MiB 0.17 0.01 4.0281 -131.561 -4.0281 4.0281 0.87 0.000825978 0.000764506 0.0362899 0.0335288 28 2622 27 6.65987e+06 456408 500653. 1732.36 1.32 0.14258 0.125333 21970 115934 -1 2361 20 1625 2487 205674 45501 3.75231 3.75231 -142.013 -3.75231 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0329559 0.0290088 150 64 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.55 vpr 54.56 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30600 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 16.6 MiB 0.14 1040 11641 3109 7665 867 55.0 MiB 0.19 0.01 3.62624 -117.445 -3.62624 3.62624 0.82 0.00084761 0.000784605 0.041274 0.0379771 28 2798 22 6.65987e+06 418374 500653. 1732.36 1.08 0.137228 0.120862 21970 115934 -1 2364 20 1534 2676 239893 51271 2.77471 2.77471 -114.222 -2.77471 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0330253 0.0290166 148 63 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 6.65 vpr 54.46 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30424 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 16.4 MiB 0.15 853 8685 1897 5601 1187 54.8 MiB 0.13 0.00 4.14936 -138.467 -4.14936 4.14936 0.76 0.000766503 0.000708641 0.0394672 0.0365996 34 3080 28 6.65987e+06 253560 585099. 2024.56 3.74 0.237109 0.207171 23122 138558 -1 2131 22 1805 3226 268798 62833 3.95497 3.95497 -148.55 -3.95497 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0336336 0.0296015 150 3 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.55 vpr 54.59 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 16.6 MiB 0.31 1097 11798 3144 7589 1065 55.4 MiB 0.21 0.01 3.29555 -116.715 -3.29555 3.29555 0.81 0.000865538 0.000800992 0.0489511 0.0453362 32 2479 25 6.65987e+06 431052 554710. 1919.41 1.03 0.143939 0.12771 22834 132086 -1 2250 18 1335 1882 176662 38406 2.60625 2.60625 -113.541 -2.60625 0 0 701300. 2426.64 0.25 0.07 0.14 -1 -1 0.25 0.028104 0.0250161 145 96 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.61 vpr 54.84 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 16.5 MiB 0.30 1042 7623 1446 5778 399 54.9 MiB 0.15 0.01 3.5841 -121.365 -3.5841 3.5841 0.76 0.00083299 0.000769912 0.030593 0.028337 32 2671 26 6.65987e+06 443730 554710. 1919.41 1.03 0.134823 0.118326 22834 132086 -1 2323 25 1690 2960 280655 59458 3.14937 3.14937 -121.742 -3.14937 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0390737 0.0342447 146 61 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.58 vpr 54.91 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30420 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1118 19136 5296 11671 2169 55.0 MiB 0.30 0.01 3.42984 -118.83 -3.42984 3.42984 0.76 0.000843856 0.000780061 0.0714963 0.0660455 32 2652 17 6.65987e+06 469086 554710. 1919.41 0.99 0.16667 0.148464 22834 132086 -1 2237 20 1603 2448 225438 48631 2.86171 2.86171 -113.456 -2.86171 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0338394 0.0298095 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.17 vpr 54.59 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30568 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 16.6 MiB 0.07 1049 17883 5721 9099 3063 54.9 MiB 0.26 0.00 4.02327 -139.097 -4.02327 4.02327 0.76 0.000808876 0.000747431 0.0662587 0.0613143 32 2667 24 6.65987e+06 443730 554710. 1919.41 1.07 0.165263 0.14697 22834 132086 -1 2293 19 1857 2955 271071 57509 3.49097 3.49097 -134.846 -3.49097 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0308865 0.0272351 150 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.17 vpr 54.93 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30676 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56116 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 16.4 MiB 0.16 1032 17491 4961 10150 2380 54.8 MiB 0.25 0.01 3.95704 -138.916 -3.95704 3.95704 0.77 0.000848829 0.000785349 0.0655595 0.0606317 32 2576 27 6.65987e+06 469086 554710. 1919.41 1.05 0.172894 0.153503 22834 132086 -1 2253 21 1800 2706 290137 59417 3.59411 3.59411 -141.056 -3.59411 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.034503 0.030323 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.64 vpr 55.06 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 16.7 MiB 0.35 1081 15859 4297 9232 2330 54.9 MiB 0.24 0.00 4.24338 -127.817 -4.24338 4.24338 0.77 0.000901929 0.000831013 0.0670892 0.0620538 28 2725 20 6.65987e+06 431052 500653. 1732.36 1.03 0.171862 0.152087 21970 115934 -1 2427 17 1147 2056 161089 35685 3.54025 3.54025 -127.175 -3.54025 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0312196 0.027411 145 122 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.32 vpr 54.82 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30436 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1088 15822 4733 9518 1571 55.0 MiB 0.27 0.00 4.01118 -127.976 -4.01118 4.01118 0.76 0.000892519 0.000826554 0.0800315 0.0741771 32 2709 22 6.65987e+06 253560 554710. 1919.41 1.04 0.186969 0.166763 22834 132086 -1 2407 18 1704 3075 282226 58728 3.17765 3.17765 -126.744 -3.17765 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0324187 0.0285644 149 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.68 vpr 54.10 MiB 0.02 6836 -1 -1 1 0.05 -1 -1 30772 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55940 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 16.1 MiB 0.06 798 8401 2034 5819 548 54.6 MiB 0.13 0.00 3.27158 -111.236 -3.27158 3.27158 0.76 0.000710305 0.00065058 0.029933 0.0277016 30 1974 22 6.65987e+06 380340 526063. 1820.29 1.04 0.11336 0.0995624 22546 126617 -1 1688 20 1011 1648 118753 27103 2.48705 2.48705 -106.136 -2.48705 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0273908 0.0240227 124 34 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.86 vpr 54.70 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.2 MiB 0.28 912 11830 3154 7792 884 55.0 MiB 0.18 0.00 3.41618 -118.934 -3.41618 3.41618 0.77 0.000767405 0.000708687 0.0535485 0.0494736 32 2231 21 6.65987e+06 228204 554710. 1919.41 0.99 0.144507 0.127939 22834 132086 -1 2017 15 1236 1901 166310 36204 2.88191 2.88191 -120.078 -2.88191 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0246397 0.0217504 121 94 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.82 vpr 54.82 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30924 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1362 14988 3862 9734 1392 55.4 MiB 0.26 0.01 4.6627 -159.741 -4.6627 4.6627 0.76 0.00096202 0.000891773 0.062893 0.0582549 32 3225 30 6.65987e+06 507120 554710. 1919.41 1.23 0.192148 0.170108 22834 132086 -1 2787 21 2487 3966 359693 78795 4.24457 4.24457 -166.909 -4.24457 0 0 701300. 2426.64 0.25 0.13 0.14 -1 -1 0.25 0.0410829 0.0362404 187 65 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.40 vpr 54.82 MiB 0.06 6932 -1 -1 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 16.5 MiB 0.21 954 14567 4735 7432 2400 55.2 MiB 0.22 0.00 3.51422 -121.562 -3.51422 3.51422 0.80 0.00080595 0.000745863 0.0576962 0.05344 32 2433 22 6.65987e+06 393018 554710. 1919.41 1.02 0.154773 0.13748 22834 132086 -1 2084 18 1417 2063 192778 42705 2.99617 2.99617 -117.282 -2.99617 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0300102 0.0264945 146 34 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.30 vpr 54.44 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30476 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 16.1 MiB 0.11 839 17066 5534 9253 2279 54.6 MiB 0.21 0.00 3.49012 -114.14 -3.49012 3.49012 0.76 0.000664639 0.000615387 0.0577112 0.053392 32 1821 20 6.65987e+06 380340 554710. 1919.41 0.97 0.142032 0.126155 22834 132086 -1 1677 23 1294 1854 172055 36536 2.87297 2.87297 -107.322 -2.87297 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0303748 0.0265859 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.98 vpr 54.95 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30888 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 17.2 MiB 0.52 1333 18829 5161 11634 2034 55.4 MiB 0.33 0.01 4.64147 -157.361 -4.64147 4.64147 0.85 0.00104219 0.000964939 0.0811531 0.0750284 30 2743 21 6.65987e+06 545154 526063. 1820.29 1.07 0.204342 0.181592 22546 126617 -1 2389 20 1878 2839 183467 40618 4.17837 4.17837 -156.388 -4.17837 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0410487 0.0361555 186 127 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.42 vpr 54.73 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30476 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1044 16340 4500 10034 1806 54.8 MiB 0.23 0.00 4.15932 -143.209 -4.15932 4.15932 0.76 0.000827175 0.000766456 0.0617047 0.057149 28 2455 22 6.65987e+06 456408 500653. 1732.36 1.08 0.159793 0.142308 21970 115934 -1 2154 18 1258 1841 156902 33104 3.65243 3.65243 -141.562 -3.65243 0 0 612192. 2118.31 0.22 0.08 0.13 -1 -1 0.22 0.0300744 0.0265432 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.90 vpr 54.21 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30264 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 16.1 MiB 0.06 722 13703 3609 8489 1605 54.7 MiB 0.19 0.00 3.4859 -117.474 -3.4859 3.4859 0.77 0.000669294 0.000618958 0.0445391 0.0411115 28 2201 23 6.65987e+06 393018 500653. 1732.36 1.04 0.12641 0.111669 21970 115934 -1 1890 20 1278 2034 171991 38841 2.88177 2.88177 -119.579 -2.88177 0 0 612192. 2118.31 0.22 0.08 0.13 -1 -1 0.22 0.0264638 0.0232134 123 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 8.99 vpr 54.95 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30876 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 16.9 MiB 0.18 1337 12702 3419 8223 1060 55.3 MiB 0.23 0.01 4.90437 -166.477 -4.90437 4.90437 0.76 0.000928947 0.000861694 0.0512716 0.047563 30 2867 20 6.65987e+06 519798 526063. 1820.29 1.16 0.160783 0.14233 22546 126617 -1 2471 24 1924 3323 256854 53471 4.65523 4.65523 -168.564 -4.65523 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0432354 0.0379474 188 34 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.12 vpr 54.21 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 16.1 MiB 0.14 852 11260 3935 5447 1878 54.6 MiB 0.15 0.00 3.4749 -119.679 -3.4749 3.4749 0.76 0.000661241 0.000611217 0.0458302 0.0424082 34 2036 27 6.65987e+06 202848 585099. 2024.56 3.10 0.211447 0.184098 23122 138558 -1 1743 17 1227 1977 190054 38913 2.91097 2.91097 -116.247 -2.91097 0 0 742403. 2568.87 0.25 0.07 0.14 -1 -1 0.25 0.023315 0.0206128 121 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.31 vpr 54.41 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55832 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 16.0 MiB 0.21 707 8073 1842 5622 609 54.5 MiB 0.13 0.00 3.47387 -110.471 -3.47387 3.47387 0.76 0.000666549 0.00061708 0.028067 0.0259802 28 2009 20 6.65987e+06 393018 500653. 1732.36 0.93 0.106728 0.0936551 21970 115934 -1 1715 20 1108 1805 143282 32556 2.96317 2.96317 -112.365 -2.96317 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.026413 0.0231319 113 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 7.12 vpr 54.92 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30340 -1 -1 33 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 16.6 MiB 0.29 964 15856 4550 8712 2594 55.2 MiB 0.24 0.01 3.50895 -109.722 -3.50895 3.50895 0.76 0.000799839 0.000739708 0.0626194 0.0579109 30 1959 23 6.65987e+06 418374 526063. 1820.29 0.94 0.160973 0.142937 22546 126617 -1 1698 18 1019 1736 108326 23723 2.53617 2.53617 -99.8099 -2.53617 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0297037 0.0261882 133 88 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.26 vpr 54.71 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 16.6 MiB 0.13 1002 7770 1874 5369 527 55.4 MiB 0.15 0.00 4.0593 -140.547 -4.0593 4.0593 0.77 0.000838104 0.00077471 0.0385531 0.0357066 32 2472 22 6.65987e+06 253560 554710. 1919.41 1.05 0.139962 0.123547 22834 132086 -1 2209 22 2006 3033 336631 67865 3.54837 3.54837 -141.623 -3.54837 0 0 701300. 2426.64 0.24 0.12 0.14 -1 -1 0.24 0.0363204 0.0319161 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.30 vpr 54.68 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30708 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1039 19223 6359 10018 2846 54.9 MiB 0.29 0.00 4.06007 -140.169 -4.06007 4.06007 0.76 0.00084074 0.00077762 0.0747904 0.0691308 28 2641 19 6.65987e+06 431052 500653. 1732.36 1.11 0.172483 0.153698 21970 115934 -1 2295 22 1831 3093 255929 53834 3.62937 3.62937 -141.862 -3.62937 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0361334 0.0317682 152 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.17 vpr 54.35 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30516 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 16.1 MiB 0.23 697 8614 1900 5780 934 54.9 MiB 0.13 0.00 3.41884 -113.998 -3.41884 3.41884 0.77 0.00073645 0.00067969 0.032363 0.0299315 32 1978 20 6.65987e+06 380340 554710. 1919.41 0.98 0.118501 0.104137 22834 132086 -1 1629 20 1269 1999 182521 39420 2.74151 2.74151 -109.761 -2.74151 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0289098 0.0253313 120 65 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.07 vpr 54.57 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30476 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56116 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.1 MiB 0.29 800 12464 4465 5577 2422 54.8 MiB 0.18 0.00 3.46898 -107.312 -3.46898 3.46898 0.76 0.00073254 0.00067718 0.055622 0.0514606 32 2017 19 6.65987e+06 215526 554710. 1919.41 0.95 0.140459 0.124419 22834 132086 -1 1741 18 1095 1921 164371 36942 2.76045 2.76045 -104.764 -2.76045 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0265651 0.0233254 109 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.40 vpr 54.81 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30400 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 16.5 MiB 0.21 996 12623 3384 8308 931 55.2 MiB 0.19 0.00 3.33164 -109.888 -3.33164 3.33164 0.76 0.000793178 0.00073399 0.0495548 0.0458352 26 2568 23 6.65987e+06 418374 477104. 1650.88 1.36 0.148197 0.130851 21682 110474 -1 2150 17 1247 2008 166668 35890 2.93891 2.93891 -111.871 -2.93891 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0279582 0.0246581 137 60 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.44 vpr 54.31 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30428 -1 -1 31 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 16.5 MiB 0.10 995 16207 5283 8775 2149 55.1 MiB 0.23 0.01 4.24344 -123.397 -4.24344 4.24344 1.00 0.00072599 0.000671248 0.0519418 0.0479423 28 2388 23 6.65987e+06 393018 500653. 1732.36 1.02 0.140345 0.124151 21970 115934 -1 2125 22 1515 2477 228152 47948 3.71237 3.71237 -127.875 -3.71237 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0312811 0.0274338 133 34 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.34 vpr 54.46 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30152 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 16.1 MiB 0.30 727 13152 3808 7208 2136 54.9 MiB 0.18 0.00 3.5343 -112.204 -3.5343 3.5343 0.82 0.000698587 0.000646149 0.0554882 0.0513578 30 1866 19 6.65987e+06 228204 526063. 1820.29 0.99 0.136648 0.121309 22546 126617 -1 1601 20 1106 1855 131040 29004 2.94697 2.94697 -109.438 -2.94697 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0277794 0.0243209 114 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.76 vpr 54.49 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 16.2 MiB 0.29 910 8164 2057 5403 704 54.9 MiB 0.13 0.00 3.44398 -109.924 -3.44398 3.44398 0.78 0.000762024 0.00070497 0.0385468 0.0356763 30 1921 18 6.65987e+06 202848 526063. 1820.29 0.91 0.125245 0.110505 22546 126617 -1 1678 17 815 1373 99053 21169 2.53845 2.53845 -101.554 -2.53845 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0267492 0.0235846 113 91 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.16 vpr 54.47 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 16.4 MiB 0.10 1101 12023 3143 7728 1152 55.0 MiB 0.19 0.01 4.17558 -139.576 -4.17558 4.17558 0.76 0.000750703 0.000694264 0.042869 0.0397014 28 2923 47 6.65987e+06 443730 500653. 1732.36 1.53 0.164496 0.144523 21970 115934 -1 2495 20 1520 2473 206001 44726 3.86583 3.86583 -145.716 -3.86583 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0304016 0.0267814 150 4 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.64 vpr 55.07 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30680 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1037 13598 4125 8601 872 55.0 MiB 0.23 0.01 4.1263 -141.609 -4.1263 4.1263 0.76 0.000842262 0.000778831 0.0538938 0.0498521 26 3011 29 6.65987e+06 431052 477104. 1650.88 3.61 0.267868 0.234606 21682 110474 -1 2361 22 1858 3138 268064 58247 3.73137 3.73137 -143.001 -3.73137 0 0 585099. 2024.56 0.21 0.11 0.12 -1 -1 0.21 0.0357555 0.0315459 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.68 vpr 54.84 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1033 10448 2380 7653 415 55.0 MiB 0.18 0.00 4.16458 -142.258 -4.16458 4.16458 0.77 0.000849441 0.000786447 0.042607 0.0393578 26 3740 46 6.65987e+06 431052 477104. 1650.88 7.35 0.287824 0.250919 21682 110474 -1 2655 20 1818 3071 340604 71940 3.61823 3.61823 -144.403 -3.61823 0 0 585099. 2024.56 0.21 0.12 0.11 -1 -1 0.21 0.034226 0.0301609 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.67 vpr 54.87 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30456 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 16.6 MiB 0.24 982 9031 1878 6401 752 55.0 MiB 0.16 0.01 3.86706 -126.941 -3.86706 3.86706 0.77 0.000990668 0.000916676 0.0353395 0.0327287 30 2529 22 6.65987e+06 469086 526063. 1820.29 1.00 0.136524 0.120317 22546 126617 -1 2112 20 1255 2095 142737 32068 3.17551 3.17551 -123.694 -3.17551 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0330949 0.0291516 148 65 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.30 vpr 54.33 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 16.0 MiB 0.19 656 10400 2388 7389 623 54.8 MiB 0.16 0.00 3.50927 -110.79 -3.50927 3.50927 0.77 0.000676569 0.000626671 0.0434297 0.0402907 28 2115 34 6.65987e+06 228204 500653. 1732.36 1.27 0.137594 0.121176 21970 115934 -1 1699 20 1090 1687 166819 38026 2.84877 2.84877 -111.687 -2.84877 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0265946 0.0232964 112 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.45 vpr 54.95 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30388 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 16.5 MiB 0.24 986 11613 3437 7269 907 55.1 MiB 0.20 0.00 4.19776 -134.76 -4.19776 4.19776 0.76 0.000805453 0.000745727 0.0537917 0.0498298 32 2169 21 6.65987e+06 278916 554710. 1919.41 1.01 0.149804 0.132804 22834 132086 -1 1929 20 1723 2647 229690 49792 3.46043 3.46043 -129.094 -3.46043 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0322969 0.0284385 145 63 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.44 vpr 54.95 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 31008 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1052 13117 2855 8842 1420 55.1 MiB 0.19 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000882082 0.00081632 0.0531113 0.0491499 32 2933 28 6.65987e+06 494442 554710. 1919.41 1.18 0.172549 0.151914 22834 132086 -1 2389 19 1826 2904 274360 58479 3.40585 3.40585 -136.959 -3.40585 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0349429 0.0306145 154 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.53 vpr 54.83 MiB 0.03 7172 -1 -1 1 0.03 -1 -1 30420 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1048 9679 2436 6757 486 55.0 MiB 0.19 0.01 3.91106 -131.073 -3.91106 3.91106 0.77 0.00086087 0.0007961 0.0448043 0.0414384 28 2515 23 6.65987e+06 393018 500653. 1732.36 1.12 0.149302 0.131695 21970 115934 -1 2248 20 1612 2620 212351 46751 3.64531 3.64531 -135.301 -3.64531 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0340749 0.0299781 146 94 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.93 vpr 54.98 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30476 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 16.5 MiB 0.36 967 14375 3613 8859 1903 55.1 MiB 0.22 0.00 3.7785 -114.4 -3.7785 3.7785 0.77 0.000818381 0.000757291 0.0603232 0.0558744 30 1999 19 6.65987e+06 380340 526063. 1820.29 0.93 0.15597 0.138495 22546 126617 -1 1714 15 892 1402 93261 20610 2.81476 2.81476 -107.6 -2.81476 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0267312 0.0236768 136 92 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.42 vpr 54.77 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 30516 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1103 13477 4009 7448 2020 55.3 MiB 0.23 0.00 4.11944 -143.283 -4.11944 4.11944 0.81 0.000842267 0.000778884 0.06481 0.0600273 32 2971 22 6.65987e+06 266238 554710. 1919.41 1.09 0.167686 0.149207 22834 132086 -1 2491 17 1823 3150 290494 62408 3.62637 3.62637 -141.729 -3.62637 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0301169 0.0266239 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.99 vpr 54.79 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 30292 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 16.4 MiB 0.18 870 10463 2796 6767 900 55.1 MiB 0.17 0.01 3.39684 -102.663 -3.39684 3.39684 0.81 0.000802182 0.000742214 0.0418746 0.0387578 32 2154 17 6.65987e+06 431052 554710. 1919.41 0.97 0.131269 0.11593 22834 132086 -1 1849 20 1313 2151 174635 39049 2.73771 2.73771 -99.1558 -2.73771 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0319215 0.0280386 134 88 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.04 vpr 54.30 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 30292 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 16.1 MiB 0.12 838 13496 3888 8529 1079 54.8 MiB 0.18 0.00 3.5031 -123.339 -3.5031 3.5031 0.77 0.000674662 0.000624604 0.0550959 0.0510717 32 2193 23 6.65987e+06 202848 554710. 1919.41 1.07 0.13771 0.122415 22834 132086 -1 1944 21 1428 2237 229012 51040 3.04997 3.04997 -124.145 -3.04997 0 0 701300. 2426.64 0.26 0.08 0.16 -1 -1 0.26 0.0232913 0.020668 116 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.46 vpr 54.81 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30372 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 16.6 MiB 0.34 1015 16525 5345 8784 2396 54.9 MiB 0.26 0.00 4.18856 -142.192 -4.18856 4.18856 0.76 0.000845547 0.000781942 0.0660995 0.0611214 32 2631 22 6.65987e+06 418374 554710. 1919.41 1.05 0.167647 0.149009 22834 132086 -1 2153 22 1830 2678 252919 54042 3.66543 3.66543 -140.281 -3.66543 0 0 701300. 2426.64 0.27 0.11 0.14 -1 -1 0.27 0.0354902 0.0314509 150 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.42 vpr 54.92 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30440 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 16.4 MiB 0.20 1026 16081 4881 8736 2464 55.2 MiB 0.26 0.00 4.23393 -146.239 -4.23393 4.23393 0.80 0.000846915 0.000783104 0.0763955 0.0707025 32 2631 21 6.65987e+06 266238 554710. 1919.41 1.04 0.178036 0.158856 22834 132086 -1 2322 23 2202 3301 320840 67850 3.69143 3.69143 -144.808 -3.69143 0 0 701300. 2426.64 0.24 0.14 0.13 -1 -1 0.24 0.0423923 0.0371875 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 6.11 vpr 54.47 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30392 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 16.2 MiB 0.23 688 16683 5557 7719 3407 54.7 MiB 0.21 0.00 3.44878 -105.048 -3.44878 3.44878 0.77 0.000701401 0.000648128 0.0586248 0.0541836 30 2275 37 6.65987e+06 367662 526063. 1820.29 1.46 0.158258 0.139846 22546 126617 -1 1571 19 941 1397 112363 29013 2.79145 2.79145 -100.95 -2.79145 0 0 666494. 2306.21 0.25 0.08 0.13 -1 -1 0.25 0.0328369 0.0288051 111 55 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.11 vpr 54.31 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30384 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.1 MiB 0.11 746 13556 4162 7429 1965 54.7 MiB 0.18 0.00 3.4529 -114.38 -3.4529 3.4529 0.79 0.000651197 0.000602791 0.052976 0.0490701 30 1939 19 6.65987e+06 228204 526063. 1820.29 0.99 0.129027 0.114601 22546 126617 -1 1750 19 1130 1798 133320 29352 2.72277 2.72277 -110.038 -2.72277 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0250718 0.0220179 118 4 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.68 vpr 55.09 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30292 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 16.5 MiB 0.29 900 5133 854 4121 158 55.1 MiB 0.10 0.00 4.0123 -128.007 -4.0123 4.0123 0.76 0.00080273 0.000742469 0.0216677 0.0200973 32 2266 23 6.65987e+06 405696 554710. 1919.41 0.99 0.119449 0.104613 22834 132086 -1 1968 22 1688 2507 231410 49920 3.32117 3.32117 -125.209 -3.32117 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0345937 0.0303436 138 59 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.17 vpr 54.93 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30316 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 879 9892 2434 7009 449 55.3 MiB 0.17 0.01 4.11224 -123.302 -4.11224 4.11224 0.76 0.00083604 0.000773505 0.0419563 0.0388483 28 2827 46 6.65987e+06 380340 500653. 1732.36 1.88 0.17202 0.150879 21970 115934 -1 2192 18 1362 2185 190676 43562 3.70851 3.70851 -130.303 -3.70851 0 0 612192. 2118.31 0.22 0.08 0.12 -1 -1 0.22 0.0306738 0.0270337 134 88 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.50 vpr 55.05 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 16.7 MiB 0.08 1224 16515 4921 9863 1731 54.9 MiB 0.29 0.01 4.82096 -159.28 -4.82096 4.82096 0.77 0.000879365 0.00081517 0.066731 0.0619146 32 3182 23 6.65987e+06 443730 554710. 1919.41 1.56 0.206031 0.182365 22834 132086 -1 2705 22 2244 3489 354569 72789 4.31103 4.31103 -154.247 -4.31103 0 0 701300. 2426.64 0.24 0.12 0.13 -1 -1 0.24 0.0378136 0.0333688 177 3 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.12 vpr 54.46 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30544 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1012 13726 3606 8436 1684 55.1 MiB 0.21 0.00 3.638 -113.448 -3.638 3.638 0.77 0.00078138 0.000723004 0.0540626 0.0500266 32 2213 19 6.65987e+06 405696 554710. 1919.41 0.97 0.145183 0.128821 22834 132086 -1 1948 19 1429 2175 197689 42468 2.83871 2.83871 -109.786 -2.83871 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.029736 0.0261369 136 59 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.90 vpr 54.13 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55740 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 15.8 MiB 0.11 768 12754 4322 6521 1911 54.4 MiB 0.15 0.00 3.3979 -99.6122 -3.3979 3.3979 0.76 0.000620842 0.00057497 0.0487413 0.0451634 32 1584 19 6.65987e+06 253560 554710. 1919.41 0.93 0.120913 0.107239 22834 132086 -1 1440 20 1133 1647 156827 33015 2.65457 2.65457 -95.138 -2.65457 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0245691 0.0214716 107 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 9.95 vpr 54.96 MiB 0.02 7276 -1 -1 1 0.04 -1 -1 30664 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 17.2 MiB 0.21 1366 15232 4128 9656 1448 55.4 MiB 0.27 0.01 4.15924 -136.806 -4.15924 4.15924 0.77 0.000997275 0.000924112 0.0664664 0.0615781 32 3610 25 6.65987e+06 507120 554710. 1919.41 1.17 0.190646 0.168899 22834 132086 -1 3047 22 2356 4186 406844 85604 3.73751 3.73751 -139.024 -3.73751 0 0 701300. 2426.64 0.24 0.14 0.14 -1 -1 0.24 0.0426123 0.0374132 184 95 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.93 vpr 54.94 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30532 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 16.7 MiB 0.32 999 12894 3350 8149 1395 55.5 MiB 0.22 0.00 4.3007 -134.868 -4.3007 4.3007 0.76 0.000902876 0.000836029 0.0673339 0.0623967 32 2630 22 6.65987e+06 266238 554710. 1919.41 1.07 0.176376 0.156458 22834 132086 -1 2278 22 1555 2427 250286 53481 3.72031 3.72031 -140.859 -3.72031 0 0 701300. 2426.64 0.26 0.10 0.14 -1 -1 0.26 0.0388836 0.0340852 144 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.87 vpr 54.52 MiB 0.05 6980 -1 -1 1 0.05 -1 -1 30392 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 16.2 MiB 0.28 739 9540 2469 6056 1015 54.9 MiB 0.15 0.00 3.43298 -108.977 -3.43298 3.43298 0.78 0.000753902 0.000692086 0.0439233 0.0406091 28 1888 18 6.65987e+06 202848 500653. 1732.36 0.92 0.128617 0.113656 21970 115934 -1 1756 19 1002 1591 140618 30906 2.64451 2.64451 -110.271 -2.64451 0 0 612192. 2118.31 0.21 0.07 0.11 -1 -1 0.21 0.0280803 0.0246231 109 89 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.19 vpr 54.53 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 16.5 MiB 0.10 1126 15645 4217 9584 1844 55.2 MiB 0.23 0.00 4.2677 -137.429 -4.2677 4.2677 0.76 0.000795024 0.000727159 0.0592285 0.0547714 28 2550 19 6.65987e+06 405696 500653. 1732.36 1.07 0.149362 0.132888 21970 115934 -1 2250 18 1271 1910 156980 34657 3.73357 3.73357 -135.346 -3.73357 0 0 612192. 2118.31 0.23 0.07 0.12 -1 -1 0.23 0.0244043 0.0217623 146 34 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.71 vpr 55.05 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30640 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1167 13551 3218 9177 1156 55.2 MiB 0.24 0.00 4.22766 -133.836 -4.22766 4.22766 0.76 0.000917198 0.000849887 0.057805 0.0535563 32 2632 20 6.65987e+06 456408 554710. 1919.41 1.08 0.16481 0.146242 22834 132086 -1 2347 22 1837 2768 244945 52657 3.28351 3.28351 -130.387 -3.28351 0 0 701300. 2426.64 0.26 0.10 0.14 -1 -1 0.26 0.0344281 0.0304699 171 64 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.28 vpr 54.64 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30404 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 16.6 MiB 0.13 1070 11111 2802 7426 883 55.2 MiB 0.18 0.00 3.62941 -110.797 -3.62941 3.62941 0.76 0.000784435 0.000725926 0.0430309 0.0398487 24 3147 38 6.65987e+06 418374 448715. 1552.65 2.85 0.193176 0.170123 21394 104001 -1 2426 23 1537 2660 289049 59225 3.24951 3.24951 -116.597 -3.24951 0 0 554710. 1919.41 0.26 0.11 0.12 -1 -1 0.26 0.0349331 0.0306036 134 61 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.53 vpr 55.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30464 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1074 12606 3053 8336 1217 55.0 MiB 0.21 0.01 4.0783 -140.694 -4.0783 4.0783 0.77 0.000860846 0.000796941 0.0461484 0.0427236 30 2409 20 6.65987e+06 532476 526063. 1820.29 1.02 0.145391 0.128601 22546 126617 -1 2059 19 1203 1899 136797 29545 3.46931 3.46931 -130.617 -3.46931 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0323205 0.0284799 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.27 vpr 55.20 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30396 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 16.6 MiB 0.18 985 6766 1235 5165 366 55.1 MiB 0.13 0.01 3.41884 -116.445 -3.41884 3.41884 0.71 0.000844569 0.000781891 0.0269979 0.0250045 28 2678 22 6.65987e+06 481764 500653. 1732.36 0.98 0.128051 0.112341 21970 115934 -1 2260 23 1588 2470 242632 50996 2.77665 2.77665 -114.749 -2.77665 0 0 612192. 2118.31 0.21 0.10 0.08 -1 -1 0.21 0.0372961 0.0327058 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.22 vpr 54.23 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 16.1 MiB 0.12 502 12791 3342 7797 1652 54.4 MiB 0.12 0.00 3.7595 -104.343 -3.7595 3.7595 0.77 0.000643467 0.000595201 0.0529459 0.0490382 32 1602 21 6.65987e+06 202848 554710. 1919.41 0.91 0.130017 0.115266 22834 132086 -1 1396 20 1021 1404 146824 34296 2.80171 2.80171 -101.049 -2.80171 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0260037 0.0228015 93 34 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.38 vpr 54.59 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30276 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 16.2 MiB 0.28 872 14431 4553 8297 1581 54.8 MiB 0.18 0.00 3.69338 -109.525 -3.69338 3.69338 0.82 0.00071212 0.000657944 0.0615208 0.0569042 32 2019 20 6.65987e+06 215526 554710. 1919.41 0.98 0.145037 0.128802 22834 132086 -1 1862 18 991 1408 148682 31095 2.76571 2.76571 -107.677 -2.76571 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0257809 0.0226013 111 82 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.37 vpr 54.86 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30448 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 16.4 MiB 0.14 973 15876 4279 9893 1704 55.1 MiB 0.25 0.01 4.55701 -136.44 -4.55701 4.55701 0.76 0.000787824 0.000729166 0.0567649 0.0525821 32 2568 44 6.65987e+06 469086 554710. 1919.41 1.26 0.178161 0.157394 22834 132086 -1 2084 22 1478 2518 248377 50586 3.91571 3.91571 -132.225 -3.91571 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0340977 0.0299808 150 34 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.54 vpr 54.45 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.0 MiB 0.28 621 11063 2736 7707 620 54.6 MiB 0.14 0.00 3.58224 -95.8028 -3.58224 3.58224 0.76 0.000654086 0.000604726 0.0372476 0.0344161 26 1925 24 6.65987e+06 393018 477104. 1650.88 1.27 0.118535 0.104129 21682 110474 -1 1605 20 1012 1616 137045 31793 2.98985 2.98985 -98.312 -2.98985 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0256434 0.0223746 108 56 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.31 vpr 54.39 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 16.3 MiB 0.20 823 7992 1920 5681 391 55.0 MiB 0.14 0.00 3.5141 -118.56 -3.5141 3.5141 0.76 0.000699233 0.000646705 0.0351819 0.0325856 32 2083 27 6.65987e+06 202848 554710. 1919.41 1.46 0.147952 0.129547 22834 132086 -1 1806 19 1360 2254 222304 48015 3.11917 3.11917 -123.177 -3.11917 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0266683 0.0234206 119 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.42 vpr 54.99 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30340 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1001 11955 3102 7859 994 55.3 MiB 0.19 0.00 3.4951 -117.77 -3.4951 3.4951 0.77 0.000809978 0.000748847 0.04559 0.0421185 26 2312 18 6.65987e+06 456408 477104. 1650.88 1.03 0.138317 0.12234 21682 110474 -1 1995 18 1446 2078 185420 38738 2.98297 2.98297 -119.053 -2.98297 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0300798 0.0265325 142 64 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.12 vpr 54.47 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30284 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 16.0 MiB 0.29 876 12923 4161 7145 1617 54.8 MiB 0.17 0.00 3.11304 -101.32 -3.11304 3.11304 0.83 0.000678418 0.000627346 0.0542161 0.0501768 32 1888 19 6.65987e+06 202848 554710. 1919.41 0.93 0.134465 0.119454 22834 132086 -1 1829 19 956 1616 173715 37361 2.70845 2.70845 -106.172 -2.70845 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.026097 0.0229017 105 55 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 6.43 vpr 54.73 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30392 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 16.5 MiB 0.24 929 17616 5738 7949 3929 55.1 MiB 0.19 0.00 3.3979 -111.1 -3.3979 3.3979 0.78 0.000806564 0.000745674 0.0650783 0.0601441 36 2132 20 6.65987e+06 405696 612192. 2118.31 3.90 0.279444 0.24445 23410 145293 -1 1820 21 1232 2115 198429 43101 2.85597 2.85597 -105.882 -2.85597 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0331933 0.0291835 136 65 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.75 vpr 54.77 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 16.6 MiB 0.58 965 17427 4981 9867 2579 55.0 MiB 0.24 0.00 3.7445 -120.758 -3.7445 3.7445 0.83 0.000860743 0.00079528 0.0663327 0.0611722 28 2264 21 6.65987e+06 456408 500653. 1732.36 0.99 0.16861 0.149694 21970 115934 -1 2095 20 1531 2264 183821 40043 3.04917 3.04917 -115.617 -3.04917 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0338324 0.0297058 148 93 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.01 vpr 54.32 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30372 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.3 MiB 0.17 861 11652 3522 6006 2124 55.1 MiB 0.16 0.00 2.81844 -100.349 -2.81844 2.81844 0.76 0.000717269 0.000663594 0.0495619 0.0459059 32 2039 34 6.65987e+06 228204 554710. 1919.41 1.09 0.135319 0.119771 22834 132086 -1 1662 23 1329 2133 187650 39217 2.42305 2.42305 -99.4307 -2.42305 0 0 701300. 2426.64 0.28 0.08 0.15 -1 -1 0.28 0.0291775 0.025761 115 61 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.09 vpr 54.48 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56116 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.0 MiB 0.27 667 7380 1595 4913 872 54.8 MiB 0.11 0.00 3.38184 -112.707 -3.38184 3.38184 0.77 0.000729977 0.000674717 0.0328674 0.0304572 32 2464 28 6.65987e+06 228204 554710. 1919.41 1.14 0.130012 0.114248 22834 132086 -1 1741 22 1350 2115 187103 44671 3.01011 3.01011 -117.709 -3.01011 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.030902 0.0270511 121 63 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.53 vpr 54.72 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30824 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 16.6 MiB 0.16 1042 12164 2979 8000 1185 55.0 MiB 0.19 0.01 4.02524 -139.262 -4.02524 4.02524 0.74 0.00084726 0.000784021 0.0475109 0.0439034 28 2563 32 6.65987e+06 456408 500653. 1732.36 1.19 0.161894 0.142514 21970 115934 -1 2244 20 1750 2701 248121 52117 3.40285 3.40285 -135.733 -3.40285 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0331042 0.0291251 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.30 vpr 54.55 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30684 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 16.5 MiB 0.22 968 17313 5602 9212 2499 55.1 MiB 0.23 0.00 3.57304 -105.57 -3.57304 3.57304 0.76 0.000769839 0.000712722 0.0665532 0.0615549 32 2229 19 6.65987e+06 405696 554710. 1919.41 0.95 0.156849 0.139553 22834 132086 -1 1913 22 1143 1743 142780 32670 2.73871 2.73871 -102.232 -2.73871 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.033196 0.029096 133 62 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.48 vpr 54.83 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30652 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1004 11616 2968 7911 737 55.1 MiB 0.20 0.01 3.97241 -135.454 -3.97241 3.97241 0.76 0.000935268 0.000866129 0.0504567 0.0466273 32 2691 23 6.65987e+06 469086 554710. 1919.41 1.04 0.163981 0.144421 22834 132086 -1 2286 22 1896 2820 295208 64735 3.63451 3.63451 -137.029 -3.63451 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0397804 0.0348163 156 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.83 vpr 54.23 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55760 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 15.8 MiB 0.11 715 5825 1215 4401 209 54.5 MiB 0.10 0.00 2.9397 -97.4988 -2.9397 2.9397 0.76 0.000628562 0.000581682 0.0236326 0.021917 30 1684 17 6.65987e+06 202848 526063. 1820.29 0.89 0.0945272 0.0829887 22546 126617 -1 1472 18 757 1190 80967 18432 2.50231 2.50231 -98.588 -2.50231 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0230617 0.0202375 105 4 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.09 vpr 54.95 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30540 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 16.6 MiB 0.17 948 20077 6167 11074 2836 55.4 MiB 0.29 0.01 4.10497 -133.778 -4.10497 4.10497 0.76 0.000859662 0.000794158 0.080654 0.0744425 32 2310 32 6.65987e+06 418374 554710. 1919.41 1.03 0.195559 0.173727 22834 132086 -1 1969 16 1351 1903 173063 37037 3.55637 3.55637 -127.321 -3.55637 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0287897 0.0254615 142 92 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.36 vpr 54.73 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30136 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.3 MiB 0.24 805 9196 3450 4876 870 55.1 MiB 0.13 0.00 3.54047 -120.422 -3.54047 3.54047 0.77 0.000774057 0.00071458 0.0441892 0.0408954 28 2201 43 6.65987e+06 202848 500653. 1732.36 4.01 0.253818 0.220807 21970 115934 -1 1876 44 2156 3383 693172 297996 2.94397 2.94397 -123.053 -2.94397 0 0 612192. 2118.31 0.21 0.24 0.12 -1 -1 0.21 0.0584413 0.0507264 115 96 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.53 vpr 54.72 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30408 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1002 18111 5520 9663 2928 55.4 MiB 0.25 0.00 3.45184 -118.995 -3.45184 3.45184 0.76 0.000835878 0.00077225 0.0695052 0.0642849 32 2563 26 6.65987e+06 443730 554710. 1919.41 1.03 0.175473 0.15599 22834 132086 -1 2088 24 1519 2118 208856 45008 2.92871 2.92871 -117.128 -2.92871 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0382327 0.033516 149 65 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.92 vpr 54.77 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30880 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 17.1 MiB 0.33 1201 15034 3694 9653 1687 55.3 MiB 0.25 0.01 4.6905 -158.567 -4.6905 4.6905 0.76 0.000998129 0.000923938 0.0629881 0.0583646 26 3502 33 6.65987e+06 545154 477104. 1650.88 2.62 0.204839 0.18111 21682 110474 -1 2811 23 2383 3621 349223 71029 4.63217 4.63217 -167.928 -4.63217 0 0 585099. 2024.56 0.20 0.13 0.12 -1 -1 0.20 0.0447635 0.0393034 186 96 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.14 vpr 54.16 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55512 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 15.8 MiB 0.20 532 10509 2640 7460 409 54.2 MiB 0.12 0.00 2.61752 -80.0454 -2.61752 2.61752 0.78 0.000569159 0.000526032 0.038925 0.0358606 26 1532 42 6.65987e+06 190170 477104. 1650.88 1.23 0.119188 0.104488 21682 110474 -1 1188 15 697 950 87496 20815 2.05925 2.05925 -81.5015 -2.05925 0 0 585099. 2024.56 0.20 0.05 0.14 -1 -1 0.20 0.0182325 0.0159683 83 56 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.21 vpr 54.44 MiB 0.05 6788 -1 -1 1 0.03 -1 -1 30400 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 16.1 MiB 0.10 758 10536 3415 5493 1628 54.5 MiB 0.13 0.00 3.52904 -110.224 -3.52904 3.52904 0.80 0.000668665 0.000618672 0.0442301 0.0409366 32 1681 18 6.65987e+06 202848 554710. 1919.41 0.98 0.115796 0.102629 22834 132086 -1 1583 17 897 1300 118929 26433 2.68977 2.68977 -104.515 -2.68977 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0236285 0.0207731 96 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.35 vpr 54.55 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30148 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.0 MiB 0.11 856 9872 2316 7018 538 54.8 MiB 0.16 0.00 3.4859 -122.574 -3.4859 3.4859 0.82 0.000706384 0.000653441 0.0426343 0.0395706 32 2466 22 6.65987e+06 228204 554710. 1919.41 1.03 0.115336 0.102429 22834 132086 -1 2087 20 1573 2800 258134 57097 2.91997 2.91997 -119.238 -2.91997 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0281489 0.0247267 126 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.09 vpr 54.15 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 15.7 MiB 0.07 696 13351 3608 8032 1711 54.4 MiB 0.14 0.00 3.32684 -88.9535 -3.32684 3.32684 0.76 0.000582229 0.000539502 0.0397252 0.0368373 26 1661 22 6.65987e+06 431052 477104. 1650.88 0.86 0.10897 0.0960997 21682 110474 -1 1506 23 1091 1601 139032 30494 2.73151 2.73151 -89.3817 -2.73151 0 0 585099. 2024.56 0.22 0.07 0.12 -1 -1 0.22 0.0231172 0.0201303 103 34 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.49 vpr 54.82 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 16.6 MiB 0.22 877 14541 4608 7775 2158 55.0 MiB 0.25 0.00 4.02035 -125.217 -4.02035 4.02035 0.77 0.000869501 0.000803358 0.0723033 0.0668669 32 2904 24 6.65987e+06 253560 554710. 1919.41 1.10 0.180152 0.159955 22834 132086 -1 2316 21 1799 3238 301370 67088 3.43985 3.43985 -128.883 -3.43985 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0366202 0.0321906 147 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.31 vpr 55.11 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30404 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 16.6 MiB 0.20 938 18660 5414 10450 2796 55.1 MiB 0.27 0.01 3.4903 -116.326 -3.4903 3.4903 0.76 0.000861072 0.000797133 0.0728166 0.0673928 32 2458 24 6.65987e+06 469086 554710. 1919.41 1.04 0.178292 0.158613 22834 132086 -1 2141 19 1808 2807 273054 57967 2.90897 2.90897 -115.947 -2.90897 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0322415 0.0283699 146 94 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.66 vpr 55.53 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30848 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 17.4 MiB 0.91 758 13949 4789 6835 2325 55.9 MiB 0.17 0.00 3.74419 -135.496 -3.74419 3.74419 0.79 0.000879448 0.00081364 0.0652562 0.060377 52 2457 36 6.95648e+06 361892 926341. 3205.33 13.57 0.439681 0.382881 29218 227130 -1 1878 22 1835 2866 289802 65113 4.23556 4.23556 -151.128 -4.23556 0 0 1.14541e+06 3963.36 0.35 0.11 0.22 -1 -1 0.35 0.0382868 0.0336505 84 96 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 7.46 vpr 55.58 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30740 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 17.0 MiB 2.12 807 12716 4975 6082 1659 55.8 MiB 0.15 0.00 3.9478 -130.518 -3.9478 3.9478 0.78 0.000829365 0.000766521 0.0685993 0.0635233 54 2146 30 6.95648e+06 202660 949917. 3286.91 5.13 0.330163 0.287897 29506 232905 -1 1685 18 1400 2098 213485 43634 3.62622 3.62622 -131.351 -3.62622 0 0 1.17392e+06 4061.99 0.35 0.08 0.23 -1 -1 0.35 0.0304506 0.0268317 76 91 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.29 vpr 55.34 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 17.2 MiB 0.75 1022 7103 1835 4569 699 55.9 MiB 0.10 0.00 3.60914 -132.635 -3.60914 3.60914 0.78 0.000804371 0.000744036 0.0346138 0.0320878 46 2554 25 6.95648e+06 275038 828058. 2865.25 4.62 0.258806 0.224651 28066 200906 -1 2223 18 1334 2004 216147 39714 3.53062 3.53062 -136.461 -3.53062 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.029555 0.0260507 77 65 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 6.37 vpr 55.21 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30608 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 17.0 MiB 0.39 752 10672 3799 5216 1657 55.5 MiB 0.14 0.00 4.001 -128.21 -4.001 4.001 0.78 0.00074545 0.000690194 0.0513903 0.047659 42 2751 33 6.95648e+06 231611 744469. 2576.02 2.07 0.18108 0.159531 27202 183097 -1 1913 20 1599 2343 292763 66703 4.24976 4.24976 -148.061 -4.24976 0 0 949917. 3286.91 0.29 0.11 0.18 -1 -1 0.29 0.0300134 0.0264233 75 34 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 9.23 vpr 55.51 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30292 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 17.1 MiB 0.69 716 9857 3295 4764 1798 55.6 MiB 0.13 0.00 3.66789 -133.791 -3.66789 3.66789 0.78 0.000804999 0.000744572 0.0517762 0.0479841 56 2114 50 6.95648e+06 188184 973134. 3367.25 3.88 0.253734 0.222666 29794 239141 -1 1733 20 1828 3085 304377 68520 4.18056 4.18056 -146.075 -4.18056 0 0 1.19926e+06 4149.71 0.36 0.11 0.23 -1 -1 0.36 0.0333783 0.0295361 78 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 7.38 vpr 55.53 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30564 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 17.1 MiB 0.41 727 15003 5272 7155 2576 56.0 MiB 0.16 0.00 3.0985 -114.166 -3.0985 3.0985 0.78 0.00083266 0.000767763 0.0625094 0.0577294 46 2388 31 6.95648e+06 419795 828058. 2865.25 3.38 0.234167 0.205812 28066 200906 -1 1787 43 2005 2784 730841 315091 3.18097 3.18097 -124.788 -3.18097 0 0 1.01997e+06 3529.29 0.31 0.26 0.19 -1 -1 0.31 0.0620908 0.0538349 89 64 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.02 vpr 55.04 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30672 -1 -1 14 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 16.7 MiB 3.30 451 8433 2993 4087 1353 55.2 MiB 0.09 0.00 3.26916 -93.4177 -3.26916 3.26916 0.79 0.000630894 0.000584646 0.0364314 0.0337851 40 1248 26 6.95648e+06 202660 706193. 2443.58 2.39 0.163537 0.142455 26914 176310 -1 1055 17 815 1236 107720 25139 2.78643 2.78643 -95.6809 -2.78643 0 0 926341. 3205.33 0.33 0.06 0.19 -1 -1 0.33 0.0220427 0.0194572 54 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.37 vpr 55.25 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30220 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 16.9 MiB 0.49 722 11088 4563 6076 449 55.4 MiB 0.13 0.00 3.0394 -105.493 -3.0394 3.0394 0.79 0.000717769 0.000663917 0.0490113 0.0454021 46 2473 31 6.95648e+06 246087 828058. 2865.25 3.24 0.20593 0.180425 28066 200906 -1 1759 19 1291 1754 163088 35932 2.94752 2.94752 -110.795 -2.94752 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0280957 0.0247537 77 4 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 17.27 vpr 55.08 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30184 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 16.8 MiB 1.61 523 9994 2759 5612 1623 55.5 MiB 0.12 0.00 3.10275 -98.727 -3.10275 3.10275 0.78 0.000714373 0.000660532 0.048677 0.0450769 40 1614 29 6.95648e+06 159232 706193. 2443.58 2.71 0.195844 0.170918 26914 176310 -1 1450 29 1228 1885 240647 64693 3.13827 3.13827 -112.589 -3.13827 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0376852 0.0327358 57 85 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.18 vpr 55.22 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30476 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 16.7 MiB 1.08 638 10614 4216 4843 1555 55.4 MiB 0.13 0.00 2.95005 -114.898 -2.95005 2.95005 0.83 0.000698532 0.000645321 0.0508729 0.0471038 40 1918 25 6.95648e+06 144757 706193. 2443.58 4.16 0.256898 0.223531 26914 176310 -1 1793 21 1498 2160 300910 58021 3.27212 3.27212 -130.848 -3.27212 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0288681 0.0253049 62 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 9.46 vpr 55.17 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30212 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 16.8 MiB 1.59 651 11079 4648 6085 346 55.5 MiB 0.12 0.00 3.1095 -111.937 -3.1095 3.1095 0.89 0.000731833 0.000678551 0.0458161 0.0422303 36 1920 47 6.95648e+06 173708 648988. 2245.63 1.91 0.181509 0.158821 26050 158493 -1 1519 21 1342 1799 170434 34496 3.10587 3.10587 -117.5 -3.10587 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0286357 0.0250371 60 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 8.44 vpr 55.11 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30504 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 16.8 MiB 0.88 540 10476 4331 5741 404 55.8 MiB 0.12 0.00 2.9793 -106.716 -2.9793 2.9793 0.78 0.000716077 0.000662371 0.0491184 0.0454657 46 1966 30 6.95648e+06 173708 828058. 2865.25 10.92 0.365606 0.316915 28066 200906 -1 1411 31 1273 1825 235189 82151 3.08097 3.08097 -112.726 -3.08097 0 0 1.01997e+06 3529.29 0.31 0.11 0.23 -1 -1 0.31 0.0401137 0.034773 60 65 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.64 vpr 55.60 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 17.1 MiB 1.42 751 11803 3277 6504 2022 55.9 MiB 0.16 0.00 3.1024 -116.565 -3.1024 3.1024 0.79 0.000809537 0.000748503 0.0550267 0.0509847 46 2313 25 6.95648e+06 303989 828058. 2865.25 5.34 0.303346 0.264455 28066 200906 -1 1852 21 1546 2289 235897 48439 3.58207 3.58207 -132.449 -3.58207 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0334417 0.0294807 79 58 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.17 vpr 55.49 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30476 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 17.1 MiB 1.13 832 16371 6652 7990 1729 56.0 MiB 0.21 0.01 3.72719 -138.885 -3.72719 3.72719 0.78 0.000846594 0.000782668 0.0720933 0.0667308 42 2820 47 6.95648e+06 376368 744469. 2576.02 2.49 0.233839 0.206011 27202 183097 -1 2095 21 1984 2782 328071 63869 4.18856 4.18856 -154.486 -4.18856 0 0 949917. 3286.91 0.29 0.11 0.18 -1 -1 0.29 0.034956 0.0307289 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 8.83 vpr 54.96 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30548 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 16.7 MiB 1.08 465 11234 4544 5569 1121 55.2 MiB 0.11 0.00 3.14676 -95.8879 -3.14676 3.14676 0.78 0.000627064 0.000580039 0.0478761 0.0443766 44 1739 43 6.95648e+06 188184 787024. 2723.27 2.20 0.168788 0.147767 27778 195446 -1 1206 29 1148 1697 153051 34541 2.93173 2.93173 -98.2896 -2.93173 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0333495 0.0289398 58 29 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 17.00 vpr 55.30 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 17.1 MiB 1.74 807 11813 5009 6533 271 56.0 MiB 0.16 0.00 3.1505 -120.688 -3.1505 3.1505 0.78 0.000835468 0.000772396 0.064793 0.0599203 46 2485 26 6.95648e+06 188184 828058. 2865.25 2.55 0.239354 0.210327 28066 200906 -1 1926 23 1996 3149 309800 63389 3.39082 3.39082 -129.414 -3.39082 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0372594 0.0326794 77 63 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.26 vpr 55.36 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30392 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 17.1 MiB 1.51 707 11064 3419 5711 1934 55.9 MiB 0.14 0.00 3.0804 -113.837 -3.0804 3.0804 0.78 0.000810455 0.000747687 0.0519641 0.0481114 48 2255 41 6.95648e+06 289514 865456. 2994.66 5.08 0.346272 0.300676 28354 207349 -1 1654 18 1439 1842 226755 48463 3.07472 3.07472 -125.527 -3.07472 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.0299312 0.0263848 78 57 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.31 vpr 55.42 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30196 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 17.0 MiB 0.91 574 10698 2981 5511 2206 55.7 MiB 0.11 0.00 2.43656 -93.1005 -2.43656 2.43656 0.78 0.000735288 0.000680052 0.0451506 0.0418014 46 1623 29 6.95648e+06 289514 828058. 2865.25 2.06 0.168736 0.147917 28066 200906 -1 1217 17 1052 1392 126295 29013 2.49933 2.49933 -95.2478 -2.49933 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0254667 0.022399 67 65 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.31 vpr 54.63 MiB 0.03 6708 -1 -1 1 0.03 -1 -1 30256 -1 -1 10 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 16.3 MiB 0.34 450 11098 4789 5936 373 54.8 MiB 0.10 0.00 2.21746 -80.6728 -2.21746 2.21746 0.79 0.000544412 0.000503064 0.0424541 0.0392929 36 1473 48 6.95648e+06 144757 648988. 2245.63 2.02 0.171064 0.148638 26050 158493 -1 1202 19 727 933 107651 22631 2.32998 2.32998 -89.8135 -2.32998 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0206981 0.0180566 45 34 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.80 vpr 55.27 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30424 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 1.05 525 9374 3845 5090 439 55.6 MiB 0.11 0.00 3.8254 -127.041 -3.8254 3.8254 0.79 0.000723012 0.000669471 0.0464698 0.0430685 46 1833 38 6.95648e+06 159232 828058. 2865.25 3.17 0.207158 0.18114 28066 200906 -1 1250 30 1144 1529 130641 31620 3.60442 3.60442 -125.091 -3.60442 0 0 1.01997e+06 3529.29 0.36 0.09 0.20 -1 -1 0.36 0.0391737 0.0340232 61 64 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.04 vpr 55.43 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 17.2 MiB 0.43 664 13663 4054 7770 1839 56.1 MiB 0.18 0.00 3.70954 -128.174 -3.70954 3.70954 0.79 0.000790126 0.000730736 0.061004 0.0565006 48 1965 25 6.95648e+06 303989 865456. 2994.66 5.16 0.308947 0.269631 28354 207349 -1 1551 23 1679 2175 235771 49979 3.82996 3.82996 -136.933 -3.82996 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0353726 0.0310635 81 34 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 8.74 vpr 55.64 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30560 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 17.4 MiB 1.25 791 14779 5223 7361 2195 56.1 MiB 0.19 0.00 3.66119 -126.81 -3.66119 3.66119 0.79 0.000925234 0.000856733 0.0699977 0.0648466 46 2549 27 6.95648e+06 390843 828058. 2865.25 2.40 0.238342 0.209341 28066 200906 -1 1937 22 1549 2356 225982 45477 3.72986 3.72986 -137.795 -3.72986 0 0 1.01997e+06 3529.29 0.32 0.10 0.21 -1 -1 0.32 0.0383009 0.0335549 85 124 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 7.27 vpr 54.59 MiB 0.04 6768 -1 -1 1 0.02 -1 -1 30664 -1 -1 13 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 16.2 MiB 0.90 348 7809 2770 3912 1127 54.8 MiB 0.06 0.00 2.19726 -66.8557 -2.19726 2.19726 0.78 0.000473413 0.000436993 0.0271058 0.0250799 48 746 30 6.95648e+06 188184 865456. 2994.66 4.29 0.173368 0.149519 28354 207349 -1 684 18 545 674 46181 13138 1.96323 1.96323 -65.8759 -1.96323 0 0 1.05005e+06 3633.38 0.38 0.05 0.20 -1 -1 0.38 0.0241773 0.021461 44 30 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.16 vpr 55.31 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 30128 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 17.0 MiB 0.80 737 10316 4241 5568 507 55.8 MiB 0.12 0.00 4.02534 -135.509 -4.02534 4.02534 0.79 0.000749416 0.00069316 0.0508599 0.0471246 52 2457 45 6.95648e+06 173708 926341. 3205.33 2.57 0.210813 0.184841 29218 227130 -1 1700 19 1599 2459 222342 50311 4.00711 4.00711 -137.495 -4.00711 0 0 1.14541e+06 3963.36 0.35 0.09 0.22 -1 -1 0.35 0.0292887 0.0258482 74 3 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.21 vpr 54.64 MiB 0.03 6604 -1 -1 1 0.03 -1 -1 30440 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.4 MiB 0.29 731 9906 3689 5081 1136 54.9 MiB 0.09 0.00 2.15326 -87.6492 -2.15326 2.15326 0.78 0.000504382 0.000464453 0.0353336 0.0326087 36 1684 36 6.95648e+06 115805 648988. 2245.63 3.70 0.184454 0.160075 26050 158493 -1 1509 16 702 877 118293 22547 2.14968 2.14968 -92.7895 -2.14968 0 0 828058. 2865.25 0.26 0.05 0.16 -1 -1 0.26 0.0171745 0.0151304 44 3 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 8.97 vpr 55.31 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30468 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 17.1 MiB 0.59 827 16371 5667 8716 1988 56.0 MiB 0.21 0.00 3.67409 -135.23 -3.67409 3.67409 0.79 0.000804702 0.000743812 0.0691674 0.0638722 44 2408 31 6.95648e+06 376368 787024. 2723.27 5.21 0.360239 0.313935 27778 195446 -1 1982 22 1941 2992 332384 62167 3.93606 3.93606 -144.694 -3.93606 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0345315 0.030342 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 8.60 vpr 55.28 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30148 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 16.9 MiB 0.31 985 13754 4254 7657 1843 55.5 MiB 0.16 0.00 3.0955 -119.852 -3.0955 3.0955 0.94 0.000547522 0.000498134 0.0429361 0.0394104 36 2737 45 6.95648e+06 405319 648988. 2245.63 5.43 0.230159 0.200477 26050 158493 -1 2323 25 1731 2431 347279 83720 3.08387 3.08387 -128.967 -3.08387 0 0 828058. 2865.25 0.26 0.13 0.16 -1 -1 0.26 0.0363953 0.0318901 87 3 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.04 vpr 55.46 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30612 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 17.0 MiB 0.43 789 18308 6099 10070 2139 56.0 MiB 0.23 0.00 3.69663 -134.61 -3.69663 3.69663 0.78 0.000841402 0.00077795 0.0774414 0.0714927 46 2618 24 6.95648e+06 405319 828058. 2865.25 3.08 0.247806 0.218563 28066 200906 -1 1966 23 1947 3005 306179 61070 3.95996 3.95996 -145.033 -3.95996 0 0 1.01997e+06 3529.29 0.32 0.12 0.20 -1 -1 0.32 0.0373764 0.0328109 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.86 vpr 55.09 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 16.8 MiB 0.78 541 9374 3087 4731 1556 55.3 MiB 0.11 0.00 2.8982 -102.358 -2.8982 2.8982 0.78 0.000667416 0.000617662 0.0429239 0.0397679 38 2088 42 6.95648e+06 144757 678818. 2348.85 3.75 0.197789 0.172737 26626 170182 -1 1425 22 1051 1619 152967 32332 3.00582 3.00582 -112.509 -3.00582 0 0 902133. 3121.57 0.28 0.07 0.16 -1 -1 0.28 0.0290014 0.0254039 57 34 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 4.97 vpr 54.96 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30308 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 16.7 MiB 0.58 571 8444 3466 4635 343 55.3 MiB 0.10 0.00 3.1175 -112.058 -3.1175 3.1175 0.78 0.000669675 0.000619646 0.0389261 0.0360743 40 1898 35 6.95648e+06 173708 706193. 2443.58 2.06 0.183491 0.159634 26914 176310 -1 1445 18 1278 1711 150217 33604 3.28932 3.28932 -123.575 -3.28932 0 0 926341. 3205.33 0.28 0.07 0.17 -1 -1 0.28 0.0245038 0.0214527 60 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.95 vpr 55.06 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 16.6 MiB 0.56 505 10257 3681 4972 1604 55.2 MiB 0.11 0.00 3.0435 -97.9378 -3.0435 3.0435 0.79 0.000630539 0.000583813 0.0448366 0.0415637 44 1765 29 6.95648e+06 188184 787024. 2723.27 2.45 0.178365 0.155472 27778 195446 -1 1214 20 1014 1525 141974 32038 2.94567 2.94567 -99.8648 -2.94567 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0253989 0.0222133 61 34 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 6.73 vpr 55.05 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.6 MiB 0.26 703 9374 3895 5319 160 55.3 MiB 0.11 0.00 2.93285 -116.414 -2.93285 2.93285 0.79 0.000665841 0.000615857 0.0426467 0.0395299 44 2059 34 6.95648e+06 144757 787024. 2723.27 2.40 0.187276 0.16368 27778 195446 -1 1704 19 1486 2122 212756 41558 3.10432 3.10432 -121.981 -3.10432 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0257325 0.0225987 64 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.44 vpr 55.04 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30276 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 17.0 MiB 0.26 623 13443 5605 7395 443 55.6 MiB 0.15 0.00 3.0955 -111.973 -3.0955 3.0955 0.79 0.000680206 0.000628393 0.052822 0.0489018 44 1935 49 6.95648e+06 303989 787024. 2723.27 2.78 0.21504 0.187742 27778 195446 -1 1543 21 1300 1986 180924 37774 3.16997 3.16997 -116.06 -3.16997 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0278644 0.0243735 68 34 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 8.82 vpr 55.21 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 16.6 MiB 0.81 508 10219 3550 4648 2021 55.4 MiB 0.10 0.00 2.43392 -85.0275 -2.43392 2.43392 0.79 0.00067651 0.000625801 0.0435392 0.0403303 46 1410 33 6.95648e+06 260562 828058. 2865.25 2.35 0.188856 0.16503 28066 200906 -1 1201 18 1109 1487 126196 30995 2.56343 2.56343 -89.4464 -2.56343 0 0 1.01997e+06 3529.29 0.30 0.07 0.20 -1 -1 0.30 0.0248665 0.0218134 64 61 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.59 vpr 55.59 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30452 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 17.5 MiB 0.80 944 14375 4687 7097 2591 56.2 MiB 0.18 0.00 3.95585 -140.771 -3.95585 3.95585 0.79 0.000899245 0.000831195 0.0659386 0.0610834 48 2883 40 6.95648e+06 405319 865456. 2994.66 16.50 0.511048 0.443973 28354 207349 -1 2294 24 2184 3486 377312 90728 4.38722 4.38722 -153.761 -4.38722 0 0 1.05005e+06 3633.38 0.35 0.11 0.20 -1 -1 0.35 0.0296691 0.0262096 100 29 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.64 vpr 55.59 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 17.1 MiB 1.05 786 12739 3070 7853 1816 56.0 MiB 0.17 0.00 3.0804 -115.407 -3.0804 3.0804 0.78 0.00083689 0.000772052 0.0552905 0.0511766 44 2281 28 6.95648e+06 390843 787024. 2723.27 5.34 0.378482 0.329415 27778 195446 -1 1763 21 1720 2390 256667 49921 3.42677 3.42677 -124.128 -3.42677 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0343901 0.0302215 87 65 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 6.98 vpr 55.19 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30496 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 16.9 MiB 1.18 525 12362 5188 6715 459 55.8 MiB 0.14 0.00 3.26916 -109.722 -3.26916 3.26916 0.79 0.000738459 0.000682505 0.0576452 0.0533717 48 1724 48 6.95648e+06 217135 865456. 2994.66 2.16 0.201988 0.176898 28354 207349 -1 1454 21 1139 1597 159183 39322 3.13223 3.13223 -112.426 -3.13223 0 0 1.05005e+06 3633.38 0.33 0.08 0.20 -1 -1 0.33 0.0298896 0.0261253 62 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.82 vpr 55.48 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30340 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 17.0 MiB 0.71 965 12791 5492 6957 342 55.6 MiB 0.19 0.00 3.0625 -116.847 -3.0625 3.0625 0.79 0.000813283 0.000751939 0.0662596 0.0611702 36 2834 31 6.95648e+06 202660 648988. 2245.63 2.43 0.211764 0.1869 26050 158493 -1 2372 21 1850 2739 325922 60766 3.31242 3.31242 -129.12 -3.31242 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0335512 0.0294765 79 64 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 20.78 vpr 55.96 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30536 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 17.5 MiB 2.44 778 10998 4559 6059 380 56.1 MiB 0.15 0.00 4.63397 -149.774 -4.63397 4.63397 0.79 0.000904427 0.000837364 0.0642723 0.0595842 40 3307 46 6.95648e+06 202660 706193. 2443.58 19.16 0.464616 0.402919 26914 176310 -1 2486 24 1824 2743 347509 73151 4.95601 4.95601 -164.037 -4.95601 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0411665 0.0359126 78 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 7.95 vpr 55.50 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 17.2 MiB 1.46 775 10476 3672 5136 1668 56.0 MiB 0.15 0.00 4.49354 -135.009 -4.49354 4.49354 0.80 0.000849181 0.000784907 0.0580535 0.0537791 40 2938 39 6.95648e+06 188184 706193. 2443.58 11.98 0.422176 0.366239 26914 176310 -1 2335 23 1681 2597 332607 68939 4.45026 4.45026 -151.717 -4.45026 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0373538 0.0327533 76 90 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.36 vpr 55.46 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30352 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 17.2 MiB 0.92 864 15493 5631 7761 2101 56.0 MiB 0.19 0.00 3.1285 -114.829 -3.1285 3.1285 0.78 0.000814818 0.00075409 0.0679248 0.0629081 38 2729 27 6.95648e+06 361892 678818. 2348.85 3.52 0.235903 0.207415 26626 170182 -1 2125 21 1698 2468 253022 49412 3.53207 3.53207 -129.53 -3.53207 0 0 902133. 3121.57 0.26 0.10 0.17 -1 -1 0.26 0.0336239 0.0295316 85 64 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 7.51 vpr 55.11 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30712 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 17.2 MiB 0.56 956 10743 3793 5013 1937 56.1 MiB 0.14 0.00 3.77119 -139.239 -3.77119 3.77119 0.79 0.000804643 0.000740484 0.0477604 0.0442308 40 2673 49 6.95648e+06 376368 706193. 2443.58 18.46 0.445799 0.386709 26914 176310 -1 2454 23 2164 3296 573566 160737 4.31196 4.31196 -160.42 -4.31196 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0196303 0.0174175 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.34 vpr 55.92 MiB 0.03 7300 -1 -1 1 0.05 -1 -1 30732 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 17.8 MiB 1.15 1078 14999 4071 8495 2433 56.1 MiB 0.20 0.00 3.84845 -142.865 -3.84845 3.84845 0.79 0.00100011 0.000925536 0.0729879 0.0675806 40 2999 23 6.95648e+06 448746 706193. 2443.58 3.16 0.277834 0.244405 26914 176310 -1 2727 22 2190 3320 395721 75466 4.48431 4.48431 -158.381 -4.48431 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0426818 0.0374729 104 96 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.61 vpr 55.04 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30624 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 16.6 MiB 0.66 721 10304 4339 5695 270 55.5 MiB 0.12 0.00 3.34916 -121.065 -3.34916 3.34916 0.79 0.000679478 0.0006283 0.0479368 0.0443838 36 2206 36 6.95648e+06 159232 648988. 2245.63 3.58 0.20187 0.176074 26050 158493 -1 1763 19 1395 1957 217691 41583 3.36742 3.36742 -127.061 -3.36742 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0260836 0.0229116 62 34 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.39 vpr 55.50 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30572 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 16.9 MiB 0.77 784 13959 3819 8017 2123 55.8 MiB 0.20 0.00 4.0519 -136.516 -4.0519 4.0519 0.88 0.000822363 0.000759728 0.0651593 0.0601867 46 2549 33 6.95648e+06 390843 828058. 2865.25 2.30 0.178106 0.157526 28066 200906 -1 1966 20 1596 2575 244578 49608 4.03652 4.03652 -145.714 -4.03652 0 0 1.01997e+06 3529.29 0.32 0.10 0.19 -1 -1 0.32 0.0326263 0.0286534 86 64 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 5.75 vpr 55.51 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30620 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 17.0 MiB 0.83 863 13557 4887 6407 2263 55.9 MiB 0.15 0.00 3.29596 -116.543 -3.29596 3.29596 0.79 0.000826598 0.000764127 0.0580089 0.0536391 52 2397 33 6.95648e+06 376368 926341. 3205.33 2.47 0.216284 0.190152 29218 227130 -1 1791 18 1451 2371 211838 44135 3.12597 3.12597 -117.726 -3.12597 0 0 1.14541e+06 3963.36 0.44 0.09 0.23 -1 -1 0.44 0.0303995 0.0268234 85 63 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.27 vpr 55.29 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 17.1 MiB 0.81 760 7738 3134 4374 230 55.9 MiB 0.11 0.00 3.65689 -135.736 -3.65689 3.65689 0.79 0.000768521 0.000710674 0.0392646 0.0364009 48 2648 42 6.95648e+06 188184 865456. 2994.66 5.99 0.322327 0.280155 28354 207349 -1 2265 24 2014 3396 489104 98728 4.49846 4.49846 -152.115 -4.49846 0 0 1.05005e+06 3633.38 0.32 0.15 0.20 -1 -1 0.32 0.0357652 0.0314289 78 3 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 8.53 vpr 55.62 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 17.2 MiB 1.71 808 11991 3810 6067 2114 56.1 MiB 0.14 0.00 3.1768 -117.392 -3.1768 3.1768 0.78 0.000855962 0.000791607 0.0563158 0.0521514 44 2611 46 6.95648e+06 332941 787024. 2723.27 2.58 0.226444 0.198757 27778 195446 -1 1560 22 1437 2242 163431 39790 3.22927 3.22927 -119.623 -3.22927 0 0 997811. 3452.63 0.33 0.09 0.19 -1 -1 0.33 0.0363761 0.0319338 81 96 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 9.39 vpr 55.68 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30368 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57424 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 17.2 MiB 0.89 845 12926 3665 7173 2088 56.1 MiB 0.16 0.00 3.1214 -116.244 -3.1214 3.1214 0.81 0.000830763 0.000768988 0.0548836 0.0508521 44 2445 25 6.95648e+06 405319 787024. 2723.27 2.11 0.187834 0.165414 27778 195446 -1 1904 21 1460 2221 211558 41287 3.20917 3.20917 -118.302 -3.20917 0 0 997811. 3452.63 0.33 0.09 0.19 -1 -1 0.33 0.0341347 0.030024 85 61 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 9.23 vpr 55.66 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30416 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 17.1 MiB 0.61 803 14996 4547 7782 2667 56.1 MiB 0.19 0.00 3.09676 -115.471 -3.09676 3.09676 0.79 0.000844081 0.000779235 0.0646651 0.0598177 46 2180 41 6.95648e+06 405319 828058. 2865.25 2.73 0.260648 0.228691 28066 200906 -1 1716 21 1648 2481 218899 44509 3.40477 3.40477 -118.761 -3.40477 0 0 1.01997e+06 3529.29 0.28 0.05 0.15 -1 -1 0.28 0.0178975 0.0158507 88 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.68 vpr 55.32 MiB 0.03 6992 -1 -1 1 0.04 -1 -1 30496 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 17.1 MiB 0.56 938 15617 5888 7604 2125 56.0 MiB 0.20 0.00 3.66789 -137.042 -3.66789 3.66789 0.79 0.0008042 0.000744395 0.0638518 0.0591043 46 2570 27 6.95648e+06 405319 828058. 2865.25 4.97 0.305164 0.266614 28066 200906 -1 2139 21 1787 2730 301830 54657 3.79546 3.79546 -143.738 -3.79546 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0332882 0.029281 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.96 vpr 55.32 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30648 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 17.1 MiB 1.05 799 12448 3955 5788 2705 56.0 MiB 0.13 0.00 3.78219 -138.337 -3.78219 3.78219 0.82 0.000840732 0.000776763 0.0516704 0.0478157 46 2443 27 6.95648e+06 434271 828058. 2865.25 4.91 0.340215 0.295364 28066 200906 -1 1841 21 1843 2632 251505 53793 4.26696 4.26696 -151.283 -4.26696 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.034467 0.0302664 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.05 vpr 55.65 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30452 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 17.4 MiB 1.44 822 11983 4768 6508 707 56.1 MiB 0.16 0.00 4.19045 -134.89 -4.19045 4.19045 0.78 0.000888449 0.000822115 0.057943 0.0536551 46 2766 26 6.95648e+06 361892 828058. 2865.25 1.94 0.157961 0.139216 28066 200906 -1 2132 29 1770 2714 329791 80525 3.91612 3.91612 -138.687 -3.91612 0 0 1.01997e+06 3529.29 0.34 0.13 0.20 -1 -1 0.34 0.0470633 0.0408655 84 122 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 11.19 vpr 55.63 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 17.5 MiB 1.12 840 10346 3694 5398 1254 56.1 MiB 0.15 0.00 3.7688 -130.649 -3.7688 3.7688 0.78 0.000898089 0.000832628 0.0601579 0.0558483 40 2666 31 6.95648e+06 188184 706193. 2443.58 3.38 0.248221 0.217835 26914 176310 -1 2271 21 1822 3115 333026 65210 4.32296 4.32296 -148.088 -4.32296 0 0 926341. 3205.33 0.28 0.11 0.18 -1 -1 0.28 0.035904 0.0315178 78 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.28 vpr 55.07 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30612 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 16.8 MiB 0.19 594 10647 4341 5910 396 55.5 MiB 0.11 0.00 3.12656 -113.614 -3.12656 3.12656 0.79 0.000691883 0.000639508 0.040944 0.0378145 50 2129 50 6.95648e+06 332941 902133. 3121.57 16.12 0.360348 0.311375 28642 213929 -1 1461 19 1344 2068 206134 44912 2.83502 2.83502 -112.09 -2.83502 0 0 1.08113e+06 3740.92 0.33 0.08 0.21 -1 -1 0.33 0.0264305 0.0231724 71 34 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 7.52 vpr 55.36 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 17.1 MiB 1.11 610 8444 3495 4676 273 55.8 MiB 0.10 0.00 3.0405 -112.422 -3.0405 3.0405 0.79 0.000765347 0.000706791 0.0443684 0.0410687 54 1724 27 6.95648e+06 144757 949917. 3286.91 5.16 0.294755 0.255222 29506 232905 -1 1300 19 1240 1878 157600 35553 2.94772 2.94772 -111.172 -2.94772 0 0 1.17392e+06 4061.99 0.36 0.08 0.22 -1 -1 0.36 0.0292366 0.0256701 63 94 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 8.11 vpr 55.89 MiB 0.05 7328 -1 -1 1 0.04 -1 -1 30776 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 17.7 MiB 0.67 1000 14152 3772 8188 2192 56.0 MiB 0.21 0.00 4.46224 -157.711 -4.46224 4.46224 0.79 0.000959767 0.000889159 0.0673099 0.0623496 52 3584 32 6.95648e+06 434271 926341. 3205.33 2.76 0.262764 0.230744 29218 227130 -1 2311 24 2463 3926 449300 84329 5.01271 5.01271 -169.61 -5.01271 0 0 1.14541e+06 3963.36 0.35 0.14 0.22 -1 -1 0.35 0.0442103 0.0387779 103 65 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.01 vpr 55.42 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 17.0 MiB 0.98 717 11983 4638 6220 1125 55.8 MiB 0.13 0.00 3.1457 -117.079 -3.1457 3.1457 0.83 0.000767391 0.000707008 0.0457991 0.0422299 54 1802 21 6.95648e+06 347416 949917. 3286.91 5.07 0.258793 0.225489 29506 232905 -1 1382 20 1258 1632 162958 33206 3.08582 3.08582 -115.975 -3.08582 0 0 1.17392e+06 4061.99 0.35 0.08 0.22 -1 -1 0.35 0.0319212 0.0281094 83 34 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.56 vpr 55.18 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30400 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 16.6 MiB 0.33 571 10581 4367 5776 438 55.5 MiB 0.12 0.00 3.0735 -108.432 -3.0735 3.0735 0.78 0.00048962 0.00044135 0.0422785 0.0391435 38 2111 32 6.95648e+06 275038 678818. 2348.85 3.65 0.193576 0.169627 26626 170182 -1 1660 20 1307 1833 192524 40300 3.39077 3.39077 -120.143 -3.39077 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0268918 0.0235904 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 10.63 vpr 56.07 MiB 0.05 7244 -1 -1 1 0.04 -1 -1 30968 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 17.8 MiB 2.21 1126 15215 3732 10105 1378 56.1 MiB 0.23 0.00 4.49524 -160.999 -4.49524 4.49524 0.86 0.000764442 0.00069393 0.077111 0.0714565 48 2966 44 6.95648e+06 448746 865456. 2994.66 4.23 0.314899 0.27696 28354 207349 -1 2646 42 3756 5286 1462672 640315 4.77311 4.77311 -176.647 -4.77311 0 0 1.05005e+06 3633.38 0.33 0.43 0.20 -1 -1 0.33 0.0743274 0.0645816 103 127 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.75 vpr 55.24 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30444 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 17.2 MiB 1.19 804 14375 4842 7223 2310 56.0 MiB 0.17 0.00 3.73321 -136.441 -3.73321 3.73321 0.78 0.000822861 0.00076097 0.0601249 0.0555733 40 2312 24 6.95648e+06 405319 706193. 2443.58 2.70 0.221624 0.19469 26914 176310 -1 2006 29 2483 3423 554964 185828 3.91306 3.91306 -150.861 -3.91306 0 0 926341. 3205.33 0.28 0.18 0.17 -1 -1 0.28 0.0433324 0.037875 86 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 11.40 vpr 54.91 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30396 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 16.8 MiB 0.33 740 12763 4452 6451 1860 55.2 MiB 0.14 0.00 3.05815 -117.559 -3.05815 3.05815 0.78 0.000670133 0.000620064 0.045937 0.0425409 44 2027 49 6.95648e+06 347416 787024. 2723.27 2.61 0.205408 0.179422 27778 195446 -1 1626 20 1397 2146 206903 38854 3.01532 3.01532 -120.584 -3.01532 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0264483 0.0231899 70 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 9.45 vpr 55.56 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30896 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 17.5 MiB 0.55 924 14567 5045 6877 2645 56.0 MiB 0.18 0.00 4.52824 -159.979 -4.52824 4.52824 0.78 0.000934353 0.000865967 0.0661866 0.0613006 56 2718 34 6.95648e+06 448746 973134. 3367.25 6.07 0.374278 0.326319 29794 239141 -1 2226 20 2344 3844 427151 85461 4.96871 4.96871 -171.187 -4.96871 0 0 1.19926e+06 4149.71 0.36 0.13 0.23 -1 -1 0.36 0.0371241 0.0326754 105 34 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 8.35 vpr 55.08 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.4 MiB 0.35 618 10614 4475 5915 224 55.1 MiB 0.12 0.00 2.92185 -113.699 -2.92185 2.92185 0.79 0.000663276 0.000612632 0.0480554 0.0444741 42 2134 43 6.95648e+06 144757 744469. 2576.02 12.14 0.332236 0.287746 27202 183097 -1 1617 22 1435 1986 209356 43293 3.02152 3.02152 -123.743 -3.02152 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0292499 0.0256727 62 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.26 vpr 55.14 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30588 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 16.7 MiB 0.82 601 10163 2708 5873 1582 55.3 MiB 0.10 0.00 3.10776 -107.419 -3.10776 3.10776 0.78 0.000671233 0.000620721 0.0399463 0.0369903 54 1459 21 6.95648e+06 303989 949917. 3286.91 5.07 0.22451 0.195016 29506 232905 -1 1102 20 985 1434 109295 26496 3.00067 3.00067 -105.385 -3.00067 0 0 1.17392e+06 4061.99 0.35 0.07 0.22 -1 -1 0.35 0.026703 0.0233884 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.65 vpr 55.51 MiB 0.05 7304 -1 -1 1 0.03 -1 -1 30512 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 17.1 MiB 1.28 705 12856 4698 6070 2088 55.9 MiB 0.15 0.00 3.39446 -107.671 -3.39446 3.39446 0.78 0.000801013 0.000740577 0.0617884 0.0571855 46 2664 50 6.95648e+06 289514 828058. 2865.25 3.42 0.226609 0.199079 28066 200906 -1 1883 27 1843 2876 287551 57988 3.21827 3.21827 -114.538 -3.21827 0 0 1.01997e+06 3529.29 0.35 0.10 0.20 -1 -1 0.35 0.0321761 0.0284117 77 88 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 9.17 vpr 55.50 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30656 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 17.1 MiB 0.91 807 13117 5264 6347 1506 56.0 MiB 0.17 0.00 3.65689 -136.729 -3.65689 3.65689 0.78 0.000838603 0.000775929 0.0706573 0.0654438 38 2388 26 6.95648e+06 188184 678818. 2348.85 10.96 0.381449 0.333325 26626 170182 -1 1894 19 1818 2360 253039 50070 3.94116 3.94116 -150.09 -3.94116 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0323499 0.0285903 78 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 7.31 vpr 55.43 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30804 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 17.2 MiB 1.69 890 14345 5510 6931 1904 56.1 MiB 0.17 0.00 3.74419 -138.408 -3.74419 3.74419 0.79 0.000846389 0.000783716 0.0643648 0.0596 48 2621 24 6.95648e+06 361892 865456. 2994.66 2.87 0.235732 0.207421 28354 207349 -1 2288 23 2108 3323 458543 82724 3.96296 3.96296 -146.844 -3.96296 0 0 1.05005e+06 3633.38 0.33 0.14 0.17 -1 -1 0.33 0.0375946 0.0329892 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 8.49 vpr 55.13 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 17.0 MiB 1.25 685 10813 4185 5763 865 55.7 MiB 0.12 0.00 3.05815 -117.015 -3.05815 3.05815 0.78 0.000738663 0.00068214 0.0433193 0.0400871 40 2185 26 6.95648e+06 347416 706193. 2443.58 11.00 0.343988 0.297979 26914 176310 -1 1816 29 1969 3032 645063 216819 3.04652 3.04652 -125.213 -3.04652 0 0 926341. 3205.33 0.29 0.20 0.17 -1 -1 0.29 0.0403573 0.0352751 69 65 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.32 vpr 55.27 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30456 -1 -1 10 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 16.6 MiB 1.48 684 10105 3894 4557 1654 55.2 MiB 0.12 0.00 3.30215 -110.841 -3.30215 3.30215 0.78 0.000734286 0.000678786 0.0513341 0.0475185 34 2333 36 6.95648e+06 144757 618332. 2139.56 2.79 0.187698 0.164376 25762 151098 -1 1925 22 1346 2104 243920 46754 3.23247 3.23247 -123.267 -3.23247 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0312479 0.0272846 59 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.13 vpr 55.31 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 17.1 MiB 0.94 949 12711 4087 6844 1780 55.9 MiB 0.16 0.00 3.1285 -115.995 -3.1285 3.1285 0.79 0.000789789 0.000730506 0.0579769 0.0537256 40 2341 23 6.95648e+06 318465 706193. 2443.58 2.64 0.219215 0.193059 26914 176310 -1 2169 20 1492 2138 239753 46681 3.25017 3.25017 -126.51 -3.25017 0 0 926341. 3205.33 0.32 0.09 0.16 -1 -1 0.32 0.0317563 0.0279294 79 60 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.44 vpr 55.18 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30496 -1 -1 16 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 17.1 MiB 0.83 684 10156 4202 5354 600 55.6 MiB 0.12 0.00 4.24545 -126.653 -4.24545 4.24545 0.78 0.000719551 0.000665891 0.0483738 0.0448545 38 2774 46 6.95648e+06 231611 678818. 2348.85 5.72 0.222935 0.195004 26626 170182 -1 1904 20 1534 2200 211911 43949 4.35121 4.35121 -139.979 -4.35121 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0288939 0.0253661 74 34 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.32 vpr 55.16 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30168 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 16.7 MiB 0.85 607 9374 3879 5147 348 55.4 MiB 0.11 0.00 3.0545 -108.859 -3.0545 3.0545 0.78 0.00070222 0.000649339 0.0469718 0.0434694 38 1928 41 6.95648e+06 173708 678818. 2348.85 3.61 0.208748 0.18205 26626 170182 -1 1502 24 1389 1829 175874 36943 3.02772 3.02772 -116.322 -3.02772 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0322411 0.0281068 61 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.41 vpr 55.53 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30364 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 1.33 777 7669 3175 4304 190 55.6 MiB 0.11 0.00 3.0765 -113.072 -3.0765 3.0765 0.79 0.000760969 0.000703696 0.0420006 0.0388104 36 2485 23 6.95648e+06 144757 648988. 2245.63 3.72 0.195632 0.17025 26050 158493 -1 2046 21 1209 1938 215887 40957 3.41097 3.41097 -124.918 -3.41097 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0308127 0.0269786 60 91 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 8.02 vpr 55.34 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.1 MiB 0.18 795 9448 3333 4743 1372 55.9 MiB 0.12 0.00 3.89245 -136.332 -3.89245 3.89245 0.78 0.000750346 0.000694366 0.0399646 0.0370639 46 3176 48 6.95648e+06 361892 828058. 2865.25 18.65 0.374995 0.32561 28066 200906 -1 2136 22 1851 2833 343213 72146 4.28572 4.28572 -152.852 -4.28572 0 0 1.01997e+06 3529.29 0.31 0.12 0.21 -1 -1 0.31 0.032814 0.0288984 86 4 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 8.97 vpr 55.74 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30564 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 17.1 MiB 1.46 926 10495 2590 6894 1011 56.0 MiB 0.16 0.00 3.78219 -140.482 -3.78219 3.78219 0.78 0.000850325 0.000786576 0.0467446 0.0432853 38 3067 50 6.95648e+06 390843 678818. 2348.85 17.40 0.39707 0.344576 26626 170182 -1 2334 21 1983 3252 332775 61340 3.97396 3.97396 -151.497 -3.97396 0 0 902133. 3121.57 0.30 0.11 0.16 -1 -1 0.30 0.0302416 0.0268598 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 10.31 vpr 55.60 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30488 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 17.1 MiB 1.71 831 9336 3198 4890 1248 56.1 MiB 0.13 0.00 3.70819 -135.715 -3.70819 3.70819 0.79 0.000845054 0.000781237 0.0423602 0.0391933 46 2972 41 6.95648e+06 376368 828058. 2865.25 4.69 0.236275 0.20676 28066 200906 -1 2199 30 2226 3425 534270 167425 4.11646 4.11646 -151.715 -4.11646 0 0 1.01997e+06 3529.29 0.31 0.18 0.19 -1 -1 0.31 0.0464352 0.0406145 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.61 vpr 55.64 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57424 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 17.2 MiB 1.06 822 13351 4683 6743 1925 56.1 MiB 0.17 0.00 3.75544 -130.593 -3.75544 3.75544 0.78 0.000835201 0.000770009 0.058796 0.0543823 50 2916 25 6.95648e+06 390843 902133. 3121.57 5.59 0.335875 0.292778 28642 213929 -1 2146 24 1746 2898 447947 134755 3.96616 3.96616 -145.731 -3.96616 0 0 1.08113e+06 3740.92 0.34 0.15 0.20 -1 -1 0.34 0.0389804 0.0342131 86 65 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.84 vpr 55.09 MiB 0.05 6872 -1 -1 1 0.03 -1 -1 30368 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 16.8 MiB 0.76 551 9064 3696 4990 378 55.5 MiB 0.10 0.00 3.29416 -111.889 -3.29416 3.29416 0.78 0.000663905 0.000613984 0.0412475 0.0381962 40 2036 23 6.95648e+06 173708 706193. 2443.58 2.08 0.173762 0.151543 26914 176310 -1 1859 21 1372 2084 273262 58723 3.34052 3.34052 -122.608 -3.34052 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0277576 0.0242929 62 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 16.55 vpr 55.54 MiB 0.03 7132 -1 -1 1 0.05 -1 -1 30408 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 17.2 MiB 0.80 751 12465 5336 6622 507 56.0 MiB 0.15 0.00 4.015 -133.992 -4.015 4.015 0.79 0.000795142 0.000734995 0.0638451 0.0590669 48 1982 34 6.95648e+06 217135 865456. 2994.66 2.00 0.220556 0.193952 28354 207349 -1 1774 24 1921 2579 273407 57155 4.08956 4.08956 -139.956 -4.08956 0 0 1.05005e+06 3633.38 0.32 0.11 0.20 -1 -1 0.32 0.0368824 0.0323098 78 63 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 7.80 vpr 55.53 MiB 0.03 7268 -1 -1 1 0.04 -1 -1 30900 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 17.3 MiB 1.64 807 14351 4061 7900 2390 56.1 MiB 0.19 0.00 3.71619 -135.355 -3.71619 3.71619 0.79 0.000933993 0.0008641 0.0655911 0.0607033 48 2485 31 6.95648e+06 448746 865456. 2994.66 5.01 0.343863 0.29912 28354 207349 -1 2096 24 2021 3007 372571 72781 3.85966 3.85966 -144.535 -3.85966 0 0 1.05005e+06 3633.38 0.32 0.13 0.20 -1 -1 0.32 0.0413743 0.0360517 88 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 9.66 vpr 55.54 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30424 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 17.2 MiB 0.99 718 14035 5965 7479 591 56.1 MiB 0.17 0.00 3.9948 -135.983 -3.9948 3.9948 0.86 0.000825772 0.000767316 0.0645026 0.0601466 46 2469 42 6.95648e+06 318465 828058. 2865.25 4.19 0.267723 0.235114 28066 200906 -1 1716 21 1568 2319 204950 42316 3.87381 3.87381 -138.135 -3.87381 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0349535 0.030681 81 94 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 8.24 vpr 55.58 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 17.2 MiB 1.20 700 13668 5834 7221 613 55.8 MiB 0.17 0.00 3.27591 -109.838 -3.27591 3.27591 0.79 0.000828137 0.000765674 0.0683842 0.0632918 46 2549 39 6.95648e+06 260562 828058. 2865.25 3.03 0.239199 0.210678 28066 200906 -1 1776 26 1662 2481 314380 73518 3.15782 3.15782 -119.93 -3.15782 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0399734 0.0349118 75 92 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 6.79 vpr 55.66 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.1 MiB 1.70 782 12628 3922 6830 1876 55.9 MiB 0.17 0.00 3.65989 -133.508 -3.65989 3.65989 0.79 0.000847012 0.000783895 0.0687225 0.0636858 48 2703 45 6.95648e+06 188184 865456. 2994.66 3.91 0.27018 0.237803 28354 207349 -1 2210 30 2465 4179 616570 159659 3.98016 3.98016 -151.445 -3.98016 0 0 1.05005e+06 3633.38 0.33 0.19 0.21 -1 -1 0.33 0.046621 0.0410429 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.90 vpr 55.50 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 17.1 MiB 1.04 662 10163 3749 4795 1619 55.9 MiB 0.12 0.00 3.14182 -102.393 -3.14182 3.14182 0.78 0.000793951 0.000734552 0.0476852 0.0441684 48 1973 21 6.95648e+06 318465 865456. 2994.66 2.54 0.202556 0.17711 28354 207349 -1 1696 21 1624 2407 283316 65812 3.55817 3.55817 -118.337 -3.55817 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0328738 0.0288671 77 88 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.85 vpr 54.98 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30456 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 16.6 MiB 0.80 574 9219 3815 5040 364 55.2 MiB 0.10 0.00 2.94595 -112.182 -2.94595 2.94595 0.78 0.000661709 0.000611937 0.041909 0.0388526 52 1840 30 6.95648e+06 144757 926341. 3205.33 9.92 0.329808 0.285281 29218 227130 -1 1364 19 1266 1929 183032 41983 3.25632 3.25632 -121.311 -3.25632 0 0 1.14541e+06 3963.36 0.39 0.08 0.23 -1 -1 0.39 0.0258203 0.0227261 61 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 22.58 vpr 55.45 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 30416 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 17.2 MiB 3.45 749 15688 6578 8529 581 56.1 MiB 0.18 0.00 3.77419 -136.605 -3.77419 3.77419 0.79 0.000844777 0.0007808 0.0712065 0.0658534 54 2216 46 6.95648e+06 347416 949917. 3286.91 3.36 0.272154 0.239104 29506 232905 -1 1659 23 1808 2766 282099 57836 3.98196 3.98196 -141.254 -3.98196 0 0 1.17392e+06 4061.99 0.35 0.11 0.22 -1 -1 0.35 0.0373299 0.0327847 84 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.15 vpr 55.50 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.1 MiB 0.67 800 13117 5732 6986 399 56.0 MiB 0.17 0.00 3.79019 -142.199 -3.79019 3.79019 0.78 0.00084976 0.000785467 0.0709265 0.0656325 44 2737 44 6.95648e+06 188184 787024. 2723.27 2.54 0.267168 0.234601 27778 195446 -1 1953 21 2020 2717 286927 58517 3.99606 3.99606 -152.809 -3.99606 0 0 997811. 3452.63 0.31 0.11 0.20 -1 -1 0.31 0.034987 0.030777 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 9.28 vpr 55.24 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30420 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 16.8 MiB 1.13 575 11609 4562 5941 1106 55.6 MiB 0.13 0.00 3.25495 -109.238 -3.25495 3.25495 0.80 0.000687127 0.000634759 0.053293 0.0493184 42 2279 39 6.95648e+06 159232 744469. 2576.02 4.26 0.263714 0.228974 27202 183097 -1 1590 19 1210 1704 167210 37749 3.48987 3.48987 -120.589 -3.48987 0 0 949917. 3286.91 0.29 0.07 0.18 -1 -1 0.29 0.0263623 0.0231168 60 55 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 12.54 vpr 55.00 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30444 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.7 MiB 0.28 835 9529 3959 5371 199 55.3 MiB 0.13 0.01 3.0815 -119.168 -3.0815 3.0815 0.81 0.000488171 0.00044579 0.0340012 0.0311398 36 2313 46 6.95648e+06 159232 648988. 2245.63 2.23 0.160674 0.140117 26050 158493 -1 1902 17 1321 1851 210326 39149 3.23112 3.23112 -132.752 -3.23112 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.023016 0.0202669 63 4 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.43 vpr 55.52 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 17.2 MiB 1.25 782 14483 5692 6794 1997 56.0 MiB 0.18 0.00 3.70334 -129.205 -3.70334 3.70334 0.78 0.000812329 0.000751631 0.0682433 0.0631635 38 2510 20 6.95648e+06 275038 678818. 2348.85 3.67 0.22862 0.201363 26626 170182 -1 1986 20 1548 2022 200502 38894 3.84821 3.84821 -137.719 -3.84821 0 0 902133. 3121.57 0.28 0.09 0.19 -1 -1 0.28 0.0314797 0.0276756 78 59 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.01 vpr 55.53 MiB 0.03 7156 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 17.1 MiB 0.72 793 11474 4768 6294 412 55.9 MiB 0.15 0.00 3.90986 -132.869 -3.90986 3.90986 0.78 0.000826852 0.000764113 0.0567545 0.0525434 40 2926 31 6.95648e+06 260562 706193. 2443.58 4.95 0.234563 0.205464 26914 176310 -1 2267 24 2014 2928 338947 71803 4.63482 4.63482 -153.925 -4.63482 0 0 926341. 3205.33 0.31 0.13 0.19 -1 -1 0.31 0.0394122 0.0345288 78 88 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.37 vpr 55.48 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.5 MiB 0.41 1152 4375 861 3334 180 56.1 MiB 0.08 0.01 4.48239 -161.071 -4.48239 4.48239 0.79 0.000868068 0.000803683 0.0217727 0.0202424 46 3211 43 6.95648e+06 390843 828058. 2865.25 4.65 0.229537 0.199731 28066 200906 -1 2609 22 2256 3511 404918 72276 4.83866 4.83866 -171.756 -4.83866 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.038543 0.0340995 100 3 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 6.21 vpr 55.30 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30676 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 17.1 MiB 0.98 698 14528 6104 7488 936 55.9 MiB 0.18 0.00 3.34296 -113.702 -3.34296 3.34296 0.79 0.00077955 0.000721568 0.0679865 0.0629523 44 2220 24 6.95648e+06 260562 787024. 2723.27 2.22 0.223166 0.196375 27778 195446 -1 1741 19 1523 2204 221976 44959 3.08387 3.08387 -114.275 -3.08387 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0297435 0.0261535 77 59 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.42 vpr 54.94 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30744 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 16.7 MiB 0.53 465 10459 4157 5359 943 55.3 MiB 0.11 0.00 3.15776 -95.8334 -3.15776 3.15776 0.79 0.000613745 0.000568294 0.0436262 0.0404387 36 1785 30 6.95648e+06 217135 648988. 2245.63 1.96 0.166601 0.145606 26050 158493 -1 1264 21 1100 1314 144780 31077 2.90352 2.90352 -101.292 -2.90352 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0254631 0.0222221 57 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 27.70 vpr 55.70 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30684 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 17.7 MiB 0.81 956 13513 4288 6425 2800 56.0 MiB 0.15 0.00 4.037 -139.704 -4.037 4.037 0.94 0.000429746 0.000392395 0.0466223 0.0427344 52 3911 46 6.95648e+06 434271 926341. 3205.33 3.84 0.285808 0.248789 29218 227130 -1 2300 21 2187 3715 368544 73427 3.95522 3.95522 -145.053 -3.95522 0 0 1.14541e+06 3963.36 0.35 0.13 0.22 -1 -1 0.35 0.0415751 0.036544 103 95 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 13.36 vpr 55.50 MiB 0.03 7284 -1 -1 1 0.03 -1 -1 30524 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 17.4 MiB 3.48 899 8716 2535 4990 1191 55.9 MiB 0.13 0.00 4.57784 -152.287 -4.57784 4.57784 0.78 0.000905442 0.000838497 0.0515573 0.0478326 40 2708 23 6.95648e+06 202660 706193. 2443.58 2.72 0.233155 0.203631 26914 176310 -1 2344 24 1803 2731 349724 66961 4.91091 4.91091 -165.721 -4.91091 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0447636 0.0391079 79 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 9.67 vpr 55.36 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30420 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 16.9 MiB 2.81 500 11389 4353 5738 1298 55.7 MiB 0.12 0.00 3.0346 -106.135 -3.0346 3.0346 0.83 0.00074073 0.000684159 0.0521363 0.048057 46 1833 29 6.95648e+06 144757 828058. 2865.25 4.75 0.316301 0.273959 28066 200906 -1 1205 42 1488 2346 222106 50418 2.99292 2.99292 -111.253 -2.99292 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0537231 0.0465674 58 89 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.82 vpr 55.35 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30396 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 17.2 MiB 0.40 819 12938 5293 7361 284 56.1 MiB 0.16 0.00 4.12326 -140.658 -4.12326 4.12326 0.79 0.000787607 0.00072826 0.0568283 0.0526282 44 2749 41 6.95648e+06 318465 787024. 2723.27 3.02 0.212462 0.186817 27778 195446 -1 1951 21 1853 2799 291011 57024 3.96922 3.96922 -146.023 -3.96922 0 0 997811. 3452.63 0.34 0.11 0.23 -1 -1 0.34 0.0334615 0.0295006 83 34 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 7.62 vpr 55.77 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30680 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 17.5 MiB 0.89 852 12560 4728 5964 1868 56.3 MiB 0.17 0.00 4.1192 -140.393 -4.1192 4.1192 0.79 0.000918227 0.000850595 0.0644898 0.0598306 44 2902 35 6.95648e+06 332941 787024. 2723.27 2.44 0.264031 0.231321 27778 195446 -1 2213 22 1895 2598 274715 53050 4.06632 4.06632 -147.269 -4.06632 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0393432 0.0345244 95 64 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 8.69 vpr 55.22 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30456 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 17.1 MiB 0.90 739 10762 4429 5782 551 55.9 MiB 0.13 0.00 3.27396 -108.751 -3.27396 3.27396 0.80 0.000793049 0.000728399 0.0510302 0.0473018 52 2215 36 6.95648e+06 289514 926341. 3205.33 5.17 0.308073 0.267925 29218 227130 -1 1673 17 1244 1950 170901 36553 3.43483 3.43483 -113.669 -3.43483 0 0 1.14541e+06 3963.36 0.35 0.07 0.21 -1 -1 0.35 0.0274931 0.0242492 78 61 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 8.73 vpr 55.60 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30600 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 17.5 MiB 0.57 907 15848 6161 8045 1642 56.1 MiB 0.18 0.00 3.79319 -139.401 -3.79319 3.79319 0.80 0.00084457 0.000780161 0.0625927 0.0578504 50 2281 28 6.95648e+06 492173 902133. 3121.57 5.14 0.320208 0.279212 28642 213929 -1 1990 18 1722 2442 281278 52538 3.72056 3.72056 -142.947 -3.72056 0 0 1.08113e+06 3740.92 0.33 0.10 0.20 -1 -1 0.33 0.0307758 0.027119 91 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 7.25 vpr 55.45 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 17.5 MiB 0.59 794 15215 5485 7366 2364 56.1 MiB 0.19 0.00 3.05335 -116.88 -3.05335 3.05335 0.79 0.00084102 0.000776383 0.0624066 0.0576574 44 2204 29 6.95648e+06 448746 787024. 2723.27 4.28 0.319621 0.278438 27778 195446 -1 1791 20 1510 1967 236570 45600 2.89922 2.89922 -119.601 -2.89922 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0333763 0.0293314 90 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.98 vpr 54.98 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30436 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 16.7 MiB 3.13 577 8599 3570 4706 323 55.3 MiB 0.09 0.00 3.17976 -103.796 -3.17976 3.17976 0.85 0.000656776 0.000605815 0.0336551 0.0309358 36 1572 28 6.95648e+06 188184 648988. 2245.63 3.60 0.21915 0.189334 26050 158493 -1 1335 20 1019 1254 132251 27005 2.99587 2.99587 -110.83 -2.99587 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0257367 0.0225463 56 34 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 8.82 vpr 55.34 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30044 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 16.8 MiB 0.83 584 9839 4132 5456 251 55.7 MiB 0.11 0.00 2.9814 -102.92 -2.9814 2.9814 0.78 0.000707005 0.000652987 0.0473815 0.0438323 40 1922 29 6.95648e+06 144757 706193. 2443.58 2.28 0.176943 0.15488 26914 176310 -1 1589 26 1404 1733 434983 159543 2.91832 2.91832 -112.192 -2.91832 0 0 926341. 3205.33 0.29 0.17 0.18 -1 -1 0.29 0.035151 0.0308678 58 82 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 8.90 vpr 55.36 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30604 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 17.1 MiB 0.48 743 12331 4128 5906 2297 55.8 MiB 0.13 0.00 4.24545 -140.476 -4.24545 4.24545 0.79 0.00078978 0.000729781 0.0504238 0.0466726 48 2419 44 6.95648e+06 405319 865456. 2994.66 16.60 0.411325 0.356879 28354 207349 -1 1892 22 1582 2283 289608 58212 3.88486 3.88486 -143.662 -3.88486 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0338688 0.0297092 86 34 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.40 vpr 55.11 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30452 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 16.7 MiB 1.15 494 12399 5297 6440 662 55.4 MiB 0.07 0.00 3.26295 -100.502 -3.26295 3.26295 0.73 0.0002831 0.000258102 0.0241054 0.0220634 40 2035 50 6.95648e+06 202660 706193. 2443.58 2.19 0.101428 0.0878015 26914 176310 -1 1515 21 1189 1695 204706 57767 3.44692 3.44692 -108.798 -3.44692 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0269327 0.0235115 59 56 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.22 vpr 55.12 MiB 0.03 6928 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 1.14 698 10149 3910 5225 1014 55.4 MiB 0.12 0.00 3.05815 -118.306 -3.05815 3.05815 0.78 0.000700759 0.000648192 0.0487218 0.0451404 44 2023 20 6.95648e+06 144757 787024. 2723.27 4.42 0.253713 0.220742 27778 195446 -1 1549 20 1394 1924 229579 41672 2.99782 2.99782 -120.785 -2.99782 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0279108 0.0244803 61 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 6.44 vpr 55.48 MiB 0.04 7028 -1 -1 1 0.04 -1 -1 30384 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57396 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 17.2 MiB 1.00 717 11607 3761 5813 2033 56.1 MiB 0.08 0.00 3.1175 -113.433 -3.1175 3.1175 0.73 0.000351018 0.000321456 0.0236206 0.0217146 38 2211 26 6.95648e+06 347416 678818. 2348.85 6.53 0.278347 0.239875 26626 170182 -1 1635 24 1763 2255 211927 43630 3.42197 3.42197 -127.209 -3.42197 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0371879 0.0326444 82 64 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.13 vpr 55.02 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30332 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 16.7 MiB 2.09 682 10459 3058 6921 480 55.3 MiB 0.12 0.00 3.13575 -104.344 -3.13575 3.13575 0.78 0.000678734 0.000627147 0.0479563 0.0443884 38 1872 30 6.95648e+06 159232 678818. 2348.85 4.09 0.240561 0.20877 26626 170182 -1 1625 18 976 1436 135459 27796 2.87052 2.87052 -110.596 -2.87052 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0246601 0.0215984 57 55 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 7.08 vpr 55.50 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30476 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 17.1 MiB 1.56 710 12323 5117 6727 479 56.0 MiB 0.14 0.00 3.0155 -107.222 -3.0155 3.0155 0.79 0.000806772 0.000746343 0.0577401 0.0534212 48 2055 19 6.95648e+06 275038 865456. 2994.66 2.60 0.213565 0.187627 28354 207349 -1 1680 52 2051 2878 711012 341912 2.95667 2.95667 -110.45 -2.95667 0 0 1.05005e+06 3633.38 0.34 0.27 0.20 -1 -1 0.34 0.0597994 0.0521646 76 65 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.81 vpr 55.59 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30336 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 17.1 MiB 1.46 717 15298 5325 7460 2513 56.0 MiB 0.19 0.00 3.41641 -118.296 -3.41641 3.41641 0.78 0.000857518 0.000791557 0.0705896 0.0652691 42 2810 47 6.95648e+06 361892 744469. 2576.02 2.35 0.245558 0.215508 27202 183097 -1 1924 21 1793 2419 269475 55278 3.41277 3.41277 -130.193 -3.41277 0 0 949917. 3286.91 0.36 0.11 0.18 -1 -1 0.36 0.0354555 0.0311458 85 93 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 9.10 vpr 55.21 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30432 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 0.84 564 10149 3066 5426 1657 55.7 MiB 0.14 0.00 2.9023 -103.177 -2.9023 2.9023 0.79 0.000718183 0.000663912 0.0495574 0.0458848 40 2101 50 6.95648e+06 144757 706193. 2443.58 10.48 0.374156 0.323793 26914 176310 -1 1651 24 1337 2015 251493 53014 3.17132 3.17132 -117.428 -3.17132 0 0 926341. 3205.33 0.28 0.10 0.18 -1 -1 0.28 0.0328887 0.0286739 61 61 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.23 vpr 55.27 MiB 0.05 6820 -1 -1 1 0.03 -1 -1 30124 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 16.7 MiB 1.14 611 8289 3413 4626 250 55.4 MiB 0.10 0.00 3.0515 -113.367 -3.0515 3.0515 0.79 0.000729717 0.000674013 0.0419641 0.038871 50 1848 45 6.95648e+06 144757 902133. 3121.57 2.51 0.206034 0.17948 28642 213929 -1 1444 22 1459 2240 213350 47597 2.98867 2.98867 -116.822 -2.98867 0 0 1.08113e+06 3740.92 0.33 0.09 0.21 -1 -1 0.33 0.0312177 0.0273026 63 63 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.59 vpr 55.35 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30648 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57396 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 17.1 MiB 0.98 951 8283 1857 5834 592 56.1 MiB 0.12 0.01 3.78219 -143.123 -3.78219 3.78219 0.79 0.000849326 0.000784704 0.0360963 0.0334201 40 2468 43 6.95648e+06 419795 706193. 2443.58 3.47 0.230064 0.200529 26914 176310 -1 2327 29 2377 3467 539275 160924 4.19956 4.19956 -161.71 -4.19956 0 0 926341. 3205.33 0.28 0.18 0.17 -1 -1 0.28 0.0443355 0.0387402 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 6.89 vpr 55.39 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30640 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 17.1 MiB 0.97 739 8336 2662 4258 1416 55.9 MiB 0.11 0.00 3.1065 -104.923 -3.1065 3.1065 0.83 0.000774669 0.000717319 0.0403232 0.0373846 44 1954 39 6.95648e+06 275038 787024. 2723.27 4.27 0.295627 0.256365 27778 195446 -1 1325 24 1368 1972 122291 31027 3.29527 3.29527 -111.798 -3.29527 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0352172 0.0307958 77 62 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 22.37 vpr 55.62 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30800 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 17.5 MiB 1.71 819 16473 6066 7302 3105 56.2 MiB 0.18 0.00 3.81039 -138.347 -3.81039 3.81039 0.88 0.000930868 0.000860998 0.0765249 0.0708316 48 2611 41 6.95648e+06 419795 865456. 2994.66 5.61 0.296659 0.260029 28354 207349 -1 2023 29 2304 3495 484791 115328 4.37806 4.37806 -155.925 -4.37806 0 0 1.05005e+06 3633.38 0.33 0.16 0.20 -1 -1 0.33 0.0490667 0.0427011 89 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.53 vpr 54.90 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30284 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 16.6 MiB 1.23 588 9529 3953 5280 296 55.1 MiB 0.10 0.00 3.02776 -101.68 -3.02776 3.02776 0.79 0.000618634 0.000572498 0.0402037 0.037264 38 2131 44 6.95648e+06 159232 678818. 2348.85 2.94 0.185263 0.161573 26626 170182 -1 1536 20 1072 1591 142914 31341 3.13237 3.13237 -111.806 -3.13237 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0250801 0.0219385 58 4 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 7.43 vpr 55.70 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 17.1 MiB 0.98 751 13335 4844 6817 1674 56.0 MiB 0.16 0.00 3.74945 -128.098 -3.74945 3.74945 0.79 0.000852275 0.000785717 0.0623362 0.057474 50 2338 33 6.95648e+06 332941 902133. 3121.57 3.02 0.24569 0.215181 28642 213929 -1 1646 23 1669 2164 231096 47396 3.82366 3.82366 -138.646 -3.82366 0 0 1.08113e+06 3740.92 0.33 0.10 0.20 -1 -1 0.33 0.0371394 0.0325067 81 92 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.30 vpr 55.45 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30152 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 16.9 MiB 2.42 613 11854 5235 6332 287 55.7 MiB 0.07 0.00 2.96105 -113.67 -2.96105 2.96105 0.63 0.000339502 0.000305861 0.027899 0.025549 44 2090 26 6.95648e+06 144757 787024. 2723.27 4.85 0.258853 0.223267 27778 195446 -1 1506 23 1524 2132 243246 49801 3.11862 3.11862 -126.977 -3.11862 0 0 997811. 3452.63 0.36 0.09 0.19 -1 -1 0.36 0.0289011 0.0255452 61 96 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.79 vpr 55.44 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30500 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 17.2 MiB 1.16 784 11983 4223 5778 1982 56.1 MiB 0.16 0.00 3.13882 -116.487 -3.13882 3.13882 0.78 0.000835086 0.000771907 0.0544219 0.050348 48 2200 27 6.95648e+06 347416 865456. 2994.66 2.42 0.226122 0.19826 28354 207349 -1 1848 22 1447 2175 233055 49045 3.64437 3.64437 -129.909 -3.64437 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0376366 0.0332042 84 65 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 10.73 vpr 55.86 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30860 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 17.8 MiB 1.43 961 18301 6218 9454 2629 56.2 MiB 0.23 0.00 4.52824 -160.34 -4.52824 4.52824 0.79 0.00102032 0.000945372 0.0878794 0.0815113 46 2966 28 6.95648e+06 477698 828058. 2865.25 4.52 0.298391 0.262926 28066 200906 -1 2355 22 2510 3753 383660 73024 4.96261 4.96261 -175.35 -4.96261 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0423281 0.0371419 104 96 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 7.28 vpr 54.87 MiB 0.02 6732 -1 -1 1 0.03 -1 -1 30332 -1 -1 10 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 16.2 MiB 0.49 395 8267 2975 4043 1249 54.8 MiB 0.08 0.00 2.20646 -76.6701 -2.20646 2.20646 0.81 0.000570316 0.000526696 0.0340817 0.0315539 38 1014 35 6.95648e+06 144757 678818. 2348.85 2.19 0.157934 0.136756 26626 170182 -1 808 18 542 640 49285 13329 2.20283 2.20283 -74.674 -2.20283 0 0 902133. 3121.57 0.28 0.05 0.18 -1 -1 0.28 0.0205239 0.0178708 45 56 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 13.85 vpr 55.15 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30424 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 16.5 MiB 1.57 505 9994 3801 4923 1270 55.1 MiB 0.11 0.00 3.20866 -106.336 -3.20866 3.20866 0.86 0.000659554 0.000608519 0.0453058 0.0419122 40 1599 27 6.95648e+06 173708 706193. 2443.58 1.97 0.182735 0.159535 26914 176310 -1 1426 21 1210 1755 189370 41303 3.00687 3.00687 -114.329 -3.00687 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0275717 0.0241042 58 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.79 vpr 55.14 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30044 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 16.7 MiB 0.26 594 9219 3126 4706 1387 55.3 MiB 0.15 0.00 2.93285 -111.664 -2.93285 2.93285 0.79 0.000671179 0.000617277 0.0438072 0.0405132 50 1586 28 6.95648e+06 144757 902133. 3121.57 2.27 0.166698 0.146482 28642 213929 -1 1439 19 1416 2281 215816 46389 2.99482 2.99482 -112.756 -2.99482 0 0 1.08113e+06 3740.92 0.33 0.09 0.20 -1 -1 0.33 0.0271733 0.0239274 65 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.50 vpr 54.84 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30580 -1 -1 15 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 16.5 MiB 0.48 415 9310 3976 4598 736 55.1 MiB 0.09 0.00 3.24096 -89.6096 -3.24096 3.24096 0.79 0.000578934 0.000536112 0.0382267 0.0354598 40 1616 44 6.95648e+06 217135 706193. 2443.58 2.16 0.171828 0.149067 26914 176310 -1 1253 23 1253 1648 153916 35930 3.06187 3.06187 -97.7737 -3.06187 0 0 926341. 3205.33 0.34 0.07 0.20 -1 -1 0.34 0.0236184 0.020583 56 34 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 10.90 vpr 55.50 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 17.5 MiB 1.20 849 10835 4559 6029 247 56.2 MiB 0.15 0.00 3.79924 -134.385 -3.79924 3.79924 0.80 0.0008812 0.000814552 0.0611561 0.056617 46 3184 31 6.95648e+06 188184 828058. 2865.25 2.56 0.212284 0.186593 28066 200906 -1 2502 24 2065 3666 431024 82895 4.27126 4.27126 -153.969 -4.27126 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.040107 0.035129 77 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 9.30 vpr 55.70 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30508 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 17.5 MiB 0.95 742 12512 4241 5927 2344 56.3 MiB 0.15 0.00 3.1116 -112.527 -3.1116 3.1116 0.79 0.000849585 0.000784736 0.0545678 0.0504513 40 2314 27 6.95648e+06 419795 706193. 2443.58 2.82 0.2316 0.202834 26914 176310 -1 1891 43 2995 4090 722606 253385 3.26557 3.26557 -124.08 -3.26557 0 0 926341. 3205.33 0.28 0.25 0.17 -1 -1 0.28 0.0629837 0.0546483 87 94 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 8.91 vpr 55.27 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30864 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 17.1 MiB 0.71 1062 15584 5717 7278 2589 55.7 MiB 0.21 0.00 4.46104 -158.567 -4.46104 4.46104 0.80 0.000883613 0.000817411 0.0764228 0.0707001 50 3112 23 6.99608e+06 323745 902133. 3121.57 2.49 0.25458 0.224244 28642 213929 -1 2334 20 2172 2554 259886 53091 4.94881 4.94881 -167.782 -4.94881 0 0 1.08113e+06 3740.92 0.33 0.10 0.22 -1 -1 0.33 0.0353156 0.0310932 130 96 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.16 vpr 55.75 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30632 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 17.3 MiB 1.29 1018 13610 5732 7207 671 56.0 MiB 0.18 0.00 4.50158 -148.332 -4.50158 4.50158 0.89 0.000824473 0.000761958 0.0662807 0.0613085 48 3345 36 6.99608e+06 294314 865456. 2994.66 18.75 0.50887 0.441344 28354 207349 -1 2686 33 2662 3779 726333 209050 4.88889 4.88889 -165.69 -4.88889 0 0 1.05005e+06 3633.38 0.33 0.22 0.20 -1 -1 0.33 0.0495323 0.0432001 117 91 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.15 vpr 54.96 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30412 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 16.8 MiB 0.91 1040 13610 5701 7488 421 55.7 MiB 0.18 0.00 3.59279 -128.627 -3.59279 3.59279 0.78 0.000810854 0.000749536 0.0653866 0.0605235 44 3009 38 6.99608e+06 264882 787024. 2723.27 2.47 0.228921 0.202482 27778 195446 -1 2233 22 1759 2058 212655 41848 3.75976 3.75976 -137.846 -3.75976 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.034652 0.0304284 106 65 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 16.62 vpr 55.16 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 16.9 MiB 0.68 806 14444 6101 7602 741 55.5 MiB 0.18 0.00 3.79615 -125.537 -3.79615 3.79615 0.78 0.000746753 0.000691117 0.0664706 0.061573 40 2587 24 6.99608e+06 264882 706193. 2443.58 2.96 0.218858 0.192649 26914 176310 -1 2236 31 2427 3542 431767 103734 4.28572 4.28572 -147.733 -4.28572 0 0 926341. 3205.33 0.28 0.15 0.17 -1 -1 0.28 0.0418492 0.0364793 89 34 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 10.57 vpr 55.29 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30300 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 16.9 MiB 0.56 871 12416 4669 6393 1354 55.8 MiB 0.18 0.00 4.27644 -154.345 -4.27644 4.27644 0.78 0.000818598 0.000758191 0.0628954 0.0582851 56 2640 24 6.99608e+06 220735 973134. 3367.25 3.33 0.225288 0.198057 29794 239141 -1 2041 22 2151 3328 323663 74894 4.34425 4.34425 -156.25 -4.34425 0 0 1.19926e+06 4149.71 0.36 0.12 0.23 -1 -1 0.36 0.035964 0.0317667 93 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 8.55 vpr 55.40 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30504 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 17.3 MiB 0.55 1298 16069 5589 8587 1893 55.9 MiB 0.22 0.00 3.60699 -134.626 -3.60699 3.60699 0.78 0.000833892 0.00077115 0.0662748 0.0613165 44 3440 31 6.99608e+06 441471 787024. 2723.27 21.31 0.419312 0.365214 27778 195446 -1 2748 20 2148 3100 337734 62228 3.51721 3.51721 -144.234 -3.51721 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0336633 0.029645 117 64 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 8.63 vpr 54.95 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30600 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 16.5 MiB 1.28 620 8289 3348 4414 527 55.1 MiB 0.09 0.00 3.30124 -103.988 -3.30124 3.30124 0.79 0.000618793 0.000572897 0.0353647 0.0328012 40 1942 39 6.99608e+06 220735 706193. 2443.58 8.46 0.315399 0.271416 26914 176310 -1 1737 21 1506 2153 256688 54350 3.32081 3.32081 -116.197 -3.32081 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0253946 0.0221646 68 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 6.20 vpr 54.94 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 16.6 MiB 0.45 708 9368 3795 5080 493 55.3 MiB 0.10 0.00 2.88485 -101.173 -2.88485 2.88485 0.88 0.000717694 0.000662574 0.0371792 0.03428 46 2364 34 6.99608e+06 250167 828058. 2865.25 4.82 0.200264 0.174555 28066 200906 -1 1729 34 1470 2247 334782 130138 3.09392 3.09392 -114.079 -3.09392 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0444395 0.0387578 77 4 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.61 vpr 55.21 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30264 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 16.9 MiB 2.58 865 11366 4429 5807 1130 55.6 MiB 0.14 0.00 3.3156 -116.953 -3.3156 3.3156 0.78 0.000716204 0.000662093 0.0518035 0.0479248 44 2727 41 6.99608e+06 220735 787024. 2723.27 3.17 0.220554 0.193072 27778 195446 -1 1903 33 1749 2224 309870 96540 3.06027 3.06027 -119.616 -3.06027 0 0 997811. 3452.63 0.31 0.13 0.19 -1 -1 0.31 0.0426065 0.0370096 96 85 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 10.18 vpr 55.10 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 16.6 MiB 0.56 668 10346 4043 5155 1148 55.5 MiB 0.13 0.00 3.58059 -133.895 -3.58059 3.58059 0.79 0.000698466 0.000646114 0.0469519 0.0434681 42 2630 45 6.99608e+06 191304 744469. 2576.02 9.95 0.277336 0.239978 27202 183097 -1 1710 20 1619 2027 212307 43301 3.47486 3.47486 -137.882 -3.47486 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0276594 0.0242402 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.86 vpr 55.15 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 16.8 MiB 2.11 858 10835 4264 5113 1458 55.3 MiB 0.14 0.00 3.85932 -133.017 -3.85932 3.85932 0.79 0.000698265 0.000646062 0.0491823 0.0455265 46 2286 23 6.99608e+06 220735 828058. 2865.25 4.60 0.257069 0.223431 28066 200906 -1 1884 18 1438 1958 185223 36063 3.4143 3.4143 -128.878 -3.4143 0 0 1.01997e+06 3529.29 0.33 0.08 0.19 -1 -1 0.33 0.0259538 0.0228355 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.16 vpr 54.98 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30600 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 16.8 MiB 0.74 1078 12030 4277 6214 1539 55.6 MiB 0.15 0.00 3.0712 -121.401 -3.0712 3.0712 0.81 0.000709088 0.00065414 0.0541915 0.050056 40 2549 25 6.99608e+06 206020 706193. 2443.58 4.43 0.28643 0.248715 26914 176310 -1 2260 19 1422 1534 184570 35837 3.14827 3.14827 -126.647 -3.14827 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0273747 0.0240557 91 65 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.68 vpr 55.19 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 17.2 MiB 0.89 883 7132 1837 4428 867 55.9 MiB 0.12 0.00 3.50359 -126.552 -3.50359 3.50359 0.80 0.000818331 0.00075737 0.0368212 0.0341498 52 2492 28 6.99608e+06 235451 926341. 3205.33 5.28 0.316196 0.274001 29218 227130 -1 1599 23 1879 2556 241557 51204 3.27256 3.27256 -119.232 -3.27256 0 0 1.14541e+06 3963.36 0.35 0.10 0.21 -1 -1 0.35 0.036145 0.0317115 101 58 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 10.32 vpr 55.22 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30488 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 17.2 MiB 0.82 1134 14123 4441 7724 1958 55.8 MiB 0.18 0.00 4.28564 -153.93 -4.28564 4.28564 0.78 0.000841713 0.000777902 0.0693204 0.0641743 54 2714 33 6.99608e+06 279598 949917. 3286.91 4.95 0.336516 0.294186 29506 232905 -1 2089 26 2435 3170 300276 66640 4.76721 4.76721 -168.357 -4.76721 0 0 1.17392e+06 4061.99 0.35 0.12 0.22 -1 -1 0.35 0.0413331 0.0362217 112 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 8.61 vpr 54.89 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30632 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 16.4 MiB 2.09 572 11293 4723 5996 574 55.0 MiB 0.12 0.00 2.92195 -96.6009 -2.92195 2.92195 0.79 0.000627086 0.00058011 0.0470017 0.0435443 44 1822 40 6.99608e+06 206020 787024. 2723.27 5.05 0.29037 0.251038 27778 195446 -1 1289 23 1152 1611 122385 30022 2.78502 2.78502 -102.414 -2.78502 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0277765 0.0242217 67 29 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 9.37 vpr 55.52 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 17.3 MiB 1.94 1040 13324 4763 6768 1793 55.8 MiB 0.18 0.00 3.68279 -132.173 -3.68279 3.68279 0.78 0.000832379 0.00076936 0.0677301 0.062664 56 2559 23 6.99608e+06 235451 973134. 3367.25 5.52 0.344615 0.300922 29794 239141 -1 2347 19 2238 3206 414239 80518 3.72241 3.72241 -142.466 -3.72241 0 0 1.19926e+06 4149.71 0.37 0.12 0.23 -1 -1 0.37 0.0326959 0.028858 106 63 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 6.53 vpr 55.24 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30328 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 17.0 MiB 1.07 1122 6731 1649 4394 688 55.9 MiB 0.10 0.00 3.32994 -131.897 -3.32994 3.32994 0.78 0.000806076 0.000745858 0.033999 0.0315243 38 3068 44 6.99608e+06 250167 678818. 2348.85 4.11 0.225573 0.196458 26626 170182 -1 2561 20 2056 2574 269484 51224 3.38681 3.38681 -140.304 -3.38681 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0324532 0.0286157 99 57 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.87 vpr 55.14 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30196 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 17.0 MiB 0.71 871 13856 5887 7726 243 55.8 MiB 0.17 0.00 3.39034 -128.572 -3.39034 3.39034 0.78 0.000731326 0.000676258 0.0638891 0.0591494 44 3126 37 6.99608e+06 206020 787024. 2723.27 2.49 0.227435 0.199601 27778 195446 -1 2119 20 1605 1945 186185 39147 3.26246 3.26246 -131.653 -3.26246 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0296604 0.0259959 91 65 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 8.74 vpr 54.66 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30152 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 16.2 MiB 2.03 536 9041 3932 4796 313 54.8 MiB 0.09 0.00 2.34646 -88.6787 -2.34646 2.34646 0.79 0.000550523 0.000508484 0.0344638 0.03189 36 1464 23 6.99608e+06 161872 648988. 2245.63 2.29 0.144604 0.125787 26050 158493 -1 1249 21 859 941 99661 21651 2.31283 2.31283 -92.2454 -2.31283 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0224178 0.0194922 56 34 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 7.94 vpr 54.93 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30364 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 16.9 MiB 2.11 1018 11532 3380 6660 1492 55.7 MiB 0.14 0.00 3.58639 -133.629 -3.58639 3.58639 0.79 0.000716747 0.000662826 0.0525206 0.0486252 40 2554 24 6.99608e+06 220735 706193. 2443.58 2.58 0.202539 0.177844 26914 176310 -1 2340 19 1636 1976 242345 46544 3.91001 3.91001 -147.151 -3.91001 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.027486 0.0241342 91 64 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 6.86 vpr 55.23 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30144 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 16.9 MiB 0.45 1089 12759 4547 6573 1639 55.8 MiB 0.16 0.00 4.04748 -146.851 -4.04748 4.04748 0.84 0.000800455 0.000740068 0.0562819 0.0521585 44 2717 49 6.99608e+06 338461 787024. 2723.27 2.24 0.209932 0.18462 27778 195446 -1 2303 21 2013 2736 323338 58160 4.0578 4.0578 -154.555 -4.0578 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0328858 0.0289198 97 34 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 10.46 vpr 55.48 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30588 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 17.7 MiB 1.24 1280 15206 4884 7262 3060 56.0 MiB 0.21 0.00 4.01908 -141.768 -4.01908 4.01908 0.80 0.000910988 0.000843604 0.0770722 0.071437 44 3751 45 6.99608e+06 323745 787024. 2723.27 2.74 0.269675 0.236837 27778 195446 -1 2635 21 2297 2593 255916 49641 4.11066 4.11066 -145.12 -4.11066 0 0 997811. 3452.63 0.32 0.10 0.19 -1 -1 0.32 0.0383008 0.0336342 138 124 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 6.59 vpr 54.59 MiB 0.04 6824 -1 -1 1 0.02 -1 -1 30504 -1 -1 15 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 16.1 MiB 0.68 401 7217 2934 3827 456 54.6 MiB 0.06 0.00 2.7074 -79.2163 -2.7074 2.7074 0.78 0.000477636 0.000440903 0.0243269 0.022479 38 1353 26 6.99608e+06 220735 678818. 2348.85 3.81 0.153629 0.132466 26626 170182 -1 988 17 651 764 74091 18456 2.58187 2.58187 -84.1057 -2.58187 0 0 902133. 3121.57 0.27 0.05 0.15 -1 -1 0.27 0.0166123 0.0145338 52 30 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 6.24 vpr 54.96 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30336 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 16.5 MiB 0.76 698 9036 3669 4978 389 55.4 MiB 0.11 0.00 3.97238 -133.231 -3.97238 3.97238 0.79 0.000745139 0.000688106 0.0449417 0.0415626 54 2365 30 6.99608e+06 176588 949917. 3286.91 2.63 0.200697 0.176046 29506 232905 -1 1722 22 1527 2422 223470 49995 3.98506 3.98506 -136.197 -3.98506 0 0 1.17392e+06 4061.99 0.36 0.09 0.22 -1 -1 0.36 0.032347 0.0283937 75 3 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 6.81 vpr 54.48 MiB 0.04 6556 -1 -1 1 0.02 -1 -1 30344 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.1 MiB 0.27 736 9906 3603 5031 1272 54.6 MiB 0.09 0.00 2.06111 -84.6894 -2.06111 2.06111 0.78 0.000509887 0.000470739 0.035845 0.0331323 34 1720 22 6.99608e+06 117725 618332. 2139.56 1.46 0.135458 0.118299 25762 151098 -1 1528 20 763 967 113677 21734 1.77772 1.77772 -89.6008 -1.77772 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0199364 0.0174292 44 3 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 8.56 vpr 55.11 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 17.1 MiB 1.14 836 12681 5269 6945 467 55.9 MiB 0.16 0.00 3.87925 -141.78 -3.87925 3.87925 0.78 0.0008036 0.000743732 0.0614222 0.0569307 46 2793 28 6.99608e+06 250167 828058. 2865.25 4.97 0.309316 0.270088 28066 200906 -1 2089 23 2071 2884 285544 57782 4.31872 4.31872 -156.909 -4.31872 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0356241 0.0312759 95 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.74 vpr 55.08 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30124 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1064 14375 4737 7721 1917 55.5 MiB 0.16 0.00 2.93295 -116.62 -2.93295 2.93295 0.79 0.000753641 0.000696588 0.0550225 0.050916 36 2925 47 6.99608e+06 412039 648988. 2245.63 8.69 0.333697 0.29033 26050 158493 -1 2389 18 1549 2193 247704 46357 3.02647 3.02647 -128.363 -3.02647 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.028195 0.024868 87 3 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 10.11 vpr 55.21 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 17.3 MiB 0.76 1077 13105 3562 8179 1364 56.0 MiB 0.19 0.00 3.82425 -139.818 -3.82425 3.82425 0.85 0.000841982 0.000778531 0.063052 0.0584115 44 3564 40 6.99608e+06 309029 787024. 2723.27 2.52 0.216633 0.190875 27778 195446 -1 2709 23 2470 3420 381459 71575 4.05842 4.05842 -153.091 -4.05842 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.037265 0.0327318 115 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 7.38 vpr 55.12 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30232 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 16.5 MiB 1.15 701 9397 3869 5271 257 55.1 MiB 0.11 0.00 2.9841 -107.493 -2.9841 2.9841 0.83 0.000680163 0.000630101 0.0423366 0.039166 38 2528 35 6.99608e+06 161872 678818. 2348.85 2.48 0.164027 0.143549 26626 170182 -1 1644 18 1357 1844 152866 33566 2.86632 2.86632 -118.389 -2.86632 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0246159 0.021614 72 34 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 8.50 vpr 54.89 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30248 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 16.8 MiB 7.02 650 7975 2399 4401 1175 55.4 MiB 0.10 0.00 3.55679 -118.022 -3.55679 3.55679 0.79 0.000671516 0.000621252 0.0364854 0.0338027 46 1982 32 6.99608e+06 191304 828058. 2865.25 3.69 0.183147 0.159456 28066 200906 -1 1490 20 1368 1939 167633 36693 3.59411 3.59411 -129.01 -3.59411 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.0266267 0.0233336 73 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.19 vpr 54.98 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30256 -1 -1 15 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 16.5 MiB 1.07 739 7975 3247 4371 357 55.2 MiB 0.09 0.00 3.69125 -116.127 -3.69125 3.69125 0.78 0.000640376 0.000593346 0.0344748 0.0319428 36 2500 44 6.99608e+06 220735 648988. 2245.63 2.77 0.162899 0.14184 26050 158493 -1 1976 20 1288 1933 207014 41660 3.47006 3.47006 -124.036 -3.47006 0 0 828058. 2865.25 0.29 0.08 0.14 -1 -1 0.29 0.0234866 0.0208271 72 34 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.23 vpr 54.71 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.6 MiB 0.23 696 7204 2957 4121 126 55.1 MiB 0.09 0.00 2.86245 -113.51 -2.86245 2.86245 0.78 0.000673445 0.000623008 0.0346668 0.0321078 40 2274 37 6.99608e+06 147157 706193. 2443.58 2.32 0.178264 0.155237 26914 176310 -1 1777 22 1537 2365 274166 52976 3.23592 3.23592 -128.876 -3.23592 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0286983 0.0251354 64 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 8.00 vpr 54.88 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 16.8 MiB 0.66 709 9540 3934 5278 328 55.3 MiB 0.11 0.00 2.94395 -107.519 -2.94395 2.94395 0.79 0.000680309 0.000629017 0.0418176 0.0387363 46 2300 50 6.99608e+06 220735 828058. 2865.25 2.79 0.203949 0.177527 28066 200906 -1 1561 18 1293 1675 138709 29405 2.88352 2.88352 -107.503 -2.88352 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0248776 0.021853 77 34 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 7.95 vpr 55.26 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30140 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 16.8 MiB 2.69 930 10835 4554 5858 423 55.6 MiB 0.13 0.00 2.88685 -103.645 -2.88685 2.88685 0.79 0.000681336 0.000630345 0.0478727 0.0443127 38 2426 29 6.99608e+06 235451 678818. 2348.85 4.14 0.268276 0.232363 26626 170182 -1 2038 17 1401 1714 181805 35323 2.85732 2.85732 -111.228 -2.85732 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.024161 0.0212595 86 61 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 24.94 vpr 55.41 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 17.2 MiB 0.97 1138 15273 6065 7495 1713 56.0 MiB 0.22 0.01 3.90815 -143.373 -3.90815 3.90815 0.79 0.000904812 0.000838476 0.0789201 0.0731428 50 3328 39 6.99608e+06 294314 902133. 3121.57 5.91 0.435481 0.379897 28642 213929 -1 2677 24 2319 3429 348618 67844 3.91781 3.91781 -150.494 -3.91781 0 0 1.08113e+06 3740.92 0.33 0.13 0.21 -1 -1 0.33 0.0419549 0.0368554 106 29 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 9.43 vpr 55.58 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30408 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 17.2 MiB 1.00 999 10762 3395 5388 1979 55.9 MiB 0.15 0.00 4.20458 -152.083 -4.20458 4.20458 0.79 0.000847274 0.000784203 0.0544985 0.0505096 54 3187 36 6.99608e+06 264882 949917. 3286.91 3.73 0.248155 0.217918 29506 232905 -1 2168 19 2109 2856 331174 67804 4.06765 4.06765 -158.129 -4.06765 0 0 1.17392e+06 4061.99 0.35 0.11 0.22 -1 -1 0.35 0.0325117 0.0286864 110 65 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.67 vpr 55.05 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30520 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 16.8 MiB 0.73 1070 8867 2185 5933 749 55.5 MiB 0.11 0.00 3.49385 -125.494 -3.49385 3.49385 0.79 0.000731823 0.000677187 0.0410801 0.0380376 38 2478 46 6.99608e+06 235451 678818. 2348.85 3.22 0.214159 0.186409 26626 170182 -1 2114 21 1372 1414 141321 27540 3.57046 3.57046 -129.802 -3.57046 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0300994 0.0263746 99 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.77 vpr 55.43 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30340 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 17.3 MiB 0.65 1182 9006 2249 6265 492 55.9 MiB 0.07 0.00 3.66135 -134.693 -3.66135 3.66135 0.63 0.000350252 0.000320064 0.0202285 0.018572 40 3046 27 6.99608e+06 264882 706193. 2443.58 2.36 0.160809 0.139931 26914 176310 -1 2796 21 1957 2642 334843 63206 3.85696 3.85696 -149.597 -3.85696 0 0 926341. 3205.33 0.30 0.12 0.18 -1 -1 0.30 0.0349396 0.0308106 105 64 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 9.99 vpr 55.52 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30492 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 17.6 MiB 1.06 1281 17663 7641 9474 548 55.9 MiB 0.25 0.00 4.62587 -160.146 -4.62587 4.62587 0.78 0.000905339 0.000837927 0.0887671 0.0822045 46 3543 42 6.99608e+06 338461 828058. 2865.25 2.56 0.26307 0.23177 28066 200906 -1 2499 20 2419 2740 262029 50973 4.39645 4.39645 -157.625 -4.39645 0 0 1.01997e+06 3529.29 0.32 0.10 0.19 -1 -1 0.32 0.0320994 0.0285421 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 19.76 vpr 55.57 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 17.3 MiB 2.90 1159 10762 4075 5172 1515 56.0 MiB 0.16 0.00 4.92973 -159.817 -4.92973 4.92973 0.80 0.000849501 0.000786035 0.0545064 0.0505373 46 3007 22 6.99608e+06 279598 828058. 2865.25 4.82 0.301549 0.262843 28066 200906 -1 2331 20 2014 2627 247488 48142 4.4641 4.4641 -155.515 -4.4641 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0338785 0.0298284 117 90 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.83 vpr 55.28 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30360 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1059 13763 5785 7510 468 55.8 MiB 0.18 0.00 3.58185 -130.714 -3.58185 3.58185 0.79 0.000819379 0.000758015 0.0654758 0.0606299 46 2851 46 6.99608e+06 294314 828058. 2865.25 3.11 0.258376 0.226813 28066 200906 -1 2234 20 2061 2771 251252 50775 3.41986 3.41986 -132.529 -3.41986 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0329851 0.0290712 107 64 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.36 vpr 55.07 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30424 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.3 MiB 0.81 1271 6556 1686 3783 1087 56.0 MiB 0.10 0.00 3.81927 -146.587 -3.81927 3.81927 0.78 0.000836533 0.00077453 0.034351 0.031863 40 3275 35 6.99608e+06 250167 706193. 2443.58 3.76 0.222374 0.194076 26914 176310 -1 2828 20 2191 2847 376679 72564 4.26672 4.26672 -166.291 -4.26672 0 0 926341. 3205.33 0.28 0.12 0.18 -1 -1 0.28 0.0337306 0.0297489 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 7.18 vpr 55.64 MiB 0.03 7288 -1 -1 1 0.04 -1 -1 30668 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 17.9 MiB 1.91 1530 16529 5778 8459 2292 56.1 MiB 0.25 0.00 4.81093 -174.639 -4.81093 4.81093 0.79 0.000999544 0.00092548 0.0908788 0.0842388 48 4110 30 6.99608e+06 323745 865456. 2994.66 5.40 0.424686 0.370829 28354 207349 -1 3371 19 2979 4138 453362 89116 5.0453 5.0453 -187.875 -5.0453 0 0 1.05005e+06 3633.38 0.32 0.14 0.20 -1 -1 0.32 0.0384021 0.033865 139 96 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 7.80 vpr 54.80 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30560 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 16.6 MiB 0.82 802 9996 3771 4383 1842 55.3 MiB 0.12 0.00 3.1395 -118.304 -3.1395 3.1395 0.78 0.000683792 0.000632719 0.0451872 0.0418956 36 2322 38 6.99608e+06 191304 648988. 2245.63 7.37 0.307497 0.266659 26050 158493 -1 1820 20 1439 1763 180014 35389 3.41577 3.41577 -128.916 -3.41577 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0272173 0.0238714 75 34 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 7.16 vpr 55.17 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 17.3 MiB 0.65 1237 14606 4845 8003 1758 55.9 MiB 0.21 0.00 4.54014 -162.571 -4.54014 4.54014 0.80 0.00083339 0.000770275 0.0729598 0.067571 44 3538 50 6.99608e+06 264882 787024. 2723.27 4.13 0.276961 0.243518 27778 195446 -1 2768 20 1790 2287 279217 49355 4.54181 4.54181 -169.774 -4.54181 0 0 997811. 3452.63 0.33 0.11 0.19 -1 -1 0.33 0.0364555 0.0324153 106 64 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.81 vpr 55.35 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30656 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 17.1 MiB 1.07 1279 13077 3808 7089 2180 55.8 MiB 0.18 0.00 3.54953 -133.609 -3.54953 3.54953 0.80 0.000829294 0.000766954 0.0625368 0.0579356 44 3368 31 6.99608e+06 294314 787024. 2723.27 2.84 0.240184 0.211316 27778 195446 -1 2664 19 1799 2549 251066 47859 3.65646 3.65646 -143.702 -3.65646 0 0 997811. 3452.63 0.35 0.10 0.19 -1 -1 0.35 0.0320878 0.0282413 108 63 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.13 vpr 55.20 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30368 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 16.9 MiB 0.78 797 9368 3826 5299 243 55.4 MiB 0.13 0.00 3.54729 -133.832 -3.54729 3.54729 0.78 0.000777077 0.000710451 0.0469891 0.043517 44 2972 48 6.99608e+06 191304 787024. 2723.27 3.46 0.208314 0.181912 27778 195446 -1 2156 20 1886 3136 314647 61290 3.89876 3.89876 -153.648 -3.89876 0 0 997811. 3452.63 0.36 0.11 0.19 -1 -1 0.36 0.031334 0.0276376 77 3 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.24 vpr 55.43 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30488 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 17.3 MiB 1.22 1139 10883 2905 7208 770 56.0 MiB 0.16 0.00 3.32994 -127.882 -3.32994 3.32994 0.78 0.000855465 0.000791677 0.0549646 0.0509138 44 3437 31 6.99608e+06 279598 787024. 2723.27 2.36 0.223053 0.195517 27778 195446 -1 2380 32 2331 2753 360000 92498 3.42311 3.42311 -133.503 -3.42311 0 0 997811. 3452.63 0.31 0.14 0.19 -1 -1 0.31 0.0495465 0.0432337 120 96 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.39 vpr 55.48 MiB 0.04 6968 -1 -1 1 0.04 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 17.2 MiB 0.97 1139 12528 3436 7246 1846 55.9 MiB 0.18 0.00 3.59669 -136.453 -3.59669 3.59669 0.78 0.000825144 0.000763744 0.0601064 0.0556941 40 3519 37 6.99608e+06 294314 706193. 2443.58 3.91 0.242993 0.213034 26914 176310 -1 2884 21 2193 3040 368922 71970 4.21416 4.21416 -156.411 -4.21416 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0344224 0.0302605 106 61 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.99 vpr 55.69 MiB 0.02 7024 -1 -1 1 0.04 -1 -1 30580 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 17.3 MiB 0.77 1314 14431 4781 7561 2089 55.9 MiB 0.21 0.00 3.61639 -141.899 -3.61639 3.61639 0.79 0.000841496 0.000777917 0.0728796 0.0674959 44 3289 26 6.99608e+06 250167 787024. 2723.27 4.97 0.358938 0.313417 27778 195446 -1 2618 32 2384 2887 424659 156961 3.60816 3.60816 -144.298 -3.60816 0 0 997811. 3452.63 0.31 0.17 0.19 -1 -1 0.31 0.0486787 0.0425946 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.83 vpr 55.09 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 16.9 MiB 1.01 813 11432 3614 6147 1671 55.7 MiB 0.17 0.00 3.93015 -141.517 -3.93015 3.93015 0.81 0.000801371 0.000741563 0.0646736 0.0599933 48 3075 30 6.99608e+06 235451 865456. 2994.66 3.88 0.239054 0.210352 28354 207349 -1 2415 23 2024 2864 370121 75748 4.22772 4.22772 -155.148 -4.22772 0 0 1.05005e+06 3633.38 0.33 0.12 0.20 -1 -1 0.33 0.0356123 0.0312685 94 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 9.79 vpr 55.21 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30656 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.2 MiB 0.87 930 14500 5516 6956 2028 55.8 MiB 0.19 0.00 3.81585 -138.808 -3.81585 3.81585 0.80 0.000844856 0.000782207 0.0713566 0.0660691 44 3535 46 6.99608e+06 264882 787024. 2723.27 2.92 0.267138 0.234963 27778 195446 -1 2358 22 2319 2747 298113 59116 4.26372 4.26372 -159.191 -4.26372 0 0 997811. 3452.63 0.39 0.12 0.19 -1 -1 0.39 0.0359555 0.0316938 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.03 vpr 55.50 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30420 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 17.5 MiB 1.37 1399 14035 5589 6713 1733 55.8 MiB 0.19 0.00 3.97768 -141.845 -3.97768 3.97768 0.79 0.000897227 0.000830563 0.0708138 0.0654624 44 3644 30 6.99608e+06 323745 787024. 2723.27 2.73 0.259985 0.227783 27778 195446 -1 2886 20 2066 2402 271623 49819 3.74475 3.74475 -145.215 -3.74475 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.0369284 0.0326362 132 122 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 7.57 vpr 55.73 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30460 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.7 MiB 1.04 1318 15273 5215 8174 1884 55.9 MiB 0.21 0.00 3.73195 -141.182 -3.73195 3.73195 0.78 0.000872344 0.000806655 0.0765692 0.0708662 40 3816 45 6.99608e+06 294314 706193. 2443.58 4.12 0.280044 0.245668 26914 176310 -1 3467 26 2915 4053 580002 121440 4.21172 4.21172 -164.592 -4.21172 0 0 926341. 3205.33 0.28 0.17 0.17 -1 -1 0.28 0.0424717 0.0371654 126 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.63 vpr 54.98 MiB 0.03 6872 -1 -1 1 0.04 -1 -1 30728 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 16.7 MiB 0.47 921 12528 4814 6023 1691 55.3 MiB 0.16 0.00 2.98795 -120.412 -2.98795 2.98795 0.81 0.000690659 0.00063882 0.0549701 0.0509235 48 2241 35 6.99608e+06 206020 865456. 2994.66 4.87 0.275598 0.240027 28354 207349 -1 1982 19 1395 1911 228326 43620 3.07962 3.07962 -125.336 -3.07962 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.02656 0.0233332 80 34 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 9.20 vpr 55.22 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 17.3 MiB 0.91 1095 11776 4100 5415 2261 55.9 MiB 0.15 0.00 3.80663 -140.003 -3.80663 3.80663 0.78 0.000767583 0.000709602 0.0552268 0.0511051 44 3191 47 6.99608e+06 235451 787024. 2723.27 2.77 0.211202 0.185 27778 195446 -1 2428 21 2011 2384 299055 54121 3.795 3.795 -144.367 -3.795 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0317883 0.0278683 108 94 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 8.20 vpr 55.45 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30788 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 17.6 MiB 0.85 1231 15273 6501 8321 451 55.9 MiB 0.22 0.00 4.57343 -162.846 -4.57343 4.57343 0.79 0.000959735 0.000887537 0.0837147 0.077519 50 3705 35 6.99608e+06 294314 902133. 3121.57 19.44 0.509264 0.443602 28642 213929 -1 2951 22 2874 3977 465898 87229 4.89726 4.89726 -180.675 -4.89726 0 0 1.08113e+06 3740.92 0.33 0.14 0.20 -1 -1 0.33 0.0413422 0.0363595 126 65 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.99 vpr 55.20 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.60 1100 10916 2969 6188 1759 55.7 MiB 0.16 0.00 3.58059 -138.842 -3.58059 3.58059 0.78 0.000797146 0.000736504 0.0535641 0.0495966 40 2668 48 6.99608e+06 235451 706193. 2443.58 2.57 0.236475 0.206697 26914 176310 -1 2470 23 1953 2538 327382 66029 3.79842 3.79842 -146.132 -3.79842 0 0 926341. 3205.33 0.31 0.12 0.17 -1 -1 0.31 0.0352238 0.0310399 93 34 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 7.91 vpr 55.06 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30264 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 16.7 MiB 0.70 716 11804 3687 5992 2125 55.1 MiB 0.13 0.00 3.75245 -123.293 -3.75245 3.75245 0.78 0.000665094 0.0006151 0.044094 0.0408436 38 2328 50 6.99608e+06 353176 678818. 2348.85 9.53 0.319761 0.276445 26626 170182 -1 1809 20 1563 2199 219517 45789 3.64546 3.64546 -134.834 -3.64546 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0266638 0.0233581 80 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.12 vpr 55.98 MiB 0.03 7464 -1 -1 1 0.04 -1 -1 30980 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57612 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 18.0 MiB 0.83 1504 15883 5797 7858 2228 56.3 MiB 0.26 0.00 5.34997 -188.353 -5.34997 5.34997 0.79 0.00104096 0.000964227 0.0883615 0.0819029 48 4382 30 6.99608e+06 353176 865456. 2994.66 4.16 0.313924 0.276556 28354 207349 -1 3343 24 3596 4389 527266 102534 6.19829 6.19829 -212.066 -6.19829 0 0 1.05005e+06 3633.38 0.35 0.16 0.20 -1 -1 0.35 0.0475126 0.0416903 159 127 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.96 vpr 55.31 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30468 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.66 938 15044 6550 8115 379 55.8 MiB 0.19 0.00 4.27644 -157.663 -4.27644 4.27644 0.78 0.000806083 0.000745918 0.0736145 0.0681729 46 2727 27 6.99608e+06 235451 828058. 2865.25 2.43 0.236945 0.208944 28066 200906 -1 2068 21 2208 2839 254160 49760 4.18671 4.18671 -160.824 -4.18671 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0334919 0.0294582 92 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 6.01 vpr 54.68 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30392 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 16.4 MiB 0.31 660 12763 5275 7138 350 55.1 MiB 0.14 0.00 2.98775 -114.509 -2.98775 2.98775 0.78 0.000672643 0.000622048 0.04615 0.0427428 52 1866 50 6.99608e+06 353176 926341. 3205.33 4.75 0.276925 0.240714 29218 227130 -1 1420 21 1418 2017 205194 39328 2.89002 2.89002 -115.259 -2.89002 0 0 1.14541e+06 3963.36 0.35 0.08 0.22 -1 -1 0.35 0.027169 0.0237951 70 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.04 vpr 55.32 MiB 0.06 7252 -1 -1 1 0.04 -1 -1 31000 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 17.4 MiB 0.73 1143 13432 5563 7207 662 56.2 MiB 0.20 0.00 4.46895 -161.038 -4.46895 4.46895 0.79 0.000928136 0.000860512 0.0738599 0.0685412 46 3873 37 6.99608e+06 264882 828058. 2865.25 5.17 0.287685 0.253001 28066 200906 -1 2625 23 2724 3857 379667 75631 4.76691 4.76691 -175.058 -4.76691 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0410597 0.0360165 112 34 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.94 vpr 54.79 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.6 MiB 0.29 625 10614 4416 5947 251 55.1 MiB 0.12 0.00 2.85145 -111.794 -2.85145 2.85145 0.82 0.000665259 0.00061498 0.0479333 0.0443602 40 2193 47 6.99608e+06 147157 706193. 2443.58 3.07 0.205423 0.179208 26914 176310 -1 1788 23 1506 2283 265685 53379 3.55877 3.55877 -131.907 -3.55877 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0306249 0.0268368 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.47 vpr 55.04 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30132 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 16.7 MiB 0.69 755 9857 4076 5498 283 55.2 MiB 0.12 0.00 3.30794 -118.735 -3.30794 3.30794 0.78 0.00066877 0.000618456 0.0427743 0.0396095 44 2282 49 6.99608e+06 220735 787024. 2723.27 2.76 0.208552 0.182013 27778 195446 -1 1673 24 1668 2164 209991 40161 3.18821 3.18821 -120.1 -3.18821 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0307652 0.0268587 74 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.99 vpr 55.42 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30308 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 17.2 MiB 1.59 1003 15481 6003 6865 2613 55.8 MiB 0.20 0.00 3.85703 -126.704 -3.85703 3.85703 0.79 0.000807511 0.000746855 0.0742916 0.0687541 46 3234 28 6.99608e+06 294314 828058. 2865.25 3.76 0.252541 0.223185 28066 200906 -1 2248 20 1778 2388 235772 48596 3.781 3.781 -129.295 -3.781 0 0 1.01997e+06 3529.29 0.31 0.10 0.18 -1 -1 0.31 0.0322989 0.0284125 113 88 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 8.58 vpr 55.23 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30664 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.3 MiB 0.96 1068 14144 5407 6800 1937 56.1 MiB 0.19 0.00 4.29664 -157.784 -4.29664 4.29664 0.79 0.000838788 0.000776128 0.0707372 0.0654469 46 2924 33 6.99608e+06 264882 828058. 2865.25 2.33 0.216682 0.191397 28066 200906 -1 2220 21 2376 3177 329018 65168 4.80451 4.80451 -171.198 -4.80451 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0354051 0.0312378 109 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.44 vpr 55.23 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30652 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.2 MiB 1.00 1151 6846 1472 4993 381 56.0 MiB 0.12 0.00 4.30354 -157.84 -4.30354 4.30354 0.79 0.000850647 0.000788186 0.0358888 0.0332978 46 3310 24 6.99608e+06 264882 828058. 2865.25 5.08 0.311805 0.27087 28066 200906 -1 2777 23 2721 3697 430936 81233 4.7832 4.7832 -179.954 -4.7832 0 0 1.01997e+06 3529.29 0.34 0.13 0.19 -1 -1 0.34 0.0355981 0.0316401 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 15.40 vpr 54.93 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 16.9 MiB 0.63 792 12585 5306 6906 373 55.7 MiB 0.15 0.00 3.44424 -128.433 -3.44424 3.44424 0.79 0.000745224 0.000689696 0.057736 0.0534515 46 2581 47 6.99608e+06 220735 828058. 2865.25 3.49 0.243774 0.213272 28066 200906 -1 1896 19 1587 1758 194159 42467 3.37581 3.37581 -131.824 -3.37581 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0283804 0.0249812 92 65 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 9.31 vpr 55.08 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 30584 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 16.9 MiB 2.25 885 11260 4668 6241 351 55.7 MiB 0.14 0.00 3.46644 -123.995 -3.46644 3.46644 0.79 0.000739563 0.000683766 0.0513213 0.0475116 48 2570 23 6.99608e+06 250167 865456. 2994.66 4.92 0.290519 0.251508 28354 207349 -1 2043 20 1781 2203 271135 54431 3.29451 3.29451 -123.936 -3.29451 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0293387 0.0257225 102 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.10 vpr 55.16 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30488 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 16.8 MiB 1.20 904 12506 5230 6653 623 55.5 MiB 0.16 0.00 3.42074 -117.96 -3.42074 3.42074 0.86 0.000792567 0.00073317 0.0595907 0.0551865 44 3125 40 6.99608e+06 279598 787024. 2723.27 3.62 0.245102 0.215031 27778 195446 -1 2179 19 1792 2583 268019 54386 3.32347 3.32347 -122.917 -3.32347 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0304495 0.026806 101 60 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.06 vpr 54.95 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30376 -1 -1 18 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 16.9 MiB 0.63 824 9872 4064 5274 534 55.7 MiB 0.12 0.00 3.73195 -121.956 -3.73195 3.73195 0.79 0.000722328 0.000668637 0.0455693 0.042255 40 2601 27 6.99608e+06 264882 706193. 2443.58 10.83 0.344798 0.299088 26914 176310 -1 2027 22 1962 2845 292025 59620 4.01812 4.01812 -140.127 -4.01812 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0312121 0.0273499 87 34 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.78 vpr 55.16 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30232 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 16.9 MiB 1.70 814 10672 3702 5165 1805 55.6 MiB 0.13 0.00 4.51934 -148.35 -4.51934 4.51934 0.79 0.000707702 0.000654592 0.0492864 0.0456825 44 2642 48 6.99608e+06 220735 787024. 2723.27 3.42 0.217091 0.189677 27778 195446 -1 1774 20 1557 2067 185492 39180 3.92835 3.92835 -139.766 -3.92835 0 0 997811. 3452.63 0.42 0.08 0.20 -1 -1 0.42 0.0244404 0.0216739 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.06 vpr 55.33 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30344 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 16.9 MiB 2.57 1000 12585 4720 5647 2218 55.9 MiB 0.17 0.00 3.77345 -134.122 -3.77345 3.77345 0.79 0.00075334 0.000696391 0.058861 0.0544526 46 3137 24 6.99608e+06 220735 828058. 2865.25 3.74 0.218237 0.19194 28066 200906 -1 2294 19 1680 2057 221540 43101 3.38457 3.38457 -131.137 -3.38457 0 0 1.01997e+06 3529.29 0.32 0.08 0.21 -1 -1 0.32 0.0249734 0.0221918 104 91 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.52 vpr 55.07 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30216 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 16.8 MiB 0.17 808 15688 5217 8110 2361 55.3 MiB 0.20 0.00 3.76925 -134.079 -3.76925 3.76925 0.79 0.000754307 0.000698069 0.063489 0.0588123 46 2968 49 6.99608e+06 367892 828058. 2865.25 4.41 0.250791 0.220176 28066 200906 -1 2099 20 1737 2679 255414 50348 3.80946 3.80946 -144.206 -3.80946 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0295187 0.0259161 86 4 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.82 vpr 55.41 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30636 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 17.2 MiB 0.70 1209 11281 3120 7720 441 55.9 MiB 0.17 0.00 4.19534 -154.628 -4.19534 4.19534 0.86 0.00065848 0.000594235 0.0535874 0.0494163 46 3289 24 6.99608e+06 250167 828058. 2865.25 5.12 0.317197 0.276096 28066 200906 -1 2672 35 2958 3970 624693 211535 4.42125 4.42125 -170.726 -4.42125 0 0 1.01997e+06 3529.29 0.32 0.20 0.19 -1 -1 0.32 0.0524784 0.0457708 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 10.54 vpr 55.56 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30376 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 17.2 MiB 0.62 1142 12364 5175 6807 382 56.0 MiB 0.17 0.00 5.12678 -171.348 -5.12678 5.12678 0.79 0.00084755 0.000783732 0.0620433 0.0574214 56 3076 34 6.99608e+06 264882 973134. 3367.25 6.67 0.354409 0.309573 29794 239141 -1 2432 23 2020 2865 426659 81345 4.8698 4.8698 -174.457 -4.8698 0 0 1.19926e+06 4149.71 0.36 0.14 0.24 -1 -1 0.36 0.0384001 0.0337672 108 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 7.42 vpr 55.59 MiB 0.03 7016 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 17.2 MiB 0.64 1089 13788 4649 7550 1589 56.0 MiB 0.20 0.00 4.15408 -148.064 -4.15408 4.15408 0.79 0.000829003 0.000766398 0.0678028 0.0627566 48 3541 40 6.99608e+06 264882 865456. 2994.66 5.88 0.393889 0.342865 28354 207349 -1 2669 20 2197 3146 367501 69749 4.38845 4.38845 -163.645 -4.38845 0 0 1.05005e+06 3633.38 0.32 0.12 0.20 -1 -1 0.32 0.0334735 0.0295051 107 65 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 8.85 vpr 55.04 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 16.8 MiB 0.73 692 12241 5462 6300 479 55.2 MiB 0.13 0.00 3.58339 -124.571 -3.58339 3.58339 0.78 0.00066536 0.000615181 0.0540141 0.0499647 46 2487 43 6.99608e+06 191304 828058. 2865.25 2.40 0.206848 0.180683 28066 200906 -1 1730 21 1484 2023 211955 49368 3.57516 3.57516 -133.138 -3.57516 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0275455 0.0241012 76 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 9.61 vpr 55.63 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30456 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 17.1 MiB 2.14 1070 13152 5486 7187 479 55.8 MiB 0.18 0.00 4.68713 -157.481 -4.68713 4.68713 0.79 0.000801972 0.000741884 0.0644502 0.0596772 46 3443 41 6.99608e+06 264882 828058. 2865.25 3.43 0.251031 0.22039 28066 200906 -1 2674 20 2344 3355 392549 74415 4.65964 4.65964 -165.262 -4.65964 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0323148 0.028456 105 63 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.48 vpr 55.29 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30992 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 17.6 MiB 0.73 1372 11615 4190 5568 1857 56.0 MiB 0.17 0.00 4.17744 -155.5 -4.17744 4.17744 0.78 0.000928972 0.00086063 0.0601854 0.0558111 46 3286 26 6.99608e+06 323745 828058. 2865.25 3.26 0.248534 0.217525 28066 200906 -1 2610 23 2488 2557 260256 48862 4.17865 4.17865 -163.239 -4.17865 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0410157 0.0358997 139 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 9.50 vpr 55.30 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30488 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 17.2 MiB 1.36 1101 12733 5285 6817 631 55.7 MiB 0.17 0.00 4.35899 -150.667 -4.35899 4.35899 0.81 0.000861206 0.000796485 0.0632106 0.0585038 48 3295 46 6.99608e+06 323745 865456. 2994.66 16.87 0.502689 0.436165 28354 207349 -1 2446 23 2180 2577 357569 90356 4.90781 4.90781 -172.379 -4.90781 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0381784 0.0335675 125 94 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.42 vpr 55.53 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30520 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 17.2 MiB 2.51 1072 15456 6595 7994 867 55.9 MiB 0.20 0.00 4.1343 -135.415 -4.1343 4.1343 0.79 0.000827916 0.000765734 0.0727088 0.0672721 48 3642 46 6.99608e+06 323745 865456. 2994.66 4.95 0.269724 0.237491 28354 207349 -1 2744 24 2716 3910 575188 151569 4.0456 4.0456 -149.131 -4.0456 0 0 1.05005e+06 3633.38 0.33 0.18 0.20 -1 -1 0.33 0.0382796 0.0335404 114 92 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 8.18 vpr 55.59 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30592 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.3 MiB 0.93 1174 14500 5592 7226 1682 56.0 MiB 0.20 0.00 4.33244 -160.384 -4.33244 4.33244 0.80 0.00084842 0.000784926 0.0724127 0.0670594 48 3402 24 6.99608e+06 264882 865456. 2994.66 5.44 0.334065 0.292209 28354 207349 -1 2979 22 2650 3673 556919 103311 5.26361 5.26361 -187.949 -5.26361 0 0 1.05005e+06 3633.38 0.32 0.15 0.20 -1 -1 0.32 0.0362775 0.031909 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.21 vpr 55.54 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30352 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 17.2 MiB 1.58 1070 11106 4662 5983 461 55.9 MiB 0.16 0.00 3.53179 -119.754 -3.53179 3.53179 0.81 0.000792548 0.000732755 0.0536125 0.0496203 38 3421 42 6.99608e+06 294314 678818. 2348.85 6.62 0.247034 0.216605 26626 170182 -1 2681 22 2138 2749 328741 62893 3.80371 3.80371 -137.038 -3.80371 0 0 902133. 3121.57 0.27 0.11 0.17 -1 -1 0.27 0.0344707 0.0302614 112 88 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 6.57 vpr 54.77 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 16.5 MiB 0.64 592 9684 3186 4658 1840 55.1 MiB 0.11 0.00 2.86245 -110.719 -2.86245 2.86245 0.79 0.000670872 0.000620672 0.0440707 0.0408578 44 2074 30 6.99608e+06 147157 787024. 2723.27 4.76 0.251262 0.218188 27778 195446 -1 1574 22 1415 2175 199836 41901 3.23592 3.23592 -126.551 -3.23592 0 0 997811. 3452.63 0.31 0.09 0.23 -1 -1 0.31 0.0285724 0.0249917 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 8.81 vpr 55.79 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30580 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.4 MiB 0.65 999 9872 3990 5501 381 56.0 MiB 0.14 0.00 4.9054 -173.166 -4.9054 4.9054 0.79 0.000853666 0.000789631 0.0501777 0.0464725 62 2744 23 6.99608e+06 264882 1.05005e+06 3633.38 2.66 0.21913 0.1921 30946 263737 -1 2123 24 2258 3181 358169 70413 4.7445 4.7445 -170.013 -4.7445 0 0 1.30136e+06 4502.97 0.39 0.12 0.25 -1 -1 0.39 0.0391922 0.0344359 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 9.30 vpr 55.64 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30444 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 17.3 MiB 0.94 1203 7431 1958 4126 1347 56.0 MiB 0.12 0.00 4.63877 -167.295 -4.63877 4.63877 0.81 0.000850646 0.000786478 0.039891 0.0370023 46 3333 24 6.99608e+06 250167 828058. 2865.25 5.09 0.297205 0.258384 28066 200906 -1 2656 22 2804 3786 394276 74953 4.66634 4.66634 -172.162 -4.66634 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0367557 0.0323661 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 6.81 vpr 55.07 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 16.8 MiB 1.99 766 11324 4293 5664 1367 55.3 MiB 0.13 0.00 3.24452 -112.954 -3.24452 3.24452 0.79 0.000683624 0.000630981 0.0500642 0.046261 54 2045 29 6.99608e+06 191304 949917. 3286.91 5.23 0.254446 0.221061 29506 232905 -1 1561 25 1493 1793 269158 104756 3.30446 3.30446 -112.623 -3.30446 0 0 1.17392e+06 4061.99 0.36 0.12 0.23 -1 -1 0.36 0.0330472 0.0288734 85 55 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.74 vpr 54.77 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30428 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.5 MiB 0.24 592 7514 3020 4270 224 55.1 MiB 0.09 0.00 3.0031 -111.146 -3.0031 3.0031 0.78 0.000645652 0.000597149 0.0335617 0.031075 40 2119 31 6.99608e+06 161872 706193. 2443.58 9.92 0.32403 0.279039 26914 176310 -1 1770 20 1496 2203 239802 50434 3.31422 3.31422 -129.579 -3.31422 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.025947 0.0227133 63 4 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.11 vpr 55.36 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 17.1 MiB 0.84 1014 12331 5131 6918 282 55.9 MiB 0.15 0.00 4.03648 -138.539 -4.03648 4.03648 0.79 0.000798352 0.000737465 0.0592318 0.0547731 48 2476 31 6.99608e+06 250167 865456. 2994.66 4.49 0.322497 0.281627 28354 207349 -1 2157 19 1888 2255 246308 47435 3.9826 3.9826 -141.448 -3.9826 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.03115 0.0274693 102 59 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.50 vpr 55.33 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30324 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 17.3 MiB 1.29 1077 13043 5447 7262 334 55.9 MiB 0.17 0.00 4.38874 -150.527 -4.38874 4.38874 0.78 0.000828798 0.000765839 0.0626663 0.0579337 48 2884 30 6.99608e+06 279598 865456. 2994.66 2.64 0.23617 0.207226 28354 207349 -1 2400 34 2377 2774 439804 133957 4.98181 4.98181 -163.724 -4.98181 0 0 1.05005e+06 3633.38 0.33 0.17 0.20 -1 -1 0.33 0.0513696 0.0448277 115 88 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 6.85 vpr 55.28 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30492 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.3 MiB 0.38 981 8047 1739 5489 819 56.0 MiB 0.12 0.00 4.28063 -149.977 -4.28063 4.28063 0.79 0.000868379 0.000804473 0.0373925 0.0346655 46 3547 49 6.99608e+06 397324 828058. 2865.25 2.83 0.213024 0.186603 28066 200906 -1 2387 18 2049 3293 292730 62405 4.63691 4.63691 -167.157 -4.63691 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0319773 0.0282925 100 3 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.04 vpr 55.23 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30696 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 17.0 MiB 0.94 884 14431 6074 7798 559 55.8 MiB 0.18 0.00 3.66815 -119.86 -3.66815 3.66815 0.82 0.000780024 0.000721294 0.0672381 0.0622521 44 2956 27 6.99608e+06 279598 787024. 2723.27 4.91 0.329864 0.287716 27778 195446 -1 2173 23 1887 2656 284917 57425 3.44206 3.44206 -123.302 -3.44206 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0351543 0.0308598 101 59 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.69 vpr 54.89 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30616 -1 -1 16 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 16.5 MiB 1.30 589 11925 5033 6263 629 55.0 MiB 0.13 0.00 3.68305 -110.555 -3.68305 3.68305 0.83 0.000619262 0.000573585 0.0491717 0.0455913 38 1894 41 6.99608e+06 235451 678818. 2348.85 2.09 0.169723 0.148616 26626 170182 -1 1319 22 1124 1631 144485 29534 3.42422 3.42422 -112.626 -3.42422 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0267404 0.0233661 67 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 9.11 vpr 55.64 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 17.7 MiB 0.81 1512 15151 5383 7381 2387 56.1 MiB 0.24 0.00 4.46404 -157.207 -4.46404 4.46404 0.89 0.000987487 0.000913956 0.0655339 0.0601362 58 3583 22 6.99608e+06 309029 997811. 3452.63 6.32 0.427127 0.371074 30370 251734 -1 3115 20 2207 3141 407814 72637 4.40551 4.40551 -158.325 -4.40551 0 0 1.25153e+06 4330.55 0.38 0.13 0.24 -1 -1 0.38 0.0405026 0.0356119 141 95 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 9.79 vpr 55.42 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30624 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 17.5 MiB 2.37 1389 9013 2681 4820 1512 55.9 MiB 0.14 0.00 4.97674 -167.764 -4.97674 4.97674 0.78 0.00090466 0.000837535 0.0472979 0.0438624 46 3406 27 6.99608e+06 323745 828058. 2865.25 5.91 0.360388 0.31276 28066 200906 -1 2739 21 2272 2564 313348 56923 4.49084 4.49084 -166.839 -4.49084 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0381659 0.0335456 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 18.03 vpr 55.34 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 17.0 MiB 2.66 1031 11233 4729 6294 210 55.6 MiB 0.14 0.00 3.87693 -140.03 -3.87693 3.87693 0.79 0.000747296 0.000690658 0.0524694 0.0485357 46 2773 28 6.99608e+06 220735 828058. 2865.25 2.68 0.209784 0.183527 28066 200906 -1 2160 19 1544 1886 207098 40355 3.49636 3.49636 -132.802 -3.49636 0 0 1.01997e+06 3529.29 0.35 0.09 0.19 -1 -1 0.35 0.029888 0.0265262 102 89 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.66 vpr 55.27 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.90 1034 14184 5996 7912 276 55.8 MiB 0.19 0.00 3.78975 -136.67 -3.78975 3.78975 0.78 0.00078482 0.000726007 0.0676398 0.0625902 44 3480 35 6.99608e+06 235451 787024. 2723.27 2.29 0.20793 0.183504 27778 195446 -1 2405 20 1843 2520 295523 55469 3.90876 3.90876 -146.859 -3.90876 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0312585 0.0275059 92 34 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.04 vpr 55.43 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 30644 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 17.3 MiB 1.53 1068 13943 4857 7191 1895 56.1 MiB 0.20 0.00 3.9689 -135.877 -3.9689 3.9689 0.79 0.000916691 0.000849984 0.0747317 0.0693473 42 3620 46 6.99608e+06 294314 744469. 2576.02 2.37 0.264704 0.232573 27202 183097 -1 2561 20 2277 3121 321402 63296 4.17942 4.17942 -155.272 -4.17942 0 0 949917. 3286.91 0.29 0.11 0.18 -1 -1 0.29 0.0365295 0.0320715 117 64 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 7.47 vpr 55.21 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30480 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 17.0 MiB 1.11 1088 13788 5313 5928 2547 55.9 MiB 0.18 0.00 3.56069 -123.887 -3.56069 3.56069 0.79 0.000778057 0.000719144 0.0632628 0.0585123 36 3956 47 6.99608e+06 294314 648988. 2245.63 7.27 0.257419 0.225644 26050 158493 -1 2798 19 1894 2674 288799 57479 4.11666 4.11666 -146.456 -4.11666 0 0 828058. 2865.25 0.23 0.06 0.10 -1 -1 0.23 0.0162098 0.0144327 101 61 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.59 vpr 55.33 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30496 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.3 MiB 0.63 1034 13906 5203 6656 2047 55.9 MiB 0.19 0.00 4.17744 -150.809 -4.17744 4.17744 0.92 0.00084323 0.000779205 0.0654641 0.0603668 46 3485 32 6.99608e+06 250167 828058. 2865.25 4.52 0.255238 0.224201 28066 200906 -1 2406 21 2327 2820 259212 52221 4.29031 4.29031 -156.162 -4.29031 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0350297 0.030808 107 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 11.28 vpr 55.64 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 17.3 MiB 0.74 1295 11830 3708 6867 1255 55.9 MiB 0.17 0.00 3.61179 -138.351 -3.61179 3.61179 0.78 0.000846771 0.000783365 0.0590702 0.0547352 44 3191 24 6.99608e+06 264882 787024. 2723.27 2.37 0.230386 0.20245 27778 195446 -1 2693 17 1923 2487 300291 52272 3.51406 3.51406 -139.097 -3.51406 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.029898 0.0264034 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 6.33 vpr 54.95 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30412 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 16.5 MiB 1.05 714 7817 3113 4376 328 55.2 MiB 0.09 0.00 3.29694 -113.946 -3.29694 3.29694 0.79 0.000647147 0.000598573 0.0344259 0.0318997 38 1867 23 6.99608e+06 206020 678818. 2348.85 3.86 0.220003 0.190313 26626 170182 -1 1559 20 1588 2046 190589 37091 3.19997 3.19997 -118.373 -3.19997 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0260578 0.0228302 73 34 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 10.24 vpr 55.10 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30164 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 16.8 MiB 2.27 796 13192 4518 6301 2373 55.4 MiB 0.15 0.00 3.75163 -124.237 -3.75163 3.75163 0.79 0.000720816 0.000667051 0.0598918 0.0554278 50 2077 25 6.99608e+06 206020 902133. 3121.57 4.98 0.282242 0.245786 28642 213929 -1 1652 22 1549 1842 186994 40726 4.09861 4.09861 -132.343 -4.09861 0 0 1.08113e+06 3740.92 0.35 0.08 0.21 -1 -1 0.35 0.0307504 0.026929 91 82 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.15 vpr 55.20 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30444 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.65 1104 8164 1792 5984 388 55.8 MiB 0.12 0.00 3.79614 -138.31 -3.79614 3.79614 0.79 0.000788745 0.000730504 0.0401959 0.0372928 38 3127 30 6.99608e+06 250167 678818. 2348.85 3.54 0.169754 0.149284 26626 170182 -1 2392 23 2190 2883 304820 62456 4.34802 4.34802 -161.484 -4.34802 0 0 902133. 3121.57 0.27 0.11 0.18 -1 -1 0.27 0.0351784 0.0308842 92 34 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 9.08 vpr 54.98 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30532 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 16.8 MiB 1.52 924 11813 4851 6237 725 55.2 MiB 0.13 0.00 3.23604 -112.025 -3.23604 3.23604 0.80 0.000656288 0.00060728 0.0499086 0.0462162 38 2416 22 6.99608e+06 235451 678818. 2348.85 2.82 0.182921 0.160069 26626 170182 -1 2045 19 1337 1490 175878 33922 3.28546 3.28546 -116.28 -3.28546 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0251617 0.0220603 81 56 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.83 vpr 54.92 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 16.6 MiB 0.68 800 12628 5339 6973 316 55.3 MiB 0.14 0.00 3.56959 -131.903 -3.56959 3.56959 0.89 0.000502317 0.000456996 0.0550048 0.0508138 44 2475 44 6.99608e+06 191304 787024. 2723.27 2.87 0.223646 0.195437 27778 195446 -1 1596 18 1540 1960 172553 34424 3.22926 3.22926 -129.623 -3.22926 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0258457 0.0227148 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.28 vpr 55.48 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30380 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 16.8 MiB 1.10 964 11296 3574 5293 2429 55.7 MiB 0.16 0.00 4.06828 -143.162 -4.06828 4.06828 0.79 0.000814183 0.000753639 0.0548521 0.0508341 40 3391 34 6.99608e+06 279598 706193. 2443.58 4.07 0.239859 0.210519 26914 176310 -1 2529 22 2362 3166 365151 78777 4.44141 4.44141 -159.612 -4.44141 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0350108 0.0307846 105 64 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.66 vpr 55.09 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30348 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 16.8 MiB 2.13 694 11756 4613 5996 1147 55.2 MiB 0.13 0.00 3.23724 -109.795 -3.23724 3.23724 0.78 0.000682147 0.000630621 0.052828 0.0489165 48 2170 46 6.99608e+06 191304 865456. 2994.66 3.32 0.215399 0.188079 28354 207349 -1 1618 22 1355 1700 196397 44692 3.59736 3.59736 -125.075 -3.59736 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.0290568 0.0253845 81 55 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.40 vpr 55.27 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30460 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 17.0 MiB 1.48 911 15034 6476 7971 587 55.9 MiB 0.18 0.00 3.61105 -126.923 -3.61105 3.61105 0.79 0.000806736 0.00074674 0.0711505 0.0658841 58 2106 25 6.99608e+06 264882 997811. 3452.63 5.59 0.333467 0.291509 30370 251734 -1 1782 19 1376 1932 209105 42196 3.29596 3.29596 -122.173 -3.29596 0 0 1.25153e+06 4330.55 0.38 0.09 0.24 -1 -1 0.38 0.0313637 0.027621 103 65 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 9.69 vpr 55.59 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 17.3 MiB 0.84 1135 16081 6006 7648 2427 55.8 MiB 0.19 0.00 4.67827 -157.924 -4.67827 4.67827 0.92 0.000629293 0.000570413 0.0567978 0.0517705 44 3525 28 6.99608e+06 323745 787024. 2723.27 3.52 0.238924 0.209867 27778 195446 -1 2402 19 2339 3194 287262 58979 4.16544 4.16544 -153.745 -4.16544 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0334429 0.0294762 123 93 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.87 vpr 55.21 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 16.9 MiB 2.31 1185 10050 2506 6241 1303 55.6 MiB 0.10 0.00 3.59004 -135.268 -3.59004 3.59004 0.89 0.000497288 0.000451065 0.0347453 0.031792 44 2781 32 6.99608e+06 220735 787024. 2723.27 4.19 0.257551 0.222871 27778 195446 -1 2287 20 1397 1977 185089 35808 3.40501 3.40501 -132.205 -3.40501 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0288357 0.0253111 88 61 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 8.72 vpr 55.02 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 16.8 MiB 0.68 844 13856 5698 7170 988 55.4 MiB 0.17 0.00 3.30794 -123.058 -3.30794 3.30794 0.78 0.000725322 0.000670657 0.0634084 0.0586809 44 2742 46 6.99608e+06 206020 787024. 2723.27 2.80 0.210899 0.185755 27778 195446 -1 1902 21 1713 2093 211626 42432 3.26227 3.26227 -126.383 -3.26227 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0301523 0.0264161 91 63 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.02 vpr 55.05 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30716 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.2 MiB 0.87 1239 11118 3579 5407 2132 55.8 MiB 0.16 0.00 3.81515 -143.501 -3.81515 3.81515 0.79 0.000859504 0.000795055 0.0568451 0.0526859 44 2923 36 6.99608e+06 264882 787024. 2723.27 2.32 0.218028 0.191534 27778 195446 -1 2350 30 2551 3097 377121 94989 4.28572 4.28572 -157.815 -4.28572 0 0 997811. 3452.63 0.31 0.14 0.19 -1 -1 0.31 0.0464392 0.0406532 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.54 vpr 55.25 MiB 0.03 7156 -1 -1 1 0.03 -1 -1 30536 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 16.8 MiB 1.49 913 9160 3758 4976 426 55.8 MiB 0.12 0.00 3.41124 -117.262 -3.41124 3.41124 0.80 0.000787151 0.000729199 0.0434791 0.0403499 38 3183 28 6.99608e+06 309029 678818. 2348.85 4.23 0.212484 0.186042 26626 170182 -1 2328 19 1859 2511 239150 48117 3.30551 3.30551 -121.983 -3.30551 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.030046 0.0264792 101 62 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.47 vpr 55.39 MiB 0.04 7320 -1 -1 1 0.04 -1 -1 30816 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 17.5 MiB 0.79 1399 13316 4006 7788 1522 55.9 MiB 0.22 0.00 4.54237 -164.626 -4.54237 4.54237 0.81 0.000940267 0.000870707 0.0763084 0.0707433 40 3878 28 6.99608e+06 323745 706193. 2443.58 5.22 0.391673 0.341175 26914 176310 -1 3371 24 3368 4022 523552 98678 5.38994 5.38994 -191.987 -5.38994 0 0 926341. 3205.33 0.29 0.16 0.17 -1 -1 0.29 0.0431891 0.0378155 140 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.87 vpr 54.85 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30312 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 16.5 MiB 1.00 486 10149 3821 5138 1190 54.9 MiB 0.10 0.00 2.81885 -95.7056 -2.81885 2.81885 0.85 0.000469154 0.000427879 0.0359621 0.0330247 46 1678 22 6.99608e+06 161872 828058. 2865.25 2.19 0.14017 0.122363 28066 200906 -1 1233 37 1324 2027 189121 42335 2.78932 2.78932 -103.555 -2.78932 0 0 1.01997e+06 3529.29 0.33 0.11 0.21 -1 -1 0.33 0.0423793 0.0366144 57 4 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 21.71 vpr 55.77 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 17.2 MiB 2.46 1299 14303 5218 6688 2397 56.0 MiB 0.19 0.00 4.76923 -166.635 -4.76923 4.76923 0.78 0.000860809 0.000796392 0.0712814 0.0659728 44 3653 46 6.99608e+06 279598 787024. 2723.27 2.84 0.258269 0.228135 27778 195446 -1 2739 35 2977 3876 655064 246825 5.1629 5.1629 -184.634 -5.1629 0 0 997811. 3452.63 0.32 0.24 0.20 -1 -1 0.32 0.0501383 0.0440732 118 92 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.82 vpr 55.69 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.2 MiB 0.85 1244 15216 5143 8703 1370 55.8 MiB 0.20 0.00 4.66407 -173.875 -4.66407 4.66407 0.79 0.000781468 0.000722703 0.0721536 0.0667697 46 3193 24 6.99608e+06 235451 828058. 2865.25 5.20 0.294539 0.257802 28066 200906 -1 2647 18 2412 3040 357696 64281 4.53514 4.53514 -175.329 -4.53514 0 0 1.01997e+06 3529.29 0.34 0.13 0.23 -1 -1 0.34 0.0333311 0.0294987 110 96 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 7.77 vpr 55.48 MiB 0.05 7080 -1 -1 1 0.05 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 17.2 MiB 0.76 1129 13403 5326 6238 1839 55.9 MiB 0.19 0.00 3.33684 -128.417 -3.33684 3.33684 0.79 0.000832974 0.000770372 0.0652564 0.0604095 44 3178 28 6.99608e+06 279598 787024. 2723.27 4.77 0.323821 0.282992 27778 195446 -1 2462 22 2118 2760 262213 50463 3.34651 3.34651 -134.995 -3.34651 0 0 997811. 3452.63 0.31 0.13 0.19 -1 -1 0.31 0.0416811 0.0365136 106 65 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 8.21 vpr 55.75 MiB 0.04 7292 -1 -1 1 0.04 -1 -1 30804 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 17.8 MiB 0.76 1500 14261 4373 7976 1912 56.1 MiB 0.22 0.00 4.89654 -177.942 -4.89654 4.89654 0.81 0.000996497 0.000922792 0.0794042 0.0736218 46 3627 21 6.99608e+06 323745 828058. 2865.25 4.86 0.369257 0.322457 28066 200906 -1 3024 21 2816 3249 353150 64538 5.48635 5.48635 -193.499 -5.48635 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0412871 0.0362971 140 96 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 5.32 vpr 54.75 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30140 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 16.4 MiB 2.09 577 8449 3482 4728 239 54.9 MiB 0.08 0.00 2.75275 -95.2487 -2.75275 2.75275 0.79 0.000573906 0.00053038 0.0323638 0.0299362 38 1825 38 6.99608e+06 191304 678818. 2348.85 3.86 0.209753 0.180525 26626 170182 -1 1362 16 802 818 87304 19051 2.52972 2.52972 -90.4789 -2.52972 0 0 902133. 3121.57 0.27 0.05 0.17 -1 -1 0.27 0.0191955 0.0167769 65 56 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.25 vpr 54.89 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30356 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 16.4 MiB 2.77 870 9516 3877 5353 286 55.1 MiB 0.11 0.00 3.41559 -121.499 -3.41559 3.41559 0.79 0.000670934 0.000620589 0.0423387 0.0392411 34 2254 47 6.99608e+06 206020 618332. 2139.56 2.66 0.205589 0.179222 25762 151098 -1 1955 21 1516 2154 280411 53388 3.56046 3.56046 -133.208 -3.56046 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0275621 0.0240963 72 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 17.89 vpr 55.14 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30092 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 16.6 MiB 0.27 764 10316 3722 4683 1911 55.3 MiB 0.14 0.00 3.37904 -128.379 -3.37904 3.37904 0.79 0.000677587 0.000632656 0.0487789 0.0450839 44 2942 28 6.99608e+06 176588 787024. 2723.27 3.40 0.200394 0.175419 27778 195446 -1 2049 21 1886 2867 305927 60681 3.57511 3.57511 -140.146 -3.57511 0 0 997811. 3452.63 0.31 0.13 0.20 -1 -1 0.31 0.0321746 0.02822 80 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.65 vpr 54.68 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30436 -1 -1 18 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 16.5 MiB 0.68 497 10819 4307 4933 1579 55.1 MiB 0.11 0.00 3.31386 -89.9377 -3.31386 3.31386 0.79 0.000579607 0.000536667 0.0420671 0.0390405 36 2036 37 6.99608e+06 264882 648988. 2245.63 2.08 0.160413 0.139938 26050 158493 -1 1366 17 995 1268 119650 25504 3.57407 3.57407 -107.286 -3.57407 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0203495 0.0178064 68 34 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 8.51 vpr 55.50 MiB 0.04 7248 -1 -1 1 0.03 -1 -1 30508 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.3 MiB 0.93 1423 14358 4574 7658 2126 55.8 MiB 0.20 0.00 3.77875 -143.667 -3.77875 3.77875 0.76 0.000876671 0.00081152 0.0721069 0.0667846 46 3903 28 6.99608e+06 294314 828058. 2865.25 3.90 0.258589 0.227229 28066 200906 -1 3282 18 2502 3565 466593 78362 4.00512 4.00512 -159.031 -4.00512 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0327892 0.0289548 125 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 8.75 vpr 55.85 MiB 0.02 7312 -1 -1 1 0.04 -1 -1 30496 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 17.2 MiB 0.77 1182 13663 4698 6384 2581 56.0 MiB 0.19 0.00 4.16978 -143.827 -4.16978 4.16978 0.79 0.000852399 0.00078839 0.0658721 0.0609505 40 3354 39 6.99608e+06 323745 706193. 2443.58 3.67 0.25995 0.227981 26914 176310 -1 2889 30 3385 4412 593112 133870 4.33865 4.33865 -161.302 -4.33865 0 0 926341. 3205.33 0.28 0.18 0.17 -1 -1 0.28 0.0476169 0.0416512 121 94 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 10.40 vpr 55.09 MiB 0.05 6700 -1 -1 14 0.26 -1 -1 32900 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 16.5 MiB 1.87 1265 9263 2276 5364 1623 55.1 MiB 0.14 0.00 8.4853 -170.751 -8.4853 8.4853 0.78 0.00101066 0.000925991 0.0567822 0.0524128 46 3122 18 6.79088e+06 255968 828058. 2865.25 4.86 0.310779 0.271938 27406 200422 -1 2530 16 1190 3157 226839 44676 7.3039 7.3039 -158.523 -7.3039 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0352995 0.0314013 134 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 8.76 vpr 54.84 MiB 0.05 6800 -1 -1 14 0.28 -1 -1 32764 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 16.5 MiB 1.51 1228 8270 2008 5297 965 55.1 MiB 0.12 0.00 7.98833 -161.421 -7.98833 7.98833 0.78 0.00098976 0.000916098 0.0498986 0.0462011 38 3404 29 6.79088e+06 269440 678818. 2348.85 3.18 0.270207 0.236748 25966 169698 -1 2588 17 1208 3291 212347 43535 6.92108 6.92108 -150.768 -6.92108 0 0 902133. 3121.57 0.31 0.09 0.17 -1 -1 0.31 0.0373002 0.0331123 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 10.67 vpr 54.98 MiB 0.04 6796 -1 -1 11 0.25 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 16.5 MiB 1.63 1125 11613 3520 5862 2231 55.1 MiB 0.17 0.00 7.03202 -141.666 -7.03202 7.03202 0.80 0.000976323 0.000901552 0.0664473 0.0614336 38 3680 41 6.79088e+06 269440 678818. 2348.85 4.52 0.291873 0.25696 25966 169698 -1 2585 16 1212 3568 231943 48515 6.12643 6.12643 -138.147 -6.12643 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0355312 0.031624 138 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 9.05 vpr 54.94 MiB 0.04 6740 -1 -1 12 0.35 -1 -1 32740 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 16.6 MiB 1.33 1021 7643 1879 4700 1064 55.2 MiB 0.11 0.00 7.24011 -138.658 -7.24011 7.24011 0.78 0.000990304 0.000916054 0.0458612 0.0424407 30 3085 43 6.79088e+06 296384 556674. 1926.21 7.36 0.415932 0.36321 24526 138013 -1 2450 16 1319 3817 225640 49413 6.41977 6.41977 -136.967 -6.41977 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0350866 0.0311846 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 7.69 vpr 55.19 MiB 0.05 6612 -1 -1 13 0.28 -1 -1 32928 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 16.9 MiB 2.01 1463 12568 3276 7023 2269 55.8 MiB 0.19 0.00 8.02445 -169.708 -8.02445 8.02445 0.83 0.00112934 0.00104301 0.0796573 0.0737214 38 4106 49 6.79088e+06 323328 678818. 2348.85 25.25 0.591218 0.516832 25966 169698 -1 3079 17 1569 4128 270153 55137 7.21431 7.21431 -164.027 -7.21431 0 0 902133. 3121.57 0.25 0.06 0.11 -1 -1 0.25 0.0235054 0.0213249 160 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 9.34 vpr 55.23 MiB 0.05 6756 -1 -1 12 0.27 -1 -1 32700 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 16.8 MiB 2.16 1344 4768 918 3685 165 55.3 MiB 0.10 0.00 7.61832 -163.245 -7.61832 7.61832 0.79 0.00105372 0.000973662 0.0322027 0.0298965 46 3284 15 6.79088e+06 323328 828058. 2865.25 4.73 0.289105 0.251496 27406 200422 -1 2938 17 1308 3933 259145 51530 6.72076 6.72076 -156.363 -6.72076 0 0 1.01997e+06 3529.29 0.37 0.11 0.19 -1 -1 0.37 0.0408673 0.0365541 150 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 7.75 vpr 54.67 MiB 0.02 6588 -1 -1 12 0.22 -1 -1 32328 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 16.1 MiB 1.33 1000 7177 1656 4753 768 54.8 MiB 0.09 0.00 7.28149 -137.47 -7.28149 7.28149 0.78 0.000770612 0.000713191 0.0357667 0.0331401 38 2671 39 6.79088e+06 269440 678818. 2348.85 4.40 0.313067 0.271441 25966 169698 -1 2285 15 988 2588 169972 35341 6.33023 6.33023 -131.211 -6.33023 0 0 902133. 3121.57 0.29 0.07 0.16 -1 -1 0.29 0.02648 0.0236199 101 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 10.59 vpr 54.74 MiB 0.05 6692 -1 -1 11 0.18 -1 -1 32652 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 16.3 MiB 1.23 1129 9531 2421 6090 1020 55.1 MiB 0.13 0.00 6.82017 -140.384 -6.82017 6.82017 0.82 0.000727571 0.000652536 0.0539029 0.0496689 36 3346 46 6.79088e+06 242496 648988. 2245.63 3.06 0.245551 0.215339 25390 158009 -1 2698 37 1260 3820 745821 363415 5.90727 5.90727 -136.224 -5.90727 0 0 828058. 2865.25 0.26 0.26 0.16 -1 -1 0.26 0.0627135 0.0547511 118 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 9.03 vpr 54.61 MiB 0.05 6560 -1 -1 12 0.17 -1 -1 32568 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 16.1 MiB 2.29 1115 11631 3187 7135 1309 54.8 MiB 0.13 0.00 6.73244 -139.285 -6.73244 6.73244 0.86 0.000604429 0.000549592 0.0440218 0.040158 36 3063 26 6.79088e+06 242496 648988. 2245.63 3.58 0.222698 0.19455 25390 158009 -1 2517 16 1153 2536 182283 38952 5.61753 5.61753 -132.175 -5.61753 0 0 828058. 2865.25 0.25 0.08 0.10 -1 -1 0.25 0.0294369 0.0261768 111 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 9.06 vpr 54.70 MiB 0.04 6508 -1 -1 13 0.19 -1 -1 32948 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 16.3 MiB 1.39 1011 5412 1090 4064 258 54.8 MiB 0.09 0.00 7.30367 -163.797 -7.30367 7.30367 0.78 0.000898868 0.000830839 0.0321281 0.0297959 38 2820 18 6.79088e+06 215552 678818. 2348.85 4.28 0.288817 0.250473 25966 169698 -1 2266 14 1013 2548 157125 33369 6.24757 6.24757 -156.753 -6.24757 0 0 902133. 3121.57 0.28 0.07 0.16 -1 -1 0.28 0.0285796 0.0254719 107 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 6.08 vpr 54.56 MiB 0.05 6584 -1 -1 12 0.17 -1 -1 32696 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 16.1 MiB 1.29 838 6386 1352 4871 163 54.8 MiB 0.08 0.00 7.31171 -145.298 -7.31171 7.31171 0.79 0.000766431 0.000707559 0.0323449 0.0298941 36 2537 49 6.79088e+06 215552 648988. 2245.63 2.32 0.184214 0.16071 25390 158009 -1 1970 16 866 2221 141030 31159 5.99697 5.99697 -136.566 -5.99697 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.0268861 0.0238429 93 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 9.71 vpr 54.63 MiB 0.04 6576 -1 -1 12 0.14 -1 -1 32728 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 16.1 MiB 1.78 1055 4560 1014 3240 306 54.7 MiB 0.07 0.00 6.46989 -155.558 -6.46989 6.46989 0.78 0.000785001 0.000724197 0.0246534 0.022786 44 2615 18 6.79088e+06 188608 787024. 2723.27 4.39 0.263169 0.227942 27118 194962 -1 2143 16 904 2301 156029 32465 5.57489 5.57489 -143.498 -5.57489 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0277806 0.0246856 94 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 7.31 vpr 55.15 MiB 0.04 6688 -1 -1 13 0.26 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 16.7 MiB 1.45 1239 11431 3102 6258 2071 55.5 MiB 0.17 0.00 7.91359 -165.523 -7.91359 7.91359 0.80 0.00107476 0.000991775 0.070926 0.0655565 48 2752 19 6.79088e+06 282912 865456. 2994.66 4.41 0.372064 0.325894 27694 206865 -1 2517 15 1126 3261 235384 47905 6.72081 6.72081 -152.612 -6.72081 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.0376476 0.0336468 148 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 7.67 vpr 55.23 MiB 0.05 6872 -1 -1 14 0.31 -1 -1 33168 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1366 11245 3016 6173 2056 55.6 MiB 0.17 0.00 9.12295 -182.881 -9.12295 9.12295 0.79 0.0010781 0.000995784 0.069716 0.0644798 40 3541 29 6.79088e+06 282912 706193. 2443.58 2.80 0.306072 0.268905 26254 175826 -1 3097 30 1471 4012 507506 187303 7.76595 7.76595 -174.076 -7.76595 0 0 926341. 3205.33 0.28 0.19 0.17 -1 -1 0.28 0.0613276 0.0538837 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 9.56 vpr 54.60 MiB 0.04 6676 -1 -1 11 0.17 -1 -1 32412 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 16.3 MiB 1.34 857 12681 3929 6469 2283 54.7 MiB 0.15 0.00 6.92892 -133.02 -6.92892 6.92892 0.78 0.000822356 0.000758517 0.0632934 0.0585321 46 2148 18 6.79088e+06 269440 828058. 2865.25 4.39 0.283551 0.248196 27406 200422 -1 1803 15 1028 2480 155521 33104 5.98994 5.98994 -123.39 -5.98994 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.027782 0.0247236 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 7.88 vpr 55.48 MiB 0.02 6700 -1 -1 12 0.30 -1 -1 32820 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 16.8 MiB 2.44 1420 13992 4103 7703 2186 55.5 MiB 0.22 0.00 7.6046 -160.271 -7.6046 7.6046 0.80 0.00110568 0.00102333 0.0891885 0.0824405 48 3640 29 6.79088e+06 269440 865456. 2994.66 5.52 0.432721 0.379613 27694 206865 -1 3371 19 1538 4880 378934 74036 6.46241 6.46241 -153.75 -6.46241 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0446651 0.0396733 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 9.73 vpr 55.02 MiB 0.05 6720 -1 -1 13 0.26 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.43 1236 10687 3174 5565 1948 55.6 MiB 0.16 0.00 8.28661 -168.45 -8.28661 8.28661 0.78 0.00109476 0.00101158 0.0672945 0.0622463 36 3961 32 6.79088e+06 282912 648988. 2245.63 17.27 0.498338 0.435387 25390 158009 -1 2894 16 1353 3870 256704 55383 7.17085 7.17085 -165.969 -7.17085 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0396534 0.0353485 144 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 7.59 vpr 54.59 MiB 0.04 6608 -1 -1 12 0.15 -1 -1 32560 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55920 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 16.0 MiB 1.85 945 7992 1779 4650 1563 54.6 MiB 0.10 0.00 6.70943 -154.61 -6.70943 6.70943 0.79 0.000823763 0.000760171 0.0416411 0.0384844 36 2616 20 6.79088e+06 215552 648988. 2245.63 2.44 0.206174 0.181319 25390 158009 -1 2179 13 893 2413 159661 34187 6.24403 6.24403 -153.872 -6.24403 0 0 828058. 2865.25 0.30 0.07 0.13 -1 -1 0.30 0.0263526 0.0236737 104 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 10.17 vpr 54.32 MiB 0.04 6380 -1 -1 10 0.10 -1 -1 32096 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55552 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 15.6 MiB 2.36 878 7049 1926 4350 773 54.2 MiB 0.08 0.00 5.18321 -124.627 -5.18321 5.18321 0.79 0.000619226 0.000572048 0.0305358 0.0282352 34 2331 47 6.79088e+06 161664 618332. 2139.56 7.75 0.262647 0.226664 25102 150614 -1 1892 17 714 1691 130311 27331 4.71101 4.71101 -125.559 -4.71101 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0223139 0.0196274 67 88 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 7.99 vpr 54.67 MiB 0.05 6564 -1 -1 13 0.16 -1 -1 32708 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 15.9 MiB 1.77 974 6332 1469 4570 293 54.6 MiB 0.09 0.00 7.59608 -163.359 -7.59608 7.59608 0.78 0.00080403 0.00074146 0.034116 0.0315046 38 2406 16 6.79088e+06 215552 678818. 2348.85 2.23 0.189219 0.165273 25966 169698 -1 2040 14 916 2242 136287 29099 6.53742 6.53742 -149.679 -6.53742 0 0 902133. 3121.57 0.28 0.07 0.16 -1 -1 0.28 0.0262125 0.0233634 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 10.49 vpr 55.10 MiB 0.03 6708 -1 -1 13 0.30 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 16.9 MiB 1.15 1254 12371 3408 7445 1518 55.4 MiB 0.18 0.00 7.46133 -157.73 -7.46133 7.46133 0.78 0.00106305 0.000981716 0.0745556 0.0689466 44 3071 18 6.79088e+06 296384 787024. 2723.27 4.33 0.366413 0.321001 27118 194962 -1 2625 17 1230 3436 247174 49122 6.74533 6.74533 -151.264 -6.74533 0 0 997811. 3452.63 0.32 0.10 0.19 -1 -1 0.32 0.0398227 0.0354943 143 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 10.94 vpr 55.19 MiB 0.04 6824 -1 -1 13 0.29 -1 -1 33256 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 16.9 MiB 1.81 1425 10883 2960 6054 1869 55.3 MiB 0.15 0.00 8.13867 -171.504 -8.13867 8.13867 0.91 0.000833603 0.000764295 0.0555669 0.0510879 46 3164 18 6.79088e+06 255968 828058. 2865.25 5.09 0.346325 0.302889 27406 200422 -1 2703 17 1225 3470 231449 46219 7.06211 7.06211 -159.653 -7.06211 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0394764 0.0351261 141 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 5.81 vpr 54.25 MiB 0.04 6568 -1 -1 9 0.10 -1 -1 32028 -1 -1 16 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55256 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 15.4 MiB 1.49 588 10149 2859 5591 1699 54.0 MiB 0.09 0.00 4.97273 -93.6629 -4.97273 4.97273 0.78 0.000540244 0.000499304 0.0374312 0.0346479 30 1755 23 6.79088e+06 215552 556674. 1926.21 1.03 0.101705 0.089745 24526 138013 -1 1376 17 628 1476 88712 19831 4.30345 4.30345 -92.6615 -4.30345 0 0 706193. 2443.58 0.25 0.05 0.14 -1 -1 0.25 0.0196638 0.0173792 64 73 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 8.13 vpr 55.05 MiB 0.04 6676 -1 -1 13 0.30 -1 -1 32804 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 16.8 MiB 2.06 1289 7268 1575 5261 432 55.4 MiB 0.12 0.00 8.3813 -168.316 -8.3813 8.3813 0.77 0.00106318 0.000983376 0.0452071 0.0418459 38 3580 34 6.79088e+06 296384 678818. 2348.85 4.54 0.294533 0.259057 25966 169698 -1 2849 28 1382 3915 372113 120257 7.42571 7.42571 -158.613 -7.42571 0 0 902133. 3121.57 0.27 0.15 0.17 -1 -1 0.27 0.0566971 0.0498773 137 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 6.62 vpr 54.07 MiB 0.04 6448 -1 -1 8 0.09 -1 -1 31120 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55432 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 15.6 MiB 2.38 737 11631 4246 5219 2166 54.1 MiB 0.10 0.00 4.77835 -104.906 -4.77835 4.77835 0.80 0.000554552 0.000511779 0.0391532 0.0361551 30 1919 23 6.79088e+06 229024 556674. 1926.21 1.14 0.108332 0.0954899 24526 138013 -1 1543 14 639 1400 84887 18827 4.0956 4.0956 -103.294 -4.0956 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0173877 0.0153449 64 61 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 11.75 vpr 54.94 MiB 0.05 6648 -1 -1 15 0.23 -1 -1 33068 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 16.4 MiB 1.81 1155 10581 3115 6097 1369 54.9 MiB 0.15 0.00 8.86251 -178.17 -8.86251 8.86251 0.84 0.000929311 0.000859477 0.060236 0.0557303 44 2823 15 6.79088e+06 229024 787024. 2723.27 2.14 0.191209 0.169008 27118 194962 -1 2387 15 1054 2850 193895 39529 7.79833 7.79833 -165.154 -7.79833 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.031238 0.0278229 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 12.25 vpr 54.75 MiB 0.05 6660 -1 -1 12 0.24 -1 -1 32880 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 16.8 MiB 1.60 1241 4433 817 3477 139 55.5 MiB 0.08 0.00 7.21583 -155.808 -7.21583 7.21583 0.78 0.001077 0.00099501 0.030159 0.0279877 38 3494 26 6.79088e+06 296384 678818. 2348.85 4.72 0.313382 0.27197 25966 169698 -1 2706 17 1350 4089 264321 55092 6.08302 6.08302 -143.331 -6.08302 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.040343 0.0358835 145 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 9.31 vpr 55.00 MiB 0.04 6748 -1 -1 13 0.27 -1 -1 32688 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 16.4 MiB 1.31 1284 4659 748 3690 221 55.0 MiB 0.08 0.00 8.13835 -165.274 -8.13835 8.13835 0.79 0.00101635 0.00094013 0.0311361 0.0288508 44 2964 20 6.79088e+06 269440 787024. 2723.27 4.43 0.310477 0.269851 27118 194962 -1 2484 15 1163 3248 214002 43911 6.88526 6.88526 -151.223 -6.88526 0 0 997811. 3452.63 0.31 0.09 0.18 -1 -1 0.31 0.0343421 0.0306319 136 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 7.47 vpr 54.63 MiB 0.04 6584 -1 -1 12 0.16 -1 -1 32296 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 16.4 MiB 1.97 1045 5303 1002 3952 349 54.8 MiB 0.08 0.00 6.60115 -147.873 -6.60115 6.60115 0.80 0.000835693 0.000771345 0.0278471 0.0257632 36 2801 18 6.79088e+06 255968 648988. 2245.63 1.98 0.144333 0.127516 25390 158009 -1 2423 27 1018 2690 333742 130702 5.90389 5.90389 -142.494 -5.90389 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.043232 0.0379822 106 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 7.60 vpr 54.55 MiB 0.04 6708 -1 -1 11 0.15 -1 -1 32684 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 16.0 MiB 1.87 954 11652 3379 7115 1158 54.8 MiB 0.13 0.00 6.23714 -130.615 -6.23714 6.23714 0.78 0.000752594 0.00069463 0.0526338 0.0486826 38 2569 30 6.79088e+06 269440 678818. 2348.85 2.89 0.212724 0.186268 25966 169698 -1 2105 29 963 2521 392849 183299 5.44954 5.44954 -132.131 -5.44954 0 0 902133. 3121.57 0.27 0.15 0.16 -1 -1 0.27 0.0414613 0.0363354 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 7.13 vpr 54.49 MiB 0.04 6496 -1 -1 11 0.16 -1 -1 32392 -1 -1 19 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 16.1 MiB 1.06 1013 7346 1810 4929 607 54.7 MiB 0.09 0.00 6.76313 -133.919 -6.76313 6.76313 0.79 0.000797768 0.000737769 0.0378016 0.0349736 34 3046 38 6.79088e+06 255968 618332. 2139.56 3.31 0.216457 0.189186 25102 150614 -1 2486 27 1330 3631 331393 103640 5.93949 5.93949 -130.293 -5.93949 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.041385 0.0362789 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 10.14 vpr 54.88 MiB 0.04 6612 -1 -1 12 0.19 -1 -1 32536 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 16.4 MiB 1.89 1274 9443 2812 5690 941 55.0 MiB 0.13 0.00 6.88424 -161.28 -6.88424 6.88424 0.78 0.000943304 0.000871811 0.0532294 0.0492845 38 3319 21 6.79088e+06 255968 678818. 2348.85 2.66 0.240265 0.210417 25966 169698 -1 2704 18 1310 3289 208989 43326 6.07609 6.07609 -158.229 -6.07609 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0360824 0.0319353 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 9.53 vpr 54.61 MiB 0.04 6600 -1 -1 11 0.17 -1 -1 32480 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 16.4 MiB 1.50 908 10056 3226 4794 2036 54.8 MiB 0.11 0.00 6.39517 -140.882 -6.39517 6.39517 0.80 0.000572835 0.000519463 0.0429405 0.0393665 38 2755 22 6.79088e+06 229024 678818. 2348.85 4.29 0.266098 0.231693 25966 169698 -1 2040 15 1034 2877 174412 37944 5.77505 5.77505 -137.161 -5.77505 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0286814 0.0255105 107 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 8.03 vpr 54.55 MiB 0.04 6700 -1 -1 10 0.14 -1 -1 32644 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 16.0 MiB 1.37 870 8022 2297 4713 1012 54.6 MiB 0.10 0.00 6.19022 -129.37 -6.19022 6.19022 0.78 0.000793138 0.000731777 0.0405279 0.0374504 36 2237 37 6.79088e+06 242496 648988. 2245.63 4.11 0.271428 0.235686 25390 158009 -1 1994 14 815 2200 139304 30627 5.49212 5.49212 -124.76 -5.49212 0 0 828058. 2865.25 0.26 0.06 0.15 -1 -1 0.26 0.0253925 0.0225976 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 20.63 vpr 55.23 MiB 0.05 6856 -1 -1 13 0.32 -1 -1 33292 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 16.9 MiB 1.52 1352 10103 2504 6636 963 55.4 MiB 0.17 0.00 7.85531 -169.709 -7.85531 7.85531 0.78 0.00116013 0.00107048 0.0669479 0.0618591 44 3490 24 6.79088e+06 296384 787024. 2723.27 4.57 0.390657 0.341455 27118 194962 -1 2933 18 1339 4434 291900 58564 6.88531 6.88531 -156.489 -6.88531 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0451541 0.0401684 162 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 26.40 vpr 55.16 MiB 0.04 6756 -1 -1 13 0.31 -1 -1 33100 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 16.9 MiB 1.70 1274 13849 4315 6877 2657 55.6 MiB 0.22 0.00 7.85526 -169.716 -7.85526 7.85526 0.73 0.00108263 0.00100029 0.0910465 0.0837981 36 4502 45 6.79088e+06 282912 648988. 2245.63 8.35 0.36026 0.316601 25390 158009 -1 3213 17 1761 5055 363084 75955 6.78797 6.78797 -164.341 -6.78797 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.0409766 0.036387 152 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 8.02 vpr 54.62 MiB 0.04 6660 -1 -1 12 0.15 -1 -1 32856 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 16.1 MiB 1.24 851 11631 4796 6628 207 54.8 MiB 0.14 0.00 7.11438 -152.359 -7.11438 7.11438 0.86 0.000813346 0.000749831 0.0575954 0.0531529 36 3188 46 6.79088e+06 242496 648988. 2245.63 8.16 0.259984 0.227994 25390 158009 -1 2215 16 1048 2788 204960 43952 6.29098 6.29098 -145.949 -6.29098 0 0 828058. 2865.25 0.26 0.08 0.10 -1 -1 0.26 0.0285897 0.0253736 102 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 8.99 vpr 55.25 MiB 0.05 6736 -1 -1 12 0.25 -1 -1 33172 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 16.9 MiB 1.22 1154 12749 3915 6368 2466 55.6 MiB 0.19 0.00 7.84323 -159.621 -7.84323 7.84323 0.78 0.00108167 0.000998845 0.0773372 0.0714832 40 3270 35 6.79088e+06 309856 706193. 2443.58 2.51 0.318147 0.279415 26254 175826 -1 2980 64 2413 8958 1170832 550314 6.96022 6.96022 -155.612 -6.96022 0 0 926341. 3205.33 0.28 0.48 0.17 -1 -1 0.28 0.119618 0.104081 148 219 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 9.59 vpr 55.07 MiB 0.02 6764 -1 -1 14 0.33 -1 -1 33068 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 16.8 MiB 1.09 1375 11247 2864 6672 1711 55.2 MiB 0.16 0.00 8.18012 -172.817 -8.18012 8.18012 0.78 0.00104193 0.000963996 0.0683521 0.0632878 46 3179 34 6.79088e+06 282912 828058. 2865.25 4.48 0.429307 0.374266 27406 200422 -1 2685 14 1188 3438 218507 44372 7.30047 7.30047 -161.796 -7.30047 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0339317 0.0303664 146 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 8.06 vpr 55.04 MiB 0.05 6864 -1 -1 13 0.25 -1 -1 32876 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 16.7 MiB 2.15 1310 10149 2655 5632 1862 55.2 MiB 0.14 0.00 7.78561 -164.423 -7.78561 7.78561 0.78 0.000962178 0.000889359 0.057391 0.0531475 38 3481 47 6.79088e+06 282912 678818. 2348.85 14.99 0.475906 0.413212 25966 169698 -1 2783 22 1469 3916 246840 51205 7.28573 7.28573 -163.177 -7.28573 0 0 902133. 3121.57 0.27 0.13 0.17 -1 -1 0.27 0.0521397 0.0467825 126 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 8.28 vpr 54.91 MiB 0.03 6780 -1 -1 12 0.24 -1 -1 32908 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 16.6 MiB 0.90 1267 10859 2857 6722 1280 55.3 MiB 0.15 0.00 7.65156 -158.395 -7.65156 7.65156 0.78 0.00100131 0.00092528 0.0617 0.0570259 40 3056 37 6.79088e+06 309856 706193. 2443.58 2.74 0.279392 0.24646 26254 175826 -1 2912 15 1223 3639 274466 56476 6.59546 6.59546 -151.828 -6.59546 0 0 926341. 3205.33 0.29 0.11 0.17 -1 -1 0.29 0.0371794 0.0333846 135 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 9.34 vpr 54.93 MiB 0.02 6868 -1 -1 12 0.20 -1 -1 32728 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 16.5 MiB 1.08 1093 11106 3659 5731 1716 55.0 MiB 0.15 0.00 7.11863 -144.901 -7.11863 7.11863 0.78 0.000915374 0.000846525 0.061927 0.0572819 36 3155 46 6.79088e+06 229024 648988. 2245.63 4.59 0.284574 0.24952 25390 158009 -1 2478 18 1153 2944 213889 45889 6.48693 6.48693 -146.091 -6.48693 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0352709 0.0312052 113 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 8.35 vpr 55.34 MiB 0.05 6960 -1 -1 14 0.43 -1 -1 32660 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1406 13355 3498 8147 1710 55.8 MiB 0.20 0.00 8.18038 -175.8 -8.18038 8.18038 0.78 0.00118734 0.00109569 0.0852463 0.0787945 48 3394 30 6.79088e+06 336800 865456. 2994.66 5.00 0.498263 0.436297 27694 206865 -1 3185 17 1457 4522 331889 66497 7.37233 7.37233 -166.816 -7.37233 0 0 1.05005e+06 3633.38 0.33 0.12 0.20 -1 -1 0.33 0.0444661 0.0396667 169 245 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 7.55 vpr 54.73 MiB 0.04 6476 -1 -1 11 0.19 -1 -1 32416 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.3 MiB 1.64 1088 9006 2212 5478 1316 54.8 MiB 0.12 0.00 6.58747 -141.672 -6.58747 6.58747 0.78 0.00089815 0.000829384 0.0492808 0.0455933 38 3071 35 6.79088e+06 242496 678818. 2348.85 4.25 0.315107 0.274018 25966 169698 -1 2487 16 1148 3022 201368 41429 5.78197 5.78197 -135.83 -5.78197 0 0 902133. 3121.57 0.29 0.09 0.16 -1 -1 0.29 0.0326291 0.0290316 113 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 9.48 vpr 55.09 MiB 0.05 6832 -1 -1 13 0.27 -1 -1 32768 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 16.5 MiB 1.50 1133 5422 1123 3954 345 55.1 MiB 0.09 0.00 7.76692 -152.212 -7.76692 7.76692 0.79 0.000983038 0.00090857 0.0338638 0.0313642 44 2770 26 6.79088e+06 255968 787024. 2723.27 4.03 0.317691 0.275765 27118 194962 -1 2298 15 853 2931 200982 39328 6.59546 6.59546 -142.598 -6.59546 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0337916 0.0301205 132 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 8.08 vpr 55.15 MiB 0.05 6692 -1 -1 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 16.7 MiB 1.43 1437 6967 1505 4666 796 55.5 MiB 0.12 0.00 7.30746 -159.645 -7.30746 7.30746 0.77 0.00111429 0.00102881 0.0468621 0.0433749 40 3686 38 6.79088e+06 282912 706193. 2443.58 5.51 0.446566 0.387999 26254 175826 -1 3189 17 1414 4200 334125 66331 6.50582 6.50582 -151.873 -6.50582 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0416957 0.0371465 153 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 9.23 vpr 54.95 MiB 0.05 6640 -1 -1 13 0.24 -1 -1 32888 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 16.6 MiB 1.23 1157 7823 1835 4914 1074 55.3 MiB 0.12 0.00 7.47708 -158.746 -7.47708 7.47708 0.79 0.000985212 0.000910312 0.0466377 0.0431743 38 3107 27 6.79088e+06 255968 678818. 2348.85 4.64 0.336713 0.294133 25966 169698 -1 2483 16 1181 3418 209760 44377 6.58427 6.58427 -148.959 -6.58427 0 0 902133. 3121.57 0.28 0.09 0.16 -1 -1 0.28 0.0351602 0.0312895 131 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 11.49 vpr 55.05 MiB 0.05 6832 -1 -1 13 0.22 -1 -1 32764 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.5 MiB 1.84 1097 11106 3753 5771 1582 55.3 MiB 0.15 0.00 7.69072 -162.222 -7.69072 7.69072 0.79 0.00095143 0.000878715 0.0646519 0.0597563 38 2792 27 6.79088e+06 229024 678818. 2348.85 4.59 0.38519 0.335759 25966 169698 -1 2183 16 1063 2965 165926 36303 6.50592 6.50592 -150.237 -6.50592 0 0 902133. 3121.57 0.28 0.08 0.17 -1 -1 0.28 0.0343979 0.0306117 118 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 10.68 vpr 55.13 MiB 0.05 6792 -1 -1 12 0.26 -1 -1 32736 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 16.8 MiB 1.82 1359 8151 1869 5680 602 55.5 MiB 0.13 0.00 7.62073 -165.231 -7.62073 7.62073 0.78 0.0010651 0.000983696 0.0495924 0.0458889 44 3268 18 6.79088e+06 309856 787024. 2723.27 4.69 0.355631 0.310944 27118 194962 -1 2708 34 1126 3852 693243 368597 7.12467 7.12467 -161.248 -7.12467 0 0 997811. 3452.63 0.33 0.27 0.21 -1 -1 0.33 0.0682817 0.0599504 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 9.40 vpr 55.23 MiB 0.05 6776 -1 -1 13 0.32 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 16.5 MiB 2.01 1315 9051 2036 5908 1107 55.2 MiB 0.14 0.00 7.55776 -165.084 -7.55776 7.55776 0.78 0.00107031 0.000989368 0.0577316 0.0534297 40 3083 20 6.79088e+06 269440 706193. 2443.58 2.42 0.268405 0.235409 26254 175826 -1 3051 16 1443 4020 305386 63250 6.95247 6.95247 -160.51 -6.95247 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0387981 0.0345767 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 7.45 vpr 54.93 MiB 0.05 6872 -1 -1 14 0.26 -1 -1 33072 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 16.6 MiB 2.00 1139 8270 1889 5806 575 55.1 MiB 0.12 0.00 8.36252 -172.285 -8.36252 8.36252 0.82 0.000943685 0.000872577 0.0460399 0.0426147 42 3528 44 6.79088e+06 242496 744469. 2576.02 2.35 0.209999 0.184393 26542 182613 -1 2722 15 1147 3233 231368 48389 7.46496 7.46496 -165.839 -7.46496 0 0 949917. 3286.91 0.31 0.10 0.18 -1 -1 0.31 0.0352527 0.0316737 123 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 13.15 vpr 55.17 MiB 0.05 6840 -1 -1 13 0.27 -1 -1 32796 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 16.5 MiB 2.96 1159 8868 1881 6136 851 55.2 MiB 0.14 0.00 8.02321 -165.348 -8.02321 8.02321 0.78 0.00101983 0.00094307 0.0540934 0.0500571 34 4215 50 6.79088e+06 269440 618332. 2139.56 3.22 0.277832 0.243422 25102 150614 -1 3004 21 1633 4521 350617 72580 6.88182 6.88182 -161.562 -6.88182 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0403485 0.0358935 134 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 9.50 vpr 55.14 MiB 0.05 6908 -1 -1 13 0.30 -1 -1 32900 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 16.7 MiB 1.17 1323 8591 2185 5991 415 55.4 MiB 0.14 0.00 8.19403 -174.315 -8.19403 8.19403 0.78 0.00109655 0.0010139 0.0544472 0.0503277 38 3671 47 6.79088e+06 309856 678818. 2348.85 14.25 0.525681 0.457069 25966 169698 -1 2911 16 1429 4237 279860 56946 7.17168 7.17168 -164.519 -7.17168 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0389532 0.0347037 154 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 9.90 vpr 55.10 MiB 0.05 6720 -1 -1 12 0.31 -1 -1 32832 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 16.8 MiB 1.23 1325 11983 3288 6841 1854 55.6 MiB 0.18 0.00 7.62163 -166.383 -7.62163 7.62163 0.78 0.00111543 0.00103111 0.0736683 0.0680688 46 3445 33 6.79088e+06 323328 828058. 2865.25 5.25 0.387835 0.340593 27406 200422 -1 2655 18 1350 3864 252132 51724 6.45553 6.45553 -153.664 -6.45553 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0429749 0.0381854 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 7.02 vpr 54.48 MiB 0.04 6584 -1 -1 11 0.13 -1 -1 32324 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 16.1 MiB 1.31 956 7249 1855 4884 510 54.6 MiB 0.09 0.00 6.10061 -138.097 -6.10061 6.10061 0.78 0.000755211 0.000697057 0.0365468 0.0337655 46 2238 34 6.79088e+06 175136 828058. 2865.25 4.72 0.230377 0.200686 27406 200422 -1 1965 30 873 2227 360189 186259 5.5245 5.5245 -131.587 -5.5245 0 0 1.01997e+06 3529.29 0.31 0.15 0.19 -1 -1 0.31 0.0427418 0.0374489 90 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 9.47 vpr 54.89 MiB 0.05 6612 -1 -1 13 0.20 -1 -1 32732 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 16.3 MiB 2.45 1073 11631 3861 5991 1779 55.1 MiB 0.15 0.00 7.81611 -170.556 -7.81611 7.81611 0.79 0.000880015 0.000812647 0.0625727 0.0578294 38 2856 21 6.79088e+06 229024 678818. 2348.85 2.82 0.245685 0.215805 25966 169698 -1 2319 14 1038 2655 165089 34827 6.70962 6.70962 -157.226 -6.70962 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0287627 0.0256554 113 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 9.17 vpr 55.48 MiB 0.05 6868 -1 -1 14 0.43 -1 -1 32864 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 17.0 MiB 1.01 1399 15493 4561 8338 2594 55.9 MiB 0.25 0.00 8.67312 -179.019 -8.67312 8.67312 0.79 0.00127394 0.00117309 0.107368 0.0992013 44 4436 24 6.79088e+06 323328 787024. 2723.27 6.22 0.543522 0.480172 27118 194962 -1 3311 16 1770 5416 372153 76605 7.4684 7.4684 -168.384 -7.4684 0 0 997811. 3452.63 0.31 0.13 0.18 -1 -1 0.31 0.0465601 0.0418453 180 267 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 9.06 vpr 55.21 MiB 0.05 6800 -1 -1 13 0.32 -1 -1 32852 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 16.8 MiB 2.22 1244 13849 3731 7364 2754 55.6 MiB 0.20 0.00 8.43396 -178.911 -8.43396 8.43396 0.79 0.00112497 0.00103805 0.08914 0.0823652 36 4571 48 6.79088e+06 282912 648988. 2245.63 16.49 0.532953 0.465565 25390 158009 -1 3087 18 1511 4155 302116 66225 7.34737 7.34737 -169.624 -7.34737 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.044327 0.0394063 154 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 6.92 vpr 54.73 MiB 0.02 6684 -1 -1 11 0.18 -1 -1 32592 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 16.2 MiB 0.70 899 5994 1459 3795 740 54.8 MiB 0.08 0.00 6.69493 -140.456 -6.69493 6.69493 0.78 0.000794895 0.000734298 0.031391 0.0289703 30 2482 27 6.79088e+06 229024 556674. 1926.21 1.96 0.140124 0.122861 24526 138013 -1 1965 17 917 2589 146449 32281 5.90384 5.90384 -132.64 -5.90384 0 0 706193. 2443.58 0.23 0.07 0.13 -1 -1 0.23 0.0293949 0.0261016 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 10.85 vpr 55.52 MiB 0.05 7028 -1 -1 15 0.43 -1 -1 32952 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 17.0 MiB 1.23 1572 8083 1890 5078 1115 55.6 MiB 0.14 0.00 9.61575 -193.644 -9.61575 9.61575 0.78 0.00121815 0.00112016 0.0552115 0.0509918 46 4045 27 6.79088e+06 323328 828058. 2865.25 2.71 0.259985 0.230858 27406 200422 -1 3169 18 1508 4603 318410 62168 8.1454 8.1454 -176.643 -8.1454 0 0 1.01997e+06 3529.29 0.31 0.12 0.18 -1 -1 0.31 0.0474311 0.0423009 172 241 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 7.61 vpr 55.12 MiB 0.02 6700 -1 -1 13 0.32 -1 -1 33200 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 16.7 MiB 1.06 1447 9914 2954 6315 645 55.2 MiB 0.15 0.00 8.38843 -181.197 -8.38843 8.38843 0.79 0.00107746 0.000996494 0.0610335 0.0564854 36 3960 36 6.79088e+06 296384 648988. 2245.63 2.47 0.246876 0.217234 25390 158009 -1 3268 17 1506 4194 304675 62185 7.43336 7.43336 -178.34 -7.43336 0 0 828058. 2865.25 0.26 0.11 0.15 -1 -1 0.26 0.040113 0.0357022 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 5.99 vpr 54.62 MiB 0.04 6580 -1 -1 11 0.13 -1 -1 32692 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 16.0 MiB 1.51 1043 11604 3704 5973 1927 54.6 MiB 0.14 0.00 6.83225 -151.19 -6.83225 6.83225 0.81 0.000798801 0.000735612 0.0574095 0.0529876 30 2577 19 6.79088e+06 215552 556674. 1926.21 1.55 0.15872 0.141924 24526 138013 -1 2225 18 998 2442 143990 31391 6.20139 6.20139 -147.73 -6.20139 0 0 706193. 2443.58 0.27 0.07 0.14 -1 -1 0.27 0.0307983 0.0272975 97 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 7.56 vpr 55.27 MiB 0.05 7000 -1 -1 12 0.29 -1 -1 32836 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1321 11989 3057 7272 1660 55.6 MiB 0.17 0.00 7.80487 -167.158 -7.80487 7.80487 0.80 0.000849863 0.000776298 0.0689305 0.0634125 38 3489 26 6.79088e+06 282912 678818. 2348.85 14.45 0.51014 0.443134 25966 169698 -1 2937 30 1426 4413 561061 248678 6.74877 6.74877 -154.693 -6.74877 0 0 902133. 3121.57 0.34 0.24 0.17 -1 -1 0.34 0.0682445 0.0606619 152 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 9.40 vpr 54.76 MiB 0.02 6616 -1 -1 12 0.22 -1 -1 32368 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 16.4 MiB 1.67 1076 11776 3996 5804 1976 54.9 MiB 0.16 0.00 7.20737 -155.525 -7.20737 7.20737 0.78 0.000920111 0.000849905 0.0663734 0.061406 40 2876 47 6.79088e+06 215552 706193. 2443.58 4.98 0.404128 0.351633 26254 175826 -1 2657 18 1255 3284 287920 61191 6.20488 6.20488 -148.339 -6.20488 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0350268 0.0310047 115 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 8.19 vpr 54.66 MiB 0.04 6584 -1 -1 12 0.18 -1 -1 32792 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 16.1 MiB 1.21 861 12331 3461 6927 1943 54.7 MiB 0.14 0.00 7.68992 -150.206 -7.68992 7.68992 0.79 0.000820799 0.000758219 0.0611111 0.056463 30 2279 22 6.79088e+06 255968 556674. 1926.21 1.26 0.163174 0.145353 24526 138013 -1 1867 13 775 2173 112780 25618 6.47016 6.47016 -140.483 -6.47016 0 0 706193. 2443.58 0.24 0.06 0.14 -1 -1 0.24 0.0252967 0.0225915 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 14.11 vpr 55.08 MiB 0.05 6892 -1 -1 12 0.28 -1 -1 32812 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 16.5 MiB 1.28 1109 13105 4321 6403 2381 55.2 MiB 0.18 0.00 7.73882 -148.46 -7.73882 7.73882 0.79 0.00106196 0.000981357 0.0792506 0.0733035 44 3073 26 6.79088e+06 323328 787024. 2723.27 4.06 0.378036 0.330874 27118 194962 -1 2202 15 1010 3369 196736 41979 6.80802 6.80802 -136.104 -6.80802 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0368384 0.032903 144 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 10.70 vpr 55.34 MiB 0.05 6788 -1 -1 14 0.31 -1 -1 32952 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 16.8 MiB 2.40 1442 8024 2021 5399 604 55.6 MiB 0.13 0.00 8.63126 -174.325 -8.63126 8.63126 0.79 0.00112734 0.00104252 0.052122 0.0482204 42 3928 32 6.79088e+06 296384 744469. 2576.02 21.76 0.532996 0.463261 26542 182613 -1 3156 20 1704 4448 351968 71204 7.64055 7.64055 -165.444 -7.64055 0 0 949917. 3286.91 0.32 0.13 0.18 -1 -1 0.32 0.0472614 0.0419612 155 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 9.43 vpr 54.95 MiB 0.05 6744 -1 -1 12 0.23 -1 -1 32848 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 16.4 MiB 1.33 1323 12503 3954 6429 2120 55.1 MiB 0.18 0.00 7.68002 -164.527 -7.68002 7.68002 0.78 0.00102046 0.000943266 0.075326 0.0696208 38 3737 43 6.79088e+06 255968 678818. 2348.85 4.64 0.31781 0.279593 25966 169698 -1 2891 18 1369 3963 302432 68591 6.75652 6.75652 -158.471 -6.75652 0 0 902133. 3121.57 0.29 0.12 0.13 -1 -1 0.29 0.0408072 0.0363646 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 8.83 vpr 54.41 MiB 0.04 6592 -1 -1 12 0.14 -1 -1 32692 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 15.9 MiB 1.22 883 6839 1546 5160 133 54.5 MiB 0.10 0.00 7.22527 -147.319 -7.22527 7.22527 0.78 0.000783787 0.000715596 0.0352025 0.0324377 36 2385 16 6.79088e+06 202080 648988. 2245.63 3.66 0.218406 0.190189 25390 158009 -1 2029 16 842 2333 154772 33320 6.16917 6.16917 -141.929 -6.16917 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0273946 0.0242842 95 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 8.53 vpr 54.71 MiB 0.05 6580 -1 -1 12 0.21 -1 -1 32352 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 16.5 MiB 1.91 1016 11806 3829 5905 2072 55.0 MiB 0.15 0.00 7.21239 -153.602 -7.21239 7.21239 0.79 0.000913611 0.000842737 0.0652649 0.0603149 44 2603 19 6.79088e+06 242496 787024. 2723.27 2.14 0.226025 0.198947 27118 194962 -1 2065 15 888 2438 165954 33937 6.38057 6.38057 -142.436 -6.38057 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0315752 0.0280887 114 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 8.77 vpr 54.99 MiB 0.05 6808 -1 -1 11 0.19 -1 -1 32868 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 16.5 MiB 2.64 1192 7587 1799 4901 887 55.2 MiB 0.11 0.00 6.65573 -139.172 -6.65573 6.65573 0.79 0.000991937 0.000917419 0.0443175 0.0409989 38 3146 28 6.79088e+06 296384 678818. 2348.85 3.96 0.255316 0.222726 25966 169698 -1 2651 15 1163 3604 226505 46075 5.73164 5.73164 -133.904 -5.73164 0 0 902133. 3121.57 0.27 0.09 0.18 -1 -1 0.27 0.0334304 0.0298094 129 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 8.96 vpr 54.84 MiB 0.02 6784 -1 -1 11 0.20 -1 -1 32772 -1 -1 21 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 16.4 MiB 1.26 990 12156 4943 6412 801 54.9 MiB 0.16 0.00 6.59863 -125.892 -6.59863 6.59863 0.78 0.000917113 0.000847748 0.0670969 0.062059 40 2995 50 6.79088e+06 282912 706193. 2443.58 3.02 0.292396 0.255731 26254 175826 -1 2536 29 1635 4811 462729 149224 5.98983 5.98983 -123.995 -5.98983 0 0 926341. 3205.33 0.28 0.17 0.17 -1 -1 0.28 0.0508582 0.0445247 125 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 8.81 vpr 54.77 MiB 0.05 6632 -1 -1 13 0.18 -1 -1 32680 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 16.1 MiB 2.62 1023 6220 1452 4481 287 54.7 MiB 0.08 0.00 7.37394 -146.255 -7.37394 7.37394 0.78 0.000791182 0.000730694 0.0327801 0.0303354 34 2942 40 6.79088e+06 215552 618332. 2139.56 2.23 0.18409 0.160812 25102 150614 -1 2408 16 989 2444 169826 36658 6.50592 6.50592 -143.367 -6.50592 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0287908 0.0256563 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 7.60 vpr 54.89 MiB 0.04 6636 -1 -1 12 0.19 -1 -1 32460 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 16.4 MiB 1.79 1239 4476 858 3235 383 55.2 MiB 0.07 0.00 7.13568 -159.479 -7.13568 7.13568 0.84 0.000955531 0.000881215 0.0279352 0.0258823 36 2894 18 6.79088e+06 269440 648988. 2245.63 3.92 0.225821 0.198208 25390 158009 -1 2565 14 1082 2807 201948 41879 6.45548 6.45548 -154.903 -6.45548 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0307896 0.0274279 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 8.41 vpr 54.98 MiB 0.05 6748 -1 -1 13 0.29 -1 -1 32804 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 16.4 MiB 1.67 1176 7283 1697 4959 627 55.1 MiB 0.11 0.00 7.98183 -162.706 -7.98183 7.98183 0.78 0.00101474 0.000938566 0.0451687 0.0418248 30 3060 22 6.79088e+06 269440 556674. 1926.21 10.16 0.415845 0.362167 24526 138013 -1 2446 15 1089 3242 179077 39801 6.80691 6.80691 -151.712 -6.80691 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.034407 0.0306628 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 8.81 vpr 55.02 MiB 0.05 6848 -1 -1 14 0.30 -1 -1 32744 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1408 9013 2325 5592 1096 55.6 MiB 0.14 0.00 8.8032 -181.521 -8.8032 8.8032 0.79 0.00109947 0.00101554 0.0578786 0.0534764 36 3716 28 6.79088e+06 282912 648988. 2245.63 3.55 0.295103 0.258744 25390 158009 -1 3017 16 1370 3693 258657 53176 7.85554 7.85554 -177.767 -7.85554 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0394893 0.0352071 149 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 10.06 vpr 55.01 MiB 0.05 6788 -1 -1 14 0.26 -1 -1 32832 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 16.5 MiB 2.15 1168 12528 4001 6466 2061 55.1 MiB 0.17 0.00 8.11366 -160.164 -8.11366 8.11366 0.78 0.00100379 0.000927658 0.0730958 0.0675095 38 3416 34 6.79088e+06 269440 678818. 2348.85 4.51 0.31029 0.273975 25966 169698 -1 2722 20 1291 3804 238849 50695 7.34388 7.34388 -152.923 -7.34388 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0419018 0.0371235 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 8.14 vpr 55.14 MiB 0.05 6628 -1 -1 13 0.34 -1 -1 33332 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 16.8 MiB 1.88 1266 7823 1896 4973 954 55.2 MiB 0.12 0.00 7.98865 -167.696 -7.98865 7.98865 0.78 0.00104526 0.000965179 0.0496114 0.0458829 38 3341 46 6.79088e+06 255968 678818. 2348.85 14.33 0.512687 0.445486 25966 169698 -1 2673 18 1200 3630 224806 47231 6.74882 6.74882 -156.035 -6.74882 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0406717 0.0361777 139 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 8.33 vpr 54.74 MiB 0.05 6540 -1 -1 13 0.18 -1 -1 32592 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 16.2 MiB 1.45 955 5888 1275 4387 226 54.6 MiB 0.09 0.00 7.30909 -151.711 -7.30909 7.30909 0.78 0.000835116 0.000765635 0.0326631 0.0302213 38 2560 19 6.79088e+06 215552 678818. 2348.85 11.33 0.354556 0.308031 25966 169698 -1 2100 15 975 2306 140137 30240 6.20837 6.20837 -141.215 -6.20837 0 0 902133. 3121.57 0.25 0.04 0.11 -1 -1 0.25 0.0157038 0.0142732 106 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 9.33 vpr 55.16 MiB 0.04 6804 -1 -1 13 0.43 -1 -1 32768 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 16.8 MiB 1.35 1281 12175 3045 7735 1395 55.2 MiB 0.18 0.00 8.2401 -167.978 -8.2401 8.2401 0.78 0.00106415 0.000984593 0.0740363 0.0684827 36 3633 23 6.79088e+06 309856 648988. 2245.63 4.71 0.304659 0.268826 25390 158009 -1 2926 15 1331 3364 242193 50003 7.30041 7.30041 -163.44 -7.30041 0 0 828058. 2865.25 0.29 0.10 0.16 -1 -1 0.29 0.0370527 0.0331446 144 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 7.65 vpr 55.00 MiB 0.04 6960 -1 -1 14 0.29 -1 -1 31568 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 16.6 MiB 1.69 1252 6306 1410 4478 418 55.3 MiB 0.11 0.00 8.1933 -176.786 -8.1933 8.1933 0.78 0.000992825 0.000916527 0.0386956 0.0358347 44 3050 16 6.79088e+06 269440 787024. 2723.27 2.37 0.208137 0.18224 27118 194962 -1 2540 16 1037 3296 220504 43729 7.43347 7.43347 -167.702 -7.43347 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0357029 0.031727 133 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 8.51 vpr 54.97 MiB 0.05 6864 -1 -1 12 0.25 -1 -1 32820 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 16.6 MiB 1.78 1214 6855 1626 4139 1090 55.3 MiB 0.11 0.00 7.87232 -159.238 -7.87232 7.87232 0.79 0.0010409 0.000963791 0.0435458 0.040354 38 3179 23 6.79088e+06 282912 678818. 2348.85 3.13 0.261679 0.229141 25966 169698 -1 2619 17 1191 3371 219063 45384 6.75996 6.75996 -149.97 -6.75996 0 0 902133. 3121.57 0.27 0.09 0.18 -1 -1 0.27 0.039049 0.0348967 143 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 8.28 vpr 55.01 MiB 0.05 6788 -1 -1 13 0.24 -1 -1 32832 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 16.5 MiB 1.84 1166 13583 4513 7114 1956 55.1 MiB 0.18 0.00 8.05477 -151.514 -8.05477 8.05477 0.79 0.000960423 0.000887498 0.0769281 0.0710843 38 3229 19 6.79088e+06 282912 678818. 2348.85 3.55 0.270559 0.238159 25966 169698 -1 2657 23 1308 3559 283929 73986 7.08558 7.08558 -144.285 -7.08558 0 0 902133. 3121.57 0.27 0.12 0.16 -1 -1 0.27 0.044522 0.0392767 126 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 8.19 vpr 55.19 MiB 0.05 6700 -1 -1 14 0.34 -1 -1 32880 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1356 6595 1328 4700 567 55.4 MiB 0.11 0.00 8.2637 -174.994 -8.2637 8.2637 0.78 0.00111069 0.00102704 0.0438698 0.0406619 38 3944 40 6.79088e+06 282912 678818. 2348.85 4.96 0.311104 0.272677 25966 169698 -1 3101 22 1685 4745 323481 65687 7.17162 7.17162 -164.744 -7.17162 0 0 902133. 3121.57 0.27 0.13 0.16 -1 -1 0.27 0.0498721 0.044155 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 11.30 vpr 55.09 MiB 0.05 6872 -1 -1 11 0.28 -1 -1 32968 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 16.5 MiB 1.18 1061 13403 4351 6899 2153 55.1 MiB 0.16 0.00 6.99502 -136.053 -6.99502 6.99502 0.80 0.000672719 0.000615711 0.0614445 0.0563311 44 2733 16 6.79088e+06 296384 787024. 2723.27 4.29 0.303359 0.265153 27118 194962 -1 2186 15 1017 3252 209503 43322 5.87926 5.87926 -124.096 -5.87926 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0324888 0.0289324 130 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 18.15 vpr 54.60 MiB 0.04 6608 -1 -1 13 0.16 -1 -1 32584 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 16.1 MiB 2.85 995 4062 701 3272 89 54.7 MiB 0.07 0.00 6.9771 -161.617 -6.9771 6.9771 0.78 0.000805918 0.000743904 0.0228421 0.0211641 38 2669 23 6.79088e+06 188608 678818. 2348.85 4.21 0.235031 0.204267 25966 169698 -1 2317 16 1087 2615 182540 37203 6.36594 6.36594 -158.261 -6.36594 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0286378 0.0254519 99 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 9.24 vpr 54.95 MiB 0.04 6712 -1 -1 14 0.23 -1 -1 32772 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 16.5 MiB 1.58 1302 5483 1117 4002 364 55.2 MiB 0.05 0.00 8.68565 -176.783 -8.68565 8.68565 0.64 0.000423178 0.000387533 0.0163901 0.0151233 36 3251 31 6.79088e+06 255968 648988. 2245.63 4.52 0.209178 0.181822 25390 158009 -1 2857 22 1274 3475 326178 96259 7.59375 7.59375 -168.045 -7.59375 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.0434788 0.0384184 129 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 9.86 vpr 55.52 MiB 0.05 6788 -1 -1 15 0.36 -1 -1 33168 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 16.9 MiB 1.92 1292 9914 2574 6184 1156 55.6 MiB 0.16 0.00 9.1052 -186.475 -9.1052 9.1052 0.78 0.0011403 0.00105333 0.0658482 0.0609387 42 3852 48 6.79088e+06 296384 744469. 2576.02 4.70 0.412385 0.360554 26542 182613 -1 2971 30 1580 4351 426615 133445 7.8164 7.8164 -176.348 -7.8164 0 0 949917. 3286.91 0.29 0.18 0.18 -1 -1 0.29 0.0643216 0.05662 153 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 6.81 vpr 54.61 MiB 0.04 6688 -1 -1 11 0.16 -1 -1 32428 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 16.2 MiB 1.96 829 6054 1305 4663 86 54.7 MiB 0.09 0.00 6.63906 -133.693 -6.63906 6.63906 0.78 0.000766965 0.000707213 0.0310342 0.0286514 36 2378 25 6.79088e+06 188608 648988. 2245.63 4.03 0.221332 0.192497 25390 158009 -1 1951 18 929 2412 156359 35347 5.66443 5.66443 -131.497 -5.66443 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.0291344 0.0257875 91 124 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 9.18 vpr 54.79 MiB 0.04 6564 -1 -1 12 0.18 -1 -1 32540 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 16.5 MiB 1.45 1045 8360 2472 4444 1444 55.0 MiB 0.12 0.00 7.09988 -155.106 -7.09988 7.09988 0.79 0.000871393 0.000804359 0.0473453 0.0437763 36 2903 31 6.79088e+06 215552 648988. 2245.63 3.26 0.241682 0.211198 25390 158009 -1 2494 18 1219 3245 218949 46971 6.15449 6.15449 -148.32 -6.15449 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0335656 0.0297119 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 7.78 vpr 55.09 MiB 0.02 6676 -1 -1 12 0.37 -1 -1 32968 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 16.8 MiB 1.39 1231 6306 1337 4274 695 55.2 MiB 0.11 0.00 7.48442 -156.804 -7.48442 7.48442 0.79 0.00111005 0.00102786 0.04279 0.039682 36 3660 48 6.79088e+06 269440 648988. 2245.63 3.90 0.313558 0.273895 25390 158009 -1 2930 18 1374 3677 255073 54763 6.67381 6.67381 -159.977 -6.67381 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0424187 0.0377247 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 9.82 vpr 55.02 MiB 0.01 6796 -1 -1 12 0.24 -1 -1 32864 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 16.4 MiB 1.57 1313 9443 2521 5826 1096 55.0 MiB 0.12 0.00 7.56551 -160.745 -7.56551 7.56551 0.80 0.000674199 0.000615349 0.0480604 0.0442679 36 3743 26 6.79088e+06 255968 648988. 2245.63 4.52 0.263133 0.231178 25390 158009 -1 2904 15 1243 3681 239298 50800 6.72081 6.72081 -157.76 -6.72081 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.033683 0.0299799 133 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 8.94 vpr 55.40 MiB 0.03 6876 -1 -1 14 0.46 -1 -1 33316 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1284 5079 907 4069 103 55.5 MiB 0.11 0.00 8.77515 -179.37 -8.77515 8.77515 0.78 0.0012057 0.00111229 0.0385813 0.03576 44 3796 32 6.79088e+06 309856 787024. 2723.27 5.00 0.421438 0.366145 27118 194962 -1 2993 20 1472 4331 292142 60580 7.75826 7.75826 -170.084 -7.75826 0 0 997811. 3452.63 0.32 0.12 0.19 -1 -1 0.32 0.0499558 0.0444465 170 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 9.86 vpr 54.80 MiB 0.05 6712 -1 -1 11 0.23 -1 -1 32412 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 16.5 MiB 1.82 1159 11963 3648 6429 1886 55.1 MiB 0.16 0.00 7.06667 -142.983 -7.06667 7.06667 0.78 0.00095265 0.00088075 0.0672745 0.0622502 36 3496 38 6.79088e+06 282912 648988. 2245.63 14.82 0.410372 0.357499 25390 158009 -1 2773 15 1239 3552 235473 50045 6.29442 6.29442 -138.561 -6.29442 0 0 828058. 2865.25 0.27 0.09 0.16 -1 -1 0.27 0.0328447 0.0292613 128 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 6.35 vpr 54.79 MiB 0.02 6660 -1 -1 11 0.17 -1 -1 32420 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 16.1 MiB 1.09 770 7714 1883 5409 422 54.7 MiB 0.10 0.00 6.64923 -122.654 -6.64923 6.64923 0.78 0.000777906 0.000718773 0.0393295 0.0363467 30 2716 40 6.79088e+06 255968 556674. 1926.21 5.36 0.320575 0.277449 24526 138013 -1 1974 15 964 2526 169628 37379 5.81779 5.81779 -122.796 -5.81779 0 0 706193. 2443.58 0.24 0.07 0.13 -1 -1 0.24 0.0264801 0.0235498 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 11.50 vpr 55.80 MiB 0.05 7048 -1 -1 13 0.46 -1 -1 32828 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 17.2 MiB 1.72 1654 14793 4090 8037 2666 55.5 MiB 0.25 0.00 8.15219 -167.23 -8.15219 8.15219 0.80 0.00133408 0.00122367 0.0992112 0.0915465 40 4854 26 6.79088e+06 390688 706193. 2443.58 4.71 0.379284 0.33456 26254 175826 -1 4216 20 2198 6707 533986 105795 7.26116 7.26116 -164.519 -7.26116 0 0 926341. 3205.33 0.28 0.17 0.17 -1 -1 0.28 0.0556289 0.0494539 191 279 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 7.32 vpr 54.86 MiB 0.05 6780 -1 -1 14 0.26 -1 -1 33408 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 16.4 MiB 1.26 1216 6923 1704 4584 635 55.0 MiB 0.11 0.00 8.60637 -173.25 -8.60637 8.60637 0.78 0.000974969 0.000902644 0.0412734 0.0382531 30 3411 33 6.79088e+06 269440 556674. 1926.21 2.24 0.177444 0.156013 24526 138013 -1 2773 18 1384 3729 235085 50450 7.42577 7.42577 -168.834 -7.42577 0 0 706193. 2443.58 0.27 0.11 0.14 -1 -1 0.27 0.0412111 0.0364857 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 7.51 vpr 54.70 MiB 0.04 6640 -1 -1 12 0.16 -1 -1 32332 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 16.4 MiB 2.11 1144 8723 2365 5890 468 54.9 MiB 0.12 0.00 7.40683 -169.316 -7.40683 7.40683 0.79 0.00082686 0.000762466 0.0433848 0.0400136 38 3028 21 6.79088e+06 255968 678818. 2348.85 13.27 0.343887 0.299163 25966 169698 -1 2585 14 1125 2806 183086 38344 6.54507 6.54507 -162.036 -6.54507 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0268127 0.0239483 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 9.22 vpr 55.04 MiB 0.05 6648 -1 -1 13 0.29 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 16.5 MiB 2.52 1115 5066 1001 3852 213 55.0 MiB 0.08 0.00 8.33866 -169.136 -8.33866 8.33866 0.79 0.000962195 0.000889805 0.0313986 0.029103 46 2861 28 6.79088e+06 242496 828058. 2865.25 2.19 0.198114 0.173946 27406 200422 -1 2407 16 1069 3093 203685 41602 7.04987 7.04987 -155.226 -7.04987 0 0 1.01997e+06 3529.29 0.31 0.09 0.15 -1 -1 0.31 0.0343771 0.0306113 125 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 8.17 vpr 55.38 MiB 0.05 6912 -1 -1 13 0.30 -1 -1 33424 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 16.8 MiB 1.97 1490 8083 1681 5214 1188 55.3 MiB 0.14 0.00 7.4732 -162.473 -7.4732 7.4732 0.79 0.00114706 0.00105953 0.0527271 0.0488242 38 4036 37 6.79088e+06 336800 678818. 2348.85 5.35 0.321221 0.28133 25966 169698 -1 3216 17 1586 4292 286233 57211 6.50587 6.50587 -152.554 -6.50587 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0424931 0.037846 159 234 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 7.87 vpr 55.01 MiB 0.05 6712 -1 -1 11 0.23 -1 -1 32744 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 16.6 MiB 1.49 1209 11059 2877 6113 2069 55.2 MiB 0.16 0.00 7.11391 -144.84 -7.11391 7.11391 0.83 0.00103058 0.000951842 0.0657992 0.0609298 36 3831 43 6.79088e+06 309856 648988. 2245.63 20.51 0.491102 0.427922 25390 158009 -1 2979 22 1388 4671 437225 111116 6.45892 6.45892 -142.761 -6.45892 0 0 828058. 2865.25 0.26 0.15 0.15 -1 -1 0.26 0.0456188 0.0403008 140 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 26.81 vpr 55.25 MiB 0.05 6840 -1 -1 15 0.32 -1 -1 33008 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 16.8 MiB 1.43 1211 12503 3460 7559 1484 55.2 MiB 0.17 0.00 9.11536 -184.558 -9.11536 9.11536 0.79 0.00105154 0.000970207 0.0774467 0.0715863 44 3043 41 6.79088e+06 255968 787024. 2723.27 2.39 0.268167 0.236505 27118 194962 -1 2494 14 1120 3101 201110 42878 7.59386 7.59386 -164.1 -7.59386 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0342807 0.0306421 142 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 12.00 vpr 55.32 MiB 0.05 6760 -1 -1 13 0.31 -1 -1 32876 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 16.8 MiB 1.99 1357 5463 1001 4200 262 55.6 MiB 0.10 0.00 8.32676 -176.58 -8.32676 8.32676 0.80 0.0011306 0.00103961 0.0374531 0.0346418 36 4105 41 6.79088e+06 309856 648988. 2245.63 9.10 0.310589 0.270897 25390 158009 -1 3336 18 1449 4444 312347 65803 7.3039 7.3039 -168.956 -7.3039 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.0431771 0.0383112 154 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 8.48 vpr 54.81 MiB 0.05 6516 -1 -1 12 0.19 -1 -1 32212 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 16.2 MiB 1.82 941 10557 3755 4946 1856 54.6 MiB 0.13 0.00 7.68137 -155.362 -7.68137 7.68137 0.78 0.000856966 0.000793144 0.0557587 0.0515874 34 2784 27 6.79088e+06 242496 618332. 2139.56 1.83 0.192893 0.170031 25102 150614 -1 2219 17 1118 2552 158377 36969 6.45897 6.45897 -146.842 -6.45897 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0309492 0.0274894 109 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 8.57 vpr 54.57 MiB 0.04 6608 -1 -1 11 0.18 -1 -1 32388 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56028 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 16.1 MiB 1.41 1148 5224 1190 3763 271 54.7 MiB 0.08 0.00 6.84847 -147.97 -6.84847 6.84847 0.80 0.000806141 0.000744264 0.0287163 0.0265557 38 3149 47 6.79088e+06 188608 678818. 2348.85 17.47 0.401372 0.34674 25966 169698 -1 2462 14 1116 2832 183379 38076 6.07953 6.07953 -142.464 -6.07953 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0259096 0.0230953 98 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 7.53 vpr 55.20 MiB 0.05 6656 -1 -1 13 0.30 -1 -1 32904 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 16.8 MiB 1.12 1115 8455 2194 4906 1355 55.2 MiB 0.13 0.00 7.89179 -153.02 -7.89179 7.89179 0.79 0.00106067 0.00097994 0.0526385 0.0487325 38 3284 25 6.79088e+06 296384 678818. 2348.85 3.42 0.27804 0.243377 25966 169698 -1 2440 20 1317 3733 228435 48311 6.79916 6.79916 -143.904 -6.79916 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0440216 0.0389021 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 6.41 vpr 54.42 MiB 0.04 6632 -1 -1 10 0.17 -1 -1 32944 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 16.1 MiB 1.60 851 10204 2504 7246 454 54.7 MiB 0.12 0.00 6.11518 -125.484 -6.11518 6.11518 0.78 0.000780584 0.000720511 0.0509725 0.0471173 36 2718 44 6.79088e+06 229024 648988. 2245.63 2.06 0.198136 0.173721 25390 158009 -1 2001 18 1039 2804 174359 39570 5.36333 5.36333 -123.093 -5.36333 0 0 828058. 2865.25 0.27 0.08 0.16 -1 -1 0.27 0.0300953 0.0266299 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 10.00 vpr 54.80 MiB 0.04 6668 -1 -1 14 0.19 -1 -1 32704 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 16.5 MiB 2.59 1049 6312 1330 4556 426 54.8 MiB 0.09 0.00 7.76918 -161.081 -7.76918 7.76918 0.79 0.000841308 0.000776244 0.033425 0.0309256 44 2770 18 6.79088e+06 242496 787024. 2723.27 3.99 0.261315 0.227029 27118 194962 -1 2297 15 1001 2657 186808 38493 6.62358 6.62358 -150.482 -6.62358 0 0 997811. 3452.63 0.32 0.08 0.18 -1 -1 0.32 0.0284431 0.025563 110 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 8.53 vpr 55.20 MiB 0.04 6884 -1 -1 12 0.30 -1 -1 33040 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 16.8 MiB 1.11 1262 12919 3620 7000 2299 55.2 MiB 0.19 0.00 7.60154 -161.988 -7.60154 7.60154 0.84 0.00100717 0.000925842 0.0785828 0.0725847 36 3548 40 6.79088e+06 296384 648988. 2245.63 5.31 0.333953 0.294255 25390 158009 -1 2918 18 1293 3840 265441 54208 6.42321 6.42321 -152.443 -6.42321 0 0 828058. 2865.25 0.26 0.10 0.15 -1 -1 0.26 0.0403523 0.0358123 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 18.23 vpr 54.47 MiB 0.03 6564 -1 -1 12 0.15 -1 -1 32444 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 16.0 MiB 2.00 992 10726 2823 7181 722 54.7 MiB 0.14 0.00 6.58069 -144.507 -6.58069 6.58069 0.81 0.000950167 0.000887658 0.0542313 0.0500613 36 2863 30 6.79088e+06 215552 648988. 2245.63 4.22 0.272441 0.239174 25390 158009 -1 2275 14 965 2262 159533 33519 6.11529 6.11529 -140.819 -6.11529 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0254089 0.0226326 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 21.36 vpr 55.09 MiB 0.05 6800 -1 -1 12 0.19 -1 -1 32704 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 16.4 MiB 1.31 1163 7736 1889 5402 445 55.2 MiB 0.12 0.00 7.51176 -154.757 -7.51176 7.51176 0.78 0.000974881 0.000899035 0.0463535 0.0428419 38 3230 44 6.79088e+06 242496 678818. 2348.85 3.16 0.235678 0.206684 25966 169698 -1 2488 18 1146 3399 217401 44562 6.38406 6.38406 -145.229 -6.38406 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.038094 0.0337628 123 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 9.38 vpr 55.04 MiB 0.02 6884 -1 -1 13 0.29 -1 -1 32880 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 16.6 MiB 1.40 1250 11296 2557 6849 1890 55.3 MiB 0.16 0.00 7.49717 -162.624 -7.49717 7.49717 0.78 0.000984651 0.000910048 0.0663792 0.0614362 44 3142 26 6.79088e+06 255968 787024. 2723.27 5.36 0.398522 0.347542 27118 194962 -1 2511 16 1097 3167 207050 42004 6.33367 6.33367 -147.614 -6.33367 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0350114 0.0311497 134 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 8.53 vpr 54.74 MiB 0.04 6580 -1 -1 11 0.16 -1 -1 32524 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 16.2 MiB 1.27 937 7515 1724 5667 124 54.6 MiB 0.10 0.00 7.16165 -142.405 -7.16165 7.16165 0.87 0.000802394 0.000736642 0.036366 0.0334531 46 2632 18 6.79088e+06 202080 828058. 2865.25 2.55 0.194945 0.170727 27406 200422 -1 2080 16 1139 3041 211464 44102 6.16912 6.16912 -135.714 -6.16912 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.029403 0.026141 105 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 9.36 vpr 54.84 MiB 0.04 6464 -1 -1 13 0.19 -1 -1 32472 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 16.3 MiB 1.75 1005 13381 4639 6392 2350 54.8 MiB 0.18 0.00 7.38301 -157.601 -7.38301 7.38301 0.78 0.000931683 0.000861857 0.0752971 0.0697109 40 2519 33 6.79088e+06 229024 706193. 2443.58 4.51 0.379497 0.331247 26254 175826 -1 2305 18 1198 3223 222898 47664 6.58427 6.58427 -149.311 -6.58427 0 0 926341. 3205.33 0.36 0.10 0.19 -1 -1 0.36 0.0366475 0.0325348 116 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 6.42 vpr 55.03 MiB 0.04 6788 -1 -1 13 0.25 -1 -1 32860 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 16.6 MiB 1.49 1327 8092 2018 5457 617 55.2 MiB 0.12 0.00 7.14878 -159.209 -7.14878 7.14878 0.78 0.000995173 0.000921105 0.0492867 0.0456566 46 3184 21 6.79088e+06 242496 828058. 2865.25 2.74 0.252584 0.221439 27406 200422 -1 2556 17 1275 3494 248391 48405 6.28328 6.28328 -149.085 -6.28328 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.036454 0.0323846 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 9.98 vpr 54.83 MiB 0.04 6884 -1 -1 11 0.19 -1 -1 32828 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 16.4 MiB 1.52 925 13403 4743 6446 2214 54.9 MiB 0.16 0.00 6.69836 -125.024 -6.69836 6.69836 0.86 0.000875696 0.000807816 0.0692802 0.0640157 36 2683 30 6.79088e+06 296384 648988. 2245.63 3.46 0.261095 0.229018 25390 158009 -1 2102 15 950 2757 175002 37372 5.69593 5.69593 -120.693 -5.69593 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0300321 0.0267043 115 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 7.83 vpr 55.31 MiB 0.04 6776 -1 -1 14 0.31 -1 -1 33384 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 16.9 MiB 1.38 1410 8213 2036 5597 580 55.6 MiB 0.12 0.00 9.10514 -189.548 -9.10514 9.10514 0.83 0.000831601 0.00075808 0.0437847 0.0401416 44 3687 21 6.79088e+06 296384 787024. 2723.27 2.77 0.277684 0.243411 27118 194962 -1 2785 17 1255 3625 246974 50006 7.69105 7.69105 -173.768 -7.69105 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0423036 0.0377055 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 8.87 vpr 54.59 MiB 0.04 6628 -1 -1 12 0.16 -1 -1 32468 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 16.1 MiB 2.62 1093 11281 2937 6811 1533 54.8 MiB 0.14 0.00 6.61653 -142.296 -6.61653 6.61653 0.78 0.000810568 0.000748174 0.0555478 0.0513126 40 2615 16 6.79088e+06 242496 706193. 2443.58 4.24 0.303727 0.264685 26254 175826 -1 2478 16 1026 2502 188895 39224 5.57833 5.57833 -134.227 -5.57833 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0288734 0.0256636 108 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 8.41 vpr 55.14 MiB 0.05 6724 -1 -1 13 0.26 -1 -1 32876 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 16.4 MiB 1.79 1323 14123 4442 7710 1971 55.0 MiB 0.20 0.00 7.64293 -157.325 -7.64293 7.64293 0.79 0.00131292 0.00120189 0.0854367 0.0790093 46 3030 19 6.79088e+06 255968 828058. 2865.25 4.78 0.349918 0.307241 27406 200422 -1 2647 16 1175 3471 246657 48376 6.37287 6.37287 -146.251 -6.37287 0 0 1.01997e+06 3529.29 0.31 0.09 0.20 -1 -1 0.31 0.0355665 0.0316648 132 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 6.45 vpr 54.78 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32836 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 16.0 MiB 1.92 1020 12120 3554 6383 2183 54.7 MiB 0.15 0.00 7.35402 -164.423 -7.35402 7.35402 0.78 0.000821267 0.000757625 0.0612002 0.0565263 34 3085 41 6.79088e+06 215552 618332. 2139.56 3.09 0.251846 0.222048 25102 150614 -1 2549 18 1134 2700 200329 42942 6.62003 6.62003 -161.17 -6.62003 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0317081 0.0280913 104 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 7.55 vpr 54.99 MiB 0.05 6748 -1 -1 12 0.21 -1 -1 32708 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 16.5 MiB 1.82 1030 11783 4465 6036 1282 55.3 MiB 0.16 0.00 7.13827 -153.033 -7.13827 7.13827 0.79 0.000956866 0.000882411 0.0667005 0.0616744 46 2739 28 6.79088e+06 255968 828058. 2865.25 4.90 0.343521 0.29972 27406 200422 -1 2087 16 995 3192 193213 42234 6.16912 6.16912 -140.388 -6.16912 0 0 1.01997e+06 3529.29 0.33 0.09 0.21 -1 -1 0.33 0.0345574 0.0307341 121 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 8.23 vpr 55.62 MiB 0.05 7028 -1 -1 15 0.50 -1 -1 32932 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 17.3 MiB 1.99 1457 12373 3076 6798 2499 55.8 MiB 0.20 0.00 9.48621 -188.88 -9.48621 9.48621 0.82 0.00123331 0.00113875 0.0835949 0.0772638 44 4104 47 6.79088e+06 323328 787024. 2723.27 3.90 0.326793 0.287639 27118 194962 -1 3134 16 1569 4964 350874 69772 8.1923 8.1923 -172.037 -8.1923 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.0448234 0.040081 176 250 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 5.93 vpr 54.16 MiB 0.05 6524 -1 -1 10 0.10 -1 -1 32180 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55624 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 15.7 MiB 1.67 678 9345 2965 4615 1765 54.3 MiB 0.09 0.00 5.03415 -115.492 -5.03415 5.03415 0.78 0.000604856 0.000558202 0.0398907 0.03689 36 1720 43 6.79088e+06 148192 648988. 2245.63 1.97 0.180916 0.157301 25390 158009 -1 1483 15 602 1368 88654 19495 4.56879 4.56879 -110.334 -4.56879 0 0 828058. 2865.25 0.26 0.05 0.16 -1 -1 0.26 0.0200825 0.017733 63 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 8.48 vpr 54.70 MiB 0.05 6552 -1 -1 13 0.18 -1 -1 32556 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 16.4 MiB 1.69 930 9881 2975 5177 1729 54.8 MiB 0.12 0.00 7.15369 -149.901 -7.15369 7.15369 0.82 0.00082663 0.000763347 0.0501031 0.0463609 36 2740 38 6.79088e+06 255968 648988. 2245.63 2.97 0.237401 0.207732 25390 158009 -1 2157 19 1034 2498 173546 42776 6.58089 6.58089 -149.012 -6.58089 0 0 828058. 2865.25 0.28 0.09 0.15 -1 -1 0.28 0.0336711 0.0299061 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 9.76 vpr 55.08 MiB 0.05 6576 -1 -1 12 0.21 -1 -1 32552 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 16.3 MiB 1.80 1026 12331 4984 6774 573 54.8 MiB 0.16 0.00 7.35057 -161.147 -7.35057 7.35057 0.78 0.000921296 0.000851441 0.0685117 0.0633783 44 3035 21 6.79088e+06 229024 787024. 2723.27 4.35 0.330441 0.288751 27118 194962 -1 2281 16 1182 2918 212536 44343 6.40514 6.40514 -149.51 -6.40514 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0328687 0.0292184 115 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 11.95 vpr 54.32 MiB 0.04 6640 -1 -1 9 0.14 -1 -1 32444 -1 -1 20 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 15.9 MiB 1.16 772 8553 2593 4994 966 54.4 MiB 0.09 0.00 5.4216 -101.246 -5.4216 5.4216 0.78 0.000668096 0.000617576 0.0376813 0.0348736 32 2036 28 6.79088e+06 269440 586450. 2029.24 1.09 0.125356 0.110303 24814 144142 -1 1804 14 700 1830 142548 30310 5.04314 5.04314 -102.725 -5.04314 0 0 744469. 2576.02 0.25 0.06 0.14 -1 -1 0.25 0.0219441 0.0195021 86 111 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 9.28 vpr 55.17 MiB 0.05 6896 -1 -1 12 0.26 -1 -1 32796 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 16.8 MiB 2.29 1475 10263 2607 5842 1814 55.5 MiB 0.14 0.00 7.81518 -176.908 -7.81518 7.81518 0.86 0.00105558 0.000976124 0.0534854 0.0492223 38 3938 38 6.79088e+06 309856 678818. 2348.85 5.53 0.311865 0.274556 25966 169698 -1 3175 17 1566 4094 254753 52955 6.59551 6.59551 -162.987 -6.59551 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0393885 0.0350193 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 9.95 vpr 55.17 MiB 0.05 6884 -1 -1 14 0.35 -1 -1 32848 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.19 1195 12733 3723 6434 2576 55.3 MiB 0.19 0.00 9.14434 -182.838 -9.14434 9.14434 0.78 0.00105391 0.000972349 0.0776316 0.0716959 38 3582 41 6.79088e+06 296384 678818. 2348.85 3.75 0.251372 0.22153 25966 169698 -1 2689 16 1326 3877 228775 49593 7.60495 7.60495 -163.291 -7.60495 0 0 902133. 3121.57 0.28 0.10 0.16 -1 -1 0.28 0.0382861 0.0341882 151 204 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.81 vpr 55.09 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30408 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 17.3 MiB 1.17 895 12321 3076 8292 953 55.9 MiB 0.21 0.01 4.3249 -144.349 -4.3249 4.3249 0.78 0.000891203 0.000825776 0.0495149 0.0458312 32 3456 32 6.87369e+06 517032 586450. 2029.24 2.05 0.225291 0.196687 25474 144626 -1 2375 21 2015 3352 376702 84002 4.165 4.165 -152.752 -4.165 0 0 744469. 2576.02 0.24 0.13 0.15 -1 -1 0.24 0.0349494 0.0305329 155 96 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 7.14 vpr 55.32 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 16.8 MiB 3.43 889 13477 4603 6656 2218 55.6 MiB 0.22 0.00 4.22285 -135.326 -4.22285 4.22285 0.79 0.000792092 0.000729921 0.0631882 0.0585166 32 3121 31 6.87369e+06 321398 586450. 2029.24 1.22 0.175126 0.154956 25474 144626 -1 2227 19 1805 2980 321736 70632 4.2653 4.2653 -148.64 -4.2653 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.0304716 0.0266746 141 91 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.24 vpr 55.02 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30352 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 16.8 MiB 1.68 953 18428 5979 9684 2765 55.5 MiB 0.27 0.01 3.74716 -129.333 -3.74716 3.74716 0.79 0.000804424 0.000742595 0.0721382 0.0665119 30 2555 24 6.87369e+06 503058 556674. 1926.21 1.14 0.171609 0.152318 25186 138497 -1 1959 20 1255 1992 157512 33342 3.4085 3.4085 -127.068 -3.4085 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0307934 0.0269379 145 65 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.88 vpr 55.04 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30424 -1 -1 23 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 16.8 MiB 1.20 922 15090 5352 7218 2520 55.4 MiB 0.24 0.00 4.1666 -130.205 -4.1666 4.1666 0.78 0.000750285 0.000694841 0.0638364 0.0591415 34 2535 23 6.87369e+06 321398 618332. 2139.56 1.76 0.211254 0.185585 25762 151098 -1 2037 21 1820 3125 293534 62306 3.7734 3.7734 -135.656 -3.7734 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0153382 0.0135152 136 34 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 8.87 vpr 55.24 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30220 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 16.7 MiB 1.57 1047 14965 5078 8038 1849 55.5 MiB 0.25 0.00 4.2175 -149.421 -4.2175 4.2175 0.78 0.000810123 0.00074894 0.0677649 0.0626571 34 3065 24 6.87369e+06 293451 618332. 2139.56 1.89 0.22954 0.20153 25762 151098 -1 2471 23 2296 4252 413327 88159 3.8924 3.8924 -153.294 -3.8924 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0351029 0.030705 147 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.53 vpr 55.22 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30264 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1041 20588 6432 11323 2833 55.8 MiB 0.29 0.00 3.55395 -124.862 -3.55395 3.55395 0.79 0.000838985 0.000774046 0.0743184 0.0686279 32 2935 41 6.87369e+06 544980 586450. 2029.24 1.21 0.197411 0.17466 25474 144626 -1 2284 20 1589 2488 250471 54156 2.97596 2.97596 -124.287 -2.97596 0 0 744469. 2576.02 0.24 0.10 0.14 -1 -1 0.24 0.0329087 0.0288834 154 64 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.53 vpr 54.81 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30472 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 16.3 MiB 2.03 640 10388 2730 6621 1037 54.8 MiB 0.15 0.00 3.6994 -105.15 -3.6994 3.6994 0.79 0.000618293 0.000572417 0.0401397 0.0371826 28 1909 23 6.87369e+06 279477 531479. 1839.03 1.07 0.11507 0.101301 24610 126494 -1 1613 19 1140 1839 172281 36946 2.98231 2.98231 -107.384 -2.98231 0 0 648988. 2245.63 0.21 0.07 0.13 -1 -1 0.21 0.0227076 0.0197948 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.38 vpr 54.80 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30068 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 16.8 MiB 0.83 969 14273 4212 7662 2399 55.5 MiB 0.19 0.00 3.61131 -114.549 -3.61131 3.61131 0.82 0.000725904 0.000671959 0.0489844 0.0453151 30 2470 20 6.87369e+06 489084 556674. 1926.21 1.16 0.13278 0.11851 25186 138497 -1 1928 19 1100 1766 126719 28446 2.81296 2.81296 -109.061 -2.81296 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0270772 0.0237204 141 4 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.77 vpr 54.94 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 16.6 MiB 2.42 735 9712 2823 5738 1151 55.4 MiB 0.13 0.00 3.24697 -108.666 -3.24697 3.24697 0.78 0.000712836 0.000658398 0.0432485 0.0400182 28 1948 25 6.87369e+06 223581 531479. 1839.03 0.97 0.131088 0.115454 24610 126494 -1 1700 18 919 1439 127547 28177 2.73801 2.73801 -111.083 -2.73801 0 0 648988. 2245.63 0.24 0.06 0.13 -1 -1 0.24 0.022381 0.0195992 103 85 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.07 vpr 54.89 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30216 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.6 MiB 3.44 706 12808 2978 8428 1402 55.2 MiB 0.14 0.00 3.8076 -131.302 -3.8076 3.8076 0.82 0.0007023 0.000649796 0.0545311 0.0504628 36 2038 25 6.87369e+06 223581 648988. 2245.63 3.76 0.258861 0.225591 26050 158493 -1 1684 21 1391 2108 172313 39454 3.10126 3.10126 -128.062 -3.10126 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0258784 0.0225957 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.04 vpr 54.73 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30008 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 16.3 MiB 2.84 860 11776 3165 7564 1047 55.2 MiB 0.16 0.00 3.7375 -122.128 -3.7375 3.7375 0.78 0.000701139 0.000648292 0.0500904 0.0463208 34 1948 24 6.87369e+06 251529 618332. 2139.56 3.04 0.21292 0.185575 25762 151098 -1 1682 17 1107 1637 134273 29951 3.06651 3.06651 -119.718 -3.06651 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0238555 0.0208584 109 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.81 vpr 54.77 MiB 0.03 6920 -1 -1 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 16.4 MiB 1.27 881 15207 4108 9975 1124 55.0 MiB 0.19 0.00 3.45001 -118.108 -3.45001 3.45001 0.78 0.000723274 0.000661373 0.0519733 0.0479239 34 2216 20 6.87369e+06 447163 618332. 2139.56 1.68 0.183934 0.16099 25762 151098 -1 1828 19 1165 1948 196597 39780 2.67096 2.67096 -112.436 -2.67096 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0263658 0.0229729 116 65 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.70 vpr 55.04 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30100 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 16.8 MiB 4.13 958 19935 5624 11872 2439 55.6 MiB 0.29 0.01 3.64005 -125.972 -3.64005 3.64005 0.78 0.000820277 0.000758929 0.074292 0.0685984 34 2675 21 6.87369e+06 489084 618332. 2139.56 1.80 0.233186 0.205378 25762 151098 -1 2191 19 1661 2748 238239 53745 3.16086 3.16086 -124.987 -3.16086 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0286645 0.0251853 147 58 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 6.41 vpr 55.07 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30308 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.8 MiB 2.01 1059 21016 6637 11817 2562 55.6 MiB 0.30 0.01 4.34584 -150.842 -4.34584 4.34584 0.78 0.000849004 0.000785701 0.0790069 0.0730165 30 2673 25 6.87369e+06 517032 556674. 1926.21 1.09 0.183377 0.162938 25186 138497 -1 2249 20 1566 2558 195970 42249 3.9034 3.9034 -150.113 -3.9034 0 0 706193. 2443.58 0.23 0.11 0.14 -1 -1 0.23 0.038608 0.0336675 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.28 vpr 54.61 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30548 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 16.4 MiB 1.70 791 11776 3380 6895 1501 54.9 MiB 0.14 0.00 3.6364 -112.843 -3.6364 3.6364 0.79 0.000625043 0.000578081 0.0447886 0.0414681 32 2063 24 6.87369e+06 265503 586450. 2029.24 1.01 0.121353 0.106993 25474 144626 -1 1804 22 1150 1893 198261 42627 3.15791 3.15791 -114.173 -3.15791 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0261368 0.0227035 102 29 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.69 vpr 55.10 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 16.9 MiB 2.33 930 14221 5969 7807 445 55.7 MiB 0.23 0.00 3.52575 -124.171 -3.52575 3.52575 0.92 0.000834419 0.000771004 0.06637 0.0613734 36 2588 24 6.87369e+06 293451 648988. 2245.63 1.95 0.234467 0.205934 26050 158493 -1 2019 22 1887 3285 276413 61675 3.42516 3.42516 -127.907 -3.42516 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0348228 0.0304697 145 63 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 8.63 vpr 55.11 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30172 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 16.7 MiB 4.08 1056 17238 4537 10962 1739 55.5 MiB 0.23 0.01 3.55695 -127.024 -3.55695 3.55695 0.79 0.000822425 0.00076167 0.0614201 0.0567115 28 2543 23 6.87369e+06 531006 531479. 1839.03 1.07 0.156291 0.138555 24610 126494 -1 2271 15 1352 1958 186271 38351 2.86466 2.86466 -124.633 -2.86466 0 0 648988. 2245.63 0.24 0.08 0.13 -1 -1 0.24 0.0253117 0.022283 148 57 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.92 vpr 55.00 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30056 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 16.5 MiB 2.16 836 17103 4501 10697 1905 55.4 MiB 0.22 0.00 3.09156 -112.02 -3.09156 3.09156 0.78 0.000736125 0.00068091 0.0620204 0.0573601 26 2230 36 6.87369e+06 405241 503264. 1741.40 1.48 0.164461 0.145267 24322 120374 -1 2035 25 1343 2071 218189 48579 2.56377 2.56377 -110.713 -2.56377 0 0 618332. 2139.56 0.21 0.10 0.12 -1 -1 0.21 0.0331022 0.0287403 117 65 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.50 vpr 54.55 MiB 0.04 6660 -1 -1 1 0.03 -1 -1 30000 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55920 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 16.1 MiB 0.49 560 9036 3714 4978 344 54.6 MiB 0.09 0.00 2.94056 -94.1681 -2.94056 2.94056 0.81 0.000549755 0.000508681 0.0321779 0.0297188 28 1632 30 6.87369e+06 195634 531479. 1839.03 1.04 0.104308 0.0911633 24610 126494 -1 1356 18 720 1022 89298 20607 2.29547 2.29547 -92.8103 -2.29547 0 0 648988. 2245.63 0.21 0.05 0.13 -1 -1 0.21 0.0191169 0.0165842 73 34 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 7.10 vpr 54.91 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30288 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 16.4 MiB 1.19 944 12636 3568 7641 1427 55.1 MiB 0.17 0.00 4.39847 -135.821 -4.39847 4.39847 0.79 0.00072696 0.000673372 0.0561345 0.0520114 32 2256 21 6.87369e+06 237555 586450. 2029.24 1.00 0.141547 0.125625 25474 144626 -1 1917 20 1020 1518 166618 33866 3.4178 3.4178 -128.066 -3.4178 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0278307 0.0243009 113 64 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.41 vpr 55.22 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30076 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 16.8 MiB 0.85 894 19124 5624 10425 3075 55.6 MiB 0.26 0.00 4.20059 -139.885 -4.20059 4.20059 0.78 0.000785126 0.000725867 0.0684513 0.0632419 34 2601 23 6.87369e+06 503058 618332. 2139.56 1.73 0.224746 0.197708 25762 151098 -1 1988 20 1674 2373 228179 49576 3.8767 3.8767 -138.505 -3.8767 0 0 787024. 2723.27 0.28 0.06 0.15 -1 -1 0.28 0.0190559 0.0169918 150 34 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.37 vpr 55.19 MiB 0.05 7316 -1 -1 1 0.03 -1 -1 30576 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 17.2 MiB 2.74 951 19380 5821 10599 2960 55.9 MiB 0.29 0.01 3.81248 -128.436 -3.81248 3.81248 0.78 0.000924302 0.000854212 0.0760948 0.0701951 34 2793 27 6.87369e+06 558954 618332. 2139.56 3.69 0.338967 0.295043 25762 151098 -1 2010 20 1489 2271 210689 46809 3.7314 3.7314 -130.657 -3.7314 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0345404 0.0300923 154 124 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.39 vpr 54.39 MiB 0.04 6772 -1 -1 1 0.02 -1 -1 30496 -1 -1 16 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 16.0 MiB 1.71 600 9219 3759 4898 562 54.5 MiB 0.09 0.00 2.91856 -82.7442 -2.91856 2.91856 0.81 0.000482295 0.000445769 0.0300661 0.0277963 28 1391 16 6.87369e+06 223581 531479. 1839.03 0.91 0.082651 0.0727941 24610 126494 -1 1274 19 709 1086 97848 21852 2.15012 2.15012 -81.0459 -2.15012 0 0 648988. 2245.63 0.22 0.05 0.13 -1 -1 0.22 0.0176397 0.0152876 69 30 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.06 vpr 54.92 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 29952 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 16.7 MiB 1.21 1038 9757 2635 6591 531 55.4 MiB 0.17 0.01 4.1666 -141.416 -4.1666 4.1666 0.79 0.000750463 0.000694922 0.0417406 0.0386639 34 2849 25 6.87369e+06 293451 618332. 2139.56 1.72 0.164872 0.144611 25762 151098 -1 2149 22 1877 3114 262692 60108 3.971 3.971 -146.122 -3.971 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0312551 0.0273374 141 3 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.16 vpr 54.39 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30224 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55712 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 15.9 MiB 0.39 506 9516 2238 6770 508 54.4 MiB 0.09 0.00 2.55523 -88.1124 -2.55523 2.55523 0.82 0.000353445 0.000319282 0.0261318 0.0238544 34 1379 23 6.87369e+06 167686 618332. 2139.56 1.37 0.113139 0.0985076 25762 151098 -1 1186 16 589 739 57202 14357 2.08317 2.08317 -88.0105 -2.08317 0 0 787024. 2723.27 0.25 0.04 0.15 -1 -1 0.25 0.0164886 0.0144948 71 3 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.42 vpr 55.06 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30544 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 16.6 MiB 0.72 1092 17964 4627 11625 1712 55.4 MiB 0.26 0.01 4.26205 -149.131 -4.26205 4.26205 0.79 0.000812794 0.000743292 0.0650763 0.0601334 34 2731 22 6.87369e+06 503058 618332. 2139.56 3.70 0.266811 0.234331 25762 151098 -1 2347 25 1909 2745 262335 55271 3.7953 3.7953 -146.529 -3.7953 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0369565 0.0322593 155 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.91 vpr 55.14 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 29996 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.7 MiB 0.79 964 9612 2267 6482 863 55.5 MiB 0.16 0.00 3.55269 -121.215 -3.55269 3.55269 0.81 0.000762541 0.000704503 0.034539 0.0318946 32 2790 24 6.87369e+06 503058 586450. 2029.24 1.16 0.132262 0.116287 25474 144626 -1 2159 22 1627 2614 248004 54455 2.96796 2.96796 -121.001 -2.96796 0 0 744469. 2576.02 0.24 0.10 0.14 -1 -1 0.24 0.0315028 0.0275602 151 3 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.77 vpr 55.22 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30416 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 16.9 MiB 0.90 1088 13358 3512 8899 947 55.7 MiB 0.22 0.01 4.2809 -148.724 -4.2809 4.2809 0.78 0.000854224 0.000790051 0.0506107 0.0467599 28 2976 28 6.87369e+06 544980 531479. 1839.03 3.53 0.272801 0.237908 24610 126494 -1 2550 20 1992 3369 314920 67275 3.8734 3.8734 -150.357 -3.8734 0 0 648988. 2245.63 0.22 0.11 0.13 -1 -1 0.22 0.0328694 0.0286624 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.39 vpr 54.91 MiB 0.04 6748 -1 -1 1 0.03 -1 -1 29988 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 16.3 MiB 0.87 734 6839 1724 4743 372 54.9 MiB 0.11 0.00 3.07332 -108.035 -3.07332 3.07332 0.79 0.000673627 0.000623409 0.029149 0.0269846 34 2087 23 6.87369e+06 209608 618332. 2139.56 1.53 0.161406 0.140176 25762 151098 -1 1683 18 1057 1708 149535 33389 2.73466 2.73466 -111.64 -2.73466 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.024162 0.0211474 104 34 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.67 vpr 54.77 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30168 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 16.3 MiB 0.98 856 11260 3834 5392 2034 54.9 MiB 0.15 0.00 3.7936 -125.971 -3.7936 3.7936 0.83 0.000667079 0.000616784 0.0463777 0.0429456 32 2219 21 6.87369e+06 251529 586450. 2029.24 1.04 0.125367 0.110702 25474 144626 -1 1733 22 1340 1951 184834 40027 3.21861 3.21861 -124.254 -3.21861 0 0 744469. 2576.02 0.25 0.10 0.15 -1 -1 0.25 0.0358157 0.0312012 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.90 vpr 54.64 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30108 -1 -1 19 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 16.4 MiB 0.98 743 13092 5209 6121 1762 54.9 MiB 0.16 0.00 3.48175 -108.034 -3.48175 3.48175 0.86 0.000464382 0.000422804 0.038186 0.0348349 28 2259 26 6.87369e+06 265503 531479. 1839.03 1.15 0.117346 0.102739 24610 126494 -1 1875 21 1326 2212 209433 45791 3.19356 3.19356 -120.046 -3.19356 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.0254602 0.0221398 104 34 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.77 vpr 54.73 MiB 0.04 6692 -1 -1 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.4 MiB 1.12 861 14700 5460 6955 2285 54.9 MiB 0.10 0.00 3.58201 -129.205 -3.58201 3.58201 0.76 0.000286959 0.000261745 0.0260109 0.0237971 34 2299 21 6.87369e+06 223581 618332. 2139.56 1.32 0.114924 0.099701 25762 151098 -1 1972 22 1561 2562 248423 51074 2.98996 2.98996 -127.676 -2.98996 0 0 787024. 2723.27 0.22 0.05 0.10 -1 -1 0.22 0.0140391 0.0122894 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.44 vpr 54.82 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30288 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 16.4 MiB 0.72 924 11975 3064 7554 1357 55.0 MiB 0.16 0.00 3.50375 -121.402 -3.50375 3.50375 0.78 0.000680283 0.00062849 0.039801 0.036793 32 2461 24 6.87369e+06 447163 586450. 2029.24 1.03 0.123659 0.108847 25474 144626 -1 2015 21 1378 2178 226315 48894 3.10126 3.10126 -123.592 -3.10126 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0270853 0.0235854 119 34 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.39 vpr 54.87 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30040 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 16.4 MiB 2.59 824 15003 4455 7859 2689 55.1 MiB 0.18 0.00 2.90021 -94.838 -2.90021 2.90021 0.79 0.000682636 0.000629169 0.050826 0.0469128 34 1790 20 6.87369e+06 447163 618332. 2139.56 1.51 0.181791 0.158993 25762 151098 -1 1473 22 1204 1983 170650 36726 2.15482 2.15482 -87.5068 -2.15482 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0283851 0.0247032 113 61 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.30 vpr 55.45 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30356 -1 -1 44 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 17.1 MiB 3.74 1315 20411 5511 12546 2354 55.9 MiB 0.35 0.01 4.25391 -147.758 -4.25391 4.25391 0.79 0.000905594 0.000837011 0.0751497 0.0693763 28 3519 42 6.87369e+06 614849 531479. 1839.03 2.59 0.220926 0.195731 24610 126494 -1 3002 23 2374 4134 394775 84463 3.8924 3.8924 -153.788 -3.8924 0 0 648988. 2245.63 0.21 0.14 0.13 -1 -1 0.21 0.0392605 0.0343447 184 29 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.96 vpr 55.50 MiB 0.05 7080 -1 -1 1 0.04 -1 -1 30300 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 17.0 MiB 2.69 1049 18419 4848 10881 2690 55.8 MiB 0.25 0.01 3.66825 -130.624 -3.66825 3.66825 0.79 0.000838414 0.000775882 0.0668025 0.061716 32 2676 20 6.87369e+06 544980 586450. 2029.24 1.06 0.16439 0.146037 25474 144626 -1 2168 20 1841 2718 280411 56383 2.90386 2.90386 -124.352 -2.90386 0 0 744469. 2576.02 0.25 0.10 0.15 -1 -1 0.25 0.0279964 0.0246718 154 65 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 6.91 vpr 54.96 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 16.7 MiB 3.14 881 17134 5393 9307 2434 55.4 MiB 0.23 0.00 3.56305 -119.83 -3.56305 3.56305 0.79 0.000736563 0.000680365 0.0636279 0.0586938 34 1902 21 6.87369e+06 433189 618332. 2139.56 1.62 0.205626 0.180275 25762 151098 -1 1734 22 1123 1765 160585 34701 2.76901 2.76901 -110.136 -2.76901 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0297732 0.0258815 116 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 7.20 vpr 55.19 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30240 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 16.8 MiB 1.74 1019 8641 2131 5612 898 55.6 MiB 0.17 0.00 3.59121 -120.774 -3.59121 3.59121 0.79 0.000826546 0.000763798 0.0406886 0.037664 34 2669 38 6.87369e+06 307425 618332. 2139.56 1.78 0.221205 0.192956 25762 151098 -1 2245 18 1626 2631 257169 54704 3.24216 3.24216 -123.479 -3.24216 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0290779 0.0255217 141 64 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 8.88 vpr 55.40 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30300 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 17.1 MiB 4.70 1071 16825 7101 8757 967 55.8 MiB 0.28 0.01 4.97069 -151.888 -4.97069 4.97069 0.79 0.000899842 0.000832293 0.085008 0.0787505 34 2828 30 6.87369e+06 307425 618332. 2139.56 2.12 0.274333 0.240804 25762 151098 -1 2357 21 1543 2502 259073 52983 4.35625 4.35625 -150.665 -4.35625 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0358352 0.0312239 145 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 8.25 vpr 55.18 MiB 0.04 7272 -1 -1 1 0.03 -1 -1 30244 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 16.9 MiB 1.70 980 12175 3299 8119 757 55.6 MiB 0.20 0.00 4.75154 -140.36 -4.75154 4.75154 0.78 0.000841265 0.000778578 0.0576829 0.0533963 34 2546 25 6.87369e+06 307425 618332. 2139.56 1.91 0.226493 0.198647 25762 151098 -1 2138 19 1436 2308 211264 46103 3.7011 3.7011 -139.741 -3.7011 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0319708 0.0280633 141 90 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.64 vpr 55.27 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 17.0 MiB 2.31 1053 19023 5653 10954 2416 55.6 MiB 0.27 0.01 3.64005 -125.414 -3.64005 3.64005 0.80 0.000815725 0.000754377 0.0716263 0.0661693 34 2438 22 6.87369e+06 503058 618332. 2139.56 1.73 0.237004 0.208214 25762 151098 -1 2015 22 1832 2978 268710 57273 2.97896 2.97896 -122.08 -2.97896 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0340209 0.0297568 148 64 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 7.46 vpr 54.99 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30332 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 16.9 MiB 1.71 1150 19618 5466 12522 1630 55.7 MiB 0.29 0.01 4.1996 -145.707 -4.1996 4.1996 0.81 0.000837412 0.000774678 0.0713682 0.0659064 28 3251 24 6.87369e+06 531006 531479. 1839.03 5.41 0.312115 0.273278 24610 126494 -1 2631 22 2061 3263 360463 72578 4.1633 4.1633 -153.028 -4.1633 0 0 648988. 2245.63 0.21 0.12 0.13 -1 -1 0.21 0.0345405 0.0301711 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 7.53 vpr 55.79 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30468 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 17.3 MiB 2.87 1303 13356 3327 8820 1209 56.2 MiB 0.24 0.01 4.31511 -149.42 -4.31511 4.31511 0.81 0.000794013 0.000726207 0.0528489 0.0485817 28 3479 42 6.87369e+06 586901 531479. 1839.03 1.65 0.203638 0.178906 24610 126494 -1 2859 21 2184 3519 341649 86796 4.068 4.068 -153.969 -4.068 0 0 648988. 2245.63 0.21 0.13 0.15 -1 -1 0.21 0.039951 0.0349379 186 96 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.60 vpr 54.77 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 16.4 MiB 1.76 908 12636 4255 7048 1333 55.0 MiB 0.18 0.00 3.7654 -130.371 -3.7654 3.7654 0.78 0.000680825 0.00063023 0.05227 0.0483858 32 2444 26 6.87369e+06 237555 586450. 2029.24 1.61 0.177582 0.155976 25474 144626 -1 1997 19 1380 2189 253007 50669 3.04031 3.04031 -127.245 -3.04031 0 0 744469. 2576.02 0.26 0.09 0.15 -1 -1 0.26 0.0229306 0.0201481 112 34 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.32 vpr 55.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30224 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 16.8 MiB 2.41 1036 19820 6398 10981 2441 55.6 MiB 0.27 0.00 4.25889 -142.345 -4.25889 4.25889 0.79 0.000500587 0.000468348 0.0685228 0.0631143 32 3074 50 6.87369e+06 517032 586450. 2029.24 1.52 0.200767 0.176964 25474 144626 -1 2324 22 1864 2990 312759 68331 4.0207 4.0207 -147.051 -4.0207 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.033843 0.0295326 152 64 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.99 vpr 55.21 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30488 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 16.8 MiB 1.83 1118 16515 4839 10227 1449 55.7 MiB 0.27 0.01 3.56001 -125.702 -3.56001 3.56001 0.81 0.000828174 0.00076572 0.0667847 0.0617421 28 3021 24 6.87369e+06 489084 531479. 1839.03 1.58 0.167314 0.148417 24610 126494 -1 2615 22 1771 3016 325176 70417 3.56776 3.56776 -133.37 -3.56776 0 0 648988. 2245.63 0.21 0.12 0.13 -1 -1 0.21 0.0356036 0.0311296 150 63 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.30 vpr 55.06 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.8 MiB 1.34 942 16081 4088 11306 687 55.5 MiB 0.25 0.00 4.1996 -144.758 -4.1996 4.1996 0.78 0.000770189 0.000713207 0.0689725 0.0638817 32 3838 45 6.87369e+06 293451 586450. 2029.24 2.22 0.211454 0.187272 25474 144626 -1 2552 22 2101 3718 392075 88502 4.3856 4.3856 -161.51 -4.3856 0 0 744469. 2576.02 0.24 0.13 0.17 -1 -1 0.24 0.032526 0.0284998 147 3 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.61 vpr 55.04 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30420 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 17.0 MiB 3.47 1066 20980 7180 11264 2536 55.8 MiB 0.29 0.00 3.54349 -125.696 -3.54349 3.54349 0.84 0.000739988 0.000673986 0.0736182 0.0676515 34 2382 19 6.87369e+06 503058 618332. 2139.56 1.78 0.239231 0.210236 25762 151098 -1 2059 20 1553 2377 204278 44081 3.11056 3.11056 -122.373 -3.11056 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0326235 0.0285057 148 96 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.87 vpr 55.42 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30124 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 16.8 MiB 3.40 1032 19142 4987 12020 2135 55.6 MiB 0.27 0.01 3.61805 -127.505 -3.61805 3.61805 0.79 0.000831567 0.000768543 0.0687039 0.0635399 28 2612 28 6.87369e+06 544980 531479. 1839.03 1.47 0.177225 0.157166 24610 126494 -1 2209 23 1405 2576 228128 54501 3.45816 3.45816 -130.308 -3.45816 0 0 648988. 2245.63 0.22 0.10 0.13 -1 -1 0.22 0.0358702 0.0313543 152 61 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 10.09 vpr 55.31 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30296 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 16.9 MiB 2.63 1111 18648 5184 11229 2235 55.6 MiB 0.26 0.01 3.58025 -126.995 -3.58025 3.58025 0.78 0.000842626 0.000779658 0.067396 0.0622108 32 2996 26 6.87369e+06 558954 586450. 2029.24 1.10 0.172336 0.152695 25474 144626 -1 2349 20 1782 2831 316070 65946 3.04626 3.04626 -125.689 -3.04626 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0322262 0.0282029 156 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.87 vpr 54.86 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 16.7 MiB 0.80 973 12876 3455 7707 1714 55.5 MiB 0.16 0.00 4.3249 -147.802 -4.3249 4.3249 0.79 0.000801766 0.000741517 0.0454763 0.0420494 34 2955 22 6.87369e+06 544980 618332. 2139.56 2.39 0.20781 0.18251 25762 151098 -1 2334 22 1977 3105 248054 59141 3.8564 3.8564 -150.074 -3.8564 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0335866 0.0293991 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.85 vpr 55.12 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30600 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 16.9 MiB 2.55 1087 15172 3966 9854 1352 55.8 MiB 0.24 0.01 4.1996 -143.047 -4.1996 4.1996 0.79 0.000617014 0.000562103 0.0545072 0.0503184 34 2589 26 6.87369e+06 572927 618332. 2139.56 2.19 0.230339 0.202034 25762 151098 -1 2318 20 1991 3188 306028 64645 3.9114 3.9114 -149.692 -3.9114 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0321283 0.0281589 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 9.59 vpr 55.20 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30332 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 17.1 MiB 3.68 988 19356 5396 10906 3054 55.8 MiB 0.30 0.01 4.16785 -135.645 -4.16785 4.16785 0.81 0.000896837 0.000825344 0.0772617 0.0713578 30 2560 23 6.87369e+06 517032 556674. 1926.21 1.25 0.184112 0.163075 25186 138497 -1 2036 20 1385 2303 176840 37835 3.7104 3.7104 -131.155 -3.7104 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0338046 0.0294351 150 122 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.42 vpr 55.21 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 16.9 MiB 2.63 1079 15709 4633 9421 1655 55.9 MiB 0.14 0.00 4.13359 -143.515 -4.13359 4.13359 0.79 0.000383601 0.000350582 0.0337204 0.030835 34 3091 27 6.87369e+06 293451 618332. 2139.56 1.91 0.214596 0.18644 25762 151098 -1 2493 23 2106 3878 346569 76160 3.808 3.808 -146.549 -3.808 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.037839 0.033038 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.59 vpr 54.74 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 16.5 MiB 0.83 919 15426 4260 9754 1412 55.3 MiB 0.18 0.00 3.51475 -125.544 -3.51475 3.51475 0.87 0.000563401 0.000516056 0.0408053 0.0372666 32 2502 23 6.87369e+06 447163 586450. 2029.24 1.04 0.125115 0.109829 25474 144626 -1 2028 21 1419 2100 231013 47999 2.89626 2.89626 -123.549 -2.89626 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0278087 0.0242524 121 34 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.44 vpr 55.13 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 16.6 MiB 2.89 953 12980 4579 7047 1354 55.4 MiB 0.20 0.00 3.6884 -132.193 -3.6884 3.6884 0.84 0.000551569 0.00050039 0.0589523 0.054329 32 2514 23 6.87369e+06 223581 586450. 2029.24 1.12 0.143974 0.127484 25474 144626 -1 2183 26 1558 2421 278355 57411 3.18556 3.18556 -133.388 -3.18556 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.036378 0.0315702 112 94 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.02 vpr 55.43 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30596 -1 -1 44 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 17.1 MiB 1.84 1419 16556 4403 10830 1323 55.6 MiB 0.28 0.01 4.99284 -170.715 -4.99284 4.99284 0.78 0.000955956 0.000884694 0.0646907 0.0598137 28 3994 50 6.87369e+06 614849 531479. 1839.03 2.56 0.224852 0.197637 24610 126494 -1 3262 28 3071 5173 640962 159943 5.15175 5.15175 -184.104 -5.15175 0 0 648988. 2245.63 0.21 0.20 0.13 -1 -1 0.21 0.0487031 0.0424328 189 65 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 9.13 vpr 55.15 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30324 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 16.8 MiB 2.50 1069 15831 4027 10006 1798 55.6 MiB 0.24 0.01 3.59121 -127.943 -3.59121 3.59121 0.79 0.000797105 0.000735784 0.0582334 0.0537029 26 2789 27 6.87369e+06 489084 503264. 1741.40 1.29 0.161161 0.142415 24322 120374 -1 2436 34 2265 3380 289937 62279 3.25476 3.25476 -133.033 -3.25476 0 0 618332. 2139.56 0.21 0.13 0.12 -1 -1 0.21 0.0472538 0.041045 150 34 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.21 vpr 54.86 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30136 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 16.4 MiB 0.64 823 15633 5297 7776 2560 55.0 MiB 0.18 0.00 3.51601 -116.196 -3.51601 3.51601 0.84 0.00047624 0.000433183 0.0383161 0.0348925 28 2073 25 6.87369e+06 433189 531479. 1839.03 1.07 0.118852 0.103906 24610 126494 -1 1792 21 1273 1941 190005 41190 2.94296 2.94296 -117.741 -2.94296 0 0 648988. 2245.63 0.22 0.08 0.13 -1 -1 0.22 0.0265068 0.0230463 116 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.20 vpr 55.48 MiB 0.05 7360 -1 -1 1 0.03 -1 -1 30780 -1 -1 47 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 17.4 MiB 5.23 1193 22455 6528 13018 2909 55.9 MiB 0.34 0.01 4.91264 -167.151 -4.91264 4.91264 0.81 0.00103258 0.00095556 0.0813468 0.0747988 34 3197 25 6.87369e+06 656770 618332. 2139.56 3.83 0.34751 0.303812 25762 151098 -1 2491 18 2150 3394 330141 68182 4.40195 4.40195 -166.047 -4.40195 0 0 787024. 2723.27 0.22 0.07 0.16 -1 -1 0.22 0.0189458 0.0167958 190 127 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 7.05 vpr 55.19 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30412 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 16.9 MiB 2.78 975 19868 5843 10688 3337 55.6 MiB 0.25 0.00 4.28153 -144.516 -4.28153 4.28153 0.78 0.000816662 0.000756032 0.0689303 0.0637773 32 2856 45 6.87369e+06 558954 586450. 2029.24 1.43 0.193285 0.171 25474 144626 -1 2042 20 1784 2638 286672 58798 3.692 3.692 -144.147 -3.692 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0317737 0.0278976 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.58 vpr 54.80 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30188 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.3 MiB 0.59 857 11197 2857 7409 931 54.9 MiB 0.16 0.00 3.64005 -128.736 -3.64005 3.64005 0.79 0.000675634 0.000626185 0.0360361 0.0333777 30 2178 23 6.87369e+06 461137 556674. 1926.21 1.02 0.117917 0.103971 25186 138497 -1 1775 21 1230 1970 151074 32661 2.83966 2.83966 -121.177 -2.83966 0 0 706193. 2443.58 0.23 0.08 0.13 -1 -1 0.23 0.0265588 0.0231439 123 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 11.38 vpr 55.31 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30816 -1 -1 45 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 17.1 MiB 2.51 1249 21169 5887 12519 2763 55.9 MiB 0.33 0.01 4.9297 -168.732 -4.9297 4.9297 0.79 0.000929536 0.000861766 0.0792411 0.073446 28 3386 22 6.87369e+06 628823 531479. 1839.03 1.59 0.195608 0.174091 24610 126494 -1 2946 22 2710 4692 480536 102974 4.96875 4.96875 -181.051 -4.96875 0 0 648988. 2245.63 0.22 0.15 0.15 -1 -1 0.22 0.0387993 0.0338934 189 34 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.23 vpr 54.79 MiB 0.05 6776 -1 -1 1 0.03 -1 -1 30092 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 0.86 806 12292 2857 8871 564 54.8 MiB 0.16 0.00 3.7764 -134.344 -3.7764 3.7764 0.84 0.000482854 0.000439661 0.0454187 0.0418669 34 2164 21 6.87369e+06 223581 618332. 2139.56 1.63 0.176053 0.153882 25762 151098 -1 1866 19 1444 2279 206960 44293 3.24861 3.24861 -134.145 -3.24861 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0248815 0.0217718 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.35 vpr 54.89 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30236 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 16.6 MiB 2.11 719 10463 2628 6946 889 55.0 MiB 0.16 0.00 3.56001 -114.458 -3.56001 3.56001 0.79 0.000684468 0.000634977 0.0351102 0.0324761 28 1981 24 6.87369e+06 461137 531479. 1839.03 1.07 0.117464 0.103231 24610 126494 -1 1811 20 1338 2196 193261 43933 3.04926 3.04926 -120.3 -3.04926 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.0256956 0.0223945 118 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.73 vpr 55.40 MiB 0.05 7144 -1 -1 1 0.04 -1 -1 30356 -1 -1 35 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 16.9 MiB 3.02 1008 14550 3923 8443 2184 55.7 MiB 0.21 0.00 3.54707 -114.227 -3.54707 3.54707 0.79 0.000802264 0.000741516 0.055891 0.0516751 34 2477 22 6.87369e+06 489084 618332. 2139.56 1.85 0.215467 0.188798 25762 151098 -1 2041 18 1492 2496 220761 49447 3.06026 3.06026 -116.465 -3.06026 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0285126 0.0249773 141 88 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.77 vpr 55.12 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 2.03 854 12175 2685 7576 1914 55.7 MiB 0.16 0.00 4.2388 -146.065 -4.2388 4.2388 0.78 0.000839215 0.000775802 0.057552 0.0532535 34 2701 21 6.87369e+06 293451 618332. 2139.56 1.93 0.221189 0.194156 25762 151098 -1 2095 22 2113 3203 298788 67400 3.8814 3.8814 -153.436 -3.8814 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0351834 0.0307011 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 8.90 vpr 55.05 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30672 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.9 MiB 3.67 1100 18901 5336 11603 1962 55.8 MiB 0.27 0.01 4.27679 -150.534 -4.27679 4.27679 0.79 0.00085318 0.000782571 0.0709524 0.0655659 30 2755 22 6.87369e+06 517032 556674. 1926.21 1.19 0.17238 0.153139 25186 138497 -1 2296 22 1746 2869 238082 49702 3.7954 3.7954 -147.423 -3.7954 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.034702 0.0303194 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 9.24 vpr 54.90 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30432 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 16.6 MiB 2.77 825 17191 6233 8742 2216 55.4 MiB 0.21 0.00 3.60705 -126.657 -3.60705 3.60705 0.78 0.000747638 0.000684375 0.0600503 0.0554365 36 2015 20 6.87369e+06 461137 648988. 2245.63 1.69 0.203227 0.178419 26050 158493 -1 1687 20 1364 2004 159771 36079 2.98526 2.98526 -118.844 -2.98526 0 0 828058. 2865.25 0.29 0.07 0.15 -1 -1 0.29 0.0240534 0.0211418 123 65 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.06 vpr 54.94 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 16.5 MiB 3.46 738 4456 873 3135 448 55.1 MiB 0.09 0.00 3.6994 -119.902 -3.6994 3.6994 0.79 0.000731908 0.000676962 0.0207935 0.0192509 34 2166 19 6.87369e+06 251529 618332. 2139.56 1.68 0.160973 0.139233 25762 151098 -1 1843 20 1296 2275 198451 45228 2.92101 2.92101 -115.635 -2.92101 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0280947 0.024486 108 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.42 vpr 55.21 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30320 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 16.8 MiB 2.84 914 16740 4391 9932 2417 55.5 MiB 0.24 0.00 3.59605 -116.379 -3.59605 3.59605 0.78 0.000782319 0.00072389 0.0627512 0.0580763 36 1934 22 6.87369e+06 475111 648988. 2245.63 3.62 0.273718 0.238761 26050 158493 -1 1649 20 1161 1858 128532 30053 2.71266 2.71266 -105.41 -2.71266 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.030142 0.0263731 143 60 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.96 vpr 54.86 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30320 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 16.8 MiB 1.46 905 12191 3346 7959 886 55.5 MiB 0.17 0.00 4.19891 -125.962 -4.19891 4.19891 0.78 0.000722521 0.000669031 0.0432582 0.0399975 28 2288 22 6.87369e+06 489084 531479. 1839.03 3.23 0.22889 0.199304 24610 126494 -1 2126 20 1575 2558 233066 49556 3.9657 3.9657 -131.64 -3.9657 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.0279573 0.0244394 139 34 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.78 vpr 54.86 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30028 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 16.6 MiB 2.23 882 11432 3518 6484 1430 55.4 MiB 0.16 0.00 3.7324 -126.153 -3.7324 3.7324 0.78 0.000710735 0.000657257 0.0493959 0.0457424 30 2122 21 6.87369e+06 251529 556674. 1926.21 1.02 0.132068 0.116768 25186 138497 -1 1811 19 1105 1746 155853 31047 2.82871 2.82871 -117.627 -2.82871 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0258524 0.0225531 110 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.29 vpr 55.07 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 16.5 MiB 2.94 904 14256 4718 7453 2085 55.1 MiB 0.20 0.00 3.6144 -123.374 -3.6144 3.6144 0.79 0.0007527 0.000695016 0.0638053 0.0589899 34 2187 23 6.87369e+06 237555 618332. 2139.56 1.55 0.212209 0.186268 25762 151098 -1 1905 19 1117 1836 170529 36037 2.94131 2.94131 -121.588 -2.94131 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0276237 0.0241042 110 91 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.95 vpr 55.00 MiB 0.02 6892 -1 -1 1 0.04 -1 -1 30312 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 16.9 MiB 0.80 962 16804 5215 8614 2975 55.4 MiB 0.24 0.01 4.24789 -140.354 -4.24789 4.24789 0.79 0.000751171 0.000695034 0.0574288 0.0531552 28 3244 22 6.87369e+06 517032 531479. 1839.03 1.82 0.149405 0.132559 24610 126494 -1 2364 23 2045 3247 311101 68900 4.013 4.013 -147.381 -4.013 0 0 648988. 2245.63 0.22 0.11 0.13 -1 -1 0.22 0.03262 0.0284996 151 4 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.15 vpr 55.25 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30484 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 16.7 MiB 3.65 1093 19380 5712 11198 2470 55.6 MiB 0.26 0.01 4.29189 -149.386 -4.29189 4.29189 0.85 0.000596925 0.000541136 0.0631552 0.0581038 28 3094 23 6.87369e+06 531006 531479. 1839.03 1.37 0.162929 0.14415 24610 126494 -1 2636 21 2017 3493 348626 74415 4.154 4.154 -157.069 -4.154 0 0 648988. 2245.63 0.22 0.12 0.13 -1 -1 0.22 0.0335637 0.0293663 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.93 vpr 55.21 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30204 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.9 MiB 3.40 1146 17256 4889 10338 2029 55.8 MiB 0.25 0.01 4.30289 -150.744 -4.30289 4.30289 0.78 0.000855218 0.000791648 0.0652979 0.0603901 30 2874 20 6.87369e+06 517032 556674. 1926.21 1.18 0.153408 0.136492 25186 138497 -1 2267 22 1603 2677 187101 42313 3.7751 3.7751 -150.357 -3.7751 0 0 706193. 2443.58 0.25 0.08 0.16 -1 -1 0.25 0.0282812 0.0248859 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 11.84 vpr 55.23 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30284 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 16.8 MiB 2.75 1114 16491 4519 10066 1906 55.6 MiB 0.24 0.01 4.16249 -142.489 -4.16249 4.16249 0.78 0.000832807 0.000770506 0.0598065 0.055243 28 3091 32 6.87369e+06 544980 531479. 1839.03 1.55 0.171183 0.151224 24610 126494 -1 2653 21 1907 3356 304380 67039 3.8674 3.8674 -148.199 -3.8674 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0332819 0.0290937 152 65 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.38 vpr 54.80 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30248 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 16.5 MiB 2.28 746 10406 2932 6420 1054 55.0 MiB 0.15 0.00 3.7324 -121.378 -3.7324 3.7324 0.79 0.000666004 0.000616296 0.0417302 0.0386384 32 2228 50 6.87369e+06 265503 586450. 2029.24 1.21 0.149637 0.1312 25474 144626 -1 1896 22 1397 2294 239488 52405 3.10126 3.10126 -123.581 -3.10126 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0279522 0.024358 110 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.80 vpr 55.07 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30280 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 16.7 MiB 2.93 980 15709 4819 8970 1920 55.5 MiB 0.23 0.00 4.23999 -140.261 -4.23999 4.23999 0.88 0.0011221 0.00105886 0.0674964 0.0623282 30 2267 20 6.87369e+06 321398 556674. 1926.21 1.06 0.152006 0.135269 25186 138497 -1 1881 20 1446 2277 189047 37373 3.4678 3.4678 -134.471 -3.4678 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0311545 0.0272793 140 63 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 7.47 vpr 55.20 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30752 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 17.2 MiB 4.74 1155 15540 3963 10188 1389 55.9 MiB 0.25 0.01 4.23385 -146.284 -4.23385 4.23385 0.79 0.00093456 0.000864349 0.0602082 0.0556164 34 2916 22 6.87369e+06 600875 618332. 2139.56 2.12 0.207647 0.182888 25762 151098 -1 2355 20 1764 2860 261155 55142 3.7781 3.7781 -148.019 -3.7781 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.035129 0.0306184 158 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 7.18 vpr 55.16 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30236 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 16.8 MiB 1.08 1029 18273 5989 9373 2911 55.7 MiB 0.27 0.00 4.26989 -143.564 -4.26989 4.26989 0.78 0.000852237 0.000788067 0.0740754 0.068466 28 2792 23 6.87369e+06 461137 531479. 1839.03 1.31 0.178729 0.158843 24610 126494 -1 2386 20 2006 3301 288453 62127 4.2433 4.2433 -152.042 -4.2433 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0329088 0.0287917 149 94 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.59 vpr 55.23 MiB 0.02 7188 -1 -1 1 0.04 -1 -1 30440 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 16.9 MiB 2.14 942 16921 5030 8706 3185 55.7 MiB 0.26 0.00 3.63595 -118.056 -3.63595 3.63595 0.79 0.000827655 0.000758013 0.0680528 0.0628156 30 2311 22 6.87369e+06 447163 556674. 1926.21 1.15 0.166702 0.14762 25186 138497 -1 1761 20 1271 2086 143021 32075 2.83166 2.83166 -109.296 -2.83166 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0315454 0.0275319 141 92 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.99 vpr 55.19 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30472 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 4.06 1087 14593 4252 9147 1194 55.6 MiB 0.25 0.00 4.1996 -148.308 -4.1996 4.1996 0.87 0.000844575 0.000780746 0.0695155 0.0643741 34 3128 22 6.87369e+06 293451 618332. 2139.56 2.31 0.240889 0.212205 25762 151098 -1 2683 21 2102 3613 377856 80987 4.1823 4.1823 -153.613 -4.1823 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0335088 0.0293121 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.17 vpr 55.13 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30288 -1 -1 36 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 17.0 MiB 1.99 943 12751 3363 8405 983 55.7 MiB 0.19 0.00 3.54105 -112.818 -3.54105 3.54105 0.79 0.000795506 0.000733098 0.0488845 0.0450845 26 2537 25 6.87369e+06 503058 503264. 1741.40 1.17 0.150474 0.1324 24322 120374 -1 2326 21 1581 2537 280617 59933 3.31886 3.31886 -119.89 -3.31886 0 0 618332. 2139.56 0.26 0.10 0.13 -1 -1 0.26 0.0311862 0.0272647 138 88 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.25 vpr 54.59 MiB 0.04 6748 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.2 MiB 0.58 862 12292 3174 7904 1214 54.8 MiB 0.17 0.00 3.7104 -131.958 -3.7104 3.7104 0.79 0.000666301 0.000616974 0.0495481 0.0458568 34 2300 22 6.87369e+06 223581 618332. 2139.56 1.62 0.180063 0.157654 25762 151098 -1 1995 22 1621 2455 234261 50963 3.06026 3.06026 -127.39 -3.06026 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0279579 0.0243802 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.35 vpr 55.49 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30372 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.9 MiB 4.15 1088 19841 5443 12522 1876 55.7 MiB 0.29 0.01 4.3249 -149.309 -4.3249 4.3249 0.79 0.000852205 0.000787582 0.0741792 0.0685508 32 2986 28 6.87369e+06 517032 586450. 2029.24 1.21 0.18358 0.162983 25474 144626 -1 2365 22 1941 3015 309765 68413 3.7811 3.7811 -149.424 -3.7811 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0348623 0.0304597 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.43 vpr 55.31 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 3.64 1071 15151 5130 8107 1914 55.7 MiB 0.24 0.00 4.2388 -148.068 -4.2388 4.2388 0.87 0.00084486 0.000780177 0.0693145 0.0640199 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.86 0.238679 0.209843 26050 158493 -1 2163 21 2029 3311 262893 58163 3.9224 3.9224 -150.751 -3.9224 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0338972 0.0296805 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.62 vpr 54.68 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30248 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.5 MiB 3.21 885 16708 4981 9424 2303 55.3 MiB 0.21 0.00 3.50501 -121.209 -3.50501 3.50501 0.79 0.000690316 0.00063746 0.0563913 0.0520177 34 2077 21 6.87369e+06 419215 618332. 2139.56 1.62 0.189991 0.166487 25762 151098 -1 1809 21 1176 1935 187866 40061 2.80666 2.80666 -115.637 -2.80666 0 0 787024. 2723.27 0.25 0.08 0.14 -1 -1 0.25 0.0255645 0.0222983 112 55 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.74 vpr 54.79 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 16.3 MiB 0.79 723 6960 1528 4773 659 54.8 MiB 0.12 0.00 3.7434 -125.643 -3.7434 3.7434 0.79 0.000663952 0.00061554 0.0288427 0.0267612 32 2169 22 6.87369e+06 237555 586450. 2029.24 1.02 0.107831 0.0947783 25474 144626 -1 1844 19 1245 1939 174718 38152 3.12161 3.12161 -123.219 -3.12161 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0244651 0.0213799 112 4 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 8.13 vpr 55.54 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30180 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 16.7 MiB 2.60 1023 18795 5447 10788 2560 55.5 MiB 0.26 0.00 4.30799 -144.78 -4.30799 4.30799 0.79 0.000803132 0.000742246 0.0689462 0.0636088 28 2593 22 6.87369e+06 489084 531479. 1839.03 1.08 0.166279 0.14772 24610 126494 -1 2325 19 1561 2324 213063 45266 3.9849 3.9849 -144.228 -3.9849 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.0295909 0.0259002 144 59 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 7.30 vpr 55.25 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30140 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 16.9 MiB 1.20 1094 18745 5603 10775 2367 55.7 MiB 0.27 0.01 4.21185 -141.009 -4.21185 4.21185 0.79 0.000832342 0.00076961 0.0731743 0.0675138 28 2800 35 6.87369e+06 461137 531479. 1839.03 1.30 0.190576 0.168727 24610 126494 -1 2381 19 1560 2367 223774 47687 4.101 4.101 -150.64 -4.101 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.0306675 0.0268434 142 88 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 5.19 vpr 55.31 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30368 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.2 MiB 0.84 1329 17642 5677 9392 2573 55.8 MiB 0.31 0.01 4.98719 -165.596 -4.98719 4.98719 0.79 0.000874899 0.000809377 0.0651414 0.0602641 34 3780 46 6.87369e+06 572927 618332. 2139.56 3.64 0.277438 0.24418 25762 151098 -1 2789 24 2167 3582 392838 77584 4.73185 4.73185 -164.804 -4.73185 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0394906 0.034618 183 3 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.23 vpr 54.93 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 16.8 MiB 2.39 1005 13300 3782 8501 1017 55.6 MiB 0.20 0.00 3.59605 -120.715 -3.59605 3.59605 0.78 0.000780091 0.000720674 0.0519104 0.0479256 34 2301 19 6.87369e+06 447163 618332. 2139.56 1.56 0.201176 0.176285 25762 151098 -1 1965 19 1677 2647 218762 48155 2.81766 2.81766 -114.632 -2.81766 0 0 787024. 2723.27 0.26 0.09 0.15 -1 -1 0.26 0.0287537 0.0252496 141 59 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.77 vpr 54.76 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 16.4 MiB 0.71 735 12247 4571 5926 1750 54.8 MiB 0.15 0.00 3.6866 -109.378 -3.6866 3.6866 0.79 0.00062132 0.000575266 0.0470487 0.0436066 32 1716 21 6.87369e+06 279477 586450. 2029.24 0.98 0.120339 0.106437 25474 144626 -1 1503 18 1099 1582 163671 34178 2.93831 2.93831 -103.745 -2.93831 0 0 744469. 2576.02 0.24 0.07 0.15 -1 -1 0.24 0.0220886 0.0192491 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 9.84 vpr 55.81 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 30468 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 17.3 MiB 2.43 1290 11856 2585 8478 793 56.0 MiB 0.23 0.01 4.1886 -144.868 -4.1886 4.1886 0.81 0.000989596 0.000914252 0.0514019 0.0475382 30 3532 24 6.87369e+06 586901 556674. 1926.21 1.73 0.172533 0.151761 25186 138497 -1 2683 18 1789 3215 259275 53272 3.6951 3.6951 -143.92 -3.6951 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.0352131 0.0308729 184 95 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.03 vpr 55.21 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30348 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 17.0 MiB 3.07 874 9914 2276 6234 1404 55.9 MiB 0.15 0.00 4.91157 -150.663 -4.91157 4.91157 0.88 0.000901917 0.000834839 0.0436159 0.0401681 34 2599 26 6.87369e+06 321398 618332. 2139.56 2.37 0.228209 0.198442 25762 151098 -1 1912 18 1301 1955 158035 37634 3.97725 3.97725 -145.293 -3.97725 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0319407 0.0278862 144 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.62 vpr 55.23 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30240 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 16.6 MiB 3.00 802 14356 5267 6628 2461 55.4 MiB 0.20 0.00 4.598 -126.496 -4.598 4.598 0.79 0.000744719 0.000688122 0.0647835 0.0598662 34 2120 26 6.87369e+06 223581 618332. 2139.56 1.59 0.214826 0.188365 25762 151098 -1 1730 13 755 1133 101933 22903 3.18321 3.18321 -119.523 -3.18321 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0198379 0.017567 107 89 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.46 vpr 55.09 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30256 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 16.8 MiB 0.90 1114 14723 4652 8968 1103 55.6 MiB 0.23 0.00 4.1955 -143.003 -4.1955 4.1955 0.78 0.000792613 0.000733284 0.0543076 0.0502051 28 2958 29 6.87369e+06 475111 531479. 1839.03 1.53 0.160511 0.141962 24610 126494 -1 2562 20 1646 2372 254330 54262 3.8876 3.8876 -148.132 -3.8876 0 0 648988. 2245.63 0.21 0.10 0.13 -1 -1 0.21 0.0308872 0.027059 147 34 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.91 vpr 55.25 MiB 0.02 7184 -1 -1 1 0.04 -1 -1 30500 -1 -1 40 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 17.2 MiB 1.85 1006 19865 6118 9930 3817 55.9 MiB 0.29 0.01 4.28153 -140.004 -4.28153 4.28153 0.79 0.000928639 0.000852578 0.0790482 0.0730796 34 2871 25 6.87369e+06 558954 618332. 2139.56 2.04 0.265549 0.233348 25762 151098 -1 2251 21 2065 3079 248272 57609 4.2353 4.2353 -148.418 -4.2353 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0366406 0.0320441 176 64 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.68 vpr 55.04 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30416 -1 -1 36 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 16.9 MiB 1.84 1085 17873 5357 10009 2507 55.8 MiB 0.25 0.00 3.50639 -115.998 -3.50639 3.50639 0.79 0.000777955 0.000718834 0.0646238 0.0596223 34 2648 21 6.87369e+06 503058 618332. 2139.56 1.82 0.217868 0.191232 25762 151098 -1 2185 20 1570 2707 253045 54396 2.91296 2.91296 -111.322 -2.91296 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0301526 0.0263646 144 61 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.97 vpr 55.31 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30376 -1 -1 46 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 17.0 MiB 2.41 1127 20887 5685 13197 2005 55.7 MiB 0.32 0.01 4.26133 -148.826 -4.26133 4.26133 0.81 0.000842881 0.000778972 0.0757801 0.069921 26 3226 36 6.87369e+06 642796 503264. 1741.40 4.74 0.303483 0.265894 24322 120374 -1 2725 23 2142 3609 374040 77757 4.3109 4.3109 -165.452 -4.3109 0 0 618332. 2139.56 0.24 0.13 0.12 -1 -1 0.24 0.0318103 0.0278575 160 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.12 vpr 55.56 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30288 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 16.9 MiB 2.63 1115 19606 5308 11826 2472 55.7 MiB 0.26 0.01 3.52575 -126.542 -3.52575 3.52575 0.79 0.000838256 0.000775248 0.0688805 0.0636323 28 2688 21 6.87369e+06 586901 531479. 1839.03 3.05 0.282724 0.247298 24610 126494 -1 2475 23 1832 2907 280173 57728 3.04926 3.04926 -129.512 -3.04926 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0360055 0.0314241 157 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.79 vpr 54.60 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30276 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 16.4 MiB 1.74 669 12808 5105 6141 1562 55.0 MiB 0.16 0.00 3.73366 -117.212 -3.73366 3.73366 0.79 0.000653408 0.000604808 0.0506625 0.0469097 34 1739 20 6.87369e+06 265503 618332. 2139.56 1.49 0.176451 0.154471 25762 151098 -1 1474 19 1114 1626 149957 30822 3.14961 3.14961 -114.451 -3.14961 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0268101 0.0233371 107 34 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 5.59 vpr 54.85 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 29908 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 16.5 MiB 2.15 808 7256 1653 5365 238 55.3 MiB 0.12 0.00 4.2805 -117.484 -4.2805 4.2805 0.81 0.000709641 0.000655766 0.0315815 0.0291898 34 2091 23 6.87369e+06 237555 618332. 2139.56 1.76 0.172488 0.149658 25762 151098 -1 1680 15 735 1039 89992 20316 2.95265 2.95265 -114.233 -2.95265 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0220072 0.0192881 102 82 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 9.16 vpr 55.18 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30464 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 16.8 MiB 1.59 1136 19618 6151 11073 2394 55.6 MiB 0.29 0.01 4.1886 -141.394 -4.1886 4.1886 0.78 0.000774374 0.000715455 0.0677242 0.0626256 34 2703 21 6.87369e+06 544980 618332. 2139.56 3.58 0.298476 0.260915 25762 151098 -1 2269 19 1662 2690 279336 55393 3.6624 3.6624 -140.179 -3.6624 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0292996 0.0256619 152 34 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.69 vpr 54.86 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30356 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 16.4 MiB 2.89 794 17103 5256 9538 2309 55.0 MiB 0.19 0.00 3.45975 -106.144 -3.45975 3.45975 0.81 0.000661664 0.000611763 0.0560946 0.0518457 24 2388 42 6.87369e+06 447163 470940. 1629.55 1.58 0.162363 0.143341 24034 113901 -1 1895 24 1467 2302 282666 58727 3.29516 3.29516 -114.317 -3.29516 0 0 586450. 2029.24 0.19 0.10 0.12 -1 -1 0.19 0.0289911 0.0251125 108 56 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.57 vpr 54.77 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.5 MiB 3.06 809 12464 3077 8852 535 55.1 MiB 0.18 0.00 3.7104 -131.395 -3.7104 3.7104 0.79 0.000695563 0.000642708 0.0526573 0.0486753 34 2325 23 6.87369e+06 223581 618332. 2139.56 1.60 0.191204 0.167363 25762 151098 -1 1861 22 1487 2386 206389 46555 3.18261 3.18261 -130.176 -3.18261 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0287874 0.0250234 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.52 vpr 55.23 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30336 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 16.8 MiB 2.44 1003 13598 3664 8482 1452 55.6 MiB 0.20 0.00 3.61625 -124.489 -3.61625 3.61625 0.81 0.00081816 0.000749061 0.0525019 0.0484266 34 2238 22 6.87369e+06 489084 618332. 2139.56 1.60 0.211204 0.184898 25762 151098 -1 1911 22 1954 2949 261513 54578 2.83496 2.83496 -116.926 -2.83496 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0339724 0.0296779 146 64 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.28 vpr 54.80 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30268 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 16.4 MiB 2.65 698 11402 3727 5924 1751 54.9 MiB 0.15 0.00 3.33623 -109.833 -3.33623 3.33623 0.79 0.00068073 0.000628922 0.0479963 0.0444496 26 2208 31 6.87369e+06 223581 503264. 1741.40 1.13 0.139208 0.122631 24322 120374 -1 1844 19 1180 1824 173955 39534 3.31721 3.31721 -122.86 -3.31721 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0249531 0.0217295 103 55 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 9.60 vpr 55.32 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 16.8 MiB 2.58 1019 17256 4700 9815 2741 55.6 MiB 0.23 0.00 3.59195 -122.625 -3.59195 3.59195 0.79 0.000800693 0.00074023 0.0616774 0.0570427 32 2653 23 6.87369e+06 517032 586450. 2029.24 1.06 0.158866 0.140942 25474 144626 -1 2197 24 1481 2462 240513 52081 3.06356 3.06356 -120.102 -3.06356 0 0 744469. 2576.02 0.24 0.10 0.15 -1 -1 0.24 0.036013 0.0313719 143 65 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 7.27 vpr 55.30 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30284 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 16.9 MiB 3.46 929 10336 2368 6764 1204 55.6 MiB 0.17 0.00 3.59605 -120.102 -3.59605 3.59605 0.79 0.000860675 0.000793833 0.0402314 0.0371752 32 2497 23 6.87369e+06 544980 586450. 2029.24 1.08 0.144079 0.126791 25474 144626 -1 2023 23 2079 3051 321684 70271 3.07756 3.07756 -118.737 -3.07756 0 0 744469. 2576.02 0.24 0.12 0.15 -1 -1 0.24 0.0368115 0.0320922 151 93 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.73 vpr 54.85 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30144 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 16.3 MiB 2.67 812 13206 3975 7418 1813 55.2 MiB 0.19 0.00 3.26897 -114.681 -3.26897 3.26897 0.79 0.000718742 0.000664607 0.0568386 0.052589 34 2125 22 6.87369e+06 237555 618332. 2139.56 1.57 0.197997 0.17362 25762 151098 -1 1871 17 1123 1746 178839 37759 2.82101 2.82101 -115.669 -2.82101 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0244309 0.0213998 110 61 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.55 vpr 54.98 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 29972 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 16.5 MiB 2.88 923 10056 2840 6443 773 55.4 MiB 0.17 0.00 3.6884 -128.712 -3.6884 3.6884 0.79 0.000731508 0.000676771 0.0449256 0.0415738 32 2557 20 6.87369e+06 223581 586450. 2029.24 1.05 0.129656 0.114492 25474 144626 -1 2096 20 1373 2246 235384 49493 3.16356 3.16356 -127.756 -3.16356 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0280632 0.0244927 112 63 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.27 vpr 55.18 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30500 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 16.9 MiB 2.60 1032 14988 3846 9829 1313 55.7 MiB 0.22 0.01 4.29009 -147.998 -4.29009 4.29009 0.79 0.000847676 0.000783958 0.0544339 0.0502678 32 2850 24 6.87369e+06 558954 586450. 2029.24 1.62 0.185593 0.163408 25474 144626 -1 2290 23 2001 3232 308913 63957 3.7811 3.7811 -148.452 -3.7811 0 0 744469. 2576.02 0.24 0.12 0.15 -1 -1 0.24 0.0358982 0.0313496 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.06 vpr 55.04 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30400 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 16.8 MiB 2.33 880 11759 2826 8215 718 55.6 MiB 0.18 0.00 3.59605 -112.745 -3.59605 3.59605 0.78 0.000777602 0.00071838 0.0446564 0.0412193 26 2603 46 6.87369e+06 475111 503264. 1741.40 1.84 0.169593 0.148803 24322 120374 -1 2282 23 1512 2421 250540 62847 3.17456 3.17456 -121.262 -3.17456 0 0 618332. 2139.56 0.21 0.10 0.13 -1 -1 0.21 0.0333718 0.0290953 140 62 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 8.00 vpr 55.47 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30524 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 17.0 MiB 4.88 930 19136 5654 10352 3130 55.7 MiB 0.28 0.01 4.25669 -144.754 -4.25669 4.25669 0.79 0.000943059 0.000864413 0.0767506 0.0708666 34 2770 22 6.87369e+06 558954 618332. 2139.56 2.33 0.265298 0.232935 25762 151098 -1 2253 20 1970 3101 280460 62199 3.7891 3.7891 -143.05 -3.7891 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0353282 0.0307777 157 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.08 vpr 54.52 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.2 MiB 0.58 801 6501 1452 4525 524 54.7 MiB 0.10 0.00 3.09052 -106.923 -3.09052 3.09052 0.78 0.000620907 0.000574553 0.0258125 0.0239356 32 2210 22 6.87369e+06 223581 586450. 2029.24 0.98 0.0996915 0.0873666 25474 144626 -1 1773 15 998 1501 159384 34551 3.12776 3.12776 -122.774 -3.12776 0 0 744469. 2576.02 0.24 0.06 0.15 -1 -1 0.24 0.0194688 0.0170858 104 4 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.10 vpr 55.34 MiB 0.05 7160 -1 -1 1 0.05 -1 -1 30248 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 16.8 MiB 1.51 977 17961 5555 9821 2585 55.7 MiB 0.25 0.00 4.24789 -140.827 -4.24789 4.24789 0.79 0.000851322 0.000787627 0.0675796 0.0624512 34 2364 23 6.87369e+06 517032 618332. 2139.56 1.79 0.237684 0.20858 25762 151098 -1 1896 23 1598 2273 215743 45990 3.6278 3.6278 -135.914 -3.6278 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0364916 0.0318421 147 92 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.60 vpr 54.98 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 29936 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 3.87 961 12808 4157 6979 1672 55.4 MiB 0.18 0.00 3.7416 -135.274 -3.7416 3.7416 0.78 0.000780314 0.000721822 0.060516 0.0560031 34 2185 20 6.87369e+06 223581 618332. 2139.56 1.57 0.209593 0.183857 25762 151098 -1 1910 19 1399 1959 184105 39513 2.94001 2.94001 -129.783 -2.94001 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.0292104 0.0256124 114 96 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.09 vpr 55.23 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30284 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 16.9 MiB 2.61 1013 13117 3136 9263 718 55.8 MiB 0.20 0.00 3.62407 -127.528 -3.62407 3.62407 0.88 0.000837879 0.000773522 0.0482215 0.0444883 34 2595 22 6.87369e+06 544980 618332. 2139.56 3.38 0.294382 0.255978 25762 151098 -1 2009 20 1553 2283 191142 42175 2.98996 2.98996 -125.379 -2.98996 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0322614 0.0282567 153 65 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.65 vpr 55.38 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30624 -1 -1 47 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 17.6 MiB 4.09 1138 14475 3597 10051 827 55.9 MiB 0.24 0.01 4.97494 -166.026 -4.97494 4.97494 0.78 0.000996476 0.000922982 0.0575564 0.0531279 34 3043 24 6.87369e+06 656770 618332. 2139.56 3.94 0.32727 0.285363 25762 151098 -1 2443 22 2326 3580 346884 72568 4.60055 4.60055 -167.64 -4.60055 0 0 787024. 2723.27 0.28 0.13 0.16 -1 -1 0.28 0.0419331 0.036691 190 96 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.08 vpr 54.58 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 30008 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 16.1 MiB 1.84 613 9036 2242 6211 583 54.7 MiB 0.10 0.00 2.94746 -92.2629 -2.94746 2.94746 0.79 0.000568216 0.000525453 0.0338317 0.0312941 32 1509 20 6.87369e+06 195634 586450. 2029.24 0.92 0.0998953 0.0876139 25474 144626 -1 1331 15 659 917 92542 21138 2.09702 2.09702 -89.9926 -2.09702 0 0 744469. 2576.02 0.24 0.05 0.15 -1 -1 0.24 0.0175076 0.0152554 72 56 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.76 vpr 54.71 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30240 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 16.5 MiB 0.93 764 12120 4745 5717 1658 55.0 MiB 0.16 0.00 3.7196 -120.247 -3.7196 3.7196 0.79 0.000669726 0.00061992 0.0490871 0.0454522 32 2060 22 6.87369e+06 251529 586450. 2029.24 1.03 0.128266 0.113466 25474 144626 -1 1714 19 1337 1870 198418 42606 3.15261 3.15261 -122.811 -3.15261 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0249534 0.021798 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.26 vpr 54.97 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 29884 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.5 MiB 1.25 884 12464 4265 6183 2016 55.3 MiB 0.19 0.00 3.52575 -127.584 -3.52575 3.52575 0.79 0.000701578 0.000648636 0.053616 0.0496463 34 2676 23 6.87369e+06 223581 618332. 2139.56 1.78 0.194032 0.170012 25762 151098 -1 2184 22 1777 3164 312994 68188 3.08856 3.08856 -129.648 -3.08856 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0295113 0.0257435 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.57 vpr 54.56 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30240 -1 -1 37 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 16.4 MiB 0.69 742 15004 4316 8330 2358 54.9 MiB 0.16 0.00 3.44875 -93.4127 -3.44875 3.44875 0.78 0.000578987 0.000536382 0.0425604 0.0394 30 1602 21 6.87369e+06 517032 556674. 1926.21 0.92 0.110356 0.0973204 25186 138497 -1 1380 16 752 1139 67557 16205 2.78766 2.78766 -95.4077 -2.78766 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0185588 0.016184 105 34 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.48 vpr 55.05 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30444 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 16.9 MiB 2.38 1035 11989 3061 8035 893 55.8 MiB 0.11 0.00 4.14459 -143.245 -4.14459 4.14459 0.64 0.000376964 0.000344883 0.026205 0.0239937 34 2891 27 6.87369e+06 293451 618332. 2139.56 1.76 0.195043 0.169006 25762 151098 -1 2318 23 2049 3735 335649 72247 3.8364 3.8364 -145.461 -3.8364 0 0 787024. 2723.27 0.25 0.11 0.11 -1 -1 0.25 0.0316705 0.0278676 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.88 vpr 55.16 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30188 -1 -1 40 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 16.8 MiB 2.38 969 12394 3038 8536 820 55.7 MiB 0.20 0.01 3.62425 -121.977 -3.62425 3.62425 0.82 0.000850538 0.000785729 0.047494 0.0437745 34 2257 22 6.87369e+06 558954 618332. 2139.56 1.68 0.213895 0.186781 25762 151098 -1 1967 23 1974 2870 267635 57824 2.97896 2.97896 -119.514 -2.97896 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0365961 0.0319351 151 94 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.41 vpr 55.07 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30776 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1383 18363 6134 9531 2698 55.8 MiB 0.29 0.00 5.11247 -173.262 -5.11247 5.11247 0.79 0.000886687 0.00082104 0.0808278 0.0748591 38 2985 35 6.89349e+06 408721 678818. 2348.85 4.02 0.333652 0.291977 26626 170182 -1 2611 20 2052 2589 220032 44829 4.28005 4.28005 -163.885 -4.28005 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0343053 0.0300607 192 96 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.69 vpr 55.12 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30432 -1 -1 29 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 16.8 MiB 1.36 1338 16411 5641 8181 2589 55.7 MiB 0.26 0.00 5.22297 -160.634 -5.22297 5.22297 0.79 0.000829436 0.000767571 0.0696372 0.0644335 36 3164 26 6.89349e+06 408721 648988. 2245.63 2.32 0.237152 0.208601 26050 158493 -1 2686 19 1867 2596 255636 51478 4.51278 4.51278 -152.831 -4.51278 0 0 828058. 2865.25 0.27 0.10 0.15 -1 -1 0.27 0.0307746 0.0269672 177 91 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.34 vpr 54.78 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1277 15533 4267 9018 2248 55.5 MiB 0.24 0.00 4.0146 -140.879 -4.0146 4.0146 0.79 0.00081169 0.00075073 0.065943 0.0610072 36 3037 21 6.89349e+06 352346 648988. 2245.63 3.94 0.291116 0.254252 26050 158493 -1 2516 20 1540 1936 197338 38483 3.5358 3.5358 -137.598 -3.5358 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.031115 0.0272616 167 65 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.40 vpr 54.86 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30404 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 16.5 MiB 1.85 1071 16718 5447 9404 1867 55.2 MiB 0.26 0.00 4.53305 -141.516 -4.53305 4.53305 0.78 0.000746492 0.00069139 0.0689542 0.0639254 34 2604 24 6.89349e+06 352346 618332. 2139.56 1.76 0.217672 0.191446 25762 151098 -1 2082 20 1652 2487 184015 41746 3.99576 3.99576 -144.727 -3.99576 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0290929 0.0254653 148 34 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.36 vpr 55.11 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30320 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 16.7 MiB 1.78 1361 14518 4265 8140 2113 55.5 MiB 0.25 0.00 5.03124 -172.909 -5.03124 5.03124 0.79 0.000817503 0.00075683 0.063284 0.0586216 36 3204 23 6.89349e+06 338252 648988. 2245.63 2.52 0.230479 0.202559 26050 158493 -1 2708 21 2164 3702 308376 64335 4.25485 4.25485 -163.62 -4.25485 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0327698 0.0286931 163 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.69 vpr 55.09 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30280 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 16.8 MiB 1.61 1499 20359 6047 11800 2512 55.7 MiB 0.30 0.01 4.44565 -148.532 -4.44565 4.44565 0.81 0.000856776 0.000792962 0.0653931 0.0601231 34 3638 42 6.89349e+06 577847 618332. 2139.56 2.01 0.256931 0.225104 25762 151098 -1 2902 20 1840 2888 245956 51403 3.4637 3.4637 -135.971 -3.4637 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0328054 0.0287447 179 64 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.99 vpr 54.59 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55892 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 16.1 MiB 1.36 730 14528 4147 9388 993 54.6 MiB 0.18 0.00 3.83226 -109.129 -3.83226 3.83226 0.80 0.000621262 0.000575321 0.0544427 0.0504182 30 2001 25 6.89349e+06 295971 556674. 1926.21 1.00 0.131849 0.11683 25186 138497 -1 1566 20 1090 1583 119409 26752 3.12146 3.12146 -110.895 -3.12146 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0237903 0.0207142 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.99 vpr 54.62 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30156 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 16.4 MiB 0.71 921 14273 4335 7347 2591 55.3 MiB 0.19 0.00 3.53335 -112.01 -3.53335 3.53335 0.79 0.000728991 0.000672623 0.0485796 0.0448852 34 2330 17 6.89349e+06 493284 618332. 2139.56 1.65 0.184618 0.161716 25762 151098 -1 1917 19 1254 2012 156951 34298 2.77281 2.77281 -107.285 -2.77281 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0265342 0.0231369 141 4 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.43 vpr 54.91 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30052 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 16.6 MiB 1.41 1141 14358 3961 8348 2049 55.1 MiB 0.21 0.00 3.63141 -123.531 -3.63141 3.63141 0.79 0.00072522 0.000671566 0.059542 0.0551602 34 2823 25 6.89349e+06 295971 618332. 2139.56 1.68 0.202771 0.177641 25762 151098 -1 2192 22 1635 2026 176828 38039 3.00146 3.00146 -118.923 -3.00146 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0300623 0.0261786 140 85 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.67 vpr 54.75 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30144 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 16.4 MiB 1.64 873 6923 1573 5100 250 54.9 MiB 0.13 0.00 3.71245 -131.003 -3.71245 3.71245 0.79 0.00070405 0.000651263 0.0296905 0.0275282 34 2504 22 6.89349e+06 267783 618332. 2139.56 1.72 0.168541 0.146436 25762 151098 -1 1973 21 1746 2253 208153 45634 3.25976 3.25976 -129.578 -3.25976 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0292986 0.0255752 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.15 vpr 54.75 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30188 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 16.4 MiB 1.82 942 6923 1677 4944 302 55.1 MiB 0.12 0.00 4.3965 -138.695 -4.3965 4.3965 0.79 0.00070376 0.000651562 0.0298254 0.0276564 34 2549 23 6.89349e+06 295971 618332. 2139.56 1.70 0.179733 0.15605 25762 151098 -1 1994 17 1444 1905 163453 34945 3.53595 3.53595 -132.555 -3.53595 0 0 787024. 2723.27 0.26 0.07 0.14 -1 -1 0.26 0.0244956 0.0214751 135 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.35 vpr 54.66 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30428 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 16.5 MiB 1.44 883 15822 6326 7340 2156 55.4 MiB 0.20 0.00 3.8129 -121.35 -3.8129 3.8129 0.80 0.000719206 0.000659588 0.0640532 0.0592288 36 2268 22 6.89349e+06 281877 648988. 2245.63 2.36 0.205911 0.180848 26050 158493 -1 1772 21 1263 1439 119035 27655 2.96941 2.96941 -110.48 -2.96941 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0285271 0.0248573 135 65 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.10 vpr 54.86 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 16.8 MiB 1.14 987 17513 5731 7853 3929 55.5 MiB 0.22 0.00 4.23419 -140.25 -4.23419 4.23419 0.78 0.000811141 0.000750542 0.0744748 0.0689009 38 2680 30 6.89349e+06 352346 678818. 2348.85 4.15 0.253802 0.22327 26626 170182 -1 2093 20 1732 2323 205928 46210 3.2913 3.2913 -123.28 -3.2913 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0313068 0.027426 161 58 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.95 vpr 55.11 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30364 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 16.8 MiB 1.33 1162 11063 2970 6995 1098 55.7 MiB 0.20 0.01 5.02024 -166.562 -5.02024 5.02024 0.79 0.000843566 0.000780529 0.048048 0.0444465 34 3453 43 6.89349e+06 394628 618332. 2139.56 2.04 0.220769 0.19312 25762 151098 -1 2666 22 2359 3101 270233 58754 4.72305 4.72305 -173.843 -4.72305 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0178109 0.0157093 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.43 vpr 54.53 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 16.3 MiB 1.23 754 11296 2879 7697 720 54.8 MiB 0.14 0.00 3.61645 -112 -3.61645 3.61645 0.79 0.00062644 0.00058034 0.041816 0.0387204 34 1936 20 6.89349e+06 295971 618332. 2139.56 1.59 0.154318 0.134745 25762 151098 -1 1538 17 987 1359 111715 25185 2.74466 2.74466 -104.488 -2.74466 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0214086 0.0186954 112 29 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.42 vpr 55.11 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30252 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 16.9 MiB 2.07 1259 17315 5682 9212 2421 55.7 MiB 0.30 0.00 4.31019 -146.5 -4.31019 4.31019 0.81 0.000837931 0.000775032 0.0766051 0.0707717 34 3731 27 6.89349e+06 352346 618332. 2139.56 2.28 0.261405 0.230669 25762 151098 -1 2971 22 2639 4122 391062 81050 3.98685 3.98685 -151.495 -3.98685 0 0 787024. 2723.27 0.28 0.13 0.15 -1 -1 0.28 0.0342376 0.0301251 174 63 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.67 vpr 54.87 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 16.8 MiB 1.05 1183 12365 3291 7811 1263 55.5 MiB 0.20 0.00 3.69045 -130.871 -3.69045 3.69045 0.78 0.000809349 0.000748732 0.0527119 0.0487499 34 2818 23 6.89349e+06 352346 618332. 2139.56 1.73 0.218442 0.191258 25762 151098 -1 2268 18 1664 2099 189158 40020 2.91031 2.91031 -121.711 -2.91031 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.029366 0.0257426 160 57 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.94 vpr 54.90 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30064 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 16.6 MiB 1.60 1015 15395 4903 8010 2482 55.3 MiB 0.23 0.00 3.61051 -123.557 -3.61051 3.61051 0.79 0.000742549 0.000686682 0.0628489 0.0580876 40 2180 24 6.89349e+06 310065 706193. 2443.58 4.04 0.293125 0.255072 26914 176310 -1 2013 19 1525 2041 197470 41961 2.81226 2.81226 -113.173 -2.81226 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0277283 0.0242571 139 65 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.65 vpr 54.54 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30056 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 16.0 MiB 0.89 569 8227 1998 5670 559 54.5 MiB 0.09 0.00 3.06366 -95.1937 -3.06366 3.06366 0.83 0.000547902 0.000506398 0.0293862 0.0271735 34 1458 19 6.89349e+06 211408 618332. 2139.56 1.53 0.128261 0.111302 25762 151098 -1 1239 16 711 837 71164 16553 2.11917 2.11917 -84.2942 -2.11917 0 0 787024. 2723.27 0.23 0.03 0.16 -1 -1 0.23 0.00979138 0.00866054 85 34 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 9.03 vpr 54.85 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30272 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 16.4 MiB 1.21 1101 13663 4048 7780 1835 55.2 MiB 0.20 0.00 4.32835 -147.32 -4.32835 4.32835 0.83 0.000873164 0.000808088 0.0577676 0.0534047 34 2686 22 6.89349e+06 310065 618332. 2139.56 1.75 0.191248 0.168101 25762 151098 -1 2178 20 1578 2066 186237 40242 3.4358 3.4358 -138.035 -3.4358 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.028294 0.0247278 141 64 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.78 vpr 55.10 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 29996 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 16.8 MiB 0.85 1052 20112 6009 11047 3056 55.6 MiB 0.28 0.00 4.67003 -155.404 -4.67003 4.67003 0.79 0.000799528 0.00073894 0.068232 0.0630801 34 2788 22 6.89349e+06 563754 618332. 2139.56 1.84 0.229175 0.201708 25762 151098 -1 2140 20 1895 2615 252223 51509 3.80464 3.80464 -143.966 -3.80464 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0331405 0.0291189 166 34 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.00 vpr 55.11 MiB 0.04 7204 -1 -1 1 0.05 -1 -1 30516 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 17.1 MiB 1.18 1507 16511 4972 9774 1765 55.8 MiB 0.28 0.00 4.34661 -147.62 -4.34661 4.34661 0.79 0.000923245 0.000855462 0.0732611 0.0678627 36 3443 24 6.89349e+06 436909 648988. 2245.63 2.12 0.263961 0.231646 26050 158493 -1 2951 20 2192 2505 223884 47625 4.1265 4.1265 -146.678 -4.1265 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0363853 0.0318436 201 124 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.97 vpr 54.19 MiB 0.02 6844 -1 -1 1 0.02 -1 -1 30492 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 16.0 MiB 1.35 692 10476 3888 5359 1229 54.5 MiB 0.11 0.00 2.84541 -81.5212 -2.84541 2.84541 0.80 0.000473362 0.000436773 0.032914 0.0303971 30 1474 16 6.89349e+06 253689 556674. 1926.21 0.87 0.0858013 0.075608 25186 138497 -1 1249 12 461 583 45569 9801 1.92605 1.92605 -76.6152 -1.92605 0 0 706193. 2443.58 0.23 0.03 0.14 -1 -1 0.23 0.0126242 0.0111001 77 30 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.67 vpr 54.69 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 29972 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 16.3 MiB 1.01 1016 9571 2543 6414 614 54.9 MiB 0.17 0.00 4.12784 -139.243 -4.12784 4.12784 0.91 0.000761276 0.000704152 0.0411016 0.0380657 34 2761 33 6.89349e+06 295971 618332. 2139.56 4.01 0.290776 0.252865 25762 151098 -1 2113 17 1420 2384 197860 42885 3.69405 3.69405 -140.075 -3.69405 0 0 787024. 2723.27 0.22 0.05 0.10 -1 -1 0.22 0.0133973 0.0118806 141 3 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.15 vpr 54.12 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30296 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55704 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.0 MiB 0.30 514 9356 2285 6456 615 54.4 MiB 0.10 0.00 2.43188 -86.7872 -2.43188 2.43188 0.79 0.000509484 0.000469713 0.031298 0.028874 28 1518 34 6.89349e+06 169126 531479. 1839.03 0.96 0.101032 0.0886668 24610 126494 -1 1316 16 737 1032 84969 21628 2.01906 2.01906 -89.2091 -2.01906 0 0 648988. 2245.63 0.22 0.05 0.13 -1 -1 0.22 0.0165546 0.0144617 71 3 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.20 vpr 54.84 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30440 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 16.7 MiB 1.19 1097 15929 4551 10101 1277 55.4 MiB 0.28 0.01 4.62958 -159.64 -4.62958 4.62958 0.79 0.000807499 0.000748014 0.0706165 0.0654286 30 2798 23 6.89349e+06 352346 556674. 1926.21 1.08 0.169977 0.151081 25186 138497 -1 2125 22 1641 2244 170678 38588 3.89866 3.89866 -147.919 -3.89866 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0339906 0.0297726 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.93 vpr 54.71 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30080 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.4 MiB 0.66 885 10772 2583 7345 844 55.2 MiB 0.17 0.00 3.4709 -116.935 -3.4709 3.4709 0.78 0.000770261 0.000712132 0.0381205 0.0352335 32 2589 22 6.89349e+06 507378 586450. 2029.24 1.03 0.129104 0.113821 25474 144626 -1 2046 21 1493 2314 198941 46206 2.86981 2.86981 -118.592 -2.86981 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0306108 0.0267807 151 3 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 7.29 vpr 54.93 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 30396 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.9 MiB 1.62 1365 8130 1863 5269 998 55.7 MiB 0.17 0.00 4.69935 -162.091 -4.69935 4.69935 0.80 0.00085106 0.00078623 0.0374896 0.0347366 34 3602 24 6.89349e+06 366440 618332. 2139.56 2.17 0.212158 0.185104 25762 151098 -1 2917 21 2256 3261 289615 59329 4.17126 4.17126 -159.891 -4.17126 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0347434 0.0304635 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.46 vpr 54.80 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 29992 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 16.2 MiB 1.77 863 14256 5690 7135 1431 54.7 MiB 0.18 0.00 3.57625 -122.952 -3.57625 3.57625 0.80 0.000664132 0.000613459 0.0564521 0.052173 34 2829 35 6.89349e+06 239595 618332. 2139.56 2.24 0.182298 0.15999 25762 151098 -1 2035 21 1520 2215 227493 47957 3.01556 3.01556 -122.395 -3.01556 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0268183 0.0233463 118 34 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.37 vpr 54.67 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 29996 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 16.3 MiB 1.44 1065 12331 4460 6746 1125 54.9 MiB 0.18 0.00 4.27029 -139.911 -4.27029 4.27029 0.79 0.000673805 0.000623056 0.0495037 0.0458175 34 2593 29 6.89349e+06 267783 618332. 2139.56 1.85 0.191784 0.167559 25762 151098 -1 2233 19 1366 2106 228988 44819 3.6861 3.6861 -143.167 -3.6861 0 0 787024. 2723.27 0.27 0.09 0.15 -1 -1 0.27 0.0245356 0.0216172 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.55 vpr 54.61 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30092 -1 -1 21 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 16.3 MiB 1.79 839 10231 2827 6777 627 54.8 MiB 0.09 0.00 4.26535 -126.926 -4.26535 4.26535 0.65 0.000282667 0.000258889 0.017814 0.0163324 28 2398 29 6.89349e+06 295971 531479. 1839.03 2.95 0.115494 0.0989551 24610 126494 -1 2141 21 1319 2092 187747 41382 3.7956 3.7956 -134.911 -3.7956 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.025422 0.0221053 115 34 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.03 vpr 54.52 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 0.94 860 14700 5342 7547 1811 54.8 MiB 0.20 0.00 3.60535 -129.612 -3.60535 3.60535 0.80 0.00066476 0.000614959 0.0588591 0.0544713 34 2253 23 6.89349e+06 225501 618332. 2139.56 1.65 0.192243 0.16876 25762 151098 -1 1939 19 1411 2286 225053 45416 2.93496 2.93496 -125.353 -2.93496 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0249833 0.0217766 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 5.59 vpr 54.65 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30080 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 16.2 MiB 1.25 985 14322 4727 7440 2155 54.8 MiB 0.20 0.00 3.69435 -127.028 -3.69435 3.69435 0.80 0.000688369 0.000637463 0.0573945 0.0531447 30 2344 17 6.89349e+06 267783 556674. 1926.21 1.02 0.13475 0.119684 25186 138497 -1 1897 15 992 1416 93539 20851 2.86686 2.86686 -117.141 -2.86686 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.021068 0.0185281 121 34 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.52 vpr 54.64 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30004 -1 -1 23 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 16.6 MiB 1.33 1052 14724 4760 7779 2185 55.3 MiB 0.19 0.00 3.57215 -115.596 -3.57215 3.57215 0.88 0.000517585 0.000475825 0.0456335 0.041829 34 2390 19 6.89349e+06 324158 618332. 2139.56 1.53 0.177329 0.154351 25762 151098 -1 2029 18 1059 1423 121903 26092 2.78696 2.78696 -109.841 -2.78696 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0244868 0.0214159 130 61 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.03 vpr 55.16 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30424 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 16.8 MiB 1.80 1199 18247 5521 9891 2835 55.8 MiB 0.31 0.00 4.73855 -160.484 -4.73855 4.73855 0.80 0.000918954 0.000850776 0.0839855 0.0777283 36 3057 20 6.89349e+06 380534 648988. 2245.63 4.21 0.346745 0.303382 26050 158493 -1 2646 18 1819 2962 256822 53587 4.09316 4.09316 -154.573 -4.09316 0 0 828058. 2865.25 0.30 0.09 0.17 -1 -1 0.30 0.0286803 0.0254742 184 29 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.06 vpr 55.11 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30292 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 16.7 MiB 1.52 1143 14147 4354 7296 2497 55.5 MiB 0.24 0.00 4.17974 -143.168 -4.17974 4.17974 0.79 0.000840725 0.000777784 0.062599 0.0578873 34 3558 33 6.89349e+06 352346 618332. 2139.56 2.26 0.25137 0.220495 25762 151098 -1 2715 23 2711 3700 353275 74502 4.18925 4.18925 -153.784 -4.18925 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0364376 0.0318751 173 65 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.83 vpr 54.70 MiB 0.03 6984 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 16.7 MiB 0.88 1094 14965 4562 8063 2340 55.4 MiB 0.21 0.00 3.67235 -123.222 -3.67235 3.67235 0.79 0.000737024 0.000681282 0.0623112 0.0576632 34 2633 22 6.89349e+06 310065 618332. 2139.56 1.59 0.207685 0.182182 25762 151098 -1 2095 22 1337 1402 149763 31290 3.16091 3.16091 -119.072 -3.16091 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0306312 0.0266867 143 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.96 vpr 55.11 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30208 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 16.8 MiB 1.97 1244 16523 4277 10843 1403 55.5 MiB 0.16 0.00 4.45875 -146.616 -4.45875 4.45875 0.80 0.000352077 0.000322065 0.0317847 0.0290611 34 3041 49 6.89349e+06 366440 618332. 2139.56 2.02 0.232757 0.201816 25762 151098 -1 2511 19 1670 2368 218285 45586 3.6923 3.6923 -141.034 -3.6923 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0304422 0.0266699 170 64 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 8.19 vpr 55.33 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 17.0 MiB 1.72 1489 17560 4957 10293 2310 55.8 MiB 0.32 0.01 5.02254 -165.43 -5.02254 5.02254 0.81 0.000913275 0.000845488 0.0781321 0.0723725 36 3302 26 6.89349e+06 436909 648988. 2245.63 4.00 0.345618 0.301455 26050 158493 -1 2694 20 1876 2118 175285 38262 4.53904 4.53904 -162.317 -4.53904 0 0 828058. 2865.25 0.29 0.09 0.16 -1 -1 0.29 0.0317822 0.0281384 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.75 vpr 55.13 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 16.6 MiB 2.06 1401 11923 3470 7236 1217 55.5 MiB 0.22 0.01 5.49816 -175.294 -5.49816 5.49816 0.79 0.000841447 0.00077823 0.0518419 0.0480049 42 2926 22 6.89349e+06 394628 744469. 2576.02 3.52 0.283154 0.246755 27202 183097 -1 2527 16 1749 2356 203221 43700 4.63614 4.63614 -164.711 -4.63614 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0282742 0.024932 181 90 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.99 vpr 55.23 MiB 0.03 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 16.8 MiB 1.54 1340 14763 4284 8311 2168 55.6 MiB 0.26 0.00 3.76655 -130.012 -3.76655 3.76655 0.80 0.000821832 0.000759939 0.0628939 0.0581958 34 3196 35 6.89349e+06 380534 618332. 2139.56 2.02 0.246447 0.215629 25762 151098 -1 2557 21 1950 2707 248885 51843 3.05126 3.05126 -124.604 -3.05126 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0332578 0.029116 168 64 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.06 vpr 54.81 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30344 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 16.7 MiB 1.67 1284 16207 4365 9844 1998 55.5 MiB 0.26 0.01 4.62085 -160.706 -4.62085 4.62085 0.79 0.000852519 0.00078864 0.0694875 0.064345 40 2601 20 6.89349e+06 380534 706193. 2443.58 4.15 0.294732 0.258335 26914 176310 -1 2516 20 1939 2561 273038 55896 3.93166 3.93166 -155.11 -3.93166 0 0 926341. 3205.33 0.29 0.11 0.18 -1 -1 0.29 0.0330403 0.028957 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.68 vpr 55.50 MiB 0.05 7360 -1 -1 1 0.03 -1 -1 30504 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 17.1 MiB 1.91 1764 15215 4236 8627 2352 55.7 MiB 0.30 0.01 5.15348 -175.341 -5.15348 5.15348 0.81 0.00130435 0.00122881 0.0741773 0.0688022 34 4963 46 6.89349e+06 436909 618332. 2139.56 3.55 0.321757 0.282163 25762 151098 -1 3860 23 3483 4904 572738 110091 4.92129 4.92129 -185.826 -4.92129 0 0 787024. 2723.27 0.25 0.19 0.17 -1 -1 0.25 0.0499671 0.0445542 220 96 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.99 vpr 54.57 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30420 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 16.3 MiB 1.46 822 6743 1455 4759 529 54.9 MiB 0.11 0.00 3.853 -129.297 -3.853 3.853 0.79 0.000689893 0.000638759 0.0279073 0.0258709 34 2130 23 6.89349e+06 281877 618332. 2139.56 1.51 0.1637 0.142276 25762 151098 -1 1735 17 1232 1587 138246 30502 3.18261 3.18261 -125.282 -3.18261 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0235647 0.0206488 127 34 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.63 vpr 54.89 MiB 0.05 7120 -1 -1 1 0.04 -1 -1 30232 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 16.8 MiB 1.54 1294 17376 6419 8627 2330 55.6 MiB 0.27 0.00 5.00234 -161.335 -5.00234 5.00234 0.80 0.000632969 0.00057547 0.069058 0.0636488 34 3330 27 6.89349e+06 380534 618332. 2139.56 1.86 0.164903 0.145629 25762 151098 -1 2476 17 1626 2007 191409 39462 3.97305 3.97305 -146.178 -3.97305 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0279214 0.0245207 168 64 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.49 vpr 55.17 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1356 15391 5368 7626 2397 55.6 MiB 0.26 0.00 4.39449 -148.549 -4.39449 4.39449 0.90 0.000599708 0.000542978 0.0631836 0.0583025 36 3399 20 6.89349e+06 380534 648988. 2245.63 2.30 0.239815 0.210908 26050 158493 -1 2665 18 1552 2335 195483 42653 3.4388 3.4388 -137.093 -3.4388 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0296292 0.0260092 172 63 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 4.73 vpr 54.68 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.4 MiB 1.05 953 14407 3720 10033 654 55.0 MiB 0.12 0.00 4.3344 -147.594 -4.3344 4.3344 0.65 0.000336557 0.000307883 0.0275264 0.025198 34 2905 27 6.89349e+06 295971 618332. 2139.56 1.70 0.13857 0.120441 25762 151098 -1 2232 23 1991 3487 264360 60022 4.157 4.157 -158.907 -4.157 0 0 787024. 2723.27 0.26 0.11 0.15 -1 -1 0.26 0.0332054 0.0291205 147 3 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.89 vpr 55.07 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30220 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 17.0 MiB 1.39 1279 18101 5797 9598 2706 55.7 MiB 0.30 0.00 4.41459 -148.068 -4.41459 4.41459 0.82 0.000859461 0.000794123 0.0778281 0.0719644 34 3391 28 6.89349e+06 394628 618332. 2139.56 2.09 0.263397 0.231007 25762 151098 -1 2463 21 1740 1984 171491 37870 3.5578 3.5578 -134.352 -3.5578 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.034019 0.0297763 184 96 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 9.19 vpr 55.27 MiB 0.02 7176 -1 -1 1 0.04 -1 -1 30120 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 16.8 MiB 2.09 1221 17635 5673 8836 3126 55.5 MiB 0.26 0.00 4.28929 -146.442 -4.28929 4.28929 0.82 0.00083479 0.000772949 0.0752869 0.0696975 38 2787 32 6.89349e+06 380534 678818. 2348.85 4.22 0.338178 0.295447 26626 170182 -1 2196 20 1647 2496 191119 42455 3.4967 3.4967 -139.433 -3.4967 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0324201 0.0284539 169 61 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.13 vpr 55.26 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 16.8 MiB 1.52 1303 7027 1560 5110 357 55.6 MiB 0.15 0.01 3.72045 -130.455 -3.72045 3.72045 0.80 0.000857307 0.000793369 0.0318499 0.0294959 34 3419 35 6.89349e+06 380534 618332. 2139.56 1.98 0.219573 0.191005 25762 151098 -1 2708 23 2357 3298 307090 64592 3.36316 3.36316 -133.871 -3.36316 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0370233 0.0324046 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.31 vpr 54.79 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 16.7 MiB 1.43 1190 14518 4171 8562 1785 55.4 MiB 0.24 0.01 4.63815 -161.109 -4.63815 4.63815 0.80 0.000813182 0.000752309 0.0627695 0.0581088 34 2823 20 6.89349e+06 338252 618332. 2139.56 1.83 0.223157 0.196177 25762 151098 -1 2319 21 1986 2951 235767 49816 3.91446 3.91446 -155.236 -3.91446 0 0 787024. 2723.27 0.27 0.10 0.15 -1 -1 0.27 0.0315529 0.0278991 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.85 vpr 54.91 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30504 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 16.8 MiB 1.17 1201 13351 3240 8446 1665 55.6 MiB 0.22 0.00 4.60525 -158.398 -4.60525 4.60525 0.79 0.000857894 0.000794906 0.0586842 0.0543714 34 3331 29 6.89349e+06 380534 618332. 2139.56 1.82 0.217386 0.191223 25762 151098 -1 2649 22 2149 2702 249037 53736 4.18866 4.18866 -157.463 -4.18866 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0343674 0.030066 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.44 vpr 55.12 MiB 0.04 7344 -1 -1 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 17.1 MiB 1.16 1470 18625 5270 10765 2590 55.8 MiB 0.31 0.01 5.00359 -155.604 -5.00359 5.00359 0.80 0.000900002 0.000833729 0.0820806 0.0760815 34 3579 26 6.89349e+06 436909 618332. 2139.56 1.92 0.268265 0.235535 25762 151098 -1 2722 18 1799 2119 187648 40452 4.02335 4.02335 -144.794 -4.02335 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0316064 0.0276886 195 122 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.93 vpr 55.17 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30304 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 17.2 MiB 2.47 1648 15391 4130 9133 2128 56.0 MiB 0.28 0.01 4.77885 -161.828 -4.77885 4.77885 0.79 0.000880486 0.000815199 0.0692034 0.0640466 34 3960 24 6.89349e+06 380534 618332. 2139.56 1.85 0.21503 0.189769 25762 151098 -1 3178 23 2615 3790 338322 69689 4.23076 4.23076 -158.094 -4.23076 0 0 787024. 2723.27 0.27 0.12 0.18 -1 -1 0.27 0.0378451 0.033061 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.09 vpr 54.54 MiB 0.02 6860 -1 -1 1 0.04 -1 -1 30432 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 16.4 MiB 1.38 1067 16081 5068 9178 1835 55.0 MiB 0.22 0.00 3.68745 -131.866 -3.68745 3.68745 0.78 0.00069641 0.000644518 0.0623698 0.0577143 34 2357 23 6.89349e+06 295971 618332. 2139.56 1.73 0.202611 0.178643 25762 151098 -1 1967 17 1190 1666 131784 28869 2.87006 2.87006 -123.027 -2.87006 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0239165 0.0209531 127 34 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.27 vpr 55.01 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30296 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 16.8 MiB 1.34 1122 7711 1541 6020 150 55.6 MiB 0.16 0.00 4.29439 -143.523 -4.29439 4.29439 0.78 0.000783653 0.000725639 0.0387824 0.0358035 34 3377 24 6.89349e+06 295971 618332. 2139.56 2.27 0.203925 0.177792 25762 151098 -1 2389 19 1791 2103 185285 40185 3.75629 3.75629 -143.49 -3.75629 0 0 787024. 2723.27 0.27 0.09 0.15 -1 -1 0.27 0.0297284 0.026101 154 94 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.09 vpr 55.19 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30812 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 17.0 MiB 1.57 1537 17347 5978 9037 2332 55.6 MiB 0.35 0.01 5.35709 -181.872 -5.35709 5.35709 0.80 0.00097305 0.000901677 0.0825041 0.0765162 40 3492 28 6.89349e+06 422815 706193. 2443.58 4.39 0.363126 0.317619 26914 176310 -1 3290 22 2569 3530 394888 79275 4.8653 4.8653 -179.92 -4.8653 0 0 926341. 3205.33 0.28 0.14 0.18 -1 -1 0.28 0.0412632 0.0361217 209 65 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.15 vpr 54.81 MiB 0.03 6900 -1 -1 1 0.04 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 16.6 MiB 1.60 1176 14295 4272 7910 2113 55.3 MiB 0.24 0.00 3.7808 -134.415 -3.7808 3.7808 0.79 0.000794063 0.000734627 0.0619106 0.0573085 34 2907 49 6.89349e+06 324158 618332. 2139.56 2.01 0.258159 0.225882 25762 151098 -1 2422 22 1986 2851 281439 59899 3.20196 3.20196 -131.664 -3.20196 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0335459 0.029337 156 34 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.30 vpr 54.67 MiB 0.05 6808 -1 -1 1 0.03 -1 -1 30160 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 16.4 MiB 0.99 932 11809 3108 7963 738 55.0 MiB 0.17 0.00 4.33203 -134.423 -4.33203 4.33203 0.79 0.000672331 0.000622753 0.0393397 0.036368 34 2068 25 6.89349e+06 451003 618332. 2139.56 1.63 0.16526 0.144255 25762 151098 -1 1701 15 905 1471 107118 24626 3.33535 3.33535 -123.792 -3.33535 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0211189 0.0185564 129 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.77 vpr 55.70 MiB 0.05 7376 -1 -1 1 0.04 -1 -1 30788 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 17.5 MiB 1.58 1787 18111 5206 10704 2201 55.8 MiB 0.36 0.01 5.73258 -193.193 -5.73258 5.73258 0.78 0.00104029 0.000964289 0.0861021 0.079796 36 4118 48 6.89349e+06 493284 648988. 2245.63 2.99 0.345049 0.303456 26050 158493 -1 3418 20 2804 3462 325135 67797 5.21313 5.21313 -189.443 -5.21313 0 0 828058. 2865.25 0.29 0.13 0.15 -1 -1 0.29 0.0428787 0.0377791 239 127 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.18 vpr 54.98 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 16.7 MiB 1.18 1091 13143 3864 7923 1356 55.4 MiB 0.22 0.00 4.41749 -154.465 -4.41749 4.41749 0.82 0.00080795 0.000747912 0.0583531 0.0540568 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.78 0.223408 0.195864 25762 151098 -1 2351 20 2110 2852 281849 57752 3.8948 3.8948 -150.219 -3.8948 0 0 787024. 2723.27 0.26 0.11 0.15 -1 -1 0.26 0.0323976 0.0284491 159 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.90 vpr 54.45 MiB 0.03 6800 -1 -1 1 0.03 -1 -1 30240 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.2 MiB 0.53 849 10087 2557 6780 750 54.8 MiB 0.15 0.00 3.73565 -131.011 -3.73565 3.73565 0.79 0.00066954 0.000619693 0.0325369 0.0301061 30 2145 37 6.89349e+06 465097 556674. 1926.21 1.10 0.12813 0.112239 25186 138497 -1 1790 17 1066 1721 123895 26365 2.88186 2.88186 -122.82 -2.88186 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0223293 0.0194869 123 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 8.76 vpr 55.07 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30664 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 17.1 MiB 1.77 1275 12273 3390 7733 1150 55.8 MiB 0.24 0.01 5.39711 -179.414 -5.39711 5.39711 0.81 0.000937253 0.000868491 0.0577126 0.0535497 36 3338 23 6.89349e+06 408721 648988. 2245.63 4.39 0.358994 0.31279 26050 158493 -1 2845 20 2352 3565 345882 68008 4.6679 4.6679 -175.907 -4.6679 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0354996 0.0310703 194 34 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.00 vpr 54.58 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 0.71 787 10056 2193 7590 273 54.8 MiB 0.15 0.00 3.8468 -135.678 -3.8468 3.8468 0.80 0.000668711 0.000618995 0.0410501 0.0379958 34 2238 23 6.89349e+06 225501 618332. 2139.56 1.67 0.178954 0.156312 25762 151098 -1 1877 18 1328 2065 190837 40411 3.36591 3.36591 -135.858 -3.36591 0 0 787024. 2723.27 0.26 0.08 0.15 -1 -1 0.26 0.0238708 0.0208721 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.02 vpr 54.47 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30204 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.4 MiB 1.04 801 8131 1824 5536 771 54.9 MiB 0.11 0.00 3.71635 -120.03 -3.71635 3.71635 0.79 0.000677156 0.000627384 0.03361 0.0311811 34 2364 23 6.89349e+06 267783 618332. 2139.56 1.67 0.139735 0.122112 25762 151098 -1 1782 21 1295 1784 162485 36885 3.21091 3.21091 -120.796 -3.21091 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0273438 0.0238455 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.70 vpr 55.13 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30224 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 16.8 MiB 1.30 1254 15203 3953 9019 2231 55.6 MiB 0.24 0.00 4.1318 -129.307 -4.1318 4.1318 0.80 0.000805323 0.000745546 0.061952 0.0573051 34 2820 23 6.89349e+06 436909 618332. 2139.56 1.73 0.225083 0.197554 25762 151098 -1 2345 20 1641 2166 182248 39607 3.39955 3.39955 -126.469 -3.39955 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0310986 0.0272204 171 88 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.15 vpr 55.02 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30660 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.7 MiB 1.72 1381 16974 4929 9664 2381 55.6 MiB 0.23 0.00 5.29596 -177.687 -5.29596 5.29596 0.80 0.000849466 0.000786014 0.0749039 0.0693286 36 3494 21 6.89349e+06 366440 648988. 2245.63 2.24 0.251702 0.221914 26050 158493 -1 2820 17 1901 2735 261577 53957 5.07405 5.07405 -182.909 -5.07405 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0289774 0.0255119 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.78 vpr 54.94 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.8 MiB 1.46 1376 18180 6112 9250 2818 55.6 MiB 0.31 0.01 5.13064 -174.448 -5.13064 5.13064 0.81 0.000844575 0.000781513 0.0782894 0.0723533 34 3613 48 6.89349e+06 366440 618332. 2139.56 2.31 0.279929 0.246247 25762 151098 -1 2866 21 2253 3201 304840 63244 4.63885 4.63885 -176.025 -4.63885 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0340216 0.0297722 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.98 vpr 54.67 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 16.6 MiB 0.99 1013 14221 3579 9597 1045 55.3 MiB 0.10 0.00 4.30029 -147.314 -4.30029 4.30029 0.65 0.000313192 0.000285851 0.0256207 0.0234039 34 2732 24 6.89349e+06 295971 618332. 2139.56 1.24 0.0973834 0.0843939 25762 151098 -1 2015 19 1406 1593 133316 30393 3.3494 3.3494 -133.253 -3.3494 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0271138 0.0239084 141 65 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.38 vpr 55.00 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30472 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 16.8 MiB 1.46 1168 10501 2617 6825 1059 55.4 MiB 0.17 0.00 4.23729 -139.76 -4.23729 4.23729 0.81 0.000741932 0.000685119 0.0442151 0.0408761 34 2803 22 6.89349e+06 310065 618332. 2139.56 1.73 0.193109 0.168383 25762 151098 -1 2315 18 1381 1746 171701 35037 3.5783 3.5783 -133.622 -3.5783 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0260931 0.0227903 146 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.81 vpr 54.94 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30208 -1 -1 29 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 16.6 MiB 1.65 1158 18043 5948 9235 2860 55.4 MiB 0.27 0.00 3.9471 -130.183 -3.9471 3.9471 0.79 0.00079211 0.000733719 0.0727873 0.067425 36 2674 16 6.89349e+06 408721 648988. 2245.63 2.04 0.227186 0.200362 26050 158493 -1 2244 18 1420 2011 166835 35003 3.21861 3.21861 -122.147 -3.21861 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0285909 0.0250509 164 60 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.54 vpr 54.56 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30356 -1 -1 27 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 16.3 MiB 1.19 970 11031 2869 6600 1562 55.1 MiB 0.17 0.00 4.51585 -132.654 -4.51585 4.51585 0.80 0.000727225 0.000673316 0.0462838 0.0428424 30 2481 29 6.89349e+06 380534 556674. 1926.21 1.25 0.144123 0.127078 25186 138497 -1 1987 20 1339 2052 152088 33944 3.78146 3.78146 -130.249 -3.78146 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0280685 0.0245258 145 34 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.37 vpr 54.72 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30064 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 16.5 MiB 1.69 1087 9083 2557 5800 726 55.4 MiB 0.15 0.00 4.36859 -139.508 -4.36859 4.36859 0.80 0.00071728 0.000664514 0.0379618 0.0351545 38 2342 21 6.89349e+06 295971 678818. 2348.85 4.18 0.227315 0.197126 26626 170182 -1 2087 21 1472 2123 172136 36029 3.80594 3.80594 -138.667 -3.80594 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.02822 0.0246435 136 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 7.28 vpr 55.04 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 16.7 MiB 1.50 1180 8827 2269 5871 687 55.5 MiB 0.16 0.00 3.8008 -130.21 -3.8008 3.8008 0.79 0.000759615 0.000702314 0.0387448 0.0358405 36 2716 22 6.89349e+06 295971 648988. 2245.63 3.78 0.248583 0.21537 26050 158493 -1 2232 19 1513 1775 147110 31963 3.11881 3.11881 -119.74 -3.11881 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0278857 0.0244384 150 91 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.73 vpr 54.75 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30128 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 16.3 MiB 0.65 1032 15180 4497 8229 2454 55.2 MiB 0.22 0.01 4.35445 -144.691 -4.35445 4.35445 0.79 0.00075211 0.000695862 0.051594 0.0477368 28 3008 36 6.89349e+06 521472 531479. 1839.03 1.92 0.164051 0.14459 24610 126494 -1 2392 22 1777 2806 285610 57698 3.9346 3.9346 -143.906 -3.9346 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0315469 0.0275487 151 4 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.73 vpr 55.18 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 16.8 MiB 1.20 1263 12351 3110 8140 1101 55.6 MiB 0.22 0.00 4.78058 -162.367 -4.78058 4.78058 0.79 0.000846384 0.000783323 0.0551508 0.0510741 34 3399 34 6.89349e+06 366440 618332. 2139.56 1.83 0.235465 0.206152 25762 151098 -1 2706 18 1885 2496 205287 45812 4.02319 4.02319 -158.993 -4.02319 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.029901 0.0262509 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.34 vpr 55.03 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 16.8 MiB 1.43 1405 10743 3107 6650 986 55.6 MiB 0.19 0.01 4.9601 -169.723 -4.9601 4.9601 0.85 0.00072214 0.000662852 0.0434381 0.04006 36 3325 24 6.89349e+06 366440 648988. 2245.63 2.77 0.225541 0.197685 26050 158493 -1 2749 22 2484 3506 327366 66012 4.46955 4.46955 -169.261 -4.46955 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.0366716 0.0320275 171 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.69 vpr 55.26 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1306 10087 2279 7315 493 55.6 MiB 0.19 0.01 4.3224 -145.723 -4.3224 4.3224 0.80 0.000838243 0.000774364 0.0439133 0.0406392 34 3934 28 6.89349e+06 380534 618332. 2139.56 2.27 0.222369 0.194278 25762 151098 -1 2951 21 2029 2952 296662 60214 3.78825 3.78825 -144.975 -3.78825 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0344469 0.0301628 172 65 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.52 vpr 54.49 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.4 MiB 1.47 814 9181 2458 5686 1037 55.0 MiB 0.14 0.00 3.809 -121.257 -3.809 3.809 0.78 0.000668802 0.0006187 0.0371503 0.034396 34 2348 26 6.89349e+06 267783 618332. 2139.56 1.61 0.172526 0.15024 25762 151098 -1 1926 17 1215 1701 148054 32425 3.21081 3.21081 -123.009 -3.21081 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0228253 0.0199768 122 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.36 vpr 55.22 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30408 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 16.6 MiB 2.04 1287 12568 3293 7724 1551 55.4 MiB 0.21 0.00 5.05854 -160.711 -5.05854 5.05854 0.80 0.000804698 0.00074441 0.0547062 0.0506675 34 3197 46 6.89349e+06 366440 618332. 2139.56 2.14 0.247863 0.21645 25762 151098 -1 2658 21 2057 2844 305752 60544 4.59485 4.59485 -165.774 -4.59485 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0331666 0.0290587 165 63 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.39 vpr 54.99 MiB 0.05 7320 -1 -1 1 0.03 -1 -1 30812 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 17.0 MiB 1.10 1479 11383 3062 7492 829 55.8 MiB 0.21 0.01 4.57601 -155.587 -4.57601 4.57601 0.79 0.000940623 0.000871984 0.0534543 0.0495757 34 3886 33 6.89349e+06 422815 618332. 2139.56 2.08 0.219973 0.192644 25762 151098 -1 3027 19 1951 2004 192662 42165 4.26295 4.26295 -162.459 -4.26295 0 0 787024. 2723.27 0.25 0.09 0.16 -1 -1 0.25 0.0340486 0.0297575 204 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.55 vpr 54.82 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30252 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 17.0 MiB 1.41 1301 16445 5093 9336 2016 55.6 MiB 0.28 0.01 5.17904 -171.173 -5.17904 5.17904 0.78 0.000859857 0.000795269 0.0715531 0.0661694 34 3498 49 6.89349e+06 408721 618332. 2139.56 2.27 0.254741 0.223558 25762 151098 -1 2699 19 2082 2598 213053 46293 4.54965 4.54965 -166.671 -4.54965 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0324483 0.0285074 186 94 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.55 vpr 55.13 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30380 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 16.8 MiB 1.83 1252 12351 3368 8179 804 55.7 MiB 0.22 0.01 4.25135 -136.296 -4.25135 4.25135 0.80 0.000827328 0.000765293 0.0531707 0.049187 36 3049 24 6.89349e+06 394628 648988. 2245.63 4.05 0.29254 0.254391 26050 158493 -1 2522 21 1966 2807 250416 53606 3.89165 3.89165 -138.409 -3.89165 0 0 828058. 2865.25 0.27 0.10 0.16 -1 -1 0.27 0.0324896 0.028651 175 92 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.66 vpr 55.11 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30396 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1349 14160 4180 8412 1568 55.7 MiB 0.25 0.01 5.11687 -171.214 -5.11687 5.11687 0.81 0.000850896 0.0007876 0.0627777 0.0580837 34 3509 33 6.89349e+06 366440 618332. 2139.56 2.53 0.253648 0.222461 25762 151098 -1 2815 22 2450 3498 334320 66324 4.55265 4.55265 -173.997 -4.55265 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0352939 0.030907 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.68 vpr 55.32 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30132 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 16.7 MiB 1.87 1337 17431 5595 9274 2562 55.6 MiB 0.27 0.00 4.49555 -136.793 -4.49555 4.49555 0.86 0.000797771 0.000737507 0.0706665 0.0653622 34 3084 22 6.89349e+06 422815 618332. 2139.56 1.87 0.229936 0.201978 25762 151098 -1 2573 22 1699 2439 269215 77632 3.6655 3.6655 -128.202 -3.6655 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0338844 0.0296019 170 88 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.46 vpr 54.39 MiB 0.05 6740 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.2 MiB 0.47 851 10744 3065 7267 412 54.7 MiB 0.16 0.00 3.7888 -133.854 -3.7888 3.7888 0.78 0.000664755 0.000615277 0.0437347 0.0405038 34 2303 19 6.89349e+06 225501 618332. 2139.56 1.59 0.171491 0.150032 25762 151098 -1 1875 22 1383 2259 198659 43008 3.17461 3.17461 -133.102 -3.17461 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0279266 0.0243531 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.00 vpr 55.11 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30260 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 16.7 MiB 1.36 1266 16411 5685 8276 2450 55.5 MiB 0.28 0.00 5.17997 -174.972 -5.17997 5.17997 0.79 0.000846753 0.000782926 0.0711891 0.0658562 34 4061 33 6.89349e+06 380534 618332. 2139.56 2.49 0.261449 0.229881 25762 151098 -1 2843 23 2561 3505 347098 72064 4.80838 4.80838 -169.412 -4.80838 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0378134 0.0331451 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.39 vpr 55.32 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 16.6 MiB 2.28 1294 9791 2343 6863 585 55.4 MiB 0.19 0.00 5.01095 -168.663 -5.01095 5.01095 0.79 0.00084652 0.000782738 0.044609 0.0412823 34 4015 26 6.89349e+06 352346 618332. 2139.56 2.23 0.198684 0.174046 25762 151098 -1 3070 19 2361 3295 385436 74721 4.64369 4.64369 -175.083 -4.64369 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0316261 0.0277952 176 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 8.61 vpr 54.50 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30260 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 16.4 MiB 1.42 971 13043 4021 6975 2047 55.2 MiB 0.18 0.00 3.51612 -116.281 -3.51612 3.51612 0.80 0.000689965 0.000637907 0.0522083 0.0483054 34 2444 25 6.89349e+06 267783 618332. 2139.56 1.67 0.192976 0.168789 25762 151098 -1 1981 21 1089 1354 142020 29449 2.8425 2.8425 -109.803 -2.8425 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0280572 0.02438 128 55 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.43 vpr 54.61 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30392 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 16.3 MiB 0.65 734 11604 2641 7381 1582 54.7 MiB 0.16 0.00 3.8218 -128.161 -3.8218 3.8218 0.81 0.000649276 0.000600688 0.0457452 0.0423632 32 2297 21 6.89349e+06 239595 586450. 2029.24 1.13 0.120701 0.107026 25474 144626 -1 1870 20 1329 2112 204763 44912 3.24681 3.24681 -128.647 -3.24681 0 0 744469. 2576.02 0.24 0.09 0.14 -1 -1 0.24 0.0257247 0.0224711 112 4 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.76 vpr 54.95 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30252 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 16.7 MiB 1.26 1234 14147 4178 8444 1525 55.5 MiB 0.23 0.00 4.31849 -141.833 -4.31849 4.31849 0.78 0.000806548 0.000746166 0.0601283 0.0556437 34 2949 32 6.89349e+06 352346 618332. 2139.56 1.86 0.222937 0.195605 25762 151098 -1 2362 26 1673 2115 256666 68253 3.8146 3.8146 -142.771 -3.8146 0 0 787024. 2723.27 0.26 0.11 0.15 -1 -1 0.26 0.0380105 0.033226 158 59 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.79 vpr 55.13 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30284 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 16.8 MiB 1.39 1314 10341 2747 6842 752 55.6 MiB 0.20 0.01 5.10864 -160.907 -5.10864 5.10864 0.80 0.000839966 0.000776352 0.0462107 0.0426921 34 3359 28 6.89349e+06 366440 618332. 2139.56 2.04 0.223558 0.195307 25762 151098 -1 2652 20 1871 2249 217061 46097 4.49045 4.49045 -159.834 -4.49045 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0325973 0.0285751 170 88 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 11.07 vpr 55.01 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30524 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 16.8 MiB 0.71 1292 15419 3797 10101 1521 55.6 MiB 0.25 0.01 4.85078 -164.688 -4.85078 4.85078 0.79 0.000868602 0.000804765 0.0571454 0.0528126 34 3344 31 6.89349e+06 577847 618332. 2139.56 2.41 0.250354 0.220182 25762 151098 -1 2706 22 2017 3264 290736 61788 4.57459 4.57459 -168.113 -4.57459 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.035791 0.0314082 183 3 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.26 vpr 54.92 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30416 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 16.6 MiB 1.56 1124 9395 2323 6078 994 55.4 MiB 0.16 0.00 3.8961 -125.22 -3.8961 3.8961 0.79 0.000783993 0.00072599 0.0398069 0.0368728 34 2608 30 6.89349e+06 380534 618332. 2139.56 1.70 0.205122 0.178431 25762 151098 -1 2170 18 1582 2251 195239 41667 3.15261 3.15261 -121.154 -3.15261 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0283546 0.0248763 160 59 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.31 vpr 54.62 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30448 -1 -1 22 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 16.3 MiB 1.07 915 13031 5095 6351 1585 54.9 MiB 0.16 0.00 4.34539 -126.288 -4.34539 4.34539 0.85 0.000457937 0.000415713 0.0446784 0.0412189 34 2080 22 6.89349e+06 310065 618332. 2139.56 1.61 0.169087 0.147422 25762 151098 -1 1772 16 1085 1549 150890 30808 3.6703 3.6703 -125.114 -3.6703 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0200039 0.0174762 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.17 vpr 55.59 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30420 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 17.2 MiB 1.55 1748 16302 4126 10044 2132 56.1 MiB 0.34 0.01 5.09354 -170.611 -5.09354 5.09354 0.80 0.000996092 0.000922751 0.0778217 0.0721254 34 4402 48 6.89349e+06 451003 618332. 2139.56 2.50 0.322039 0.281706 25762 151098 -1 3508 22 2585 3669 343037 71730 4.44325 4.44325 -166.851 -4.44325 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0226989 0.0200629 219 95 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.01 vpr 55.07 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 30368 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1467 12661 2948 8528 1185 55.9 MiB 0.23 0.01 5.14784 -166.315 -5.14784 5.14784 0.80 0.00091666 0.00084851 0.0574211 0.0532073 34 3712 49 6.89349e+06 436909 618332. 2139.56 2.09 0.242241 0.211874 25762 151098 -1 2946 21 2233 2583 234439 50015 4.57455 4.57455 -167.42 -4.57455 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0365566 0.0319742 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.87 vpr 54.89 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 16.7 MiB 1.89 1133 9914 2313 7132 469 55.5 MiB 0.16 0.00 4.28535 -139.234 -4.28535 4.28535 0.79 0.00074922 0.000691955 0.0422017 0.0390278 34 2977 23 6.89349e+06 310065 618332. 2139.56 1.76 0.194232 0.169348 25762 151098 -1 2380 20 1560 1805 189048 39047 3.5891 3.5891 -135.452 -3.5891 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0286854 0.0250445 150 89 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.06 vpr 54.89 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30176 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 16.6 MiB 1.64 1114 12951 3612 7720 1619 55.3 MiB 0.24 0.00 4.53785 -150.754 -4.53785 4.53785 0.85 0.000786956 0.000728586 0.0598386 0.0553851 34 2710 25 6.89349e+06 324158 618332. 2139.56 1.75 0.226558 0.198888 25762 151098 -1 2246 21 1441 2064 174635 41141 3.97086 3.97086 -148.232 -3.97086 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0330445 0.0289521 151 34 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 6.64 vpr 55.12 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30532 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 17.0 MiB 1.38 1475 19413 5609 11709 2095 55.6 MiB 0.34 0.01 4.64537 -154.979 -4.64537 4.64537 0.79 0.000933219 0.000856129 0.0886785 0.0820322 34 3531 23 6.89349e+06 422815 618332. 2139.56 2.09 0.278261 0.244853 25762 151098 -1 2771 19 2085 2846 264065 53778 4.04596 4.04596 -152.134 -4.04596 0 0 787024. 2723.27 0.28 0.11 0.15 -1 -1 0.28 0.0391704 0.0349601 193 64 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.68 vpr 54.74 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30288 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 16.7 MiB 1.61 1223 16773 5429 8542 2802 55.5 MiB 0.26 0.00 4.28025 -135.791 -4.28025 4.28025 0.79 0.000782572 0.000723234 0.0681386 0.0630549 36 2785 20 6.89349e+06 394628 648988. 2245.63 1.99 0.229426 0.201903 26050 158493 -1 2364 18 1465 2272 195212 39751 3.6611 3.6611 -134.254 -3.6611 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0282352 0.0247773 162 61 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.78 vpr 55.05 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30360 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 16.8 MiB 1.32 1373 17066 5393 8866 2807 55.7 MiB 0.32 0.01 5.03124 -168.563 -5.03124 5.03124 0.80 0.00084608 0.000782935 0.0741536 0.0685725 34 3519 30 6.89349e+06 394628 618332. 2139.56 2.21 0.258692 0.227396 25762 151098 -1 2722 21 2081 2842 299132 59932 4.28315 4.28315 -158.84 -4.28315 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0344183 0.0301409 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.95 vpr 55.32 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 16.7 MiB 1.78 1418 13147 3928 7969 1250 55.6 MiB 0.23 0.00 3.78872 -134.171 -3.78872 3.78872 0.79 0.000844552 0.000780304 0.0576 0.0533144 34 3355 23 6.89349e+06 380534 618332. 2139.56 1.89 0.230702 0.202282 25762 151098 -1 2832 22 2160 2944 280190 58885 3.17981 3.17981 -133.721 -3.17981 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0358881 0.0314301 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.87 vpr 54.50 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 16.3 MiB 1.14 802 14322 5252 6511 2559 54.9 MiB 0.18 0.00 3.809 -119.785 -3.809 3.809 0.79 0.000653998 0.000604903 0.0552394 0.0508633 34 2039 20 6.89349e+06 295971 618332. 2139.56 1.57 0.181929 0.159228 25762 151098 -1 1734 18 1378 1799 177816 35993 3.12481 3.12481 -115.748 -3.12481 0 0 787024. 2723.27 0.29 0.07 0.12 -1 -1 0.29 0.0204627 0.0181183 118 34 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.28 vpr 54.80 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 29940 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 16.7 MiB 1.04 1059 7038 1561 5080 397 55.4 MiB 0.13 0.00 4.31213 -129.707 -4.31213 4.31213 0.79 0.000718023 0.000664389 0.0296983 0.0274594 34 2688 48 6.89349e+06 281877 618332. 2139.56 2.07 0.209268 0.181413 25762 151098 -1 2144 19 1351 1641 133763 30853 3.90915 3.90915 -130.083 -3.90915 0 0 787024. 2723.27 0.28 0.09 0.15 -1 -1 0.28 0.0323972 0.0283456 136 82 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.73 vpr 54.85 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30232 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 16.6 MiB 1.18 1144 15255 6301 7544 1410 55.3 MiB 0.23 0.00 4.60015 -151.135 -4.60015 4.60015 0.79 0.000785758 0.000727094 0.0654354 0.0606132 34 3190 33 6.89349e+06 338252 618332. 2139.56 2.05 0.210247 0.185356 25762 151098 -1 2239 19 1844 2733 251452 52853 3.97076 3.97076 -149.336 -3.97076 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.02987 0.0262116 154 34 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.13 vpr 54.57 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30256 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 16.2 MiB 1.08 955 13610 4945 6467 2198 54.8 MiB 0.18 0.00 3.4839 -106.878 -3.4839 3.4839 0.80 0.000652783 0.000603809 0.0529215 0.0489908 34 2268 20 6.89349e+06 295971 618332. 2139.56 1.54 0.179953 0.15735 25762 151098 -1 1919 19 1310 1518 142462 30697 2.92026 2.92026 -107.338 -2.92026 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0245668 0.0214127 123 56 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.63 vpr 54.68 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30172 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 16.4 MiB 1.58 1000 12186 3922 6390 1874 55.0 MiB 0.18 0.00 3.839 -135.657 -3.839 3.839 0.98 0.000774236 0.000716876 0.0502044 0.0464219 34 2640 18 6.89349e+06 253689 618332. 2139.56 1.84 0.191735 0.167863 25762 151098 -1 2213 19 1673 2318 259352 50229 3.14671 3.14671 -131.475 -3.14671 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0258503 0.0225735 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.35 vpr 54.90 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30236 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 16.8 MiB 1.50 1201 16773 5048 9300 2425 55.6 MiB 0.25 0.00 4.20938 -143.511 -4.20938 4.20938 0.81 0.000546546 0.000495866 0.0642467 0.0591878 36 2839 20 6.89349e+06 380534 648988. 2245.63 2.07 0.22611 0.198686 26050 158493 -1 2455 20 1991 2822 283713 57574 3.5954 3.5954 -142.131 -3.5954 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0318814 0.0279405 164 64 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.00 vpr 54.66 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30268 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 16.3 MiB 1.26 877 7953 1966 5579 408 54.9 MiB 0.12 0.00 3.31212 -108.619 -3.31212 3.31212 0.80 0.000685571 0.00063485 0.0319746 0.0296219 34 2313 21 6.89349e+06 295971 618332. 2139.56 1.61 0.165755 0.144083 25762 151098 -1 1934 14 1112 1375 116562 25693 2.88726 2.88726 -110.203 -2.88726 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0199957 0.0175619 125 55 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.78 vpr 54.93 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30316 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 16.7 MiB 1.44 1287 17711 6388 9306 2017 55.5 MiB 0.29 0.01 4.20729 -140.905 -4.20729 4.20729 0.79 0.000803871 0.000743985 0.0743887 0.0687333 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.72 0.239539 0.211031 25762 151098 -1 2529 17 1415 2007 217239 42638 3.6814 3.6814 -137.46 -3.6814 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0273898 0.0240658 162 65 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.31 vpr 55.02 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30332 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 17.1 MiB 1.74 1441 16921 4862 9627 2432 55.8 MiB 0.30 0.01 5.00842 -163.951 -5.00842 5.00842 0.81 0.000854459 0.0007903 0.0712186 0.0658401 36 3323 22 6.89349e+06 436909 648988. 2245.63 2.36 0.239388 0.210405 26050 158493 -1 2930 21 2238 3214 312910 63029 4.23384 4.23384 -159.107 -4.23384 0 0 828058. 2865.25 0.25 0.09 0.10 -1 -1 0.25 0.0232806 0.0205871 185 93 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 7.05 vpr 54.91 MiB 0.05 6816 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 16.5 MiB 2.25 1150 11245 3095 6987 1163 55.4 MiB 0.17 0.00 3.53115 -123.245 -3.53115 3.53115 0.79 0.000727368 0.000672815 0.0462396 0.0427911 34 2954 36 6.89349e+06 295971 618332. 2139.56 2.04 0.208444 0.182013 25762 151098 -1 2384 20 1527 2113 189701 39339 2.98341 2.98341 -122.792 -2.98341 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0277135 0.0242062 137 61 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.04 vpr 54.78 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30048 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 16.6 MiB 1.12 1121 13443 3684 8167 1592 55.3 MiB 0.21 0.00 3.817 -131.483 -3.817 3.817 0.79 0.000736464 0.000681294 0.0564461 0.0522191 34 2918 33 6.89349e+06 281877 618332. 2139.56 1.88 0.214871 0.188095 25762 151098 -1 2375 19 1471 1757 175873 36845 3.22686 3.22686 -129.372 -3.22686 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0285112 0.0250415 139 63 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.39 vpr 54.90 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30576 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 16.8 MiB 1.25 1272 13147 3375 7731 2041 55.7 MiB 0.21 0.00 4.61515 -160.202 -4.61515 4.61515 0.79 0.000836462 0.00077366 0.056704 0.0524976 36 3050 22 6.89349e+06 380534 648988. 2245.63 2.04 0.226919 0.198878 26050 158493 -1 2591 15 1738 2111 219335 43653 4.15236 4.15236 -152.966 -4.15236 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0258936 0.0228266 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.53 vpr 54.95 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30412 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 16.6 MiB 1.41 1161 15639 4794 8641 2204 55.4 MiB 0.25 0.00 3.67945 -117.378 -3.67945 3.67945 0.79 0.000777653 0.000719971 0.0651358 0.0602749 30 2539 19 6.89349e+06 366440 556674. 1926.21 1.00 0.153717 0.136537 25186 138497 -1 2022 19 1469 1927 146494 31574 2.96516 2.96516 -115.184 -2.96516 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0292653 0.0256734 157 62 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.17 vpr 55.16 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30516 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 17.1 MiB 1.28 1517 16893 4857 9388 2648 55.9 MiB 0.29 0.00 4.97404 -168.093 -4.97404 4.97404 0.80 0.000936735 0.000868763 0.0781739 0.0724069 36 3707 47 6.89349e+06 408721 648988. 2245.63 2.40 0.306996 0.269083 26050 158493 -1 3088 21 2558 2957 322665 62271 4.54459 4.54459 -163.46 -4.54459 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0383274 0.0334944 203 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 5.04 vpr 54.43 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30136 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55900 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.0 MiB 0.52 803 5149 1186 3599 364 54.6 MiB 0.09 0.00 2.99217 -104.791 -2.99217 2.99217 0.86 0.000619776 0.000574109 0.0185946 0.0171891 30 1975 22 6.89349e+06 225501 556674. 1926.21 0.96 0.0777613 0.0678151 25186 138497 -1 1605 19 895 1455 108023 23403 2.76181 2.76181 -112.416 -2.76181 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0232423 0.0202756 104 4 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.09 vpr 55.35 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30184 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 16.8 MiB 1.41 1396 18101 5815 9868 2418 55.7 MiB 0.29 0.00 5.41163 -177.078 -5.41163 5.41163 0.79 0.000855024 0.000790489 0.0776034 0.0717652 34 3517 43 6.89349e+06 394628 618332. 2139.56 2.21 0.274815 0.241313 25762 151098 -1 2890 18 2143 2753 258620 53081 5.19854 5.19854 -181.308 -5.19854 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0308387 0.0271439 179 92 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.17 vpr 55.15 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 29940 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 16.7 MiB 1.89 1193 17248 5142 9796 2310 55.5 MiB 0.28 0.00 4.89074 -162.672 -4.89074 4.89074 0.80 0.000788181 0.000728915 0.0719334 0.0664916 34 3597 29 6.89349e+06 338252 618332. 2139.56 2.35 0.213357 0.187776 25762 151098 -1 2747 21 2521 3161 334852 68612 4.44349 4.44349 -166.285 -4.44349 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0314193 0.0274243 161 96 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.79 vpr 55.05 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30204 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 16.7 MiB 1.55 1163 10187 2742 6187 1258 55.6 MiB 0.18 0.00 3.75965 -128.904 -3.75965 3.75965 0.80 0.000852727 0.000789764 0.0459764 0.0425491 34 3023 23 6.89349e+06 352346 618332. 2139.56 1.74 0.2151 0.18816 25762 151098 -1 2468 20 1474 2042 210296 42699 3.2337 3.2337 -126.334 -3.2337 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.032481 0.0285404 170 65 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.79 vpr 55.22 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30696 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 17.1 MiB 1.50 1578 21409 7235 11132 3042 55.6 MiB 0.40 0.01 5.18464 -176.869 -5.18464 5.18464 0.80 0.00100632 0.000932021 0.102209 0.0947344 36 3737 27 6.89349e+06 465097 648988. 2245.63 3.38 0.319374 0.282022 26050 158493 -1 3165 21 2807 3319 366015 71035 4.79385 4.79385 -179.291 -4.79385 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0397814 0.0347679 224 96 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.28 vpr 54.35 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 29928 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55852 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 15.9 MiB 0.93 774 12860 4018 7384 1458 54.5 MiB 0.13 0.00 3.08706 -94.2237 -3.08706 3.08706 0.79 0.000571544 0.000528511 0.0460701 0.0426047 34 1748 21 6.89349e+06 225501 618332. 2139.56 1.39 0.157058 0.136992 25762 151098 -1 1554 14 674 692 55467 12901 2.36767 2.36767 -92.4489 -2.36767 0 0 787024. 2723.27 0.25 0.04 0.15 -1 -1 0.25 0.0166921 0.0145641 93 56 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.80 vpr 54.78 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 16.4 MiB 1.07 936 13763 4663 7110 1990 54.9 MiB 0.18 0.00 4.23979 -138.497 -4.23979 4.23979 0.78 0.000671506 0.000621367 0.0530012 0.0490822 34 2082 18 6.89349e+06 295971 618332. 2139.56 1.55 0.179793 0.157592 25762 151098 -1 1768 20 1523 2266 206901 43532 3.3262 3.3262 -130.931 -3.3262 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0262313 0.0228786 124 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.95 vpr 54.80 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 16.4 MiB 1.93 1009 8448 2021 6048 379 55.0 MiB 0.16 0.00 4.33609 -148.866 -4.33609 4.33609 0.81 0.000713272 0.000660017 0.0360537 0.0333522 36 2700 20 6.89349e+06 253689 648988. 2245.63 2.33 0.172058 0.149903 26050 158493 -1 2281 23 1769 3110 278278 57305 3.6125 3.6125 -144.261 -3.6125 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0305995 0.0266709 129 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.61 vpr 54.28 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30236 -1 -1 24 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 16.3 MiB 0.97 636 10231 2621 6138 1472 54.7 MiB 0.07 0.00 3.787 -96.2626 -3.787 3.787 0.64 0.000249119 0.000228386 0.0158162 0.0144803 34 1776 26 6.89349e+06 338252 618332. 2139.56 1.21 0.0954336 0.0819928 25762 151098 -1 1437 20 1022 1367 112324 25574 3.04631 3.04631 -94.8291 -3.04631 0 0 787024. 2723.27 0.33 0.06 0.16 -1 -1 0.33 0.0207319 0.0181139 107 34 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.38 vpr 55.13 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30452 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 16.9 MiB 2.20 1453 17273 5845 8574 2854 55.7 MiB 0.31 0.01 4.55715 -154.068 -4.55715 4.55715 0.79 0.000873846 0.00080842 0.0763702 0.0706658 36 3909 34 6.89349e+06 394628 648988. 2245.63 2.32 0.2339 0.206329 26050 158493 -1 3007 20 2568 3702 367411 72019 3.88186 3.88186 -150.304 -3.88186 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0349865 0.0306338 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.75 vpr 55.55 MiB 0.11 7136 -1 -1 1 0.20 -1 -1 30116 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 16.8 MiB 1.65 1285 13758 3623 8223 1912 55.7 MiB 0.24 0.00 4.84654 -156.987 -4.84654 4.84654 0.81 0.000855976 0.000792168 0.0614807 0.0568945 36 3253 21 6.89349e+06 380534 648988. 2245.63 4.15 0.294342 0.257181 26050 158493 -1 2736 19 2116 2884 294154 58412 4.38739 4.38739 -157.397 -4.38739 0 0 828058. 2865.25 0.23 0.06 0.10 -1 -1 0.23 0.0165076 0.0146136 183 94 29 29 93 31 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 6.87 vpr 54.79 MiB 0.05 6804 -1 -1 14 0.26 -1 -1 32864 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 16.3 MiB 0.24 1354 8532 2094 5512 926 55.0 MiB 0.12 0.00 8.19013 -165.934 -8.19013 8.19013 0.76 0.00100002 0.000923747 0.0462173 0.0426911 26 4414 46 6.55708e+06 313430 477104. 1650.88 9.70 0.341069 0.297464 21022 109990 -1 3347 26 1818 5954 716887 222783 7.3219 7.3219 -166.058 -7.3219 0 0 585099. 2024.56 0.20 0.22 0.11 -1 -1 0.20 0.0506951 0.0445178 186 186 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 6.29 vpr 54.75 MiB 0.05 6844 -1 -1 14 0.28 -1 -1 32732 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 16.3 MiB 0.39 1292 15824 4267 9033 2524 54.9 MiB 0.20 0.00 8.12966 -162.719 -8.12966 8.12966 0.75 0.000986177 0.000911375 0.0793081 0.0733438 30 3474 36 6.55708e+06 361650 526063. 1820.29 1.43 0.221611 0.196353 21886 126133 -1 2797 17 1276 3537 217978 47493 7.02804 7.02804 -154.369 -7.02804 0 0 666494. 2306.21 0.24 0.09 0.13 -1 -1 0.24 0.0366003 0.0324918 189 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.96 vpr 54.73 MiB 0.05 6836 -1 -1 11 0.19 -1 -1 32776 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1266 13157 3416 7667 2074 54.8 MiB 0.18 0.00 6.4728 -136.716 -6.4728 6.4728 0.76 0.000980773 0.000906065 0.0687418 0.0634709 44 3168 17 6.55708e+06 301375 742403. 2568.87 4.02 0.334712 0.292274 24478 177802 -1 2491 14 1076 3558 217401 46741 6.05052 6.05052 -131.63 -6.05052 0 0 937218. 3242.97 0.31 0.09 0.19 -1 -1 0.31 0.0317125 0.0282716 180 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.75 vpr 54.87 MiB 0.05 6728 -1 -1 12 0.33 -1 -1 32884 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1320 8130 2002 5291 837 54.9 MiB 0.12 0.00 7.77357 -147.192 -7.77357 7.77357 0.76 0.000995194 0.000921572 0.0441083 0.0408206 34 3670 49 6.55708e+06 349595 585099. 2024.56 3.61 0.251237 0.219937 22462 138074 -1 3152 17 1354 4287 338822 69625 6.82884 6.82884 -141.794 -6.82884 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0365993 0.0324658 185 184 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 7.93 vpr 54.95 MiB 0.05 6596 -1 -1 13 0.30 -1 -1 32884 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 16.8 MiB 0.40 1568 9951 2486 6481 984 55.6 MiB 0.15 0.00 7.68511 -161.036 -7.68511 7.68511 0.78 0.00114624 0.00106082 0.0563566 0.0521298 30 4515 42 6.55708e+06 385760 526063. 1820.29 1.99 0.229585 0.202158 21886 126133 -1 3502 28 2006 6066 507539 148279 6.97858 6.97858 -160.112 -6.97858 0 0 666494. 2306.21 0.23 0.19 0.13 -1 -1 0.23 0.0606938 0.0535037 223 223 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.49 vpr 54.80 MiB 0.02 6704 -1 -1 12 0.27 -1 -1 32768 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 16.4 MiB 0.41 1500 9773 2280 6498 995 55.3 MiB 0.14 0.00 7.53766 -152.093 -7.53766 7.53766 0.76 0.00106414 0.000984934 0.0504019 0.046653 36 3615 22 6.55708e+06 409870 612192. 2118.31 2.41 0.261051 0.228543 22750 144809 -1 3267 15 1282 4038 250204 54786 6.91184 6.91184 -150.725 -6.91184 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0354206 0.0315529 209 205 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.72 vpr 54.31 MiB 0.02 6644 -1 -1 12 0.18 -1 -1 32336 -1 -1 27 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55644 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 15.9 MiB 0.27 1024 5945 1385 4013 547 54.3 MiB 0.08 0.00 7.15274 -128.455 -7.15274 7.15274 0.75 0.000773965 0.000716254 0.0271025 0.0251036 28 2881 21 6.55708e+06 325485 500653. 1732.36 1.87 0.122127 0.107393 21310 115450 -1 2502 18 1060 3101 253804 71376 6.17638 6.17638 -123.112 -6.17638 0 0 612192. 2118.31 0.22 0.10 0.12 -1 -1 0.22 0.0291859 0.0258025 136 131 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 7.64 vpr 54.38 MiB 0.05 6656 -1 -1 11 0.18 -1 -1 32780 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56144 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 16.1 MiB 0.24 1220 9679 2547 5973 1159 54.8 MiB 0.13 0.00 6.45772 -132.139 -6.45772 6.45772 0.82 0.000926617 0.000856329 0.0476513 0.0440313 34 3233 33 6.55708e+06 337540 585099. 2024.56 2.31 0.205471 0.180307 22462 138074 -1 2692 15 1079 3432 234109 49429 5.57232 5.57232 -126.898 -5.57232 0 0 742403. 2568.87 0.25 0.09 0.14 -1 -1 0.25 0.0393717 0.035798 175 173 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.80 vpr 54.43 MiB 0.04 6544 -1 -1 12 0.17 -1 -1 32416 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 15.8 MiB 0.31 1146 12373 3633 6385 2355 54.4 MiB 0.14 0.00 7.00181 -148.703 -7.00181 7.00181 0.80 0.000568854 0.000515575 0.0485396 0.0444966 28 3444 25 6.55708e+06 301375 500653. 1732.36 2.22 0.157985 0.139694 21310 115450 -1 2797 15 1163 2905 215229 47266 6.33838 6.33838 -146.417 -6.33838 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.027689 0.0246011 145 143 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.63 vpr 54.41 MiB 0.04 6612 -1 -1 13 0.19 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 15.9 MiB 0.38 1098 10979 3065 6306 1608 54.5 MiB 0.14 0.00 7.23855 -159.771 -7.23855 7.23855 0.76 0.000894632 0.000826378 0.0521152 0.0479983 30 2916 16 6.55708e+06 301375 526063. 1820.29 1.22 0.151243 0.134162 21886 126133 -1 2360 15 1075 2940 169623 37663 6.18864 6.18864 -150.63 -6.18864 0 0 666494. 2306.21 0.28 0.07 0.14 -1 -1 0.28 0.0304653 0.0272298 162 159 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.76 vpr 54.22 MiB 0.04 6660 -1 -1 12 0.17 -1 -1 32776 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55608 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1073 8868 2309 4974 1585 54.3 MiB 0.10 0.00 7.23424 -146.32 -7.23424 7.23424 0.76 0.000765756 0.000705988 0.0400355 0.0369945 28 2738 31 6.55708e+06 265210 500653. 1732.36 1.38 0.14555 0.128077 21310 115450 -1 2373 18 973 2394 150083 34124 6.47024 6.47024 -142.379 -6.47024 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0290848 0.0257024 132 129 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.40 vpr 54.35 MiB 0.04 6588 -1 -1 12 0.14 -1 -1 32704 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55680 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 15.9 MiB 0.18 971 12175 3572 6038 2565 54.4 MiB 0.14 0.00 6.75009 -143.946 -6.75009 6.75009 0.76 0.000786491 0.000725911 0.0542998 0.0500628 34 2732 30 6.55708e+06 253155 585099. 2024.56 2.16 0.188102 0.165319 22462 138074 -1 2388 16 1037 2863 193037 44084 5.82038 5.82038 -140.579 -5.82038 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.027928 0.0248479 138 133 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.26 vpr 54.84 MiB 0.05 6748 -1 -1 13 0.27 -1 -1 32828 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 16.3 MiB 0.32 1456 5419 862 4216 341 55.1 MiB 0.09 0.00 7.90792 -162.801 -7.90792 7.90792 0.76 0.00107976 0.000998178 0.031627 0.0292884 34 3564 45 6.55708e+06 361650 585099. 2024.56 4.26 0.374194 0.324324 22462 138074 -1 3100 17 1282 3816 266207 55389 6.8405 6.8405 -150.939 -6.8405 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0395003 0.0350817 212 212 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 5.61 vpr 55.17 MiB 0.05 6708 -1 -1 14 0.31 -1 -1 33160 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 16.4 MiB 0.41 1487 7653 1685 5037 931 55.1 MiB 0.06 0.00 8.67599 -179.222 -8.67599 8.67599 0.62 0.000470579 0.00042963 0.0204128 0.0187189 36 3607 25 6.55708e+06 349595 612192. 2118.31 3.60 0.259198 0.224328 22750 144809 -1 3055 20 1304 3614 228238 49938 7.61881 7.61881 -167.089 -7.61881 0 0 782063. 2706.10 0.25 0.11 0.15 -1 -1 0.25 0.0447731 0.0396436 208 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 9.18 vpr 54.42 MiB 0.04 6540 -1 -1 11 0.17 -1 -1 32412 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 16.0 MiB 0.21 1095 15366 4454 8585 2327 54.6 MiB 0.17 0.00 6.42654 -129.9 -6.42654 6.42654 0.78 0.000824642 0.000761324 0.0672335 0.0620723 38 2530 16 6.55708e+06 349595 638502. 2209.35 3.93 0.273701 0.240023 23326 155178 -1 2215 14 872 2569 165338 34492 5.60952 5.60952 -121.963 -5.60952 0 0 851065. 2944.86 0.27 0.07 0.15 -1 -1 0.27 0.0262331 0.0233604 160 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.11 vpr 54.87 MiB 0.05 6828 -1 -1 12 0.27 -1 -1 32940 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 16.4 MiB 0.49 1497 7523 1547 5261 715 55.0 MiB 0.07 0.00 7.78498 -159.33 -7.78498 7.78498 0.63 0.000486568 0.000440871 0.0204115 0.0186472 44 3737 30 6.55708e+06 409870 742403. 2568.87 4.06 0.298043 0.258169 24478 177802 -1 2921 16 1109 3556 249234 49730 6.83084 6.83084 -148.474 -6.83084 0 0 937218. 3242.97 0.31 0.10 0.18 -1 -1 0.31 0.0385864 0.03438 213 212 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 12.61 vpr 54.74 MiB 0.02 6780 -1 -1 13 0.27 -1 -1 32752 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1448 9075 2050 5697 1328 55.2 MiB 0.14 0.00 8.28129 -168.719 -8.28129 8.28129 0.77 0.00109539 0.00101215 0.0500333 0.0462557 30 3614 28 6.55708e+06 385760 526063. 1820.29 1.56 0.19771 0.174447 21886 126133 -1 2873 15 1253 3756 200422 44906 7.0769 7.0769 -159.042 -7.0769 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0372825 0.0332644 217 217 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.64 vpr 54.44 MiB 0.02 6536 -1 -1 12 0.15 -1 -1 32596 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55740 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 15.9 MiB 0.53 1089 8402 1864 6112 426 54.4 MiB 0.11 0.00 7.26292 -158.375 -7.26292 7.26292 0.77 0.000831353 0.000767024 0.0398973 0.0368514 28 2902 19 6.55708e+06 265210 500653. 1732.36 1.56 0.140409 0.124107 21310 115450 -1 2466 15 1037 2818 180974 42146 6.2029 6.2029 -150.571 -6.2029 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0277489 0.0247002 139 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.22 vpr 53.88 MiB 0.04 6412 -1 -1 10 0.10 -1 -1 32140 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55404 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 15.6 MiB 0.12 786 5244 1130 3909 205 54.1 MiB 0.06 0.00 5.1986 -117.15 -5.1986 5.1986 0.76 0.000626036 0.000578848 0.021155 0.0195537 36 1939 26 6.55708e+06 241100 612192. 2118.31 3.65 0.172777 0.149007 22750 144809 -1 1664 15 668 1659 108652 24325 4.5098 4.5098 -113.181 -4.5098 0 0 782063. 2706.10 0.26 0.06 0.15 -1 -1 0.26 0.0204881 0.0180383 96 88 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.40 vpr 54.59 MiB 0.04 6560 -1 -1 13 0.16 -1 -1 32652 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55732 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 15.9 MiB 0.30 1123 5079 946 3658 475 54.4 MiB 0.07 0.00 7.44701 -156.373 -7.44701 7.44701 0.76 0.00080568 0.00074393 0.0242495 0.0224017 28 2792 17 6.55708e+06 289320 500653. 1732.36 2.76 0.206064 0.178863 21310 115450 -1 2452 27 984 2585 276753 108584 6.45598 6.45598 -148.215 -6.45598 0 0 612192. 2118.31 0.21 0.13 0.12 -1 -1 0.21 0.040396 0.0354376 139 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 9.73 vpr 55.03 MiB 0.05 6680 -1 -1 13 0.30 -1 -1 32804 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 16.3 MiB 0.33 1494 10031 2522 6626 883 55.1 MiB 0.14 0.00 7.77584 -154.394 -7.77584 7.77584 0.76 0.00106206 0.000982372 0.0536669 0.0495538 28 4154 45 6.55708e+06 373705 500653. 1732.36 2.58 0.226549 0.199557 21310 115450 -1 3600 19 1886 6145 464983 96681 6.70098 6.70098 -154.034 -6.70098 0 0 612192. 2118.31 0.23 0.15 0.12 -1 -1 0.23 0.0431619 0.0381451 208 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 9.31 vpr 55.02 MiB 0.05 6816 -1 -1 13 0.28 -1 -1 33356 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 16.5 MiB 0.41 1626 7973 1601 5735 637 55.1 MiB 0.12 0.00 7.9648 -163.763 -7.9648 7.9648 0.63 0.00105252 0.000973142 0.0419344 0.0387663 38 3853 20 6.55708e+06 409870 638502. 2209.35 5.18 0.388292 0.33748 23326 155178 -1 3261 15 1306 4444 281331 57915 6.9607 6.9607 -152.308 -6.9607 0 0 851065. 2944.86 0.27 0.11 0.15 -1 -1 0.27 0.036562 0.0326438 207 205 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.51 vpr 53.78 MiB 0.04 6412 -1 -1 9 0.09 -1 -1 32228 -1 -1 21 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55016 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 15.1 MiB 0.26 710 10557 2762 6888 907 53.7 MiB 0.09 0.00 4.66154 -94.5374 -4.66154 4.66154 0.76 0.000542789 0.000502201 0.0361466 0.0334588 28 1847 15 6.55708e+06 253155 500653. 1732.36 0.92 0.0961774 0.0849366 21310 115450 -1 1704 13 621 1618 119185 26142 4.08748 4.08748 -94.2196 -4.08748 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0159914 0.0140939 83 73 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.64 vpr 54.81 MiB 0.04 6688 -1 -1 13 0.30 -1 -1 32808 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 16.4 MiB 0.19 1530 4780 793 3650 337 55.2 MiB 0.08 0.00 7.84695 -156.636 -7.84695 7.84695 0.76 0.00106465 0.000980331 0.0289847 0.0268077 28 4145 48 6.55708e+06 361650 500653. 1732.36 4.43 0.367121 0.318253 21310 115450 -1 3393 21 1643 4526 459813 148006 6.9633 6.9633 -153.196 -6.9633 0 0 612192. 2118.31 0.21 0.16 0.12 -1 -1 0.21 0.0468508 0.0414806 211 210 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.11 vpr 53.67 MiB 0.04 6300 -1 -1 8 0.09 -1 -1 31032 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55160 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 15.3 MiB 0.19 436 8831 2193 4716 1922 53.9 MiB 0.08 0.00 4.66158 -87.3613 -4.66158 4.66158 0.76 0.000554085 0.000511264 0.0303352 0.0280553 32 1489 41 6.55708e+06 204935 554710. 1919.41 2.85 0.160899 0.139281 22174 131602 -1 1162 17 597 1146 99988 30533 4.04726 4.04726 -88.7754 -4.04726 0 0 701300. 2426.64 0.23 0.05 0.15 -1 -1 0.23 0.0184887 0.016193 77 61 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 6.11 vpr 54.62 MiB 0.04 6708 -1 -1 15 0.23 -1 -1 33148 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 16.1 MiB 0.21 1127 8999 2110 5455 1434 54.7 MiB 0.12 0.00 8.78748 -168.447 -8.78748 8.78748 0.76 0.000933302 0.000861918 0.0473116 0.0437828 34 3132 27 6.55708e+06 301375 585099. 2024.56 3.73 0.28838 0.25106 22462 138074 -1 2531 16 1109 3183 221854 47938 7.41762 7.41762 -157.157 -7.41762 0 0 742403. 2568.87 0.25 0.09 0.15 -1 -1 0.25 0.0325492 0.0288328 161 159 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.82 vpr 54.67 MiB 0.05 6732 -1 -1 12 0.25 -1 -1 32688 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 16.3 MiB 0.28 1426 7871 1871 5355 645 55.1 MiB 0.10 0.00 6.97141 -150.212 -6.97141 6.97141 0.81 0.00107882 0.000996966 0.0340801 0.0313775 30 3950 43 6.55708e+06 373705 526063. 1820.29 2.20 0.207998 0.182301 21886 126133 -1 3218 15 1425 4406 249922 54842 6.49978 6.49978 -150.502 -6.49978 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0365274 0.0325288 218 215 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.42 vpr 54.81 MiB 0.05 6812 -1 -1 13 0.27 -1 -1 32832 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1403 8993 2077 6178 738 55.0 MiB 0.17 0.00 7.73601 -160.617 -7.73601 7.73601 0.76 0.00069953 0.000639801 0.0364458 0.0333801 30 3495 43 6.55708e+06 337540 526063. 1820.29 1.81 0.207969 0.183182 21886 126133 -1 2907 17 1244 3835 223711 48943 6.6419 6.6419 -153.545 -6.6419 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0372301 0.0330581 196 195 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 7.04 vpr 54.39 MiB 0.04 6508 -1 -1 12 0.17 -1 -1 32284 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 16.0 MiB 0.22 1093 9158 2327 6239 592 54.6 MiB 0.12 0.00 6.471 -143.803 -6.471 6.471 0.76 0.000838648 0.000770763 0.0437493 0.0403369 28 2997 42 6.55708e+06 265210 500653. 1732.36 1.60 0.172614 0.151808 21310 115450 -1 2535 25 1047 2812 273709 92193 5.83566 5.83566 -140.532 -5.83566 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0404009 0.0355313 146 145 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.62 vpr 54.17 MiB 0.04 6664 -1 -1 11 0.15 -1 -1 32780 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55560 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 15.8 MiB 0.18 1045 6781 1469 4387 925 54.3 MiB 0.08 0.00 6.28146 -130.954 -6.28146 6.28146 0.78 0.000759171 0.000701752 0.024481 0.02252 28 2717 46 6.55708e+06 277265 500653. 1732.36 5.08 0.229256 0.198953 21310 115450 -1 2299 15 892 2470 164935 35783 5.68992 5.68992 -128.681 -5.68992 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.025115 0.0222606 128 125 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 6.56 vpr 54.30 MiB 0.04 6704 -1 -1 11 0.16 -1 -1 32484 -1 -1 27 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55800 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 15.9 MiB 0.24 1079 8535 1915 5707 913 54.5 MiB 0.11 0.00 6.57292 -128.193 -6.57292 6.57292 0.76 0.000791607 0.000731626 0.0384749 0.0355647 30 2833 23 6.55708e+06 325485 526063. 1820.29 1.45 0.138077 0.121772 21886 126133 -1 2357 15 1025 3000 179385 38373 5.54018 5.54018 -121.408 -5.54018 0 0 666494. 2306.21 0.23 0.09 0.12 -1 -1 0.23 0.0288456 0.025288 142 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 5.98 vpr 54.61 MiB 0.04 6520 -1 -1 12 0.19 -1 -1 32572 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 16.3 MiB 0.20 1327 6716 1263 5020 433 54.7 MiB 0.10 0.00 7.20375 -160.021 -7.20375 7.20375 0.76 0.00122989 0.00115552 0.0345822 0.0320047 28 3446 27 6.55708e+06 337540 500653. 1732.36 6.95 0.271245 0.236367 21310 115450 -1 2918 17 1234 3246 203431 46346 6.47024 6.47024 -156.89 -6.47024 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0402789 0.035247 180 179 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 5.49 vpr 54.25 MiB 0.04 6460 -1 -1 11 0.17 -1 -1 32600 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55768 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 15.9 MiB 0.25 1072 4244 722 3315 207 54.5 MiB 0.06 0.00 6.41894 -136.128 -6.41894 6.41894 0.76 0.000847583 0.00078282 0.0229788 0.0212395 28 2955 25 6.55708e+06 277265 500653. 1732.36 1.29 0.130279 0.113948 21310 115450 -1 2472 21 1309 3658 233854 54032 6.01132 6.01132 -139.086 -6.01132 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0356865 0.0314219 147 147 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 7.36 vpr 54.22 MiB 0.04 6544 -1 -1 10 0.14 -1 -1 32624 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55596 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.21 967 12733 4051 6442 2240 54.3 MiB 0.14 0.00 6.08886 -123.876 -6.08886 6.08886 0.76 0.000788136 0.000727016 0.0573799 0.0529553 32 2530 21 6.55708e+06 289320 554710. 1919.41 0.98 0.154908 0.137341 22174 131602 -1 2226 13 810 2355 168305 37054 5.30638 5.30638 -118.841 -5.30638 0 0 701300. 2426.64 0.23 0.07 0.13 -1 -1 0.23 0.0238909 0.0212788 138 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 10.20 vpr 55.06 MiB 0.03 6840 -1 -1 13 0.33 -1 -1 33220 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 16.7 MiB 0.30 1621 5869 1104 4212 553 55.3 MiB 0.10 0.00 7.46683 -155.207 -7.46683 7.46683 0.76 0.00116109 0.00107259 0.0352278 0.03257 30 4073 35 6.55708e+06 397815 526063. 1820.29 1.95 0.208238 0.182851 21886 126133 -1 3209 17 1391 4648 273815 58036 6.6419 6.6419 -148.671 -6.6419 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.042762 0.0379734 239 239 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 5.55 vpr 54.74 MiB 0.03 6668 -1 -1 13 0.36 -1 -1 32948 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 16.4 MiB 0.40 1508 8283 1888 5355 1040 55.2 MiB 0.13 0.00 8.09706 -175.077 -8.09706 8.09706 0.76 0.00107221 0.000990947 0.0465281 0.0429809 38 3523 25 6.55708e+06 349595 638502. 2209.35 4.40 0.355647 0.309078 23326 155178 -1 3029 20 1281 4361 254328 54126 7.1207 7.1207 -164.977 -7.1207 0 0 851065. 2944.86 0.27 0.11 0.15 -1 -1 0.27 0.0449457 0.039807 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.89 vpr 54.30 MiB 0.04 6580 -1 -1 12 0.15 -1 -1 32660 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55784 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 16.0 MiB 0.28 1096 12568 3446 6926 2196 54.5 MiB 0.14 0.00 6.66868 -144.132 -6.66868 6.66868 0.83 0.00062593 0.000568803 0.0481556 0.0439477 34 2970 19 6.55708e+06 301375 585099. 2024.56 2.31 0.185802 0.163511 22462 138074 -1 2513 16 1088 2991 208088 44712 5.70218 5.70218 -136.293 -5.70218 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.027974 0.0248245 150 143 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.42 vpr 55.14 MiB 0.05 6816 -1 -1 12 0.25 -1 -1 33064 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1489 8977 2020 5913 1044 55.3 MiB 0.13 0.00 8.10558 -165.766 -8.10558 8.10558 0.76 0.00107668 0.000995666 0.0479922 0.0444071 36 3633 26 6.55708e+06 409870 612192. 2118.31 3.21 0.285736 0.252051 22750 144809 -1 3170 33 1275 3966 522085 228509 7.1965 7.1965 -160.118 -7.1965 0 0 782063. 2706.10 0.26 0.21 0.15 -1 -1 0.26 0.0667581 0.0584446 219 219 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 15.45 vpr 54.83 MiB 0.05 6844 -1 -1 14 0.34 -1 -1 33192 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1460 6211 1289 4295 627 55.0 MiB 0.10 0.00 8.35283 -161.679 -8.35283 8.35283 0.76 0.001046 0.000968415 0.0361224 0.0334736 30 3670 35 6.55708e+06 337540 526063. 1820.29 1.92 0.198371 0.174935 21886 126133 -1 3039 16 1312 3757 214113 46231 7.32956 7.32956 -156.91 -7.32956 0 0 666494. 2306.21 0.24 0.10 0.15 -1 -1 0.24 0.0381854 0.0341853 194 193 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 6.77 vpr 54.66 MiB 0.05 6764 -1 -1 13 0.27 -1 -1 32816 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1364 9271 2151 5683 1437 54.9 MiB 0.13 0.00 7.40806 -157.551 -7.40806 7.40806 0.77 0.000969234 0.000893807 0.0505219 0.0466412 30 3530 22 6.55708e+06 337540 526063. 1820.29 1.25 0.16963 0.149686 21886 126133 -1 2929 17 1403 3811 222616 49243 6.37758 6.37758 -149.247 -6.37758 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0354776 0.0314817 181 180 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.84 vpr 54.77 MiB 0.05 6740 -1 -1 12 0.24 -1 -1 33080 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 16.4 MiB 0.47 1374 13743 3666 8130 1947 54.9 MiB 0.18 0.00 6.76701 -143.203 -6.76701 6.76701 0.76 0.00100541 0.000929562 0.0705037 0.0651523 34 4019 49 6.55708e+06 361650 585099. 2024.56 4.00 0.320749 0.281388 22462 138074 -1 3201 17 1352 4243 298965 63294 5.90078 5.90078 -139.937 -5.90078 0 0 742403. 2568.87 0.26 0.11 0.14 -1 -1 0.26 0.0390645 0.0347982 189 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.14 vpr 54.68 MiB 0.05 6800 -1 -1 12 0.19 -1 -1 32840 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1252 8278 1977 5044 1257 54.9 MiB 0.11 0.00 7.19338 -143.847 -7.19338 7.19338 0.76 0.00091971 0.000850985 0.0427188 0.0395209 30 2996 16 6.55708e+06 289320 526063. 1820.29 1.04 0.146507 0.129287 21886 126133 -1 2455 16 979 2839 166694 36286 6.1631 6.1631 -136.288 -6.1631 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0317326 0.0281253 172 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 9.07 vpr 55.23 MiB 0.05 7048 -1 -1 14 0.43 -1 -1 32484 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 16.7 MiB 0.33 1757 10673 2583 7118 972 55.0 MiB 0.17 0.00 8.08019 -170.094 -8.08019 8.08019 0.76 0.00122096 0.0011304 0.0615112 0.0568692 46 4041 18 6.55708e+06 409870 782063. 2706.10 4.34 0.414802 0.362222 24766 183262 -1 3418 16 1317 4886 320292 63286 7.0005 7.0005 -155.617 -7.0005 0 0 958460. 3316.47 0.31 0.12 0.18 -1 -1 0.31 0.0424092 0.0378099 245 245 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.88 vpr 54.54 MiB 0.05 6460 -1 -1 11 0.19 -1 -1 32368 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 15.9 MiB 0.22 1212 8009 2047 5116 846 54.5 MiB 0.11 0.00 6.43815 -136.573 -6.43815 6.43815 0.76 0.000894684 0.000828045 0.039847 0.0368511 30 2894 17 6.55708e+06 313430 526063. 1820.29 1.30 0.144552 0.127425 21886 126133 -1 2572 17 1181 3275 202480 42282 5.53052 5.53052 -132.73 -5.53052 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0326033 0.0288697 160 155 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.11 vpr 54.98 MiB 0.05 6768 -1 -1 13 0.26 -1 -1 32764 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 16.4 MiB 0.36 1339 4512 785 3381 346 54.9 MiB 0.08 0.00 8.23298 -156.44 -8.23298 8.23298 0.77 0.00099249 0.00090668 0.0262895 0.0243037 36 3369 26 6.55708e+06 325485 612192. 2118.31 2.98 0.232867 0.202354 22750 144809 -1 2780 16 1061 3515 219491 47004 7.0815 7.0815 -147.186 -7.0815 0 0 782063. 2706.10 0.26 0.09 0.14 -1 -1 0.26 0.0344235 0.0305808 177 177 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 7.83 vpr 54.96 MiB 0.02 6684 -1 -1 12 0.29 -1 -1 32900 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 16.7 MiB 0.41 1513 7973 1697 5548 728 55.2 MiB 0.12 0.00 7.05697 -153.444 -7.05697 7.05697 0.81 0.00111777 0.00103302 0.0440069 0.0407319 36 3827 24 6.55708e+06 409870 612192. 2118.31 4.54 0.361292 0.315098 22750 144809 -1 3326 16 1410 5196 341496 71669 6.34038 6.34038 -150.148 -6.34038 0 0 782063. 2706.10 0.24 0.12 0.09 -1 -1 0.24 0.0393003 0.0349586 227 224 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 10.79 vpr 54.75 MiB 0.05 6704 -1 -1 13 0.24 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 16.3 MiB 0.18 1286 13340 3362 8056 1922 54.9 MiB 0.17 0.00 7.57452 -156.038 -7.57452 7.57452 0.76 0.000985608 0.000911222 0.06736 0.0621945 38 2889 27 6.55708e+06 337540 638502. 2209.35 3.87 0.373083 0.325616 23326 155178 -1 2466 16 1198 3651 221364 46789 6.66944 6.66944 -147.064 -6.66944 0 0 851065. 2944.86 0.27 0.09 0.15 -1 -1 0.27 0.0346453 0.0307852 184 179 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 7.09 vpr 54.68 MiB 0.02 6848 -1 -1 13 0.20 -1 -1 32744 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 16.2 MiB 0.28 1203 12563 3367 6823 2373 54.7 MiB 0.16 0.00 7.77281 -162.033 -7.77281 7.77281 0.76 0.000953689 0.000879119 0.0647009 0.0596219 30 3194 40 6.55708e+06 301375 526063. 1820.29 1.43 0.209239 0.184435 21886 126133 -1 2369 16 994 3080 158360 36540 6.6027 6.6027 -146.456 -6.6027 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0337515 0.0299726 175 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.40 vpr 54.93 MiB 0.02 6768 -1 -1 12 0.27 -1 -1 32844 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 16.4 MiB 0.59 1416 10679 2747 6565 1367 55.1 MiB 0.15 0.00 6.86528 -151.049 -6.86528 6.86528 0.77 0.00106325 0.000981793 0.0569157 0.0525277 34 3877 44 6.55708e+06 373705 585099. 2024.56 3.24 0.305096 0.267911 22462 138074 -1 3054 16 1243 4230 282518 59991 6.14378 6.14378 -144.155 -6.14378 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0379776 0.0337955 205 204 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.90 vpr 55.12 MiB 0.05 6840 -1 -1 13 0.27 -1 -1 32752 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 16.3 MiB 0.32 1584 11223 2635 7117 1471 55.1 MiB 0.16 0.00 7.96921 -159.229 -7.96921 7.96921 0.76 0.00106371 0.000977591 0.0608821 0.0562336 36 3998 40 6.55708e+06 349595 612192. 2118.31 4.40 0.315286 0.27744 22750 144809 -1 3408 20 1540 4794 331369 68533 7.1639 7.1639 -152.595 -7.1639 0 0 782063. 2706.10 0.26 0.13 0.15 -1 -1 0.26 0.0443049 0.0392017 205 205 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.35 vpr 54.82 MiB 0.04 6664 -1 -1 14 0.26 -1 -1 32908 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 16.4 MiB 0.38 1228 9197 2464 5958 775 54.9 MiB 0.13 0.00 7.91369 -163.421 -7.91369 7.91369 0.76 0.000957284 0.000876701 0.0488382 0.0450458 28 3368 23 6.55708e+06 301375 500653. 1732.36 2.20 0.170533 0.150639 21310 115450 -1 3015 20 1490 4712 319020 71516 7.18744 7.18744 -162.738 -7.18744 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.040093 0.0354946 167 165 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.87 vpr 54.88 MiB 0.05 6712 -1 -1 13 0.27 -1 -1 32808 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 16.4 MiB 0.48 1537 7336 1683 5066 587 55.0 MiB 0.12 0.00 8.38432 -170.174 -8.38432 8.38432 0.77 0.00102648 0.00094877 0.0408106 0.0377031 36 3607 26 6.55708e+06 361650 612192. 2118.31 2.46 0.222033 0.194445 22750 144809 -1 3162 16 1308 3779 262460 55344 7.21136 7.21136 -157.654 -7.21136 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0360743 0.032064 199 199 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 13.93 vpr 54.84 MiB 0.05 6828 -1 -1 13 0.30 -1 -1 32984 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 16.7 MiB 0.29 1531 8951 1993 6087 871 55.3 MiB 0.14 0.00 8.45326 -176.134 -8.45326 8.45326 0.77 0.00108943 0.00100669 0.0499543 0.0460788 36 3732 42 6.55708e+06 385760 612192. 2118.31 2.08 0.247006 0.216383 22750 144809 -1 3202 14 1334 4343 274009 58655 7.3983 7.3983 -163.874 -7.3983 0 0 782063. 2706.10 0.27 0.11 0.14 -1 -1 0.27 0.0362265 0.0323689 221 220 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.95 vpr 55.01 MiB 0.04 6860 -1 -1 12 0.30 -1 -1 32836 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 16.7 MiB 0.42 1599 7323 1463 5208 652 55.3 MiB 0.12 0.00 7.47193 -159.786 -7.47193 7.47193 0.76 0.00111395 0.00102953 0.0420442 0.0388542 38 3591 36 6.55708e+06 385760 638502. 2209.35 4.85 0.428461 0.371839 23326 155178 -1 3156 17 1372 4497 293304 60481 6.6439 6.6439 -151.142 -6.6439 0 0 851065. 2944.86 0.27 0.11 0.15 -1 -1 0.27 0.041063 0.0365084 231 230 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.15 vpr 54.20 MiB 0.03 6496 -1 -1 11 0.13 -1 -1 32440 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55532 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 15.8 MiB 0.24 1043 10883 2916 6057 1910 54.2 MiB 0.13 0.00 5.95009 -133.303 -5.95009 5.95009 0.76 0.000752845 0.000694505 0.0484637 0.0446683 30 2600 34 6.55708e+06 229045 526063. 1820.29 1.11 0.154981 0.136594 21886 126133 -1 2240 17 876 2413 138426 30448 5.28046 5.28046 -128.473 -5.28046 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0274536 0.0242604 127 122 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 5.70 vpr 54.62 MiB 0.04 6700 -1 -1 13 0.20 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 16.1 MiB 0.48 1281 6211 1217 4524 470 54.8 MiB 0.09 0.00 7.73937 -166.104 -7.73937 7.73937 0.76 0.000883642 0.000816613 0.030877 0.0285466 28 3381 28 6.55708e+06 325485 500653. 1732.36 1.74 0.150428 0.131464 21310 115450 -1 3016 20 1150 3259 268058 70084 6.82684 6.82684 -160.33 -6.82684 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0365719 0.0322678 156 151 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 14.36 vpr 55.34 MiB 0.05 7028 -1 -1 14 0.43 -1 -1 32876 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 17.0 MiB 0.36 1818 9380 1999 6471 910 55.3 MiB 0.15 0.00 8.82888 -183.788 -8.82888 8.82888 0.76 0.00124729 0.00115319 0.0556334 0.0513741 36 4530 49 6.55708e+06 433980 612192. 2118.31 4.61 0.369532 0.324072 22750 144809 -1 3723 18 1552 4791 333610 69622 7.76855 7.76855 -172.747 -7.76855 0 0 782063. 2706.10 0.26 0.13 0.14 -1 -1 0.26 0.0476043 0.042383 267 267 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.30 vpr 54.64 MiB 0.04 6636 -1 -1 13 0.32 -1 -1 32804 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56520 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 16.5 MiB 0.45 1477 8735 1981 6002 752 55.2 MiB 0.13 0.00 7.79483 -168.531 -7.79483 7.79483 0.76 0.00112625 0.00103942 0.0513237 0.0473256 28 4106 28 6.55708e+06 373705 500653. 1732.36 3.37 0.331795 0.289909 21310 115450 -1 3378 17 1550 4546 280403 63000 6.81858 6.81858 -160.269 -6.81858 0 0 612192. 2118.31 0.23 0.11 0.12 -1 -1 0.23 0.0426201 0.0379112 224 224 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.98 vpr 54.24 MiB 0.04 6644 -1 -1 11 0.16 -1 -1 32648 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55680 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 15.9 MiB 0.19 916 9943 3248 5072 1623 54.4 MiB 0.12 0.00 6.47975 -131.851 -6.47975 6.47975 0.78 0.000800051 0.0007377 0.0460767 0.04248 34 2518 24 6.55708e+06 277265 585099. 2024.56 1.86 0.176741 0.155307 22462 138074 -1 2137 15 954 2833 189728 42860 5.54018 5.54018 -123.35 -5.54018 0 0 742403. 2568.87 0.25 0.07 0.14 -1 -1 0.25 0.0262405 0.0232743 137 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 8.42 vpr 55.18 MiB 0.05 7076 -1 -1 15 0.43 -1 -1 32956 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 16.9 MiB 0.32 1670 7867 1614 5465 788 55.5 MiB 0.13 0.00 8.70958 -179.837 -8.70958 8.70958 0.76 0.00119865 0.00110793 0.047254 0.0436797 36 4368 41 6.55708e+06 397815 612192. 2118.31 4.99 0.335949 0.294385 22750 144809 -1 3690 20 1747 5765 389698 81544 7.58523 7.58523 -169.501 -7.58523 0 0 782063. 2706.10 0.26 0.13 0.13 -1 -1 0.26 0.0453978 0.0408615 241 241 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 5.07 vpr 54.91 MiB 0.04 6784 -1 -1 13 0.31 -1 -1 33040 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 16.4 MiB 0.31 1370 12483 3068 7076 2339 55.1 MiB 0.17 0.00 7.72925 -154.988 -7.72925 7.72925 0.76 0.00108108 0.000999563 0.0682238 0.063099 38 3555 25 6.55708e+06 349595 638502. 2209.35 2.54 0.288382 0.253109 23326 155178 -1 2898 17 1274 3795 245269 51573 7.0025 7.0025 -148.184 -7.0025 0 0 851065. 2944.86 0.27 0.10 0.15 -1 -1 0.27 0.0401237 0.0357141 207 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 10.77 vpr 54.35 MiB 0.04 6560 -1 -1 11 0.13 -1 -1 32776 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55672 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 15.9 MiB 0.21 1161 6718 1477 4583 658 54.4 MiB 0.09 0.00 6.62468 -135.028 -6.62468 6.62468 0.76 0.000798895 0.000737675 0.0305995 0.0282697 30 2814 20 6.55708e+06 289320 526063. 1820.29 3.12 0.22592 0.196276 21886 126133 -1 2390 15 1004 2790 161805 36457 6.09938 6.09938 -133.751 -6.09938 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0263418 0.023379 149 144 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.89 vpr 55.29 MiB 0.02 6876 -1 -1 12 0.31 -1 -1 32872 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 16.5 MiB 0.33 1540 8735 2140 5810 785 55.2 MiB 0.13 0.00 7.17512 -150.872 -7.17512 7.17512 0.76 0.00107977 0.000997351 0.0478927 0.0442161 36 3621 46 6.55708e+06 373705 612192. 2118.31 2.56 0.281124 0.2453 22750 144809 -1 3204 18 1264 4008 285489 58457 6.47224 6.47224 -147.173 -6.47224 0 0 782063. 2706.10 0.26 0.11 0.15 -1 -1 0.26 0.0419761 0.037245 217 214 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.05 vpr 54.54 MiB 0.04 6488 -1 -1 12 0.21 -1 -1 32336 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 16.0 MiB 0.24 1252 5517 962 4221 334 54.6 MiB 0.08 0.00 7.41221 -152.744 -7.41221 7.41221 0.77 0.00093077 0.000861576 0.0288667 0.0267624 28 3606 43 6.55708e+06 313430 500653. 1732.36 6.87 0.300582 0.260413 21310 115450 -1 2885 17 1246 3438 233079 50634 6.6027 6.6027 -150.262 -6.6027 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0333858 0.0295673 164 159 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.49 vpr 54.31 MiB 0.04 6568 -1 -1 12 0.18 -1 -1 32696 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55668 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 15.9 MiB 0.20 998 6383 1524 4361 498 54.4 MiB 0.08 0.00 7.15324 -144.822 -7.15324 7.15324 0.77 0.000620003 0.000564457 0.025785 0.0235625 26 2717 21 6.55708e+06 253155 477104. 1650.88 3.55 0.223368 0.193969 21022 109990 -1 2407 18 956 2778 197296 42815 6.50944 6.50944 -140.652 -6.50944 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0309376 0.0273159 139 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.80 vpr 54.68 MiB 0.05 6776 -1 -1 12 0.28 -1 -1 32796 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 16.4 MiB 0.25 1315 14583 4048 7926 2609 55.0 MiB 0.19 0.00 7.005 -132.757 -7.005 7.005 0.76 0.00105011 0.000968815 0.0783395 0.0721189 30 3847 35 6.55708e+06 385760 526063. 1820.29 2.27 0.234515 0.207806 21886 126133 -1 2891 21 1370 4386 359593 111315 6.35204 6.35204 -127.925 -6.35204 0 0 666494. 2306.21 0.23 0.14 0.13 -1 -1 0.23 0.045356 0.0400777 208 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 16.19 vpr 55.30 MiB 0.05 6796 -1 -1 14 0.31 -1 -1 32988 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 16.7 MiB 0.48 1622 11046 2782 7202 1062 55.2 MiB 0.16 0.00 8.27143 -173.321 -8.27143 8.27143 0.76 0.00113955 0.0010545 0.0621315 0.0574544 30 4173 46 6.55708e+06 385760 526063. 1820.29 1.87 0.24064 0.211859 21886 126133 -1 3334 18 1567 4522 271499 57748 7.21136 7.21136 -166.906 -7.21136 0 0 666494. 2306.21 0.29 0.12 0.13 -1 -1 0.29 0.0487556 0.0438952 227 222 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 8.87 vpr 54.76 MiB 0.05 6660 -1 -1 12 0.23 -1 -1 32800 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 16.3 MiB 0.37 1318 5191 912 3744 535 54.9 MiB 0.09 0.00 7.44045 -154.388 -7.44045 7.44045 0.76 0.0010286 0.000949779 0.0301006 0.0278588 28 4086 41 6.55708e+06 325485 500653. 1732.36 2.44 0.191935 0.168216 21310 115450 -1 3199 20 1706 5288 400979 98452 6.59044 6.59044 -152.65 -6.59044 0 0 612192. 2118.31 0.21 0.15 0.12 -1 -1 0.21 0.0439356 0.0389368 192 192 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 11.87 vpr 54.25 MiB 0.03 6556 -1 -1 12 0.14 -1 -1 32704 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55504 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 15.8 MiB 0.36 1100 6615 1512 4600 503 54.2 MiB 0.05 0.00 6.69922 -140.427 -6.69922 6.69922 0.73 0.000349355 0.000320307 0.0141942 0.013032 30 2486 30 6.55708e+06 277265 526063. 1820.29 0.91 0.0658291 0.0577576 21886 126133 -1 2180 16 812 2483 134222 30361 5.85958 5.85958 -134.393 -5.85958 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0264908 0.0234412 133 127 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.24 vpr 54.39 MiB 0.05 6684 -1 -1 12 0.23 -1 -1 32364 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 15.9 MiB 0.23 1148 11398 2849 6739 1810 54.8 MiB 0.14 0.00 7.39043 -143.264 -7.39043 7.39043 0.76 0.000924943 0.000855825 0.0579791 0.0537068 34 2972 22 6.55708e+06 301375 585099. 2024.56 3.02 0.245382 0.214471 22462 138074 -1 2545 17 1033 2874 180703 41448 6.4825 6.4825 -138.698 -6.4825 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0334439 0.0295908 170 170 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.20 vpr 54.76 MiB 0.04 6792 -1 -1 11 0.19 -1 -1 32932 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56064 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 16.3 MiB 0.22 1267 6723 1289 4852 582 54.8 MiB 0.10 0.00 6.0378 -125.718 -6.0378 6.0378 0.75 0.00096808 0.000895359 0.0361446 0.0334662 28 3835 47 6.55708e+06 337540 500653. 1732.36 2.30 0.197157 0.17252 21310 115450 -1 3126 25 1760 6408 637245 182346 5.49332 5.49332 -129.398 -5.49332 0 0 612192. 2118.31 0.21 0.19 0.12 -1 -1 0.21 0.0472825 0.0414437 189 189 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.83 vpr 54.59 MiB 0.05 6872 -1 -1 11 0.20 -1 -1 32744 -1 -1 28 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56028 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1153 14128 4158 7800 2170 54.7 MiB 0.17 0.00 6.59995 -118.466 -6.59995 6.59995 0.76 0.000908493 0.000839835 0.0695818 0.0643565 36 2889 50 6.55708e+06 337540 612192. 2118.31 2.12 0.249605 0.219266 22750 144809 -1 2652 19 1154 3777 272487 67580 5.62118 5.62118 -114.584 -5.62118 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0363175 0.0320686 171 169 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 5.71 vpr 54.48 MiB 0.04 6616 -1 -1 13 0.18 -1 -1 32680 -1 -1 25 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55748 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 15.9 MiB 0.45 1112 5463 1180 3669 614 54.4 MiB 0.08 0.00 7.87624 -151.634 -7.87624 7.87624 0.81 0.000800796 0.000739805 0.0261208 0.0241857 28 3091 32 6.55708e+06 301375 500653. 1732.36 6.14 0.237683 0.206669 21310 115450 -1 2532 15 1005 2710 175123 38732 6.8803 6.8803 -146.9 -6.8803 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0264979 0.0235403 142 135 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.38 vpr 54.53 MiB 0.04 6512 -1 -1 12 0.19 -1 -1 32628 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 16.2 MiB 0.32 1245 6211 1266 4515 430 54.8 MiB 0.09 0.00 7.2362 -155.292 -7.2362 7.2362 0.79 0.000953507 0.000879953 0.0326953 0.0302427 28 3654 37 6.55708e+06 325485 500653. 1732.36 5.34 0.306849 0.266505 21310 115450 -1 2851 17 1263 3376 222424 49514 6.39124 6.39124 -149.252 -6.39124 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0347735 0.0308019 180 175 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 5.10 vpr 54.75 MiB 0.05 6736 -1 -1 13 0.28 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1187 15843 5382 8046 2415 55.0 MiB 0.20 0.00 7.69912 -151.004 -7.69912 7.69912 0.77 0.00101045 0.000934416 0.0804924 0.0743606 36 3053 22 6.55708e+06 361650 612192. 2118.31 4.15 0.360816 0.316736 22750 144809 -1 2463 16 1174 3476 216718 48576 6.8431 6.8431 -141.499 -6.8431 0 0 782063. 2706.10 0.25 0.09 0.15 -1 -1 0.25 0.0354416 0.0314617 195 192 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 6.76 vpr 54.82 MiB 0.05 6720 -1 -1 14 0.28 -1 -1 32848 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 16.4 MiB 0.27 1371 16295 4299 9326 2670 55.1 MiB 0.21 0.00 7.90558 -162.398 -7.90558 7.90558 0.76 0.0010983 0.00100994 0.086977 0.0803492 34 3710 36 6.55708e+06 373705 585099. 2024.56 4.17 0.402947 0.353483 22462 138074 -1 2910 19 1286 3920 251058 55159 7.1991 7.1991 -156.449 -7.1991 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0439415 0.0389794 215 214 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 5.17 vpr 54.79 MiB 0.05 6840 -1 -1 14 0.28 -1 -1 32872 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1364 9067 2106 6307 654 55.0 MiB 0.13 0.00 7.8859 -150.917 -7.8859 7.8859 0.76 0.00100299 0.000924972 0.0484006 0.0446788 36 3422 25 6.55708e+06 325485 612192. 2118.31 3.17 0.253712 0.221808 22750 144809 -1 2970 27 1242 4084 435817 152680 6.6399 6.6399 -141.786 -6.6399 0 0 782063. 2706.10 0.26 0.16 0.14 -1 -1 0.26 0.0517944 0.0455109 183 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.69 vpr 54.99 MiB 0.02 6788 -1 -1 13 0.31 -1 -1 33256 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 16.4 MiB 0.37 1350 6211 1219 4577 415 55.0 MiB 0.10 0.00 7.98147 -162.621 -7.98147 7.98147 0.76 0.00104107 0.000961698 0.0368292 0.0340647 36 3281 27 6.55708e+06 325485 612192. 2118.31 2.67 0.222765 0.194742 22750 144809 -1 2727 16 1196 3710 242013 52174 6.8777 6.8777 -147.177 -6.8777 0 0 782063. 2706.10 0.26 0.10 0.14 -1 -1 0.26 0.0367397 0.0326705 195 194 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 9.23 vpr 54.41 MiB 0.04 6544 -1 -1 13 0.18 -1 -1 32700 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55692 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 15.9 MiB 0.25 1092 10670 2647 6412 1611 54.4 MiB 0.12 0.00 7.9674 -161.443 -7.9674 7.9674 0.76 0.000819706 0.000756988 0.0494892 0.0457194 34 2721 46 6.55708e+06 289320 585099. 2024.56 3.39 0.256191 0.223752 22462 138074 -1 2322 13 847 2162 141681 31010 6.7973 6.7973 -149.416 -6.7973 0 0 742403. 2568.87 0.25 0.06 0.14 -1 -1 0.25 0.024906 0.0222109 146 142 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 7.50 vpr 55.01 MiB 0.05 6836 -1 -1 13 0.44 -1 -1 32840 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 16.5 MiB 0.29 1304 7653 1748 5033 872 55.2 MiB 0.12 0.00 8.34953 -161.953 -8.34953 8.34953 0.76 0.00107481 0.000994623 0.0441927 0.0409065 30 4078 40 6.55708e+06 373705 526063. 1820.29 2.01 0.206049 0.180944 21886 126133 -1 3021 18 1463 4264 240812 53969 6.89196 6.89196 -151.972 -6.89196 0 0 666494. 2306.21 0.23 0.12 0.13 -1 -1 0.23 0.0467647 0.0412167 208 206 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 5.72 vpr 54.65 MiB 0.05 6816 -1 -1 14 0.28 -1 -1 31372 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56088 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 16.3 MiB 0.31 1332 7336 1480 5450 406 54.8 MiB 0.11 0.00 7.42283 -159.831 -7.42283 7.42283 0.81 0.000712966 0.000652923 0.0367522 0.0338385 44 2916 18 6.55708e+06 361650 742403. 2568.87 4.06 0.31274 0.271605 24478 177802 -1 2531 14 964 3318 216415 43563 6.47284 6.47284 -147.516 -6.47284 0 0 937218. 3242.97 0.31 0.09 0.18 -1 -1 0.31 0.0347688 0.0309851 184 182 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.40 vpr 54.79 MiB 0.05 6824 -1 -1 12 0.25 -1 -1 32916 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1420 6575 1256 4964 355 55.0 MiB 0.10 0.00 8.28906 -160.635 -8.28906 8.28906 0.76 0.00103137 0.000953793 0.035515 0.0328839 28 4706 40 6.55708e+06 385760 500653. 1732.36 12.60 0.433476 0.377337 21310 115450 -1 3655 16 1537 4471 342167 73499 7.1971 7.1971 -159.044 -7.1971 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0364858 0.0324193 203 202 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 8.37 vpr 54.64 MiB 0.05 6856 -1 -1 13 0.24 -1 -1 32708 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1315 6522 1420 4675 427 55.2 MiB 0.10 0.00 7.42898 -137.517 -7.42898 7.42898 0.76 0.000969257 0.000897445 0.0361777 0.033464 30 3319 37 6.55708e+06 337540 526063. 1820.29 2.12 0.185556 0.163299 21886 126133 -1 2670 17 1103 3196 186184 40486 6.63224 6.63224 -133.041 -6.63224 0 0 666494. 2306.21 0.28 0.09 0.13 -1 -1 0.28 0.0354706 0.0314582 186 185 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.43 vpr 55.20 MiB 0.04 6784 -1 -1 14 0.34 -1 -1 33012 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 16.8 MiB 0.47 1483 8199 1652 5918 629 55.3 MiB 0.13 0.00 8.85275 -170.114 -8.85275 8.85275 0.76 0.00111106 0.00102326 0.0459529 0.0424655 34 3907 18 6.55708e+06 385760 585099. 2024.56 4.23 0.411658 0.358883 22462 138074 -1 3349 59 1547 4937 1044633 617483 7.78082 7.78082 -163.516 -7.78082 0 0 742403. 2568.87 0.25 0.42 0.14 -1 -1 0.25 0.111737 0.097351 220 216 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.56 vpr 54.78 MiB 0.02 6716 -1 -1 11 0.28 -1 -1 32824 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 16.3 MiB 0.30 1183 4512 917 3199 396 54.7 MiB 0.07 0.00 6.95549 -133.856 -6.95549 6.95549 0.76 0.00095412 0.000882828 0.0250708 0.0232261 42 2942 26 6.55708e+06 349595 701300. 2426.64 3.44 0.319724 0.276532 23902 167433 -1 2402 14 859 2936 184395 39518 6.23184 6.23184 -127.426 -6.23184 0 0 896083. 3100.63 0.26 0.04 0.11 -1 -1 0.26 0.016941 0.0153533 174 174 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.26 vpr 54.26 MiB 0.04 6448 -1 -1 13 0.17 -1 -1 32636 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 15.9 MiB 0.28 1098 6999 1531 4700 768 54.4 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.76 0.000804614 0.000742328 0.0322354 0.0297724 26 3138 31 6.55708e+06 277265 477104. 1650.88 1.88 0.141835 0.124452 21022 109990 -1 2578 16 1132 2794 190671 44077 6.5197 6.5197 -156.514 -6.5197 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.0282788 0.025098 142 131 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.43 vpr 54.77 MiB 0.05 6660 -1 -1 14 0.24 -1 -1 32796 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 16.4 MiB 0.20 1308 7027 1497 5027 503 54.9 MiB 0.06 0.00 8.02087 -160.438 -8.02087 8.02087 0.62 0.000443849 0.00040118 0.0178379 0.0163195 34 3265 34 6.55708e+06 325485 585099. 2024.56 3.42 0.242993 0.210095 22462 138074 -1 2784 15 1150 3398 225432 48156 6.9613 6.9613 -151.265 -6.9613 0 0 742403. 2568.87 0.25 0.09 0.14 -1 -1 0.25 0.0328999 0.0292738 183 179 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 6.58 vpr 55.34 MiB 0.02 6676 -1 -1 15 0.39 -1 -1 33164 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 16.7 MiB 0.54 1579 7323 1484 5148 691 55.2 MiB 0.12 0.00 9.31018 -193.267 -9.31018 9.31018 0.76 0.00114028 0.0010535 0.0425524 0.0393715 28 4400 24 6.55708e+06 385760 500653. 1732.36 1.94 0.190517 0.168109 21310 115450 -1 3715 15 1659 4554 306851 68348 8.13481 8.13481 -184.388 -8.13481 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.037597 0.0334778 228 228 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.64 vpr 54.13 MiB 0.02 6460 -1 -1 11 0.18 -1 -1 32476 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55492 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 15.8 MiB 0.62 1088 7079 1594 5001 484 54.2 MiB 0.09 0.00 6.82798 -137.917 -6.82798 6.82798 0.80 0.000764742 0.000705511 0.0315127 0.0290728 28 2975 37 6.55708e+06 265210 500653. 1732.36 2.37 0.146496 0.128381 21310 115450 -1 2414 17 941 2624 210971 55007 5.83204 5.83204 -135.397 -5.83204 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.02796 0.0247541 126 124 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 9.46 vpr 54.59 MiB 0.04 6516 -1 -1 12 0.18 -1 -1 32540 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55896 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 16.0 MiB 0.36 1155 8207 1978 5141 1088 54.6 MiB 0.11 0.00 7.38032 -154.384 -7.38032 7.38032 0.79 0.000624248 0.000566383 0.0364464 0.0335987 38 2757 24 6.55708e+06 313430 638502. 2209.35 8.16 0.389396 0.336669 23326 155178 -1 2315 14 980 3005 184436 38708 6.47024 6.47024 -143.876 -6.47024 0 0 851065. 2944.86 0.27 0.08 0.15 -1 -1 0.27 0.028021 0.024948 157 153 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.93 vpr 54.99 MiB 0.05 6700 -1 -1 12 0.30 -1 -1 33068 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 16.4 MiB 0.33 1424 7439 1505 5396 538 55.1 MiB 0.14 0.00 7.41461 -164.576 -7.41461 7.41461 0.79 0.000863416 0.000780721 0.0455344 0.0418127 36 3448 18 6.55708e+06 373705 612192. 2118.31 3.96 0.300799 0.262625 22750 144809 -1 2990 17 1344 4270 279456 59424 6.7229 6.7229 -157.345 -6.7229 0 0 782063. 2706.10 0.26 0.11 0.15 -1 -1 0.26 0.0402513 0.0358034 209 207 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 6.03 vpr 54.88 MiB 0.05 6784 -1 -1 12 0.24 -1 -1 32880 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 16.2 MiB 0.45 1429 8579 2186 5781 612 55.0 MiB 0.13 0.00 7.42022 -157.463 -7.42022 7.42022 0.76 0.000989581 0.000915367 0.0448734 0.0415239 30 3687 20 6.55708e+06 337540 526063. 1820.29 1.34 0.163077 0.14379 21886 126133 -1 3130 17 1266 4083 248462 52056 6.62964 6.62964 -154.235 -6.62964 0 0 666494. 2306.21 0.23 0.12 0.12 -1 -1 0.23 0.0337072 0.0303269 186 184 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.56 vpr 55.25 MiB 0.05 6812 -1 -1 14 0.44 -1 -1 33320 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 16.8 MiB 0.27 1656 14691 3485 9017 2189 55.4 MiB 0.21 0.00 8.55829 -177.042 -8.55829 8.55829 0.76 0.00118767 0.00109728 0.081264 0.0750864 36 4358 41 6.55708e+06 421925 612192. 2118.31 2.89 0.314391 0.2775 22750 144809 -1 3617 17 1576 4963 351620 73254 7.36876 7.36876 -164.712 -7.36876 0 0 782063. 2706.10 0.26 0.14 0.15 -1 -1 0.26 0.0397077 0.0358287 241 239 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 7.41 vpr 54.66 MiB 0.05 6732 -1 -1 11 0.23 -1 -1 32480 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 16.4 MiB 0.43 1210 13157 4017 6643 2497 54.9 MiB 0.17 0.00 6.86503 -131.636 -6.86503 6.86503 0.76 0.000959391 0.000887346 0.0676402 0.0626362 30 3319 18 6.55708e+06 325485 526063. 1820.29 1.43 0.181086 0.160994 21886 126133 -1 2547 15 1168 3553 207961 45023 5.91504 5.91504 -124.469 -5.91504 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.032109 0.0285443 176 173 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 7.20 vpr 54.40 MiB 0.04 6524 -1 -1 11 0.17 -1 -1 32348 -1 -1 25 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55708 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 15.9 MiB 0.21 858 9234 2019 6554 661 54.4 MiB 0.11 0.00 6.39815 -115.858 -6.39815 6.39815 0.76 0.000783698 0.000724686 0.0427168 0.0395096 28 2509 19 6.55708e+06 301375 500653. 1732.36 0.98 0.134908 0.119121 21310 115450 -1 2126 18 1101 3144 201718 44977 5.62058 5.62058 -115.653 -5.62058 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0295901 0.0261234 138 138 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 8.74 vpr 55.25 MiB 0.05 6996 -1 -1 13 0.42 -1 -1 32860 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 17.2 MiB 0.26 1915 8888 1943 6342 603 55.4 MiB 0.15 0.00 7.96961 -161.89 -7.96961 7.96961 0.76 0.00130406 0.001205 0.0533635 0.0493485 34 6097 50 6.55708e+06 482200 585099. 2024.56 6.14 0.387431 0.339854 22462 138074 -1 4449 31 1935 6490 681307 211081 7.13798 7.13798 -157.586 -7.13798 0 0 742403. 2568.87 0.25 0.24 0.14 -1 -1 0.25 0.0779694 0.0687062 280 279 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.16 vpr 54.72 MiB 0.05 6944 -1 -1 14 0.31 -1 -1 33300 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 16.4 MiB 0.30 1307 6821 1398 4713 710 54.9 MiB 0.10 0.00 8.63003 -171.716 -8.63003 8.63003 0.78 0.000970139 0.000897253 0.0380632 0.0351774 36 3003 16 6.55708e+06 313430 612192. 2118.31 3.98 0.351256 0.304642 22750 144809 -1 2692 18 1032 2904 189824 40981 7.81036 7.81036 -158.302 -7.81036 0 0 782063. 2706.10 0.24 0.09 0.09 -1 -1 0.24 0.0364861 0.0322861 178 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 8.51 vpr 54.42 MiB 0.02 6552 -1 -1 12 0.17 -1 -1 32400 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55660 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 15.9 MiB 0.39 1197 8251 1803 5271 1177 54.4 MiB 0.10 0.00 7.37817 -162.484 -7.37817 7.37817 0.76 0.000824012 0.000761043 0.0364451 0.0336829 28 3422 49 6.55708e+06 325485 500653. 1732.36 2.04 0.174488 0.153194 21310 115450 -1 2745 15 1110 3017 210483 46590 6.61598 6.61598 -159.785 -6.61598 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0273225 0.0242676 144 134 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.32 vpr 54.62 MiB 0.05 6632 -1 -1 13 0.30 -1 -1 32736 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55868 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 16.1 MiB 0.42 1296 6623 1420 4442 761 54.6 MiB 0.10 0.00 7.83929 -154.667 -7.83929 7.83929 0.77 0.00096646 0.000893792 0.0370845 0.034281 34 3642 35 6.55708e+06 301375 585099. 2024.56 4.25 0.329113 0.285826 22462 138074 -1 2859 15 1200 3588 250640 53491 6.7621 6.7621 -151.137 -6.7621 0 0 742403. 2568.87 0.24 0.09 0.09 -1 -1 0.24 0.0326004 0.0289957 172 171 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 7.16 vpr 55.18 MiB 0.05 6812 -1 -1 13 0.30 -1 -1 33364 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 16.7 MiB 0.32 1675 5723 977 4473 273 55.3 MiB 0.10 0.00 7.72485 -162.113 -7.72485 7.72485 0.76 0.00113438 0.00104878 0.0338028 0.0313014 30 4309 34 6.55708e+06 421925 526063. 1820.29 2.93 0.20559 0.18132 21886 126133 -1 3255 18 1540 4577 253702 56245 6.6399 6.6399 -151.695 -6.6399 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0440373 0.0391267 235 234 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 8.63 vpr 54.85 MiB 0.05 6764 -1 -1 11 0.23 -1 -1 32696 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 16.3 MiB 0.37 1363 8827 2077 5986 764 54.9 MiB 0.13 0.00 7.0834 -142.912 -7.0834 7.0834 0.77 0.00101954 0.000942499 0.0475147 0.0438762 30 3584 37 6.55708e+06 385760 526063. 1820.29 1.90 0.199923 0.175929 21886 126133 -1 2863 16 1228 4290 238877 51714 6.23184 6.23184 -136.971 -6.23184 0 0 666494. 2306.21 0.23 0.09 0.12 -1 -1 0.23 0.0357164 0.0317553 199 199 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.19 vpr 54.99 MiB 0.05 6748 -1 -1 15 0.32 -1 -1 33008 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1473 9543 2499 5737 1307 55.3 MiB 0.15 0.00 9.02492 -182.614 -9.02492 9.02492 0.76 0.00105612 0.000975393 0.0551906 0.0509944 34 4466 33 6.55708e+06 349595 585099. 2024.56 3.30 0.267041 0.234712 22462 138074 -1 3445 25 1754 5626 443399 111434 8.04875 8.04875 -178.975 -8.04875 0 0 742403. 2568.87 0.29 0.16 0.16 -1 -1 0.29 0.0520235 0.0460107 203 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.48 vpr 54.78 MiB 0.05 6744 -1 -1 13 0.31 -1 -1 33016 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 16.8 MiB 0.19 1528 11922 3138 7505 1279 55.2 MiB 0.17 0.00 8.01701 -168.403 -8.01701 8.01701 0.79 0.00111532 0.0010288 0.0650037 0.0600261 36 3807 22 6.55708e+06 385760 612192. 2118.31 4.39 0.357224 0.312049 22750 144809 -1 3180 19 1291 4009 259508 54997 6.81356 6.81356 -155.33 -6.81356 0 0 782063. 2706.10 0.30 0.11 0.14 -1 -1 0.30 0.0457598 0.0407036 217 217 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 11.06 vpr 54.36 MiB 0.04 6624 -1 -1 12 0.20 -1 -1 32260 -1 -1 29 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55892 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 16.0 MiB 0.42 1144 6321 1459 4287 575 54.6 MiB 0.09 0.00 6.98904 -150.776 -6.98904 6.98904 0.77 0.000841981 0.000779665 0.0296408 0.0274531 30 2752 39 6.55708e+06 349595 526063. 1820.29 1.52 0.154689 0.135732 21886 126133 -1 2375 17 1096 2771 156350 35194 6.25938 6.25938 -141.718 -6.25938 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0298983 0.0264998 159 151 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 4.94 vpr 54.35 MiB 0.04 6580 -1 -1 11 0.15 -1 -1 32372 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55716 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 15.9 MiB 0.37 1041 8402 1813 6153 436 54.4 MiB 0.11 0.00 6.97021 -142.93 -6.97021 6.97021 0.76 0.000798096 0.000736679 0.0385983 0.0356199 30 3000 41 6.55708e+06 265210 526063. 1820.29 1.52 0.161559 0.141821 21886 126133 -1 2269 16 972 2756 151622 34523 5.86158 5.86158 -136.404 -5.86158 0 0 666494. 2306.21 0.23 0.07 0.12 -1 -1 0.23 0.0283132 0.0251778 138 137 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 7.29 vpr 54.82 MiB 0.04 6644 -1 -1 13 0.30 -1 -1 32800 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 16.5 MiB 0.34 1528 7975 1701 5466 808 55.2 MiB 0.12 0.00 8.19329 -167.366 -8.19329 8.19329 0.76 0.0010583 0.000978493 0.0437383 0.0404567 34 3607 20 6.55708e+06 373705 585099. 2024.56 3.95 0.345074 0.299843 22462 138074 -1 3151 16 1446 4259 294238 62704 7.1971 7.1971 -159.661 -7.1971 0 0 742403. 2568.87 0.25 0.11 0.14 -1 -1 0.25 0.0371513 0.0330561 204 203 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.35 vpr 54.25 MiB 0.05 6680 -1 -1 10 0.17 -1 -1 32928 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 15.9 MiB 0.25 1030 5107 1053 3581 473 54.4 MiB 0.07 0.00 6.08471 -123.999 -6.08471 6.08471 0.83 0.000786604 0.00072665 0.0250442 0.0231402 28 2661 26 6.55708e+06 289320 500653. 1732.36 5.86 0.217329 0.188521 21310 115450 -1 2271 20 1009 2820 175951 40006 5.33332 5.33332 -121.826 -5.33332 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0321349 0.0283098 138 136 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 11.42 vpr 54.48 MiB 0.05 6620 -1 -1 14 0.18 -1 -1 32712 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 16.1 MiB 0.41 1019 11203 3089 5915 2199 54.6 MiB 0.14 0.00 7.69221 -156.392 -7.69221 7.69221 0.92 0.000849132 0.000783115 0.0519608 0.0479909 36 2598 19 6.55708e+06 289320 612192. 2118.31 3.79 0.256883 0.224678 22750 144809 -1 2180 15 952 2802 165491 38125 6.5589 6.5589 -142.118 -6.5589 0 0 782063. 2706.10 0.26 0.07 0.14 -1 -1 0.26 0.0282712 0.0251578 149 146 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 13.57 vpr 54.62 MiB 0.02 6644 -1 -1 12 0.30 -1 -1 32984 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 16.4 MiB 0.29 1351 11891 3061 6959 1871 55.0 MiB 0.16 0.00 7.58423 -159.03 -7.58423 7.58423 0.76 0.00105042 0.000968195 0.0641509 0.0591613 36 3401 37 6.55708e+06 349595 612192. 2118.31 3.69 0.303505 0.267033 22750 144809 -1 2891 18 1211 3944 256166 54216 6.38924 6.38924 -147.255 -6.38924 0 0 782063. 2706.10 0.26 0.10 0.15 -1 -1 0.26 0.0402891 0.0357531 201 201 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.98 vpr 54.36 MiB 0.05 6572 -1 -1 12 0.16 -1 -1 32384 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55632 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 15.8 MiB 0.29 1079 5567 1026 4331 210 54.3 MiB 0.08 0.00 6.95154 -149.121 -6.95154 6.95154 0.76 0.000792894 0.000732239 0.0262238 0.0242391 34 2770 26 6.55708e+06 277265 585099. 2024.56 3.53 0.228157 0.198017 22462 138074 -1 2446 14 962 2569 159547 36479 6.09998 6.09998 -139.998 -6.09998 0 0 742403. 2568.87 0.28 0.07 0.11 -1 -1 0.28 0.0224575 0.0202666 141 138 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 7.68 vpr 54.79 MiB 0.05 6708 -1 -1 12 0.19 -1 -1 32788 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1263 7843 1830 5405 608 55.0 MiB 0.11 0.00 7.086 -151.926 -7.086 7.086 0.77 0.00098192 0.00090616 0.0423437 0.0390988 28 3562 37 6.55708e+06 325485 500653. 1732.36 1.92 0.190865 0.167767 21310 115450 -1 3056 20 1429 4877 328095 69979 6.14578 6.14578 -149.233 -6.14578 0 0 612192. 2118.31 0.23 0.12 0.12 -1 -1 0.23 0.0400265 0.0352913 188 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.88 vpr 54.81 MiB 0.05 6720 -1 -1 13 0.27 -1 -1 32940 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 16.3 MiB 0.27 1349 6509 1390 4237 882 54.9 MiB 0.10 0.00 7.60996 -160.091 -7.60996 7.60996 0.76 0.000979228 0.000904299 0.0346659 0.032066 36 3371 16 6.55708e+06 349595 612192. 2118.31 3.96 0.281267 0.245282 22750 144809 -1 2937 15 1108 3432 220497 46676 6.5197 6.5197 -152.716 -6.5197 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0332229 0.0295509 179 178 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.73 vpr 54.27 MiB 0.04 6484 -1 -1 11 0.16 -1 -1 32336 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55660 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 15.8 MiB 0.24 1256 8251 2031 5471 749 54.4 MiB 0.06 0.00 6.67834 -143.715 -6.67834 6.67834 0.74 0.000368447 0.000336694 0.0184849 0.016933 28 3401 29 6.55708e+06 325485 500653. 1732.36 1.81 0.131068 0.114418 21310 115450 -1 2974 16 1137 3586 247443 53887 5.91304 5.91304 -140.606 -5.91304 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0290196 0.0257477 148 143 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 6.59 vpr 54.39 MiB 0.04 6596 -1 -1 13 0.19 -1 -1 32464 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 16.1 MiB 0.25 1339 8047 1963 5261 823 54.8 MiB 0.11 0.00 7.72555 -161.807 -7.72555 7.72555 0.76 0.000873266 0.000803163 0.0402054 0.0371835 36 3037 32 6.55708e+06 325485 612192. 2118.31 4.04 0.365922 0.317894 22750 144809 -1 2635 13 949 2594 167427 36452 6.86604 6.86604 -153.177 -6.86604 0 0 782063. 2706.10 0.26 0.07 0.14 -1 -1 0.26 0.0279659 0.0249112 167 165 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 10.30 vpr 54.77 MiB 0.05 6704 -1 -1 13 0.25 -1 -1 32932 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 16.4 MiB 0.18 1276 15187 4382 8407 2398 55.1 MiB 0.20 0.00 7.99583 -160.474 -7.99583 7.99583 0.79 0.00099206 0.000917317 0.0786885 0.0724086 34 3881 50 6.55708e+06 325485 585099. 2024.56 5.60 0.385603 0.336964 22462 138074 -1 2984 16 1350 3898 248992 55545 7.09316 7.09316 -155.072 -7.09316 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0346412 0.0307491 184 183 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.82 vpr 54.55 MiB 0.04 6724 -1 -1 11 0.19 -1 -1 32788 -1 -1 28 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55824 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 15.9 MiB 0.34 1142 12761 3414 7382 1965 54.5 MiB 0.15 0.00 6.37111 -124.414 -6.37111 6.37111 0.78 0.000878023 0.000810299 0.0598634 0.0551753 34 2981 18 6.55708e+06 337540 585099. 2024.56 1.84 0.185923 0.163836 22462 138074 -1 2522 15 988 3157 223542 47377 5.73112 5.73112 -122.293 -5.73112 0 0 742403. 2568.87 0.25 0.08 0.14 -1 -1 0.25 0.0293678 0.0260588 162 160 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 8.85 vpr 55.02 MiB 0.05 6760 -1 -1 14 0.31 -1 -1 33452 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 16.7 MiB 0.37 1569 9951 2260 6812 879 55.2 MiB 0.15 0.00 8.3634 -177.338 -8.3634 8.3634 0.84 0.00113276 0.0010467 0.0560955 0.0518103 36 3929 21 6.55708e+06 385760 612192. 2118.31 4.32 0.376888 0.328852 22750 144809 -1 3425 20 1633 4884 326721 69540 7.41256 7.41256 -170.049 -7.41256 0 0 782063. 2706.10 0.26 0.13 0.15 -1 -1 0.26 0.0473613 0.042013 225 222 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.44 vpr 54.26 MiB 0.05 6456 -1 -1 12 0.16 -1 -1 32444 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55792 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 16.0 MiB 0.39 1144 6619 1429 4488 702 54.5 MiB 0.07 0.00 6.81857 -143.271 -6.81857 6.81857 0.80 0.000557095 0.000512503 0.0212308 0.0194064 36 2663 18 6.55708e+06 337540 612192. 2118.31 2.10 0.188646 0.164004 22750 144809 -1 2374 15 963 2605 169639 37383 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.26 0.07 0.14 -1 -1 0.26 0.0270883 0.0240583 145 139 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 8.72 vpr 54.77 MiB 0.05 6716 -1 -1 13 0.27 -1 -1 32884 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 16.4 MiB 0.34 1396 7843 1736 5120 987 54.9 MiB 0.11 0.00 7.69421 -153.973 -7.69421 7.69421 0.76 0.00101963 0.000940274 0.0428187 0.0395607 28 3779 45 6.55708e+06 325485 500653. 1732.36 1.97 0.209224 0.183729 21310 115450 -1 3074 28 1632 5532 547465 187131 6.8823 6.8823 -147.74 -6.8823 0 0 612192. 2118.31 0.21 0.19 0.12 -1 -1 0.21 0.0532905 0.0468018 189 188 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 9.68 vpr 54.37 MiB 0.04 6684 -1 -1 13 0.18 -1 -1 32780 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 16.0 MiB 0.35 1076 10583 2933 6087 1563 54.6 MiB 0.12 0.00 7.44215 -162.135 -7.44215 7.44215 0.76 0.000825113 0.000761892 0.0473781 0.0437536 28 3433 39 6.55708e+06 301375 500653. 1732.36 1.95 0.174228 0.153584 21310 115450 -1 2656 18 1168 3055 202051 45907 6.69898 6.69898 -159.177 -6.69898 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0310889 0.027515 146 141 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.85 vpr 54.66 MiB 0.02 6712 -1 -1 12 0.21 -1 -1 32756 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56140 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 16.1 MiB 0.30 1148 5517 1034 4096 387 54.8 MiB 0.08 0.00 7.36755 -151.17 -7.36755 7.36755 0.76 0.000959429 0.000886516 0.0300143 0.0278041 28 3274 27 6.55708e+06 313430 500653. 1732.36 5.37 0.291206 0.252302 21310 115450 -1 2868 25 1127 3700 382858 136149 6.5237 6.5237 -145.754 -6.5237 0 0 612192. 2118.31 0.21 0.15 0.12 -1 -1 0.21 0.0468847 0.0411879 172 171 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 11.37 vpr 55.17 MiB 0.05 6908 -1 -1 15 0.47 -1 -1 32860 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56492 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1759 9998 2422 6696 880 55.2 MiB 0.16 0.00 8.78932 -180.299 -8.78932 8.78932 0.76 0.00124563 0.00115119 0.0614514 0.0567129 36 4275 44 6.55708e+06 409870 612192. 2118.31 5.16 0.364865 0.320171 22750 144809 -1 3711 16 1651 5398 370763 77029 7.66062 7.66062 -166.924 -7.66062 0 0 782063. 2706.10 0.26 0.13 0.14 -1 -1 0.26 0.044085 0.0393378 250 250 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 5.03 vpr 53.88 MiB 0.04 6456 -1 -1 10 0.10 -1 -1 32056 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55164 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 15.2 MiB 0.27 757 9042 2084 6396 562 53.9 MiB 0.09 0.00 5.22063 -120.025 -5.22063 5.22063 0.76 0.000615334 0.000568741 0.0357606 0.0329859 28 1919 20 6.55708e+06 192880 500653. 1732.36 1.30 0.107877 0.0950019 21310 115450 -1 1716 15 649 1532 103267 23732 4.84286 4.84286 -121.882 -4.84286 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.0195258 0.0171788 92 85 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 5.36 vpr 54.43 MiB 0.04 6504 -1 -1 13 0.17 -1 -1 32732 -1 -1 29 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 16.0 MiB 0.21 1069 6415 1411 4237 767 54.5 MiB 0.08 0.00 7.77311 -151.473 -7.77311 7.77311 0.78 0.000835096 0.000772472 0.029983 0.0277133 28 2856 39 6.55708e+06 349595 500653. 1732.36 1.51 0.157599 0.137807 21310 115450 -1 2440 15 917 2532 177058 38364 6.8385 6.8385 -148.81 -6.8385 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0272833 0.0242559 150 141 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.40 vpr 54.61 MiB 0.04 6492 -1 -1 12 0.19 -1 -1 32564 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 15.9 MiB 0.28 1241 11223 2642 6703 1878 54.6 MiB 0.13 0.00 6.72746 -150.964 -6.72746 6.72746 0.80 0.000614263 0.000554429 0.0471255 0.0430581 36 3010 24 6.55708e+06 277265 612192. 2118.31 3.97 0.291531 0.253757 22750 144809 -1 2620 24 1288 3907 361262 119201 6.10198 6.10198 -146.434 -6.10198 0 0 782063. 2706.10 0.26 0.14 0.15 -1 -1 0.26 0.0442872 0.038853 167 167 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.66 vpr 54.04 MiB 0.04 6704 -1 -1 9 0.13 -1 -1 32516 -1 -1 25 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55468 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 15.6 MiB 0.16 840 9694 2571 5897 1226 54.2 MiB 0.11 0.00 5.60806 -104.508 -5.60806 5.60806 0.80 0.000666523 0.000615155 0.0386057 0.0356894 26 2430 34 6.55708e+06 301375 477104. 1650.88 2.62 0.133032 0.117198 21022 109990 -1 1977 17 864 2424 166186 36231 5.33332 5.33332 -103.691 -5.33332 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.024306 0.0214215 112 111 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 8.10 vpr 55.09 MiB 0.04 6716 -1 -1 12 0.26 -1 -1 32764 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 16.3 MiB 0.54 1640 5273 863 4118 292 55.1 MiB 0.09 0.00 7.59969 -165.851 -7.59969 7.59969 0.77 0.00106051 0.00097097 0.0286255 0.0264793 44 3703 18 6.55708e+06 409870 742403. 2568.87 4.56 0.327159 0.284318 24478 177802 -1 3100 15 1216 3642 270299 53070 6.6811 6.6811 -154.904 -6.6811 0 0 937218. 3242.97 0.31 0.10 0.18 -1 -1 0.31 0.0359343 0.0320604 209 208 -1 -1 -1 -1 + fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.51 vpr 55.07 MiB 0.05 6848 -1 -1 14 0.30 -1 -1 32880 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 16.4 MiB 0.39 1228 13340 3394 7367 2579 55.0 MiB 0.19 0.00 8.33716 -163.889 -8.33716 8.33716 0.76 0.00106551 0.000980391 0.0730078 0.067154 44 2996 17 6.55708e+06 349595 742403. 2568.87 4.10 0.367044 0.321376 24478 177802 -1 2466 19 1079 3374 204376 44918 7.26282 7.26282 -151.046 -7.26282 0 0 937218. 3242.97 0.31 0.10 0.18 -1 -1 0.31 0.0426119 0.037732 204 204 -1 -1 -1 -1 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.56 vpr 54.89 MiB 0.04 7184 -1 -1 1 0.03 -1 -1 30644 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 16.9 MiB 0.08 929 17268 4565 10218 2485 55.3 MiB 0.14 0.00 4.24756 -141.398 -4.24756 4.24756 0.62 0.000384601 0.000348583 0.0307923 0.0279818 32 2532 23 6.64007e+06 452088 554710. 1919.41 1.00 0.137218 0.119812 22834 132086 -1 2157 19 1668 2761 238210 50659 3.77883 3.77883 -140.401 -3.77883 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0331648 0.0291214 153 96 32 32 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 55.08 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30636 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 16.6 MiB 0.20 873 12919 4129 6395 2395 55.1 MiB 0.20 0.00 4.44716 -130.844 -4.44716 4.44716 0.76 0.000824514 0.000762916 0.0601776 0.0557171 32 2354 22 6.64007e+06 288834 554710. 1919.41 1.01 0.158796 0.140787 22834 132086 -1 1984 20 1649 2771 237284 50831 3.69243 3.69243 -132.015 -3.69243 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0323539 0.0283541 142 91 30 30 89 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.85 vpr 54.68 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 16.8 MiB 0.11 1003 9675 2005 7104 566 55.4 MiB 0.15 0.00 3.83457 -129.818 -3.83457 3.83457 0.77 0.000803942 0.000743524 0.037032 0.0342296 30 2330 20 6.64007e+06 439530 526063. 1820.29 0.96 0.131577 0.115998 22546 126617 -1 1991 19 1202 1907 131232 28068 3.43423 3.43423 -130.759 -3.43423 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0303457 0.0266712 142 65 54 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.19 vpr 54.68 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30484 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 16.3 MiB 0.09 990 11245 3461 6773 1011 55.1 MiB 0.19 0.00 4.46418 -132.921 -4.46418 4.46418 0.76 0.000745704 0.000690446 0.0474193 0.0439481 26 2556 27 6.64007e+06 301392 477104. 1650.88 1.04 0.142473 0.125935 21682 110474 -1 2137 17 1498 2499 209365 43448 3.83403 3.83403 -137.638 -3.83403 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.02632 0.0232127 138 34 87 29 29 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.24 vpr 54.73 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30312 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 16.6 MiB 0.12 849 15017 4515 8552 1950 55.2 MiB 0.26 0.00 4.14936 -139.21 -4.14936 4.14936 0.76 0.000809605 0.000749583 0.0672774 0.0623235 32 2433 23 6.64007e+06 276276 554710. 1919.41 1.01 0.166015 0.147736 22834 132086 -1 1906 19 1608 2787 201919 47121 3.64143 3.64143 -136.683 -3.64143 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0308905 0.0272041 153 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.62 vpr 54.88 MiB 0.02 7128 -1 -1 1 0.05 -1 -1 30404 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 16.7 MiB 0.12 1024 19142 5848 10342 2952 55.3 MiB 0.28 0.01 3.5603 -122.153 -3.5603 3.5603 0.77 0.000834499 0.000770645 0.0691942 0.0639404 32 2387 21 6.64007e+06 489762 554710. 1919.41 0.99 0.16836 0.149526 22834 132086 -1 2004 20 1320 2104 175345 37991 2.92497 2.92497 -118.502 -2.92497 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0328137 0.0288368 156 64 63 32 63 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.06 vpr 54.38 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30528 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55684 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 15.8 MiB 0.11 722 12923 4015 7171 1737 54.4 MiB 0.16 0.00 3.7987 -103.375 -3.7987 3.7987 0.76 0.000617553 0.000571944 0.0494395 0.0458074 32 1628 19 6.64007e+06 251160 554710. 1919.41 0.91 0.121368 0.107532 22834 132086 -1 1516 18 849 1482 144651 29312 2.92297 2.92297 -98.2405 -2.92297 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0224801 0.019672 96 34 54 27 27 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.01 vpr 54.46 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30276 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 16.3 MiB 0.08 948 16081 4441 8879 2761 55.0 MiB 0.22 0.00 3.49449 -109.504 -3.49449 3.49449 0.79 0.000725057 0.000671297 0.0548097 0.0507219 28 2256 22 6.64007e+06 426972 500653. 1732.36 1.01 0.14237 0.126336 21970 115934 -1 1928 19 1074 1783 138901 29670 2.77377 2.77377 -106.567 -2.77377 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0274415 0.024087 140 4 115 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.18 vpr 54.69 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30116 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 16.2 MiB 0.17 706 7820 1805 5417 598 55.1 MiB 0.11 0.00 3.31336 -101.862 -3.31336 3.31336 0.77 0.000717038 0.000663159 0.0350301 0.0324409 28 1814 19 6.64007e+06 213486 500653. 1732.36 0.93 0.119721 0.105442 21970 115934 -1 1617 17 777 1315 95791 21638 2.85097 2.85097 -102.372 -2.85097 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0246741 0.0216149 106 85 0 0 84 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.17 vpr 54.68 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 16.3 MiB 0.16 890 10756 2975 5928 1853 55.0 MiB 0.15 0.00 3.5061 -124.869 -3.5061 3.5061 0.77 0.000699857 0.000647676 0.0466265 0.04323 32 2081 19 6.64007e+06 213486 554710. 1919.41 0.98 0.128453 0.113862 22834 132086 -1 1825 21 1426 2125 191728 40456 2.87877 2.87877 -123.498 -2.87877 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0304753 0.0267384 121 34 64 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.05 vpr 54.55 MiB 0.02 7024 -1 -1 1 0.04 -1 -1 30312 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 16.4 MiB 0.16 822 14012 5060 7295 1657 55.1 MiB 0.19 0.00 3.4841 -115.834 -3.4841 3.4841 0.82 0.000702351 0.000650062 0.0602757 0.0558044 28 1768 18 6.64007e+06 226044 500653. 1732.36 0.89 0.140396 0.124843 21970 115934 -1 1515 18 872 1294 102473 21718 2.87677 2.87677 -111.457 -2.87677 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0254634 0.0223746 110 63 30 30 60 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.21 vpr 54.52 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30492 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.4 MiB 0.11 840 9753 2297 6936 520 55.1 MiB 0.14 0.00 3.52209 -114.564 -3.52209 3.52209 0.77 0.000713335 0.000659406 0.0354833 0.0328098 30 1904 21 6.64007e+06 364182 526063. 1820.29 0.97 0.116057 0.102292 22546 126617 -1 1687 20 1006 1683 120051 25456 2.63337 2.63337 -107.711 -2.63337 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0255355 0.0224517 114 65 25 25 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.35 vpr 54.98 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30260 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 16.6 MiB 0.22 893 19448 6133 10048 3267 55.2 MiB 0.28 0.00 3.56129 -122.026 -3.56129 3.56129 0.76 0.000825202 0.000762837 0.0730177 0.0674927 32 2243 20 6.64007e+06 426972 554710. 1919.41 1.09 0.157669 0.140812 22834 132086 -1 1900 17 1495 2473 211474 43457 2.76377 2.76377 -113.659 -2.76377 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0276559 0.0245541 145 58 64 32 57 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.56 vpr 54.87 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30648 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1031 17036 4693 9820 2523 55.5 MiB 0.26 0.01 4.31123 -147.759 -4.31123 4.31123 0.76 0.000846136 0.000783307 0.0652041 0.0603217 26 3087 33 6.64007e+06 452088 477104. 1650.88 1.83 0.180461 0.159867 21682 110474 -1 2347 21 1843 2875 258615 51345 3.89603 3.89603 -151.023 -3.89603 0 0 585099. 2024.56 0.23 0.10 0.12 -1 -1 0.23 0.0347476 0.0305702 158 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.91 vpr 54.28 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30636 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55872 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 15.9 MiB 0.12 800 8852 2481 5509 862 54.6 MiB 0.12 0.00 3.4261 -103.793 -3.4261 3.4261 0.76 0.000628799 0.000582068 0.034227 0.031721 32 1678 19 6.64007e+06 238602 554710. 1919.41 0.91 0.106429 0.0937431 22834 132086 -1 1522 21 986 1747 140294 29894 2.76377 2.76377 -98.7241 -2.76377 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0257124 0.0224418 108 29 58 29 24 24 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.33 vpr 54.84 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30388 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 16.7 MiB 0.19 1068 13316 3890 7652 1774 55.4 MiB 0.22 0.01 3.5141 -124.724 -3.5141 3.5141 0.76 0.000833003 0.000770262 0.0616135 0.0570261 32 2321 21 6.64007e+06 276276 554710. 1919.41 1.01 0.161124 0.143085 22834 132086 -1 2090 23 1618 2817 249135 49506 3.12137 3.12137 -123.8 -3.12137 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.036734 0.0322101 147 63 64 32 62 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.42 vpr 54.87 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30264 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 16.7 MiB 0.18 964 16340 5208 8057 3075 55.4 MiB 0.18 0.00 3.6263 -123.14 -3.6263 3.6263 0.76 0.000807109 0.00074605 0.0597634 0.0552954 36 2133 27 6.64007e+06 452088 612192. 2118.31 3.94 0.29032 0.253437 23410 145293 -1 1762 19 1218 1800 180851 37232 3.06417 3.06417 -118.76 -3.06417 0 0 782063. 2706.10 0.26 0.08 0.15 -1 -1 0.26 0.0303998 0.0267041 144 57 64 32 56 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.63 vpr 54.57 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30108 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 16.4 MiB 0.14 919 13487 3473 7992 2022 55.1 MiB 0.17 0.00 2.83964 -105.375 -2.83964 2.83964 0.76 0.000732124 0.000676674 0.048293 0.0446716 26 2144 20 6.64007e+06 389298 477104. 1650.88 0.87 0.133485 0.118016 21682 110474 -1 1880 21 1071 1734 150455 31003 2.24871 2.24871 -99.0537 -2.24871 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0298545 0.0261008 119 65 29 29 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.03 vpr 54.18 MiB 0.04 6832 -1 -1 1 0.03 -1 -1 30304 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55544 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 15.6 MiB 0.04 670 10835 3352 6011 1472 54.2 MiB 0.06 0.00 2.72344 -89.4054 -2.72344 2.72344 0.61 0.000234689 0.000213731 0.0168299 0.0153566 32 1469 19 6.64007e+06 188370 554710. 1919.41 0.62 0.0465173 0.0407139 22834 132086 -1 1299 16 546 819 75160 15912 1.87911 1.87911 -81.5332 -1.87911 0 0 701300. 2426.64 0.24 0.05 0.14 -1 -1 0.24 0.0178989 0.0156295 85 34 24 24 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.34 vpr 54.73 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 16.3 MiB 0.13 727 12120 4439 5930 1751 54.9 MiB 0.16 0.00 4.19115 -121.049 -4.19115 4.19115 0.77 0.000714198 0.000660339 0.0528679 0.048922 32 2075 22 6.64007e+06 213486 554710. 1919.41 0.95 0.138704 0.122846 22834 132086 -1 1627 17 770 1133 87469 20519 3.47243 3.47243 -118.874 -3.47243 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0249732 0.0219187 113 64 31 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.07 vpr 54.89 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30376 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 16.7 MiB 0.10 885 17732 4998 9545 3189 55.2 MiB 0.25 0.00 4.22193 -138.344 -4.22193 4.22193 0.77 0.000801659 0.000741838 0.064681 0.0598096 32 2393 21 6.64007e+06 452088 554710. 1919.41 1.03 0.158818 0.141202 22834 132086 -1 2105 19 1676 2467 252270 55142 3.91803 3.91803 -139.967 -3.91803 0 0 701300. 2426.64 0.23 0.10 0.14 -1 -1 0.23 0.0303302 0.0267043 147 34 91 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.74 vpr 55.11 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30576 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 16.7 MiB 0.22 960 11288 2842 7087 1359 55.6 MiB 0.19 0.01 3.74425 -123.858 -3.74425 3.74425 0.76 0.000916379 0.00084839 0.0464334 0.0429741 30 2618 24 6.64007e+06 477204 526063. 1820.29 1.02 0.158092 0.13909 22546 126617 -1 2055 20 1290 2001 139554 30289 3.47943 3.47943 -125.844 -3.47943 0 0 666494. 2306.21 0.25 0.08 0.13 -1 -1 0.25 0.0358752 0.031441 150 124 0 0 125 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.06 vpr 54.04 MiB 0.02 6772 -1 -1 1 0.03 -1 -1 30564 -1 -1 17 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55420 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 15.6 MiB 0.10 395 10503 3120 6151 1232 54.1 MiB 0.09 0.00 2.74064 -71.156 -2.74064 2.74064 0.76 0.000474538 0.000438219 0.0332423 0.030707 28 1200 22 6.64007e+06 213486 500653. 1732.36 0.86 0.090401 0.0796158 21970 115934 -1 956 16 598 892 63471 15661 1.90391 1.90391 -68.8591 -1.90391 0 0 612192. 2118.31 0.21 0.04 0.09 -1 -1 0.21 0.0157892 0.0137987 77 30 26 26 22 22 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.99 vpr 54.66 MiB 0.04 7044 -1 -1 1 0.06 -1 -1 30112 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 16.4 MiB 0.08 990 12749 4130 6257 2362 55.0 MiB 0.21 0.00 4.45633 -140.507 -4.45633 4.45633 0.78 0.000754456 0.000697026 0.053576 0.0496156 32 2489 18 6.64007e+06 276276 554710. 1919.41 1.00 0.139843 0.124241 22834 132086 -1 2119 19 1523 2691 214459 46705 3.83383 3.83383 -140.346 -3.83383 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0287382 0.0252949 138 3 122 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.80 vpr 54.05 MiB 0.04 6552 -1 -1 1 0.02 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55580 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 15.7 MiB 0.05 603 10672 2424 7898 350 54.3 MiB 0.11 0.00 2.3583 -83.9313 -2.3583 2.3583 0.82 0.000377102 0.000342528 0.0286054 0.0261618 28 1549 27 6.64007e+06 163254 500653. 1732.36 1.05 0.0904749 0.0792494 21970 115934 -1 1292 19 613 773 71085 15916 2.14151 2.14151 -87.789 -2.14151 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0186696 0.0164524 81 3 53 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.07 vpr 54.72 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30532 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 16.8 MiB 0.10 956 14691 4376 8904 1411 55.4 MiB 0.26 0.01 4.18856 -140.856 -4.18856 4.18856 0.77 0.000673347 0.000607731 0.0507038 0.0465729 32 2572 23 6.64007e+06 439530 554710. 1919.41 1.11 0.147971 0.130828 22834 132086 -1 2168 21 1824 2874 245365 54072 3.89783 3.89783 -143.075 -3.89783 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0334138 0.0294261 153 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.02 vpr 54.71 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30232 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 16.6 MiB 0.09 1019 8796 1857 6524 415 55.1 MiB 0.14 0.00 3.60659 -123.354 -3.60659 3.60659 0.76 0.000753905 0.000697378 0.0308989 0.0286021 28 2574 22 6.64007e+06 464646 500653. 1732.36 3.15 0.208911 0.181704 21970 115934 -1 2272 21 1551 2493 219552 47294 2.98117 2.98117 -122.935 -2.98117 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0309827 0.0271764 152 3 124 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.82 vpr 54.76 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30632 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 16.8 MiB 0.10 1069 18901 5689 10576 2636 55.5 MiB 0.28 0.01 4.16036 -141.868 -4.16036 4.16036 0.76 0.000846787 0.000782753 0.0708055 0.0654762 32 2629 23 6.64007e+06 464646 554710. 1919.41 1.06 0.173619 0.154459 22834 132086 -1 2292 20 1705 2687 216032 47106 3.74943 3.74943 -141.35 -3.74943 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0330766 0.0290816 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.08 vpr 54.49 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 16.1 MiB 0.08 857 10572 2555 6423 1594 54.7 MiB 0.14 0.00 3.07196 -107.422 -3.07196 3.07196 0.74 0.000664094 0.000613996 0.0432271 0.0400118 32 1870 21 6.64007e+06 200928 554710. 1919.41 0.92 0.122614 0.108324 22834 132086 -1 1733 21 1017 1694 154096 32415 2.79977 2.79977 -111.822 -2.79977 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0274152 0.0239502 107 34 54 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.12 vpr 54.37 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30176 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.1 MiB 0.09 824 11806 3275 6761 1770 54.6 MiB 0.15 0.00 3.4951 -114.009 -3.4951 3.4951 0.76 0.000663833 0.000614223 0.0471477 0.043674 32 1828 21 6.64007e+06 238602 554710. 1919.41 0.93 0.126192 0.111679 22834 132086 -1 1649 20 1205 1754 157103 33256 3.01397 3.01397 -111.961 -3.01397 0 0 701300. 2426.64 0.26 0.07 0.14 -1 -1 0.26 0.0263894 0.0230814 115 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.09 vpr 54.43 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30292 -1 -1 20 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55812 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 15.9 MiB 0.09 658 7132 1686 4570 876 54.5 MiB 0.11 0.00 3.4309 -100.483 -3.4309 3.4309 0.76 0.00063559 0.000588881 0.0283609 0.0263055 32 1870 17 6.64007e+06 251160 554710. 1919.41 0.92 0.100095 0.0880221 22834 132086 -1 1602 18 1067 1774 134329 30519 2.96317 2.96317 -103.498 -2.96317 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0232409 0.0203242 107 34 56 28 28 28 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.34 vpr 54.35 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30468 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.2 MiB 0.09 802 15390 5648 7380 2362 54.9 MiB 0.21 0.00 3.5251 -121.985 -3.5251 3.5251 0.77 0.000663435 0.000613593 0.0600151 0.0555369 32 2039 21 6.64007e+06 226044 554710. 1919.41 0.98 0.138811 0.123418 22834 132086 -1 1821 20 1476 2373 215469 45688 2.97017 2.97017 -120.449 -2.97017 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0263529 0.0230398 125 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.13 vpr 54.44 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.3 MiB 0.07 772 9679 2262 6618 799 54.8 MiB 0.15 0.00 3.47387 -114.287 -3.47387 3.47387 0.77 0.00068804 0.000637325 0.0332902 0.0308189 28 2079 20 6.64007e+06 389298 500653. 1732.36 0.93 0.112653 0.099314 21970 115934 -1 1820 19 1215 1967 153330 33487 2.79257 2.79257 -112.475 -2.79257 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0254948 0.0223088 119 34 61 31 31 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.97 vpr 54.61 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30320 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 16.3 MiB 0.14 877 15824 4460 9332 2032 55.0 MiB 0.19 0.00 2.80466 -91.9047 -2.80466 2.80466 0.76 0.000678726 0.000627793 0.0544545 0.0502901 26 2003 20 6.64007e+06 389298 477104. 1650.88 0.95 0.133646 0.118368 21682 110474 -1 1768 18 1088 1708 141445 29820 2.18751 2.18751 -91.7582 -2.18751 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0244495 0.0213979 110 61 29 29 57 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.31 vpr 55.23 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30484 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 17.1 MiB 0.19 1234 17889 5288 10109 2492 55.4 MiB 0.32 0.01 4.16036 -142.499 -4.16036 4.16036 0.76 0.000956313 0.000889208 0.068796 0.0636202 28 3463 32 6.64007e+06 514878 500653. 1732.36 1.79 0.192405 0.170531 21970 115934 -1 2701 20 1821 3022 280084 54977 4.02103 4.02103 -150.243 -4.02103 0 0 612192. 2118.31 0.21 0.11 0.12 -1 -1 0.21 0.0362795 0.0319315 181 29 128 32 27 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.46 vpr 55.00 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30492 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 16.7 MiB 0.16 996 11616 2636 8022 958 55.5 MiB 0.19 0.00 3.5823 -125.213 -3.5823 3.5823 0.79 0.000850253 0.000779356 0.0464004 0.0429191 30 2093 18 6.64007e+06 464646 526063. 1820.29 0.97 0.142706 0.126239 22546 126617 -1 1817 18 1355 1938 143994 29374 2.63837 2.63837 -113.677 -2.63837 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0304342 0.0268374 154 65 62 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.31 vpr 54.58 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30584 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 16.5 MiB 0.22 803 9407 2189 6388 830 55.2 MiB 0.14 0.00 3.6833 -114.43 -3.6833 3.6833 0.76 0.000744997 0.00068912 0.0363387 0.0336644 30 1791 21 6.64007e+06 364182 526063. 1820.29 0.92 0.122735 0.108013 22546 126617 -1 1549 17 772 1187 92728 19278 2.55517 2.55517 -105.122 -2.55517 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0251184 0.0220226 114 90 0 0 89 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.51 vpr 54.94 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30548 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 16.8 MiB 0.15 1052 11799 3060 6831 1908 55.3 MiB 0.20 0.00 3.64847 -119.816 -3.64847 3.64847 0.83 0.000817142 0.000756127 0.0533772 0.0494571 32 2478 23 6.64007e+06 301392 554710. 1919.41 1.06 0.158942 0.140585 22834 132086 -1 2076 16 1345 2260 196401 39833 3.04517 3.04517 -116.497 -3.04517 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0271782 0.0239733 149 64 60 30 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.75 vpr 55.12 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30512 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 16.8 MiB 0.44 953 7835 1760 5704 371 55.4 MiB 0.15 0.00 5.23812 -147.937 -5.23812 5.23812 0.86 0.000912805 0.000846065 0.0411813 0.0382014 32 2424 23 6.64007e+06 288834 554710. 1919.41 1.05 0.151864 0.133559 22834 132086 -1 2150 19 1308 2188 193443 41902 3.99248 3.99248 -143.523 -3.99248 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0331705 0.0290426 150 124 0 0 124 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.71 vpr 55.11 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 16.7 MiB 0.20 955 10859 3044 7047 768 55.4 MiB 0.21 0.00 5.02279 -136.574 -5.02279 5.02279 0.80 0.000749401 0.000686168 0.0562539 0.0520329 30 2080 21 6.64007e+06 288834 526063. 1820.29 0.99 0.138567 0.123243 22546 126617 -1 1810 13 837 1298 91074 19179 3.74728 3.74728 -128.151 -3.74728 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0248458 0.0220917 144 90 31 31 89 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.23 vpr 54.94 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30292 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1046 15623 4332 9609 1682 55.3 MiB 0.23 0.00 3.5621 -120.379 -3.5621 3.5621 0.76 0.000823314 0.000757741 0.0597244 0.0551558 26 2695 23 6.64007e+06 439530 477104. 1650.88 1.17 0.165203 0.147672 21682 110474 -1 2190 20 1544 2593 205818 42851 2.94797 2.94797 -118.634 -2.94797 0 0 585099. 2024.56 0.23 0.09 0.12 -1 -1 0.23 0.0290365 0.0257423 148 64 60 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.77 vpr 54.68 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30816 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 16.7 MiB 0.12 865 10206 2264 6941 1001 55.4 MiB 0.17 0.00 4.23656 -140.329 -4.23656 4.23656 0.76 0.000840798 0.000777261 0.0399271 0.0369317 32 2782 37 6.64007e+06 464646 554710. 1919.41 1.21 0.158908 0.139611 22834 132086 -1 2062 21 1856 2834 233669 51547 3.72443 3.72443 -137.221 -3.72443 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0337261 0.0296246 156 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.72 vpr 55.12 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30656 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 17.0 MiB 0.19 1205 17356 4219 10649 2488 55.5 MiB 0.28 0.01 4.21478 -145.938 -4.21478 4.21478 0.76 0.00100072 0.000927304 0.0728491 0.0675081 32 2797 19 6.64007e+06 527436 554710. 1919.41 1.04 0.187691 0.166755 22834 132086 -1 2429 21 1922 2902 260397 51978 3.60863 3.60863 -140.093 -3.60863 0 0 701300. 2426.64 0.24 0.11 0.13 -1 -1 0.24 0.0408867 0.0358616 186 96 62 32 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.05 vpr 54.48 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30572 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56144 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.1 MiB 0.11 655 13731 5030 6417 2284 54.8 MiB 0.18 0.00 3.7665 -117.146 -3.7665 3.7665 0.77 0.00067746 0.000626773 0.0556092 0.0515097 32 1994 22 6.64007e+06 226044 554710. 1919.41 0.98 0.137602 0.122112 22834 132086 -1 1499 19 1250 1973 157612 35775 2.87377 2.87377 -111.445 -2.87377 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.025795 0.022615 116 34 62 31 31 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.57 vpr 54.97 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30376 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 16.7 MiB 0.16 910 7386 1527 5477 382 55.4 MiB 0.13 0.00 4.20356 -136.322 -4.20356 4.20356 0.76 0.000822602 0.000760379 0.0288564 0.0266966 32 2850 23 6.64007e+06 477204 554710. 1919.41 1.05 0.12875 0.112891 22834 132086 -1 2083 22 1821 2685 209966 47406 3.85863 3.85863 -140.091 -3.85863 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0349048 0.0306 152 64 62 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.75 vpr 54.89 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30504 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 16.6 MiB 0.13 994 14048 3500 8468 2080 55.3 MiB 0.23 0.01 3.7163 -119.726 -3.7163 3.7163 0.77 0.000827486 0.00076598 0.0550683 0.0510073 32 2424 21 6.64007e+06 426972 554710. 1919.41 1.00 0.153353 0.135889 22834 132086 -1 2005 20 1600 2718 211820 45517 2.93577 2.93577 -111.18 -2.93577 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.03291 0.0289139 149 63 62 32 62 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.16 vpr 54.66 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30364 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 16.4 MiB 0.09 1080 15017 4624 8554 1839 55.3 MiB 0.24 0.00 4.14936 -144.892 -4.14936 4.14936 0.76 0.000783256 0.000725604 0.0646397 0.0599065 32 2565 23 6.64007e+06 276276 554710. 1919.41 1.04 0.15868 0.141241 22834 132086 -1 2209 20 1783 3123 255533 52066 3.38403 3.38403 -138.503 -3.38403 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0305501 0.0268629 151 3 128 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 6.06 vpr 55.09 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30588 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 16.8 MiB 0.20 1044 15603 4218 9336 2049 55.4 MiB 0.23 0.01 3.55822 -125.535 -3.55822 3.55822 0.76 0.000855319 0.000791132 0.0615387 0.0569315 32 2366 20 6.64007e+06 439530 554710. 1919.41 1.00 0.161805 0.143608 22834 132086 -1 2102 17 1281 1895 151509 32439 2.87377 2.87377 -117.072 -2.87377 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0292532 0.0257168 146 96 25 25 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.14 vpr 54.84 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30388 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 16.9 MiB 0.19 1017 12791 3286 8285 1220 55.6 MiB 0.20 0.00 3.47912 -120.914 -3.47912 3.47912 0.76 0.000835851 0.000773635 0.0482911 0.0446252 26 2506 30 6.64007e+06 464646 477104. 1650.88 1.48 0.158406 0.139652 21682 110474 -1 2013 17 1003 1736 125869 28597 2.95177 2.95177 -119.476 -2.95177 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0326922 0.0286438 148 61 64 32 60 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.57 vpr 55.02 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30588 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 16.8 MiB 0.14 1102 19142 5372 11310 2460 55.4 MiB 0.27 0.01 3.5243 -123.608 -3.5243 3.5243 0.76 0.000841647 0.000778015 0.0699792 0.0646901 32 2323 21 6.64007e+06 489762 554710. 1919.41 1.02 0.169216 0.150443 22834 132086 -1 2033 18 1463 2202 188135 37215 2.75677 2.75677 -115.524 -2.75677 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0307546 0.0270924 157 65 63 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.12 vpr 54.67 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 16.6 MiB 0.09 1032 14906 4320 9186 1400 55.2 MiB 0.24 0.01 4.18856 -144.112 -4.18856 4.18856 0.78 0.000807156 0.000747094 0.0538739 0.0498229 30 2314 20 6.64007e+06 464646 526063. 1820.29 0.99 0.148982 0.132291 22546 126617 -1 1942 20 1419 2142 143035 30138 3.47523 3.47523 -135.45 -3.47523 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0317715 0.0279732 152 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.19 vpr 55.04 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30720 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 16.5 MiB 0.15 1016 12153 3010 8355 788 55.3 MiB 0.19 0.01 4.23153 -146.068 -4.23153 4.23153 0.83 0.000842788 0.000778847 0.0430818 0.0397659 28 2535 21 6.64007e+06 489762 500653. 1732.36 3.02 0.251425 0.218881 21970 115934 -1 2182 21 1687 2675 234870 47721 3.68443 3.68443 -146.956 -3.68443 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0345855 0.0303532 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.21 vpr 55.16 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30488 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 16.8 MiB 0.23 1141 13095 3356 8753 986 55.2 MiB 0.22 0.00 4.67535 -137.171 -4.67535 4.67535 0.82 0.000698096 0.000634141 0.048922 0.0450248 28 2935 23 6.64007e+06 452088 500653. 1732.36 1.43 0.158976 0.139897 21970 115934 -1 2441 22 1246 2308 192333 39906 3.65042 3.65042 -133.414 -3.65042 0 0 612192. 2118.31 0.21 0.09 0.08 -1 -1 0.21 0.0373426 0.0326107 147 122 0 0 122 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.66 vpr 54.83 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 16.8 MiB 0.17 1069 15584 4992 8664 1928 55.4 MiB 0.26 0.00 4.34993 -137.194 -4.34993 4.34993 0.77 0.000377529 0.000344996 0.0632901 0.0581977 32 2719 20 6.64007e+06 276276 554710. 1919.41 1.07 0.166388 0.147359 22834 132086 -1 2316 21 1747 3185 258192 54916 3.69742 3.69742 -138.836 -3.69742 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0358903 0.0314574 151 94 32 32 94 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.14 vpr 54.43 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30620 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 16.2 MiB 0.08 928 8735 1852 5986 897 54.7 MiB 0.12 0.00 3.50687 -122.364 -3.50687 3.50687 0.76 0.00069301 0.00064085 0.0303507 0.0280968 28 2241 22 6.64007e+06 389298 500653. 1732.36 0.92 0.112451 0.0987075 21970 115934 -1 1924 18 1108 1806 141964 30962 2.96197 2.96197 -121.11 -2.96197 0 0 612192. 2118.31 0.24 0.07 0.12 -1 -1 0.24 0.0251712 0.0220752 125 34 63 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.39 vpr 54.81 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.4 MiB 0.19 885 10406 2864 6861 681 55.1 MiB 0.16 0.00 3.5031 -121.505 -3.5031 3.5031 0.77 0.000773734 0.000715692 0.0474083 0.0438717 26 2246 21 6.64007e+06 226044 477104. 1650.88 0.93 0.13792 0.121903 21682 110474 -1 1967 21 1403 2284 195465 41297 2.88577 2.88577 -121.172 -2.88577 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0315182 0.0275565 121 94 0 0 94 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.12 vpr 54.81 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30812 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 16.9 MiB 0.13 1352 17606 4821 10688 2097 55.3 MiB 0.33 0.01 4.98622 -168.741 -4.98622 4.98622 0.76 0.000966816 0.000893898 0.0716498 0.0663293 32 3357 23 6.64007e+06 527436 554710. 1919.41 1.16 0.189324 0.168123 22834 132086 -1 2806 21 2465 4109 357232 75142 5.11829 5.11829 -178.537 -5.11829 0 0 701300. 2426.64 0.24 0.13 0.14 -1 -1 0.24 0.0396925 0.034906 189 65 96 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.30 vpr 54.81 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30464 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 16.8 MiB 0.14 1055 17857 5354 10411 2092 55.4 MiB 0.27 0.00 3.51607 -123.396 -3.51607 3.51607 0.79 0.000799946 0.000739188 0.0671704 0.0619634 30 2181 18 6.64007e+06 414414 526063. 1820.29 0.93 0.158247 0.140798 22546 126617 -1 1926 16 1157 1695 114529 24763 2.97637 2.97637 -120.356 -2.97637 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0268871 0.0237781 148 34 92 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.02 vpr 54.50 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30460 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 16.2 MiB 0.08 853 17523 5443 9889 2191 55.0 MiB 0.22 0.00 3.4529 -114.711 -3.4529 3.4529 0.77 0.000667835 0.000617917 0.0584174 0.0540227 30 1867 20 6.64007e+06 389298 526063. 1820.29 0.92 0.137306 0.122013 22546 126617 -1 1624 17 839 1212 89795 18009 2.77357 2.77357 -106.052 -2.77357 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.023473 0.0206418 116 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.74 vpr 55.11 MiB 0.05 7364 -1 -1 1 0.04 -1 -1 30976 -1 -1 45 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 17.1 MiB 0.33 1192 13629 3357 8864 1408 55.5 MiB 0.24 0.01 4.97469 -167.233 -4.97469 4.97469 0.77 0.00103557 0.000959173 0.0583767 0.0540503 32 2855 24 6.64007e+06 565110 554710. 1919.41 1.08 0.185339 0.163761 22834 132086 -1 2465 18 2092 3181 280616 56152 4.55029 4.55029 -165.816 -4.55029 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0382326 0.0336924 188 127 32 32 128 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.35 vpr 54.82 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30544 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 16.7 MiB 0.14 1027 16762 4357 10483 1922 55.3 MiB 0.23 0.01 4.27488 -146.847 -4.27488 4.27488 0.76 0.000811853 0.000751024 0.0602102 0.0556586 28 2439 21 6.64007e+06 477204 500653. 1732.36 0.96 0.155984 0.138524 21970 115934 -1 2180 20 1673 2372 208653 43959 3.67343 3.67343 -147.366 -3.67343 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0318928 0.0280415 153 34 96 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.02 vpr 54.25 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30312 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56056 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 16.2 MiB 0.08 882 11046 2802 6952 1292 54.7 MiB 0.16 0.00 3.5621 -124.172 -3.5621 3.5621 0.77 0.000664194 0.000614738 0.0366084 0.0338209 30 1851 19 6.64007e+06 401856 526063. 1820.29 0.90 0.113424 0.100029 22546 126617 -1 1517 19 767 1275 81602 17948 2.46797 2.46797 -106.203 -2.46797 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0253335 0.0222221 124 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.57 vpr 54.90 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30924 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 17.1 MiB 0.14 1334 20347 5362 13158 1827 55.4 MiB 0.34 0.01 4.95502 -168.119 -4.95502 4.95502 0.78 0.000931684 0.000862814 0.0791835 0.0733699 30 3132 23 6.64007e+06 539994 526063. 1820.29 1.24 0.194559 0.173175 22546 126617 -1 2634 21 2061 3401 266542 52181 4.51109 4.51109 -169.495 -4.51109 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0379645 0.0333723 190 34 128 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.14 vpr 54.45 MiB 0.02 6820 -1 -1 1 0.03 -1 -1 30476 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 16.2 MiB 0.09 623 13731 4925 6406 2400 54.7 MiB 0.18 0.00 3.5061 -118.666 -3.5061 3.5061 0.76 0.00066597 0.000616478 0.0547393 0.0506944 32 2149 26 6.64007e+06 213486 554710. 1919.41 1.00 0.138714 0.122908 22834 132086 -1 1582 21 1466 2275 191386 45917 3.24357 3.24357 -120.667 -3.24357 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0273496 0.0239311 121 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.26 vpr 54.55 MiB 0.02 6832 -1 -1 1 0.03 -1 -1 30148 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56044 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 16.2 MiB 0.14 855 13939 4099 8667 1173 54.7 MiB 0.18 0.00 3.47387 -112.968 -3.47387 3.47387 0.79 0.000672511 0.000622788 0.0463978 0.0428956 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.90 0.127319 0.112515 21970 115934 -1 1678 18 932 1483 106148 23081 2.66737 2.66737 -107.139 -2.66737 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.0243786 0.021381 114 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.57 vpr 55.05 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 16.7 MiB 0.20 1003 12839 3224 8329 1286 55.3 MiB 0.20 0.00 3.6803 -109.03 -3.6803 3.6803 0.82 0.000880503 0.000801832 0.0512594 0.0474536 26 2556 22 6.64007e+06 426972 477104. 1650.88 1.03 0.147755 0.130746 21682 110474 -1 2149 22 1293 2235 188727 40735 3.26557 3.26557 -111.993 -3.26557 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0339929 0.0297509 134 88 29 29 85 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.14 vpr 54.71 MiB 0.03 7036 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 16.8 MiB 0.17 937 11048 2797 7564 687 55.4 MiB 0.18 0.00 4.21976 -143.232 -4.21976 4.21976 0.84 0.000845019 0.000781867 0.052292 0.0484173 32 2275 21 6.64007e+06 276276 554710. 1919.41 1.05 0.152423 0.134991 22834 132086 -1 1948 22 2010 3004 285694 58969 3.78563 3.78563 -146.058 -3.78563 0 0 701300. 2426.64 0.24 0.11 0.13 -1 -1 0.24 0.0354897 0.0311509 152 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.59 vpr 54.75 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30668 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 16.8 MiB 0.25 1070 15876 4480 9346 2050 55.4 MiB 0.21 0.00 4.25856 -146.098 -4.25856 4.25856 0.77 0.000369057 0.000336039 0.0443623 0.0407402 32 2633 21 6.64007e+06 452088 554710. 1919.41 1.08 0.137104 0.121219 22834 132086 -1 2320 17 1590 2584 216767 44248 3.73543 3.73543 -145.118 -3.73543 0 0 701300. 2426.64 0.27 0.09 0.13 -1 -1 0.27 0.0297888 0.0262733 154 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.41 vpr 54.57 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30568 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 16.4 MiB 0.15 863 8856 1892 6516 448 55.1 MiB 0.13 0.00 3.4749 -121.747 -3.4749 3.4749 0.77 0.000743949 0.00068837 0.0325188 0.0300334 32 2058 17 6.64007e+06 401856 554710. 1919.41 0.96 0.114741 0.100968 22834 132086 -1 1842 20 1242 1876 166457 34440 2.96097 2.96097 -120.151 -2.96097 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0278269 0.0243707 122 65 32 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.35 vpr 54.77 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30484 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.4 MiB 0.19 821 8336 2395 4162 1779 55.1 MiB 0.13 0.00 3.72326 -116.749 -3.72326 3.72326 0.76 0.000736886 0.000681469 0.0382128 0.0353985 32 1972 19 6.64007e+06 213486 554710. 1919.41 0.96 0.122812 0.108253 22834 132086 -1 1707 20 978 1859 143974 31372 2.80457 2.80457 -110.947 -2.80457 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0285257 0.0249251 109 90 0 0 89 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.72 vpr 54.73 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30432 -1 -1 35 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 16.6 MiB 0.16 985 17635 4923 10695 2017 55.2 MiB 0.27 0.01 3.4529 -110.073 -3.4529 3.4529 0.76 0.000785243 0.000727243 0.0654247 0.0605732 26 2684 26 6.64007e+06 439530 477104. 1650.88 1.43 0.166885 0.148135 21682 110474 -1 2220 20 1365 2194 191918 40499 3.08837 3.08837 -120.015 -3.08837 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0310236 0.0272106 139 60 60 30 57 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.19 vpr 54.58 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30440 -1 -1 32 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 16.3 MiB 0.10 939 14996 4215 8524 2257 55.1 MiB 0.21 0.00 4.39198 -124.88 -4.39198 4.39198 0.77 0.000724781 0.000671595 0.0549495 0.0508927 26 2381 25 6.64007e+06 401856 477104. 1650.88 1.35 0.146664 0.12987 21682 110474 -1 2095 20 1524 2377 201285 41059 3.82983 3.82983 -130.25 -3.82983 0 0 585099. 2024.56 0.20 0.08 0.11 -1 -1 0.20 0.02843 0.0249307 134 34 84 28 28 28 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 54.66 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30152 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 16.4 MiB 0.18 846 13731 4520 7348 1863 55.1 MiB 0.19 0.00 3.5343 -117.296 -3.5343 3.5343 0.76 0.000701549 0.000649181 0.0575574 0.0532801 32 1932 20 6.64007e+06 238602 554710. 1919.41 0.95 0.139509 0.123805 22834 132086 -1 1827 18 1277 2121 203414 40290 2.87997 2.87997 -111.353 -2.87997 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0254371 0.0222884 114 63 30 30 60 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.36 vpr 54.84 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30376 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56404 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 16.4 MiB 0.19 892 11281 2807 6986 1488 55.1 MiB 0.16 0.00 3.6865 -117.315 -3.6865 3.6865 0.76 0.000759841 0.00070217 0.0513499 0.0474927 30 1862 18 6.64007e+06 213486 526063. 1820.29 0.92 0.136713 0.121037 22546 126617 -1 1659 20 838 1416 107695 22122 2.67977 2.67977 -105.908 -2.67977 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0293588 0.0257162 114 91 0 0 91 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.31 vpr 54.75 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30468 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 16.3 MiB 0.09 1121 19124 6194 10224 2706 55.0 MiB 0.27 0.01 4.18856 -139.706 -4.18856 4.18856 0.76 0.000752082 0.000696388 0.0647423 0.0598959 32 2534 23 6.64007e+06 464646 554710. 1919.41 1.02 0.157324 0.139956 22834 132086 -1 2166 19 1634 2708 233894 46812 3.55843 3.55843 -135.087 -3.55843 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0288544 0.0253978 152 4 124 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.64 vpr 54.97 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30592 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 16.8 MiB 0.19 1037 18660 5257 10625 2778 55.5 MiB 0.27 0.01 4.17032 -143.358 -4.17032 4.17032 0.78 0.000844456 0.000781874 0.0710996 0.0657299 32 2570 26 6.64007e+06 452088 554710. 1919.41 1.04 0.176695 0.156939 22834 132086 -1 2140 20 1754 2899 238779 48640 3.71763 3.71763 -140.268 -3.71763 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0332446 0.0292333 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.46 vpr 55.26 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 16.7 MiB 0.18 1085 15876 4268 10377 1231 55.4 MiB 0.23 0.01 4.15553 -144.194 -4.15553 4.15553 0.77 0.000852727 0.000789213 0.0613083 0.0566655 32 2694 21 6.64007e+06 452088 554710. 1919.41 1.02 0.161562 0.143425 22834 132086 -1 2282 20 1645 2600 214669 45071 3.61523 3.61523 -143.311 -3.61523 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0333719 0.0293478 153 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.51 vpr 54.84 MiB 0.05 7064 -1 -1 1 0.04 -1 -1 30584 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 16.7 MiB 0.16 963 9146 1745 6045 1356 55.4 MiB 0.13 0.00 4.17056 -135.219 -4.17056 4.17056 0.81 0.000835895 0.000772845 0.0355786 0.0329488 28 3561 44 6.64007e+06 477204 500653. 1732.36 7.01 0.265532 0.230832 21970 115934 -1 2369 21 1594 2612 215389 49614 3.76763 3.76763 -142.084 -3.76763 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0341101 0.0299495 149 65 60 30 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.11 vpr 54.34 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30532 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 16.2 MiB 0.12 840 12856 4254 6466 2136 54.9 MiB 0.17 0.00 3.4921 -115.538 -3.4921 3.4921 0.81 0.000671915 0.000621655 0.0529434 0.049107 32 1996 21 6.64007e+06 238602 554710. 1919.41 0.96 0.132492 0.11756 22834 132086 -1 1773 19 1143 1842 158697 33216 2.79557 2.79557 -113.228 -2.79557 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.026909 0.0236699 113 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.38 vpr 54.98 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30552 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 16.3 MiB 0.17 996 13127 3599 7422 2106 55.1 MiB 0.19 0.00 4.20393 -135.69 -4.20393 4.20393 0.83 0.000813428 0.000752578 0.0567154 0.052451 26 2541 24 6.64007e+06 301392 477104. 1650.88 1.24 0.157766 0.139846 21682 110474 -1 2282 21 1888 2757 268466 56063 4.03823 4.03823 -144.563 -4.03823 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0327395 0.0287319 146 63 60 30 60 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.76 vpr 55.01 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 31016 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 17.0 MiB 0.26 1061 10232 2187 7405 640 55.2 MiB 0.17 0.01 4.16036 -143.59 -4.16036 4.16036 0.77 0.000922705 0.000854495 0.0415034 0.0384252 26 3226 32 6.64007e+06 514878 477104. 1650.88 1.93 0.166967 0.146803 21682 110474 -1 2476 20 1868 3072 269793 55372 3.87763 3.87763 -151.022 -3.87763 0 0 585099. 2024.56 0.20 0.11 0.07 -1 -1 0.20 0.0360754 0.0315705 156 127 0 0 128 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.72 vpr 54.99 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30672 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 16.8 MiB 0.13 924 14769 3776 9247 1746 55.4 MiB 0.23 0.00 4.18868 -135.93 -4.18868 4.18868 0.77 0.000856064 0.000791787 0.0616353 0.0570366 32 2460 22 6.64007e+06 414414 554710. 1919.41 1.02 0.164491 0.146016 22834 132086 -1 1978 17 1404 2244 169332 38455 4.00803 4.00803 -142.511 -4.00803 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0292602 0.0257403 148 94 31 31 93 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.33 vpr 55.14 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30480 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 16.7 MiB 0.15 973 15004 4033 8498 2473 55.4 MiB 0.22 0.00 3.6693 -113.052 -3.6693 3.6693 0.76 0.00082077 0.000757272 0.0607605 0.0561777 32 2172 19 6.64007e+06 401856 554710. 1919.41 0.97 0.155357 0.137818 22834 132086 -1 1892 19 1215 1923 147453 31619 2.83877 2.83877 -109.741 -2.83877 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0308134 0.0270299 138 92 26 26 90 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.21 vpr 54.78 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 16.7 MiB 0.28 1125 9725 2385 6614 726 55.4 MiB 0.19 0.00 4.21673 -144.443 -4.21673 4.21673 0.77 0.000846496 0.000783472 0.0463563 0.0429717 30 2730 23 6.64007e+06 276276 526063. 1820.29 1.07 0.152355 0.134686 22546 126617 -1 2455 16 1602 2713 201279 42132 3.62323 3.62323 -147.08 -3.62323 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0282316 0.0249656 155 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.21 vpr 54.98 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 16.5 MiB 0.15 964 18079 5189 10710 2180 55.0 MiB 0.24 0.00 3.5353 -109.312 -3.5353 3.5353 0.76 0.000794188 0.00073489 0.067045 0.0618713 32 2091 19 6.64007e+06 452088 554710. 1919.41 0.98 0.158057 0.140393 22834 132086 -1 1857 17 1318 2104 176594 37334 2.88277 2.88277 -107.59 -2.88277 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0274125 0.0241049 136 88 26 26 85 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.06 vpr 54.40 MiB 0.05 6800 -1 -1 1 0.03 -1 -1 30400 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 16.3 MiB 0.06 799 9356 2113 6168 1075 54.7 MiB 0.14 0.00 3.4921 -122.483 -3.4921 3.4921 0.76 0.000674277 0.000624681 0.0381598 0.0353873 32 1970 18 6.64007e+06 213486 554710. 1919.41 0.93 0.11433 0.101007 22834 132086 -1 1722 19 1236 1879 153670 32586 2.78457 2.78457 -118.361 -2.78457 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0253722 0.022278 115 3 96 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.89 vpr 54.91 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30536 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 16.7 MiB 0.29 992 16743 5741 8435 2567 55.5 MiB 0.25 0.01 4.25856 -144.485 -4.25856 4.25856 0.77 0.000854802 0.00079042 0.065366 0.0604426 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.14 0.172145 0.152768 21970 115934 -1 2249 19 1648 2538 223427 46806 3.85563 3.85563 -146.969 -3.85563 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.032117 0.028281 152 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.51 vpr 55.19 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 16.6 MiB 0.19 1054 17367 5167 10302 1898 55.3 MiB 0.28 0.00 4.21976 -145.962 -4.21976 4.21976 0.76 0.000844963 0.000782004 0.0796422 0.0737507 32 2455 22 6.64007e+06 288834 554710. 1919.41 1.02 0.181464 0.161911 22834 132086 -1 2069 23 1972 3269 286951 63259 3.70883 3.70883 -142.906 -3.70883 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0372398 0.0326757 158 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.56 vpr 54.79 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30484 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.4 MiB 0.17 691 7975 1531 6145 299 55.0 MiB 0.12 0.00 3.6913 -111.241 -3.6913 3.6913 0.76 0.00068995 0.000637907 0.028122 0.0260038 26 2401 39 6.64007e+06 376740 477104. 1650.88 1.45 0.12997 0.113532 21682 110474 -1 1756 18 874 1420 120932 28308 2.87797 2.87797 -110.849 -2.87797 0 0 585099. 2024.56 0.21 0.06 0.11 -1 -1 0.21 0.0247273 0.0216356 112 55 32 32 54 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.01 vpr 54.27 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55976 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.3 MiB 0.08 653 13381 4684 6039 2658 54.7 MiB 0.18 0.00 3.5533 -116.629 -3.5533 3.5533 0.76 0.000642459 0.000594397 0.051322 0.0475052 32 1926 23 6.64007e+06 226044 554710. 1919.41 0.96 0.130668 0.115801 22834 132086 -1 1661 20 1392 2142 187943 42705 3.31857 3.31857 -122.203 -3.31857 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0256599 0.0224773 118 4 93 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.32 vpr 55.10 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30296 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 16.6 MiB 0.17 927 16303 4785 8793 2725 55.2 MiB 0.23 0.00 4.16476 -135.871 -4.16476 4.16476 0.76 0.00079929 0.000739356 0.0617919 0.0571325 32 2298 20 6.64007e+06 414414 554710. 1919.41 0.99 0.155719 0.13824 22834 132086 -1 1988 19 1385 2027 190856 40270 3.64283 3.64283 -131.747 -3.64283 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0303367 0.0266422 139 59 60 32 58 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.48 vpr 55.06 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 16.6 MiB 0.12 1051 17397 5163 9750 2484 55.3 MiB 0.26 0.00 4.41596 -136.112 -4.41596 4.41596 0.80 0.000831536 0.000763992 0.0702514 0.0649255 26 3045 25 6.64007e+06 401856 477104. 1650.88 1.61 0.177301 0.15745 21682 110474 -1 2339 21 1597 2558 224361 46433 3.93722 3.93722 -138.517 -3.93722 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0339183 0.029735 136 88 28 28 88 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.10 vpr 55.12 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30524 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 17.1 MiB 0.09 1159 10441 2545 7247 649 55.3 MiB 0.19 0.01 4.95022 -163.094 -4.95022 4.95022 0.85 0.000869739 0.000805211 0.0414468 0.038377 32 3386 23 6.64007e+06 464646 554710. 1919.41 1.21 0.148218 0.131243 22834 132086 -1 2752 20 2117 3334 320799 67756 4.55248 4.55248 -166.223 -4.55248 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0349717 0.0309021 179 3 156 32 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.18 vpr 54.66 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 16.4 MiB 0.16 813 9732 2096 6039 1597 55.2 MiB 0.13 0.00 3.7815 -111.41 -3.7815 3.7815 0.76 0.000603328 0.000548645 0.0382819 0.0353172 28 2552 38 6.64007e+06 426972 500653. 1732.36 1.88 0.161826 0.142785 21970 115934 -1 1835 22 1390 2204 176608 40764 3.16737 3.16737 -112.457 -3.16737 0 0 612192. 2118.31 0.22 0.09 0.12 -1 -1 0.22 0.0337088 0.0295725 138 59 60 30 56 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.02 vpr 54.31 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55860 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 15.9 MiB 0.09 529 12292 5081 5761 1450 54.6 MiB 0.13 0.00 3.54427 -98.353 -3.54427 3.54427 0.76 0.000614139 0.000568389 0.0471092 0.0436081 32 1616 46 6.64007e+06 263718 554710. 1919.41 1.25 0.141701 0.124962 22834 132086 -1 1299 20 1130 1608 165142 36694 3.04217 3.04217 -98.8483 -3.04217 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0243411 0.0215216 107 34 54 27 27 27 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.55 vpr 54.98 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30624 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 17.1 MiB 0.17 1462 20856 5895 12562 2399 55.5 MiB 0.37 0.01 4.52196 -148.077 -4.52196 4.52196 0.76 0.0010109 0.000937167 0.0873502 0.0809663 30 3568 23 6.64007e+06 527436 526063. 1820.29 1.12 0.207159 0.184434 22546 126617 -1 2796 23 1949 3557 274079 54644 3.84562 3.84562 -147.767 -3.84562 0 0 666494. 2306.21 0.24 0.12 0.13 -1 -1 0.24 0.0408582 0.0358096 186 95 62 31 95 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.27 vpr 55.17 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30684 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 16.8 MiB 0.25 998 12919 3192 8538 1189 55.5 MiB 0.21 0.00 4.42996 -140.975 -4.42996 4.42996 0.77 0.000907671 0.00084059 0.0658736 0.061071 32 2482 22 6.64007e+06 276276 554710. 1919.41 1.03 0.173696 0.153979 22834 132086 -1 2164 20 1512 2516 208462 45637 3.69562 3.69562 -141.495 -3.69562 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.035349 0.0309278 145 124 0 0 124 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.38 vpr 54.72 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 16.2 MiB 0.23 894 11948 3681 7128 1139 55.1 MiB 0.17 0.00 3.6755 -115.703 -3.6755 3.6755 0.76 0.000743117 0.000686532 0.0552658 0.0511078 32 1971 18 6.64007e+06 200928 554710. 1919.41 0.94 0.139483 0.123641 22834 132086 -1 1736 18 935 1525 132412 28338 2.76777 2.76777 -114.82 -2.76777 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0271817 0.0238583 108 89 0 0 89 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.90 vpr 54.80 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30328 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 16.7 MiB 0.08 1023 18745 6322 9498 2925 55.4 MiB 0.27 0.01 4.46396 -140.121 -4.46396 4.46396 0.77 0.00079069 0.000731504 0.0697392 0.0644844 28 2993 24 6.64007e+06 414414 500653. 1732.36 1.44 0.16949 0.150715 21970 115934 -1 2307 18 1382 2117 188657 40217 3.82202 3.82202 -138.126 -3.82202 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0290818 0.0255795 147 34 90 30 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.74 vpr 55.06 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30684 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 17.0 MiB 0.14 1135 20076 5790 11566 2720 55.3 MiB 0.31 0.01 4.51716 -144.659 -4.51716 4.51716 0.76 0.000941978 0.000872675 0.08332 0.0771783 32 2660 18 6.64007e+06 477204 554710. 1919.41 1.01 0.189245 0.168583 22834 132086 -1 2307 19 1782 2750 235942 50128 3.68462 3.68462 -138.576 -3.68462 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0345815 0.0303694 173 64 87 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.66 vpr 54.72 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30456 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56768 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 16.8 MiB 0.12 923 11484 2608 8162 714 55.4 MiB 0.19 0.00 3.73061 -110.59 -3.73061 3.73061 0.76 0.00078134 0.00072276 0.0438355 0.0405453 26 2813 30 6.64007e+06 426972 477104. 1650.88 1.73 0.149903 0.132052 21682 110474 -1 2128 18 1435 2401 224301 66762 3.22357 3.22357 -116.11 -3.22357 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0285717 0.0251097 135 61 58 30 58 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.60 vpr 55.14 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30572 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 16.7 MiB 0.15 1008 13516 3637 9135 744 55.1 MiB 0.22 0.01 4.19956 -142.899 -4.19956 4.19956 0.77 0.000842544 0.000779151 0.0483901 0.0447175 28 2763 25 6.64007e+06 539994 500653. 1732.36 1.15 0.153263 0.135251 21970 115934 -1 2104 18 1685 2796 218922 48113 3.85803 3.85803 -147.485 -3.85803 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0306878 0.0270353 158 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.65 vpr 55.08 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30520 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 16.8 MiB 0.10 988 17184 5218 8807 3159 55.4 MiB 0.13 0.00 3.62559 -123.648 -3.62559 3.62559 0.61 0.000360777 0.000328527 0.027554 0.025151 28 2903 50 6.64007e+06 502320 500653. 1732.36 1.59 0.164059 0.142876 21970 115934 -1 2292 17 1376 2114 212165 44500 3.14237 3.14237 -126.049 -3.14237 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0293224 0.0258379 157 65 63 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.18 vpr 54.46 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30420 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 16.0 MiB 0.08 573 13430 5649 6739 1042 54.9 MiB 0.15 0.00 3.6785 -105.931 -3.6785 3.6785 0.76 0.0006492 0.000600675 0.0538404 0.0498401 28 1569 22 6.64007e+06 226044 500653. 1732.36 1.04 0.131694 0.116627 21970 115934 -1 1356 19 862 1223 110473 24491 2.84977 2.84977 -102.552 -2.84977 0 0 612192. 2118.31 0.21 0.06 0.12 -1 -1 0.21 0.024719 0.0216198 95 34 58 29 29 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.38 vpr 54.83 MiB 0.05 6964 -1 -1 1 0.03 -1 -1 30180 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 16.2 MiB 0.18 857 11783 4174 5528 2081 55.2 MiB 0.16 0.00 4.00656 -110.848 -4.00656 4.00656 0.76 0.000710823 0.000656742 0.0500372 0.0463103 30 1904 16 6.64007e+06 238602 526063. 1820.29 0.91 0.128872 0.114136 22546 126617 -1 1617 18 635 905 67187 14496 2.71823 2.71823 -103.618 -2.71823 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0254972 0.0223597 112 82 0 0 82 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.28 vpr 54.80 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30532 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 16.7 MiB 0.12 1100 13261 3564 8068 1629 55.3 MiB 0.17 0.00 4.80256 -145.153 -4.80256 4.80256 0.81 0.000570341 0.000519715 0.0425557 0.0393304 26 3252 47 6.64007e+06 477204 477104. 1650.88 6.11 0.267921 0.233066 21682 110474 -1 2549 21 1658 2761 260816 54095 3.99883 3.99883 -151.282 -3.99883 0 0 585099. 2024.56 0.20 0.10 0.12 -1 -1 0.20 0.032441 0.0284746 151 34 93 31 31 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.38 vpr 54.59 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30472 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56296 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.3 MiB 0.19 620 10442 2502 7352 588 55.0 MiB 0.14 0.00 3.6803 -100.526 -3.6803 3.6803 0.78 0.000455499 0.000414222 0.0282412 0.0258569 26 1915 43 6.64007e+06 389298 477104. 1650.88 1.29 0.120643 0.105436 21682 110474 -1 1571 20 1030 1716 144162 32648 2.85877 2.85877 -102.793 -2.85877 0 0 585099. 2024.56 0.21 0.07 0.12 -1 -1 0.21 0.0254787 0.0221957 108 56 29 29 52 26 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.19 vpr 54.44 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30284 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 16.1 MiB 0.15 691 13906 4599 7385 1922 55.0 MiB 0.20 0.00 3.53127 -120.288 -3.53127 3.53127 0.76 0.000702575 0.000649929 0.0582363 0.0539222 32 2095 22 6.64007e+06 213486 554710. 1919.41 1.03 0.145111 0.129035 22834 132086 -1 1668 19 1407 2186 197304 41205 2.94077 2.94077 -119.677 -2.94077 0 0 701300. 2426.64 0.27 0.07 0.14 -1 -1 0.27 0.0232599 0.0205162 118 34 64 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.17 vpr 54.98 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30472 -1 -1 38 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 16.7 MiB 0.15 999 13261 3446 8635 1180 55.2 MiB 0.19 0.00 3.5665 -119.865 -3.5665 3.5665 0.76 0.000812603 0.000751465 0.0488841 0.0451447 30 2032 21 6.64007e+06 477204 526063. 1820.29 0.97 0.145446 0.128635 22546 126617 -1 1839 19 1324 1951 150453 31193 2.83197 2.83197 -113.787 -2.83197 0 0 666494. 2306.21 0.25 0.08 0.13 -1 -1 0.25 0.0307327 0.0270376 144 64 58 31 62 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.16 vpr 54.71 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30340 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 16.2 MiB 0.16 869 9368 2508 6076 784 54.9 MiB 0.13 0.00 3.34153 -105.882 -3.34153 3.34153 0.77 0.000684729 0.000633443 0.0391923 0.0362852 32 1956 21 6.64007e+06 213486 554710. 1919.41 0.95 0.119532 0.105317 22834 132086 -1 1754 20 943 1606 136844 27949 2.65277 2.65277 -106.702 -2.65277 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0266702 0.0232931 106 55 31 31 53 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.49 vpr 54.89 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30464 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 16.4 MiB 0.15 879 9865 2512 6573 780 55.3 MiB 0.15 0.00 3.57229 -117.612 -3.57229 3.57229 0.76 0.00108875 0.00102709 0.0387722 0.0358852 28 2688 46 6.64007e+06 414414 500653. 1732.36 1.46 0.163184 0.143048 21970 115934 -1 2021 15 1111 1761 143964 31959 3.18237 3.18237 -122.994 -3.18237 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0254499 0.0224668 137 65 52 26 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.46 vpr 54.99 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30500 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 16.7 MiB 0.26 875 10540 2287 7686 567 55.4 MiB 0.17 0.01 3.79366 -119.555 -3.79366 3.79366 0.76 0.000852893 0.000789021 0.0417851 0.0386404 30 2106 18 6.64007e+06 464646 526063. 1820.29 1.00 0.139588 0.123159 22546 126617 -1 1757 17 1247 1745 132285 28565 2.98817 2.98817 -114.179 -2.98817 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0297191 0.0261556 149 93 31 31 92 31 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.24 vpr 54.52 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.3 MiB 0.14 816 8626 2345 5890 391 55.0 MiB 0.14 0.00 3.06096 -106.925 -3.06096 3.06096 0.77 0.000718723 0.000664524 0.037211 0.0344456 32 2025 20 6.64007e+06 226044 554710. 1919.41 0.95 0.121381 0.107065 22834 132086 -1 1791 20 1193 1881 168065 35151 2.77777 2.77777 -108.652 -2.77777 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0282863 0.0247209 115 61 32 32 60 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.23 vpr 54.77 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.3 MiB 0.19 920 11296 3024 7326 946 55.0 MiB 0.17 0.00 3.5031 -121.121 -3.5031 3.5031 0.76 0.000731866 0.000677406 0.0488628 0.0452308 30 2134 20 6.64007e+06 226044 526063. 1820.29 0.96 0.135317 0.119851 22546 126617 -1 1947 20 1181 1959 148565 31249 2.75977 2.75977 -115.023 -2.75977 0 0 666494. 2306.21 0.24 0.08 0.13 -1 -1 0.24 0.0290787 0.02552 121 63 32 32 62 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.24 vpr 55.02 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30692 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 16.7 MiB 0.09 1027 12240 2965 8371 904 55.5 MiB 0.19 0.00 4.25676 -144.495 -4.25676 4.25676 0.76 0.000842872 0.000779515 0.0461471 0.0426736 32 2511 30 6.64007e+06 477204 554710. 1919.41 1.09 0.156682 0.138289 22834 132086 -1 2178 22 1875 2807 281395 62206 3.93183 3.93183 -146.792 -3.93183 0 0 701300. 2426.64 0.24 0.11 0.13 -1 -1 0.24 0.0353936 0.0310483 156 65 64 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.20 vpr 54.78 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30536 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 16.4 MiB 0.14 1021 16079 4076 10280 1723 55.3 MiB 0.14 0.00 3.7925 -111.563 -3.7925 3.7925 0.75 0.000776383 0.000718634 0.0285531 0.0261759 32 2168 20 6.64007e+06 426972 554710. 1919.41 0.93 0.1188 0.104071 22834 132086 -1 1959 20 1165 1814 145516 30813 3.04717 3.04717 -110.394 -3.04717 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0305189 0.0267605 135 62 56 29 58 29 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.76 vpr 55.21 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30816 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57084 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 16.8 MiB 0.27 937 9020 1835 6701 484 55.7 MiB 0.16 0.01 4.29776 -145.038 -4.29776 4.29776 0.76 0.000940385 0.000870723 0.0380618 0.0352575 32 2585 22 6.64007e+06 489762 554710. 1919.41 1.04 0.149517 0.13134 22834 132086 -1 2165 21 1771 2655 239893 52602 3.90583 3.90583 -148.672 -3.90583 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0381865 0.0334373 158 127 0 0 128 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.93 vpr 54.35 MiB 0.04 6748 -1 -1 1 0.03 -1 -1 30288 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55848 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 15.9 MiB 0.07 804 11948 3966 6404 1578 54.5 MiB 0.15 0.00 3.08296 -103.61 -3.08296 3.08296 0.76 0.000638687 0.000591765 0.0471357 0.0435489 32 1825 19 6.64007e+06 213486 554710. 1919.41 0.92 0.118519 0.104899 22834 132086 -1 1638 16 849 1364 119890 26191 2.76997 2.76997 -106.858 -2.76997 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0210301 0.0185012 106 4 85 31 0 0 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.20 vpr 55.03 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 16.6 MiB 0.13 998 18111 4956 10747 2408 55.3 MiB 0.26 0.00 4.26296 -139.632 -4.26296 4.26296 0.83 0.000847902 0.000784025 0.0703706 0.0650578 26 2599 21 6.64007e+06 439530 477104. 1650.88 1.29 0.172179 0.152925 21682 110474 -1 2225 21 1573 2185 205524 42227 3.92723 3.92723 -141.021 -3.92723 0 0 585099. 2024.56 0.20 0.09 0.12 -1 -1 0.20 0.0347166 0.030452 144 92 28 28 92 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.30 vpr 54.70 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30224 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56420 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 16.3 MiB 0.30 734 13381 4309 7077 1995 55.1 MiB 0.09 0.00 3.54047 -121.881 -3.54047 3.54047 0.87 0.00032969 0.000301035 0.0273544 0.0250223 28 1926 23 6.64007e+06 213486 500653. 1732.36 0.93 0.116311 0.101721 21970 115934 -1 1696 19 1184 1716 151042 32013 2.92797 2.92797 -119.51 -2.92797 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0289001 0.025311 114 96 0 0 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.59 vpr 54.92 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30488 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1102 9501 2041 6911 549 55.5 MiB 0.16 0.01 3.5841 -124.322 -3.5841 3.5841 0.76 0.000836951 0.000774225 0.0365075 0.0338079 30 2349 17 6.64007e+06 464646 526063. 1820.29 1.00 0.129348 0.114201 22546 126617 -1 2008 22 1251 1621 132354 27613 2.79797 2.79797 -118.014 -2.79797 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0356528 0.0312833 151 65 61 32 64 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.87 vpr 55.08 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30772 -1 -1 45 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 17.1 MiB 0.24 1244 16489 4012 10933 1544 55.6 MiB 0.27 0.01 4.96651 -168.366 -4.96651 4.96651 0.76 0.00100534 0.000930862 0.0671385 0.0621539 26 3418 26 6.64007e+06 565110 477104. 1650.88 1.90 0.200284 0.177609 21682 110474 -1 2791 22 2536 3984 345977 69940 4.51068 4.51068 -170.322 -4.51068 0 0 585099. 2024.56 0.20 0.13 0.12 -1 -1 0.20 0.0429309 0.0377012 188 96 64 32 96 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.10 vpr 54.18 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30176 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55748 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 15.8 MiB 0.09 483 10509 2545 7262 702 54.4 MiB 0.10 0.00 2.73878 -81.5531 -2.73878 2.73878 0.77 0.000579455 0.000535662 0.0391392 0.0362029 28 1347 20 6.64007e+06 188370 500653. 1732.36 0.91 0.106043 0.0932648 21970 115934 -1 1158 15 603 804 64649 15968 2.05711 2.05711 -81.0144 -2.05711 0 0 612192. 2118.31 0.21 0.04 0.12 -1 -1 0.21 0.0176868 0.015449 83 56 0 0 53 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.15 vpr 54.39 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30380 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56052 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 16.3 MiB 0.08 793 10388 3558 5136 1694 54.7 MiB 0.13 0.00 3.6815 -114.291 -3.6815 3.6815 0.76 0.000676019 0.000626094 0.0441256 0.040936 32 1609 19 6.64007e+06 213486 554710. 1919.41 0.93 0.122014 0.108029 22834 132086 -1 1518 17 879 1277 129507 26561 2.77177 2.77177 -110.345 -2.77177 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0234433 0.0205802 97 34 60 30 30 30 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.07 vpr 54.66 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30116 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.2 MiB 0.10 798 13966 5020 6560 2386 54.9 MiB 0.20 0.00 3.4859 -119.604 -3.4859 3.4859 0.77 0.000699509 0.000646924 0.0575643 0.0532592 32 2353 24 6.64007e+06 226044 554710. 1919.41 1.03 0.144143 0.127857 22834 132086 -1 1951 18 1384 2432 200953 44767 3.04997 3.04997 -122.164 -3.04997 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.025496 0.0223864 126 34 64 32 32 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.48 vpr 54.26 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 16.0 MiB 0.06 678 12127 3168 7672 1287 54.6 MiB 0.14 0.00 3.4089 -91.215 -3.4089 3.4089 0.76 0.00057981 0.000537179 0.0362814 0.0336445 26 1683 18 6.64007e+06 426972 477104. 1650.88 1.03 0.10127 0.0891769 21682 110474 -1 1509 19 990 1459 130073 27396 2.96197 2.96197 -96.4633 -2.96197 0 0 585099. 2024.56 0.20 0.06 0.11 -1 -1 0.20 0.0217385 0.018927 103 34 50 25 25 25 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.29 vpr 54.97 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30500 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56840 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 16.8 MiB 0.16 1064 14828 5337 7470 2021 55.5 MiB 0.25 0.00 4.34676 -140.278 -4.34676 4.34676 0.76 0.000870576 0.000804173 0.0713815 0.0659953 32 2396 23 6.64007e+06 276276 554710. 1919.41 1.02 0.177715 0.157649 22834 132086 -1 2083 20 1488 2616 200523 41667 3.54023 3.54023 -135.597 -3.54023 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0345201 0.0302911 149 94 32 32 94 32 + fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.49 vpr 55.07 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30448 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 16.7 MiB 0.17 786 10336 2273 7345 718 55.4 MiB 0.17 0.01 3.53327 -114.261 -3.53327 3.53327 0.76 0.000867255 0.00079527 0.0410902 0.0379467 28 2288 43 6.64007e+06 489762 500653. 1732.36 1.78 0.169793 0.148782 21970 115934 -1 2000 23 1875 2848 305281 74978 3.41997 3.41997 -125.343 -3.41997 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.03728 0.0326308 148 94 29 29 93 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.70 vpr 54.73 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30936 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56400 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 16.9 MiB 0.20 984 7523 1506 5708 309 55.1 MiB 0.15 0.01 3.92206 -133.487 -3.92206 3.92206 0.76 0.000882253 0.000816535 0.0327614 0.0303124 34 2600 22 6.65987e+06 431052 585099. 2024.56 3.35 0.253178 0.219809 23122 138558 -1 2232 22 1628 2696 242519 52913 3.50811 3.50811 -133.542 -3.50811 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0374536 0.0328364 151 96 32 32 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.30 vpr 54.86 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30592 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56500 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 16.6 MiB 0.32 986 12323 4513 6271 1539 55.2 MiB 0.21 0.00 4.33507 -129.747 -4.33507 4.33507 0.76 0.000833823 0.00076441 0.0594747 0.0550275 32 2555 27 6.65987e+06 266238 554710. 1919.41 1.05 0.164972 0.146084 22834 132086 -1 2079 21 1676 2772 286112 58972 3.71671 3.71671 -129.818 -3.71671 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0354802 0.0311301 140 91 30 30 89 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.83 vpr 54.48 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 30380 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 16.6 MiB 0.14 1040 16523 4439 10256 1828 55.4 MiB 0.23 0.00 3.41879 -119.689 -3.41879 3.41879 0.87 0.00080532 0.000744402 0.0623837 0.0577126 28 2533 20 6.65987e+06 431052 500653. 1732.36 1.14 0.157707 0.140066 21970 115934 -1 2189 20 1475 2439 218518 45467 3.03845 3.03845 -122.246 -3.03845 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0322406 0.028341 141 65 54 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.24 vpr 54.49 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30640 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 16.4 MiB 0.10 793 11603 2857 6819 1927 55.0 MiB 0.15 0.00 4.2977 -123.649 -4.2977 4.2977 0.87 0.000745168 0.000689509 0.0475697 0.043981 36 2029 24 6.65987e+06 278916 612192. 2118.31 3.84 0.256651 0.223375 23410 145293 -1 1678 22 1406 2401 203638 45318 3.66657 3.66657 -120.541 -3.66657 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0324962 0.0285882 138 34 87 29 29 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.77 vpr 54.49 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30428 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 16.6 MiB 0.19 1026 15456 4961 8586 1909 55.3 MiB 0.25 0.00 4.14936 -143.085 -4.14936 4.14936 0.84 0.000805455 0.000745005 0.0591899 0.0542699 32 2888 21 6.65987e+06 253560 554710. 1919.41 1.10 0.156928 0.13899 22834 132086 -1 2439 22 2106 3807 350055 76089 3.75443 3.75443 -149.423 -3.75443 0 0 701300. 2426.64 0.24 0.12 0.13 -1 -1 0.24 0.0346925 0.0305181 151 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.36 vpr 54.98 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 16.5 MiB 0.20 1029 9501 1978 7135 388 54.9 MiB 0.16 0.01 3.43623 -117.882 -3.43623 3.43623 0.85 0.000841164 0.000776343 0.0355234 0.0327888 32 2586 24 6.65987e+06 469086 554710. 1919.41 1.03 0.141276 0.12442 22834 132086 -1 2136 19 1312 2071 187228 39708 2.85871 2.85871 -119.202 -2.85871 0 0 701300. 2426.64 0.23 0.08 0.14 -1 -1 0.23 0.031712 0.0279105 154 64 63 32 63 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.21 vpr 54.19 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30604 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55744 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 15.8 MiB 0.17 580 13026 4344 6329 2353 54.4 MiB 0.17 0.00 3.7565 -98.351 -3.7565 3.7565 0.76 0.000622843 0.000576743 0.0504186 0.046712 30 1446 19 6.65987e+06 240882 526063. 1820.29 0.89 0.121986 0.108172 22546 126617 -1 1147 16 627 1086 81870 17842 2.66237 2.66237 -89.6469 -2.66237 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0209329 0.0184077 96 34 54 27 27 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.95 vpr 54.41 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30212 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 16.3 MiB 0.13 1006 10170 2426 6636 1108 54.9 MiB 0.15 0.00 3.27903 -106.33 -3.27903 3.27903 0.76 0.000729109 0.000674007 0.0364133 0.0336853 28 2446 21 6.65987e+06 418374 500653. 1732.36 1.05 0.122771 0.108196 21970 115934 -1 2195 21 1220 2108 168948 36500 2.77785 2.77785 -107.538 -2.77785 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0300199 0.0263449 139 4 115 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.40 vpr 54.55 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30152 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56224 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 16.2 MiB 0.26 870 11571 3268 6617 1686 54.9 MiB 0.16 0.00 3.07084 -101.313 -3.07084 3.07084 0.77 0.000719607 0.000665271 0.0546417 0.050628 32 1805 19 6.65987e+06 202848 554710. 1919.41 0.91 0.137013 0.121575 22834 132086 -1 1615 21 854 1396 116661 25549 2.45705 2.45705 -97.9713 -2.45705 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0292613 0.0255636 105 85 0 0 84 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.48 vpr 54.47 MiB 0.05 6840 -1 -1 1 0.03 -1 -1 30484 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 16.2 MiB 0.25 642 11432 4032 4649 2751 54.9 MiB 0.07 0.00 3.56921 -118.924 -3.56921 3.56921 0.68 0.000300537 0.000273851 0.0218817 0.0200265 36 2023 31 6.65987e+06 202848 612192. 2118.31 2.27 0.171253 0.148094 23410 145293 -1 1511 22 1432 2299 187418 45961 2.94077 2.94077 -110.63 -2.94077 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0304547 0.0266713 121 34 64 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.19 vpr 54.41 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30176 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 16.2 MiB 0.23 784 11571 3060 7609 902 54.8 MiB 0.16 0.00 3.4841 -113.76 -3.4841 3.4841 0.76 0.000704243 0.000650258 0.0504325 0.0466701 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.93 0.132693 0.117403 22834 132086 -1 1528 20 1051 1525 125077 27168 2.84797 2.84797 -108.72 -2.84797 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.02845 0.0249231 110 63 30 30 60 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.30 vpr 54.38 MiB 0.05 6980 -1 -1 1 0.04 -1 -1 30516 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 16.1 MiB 0.21 841 11223 2602 8034 587 54.8 MiB 0.16 0.00 3.27957 -108.894 -3.27957 3.27957 0.77 0.000718538 0.000663911 0.0410342 0.0379736 30 1928 23 6.65987e+06 367662 526063. 1820.29 1.01 0.127564 0.112425 22546 126617 -1 1661 20 982 1609 119815 26510 2.51905 2.51905 -106.481 -2.51905 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0280608 0.0245806 114 65 25 25 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 6.76 vpr 54.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56468 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 16.5 MiB 0.36 1002 18711 5900 10256 2555 55.1 MiB 0.27 0.01 3.50686 -122.446 -3.50686 3.50686 0.76 0.000812293 0.000750882 0.0726455 0.0671266 32 2471 22 6.65987e+06 405696 554710. 1919.41 1.02 0.170313 0.15169 22834 132086 -1 2110 19 1562 2630 232117 50462 3.18117 3.18117 -120.591 -3.18117 0 0 701300. 2426.64 0.23 0.05 0.14 -1 -1 0.23 0.0163975 0.0146131 143 58 64 32 57 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.44 vpr 54.78 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30492 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 16.6 MiB 0.24 942 7973 1567 6126 280 55.0 MiB 0.15 0.01 4.02327 -135.611 -4.02327 4.02327 0.78 0.000845329 0.000782512 0.0330866 0.0306415 32 2763 26 6.65987e+06 431052 554710. 1919.41 1.12 0.140272 0.123326 22834 132086 -1 2301 21 1936 3040 306992 66787 3.93877 3.93877 -147.254 -3.93877 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0350335 0.0308222 156 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.90 vpr 54.21 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30652 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55636 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 15.9 MiB 0.15 686 7177 1709 4538 930 54.3 MiB 0.11 0.00 3.15358 -93.6229 -3.15358 3.15358 0.78 0.000631237 0.000584845 0.0288231 0.0267445 28 1771 18 6.65987e+06 228204 500653. 1732.36 0.88 0.100644 0.0883851 21970 115934 -1 1604 18 1025 1695 140190 31422 2.67639 2.67639 -95.1552 -2.67639 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0231271 0.0202604 107 29 58 29 24 24 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.52 vpr 54.93 MiB 0.02 7080 -1 -1 1 0.04 -1 -1 30420 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1074 13992 4161 7846 1985 55.3 MiB 0.23 0.00 3.5141 -125.301 -3.5141 3.5141 0.76 0.000834453 0.000771648 0.0670568 0.0620786 32 2632 23 6.65987e+06 253560 554710. 1919.41 1.04 0.169071 0.150328 22834 132086 -1 2355 22 1855 3248 342583 71983 3.21037 3.21037 -128.366 -3.21037 0 0 701300. 2426.64 0.24 0.12 0.14 -1 -1 0.24 0.0362767 0.0318975 146 63 64 32 62 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.47 vpr 54.84 MiB 0.02 7104 -1 -1 1 0.04 -1 -1 30508 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 16.6 MiB 0.37 934 18323 6450 8556 3317 55.2 MiB 0.21 0.00 3.6343 -123.732 -3.6343 3.6343 0.77 0.000809964 0.000748893 0.0690604 0.0638641 36 2162 19 6.65987e+06 431052 612192. 2118.31 3.27 0.29192 0.255584 23410 145293 -1 1756 16 1114 1612 157913 32547 2.82271 2.82271 -112.641 -2.82271 0 0 782063. 2706.10 0.26 0.07 0.15 -1 -1 0.26 0.0273937 0.0241947 142 57 64 32 56 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.19 vpr 54.72 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30088 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 16.1 MiB 0.22 832 15430 4777 8349 2304 54.7 MiB 0.21 0.00 2.83964 -101.748 -2.83964 2.83964 0.77 0.000734053 0.00067833 0.0564349 0.0522104 30 1934 17 6.65987e+06 380340 526063. 1820.29 0.94 0.139231 0.123631 22546 126617 -1 1617 15 847 1196 86107 18561 2.15051 2.15051 -96.3351 -2.15051 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.023408 0.0206102 118 65 29 29 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.88 vpr 54.00 MiB 0.05 6660 -1 -1 1 0.03 -1 -1 30156 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55472 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 15.8 MiB 0.10 661 10835 3152 6204 1479 54.2 MiB 0.12 0.00 2.60038 -85.2282 -2.60038 2.60038 0.80 0.000546854 0.00050547 0.0389388 0.0360011 28 1463 18 6.65987e+06 190170 500653. 1732.36 0.95 0.0979899 0.0867377 21970 115934 -1 1318 14 564 830 71903 15423 1.71865 1.71865 -76.5922 -1.71865 0 0 612192. 2118.31 0.22 0.05 0.12 -1 -1 0.22 0.0167725 0.0147203 85 34 24 24 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.40 vpr 54.29 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56192 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 16.2 MiB 0.20 855 13768 4604 7573 1591 54.9 MiB 0.19 0.00 3.94338 -122.155 -3.94338 3.94338 0.76 0.000722006 0.000667728 0.0612587 0.0567259 32 1972 27 6.65987e+06 202848 554710. 1919.41 1.03 0.158267 0.14053 22834 132086 -1 1766 20 997 1544 144870 30566 2.95431 2.95431 -117.826 -2.95431 0 0 701300. 2426.64 0.26 0.07 0.10 -1 -1 0.26 0.0245709 0.0216777 113 64 31 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.16 vpr 54.77 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30280 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 16.6 MiB 0.07 1021 12248 3399 7922 927 55.3 MiB 0.18 0.00 3.9823 -134.861 -3.9823 3.9823 0.76 0.000811767 0.000752333 0.0462129 0.0427794 26 2598 19 6.65987e+06 431052 477104. 1650.88 1.03 0.13872 0.12285 21682 110474 -1 2271 20 1637 2360 234239 49375 3.58751 3.58751 -136.586 -3.58751 0 0 585099. 2024.56 0.21 0.10 0.12 -1 -1 0.21 0.0327585 0.0289377 145 34 91 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.38 vpr 54.94 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30860 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 16.9 MiB 0.30 1084 15644 4587 8678 2379 55.1 MiB 0.24 0.01 3.46744 -121.209 -3.46744 3.46744 0.76 0.000917246 0.000848506 0.0652108 0.0603957 32 2803 25 6.65987e+06 456408 554710. 1919.41 1.05 0.178417 0.157831 22834 132086 -1 2353 20 1566 2368 237026 50182 3.58025 3.58025 -125.949 -3.58025 0 0 701300. 2426.64 0.26 0.10 0.14 -1 -1 0.26 0.0361459 0.0316813 149 124 0 0 125 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 5.61 vpr 53.94 MiB 0.04 6708 -1 -1 1 0.03 -1 -1 30720 -1 -1 17 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55276 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 15.4 MiB 0.16 410 10345 3142 6004 1199 54.0 MiB 0.08 0.00 2.61938 -68.655 -2.61938 2.61938 0.76 0.000476987 0.000440045 0.0328574 0.0303658 30 1104 16 6.65987e+06 215526 526063. 1820.29 0.84 0.0825724 0.0729649 22546 126617 -1 925 15 425 632 39743 10042 2.04305 2.04305 -69.5237 -2.04305 0 0 666494. 2306.21 0.23 0.04 0.13 -1 -1 0.23 0.0152654 0.0134084 77 30 26 26 22 22 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.02 vpr 54.46 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30144 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 16.1 MiB 0.13 1123 11064 3077 6737 1250 54.9 MiB 0.20 0.00 4.10424 -135.549 -4.10424 4.10424 0.76 0.000747012 0.000690834 0.0480579 0.0445133 32 2649 23 6.65987e+06 253560 554710. 1919.41 1.02 0.140065 0.124009 22834 132086 -1 2275 21 1697 2847 274287 58311 3.81777 3.81777 -136.46 -3.81777 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0316062 0.0278222 137 3 122 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.75 vpr 53.88 MiB 0.04 6752 -1 -1 1 0.03 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55344 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 15.5 MiB 0.05 594 8553 1943 6358 252 54.0 MiB 0.09 0.00 2.22607 -81.0919 -2.22607 2.22607 0.77 0.000508156 0.00046904 0.0284531 0.0262838 28 1480 20 6.65987e+06 164814 500653. 1732.36 0.96 0.089042 0.0785651 21970 115934 -1 1335 16 654 841 73133 16653 1.88005 1.88005 -79.6313 -1.88005 0 0 612192. 2118.31 0.21 0.05 0.12 -1 -1 0.21 0.017029 0.0149814 81 3 53 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.25 vpr 54.47 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30484 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 16.5 MiB 0.07 1112 19189 6002 11213 1974 55.2 MiB 0.27 0.01 4.06247 -140.472 -4.06247 4.06247 0.77 0.00080659 0.00074657 0.0727327 0.0672868 32 2623 31 6.65987e+06 418374 554710. 1919.41 1.08 0.183395 0.163013 22834 132086 -1 2274 20 1744 2646 251145 52992 3.52217 3.52217 -137.344 -3.52217 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0321435 0.0283058 151 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.33 vpr 54.64 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 16.5 MiB 0.13 1134 16059 4004 10217 1838 55.1 MiB 0.25 0.01 3.38184 -119.391 -3.38184 3.38184 0.79 0.000756515 0.0007002 0.0566619 0.0524833 30 2519 20 6.65987e+06 443730 526063. 1820.29 0.97 0.146775 0.13055 22546 126617 -1 2144 20 1350 2172 193746 37851 2.57805 2.57805 -112.436 -2.57805 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0304645 0.0268004 150 3 124 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.48 vpr 54.77 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30552 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 16.7 MiB 0.12 1120 14463 4038 8924 1501 55.1 MiB 0.24 0.01 3.91784 -136.256 -3.91784 3.91784 0.77 0.000839297 0.00077615 0.0565268 0.0523034 28 2849 26 6.65987e+06 443730 500653. 1732.36 1.55 0.165927 0.147056 21970 115934 -1 2389 21 1720 2858 250057 52904 3.28251 3.28251 -132.109 -3.28251 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0350328 0.0308283 153 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.15 vpr 54.34 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30192 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 16.1 MiB 0.06 736 8191 2107 5347 737 54.6 MiB 0.12 0.00 2.8895 -100.047 -2.8895 2.8895 0.77 0.000670008 0.000619604 0.0347456 0.0321985 28 2070 19 6.65987e+06 190170 500653. 1732.36 0.91 0.112285 0.0989989 21970 115934 -1 1832 17 1063 1714 154274 33200 2.60051 2.60051 -103.823 -2.60051 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.023579 0.0206805 106 34 54 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.05 vpr 54.46 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30260 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 16.0 MiB 0.11 832 12156 3666 7026 1464 54.8 MiB 0.16 0.00 3.4951 -115.55 -3.4951 3.4951 0.77 0.000670599 0.000621357 0.0489019 0.0452947 32 1923 21 6.65987e+06 240882 554710. 1919.41 0.93 0.128421 0.113789 22834 132086 -1 1735 16 1057 1519 138503 30642 3.21657 3.21657 -118.479 -3.21657 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0226158 0.0199049 115 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.14 vpr 54.23 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30232 -1 -1 20 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55788 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 16.0 MiB 0.10 590 7820 1903 5456 461 54.5 MiB 0.12 0.00 3.4309 -99.7277 -3.4309 3.4309 0.77 0.000636614 0.000589387 0.0310336 0.0287729 32 1811 24 6.65987e+06 253560 554710. 1919.41 0.98 0.109825 0.0964533 22834 132086 -1 1514 23 1360 2299 192082 46653 2.87211 2.87211 -100.239 -2.87211 0 0 701300. 2426.64 0.21 0.05 0.09 -1 -1 0.21 0.0147696 0.0129924 107 34 56 28 28 28 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.96 vpr 54.39 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30284 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 16.1 MiB 0.11 686 12008 2561 8162 1285 54.9 MiB 0.12 0.00 3.4859 -118.026 -3.4859 3.4859 0.87 0.000518934 0.000473476 0.0411285 0.0378881 32 2249 37 6.65987e+06 228204 554710. 1919.41 1.14 0.13663 0.11995 22834 132086 -1 1782 21 1414 2159 211771 48532 2.96277 2.96277 -119.084 -2.96277 0 0 701300. 2426.64 0.24 0.08 0.11 -1 -1 0.24 0.027596 0.02419 125 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.05 vpr 54.32 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30292 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 16.0 MiB 0.08 778 11809 2809 7761 1239 54.5 MiB 0.17 0.00 3.29178 -109.233 -3.29178 3.29178 0.86 0.000682276 0.000630328 0.0387778 0.0358222 26 2303 28 6.65987e+06 393018 477104. 1650.88 1.34 0.122847 0.108282 21682 110474 -1 2003 21 1419 2284 214032 47047 2.77445 2.77445 -112.463 -2.77445 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0278638 0.024363 119 34 61 31 31 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.28 vpr 54.40 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30164 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 16.1 MiB 0.22 717 8047 1725 5786 536 54.9 MiB 0.12 0.00 2.76744 -86.2128 -2.76744 2.76744 0.77 0.000693504 0.000641608 0.0291132 0.0269144 32 1820 27 6.65987e+06 380340 554710. 1919.41 1.01 0.109768 0.0961121 22834 132086 -1 1587 18 946 1565 143475 31436 2.18751 2.18751 -85.4353 -2.18751 0 0 701300. 2426.64 0.30 0.07 0.16 -1 -1 0.30 0.0253019 0.0222179 109 61 29 29 57 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.32 vpr 55.12 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30480 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1246 13117 3185 8526 1406 55.2 MiB 0.25 0.01 4.16036 -141.523 -4.16036 4.16036 0.77 0.000907988 0.000841371 0.0526767 0.0488117 28 3505 33 6.65987e+06 494442 500653. 1732.36 3.41 0.277772 0.242649 21970 115934 -1 2937 20 1876 3284 327080 66990 4.20823 4.20823 -153.954 -4.20823 0 0 612192. 2118.31 0.21 0.12 0.12 -1 -1 0.21 0.0368119 0.0324528 179 29 128 32 27 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.59 vpr 54.95 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30424 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 16.4 MiB 0.24 1041 9447 2232 6542 673 54.8 MiB 0.16 0.00 3.5061 -122.514 -3.5061 3.5061 0.76 0.00103717 0.000960645 0.0389837 0.0359952 32 2437 19 6.65987e+06 443730 554710. 1919.41 1.01 0.137729 0.121574 22834 132086 -1 2103 21 1792 2638 234590 49464 2.84877 2.84877 -117.967 -2.84877 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0346325 0.0304268 152 65 62 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.21 vpr 54.34 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30476 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56328 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 16.2 MiB 0.30 709 5599 957 4403 239 55.0 MiB 0.10 0.00 3.18838 -103.883 -3.18838 3.18838 0.78 0.000743299 0.00068847 0.0230723 0.021374 26 2171 27 6.65987e+06 354984 477104. 1650.88 1.50 0.120932 0.105653 21682 110474 -1 1804 23 1187 1881 170156 37941 2.74045 2.74045 -107.323 -2.74045 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0323447 0.0281865 113 90 0 0 89 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.47 vpr 55.01 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30408 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 16.6 MiB 0.22 1062 14541 4862 7202 2477 55.3 MiB 0.23 0.00 3.4921 -118.867 -3.4921 3.4921 0.76 0.00081457 0.000752516 0.0679244 0.0628351 32 2482 20 6.65987e+06 266238 554710. 1919.41 1.02 0.165278 0.147202 22834 132086 -1 2162 17 1550 2542 231433 48092 3.06217 3.06217 -116.284 -3.06217 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0292742 0.0258697 148 64 60 30 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.61 vpr 54.75 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30644 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 16.6 MiB 0.32 1075 7953 1851 5455 647 55.5 MiB 0.16 0.00 4.84238 -140.996 -4.84238 4.84238 0.78 0.000903441 0.000836752 0.0429015 0.039776 30 2423 18 6.65987e+06 266238 526063. 1820.29 1.00 0.146571 0.129098 22546 126617 -1 2013 16 894 1488 92373 20895 3.61771 3.61771 -130.591 -3.61771 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.030429 0.0268337 149 124 0 0 124 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.34 vpr 55.01 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30548 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 16.5 MiB 0.35 977 8868 2457 6032 379 55.3 MiB 0.16 0.00 4.78027 -132.334 -4.78027 4.78027 0.76 0.000845981 0.000782182 0.0440531 0.0407962 30 2244 19 6.65987e+06 266238 526063. 1820.29 0.95 0.14092 0.124525 22546 126617 -1 2005 15 892 1413 106837 23489 3.56377 3.56377 -124.535 -3.56377 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.027102 0.0240117 143 90 31 31 89 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 8.62 vpr 54.60 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30388 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 16.4 MiB 0.23 1043 11922 3052 7896 974 54.7 MiB 0.20 0.00 3.40784 -114.93 -3.40784 3.40784 0.77 0.000825684 0.000763601 0.0479516 0.0443389 26 2888 40 6.65987e+06 418374 477104. 1650.88 1.50 0.17078 0.150369 21682 110474 -1 2380 23 1666 2858 270377 56288 2.97205 2.97205 -115.427 -2.97205 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0361351 0.0316765 146 64 60 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 7.78 vpr 54.62 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30792 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 16.6 MiB 0.12 1091 9903 2241 6952 710 54.9 MiB 0.12 0.00 3.91784 -134.792 -3.91784 3.91784 0.79 0.000846247 0.000783762 0.0240509 0.0221551 30 2598 28 6.65987e+06 443730 526063. 1820.29 1.05 0.132835 0.115992 22546 126617 -1 2286 22 1602 2407 193009 39771 3.47091 3.47091 -134.362 -3.47091 0 0 666494. 2306.21 0.23 0.09 0.13 -1 -1 0.23 0.0359007 0.0315533 154 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.47 vpr 55.11 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30656 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 17.1 MiB 0.26 1177 18648 4595 11838 2215 55.3 MiB 0.35 0.01 4.0593 -137.323 -4.0593 4.0593 0.77 0.000994765 0.000921024 0.0798791 0.0740313 30 2867 24 6.65987e+06 507120 526063. 1820.29 1.08 0.18248 0.162772 22546 126617 -1 2333 20 1710 2780 223452 45932 3.59957 3.59957 -134.82 -3.59957 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0398929 0.0351587 184 96 62 32 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.13 vpr 54.26 MiB 0.03 6900 -1 -1 1 0.02 -1 -1 30564 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 16.0 MiB 0.13 685 11806 2914 7153 1739 54.8 MiB 0.17 0.00 3.55518 -111.493 -3.55518 3.55518 0.77 0.0006819 0.000631347 0.0488323 0.0452944 32 2040 23 6.65987e+06 228204 554710. 1919.41 1.02 0.139206 0.123179 22834 132086 -1 1691 19 1368 2124 202660 44717 3.02691 3.02691 -110.608 -3.02691 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0261145 0.0229284 116 34 62 31 31 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.90 vpr 55.12 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30376 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 16.4 MiB 0.28 976 9675 2155 7053 467 54.8 MiB 0.17 0.01 4.0281 -131.561 -4.0281 4.0281 0.87 0.000825978 0.000764506 0.0362899 0.0335288 28 2622 27 6.65987e+06 456408 500653. 1732.36 1.32 0.14258 0.125333 21970 115934 -1 2361 20 1625 2487 205674 45501 3.75231 3.75231 -142.013 -3.75231 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0329559 0.0290088 150 64 62 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.55 vpr 54.56 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30600 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56308 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 16.6 MiB 0.14 1040 11641 3109 7665 867 55.0 MiB 0.19 0.01 3.62624 -117.445 -3.62624 3.62624 0.82 0.00084761 0.000784605 0.041274 0.0379771 28 2798 22 6.65987e+06 418374 500653. 1732.36 1.08 0.137228 0.120862 21970 115934 -1 2364 20 1534 2676 239893 51271 2.77471 2.77471 -114.222 -2.77471 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0330253 0.0290166 148 63 62 32 62 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 6.65 vpr 54.46 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30424 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 16.4 MiB 0.15 853 8685 1897 5601 1187 54.8 MiB 0.13 0.00 4.14936 -138.467 -4.14936 4.14936 0.76 0.000766503 0.000708641 0.0394672 0.0365996 34 3080 28 6.65987e+06 253560 585099. 2024.56 3.74 0.237109 0.207171 23122 138558 -1 2131 22 1805 3226 268798 62833 3.95497 3.95497 -148.55 -3.95497 0 0 742403. 2568.87 0.25 0.10 0.14 -1 -1 0.25 0.0336336 0.0296015 150 3 128 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.55 vpr 54.59 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 16.6 MiB 0.31 1097 11798 3144 7589 1065 55.4 MiB 0.21 0.01 3.29555 -116.715 -3.29555 3.29555 0.81 0.000865538 0.000800992 0.0489511 0.0453362 32 2479 25 6.65987e+06 431052 554710. 1919.41 1.03 0.143939 0.12771 22834 132086 -1 2250 18 1335 1882 176662 38406 2.60625 2.60625 -113.541 -2.60625 0 0 701300. 2426.64 0.25 0.07 0.14 -1 -1 0.25 0.028104 0.0250161 145 96 25 25 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.61 vpr 54.84 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56208 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 16.5 MiB 0.30 1042 7623 1446 5778 399 54.9 MiB 0.15 0.01 3.5841 -121.365 -3.5841 3.5841 0.76 0.00083299 0.000769912 0.030593 0.028337 32 2671 26 6.65987e+06 443730 554710. 1919.41 1.03 0.134823 0.118326 22834 132086 -1 2323 25 1690 2960 280655 59458 3.14937 3.14937 -121.742 -3.14937 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0390737 0.0342447 146 61 64 32 60 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.58 vpr 54.91 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30420 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1118 19136 5296 11671 2169 55.0 MiB 0.30 0.01 3.42984 -118.83 -3.42984 3.42984 0.76 0.000843856 0.000780061 0.0714963 0.0660455 32 2652 17 6.65987e+06 469086 554710. 1919.41 0.99 0.16667 0.148464 22834 132086 -1 2237 20 1603 2448 225438 48631 2.86171 2.86171 -113.456 -2.86171 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0338394 0.0298095 155 65 63 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.17 vpr 54.59 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30568 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 16.6 MiB 0.07 1049 17883 5721 9099 3063 54.9 MiB 0.26 0.00 4.02327 -139.097 -4.02327 4.02327 0.76 0.000808876 0.000747431 0.0662587 0.0613143 32 2667 24 6.65987e+06 443730 554710. 1919.41 1.07 0.165263 0.14697 22834 132086 -1 2293 19 1857 2955 271071 57509 3.49097 3.49097 -134.846 -3.49097 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0308865 0.0272351 150 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.17 vpr 54.93 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30676 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56116 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 16.4 MiB 0.16 1032 17491 4961 10150 2380 54.8 MiB 0.25 0.01 3.95704 -138.916 -3.95704 3.95704 0.77 0.000848829 0.000785349 0.0655595 0.0606317 32 2576 27 6.65987e+06 469086 554710. 1919.41 1.05 0.172894 0.153503 22834 132086 -1 2253 21 1800 2706 290137 59417 3.59411 3.59411 -141.056 -3.59411 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.034503 0.030323 153 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.64 vpr 55.06 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 16.7 MiB 0.35 1081 15859 4297 9232 2330 54.9 MiB 0.24 0.00 4.24338 -127.817 -4.24338 4.24338 0.77 0.000901929 0.000831013 0.0670892 0.0620538 28 2725 20 6.65987e+06 431052 500653. 1732.36 1.03 0.171862 0.152087 21970 115934 -1 2427 17 1147 2056 161089 35685 3.54025 3.54025 -127.175 -3.54025 0 0 612192. 2118.31 0.21 0.08 0.12 -1 -1 0.21 0.0312196 0.027411 145 122 0 0 122 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.32 vpr 54.82 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30436 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1088 15822 4733 9518 1571 55.0 MiB 0.27 0.00 4.01118 -127.976 -4.01118 4.01118 0.76 0.000892519 0.000826554 0.0800315 0.0741771 32 2709 22 6.65987e+06 253560 554710. 1919.41 1.04 0.186969 0.166763 22834 132086 -1 2407 18 1704 3075 282226 58728 3.17765 3.17765 -126.744 -3.17765 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0324187 0.0285644 149 94 32 32 94 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.68 vpr 54.10 MiB 0.02 6836 -1 -1 1 0.05 -1 -1 30772 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55940 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 16.1 MiB 0.06 798 8401 2034 5819 548 54.6 MiB 0.13 0.00 3.27158 -111.236 -3.27158 3.27158 0.76 0.000710305 0.00065058 0.029933 0.0277016 30 1974 22 6.65987e+06 380340 526063. 1820.29 1.04 0.11336 0.0995624 22546 126617 -1 1688 20 1011 1648 118753 27103 2.48705 2.48705 -106.136 -2.48705 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0273908 0.0240227 124 34 63 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.86 vpr 54.70 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 16.2 MiB 0.28 912 11830 3154 7792 884 55.0 MiB 0.18 0.00 3.41618 -118.934 -3.41618 3.41618 0.77 0.000767405 0.000708687 0.0535485 0.0494736 32 2231 21 6.65987e+06 228204 554710. 1919.41 0.99 0.144507 0.127939 22834 132086 -1 2017 15 1236 1901 166310 36204 2.88191 2.88191 -120.078 -2.88191 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0246397 0.0217504 121 94 0 0 94 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.82 vpr 54.82 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30924 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 17.2 MiB 0.15 1362 14988 3862 9734 1392 55.4 MiB 0.26 0.01 4.6627 -159.741 -4.6627 4.6627 0.76 0.00096202 0.000891773 0.062893 0.0582549 32 3225 30 6.65987e+06 507120 554710. 1919.41 1.23 0.192148 0.170108 22834 132086 -1 2787 21 2487 3966 359693 78795 4.24457 4.24457 -166.909 -4.24457 0 0 701300. 2426.64 0.25 0.13 0.14 -1 -1 0.25 0.0410829 0.0362404 187 65 96 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.40 vpr 54.82 MiB 0.06 6932 -1 -1 1 0.03 -1 -1 30392 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56480 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 16.5 MiB 0.21 954 14567 4735 7432 2400 55.2 MiB 0.22 0.00 3.51422 -121.562 -3.51422 3.51422 0.80 0.00080595 0.000745863 0.0576962 0.05344 32 2433 22 6.65987e+06 393018 554710. 1919.41 1.02 0.154773 0.13748 22834 132086 -1 2084 18 1417 2063 192778 42705 2.99617 2.99617 -117.282 -2.99617 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0300102 0.0264945 146 34 92 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.30 vpr 54.44 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30476 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 16.1 MiB 0.11 839 17066 5534 9253 2279 54.6 MiB 0.21 0.00 3.49012 -114.14 -3.49012 3.49012 0.76 0.000664639 0.000615387 0.0577112 0.053392 32 1821 20 6.65987e+06 380340 554710. 1919.41 0.97 0.142032 0.126155 22834 132086 -1 1677 23 1294 1854 172055 36536 2.87297 2.87297 -107.322 -2.87297 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0303748 0.0265859 115 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.98 vpr 54.95 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30888 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 17.2 MiB 0.52 1333 18829 5161 11634 2034 55.4 MiB 0.33 0.01 4.64147 -157.361 -4.64147 4.64147 0.85 0.00104219 0.000964939 0.0811531 0.0750284 30 2743 21 6.65987e+06 545154 526063. 1820.29 1.07 0.204342 0.181592 22546 126617 -1 2389 20 1878 2839 183467 40618 4.17837 4.17837 -156.388 -4.17837 0 0 666494. 2306.21 0.23 0.10 0.13 -1 -1 0.23 0.0410487 0.0361555 186 127 32 32 128 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.42 vpr 54.73 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30476 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56104 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 16.5 MiB 0.23 1044 16340 4500 10034 1806 54.8 MiB 0.23 0.00 4.15932 -143.209 -4.15932 4.15932 0.76 0.000827175 0.000766456 0.0617047 0.057149 28 2455 22 6.65987e+06 456408 500653. 1732.36 1.08 0.159793 0.142308 21970 115934 -1 2154 18 1258 1841 156902 33104 3.65243 3.65243 -141.562 -3.65243 0 0 612192. 2118.31 0.22 0.08 0.13 -1 -1 0.22 0.0300744 0.0265432 151 34 96 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.90 vpr 54.21 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30264 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56048 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 16.1 MiB 0.06 722 13703 3609 8489 1605 54.7 MiB 0.19 0.00 3.4859 -117.474 -3.4859 3.4859 0.77 0.000669294 0.000618958 0.0445391 0.0411115 28 2201 23 6.65987e+06 393018 500653. 1732.36 1.04 0.12641 0.111669 21970 115934 -1 1890 20 1278 2034 171991 38841 2.88177 2.88177 -119.579 -2.88177 0 0 612192. 2118.31 0.22 0.08 0.13 -1 -1 0.22 0.0264638 0.0232134 123 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 8.99 vpr 54.95 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30876 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 16.9 MiB 0.18 1337 12702 3419 8223 1060 55.3 MiB 0.23 0.01 4.90437 -166.477 -4.90437 4.90437 0.76 0.000928947 0.000861694 0.0512716 0.047563 30 2867 20 6.65987e+06 519798 526063. 1820.29 1.16 0.160783 0.14233 22546 126617 -1 2471 24 1924 3323 256854 53471 4.65523 4.65523 -168.564 -4.65523 0 0 666494. 2306.21 0.23 0.11 0.13 -1 -1 0.23 0.0432354 0.0379474 188 34 128 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.12 vpr 54.21 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55864 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 16.1 MiB 0.14 852 11260 3935 5447 1878 54.6 MiB 0.15 0.00 3.4749 -119.679 -3.4749 3.4749 0.76 0.000661241 0.000611217 0.0458302 0.0424082 34 2036 27 6.65987e+06 202848 585099. 2024.56 3.10 0.211447 0.184098 23122 138558 -1 1743 17 1227 1977 190054 38913 2.91097 2.91097 -116.247 -2.91097 0 0 742403. 2568.87 0.25 0.07 0.14 -1 -1 0.25 0.023315 0.0206128 121 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.31 vpr 54.41 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55832 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 16.0 MiB 0.21 707 8073 1842 5622 609 54.5 MiB 0.13 0.00 3.47387 -110.471 -3.47387 3.47387 0.76 0.000666549 0.00061708 0.028067 0.0259802 28 2009 20 6.65987e+06 393018 500653. 1732.36 0.93 0.106728 0.0936551 21970 115934 -1 1715 20 1108 1805 143282 32556 2.96317 2.96317 -112.365 -2.96317 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.026413 0.0231319 113 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 7.12 vpr 54.92 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30340 -1 -1 33 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 16.6 MiB 0.29 964 15856 4550 8712 2594 55.2 MiB 0.24 0.01 3.50895 -109.722 -3.50895 3.50895 0.76 0.000799839 0.000739708 0.0626194 0.0579109 30 1959 23 6.65987e+06 418374 526063. 1820.29 0.94 0.160973 0.142937 22546 126617 -1 1698 18 1019 1736 108326 23723 2.53617 2.53617 -99.8099 -2.53617 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0297037 0.0261882 133 88 29 29 85 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.26 vpr 54.71 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 16.6 MiB 0.13 1002 7770 1874 5369 527 55.4 MiB 0.15 0.00 4.0593 -140.547 -4.0593 4.0593 0.77 0.000838104 0.00077471 0.0385531 0.0357066 32 2472 22 6.65987e+06 253560 554710. 1919.41 1.05 0.139962 0.123547 22834 132086 -1 2209 22 2006 3033 336631 67865 3.54837 3.54837 -141.623 -3.54837 0 0 701300. 2426.64 0.24 0.12 0.14 -1 -1 0.24 0.0363204 0.0319161 151 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.30 vpr 54.68 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30708 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56212 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 16.5 MiB 0.39 1039 19223 6359 10018 2846 54.9 MiB 0.29 0.00 4.06007 -140.169 -4.06007 4.06007 0.76 0.00084074 0.00077762 0.0747904 0.0691308 28 2641 19 6.65987e+06 431052 500653. 1732.36 1.11 0.172483 0.153698 21970 115934 -1 2295 22 1831 3093 255929 53834 3.62937 3.62937 -141.862 -3.62937 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0361334 0.0317682 152 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.17 vpr 54.35 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30516 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56228 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 16.1 MiB 0.23 697 8614 1900 5780 934 54.9 MiB 0.13 0.00 3.41884 -113.998 -3.41884 3.41884 0.77 0.00073645 0.00067969 0.032363 0.0299315 32 1978 20 6.65987e+06 380340 554710. 1919.41 0.98 0.118501 0.104137 22834 132086 -1 1629 20 1269 1999 182521 39420 2.74151 2.74151 -109.761 -2.74151 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0289098 0.0253313 120 65 32 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.07 vpr 54.57 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30476 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56116 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 16.1 MiB 0.29 800 12464 4465 5577 2422 54.8 MiB 0.18 0.00 3.46898 -107.312 -3.46898 3.46898 0.76 0.00073254 0.00067718 0.055622 0.0514606 32 2017 19 6.65987e+06 215526 554710. 1919.41 0.95 0.140459 0.124419 22834 132086 -1 1741 18 1095 1921 164371 36942 2.76045 2.76045 -104.764 -2.76045 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0265651 0.0233254 109 90 0 0 89 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.40 vpr 54.81 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30400 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 16.5 MiB 0.21 996 12623 3384 8308 931 55.2 MiB 0.19 0.00 3.33164 -109.888 -3.33164 3.33164 0.76 0.000793178 0.00073399 0.0495548 0.0458352 26 2568 23 6.65987e+06 418374 477104. 1650.88 1.36 0.148197 0.130851 21682 110474 -1 2150 17 1247 2008 166668 35890 2.93891 2.93891 -111.871 -2.93891 0 0 585099. 2024.56 0.20 0.07 0.12 -1 -1 0.20 0.0279582 0.0246581 137 60 60 30 57 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.44 vpr 54.31 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30428 -1 -1 31 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 16.5 MiB 0.10 995 16207 5283 8775 2149 55.1 MiB 0.23 0.01 4.24344 -123.397 -4.24344 4.24344 1.00 0.00072599 0.000671248 0.0519418 0.0479423 28 2388 23 6.65987e+06 393018 500653. 1732.36 1.02 0.140345 0.124151 21970 115934 -1 2125 22 1515 2477 228152 47948 3.71237 3.71237 -127.875 -3.71237 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0312811 0.0274338 133 34 84 28 28 28 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.34 vpr 54.46 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30152 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56172 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 16.1 MiB 0.30 727 13152 3808 7208 2136 54.9 MiB 0.18 0.00 3.5343 -112.204 -3.5343 3.5343 0.82 0.000698587 0.000646149 0.0554882 0.0513578 30 1866 19 6.65987e+06 228204 526063. 1820.29 0.99 0.136648 0.121309 22546 126617 -1 1601 20 1106 1855 131040 29004 2.94697 2.94697 -109.438 -2.94697 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0277794 0.0243209 114 63 30 30 60 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.76 vpr 54.49 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 16.2 MiB 0.29 910 8164 2057 5403 704 54.9 MiB 0.13 0.00 3.44398 -109.924 -3.44398 3.44398 0.78 0.000762024 0.00070497 0.0385468 0.0356763 30 1921 18 6.65987e+06 202848 526063. 1820.29 0.91 0.125245 0.110505 22546 126617 -1 1678 17 815 1373 99053 21169 2.53845 2.53845 -101.554 -2.53845 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0267492 0.0235846 113 91 0 0 91 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.16 vpr 54.47 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 16.4 MiB 0.10 1101 12023 3143 7728 1152 55.0 MiB 0.19 0.01 4.17558 -139.576 -4.17558 4.17558 0.76 0.000750703 0.000694264 0.042869 0.0397014 28 2923 47 6.65987e+06 443730 500653. 1732.36 1.53 0.164496 0.144523 21970 115934 -1 2495 20 1520 2473 206001 44726 3.86583 3.86583 -145.716 -3.86583 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0304016 0.0267814 150 4 124 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.64 vpr 55.07 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30680 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 16.5 MiB 0.25 1037 13598 4125 8601 872 55.0 MiB 0.23 0.01 4.1263 -141.609 -4.1263 4.1263 0.76 0.000842262 0.000778831 0.0538938 0.0498521 26 3011 29 6.65987e+06 431052 477104. 1650.88 3.61 0.267868 0.234606 21682 110474 -1 2361 22 1858 3138 268064 58247 3.73137 3.73137 -143.001 -3.73137 0 0 585099. 2024.56 0.21 0.11 0.12 -1 -1 0.21 0.0357555 0.0315459 153 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.68 vpr 54.84 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 16.6 MiB 0.29 1033 10448 2380 7653 415 55.0 MiB 0.18 0.00 4.16458 -142.258 -4.16458 4.16458 0.77 0.000849441 0.000786447 0.042607 0.0393578 26 3740 46 6.65987e+06 431052 477104. 1650.88 7.35 0.287824 0.250919 21682 110474 -1 2655 20 1818 3071 340604 71940 3.61823 3.61823 -144.403 -3.61823 0 0 585099. 2024.56 0.21 0.12 0.11 -1 -1 0.21 0.034226 0.0301609 151 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.67 vpr 54.87 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30456 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 16.6 MiB 0.24 982 9031 1878 6401 752 55.0 MiB 0.16 0.01 3.86706 -126.941 -3.86706 3.86706 0.77 0.000990668 0.000916676 0.0353395 0.0327287 30 2529 22 6.65987e+06 469086 526063. 1820.29 1.00 0.136524 0.120317 22546 126617 -1 2112 20 1255 2095 142737 32068 3.17551 3.17551 -123.694 -3.17551 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0330949 0.0291516 148 65 60 30 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.30 vpr 54.33 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 16.0 MiB 0.19 656 10400 2388 7389 623 54.8 MiB 0.16 0.00 3.50927 -110.79 -3.50927 3.50927 0.77 0.000676569 0.000626671 0.0434297 0.0402907 28 2115 34 6.65987e+06 228204 500653. 1732.36 1.27 0.137594 0.121176 21970 115934 -1 1699 20 1090 1687 166819 38026 2.84877 2.84877 -111.687 -2.84877 0 0 612192. 2118.31 0.21 0.07 0.12 -1 -1 0.21 0.0265946 0.0232964 112 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.45 vpr 54.95 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30388 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 16.5 MiB 0.24 986 11613 3437 7269 907 55.1 MiB 0.20 0.00 4.19776 -134.76 -4.19776 4.19776 0.76 0.000805453 0.000745727 0.0537917 0.0498298 32 2169 21 6.65987e+06 278916 554710. 1919.41 1.01 0.149804 0.132804 22834 132086 -1 1929 20 1723 2647 229690 49792 3.46043 3.46043 -129.094 -3.46043 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.0322969 0.0284385 145 63 60 30 60 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.44 vpr 54.95 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 31008 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 16.8 MiB 0.30 1052 13117 2855 8842 1420 55.1 MiB 0.19 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000882082 0.00081632 0.0531113 0.0491499 32 2933 28 6.65987e+06 494442 554710. 1919.41 1.18 0.172549 0.151914 22834 132086 -1 2389 19 1826 2904 274360 58479 3.40585 3.40585 -136.959 -3.40585 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0349429 0.0306145 154 127 0 0 128 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.53 vpr 54.83 MiB 0.03 7172 -1 -1 1 0.03 -1 -1 30420 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56340 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1048 9679 2436 6757 486 55.0 MiB 0.19 0.01 3.91106 -131.073 -3.91106 3.91106 0.77 0.00086087 0.0007961 0.0448043 0.0414384 28 2515 23 6.65987e+06 393018 500653. 1732.36 1.12 0.149302 0.131695 21970 115934 -1 2248 20 1612 2620 212351 46751 3.64531 3.64531 -135.301 -3.64531 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0340749 0.0299781 146 94 31 31 93 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.93 vpr 54.98 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30476 -1 -1 30 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 16.5 MiB 0.36 967 14375 3613 8859 1903 55.1 MiB 0.22 0.00 3.7785 -114.4 -3.7785 3.7785 0.77 0.000818381 0.000757291 0.0603232 0.0558744 30 1999 19 6.65987e+06 380340 526063. 1820.29 0.93 0.15597 0.138495 22546 126617 -1 1714 15 892 1402 93261 20610 2.81476 2.81476 -107.6 -2.81476 0 0 666494. 2306.21 0.23 0.06 0.13 -1 -1 0.23 0.0267312 0.0236768 136 92 26 26 90 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.42 vpr 54.77 MiB 0.02 7128 -1 -1 1 0.04 -1 -1 30516 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1103 13477 4009 7448 2020 55.3 MiB 0.23 0.00 4.11944 -143.283 -4.11944 4.11944 0.81 0.000842267 0.000778884 0.06481 0.0600273 32 2971 22 6.65987e+06 266238 554710. 1919.41 1.09 0.167686 0.149207 22834 132086 -1 2491 17 1823 3150 290494 62408 3.62637 3.62637 -141.729 -3.62637 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0301169 0.0266239 154 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.99 vpr 54.79 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 30292 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 16.4 MiB 0.18 870 10463 2796 6767 900 55.1 MiB 0.17 0.01 3.39684 -102.663 -3.39684 3.39684 0.81 0.000802182 0.000742214 0.0418746 0.0387578 32 2154 17 6.65987e+06 431052 554710. 1919.41 0.97 0.131269 0.11593 22834 132086 -1 1849 20 1313 2151 174635 39049 2.73771 2.73771 -99.1558 -2.73771 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0319215 0.0280386 134 88 26 26 85 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.04 vpr 54.30 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 30292 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56152 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 16.1 MiB 0.12 838 13496 3888 8529 1079 54.8 MiB 0.18 0.00 3.5031 -123.339 -3.5031 3.5031 0.77 0.000674662 0.000624604 0.0550959 0.0510717 32 2193 23 6.65987e+06 202848 554710. 1919.41 1.07 0.13771 0.122415 22834 132086 -1 1944 21 1428 2237 229012 51040 3.04997 3.04997 -124.145 -3.04997 0 0 701300. 2426.64 0.26 0.08 0.16 -1 -1 0.26 0.0232913 0.020668 116 3 96 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.46 vpr 54.81 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30372 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 16.6 MiB 0.34 1015 16525 5345 8784 2396 54.9 MiB 0.26 0.00 4.18856 -142.192 -4.18856 4.18856 0.76 0.000845547 0.000781942 0.0660995 0.0611214 32 2631 22 6.65987e+06 418374 554710. 1919.41 1.05 0.167647 0.149009 22834 132086 -1 2153 22 1830 2678 252919 54042 3.66543 3.66543 -140.281 -3.66543 0 0 701300. 2426.64 0.27 0.11 0.14 -1 -1 0.27 0.0354902 0.0314509 150 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.42 vpr 54.92 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30440 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56512 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 16.4 MiB 0.20 1026 16081 4881 8736 2464 55.2 MiB 0.26 0.00 4.23393 -146.239 -4.23393 4.23393 0.80 0.000846915 0.000783104 0.0763955 0.0707025 32 2631 21 6.65987e+06 266238 554710. 1919.41 1.04 0.178036 0.158856 22834 132086 -1 2322 23 2202 3301 320840 67850 3.69143 3.69143 -144.808 -3.69143 0 0 701300. 2426.64 0.24 0.14 0.13 -1 -1 0.24 0.0423923 0.0371875 157 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 6.11 vpr 54.47 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30392 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55984 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 16.2 MiB 0.23 688 16683 5557 7719 3407 54.7 MiB 0.21 0.00 3.44878 -105.048 -3.44878 3.44878 0.77 0.000701401 0.000648128 0.0586248 0.0541836 30 2275 37 6.65987e+06 367662 526063. 1820.29 1.46 0.158258 0.139846 22546 126617 -1 1571 19 941 1397 112363 29013 2.79145 2.79145 -100.95 -2.79145 0 0 666494. 2306.21 0.25 0.08 0.13 -1 -1 0.25 0.0328369 0.0288051 111 55 32 32 54 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.11 vpr 54.31 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30384 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55972 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 16.1 MiB 0.11 746 13556 4162 7429 1965 54.7 MiB 0.18 0.00 3.4529 -114.38 -3.4529 3.4529 0.79 0.000651197 0.000602791 0.052976 0.0490701 30 1939 19 6.65987e+06 228204 526063. 1820.29 0.99 0.129027 0.114601 22546 126617 -1 1750 19 1130 1798 133320 29352 2.72277 2.72277 -110.038 -2.72277 0 0 666494. 2306.21 0.23 0.07 0.13 -1 -1 0.23 0.0250718 0.0220179 118 4 93 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.68 vpr 55.09 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30292 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 16.5 MiB 0.29 900 5133 854 4121 158 55.1 MiB 0.10 0.00 4.0123 -128.007 -4.0123 4.0123 0.76 0.00080273 0.000742469 0.0216677 0.0200973 32 2266 23 6.65987e+06 405696 554710. 1919.41 0.99 0.119449 0.104613 22834 132086 -1 1968 22 1688 2507 231410 49920 3.32117 3.32117 -125.209 -3.32117 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0345937 0.0303436 138 59 60 32 58 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.17 vpr 54.93 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30316 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56644 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 16.6 MiB 0.23 879 9892 2434 7009 449 55.3 MiB 0.17 0.01 4.11224 -123.302 -4.11224 4.11224 0.76 0.00083604 0.000773505 0.0419563 0.0388483 28 2827 46 6.65987e+06 380340 500653. 1732.36 1.88 0.17202 0.150879 21970 115934 -1 2192 18 1362 2185 190676 43562 3.70851 3.70851 -130.303 -3.70851 0 0 612192. 2118.31 0.22 0.08 0.12 -1 -1 0.22 0.0306738 0.0270337 134 88 28 28 88 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.50 vpr 55.05 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56240 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 16.7 MiB 0.08 1224 16515 4921 9863 1731 54.9 MiB 0.29 0.01 4.82096 -159.28 -4.82096 4.82096 0.77 0.000879365 0.00081517 0.066731 0.0619146 32 3182 23 6.65987e+06 443730 554710. 1919.41 1.56 0.206031 0.182365 22834 132086 -1 2705 22 2244 3489 354569 72789 4.31103 4.31103 -154.247 -4.31103 0 0 701300. 2426.64 0.24 0.12 0.13 -1 -1 0.24 0.0378136 0.0333688 177 3 156 32 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.12 vpr 54.46 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30544 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 16.4 MiB 0.26 1012 13726 3606 8436 1684 55.1 MiB 0.21 0.00 3.638 -113.448 -3.638 3.638 0.77 0.00078138 0.000723004 0.0540626 0.0500266 32 2213 19 6.65987e+06 405696 554710. 1919.41 0.97 0.145183 0.128821 22834 132086 -1 1948 19 1429 2175 197689 42468 2.83871 2.83871 -109.786 -2.83871 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.029736 0.0261369 136 59 60 30 56 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.90 vpr 54.13 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55740 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 15.8 MiB 0.11 768 12754 4322 6521 1911 54.4 MiB 0.15 0.00 3.3979 -99.6122 -3.3979 3.3979 0.76 0.000620842 0.00057497 0.0487413 0.0451634 32 1584 19 6.65987e+06 253560 554710. 1919.41 0.93 0.120913 0.107239 22834 132086 -1 1440 20 1133 1647 156827 33015 2.65457 2.65457 -95.138 -2.65457 0 0 701300. 2426.64 0.24 0.07 0.13 -1 -1 0.24 0.0245691 0.0214716 107 34 54 27 27 27 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 9.95 vpr 54.96 MiB 0.02 7276 -1 -1 1 0.04 -1 -1 30664 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 17.2 MiB 0.21 1366 15232 4128 9656 1448 55.4 MiB 0.27 0.01 4.15924 -136.806 -4.15924 4.15924 0.77 0.000997275 0.000924112 0.0664664 0.0615781 32 3610 25 6.65987e+06 507120 554710. 1919.41 1.17 0.190646 0.168899 22834 132086 -1 3047 22 2356 4186 406844 85604 3.73751 3.73751 -139.024 -3.73751 0 0 701300. 2426.64 0.24 0.14 0.14 -1 -1 0.24 0.0426123 0.0374132 184 95 62 31 95 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.93 vpr 54.94 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30532 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 16.7 MiB 0.32 999 12894 3350 8149 1395 55.5 MiB 0.22 0.00 4.3007 -134.868 -4.3007 4.3007 0.76 0.000902876 0.000836029 0.0673339 0.0623967 32 2630 22 6.65987e+06 266238 554710. 1919.41 1.07 0.176376 0.156458 22834 132086 -1 2278 22 1555 2427 250286 53481 3.72031 3.72031 -140.859 -3.72031 0 0 701300. 2426.64 0.26 0.10 0.14 -1 -1 0.26 0.0388836 0.0340852 144 124 0 0 124 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.87 vpr 54.52 MiB 0.05 6980 -1 -1 1 0.05 -1 -1 30392 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 16.2 MiB 0.28 739 9540 2469 6056 1015 54.9 MiB 0.15 0.00 3.43298 -108.977 -3.43298 3.43298 0.78 0.000753902 0.000692086 0.0439233 0.0406091 28 1888 18 6.65987e+06 202848 500653. 1732.36 0.92 0.128617 0.113656 21970 115934 -1 1756 19 1002 1591 140618 30906 2.64451 2.64451 -110.271 -2.64451 0 0 612192. 2118.31 0.21 0.07 0.11 -1 -1 0.21 0.0280803 0.0246231 109 89 0 0 89 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.19 vpr 54.53 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30380 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 16.5 MiB 0.10 1126 15645 4217 9584 1844 55.2 MiB 0.23 0.00 4.2677 -137.429 -4.2677 4.2677 0.76 0.000795024 0.000727159 0.0592285 0.0547714 28 2550 19 6.65987e+06 405696 500653. 1732.36 1.07 0.149362 0.132888 21970 115934 -1 2250 18 1271 1910 156980 34657 3.73357 3.73357 -135.346 -3.73357 0 0 612192. 2118.31 0.23 0.07 0.12 -1 -1 0.23 0.0244043 0.0217623 146 34 90 30 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.71 vpr 55.05 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30640 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 16.9 MiB 0.16 1167 13551 3218 9177 1156 55.2 MiB 0.24 0.00 4.22766 -133.836 -4.22766 4.22766 0.76 0.000917198 0.000849887 0.057805 0.0535563 32 2632 20 6.65987e+06 456408 554710. 1919.41 1.08 0.16481 0.146242 22834 132086 -1 2347 22 1837 2768 244945 52657 3.28351 3.28351 -130.387 -3.28351 0 0 701300. 2426.64 0.26 0.10 0.14 -1 -1 0.26 0.0344281 0.0304699 171 64 87 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.28 vpr 54.64 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30404 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 16.6 MiB 0.13 1070 11111 2802 7426 883 55.2 MiB 0.18 0.00 3.62941 -110.797 -3.62941 3.62941 0.76 0.000784435 0.000725926 0.0430309 0.0398487 24 3147 38 6.65987e+06 418374 448715. 1552.65 2.85 0.193176 0.170123 21394 104001 -1 2426 23 1537 2660 289049 59225 3.24951 3.24951 -116.597 -3.24951 0 0 554710. 1919.41 0.26 0.11 0.12 -1 -1 0.26 0.0349331 0.0306036 134 61 58 30 58 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.53 vpr 55.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30464 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56356 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 16.6 MiB 0.24 1074 12606 3053 8336 1217 55.0 MiB 0.21 0.01 4.0783 -140.694 -4.0783 4.0783 0.77 0.000860846 0.000796941 0.0461484 0.0427236 30 2409 20 6.65987e+06 532476 526063. 1820.29 1.02 0.145391 0.128601 22546 126617 -1 2059 19 1203 1899 136797 29545 3.46931 3.46931 -130.617 -3.46931 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0323205 0.0284799 157 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.27 vpr 55.20 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30396 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 16.6 MiB 0.18 985 6766 1235 5165 366 55.1 MiB 0.13 0.01 3.41884 -116.445 -3.41884 3.41884 0.71 0.000844569 0.000781891 0.0269979 0.0250045 28 2678 22 6.65987e+06 481764 500653. 1732.36 0.98 0.128051 0.112341 21970 115934 -1 2260 23 1588 2470 242632 50996 2.77665 2.77665 -114.749 -2.77665 0 0 612192. 2118.31 0.21 0.10 0.08 -1 -1 0.21 0.0372961 0.0327058 155 65 63 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.22 vpr 54.23 MiB 0.04 6784 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55752 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 16.1 MiB 0.12 502 12791 3342 7797 1652 54.4 MiB 0.12 0.00 3.7595 -104.343 -3.7595 3.7595 0.77 0.000643467 0.000595201 0.0529459 0.0490382 32 1602 21 6.65987e+06 202848 554710. 1919.41 0.91 0.130017 0.115266 22834 132086 -1 1396 20 1021 1404 146824 34296 2.80171 2.80171 -101.049 -2.80171 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0260037 0.0228015 93 34 58 29 29 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.38 vpr 54.59 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30276 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 16.2 MiB 0.28 872 14431 4553 8297 1581 54.8 MiB 0.18 0.00 3.69338 -109.525 -3.69338 3.69338 0.82 0.00071212 0.000657944 0.0615208 0.0569042 32 2019 20 6.65987e+06 215526 554710. 1919.41 0.98 0.145037 0.128802 22834 132086 -1 1862 18 991 1408 148682 31095 2.76571 2.76571 -107.677 -2.76571 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.0257809 0.0226013 111 82 0 0 82 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.37 vpr 54.86 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30448 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 16.4 MiB 0.14 973 15876 4279 9893 1704 55.1 MiB 0.25 0.01 4.55701 -136.44 -4.55701 4.55701 0.76 0.000787824 0.000729166 0.0567649 0.0525821 32 2568 44 6.65987e+06 469086 554710. 1919.41 1.26 0.178161 0.157394 22834 132086 -1 2084 22 1478 2518 248377 50586 3.91571 3.91571 -132.225 -3.91571 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0340977 0.0299808 150 34 93 31 31 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.54 vpr 54.45 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55884 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 16.0 MiB 0.28 621 11063 2736 7707 620 54.6 MiB 0.14 0.00 3.58224 -95.8028 -3.58224 3.58224 0.76 0.000654086 0.000604726 0.0372476 0.0344161 26 1925 24 6.65987e+06 393018 477104. 1650.88 1.27 0.118535 0.104129 21682 110474 -1 1605 20 1012 1616 137045 31793 2.98985 2.98985 -98.312 -2.98985 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.0256434 0.0223746 108 56 29 29 52 26 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.31 vpr 54.39 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 16.3 MiB 0.20 823 7992 1920 5681 391 55.0 MiB 0.14 0.00 3.5141 -118.56 -3.5141 3.5141 0.76 0.000699233 0.000646705 0.0351819 0.0325856 32 2083 27 6.65987e+06 202848 554710. 1919.41 1.46 0.147952 0.129547 22834 132086 -1 1806 19 1360 2254 222304 48015 3.11917 3.11917 -123.177 -3.11917 0 0 701300. 2426.64 0.24 0.09 0.13 -1 -1 0.24 0.0266683 0.0234206 119 34 64 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.42 vpr 54.99 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30340 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 16.6 MiB 0.23 1001 11955 3102 7859 994 55.3 MiB 0.19 0.00 3.4951 -117.77 -3.4951 3.4951 0.77 0.000809978 0.000748847 0.04559 0.0421185 26 2312 18 6.65987e+06 456408 477104. 1650.88 1.03 0.138317 0.12234 21682 110474 -1 1995 18 1446 2078 185420 38738 2.98297 2.98297 -119.053 -2.98297 0 0 585099. 2024.56 0.20 0.08 0.12 -1 -1 0.20 0.0300798 0.0265325 142 64 58 31 62 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.12 vpr 54.47 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30284 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56100 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 16.0 MiB 0.29 876 12923 4161 7145 1617 54.8 MiB 0.17 0.00 3.11304 -101.32 -3.11304 3.11304 0.83 0.000678418 0.000627346 0.0542161 0.0501768 32 1888 19 6.65987e+06 202848 554710. 1919.41 0.93 0.134465 0.119454 22834 132086 -1 1829 19 956 1616 173715 37361 2.70845 2.70845 -106.172 -2.70845 0 0 701300. 2426.64 0.24 0.07 0.14 -1 -1 0.24 0.026097 0.0229017 105 55 31 31 53 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 6.43 vpr 54.73 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30392 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56372 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 16.5 MiB 0.24 929 17616 5738 7949 3929 55.1 MiB 0.19 0.00 3.3979 -111.1 -3.3979 3.3979 0.78 0.000806564 0.000745674 0.0650783 0.0601441 36 2132 20 6.65987e+06 405696 612192. 2118.31 3.90 0.279444 0.24445 23410 145293 -1 1820 21 1232 2115 198429 43101 2.85597 2.85597 -105.882 -2.85597 0 0 782063. 2706.10 0.26 0.09 0.15 -1 -1 0.26 0.0331933 0.0291835 136 65 52 26 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.75 vpr 54.77 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30268 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56352 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 16.6 MiB 0.58 965 17427 4981 9867 2579 55.0 MiB 0.24 0.00 3.7445 -120.758 -3.7445 3.7445 0.83 0.000860743 0.00079528 0.0663327 0.0611722 28 2264 21 6.65987e+06 456408 500653. 1732.36 0.99 0.16861 0.149694 21970 115934 -1 2095 20 1531 2264 183821 40043 3.04917 3.04917 -115.617 -3.04917 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0338324 0.0297058 148 93 31 31 92 31 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.01 vpr 54.32 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30372 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56396 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 16.3 MiB 0.17 861 11652 3522 6006 2124 55.1 MiB 0.16 0.00 2.81844 -100.349 -2.81844 2.81844 0.76 0.000717269 0.000663594 0.0495619 0.0459059 32 2039 34 6.65987e+06 228204 554710. 1919.41 1.09 0.135319 0.119771 22834 132086 -1 1662 23 1329 2133 187650 39217 2.42305 2.42305 -99.4307 -2.42305 0 0 701300. 2426.64 0.28 0.08 0.15 -1 -1 0.28 0.0291775 0.025761 115 61 32 32 60 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.09 vpr 54.48 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30220 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56116 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 16.0 MiB 0.27 667 7380 1595 4913 872 54.8 MiB 0.11 0.00 3.38184 -112.707 -3.38184 3.38184 0.77 0.000729977 0.000674717 0.0328674 0.0304572 32 2464 28 6.65987e+06 228204 554710. 1919.41 1.14 0.130012 0.114248 22834 132086 -1 1741 22 1350 2115 187103 44671 3.01011 3.01011 -117.709 -3.01011 0 0 701300. 2426.64 0.24 0.09 0.14 -1 -1 0.24 0.030902 0.0270511 121 63 32 32 62 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.53 vpr 54.72 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30824 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56276 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 16.6 MiB 0.16 1042 12164 2979 8000 1185 55.0 MiB 0.19 0.01 4.02524 -139.262 -4.02524 4.02524 0.74 0.00084726 0.000784021 0.0475109 0.0439034 28 2563 32 6.65987e+06 456408 500653. 1732.36 1.19 0.161894 0.142514 21970 115934 -1 2244 20 1750 2701 248121 52117 3.40285 3.40285 -135.733 -3.40285 0 0 612192. 2118.31 0.21 0.10 0.12 -1 -1 0.21 0.0331042 0.0291251 154 65 64 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.30 vpr 54.55 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30684 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 16.5 MiB 0.22 968 17313 5602 9212 2499 55.1 MiB 0.23 0.00 3.57304 -105.57 -3.57304 3.57304 0.76 0.000769839 0.000712722 0.0665532 0.0615549 32 2229 19 6.65987e+06 405696 554710. 1919.41 0.95 0.156849 0.139553 22834 132086 -1 1913 22 1143 1743 142780 32670 2.73871 2.73871 -102.232 -2.73871 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.033196 0.029096 133 62 56 29 58 29 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.48 vpr 54.83 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30652 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 16.8 MiB 0.33 1004 11616 2968 7911 737 55.1 MiB 0.20 0.01 3.97241 -135.454 -3.97241 3.97241 0.76 0.000935268 0.000866129 0.0504567 0.0466273 32 2691 23 6.65987e+06 469086 554710. 1919.41 1.04 0.163981 0.144421 22834 132086 -1 2286 22 1896 2820 295208 64735 3.63451 3.63451 -137.029 -3.63451 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0397804 0.0348163 156 127 0 0 128 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.83 vpr 54.23 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55760 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 15.8 MiB 0.11 715 5825 1215 4401 209 54.5 MiB 0.10 0.00 2.9397 -97.4988 -2.9397 2.9397 0.76 0.000628562 0.000581682 0.0236326 0.021917 30 1684 17 6.65987e+06 202848 526063. 1820.29 0.89 0.0945272 0.0829887 22546 126617 -1 1472 18 757 1190 80967 18432 2.50231 2.50231 -98.588 -2.50231 0 0 666494. 2306.21 0.23 0.05 0.13 -1 -1 0.23 0.0230617 0.0202375 105 4 85 31 0 0 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.09 vpr 54.95 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30540 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 16.6 MiB 0.17 948 20077 6167 11074 2836 55.4 MiB 0.29 0.01 4.10497 -133.778 -4.10497 4.10497 0.76 0.000859662 0.000794158 0.080654 0.0744425 32 2310 32 6.65987e+06 418374 554710. 1919.41 1.03 0.195559 0.173727 22834 132086 -1 1969 16 1351 1903 173063 37037 3.55637 3.55637 -127.321 -3.55637 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0287897 0.0254615 142 92 28 28 92 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.36 vpr 54.73 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30136 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 16.3 MiB 0.24 805 9196 3450 4876 870 55.1 MiB 0.13 0.00 3.54047 -120.422 -3.54047 3.54047 0.77 0.000774057 0.00071458 0.0441892 0.0408954 28 2201 43 6.65987e+06 202848 500653. 1732.36 4.01 0.253818 0.220807 21970 115934 -1 1876 44 2156 3383 693172 297996 2.94397 2.94397 -123.053 -2.94397 0 0 612192. 2118.31 0.21 0.24 0.12 -1 -1 0.21 0.0584413 0.0507264 115 96 0 0 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.53 vpr 54.72 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30408 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 16.5 MiB 0.24 1002 18111 5520 9663 2928 55.4 MiB 0.25 0.00 3.45184 -118.995 -3.45184 3.45184 0.76 0.000835878 0.00077225 0.0695052 0.0642849 32 2563 26 6.65987e+06 443730 554710. 1919.41 1.03 0.175473 0.15599 22834 132086 -1 2088 24 1519 2118 208856 45008 2.92871 2.92871 -117.128 -2.92871 0 0 701300. 2426.64 0.24 0.10 0.14 -1 -1 0.24 0.0382327 0.033516 149 65 61 32 64 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.92 vpr 54.77 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30880 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 17.1 MiB 0.33 1201 15034 3694 9653 1687 55.3 MiB 0.25 0.01 4.6905 -158.567 -4.6905 4.6905 0.76 0.000998129 0.000923938 0.0629881 0.0583646 26 3502 33 6.65987e+06 545154 477104. 1650.88 2.62 0.204839 0.18111 21682 110474 -1 2811 23 2383 3621 349223 71029 4.63217 4.63217 -167.928 -4.63217 0 0 585099. 2024.56 0.20 0.13 0.12 -1 -1 0.20 0.0447635 0.0393034 186 96 64 32 96 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.14 vpr 54.16 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55512 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 15.8 MiB 0.20 532 10509 2640 7460 409 54.2 MiB 0.12 0.00 2.61752 -80.0454 -2.61752 2.61752 0.78 0.000569159 0.000526032 0.038925 0.0358606 26 1532 42 6.65987e+06 190170 477104. 1650.88 1.23 0.119188 0.104488 21682 110474 -1 1188 15 697 950 87496 20815 2.05925 2.05925 -81.5015 -2.05925 0 0 585099. 2024.56 0.20 0.05 0.14 -1 -1 0.20 0.0182325 0.0159683 83 56 0 0 53 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.21 vpr 54.44 MiB 0.05 6788 -1 -1 1 0.03 -1 -1 30400 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55828 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 16.1 MiB 0.10 758 10536 3415 5493 1628 54.5 MiB 0.13 0.00 3.52904 -110.224 -3.52904 3.52904 0.80 0.000668665 0.000618672 0.0442301 0.0409366 32 1681 18 6.65987e+06 202848 554710. 1919.41 0.98 0.115796 0.102629 22834 132086 -1 1583 17 897 1300 118929 26433 2.68977 2.68977 -104.515 -2.68977 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0236285 0.0207731 96 34 60 30 30 30 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.35 vpr 54.55 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30148 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 16.0 MiB 0.11 856 9872 2316 7018 538 54.8 MiB 0.16 0.00 3.4859 -122.574 -3.4859 3.4859 0.82 0.000706384 0.000653441 0.0426343 0.0395706 32 2466 22 6.65987e+06 228204 554710. 1919.41 1.03 0.115336 0.102429 22834 132086 -1 2087 20 1573 2800 258134 57097 2.91997 2.91997 -119.238 -2.91997 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0281489 0.0247267 126 34 64 32 32 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.09 vpr 54.15 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 15.7 MiB 0.07 696 13351 3608 8032 1711 54.4 MiB 0.14 0.00 3.32684 -88.9535 -3.32684 3.32684 0.76 0.000582229 0.000539502 0.0397252 0.0368373 26 1661 22 6.65987e+06 431052 477104. 1650.88 0.86 0.10897 0.0960997 21682 110474 -1 1506 23 1091 1601 139032 30494 2.73151 2.73151 -89.3817 -2.73151 0 0 585099. 2024.56 0.22 0.07 0.12 -1 -1 0.22 0.0231172 0.0201303 103 34 50 25 25 25 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.49 vpr 54.82 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 16.6 MiB 0.22 877 14541 4608 7775 2158 55.0 MiB 0.25 0.00 4.02035 -125.217 -4.02035 4.02035 0.77 0.000869501 0.000803358 0.0723033 0.0668669 32 2904 24 6.65987e+06 253560 554710. 1919.41 1.10 0.180152 0.159955 22834 132086 -1 2316 21 1799 3238 301370 67088 3.43985 3.43985 -128.883 -3.43985 0 0 701300. 2426.64 0.24 0.11 0.14 -1 -1 0.24 0.0366202 0.0321906 147 94 32 32 94 32 + fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.31 vpr 55.11 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30404 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 16.6 MiB 0.20 938 18660 5414 10450 2796 55.1 MiB 0.27 0.01 3.4903 -116.326 -3.4903 3.4903 0.76 0.000861072 0.000797133 0.0728166 0.0673928 32 2458 24 6.65987e+06 469086 554710. 1919.41 1.04 0.178292 0.158613 22834 132086 -1 2141 19 1808 2807 273054 57967 2.90897 2.90897 -115.947 -2.90897 0 0 701300. 2426.64 0.24 0.10 0.13 -1 -1 0.24 0.0322415 0.0283699 146 94 29 29 93 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.66 vpr 55.53 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30848 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 17.4 MiB 0.91 758 13949 4789 6835 2325 55.9 MiB 0.17 0.00 3.74419 -135.496 -3.74419 3.74419 0.79 0.000879448 0.00081364 0.0652562 0.060377 52 2457 36 6.95648e+06 361892 926341. 3205.33 13.57 0.439681 0.382881 29218 227130 -1 1878 22 1835 2866 289802 65113 4.23556 4.23556 -151.128 -4.23556 0 0 1.14541e+06 3963.36 0.35 0.11 0.22 -1 -1 0.35 0.0382868 0.0336505 84 96 32 32 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 7.46 vpr 55.58 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30740 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 17.0 MiB 2.12 807 12716 4975 6082 1659 55.8 MiB 0.15 0.00 3.9478 -130.518 -3.9478 3.9478 0.78 0.000829365 0.000766521 0.0685993 0.0635233 54 2146 30 6.95648e+06 202660 949917. 3286.91 5.13 0.330163 0.287897 29506 232905 -1 1685 18 1400 2098 213485 43634 3.62622 3.62622 -131.351 -3.62622 0 0 1.17392e+06 4061.99 0.35 0.08 0.23 -1 -1 0.35 0.0304506 0.0268317 76 91 30 30 89 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.29 vpr 55.34 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30480 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 17.2 MiB 0.75 1022 7103 1835 4569 699 55.9 MiB 0.10 0.00 3.60914 -132.635 -3.60914 3.60914 0.78 0.000804371 0.000744036 0.0346138 0.0320878 46 2554 25 6.95648e+06 275038 828058. 2865.25 4.62 0.258806 0.224651 28066 200906 -1 2223 18 1334 2004 216147 39714 3.53062 3.53062 -136.461 -3.53062 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.029555 0.0260507 77 65 54 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 6.37 vpr 55.21 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30608 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56856 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 17.0 MiB 0.39 752 10672 3799 5216 1657 55.5 MiB 0.14 0.00 4.001 -128.21 -4.001 4.001 0.78 0.00074545 0.000690194 0.0513903 0.047659 42 2751 33 6.95648e+06 231611 744469. 2576.02 2.07 0.18108 0.159531 27202 183097 -1 1913 20 1599 2343 292763 66703 4.24976 4.24976 -148.061 -4.24976 0 0 949917. 3286.91 0.29 0.11 0.18 -1 -1 0.29 0.0300134 0.0264233 75 34 87 29 29 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 9.23 vpr 55.51 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30292 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 17.1 MiB 0.69 716 9857 3295 4764 1798 55.6 MiB 0.13 0.00 3.66789 -133.791 -3.66789 3.66789 0.78 0.000804999 0.000744572 0.0517762 0.0479841 56 2114 50 6.95648e+06 188184 973134. 3367.25 3.88 0.253734 0.222666 29794 239141 -1 1733 20 1828 3085 304377 68520 4.18056 4.18056 -146.075 -4.18056 0 0 1.19926e+06 4149.71 0.36 0.11 0.23 -1 -1 0.36 0.0333783 0.0295361 78 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 7.38 vpr 55.53 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30564 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57380 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 17.1 MiB 0.41 727 15003 5272 7155 2576 56.0 MiB 0.16 0.00 3.0985 -114.166 -3.0985 3.0985 0.78 0.00083266 0.000767763 0.0625094 0.0577294 46 2388 31 6.95648e+06 419795 828058. 2865.25 3.38 0.234167 0.205812 28066 200906 -1 1787 43 2005 2784 730841 315091 3.18097 3.18097 -124.788 -3.18097 0 0 1.01997e+06 3529.29 0.31 0.26 0.19 -1 -1 0.31 0.0620908 0.0538349 89 64 63 32 63 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.02 vpr 55.04 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30672 -1 -1 14 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 16.7 MiB 3.30 451 8433 2993 4087 1353 55.2 MiB 0.09 0.00 3.26916 -93.4177 -3.26916 3.26916 0.79 0.000630894 0.000584646 0.0364314 0.0337851 40 1248 26 6.95648e+06 202660 706193. 2443.58 2.39 0.163537 0.142455 26914 176310 -1 1055 17 815 1236 107720 25139 2.78643 2.78643 -95.6809 -2.78643 0 0 926341. 3205.33 0.33 0.06 0.19 -1 -1 0.33 0.0220427 0.0194572 54 34 54 27 27 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 6.37 vpr 55.25 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30220 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 16.9 MiB 0.49 722 11088 4563 6076 449 55.4 MiB 0.13 0.00 3.0394 -105.493 -3.0394 3.0394 0.79 0.000717769 0.000663917 0.0490113 0.0454021 46 2473 31 6.95648e+06 246087 828058. 2865.25 3.24 0.20593 0.180425 28066 200906 -1 1759 19 1291 1754 163088 35932 2.94752 2.94752 -110.795 -2.94752 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0280957 0.0247537 77 4 115 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 17.27 vpr 55.08 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30184 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 16.8 MiB 1.61 523 9994 2759 5612 1623 55.5 MiB 0.12 0.00 3.10275 -98.727 -3.10275 3.10275 0.78 0.000714373 0.000660532 0.048677 0.0450769 40 1614 29 6.95648e+06 159232 706193. 2443.58 2.71 0.195844 0.170918 26914 176310 -1 1450 29 1228 1885 240647 64693 3.13827 3.13827 -112.589 -3.13827 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0376852 0.0327358 57 85 0 0 84 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.18 vpr 55.22 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30476 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 16.7 MiB 1.08 638 10614 4216 4843 1555 55.4 MiB 0.13 0.00 2.95005 -114.898 -2.95005 2.95005 0.83 0.000698532 0.000645321 0.0508729 0.0471038 40 1918 25 6.95648e+06 144757 706193. 2443.58 4.16 0.256898 0.223531 26914 176310 -1 1793 21 1498 2160 300910 58021 3.27212 3.27212 -130.848 -3.27212 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0288681 0.0253049 62 34 64 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 9.46 vpr 55.17 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30212 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 16.8 MiB 1.59 651 11079 4648 6085 346 55.5 MiB 0.12 0.00 3.1095 -111.937 -3.1095 3.1095 0.89 0.000731833 0.000678551 0.0458161 0.0422303 36 1920 47 6.95648e+06 173708 648988. 2245.63 1.91 0.181509 0.158821 26050 158493 -1 1519 21 1342 1799 170434 34496 3.10587 3.10587 -117.5 -3.10587 0 0 828058. 2865.25 0.26 0.08 0.15 -1 -1 0.26 0.0286357 0.0250371 60 63 30 30 60 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 8.44 vpr 55.11 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30504 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 16.8 MiB 0.88 540 10476 4331 5741 404 55.8 MiB 0.12 0.00 2.9793 -106.716 -2.9793 2.9793 0.78 0.000716077 0.000662371 0.0491184 0.0454657 46 1966 30 6.95648e+06 173708 828058. 2865.25 10.92 0.365606 0.316915 28066 200906 -1 1411 31 1273 1825 235189 82151 3.08097 3.08097 -112.726 -3.08097 0 0 1.01997e+06 3529.29 0.31 0.11 0.23 -1 -1 0.31 0.0401137 0.034773 60 65 25 25 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 10.64 vpr 55.60 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30428 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 17.1 MiB 1.42 751 11803 3277 6504 2022 55.9 MiB 0.16 0.00 3.1024 -116.565 -3.1024 3.1024 0.79 0.000809537 0.000748503 0.0550267 0.0509847 46 2313 25 6.95648e+06 303989 828058. 2865.25 5.34 0.303346 0.264455 28066 200906 -1 1852 21 1546 2289 235897 48439 3.58207 3.58207 -132.449 -3.58207 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0334417 0.0294807 79 58 64 32 57 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.17 vpr 55.49 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30476 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 17.1 MiB 1.13 832 16371 6652 7990 1729 56.0 MiB 0.21 0.01 3.72719 -138.885 -3.72719 3.72719 0.78 0.000846594 0.000782668 0.0720933 0.0667308 42 2820 47 6.95648e+06 376368 744469. 2576.02 2.49 0.233839 0.206011 27202 183097 -1 2095 21 1984 2782 328071 63869 4.18856 4.18856 -154.486 -4.18856 0 0 949917. 3286.91 0.29 0.11 0.18 -1 -1 0.29 0.034956 0.0307289 87 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 8.83 vpr 54.96 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30548 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 16.7 MiB 1.08 465 11234 4544 5569 1121 55.2 MiB 0.11 0.00 3.14676 -95.8879 -3.14676 3.14676 0.78 0.000627064 0.000580039 0.0478761 0.0443766 44 1739 43 6.95648e+06 188184 787024. 2723.27 2.20 0.168788 0.147767 27778 195446 -1 1206 29 1148 1697 153051 34541 2.93173 2.93173 -98.2896 -2.93173 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0333495 0.0289398 58 29 58 29 24 24 + fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 17.00 vpr 55.30 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 17.1 MiB 1.74 807 11813 5009 6533 271 56.0 MiB 0.16 0.00 3.1505 -120.688 -3.1505 3.1505 0.78 0.000835468 0.000772396 0.064793 0.0599203 46 2485 26 6.95648e+06 188184 828058. 2865.25 2.55 0.239354 0.210327 28066 200906 -1 1926 23 1996 3149 309800 63389 3.39082 3.39082 -129.414 -3.39082 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0372594 0.0326794 77 63 64 32 62 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.26 vpr 55.36 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30392 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57268 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 17.1 MiB 1.51 707 11064 3419 5711 1934 55.9 MiB 0.14 0.00 3.0804 -113.837 -3.0804 3.0804 0.78 0.000810455 0.000747687 0.0519641 0.0481114 48 2255 41 6.95648e+06 289514 865456. 2994.66 5.08 0.346272 0.300676 28354 207349 -1 1654 18 1439 1842 226755 48463 3.07472 3.07472 -125.527 -3.07472 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.0299312 0.0263848 78 57 64 32 56 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.31 vpr 55.42 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30196 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 17.0 MiB 0.91 574 10698 2981 5511 2206 55.7 MiB 0.11 0.00 2.43656 -93.1005 -2.43656 2.43656 0.78 0.000735288 0.000680052 0.0451506 0.0418014 46 1623 29 6.95648e+06 289514 828058. 2865.25 2.06 0.168736 0.147917 28066 200906 -1 1217 17 1052 1392 126295 29013 2.49933 2.49933 -95.2478 -2.49933 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0254667 0.022399 67 65 29 29 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.31 vpr 54.63 MiB 0.03 6708 -1 -1 1 0.03 -1 -1 30256 -1 -1 10 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 16.3 MiB 0.34 450 11098 4789 5936 373 54.8 MiB 0.10 0.00 2.21746 -80.6728 -2.21746 2.21746 0.79 0.000544412 0.000503064 0.0424541 0.0392929 36 1473 48 6.95648e+06 144757 648988. 2245.63 2.02 0.171064 0.148638 26050 158493 -1 1202 19 727 933 107651 22631 2.32998 2.32998 -89.8135 -2.32998 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0206981 0.0180566 45 34 24 24 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.80 vpr 55.27 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30424 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 1.05 525 9374 3845 5090 439 55.6 MiB 0.11 0.00 3.8254 -127.041 -3.8254 3.8254 0.79 0.000723012 0.000669471 0.0464698 0.0430685 46 1833 38 6.95648e+06 159232 828058. 2865.25 3.17 0.207158 0.18114 28066 200906 -1 1250 30 1144 1529 130641 31620 3.60442 3.60442 -125.091 -3.60442 0 0 1.01997e+06 3529.29 0.36 0.09 0.20 -1 -1 0.36 0.0391737 0.0340232 61 64 31 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.04 vpr 55.43 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 17.2 MiB 0.43 664 13663 4054 7770 1839 56.1 MiB 0.18 0.00 3.70954 -128.174 -3.70954 3.70954 0.79 0.000790126 0.000730736 0.061004 0.0565006 48 1965 25 6.95648e+06 303989 865456. 2994.66 5.16 0.308947 0.269631 28354 207349 -1 1551 23 1679 2175 235771 49979 3.82996 3.82996 -136.933 -3.82996 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0353726 0.0310635 81 34 91 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 8.74 vpr 55.64 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30560 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57468 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 17.4 MiB 1.25 791 14779 5223 7361 2195 56.1 MiB 0.19 0.00 3.66119 -126.81 -3.66119 3.66119 0.79 0.000925234 0.000856733 0.0699977 0.0648466 46 2549 27 6.95648e+06 390843 828058. 2865.25 2.40 0.238342 0.209341 28066 200906 -1 1937 22 1549 2356 225982 45477 3.72986 3.72986 -137.795 -3.72986 0 0 1.01997e+06 3529.29 0.32 0.10 0.21 -1 -1 0.32 0.0383009 0.0335549 85 124 0 0 125 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 7.27 vpr 54.59 MiB 0.04 6768 -1 -1 1 0.02 -1 -1 30664 -1 -1 13 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 16.2 MiB 0.90 348 7809 2770 3912 1127 54.8 MiB 0.06 0.00 2.19726 -66.8557 -2.19726 2.19726 0.78 0.000473413 0.000436993 0.0271058 0.0250799 48 746 30 6.95648e+06 188184 865456. 2994.66 4.29 0.173368 0.149519 28354 207349 -1 684 18 545 674 46181 13138 1.96323 1.96323 -65.8759 -1.96323 0 0 1.05005e+06 3633.38 0.38 0.05 0.20 -1 -1 0.38 0.0241773 0.021461 44 30 26 26 22 22 + fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.16 vpr 55.31 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 30128 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 17.0 MiB 0.80 737 10316 4241 5568 507 55.8 MiB 0.12 0.00 4.02534 -135.509 -4.02534 4.02534 0.79 0.000749416 0.00069316 0.0508599 0.0471246 52 2457 45 6.95648e+06 173708 926341. 3205.33 2.57 0.210813 0.184841 29218 227130 -1 1700 19 1599 2459 222342 50311 4.00711 4.00711 -137.495 -4.00711 0 0 1.14541e+06 3963.36 0.35 0.09 0.22 -1 -1 0.35 0.0292887 0.0258482 74 3 122 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.21 vpr 54.64 MiB 0.03 6604 -1 -1 1 0.03 -1 -1 30440 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.4 MiB 0.29 731 9906 3689 5081 1136 54.9 MiB 0.09 0.00 2.15326 -87.6492 -2.15326 2.15326 0.78 0.000504382 0.000464453 0.0353336 0.0326087 36 1684 36 6.95648e+06 115805 648988. 2245.63 3.70 0.184454 0.160075 26050 158493 -1 1509 16 702 877 118293 22547 2.14968 2.14968 -92.7895 -2.14968 0 0 828058. 2865.25 0.26 0.05 0.16 -1 -1 0.26 0.0171745 0.0151304 44 3 53 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 8.97 vpr 55.31 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30468 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57336 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 17.1 MiB 0.59 827 16371 5667 8716 1988 56.0 MiB 0.21 0.00 3.67409 -135.23 -3.67409 3.67409 0.79 0.000804702 0.000743812 0.0691674 0.0638722 44 2408 31 6.95648e+06 376368 787024. 2723.27 5.21 0.360239 0.313935 27778 195446 -1 1982 22 1941 2992 332384 62167 3.93606 3.93606 -144.694 -3.93606 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0345315 0.030342 85 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 8.60 vpr 55.28 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30148 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 16.9 MiB 0.31 985 13754 4254 7657 1843 55.5 MiB 0.16 0.00 3.0955 -119.852 -3.0955 3.0955 0.94 0.000547522 0.000498134 0.0429361 0.0394104 36 2737 45 6.95648e+06 405319 648988. 2245.63 5.43 0.230159 0.200477 26050 158493 -1 2323 25 1731 2431 347279 83720 3.08387 3.08387 -128.967 -3.08387 0 0 828058. 2865.25 0.26 0.13 0.16 -1 -1 0.26 0.0363953 0.0318901 87 3 124 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.04 vpr 55.46 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30612 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57296 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 17.0 MiB 0.43 789 18308 6099 10070 2139 56.0 MiB 0.23 0.00 3.69663 -134.61 -3.69663 3.69663 0.78 0.000841402 0.00077795 0.0774414 0.0714927 46 2618 24 6.95648e+06 405319 828058. 2865.25 3.08 0.247806 0.218563 28066 200906 -1 1966 23 1947 3005 306179 61070 3.95996 3.95996 -145.033 -3.95996 0 0 1.01997e+06 3529.29 0.32 0.12 0.20 -1 -1 0.32 0.0373764 0.0328109 87 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.86 vpr 55.09 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 16.8 MiB 0.78 541 9374 3087 4731 1556 55.3 MiB 0.11 0.00 2.8982 -102.358 -2.8982 2.8982 0.78 0.000667416 0.000617662 0.0429239 0.0397679 38 2088 42 6.95648e+06 144757 678818. 2348.85 3.75 0.197789 0.172737 26626 170182 -1 1425 22 1051 1619 152967 32332 3.00582 3.00582 -112.509 -3.00582 0 0 902133. 3121.57 0.28 0.07 0.16 -1 -1 0.28 0.0290014 0.0254039 57 34 54 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 4.97 vpr 54.96 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30308 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 16.7 MiB 0.58 571 8444 3466 4635 343 55.3 MiB 0.10 0.00 3.1175 -112.058 -3.1175 3.1175 0.78 0.000669675 0.000619646 0.0389261 0.0360743 40 1898 35 6.95648e+06 173708 706193. 2443.58 2.06 0.183491 0.159634 26914 176310 -1 1445 18 1278 1711 150217 33604 3.28932 3.28932 -123.575 -3.28932 0 0 926341. 3205.33 0.28 0.07 0.17 -1 -1 0.28 0.0245038 0.0214527 60 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.95 vpr 55.06 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 16.6 MiB 0.56 505 10257 3681 4972 1604 55.2 MiB 0.11 0.00 3.0435 -97.9378 -3.0435 3.0435 0.79 0.000630539 0.000583813 0.0448366 0.0415637 44 1765 29 6.95648e+06 188184 787024. 2723.27 2.45 0.178365 0.155472 27778 195446 -1 1214 20 1014 1525 141974 32038 2.94567 2.94567 -99.8648 -2.94567 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0253989 0.0222133 61 34 56 28 28 28 + fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 6.73 vpr 55.05 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.6 MiB 0.26 703 9374 3895 5319 160 55.3 MiB 0.11 0.00 2.93285 -116.414 -2.93285 2.93285 0.79 0.000665841 0.000615857 0.0426467 0.0395299 44 2059 34 6.95648e+06 144757 787024. 2723.27 2.40 0.187276 0.16368 27778 195446 -1 1704 19 1486 2122 212756 41558 3.10432 3.10432 -121.981 -3.10432 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0257325 0.0225987 64 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.44 vpr 55.04 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30276 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 17.0 MiB 0.26 623 13443 5605 7395 443 55.6 MiB 0.15 0.00 3.0955 -111.973 -3.0955 3.0955 0.79 0.000680206 0.000628393 0.052822 0.0489018 44 1935 49 6.95648e+06 303989 787024. 2723.27 2.78 0.21504 0.187742 27778 195446 -1 1543 21 1300 1986 180924 37774 3.16997 3.16997 -116.06 -3.16997 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0278644 0.0243735 68 34 61 31 31 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 8.82 vpr 55.21 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 16.6 MiB 0.81 508 10219 3550 4648 2021 55.4 MiB 0.10 0.00 2.43392 -85.0275 -2.43392 2.43392 0.79 0.00067651 0.000625801 0.0435392 0.0403303 46 1410 33 6.95648e+06 260562 828058. 2865.25 2.35 0.188856 0.16503 28066 200906 -1 1201 18 1109 1487 126196 30995 2.56343 2.56343 -89.4464 -2.56343 0 0 1.01997e+06 3529.29 0.30 0.07 0.20 -1 -1 0.30 0.0248665 0.0218134 64 61 29 29 57 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 7.59 vpr 55.59 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30452 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57600 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 17.5 MiB 0.80 944 14375 4687 7097 2591 56.2 MiB 0.18 0.00 3.95585 -140.771 -3.95585 3.95585 0.79 0.000899245 0.000831195 0.0659386 0.0610834 48 2883 40 6.95648e+06 405319 865456. 2994.66 16.50 0.511048 0.443973 28354 207349 -1 2294 24 2184 3486 377312 90728 4.38722 4.38722 -153.761 -4.38722 0 0 1.05005e+06 3633.38 0.35 0.11 0.20 -1 -1 0.35 0.0296691 0.0262096 100 29 128 32 27 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.64 vpr 55.59 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 17.1 MiB 1.05 786 12739 3070 7853 1816 56.0 MiB 0.17 0.00 3.0804 -115.407 -3.0804 3.0804 0.78 0.00083689 0.000772052 0.0552905 0.0511766 44 2281 28 6.95648e+06 390843 787024. 2723.27 5.34 0.378482 0.329415 27778 195446 -1 1763 21 1720 2390 256667 49921 3.42677 3.42677 -124.128 -3.42677 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0343901 0.0302215 87 65 62 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 6.98 vpr 55.19 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30496 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 16.9 MiB 1.18 525 12362 5188 6715 459 55.8 MiB 0.14 0.00 3.26916 -109.722 -3.26916 3.26916 0.79 0.000738459 0.000682505 0.0576452 0.0533717 48 1724 48 6.95648e+06 217135 865456. 2994.66 2.16 0.201988 0.176898 28354 207349 -1 1454 21 1139 1597 159183 39322 3.13223 3.13223 -112.426 -3.13223 0 0 1.05005e+06 3633.38 0.33 0.08 0.20 -1 -1 0.33 0.0298896 0.0261253 62 90 0 0 89 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.82 vpr 55.48 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30340 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 17.0 MiB 0.71 965 12791 5492 6957 342 55.6 MiB 0.19 0.00 3.0625 -116.847 -3.0625 3.0625 0.79 0.000813283 0.000751939 0.0662596 0.0611702 36 2834 31 6.95648e+06 202660 648988. 2245.63 2.43 0.211764 0.1869 26050 158493 -1 2372 21 1850 2739 325922 60766 3.31242 3.31242 -129.12 -3.31242 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0335512 0.0294765 79 64 60 30 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 20.78 vpr 55.96 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30536 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57460 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 17.5 MiB 2.44 778 10998 4559 6059 380 56.1 MiB 0.15 0.00 4.63397 -149.774 -4.63397 4.63397 0.79 0.000904427 0.000837364 0.0642723 0.0595842 40 3307 46 6.95648e+06 202660 706193. 2443.58 19.16 0.464616 0.402919 26914 176310 -1 2486 24 1824 2743 347509 73151 4.95601 4.95601 -164.037 -4.95601 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0411665 0.0359126 78 124 0 0 124 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 7.95 vpr 55.50 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30416 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57360 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 17.2 MiB 1.46 775 10476 3672 5136 1668 56.0 MiB 0.15 0.00 4.49354 -135.009 -4.49354 4.49354 0.80 0.000849181 0.000784907 0.0580535 0.0537791 40 2938 39 6.95648e+06 188184 706193. 2443.58 11.98 0.422176 0.366239 26914 176310 -1 2335 23 1681 2597 332607 68939 4.45026 4.45026 -151.717 -4.45026 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0373538 0.0327533 76 90 31 31 89 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.36 vpr 55.46 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30352 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 17.2 MiB 0.92 864 15493 5631 7761 2101 56.0 MiB 0.19 0.00 3.1285 -114.829 -3.1285 3.1285 0.78 0.000814818 0.00075409 0.0679248 0.0629081 38 2729 27 6.95648e+06 361892 678818. 2348.85 3.52 0.235903 0.207415 26626 170182 -1 2125 21 1698 2468 253022 49412 3.53207 3.53207 -129.53 -3.53207 0 0 902133. 3121.57 0.26 0.10 0.17 -1 -1 0.26 0.0336239 0.0295316 85 64 60 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 7.51 vpr 55.11 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30712 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57400 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 17.2 MiB 0.56 956 10743 3793 5013 1937 56.1 MiB 0.14 0.00 3.77119 -139.239 -3.77119 3.77119 0.79 0.000804643 0.000740484 0.0477604 0.0442308 40 2673 49 6.95648e+06 376368 706193. 2443.58 18.46 0.445799 0.386709 26914 176310 -1 2454 23 2164 3296 573566 160737 4.31196 4.31196 -160.42 -4.31196 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0196303 0.0174175 86 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.34 vpr 55.92 MiB 0.03 7300 -1 -1 1 0.05 -1 -1 30732 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 17.8 MiB 1.15 1078 14999 4071 8495 2433 56.1 MiB 0.20 0.00 3.84845 -142.865 -3.84845 3.84845 0.79 0.00100011 0.000925536 0.0729879 0.0675806 40 2999 23 6.95648e+06 448746 706193. 2443.58 3.16 0.277834 0.244405 26914 176310 -1 2727 22 2190 3320 395721 75466 4.48431 4.48431 -158.381 -4.48431 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0426818 0.0374729 104 96 62 32 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.61 vpr 55.04 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30624 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 16.6 MiB 0.66 721 10304 4339 5695 270 55.5 MiB 0.12 0.00 3.34916 -121.065 -3.34916 3.34916 0.79 0.000679478 0.0006283 0.0479368 0.0443838 36 2206 36 6.95648e+06 159232 648988. 2245.63 3.58 0.20187 0.176074 26050 158493 -1 1763 19 1395 1957 217691 41583 3.36742 3.36742 -127.061 -3.36742 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0260836 0.0229116 62 34 62 31 31 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.39 vpr 55.50 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30572 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57176 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 16.9 MiB 0.77 784 13959 3819 8017 2123 55.8 MiB 0.20 0.00 4.0519 -136.516 -4.0519 4.0519 0.88 0.000822363 0.000759728 0.0651593 0.0601867 46 2549 33 6.95648e+06 390843 828058. 2865.25 2.30 0.178106 0.157526 28066 200906 -1 1966 20 1596 2575 244578 49608 4.03652 4.03652 -145.714 -4.03652 0 0 1.01997e+06 3529.29 0.32 0.10 0.19 -1 -1 0.32 0.0326263 0.0286534 86 64 62 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 5.75 vpr 55.51 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30620 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57236 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 17.0 MiB 0.83 863 13557 4887 6407 2263 55.9 MiB 0.15 0.00 3.29596 -116.543 -3.29596 3.29596 0.79 0.000826598 0.000764127 0.0580089 0.0536391 52 2397 33 6.95648e+06 376368 926341. 3205.33 2.47 0.216284 0.190152 29218 227130 -1 1791 18 1451 2371 211838 44135 3.12597 3.12597 -117.726 -3.12597 0 0 1.14541e+06 3963.36 0.44 0.09 0.23 -1 -1 0.44 0.0303995 0.0268234 85 63 62 32 62 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.27 vpr 55.29 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30428 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 17.1 MiB 0.81 760 7738 3134 4374 230 55.9 MiB 0.11 0.00 3.65689 -135.736 -3.65689 3.65689 0.79 0.000768521 0.000710674 0.0392646 0.0364009 48 2648 42 6.95648e+06 188184 865456. 2994.66 5.99 0.322327 0.280155 28354 207349 -1 2265 24 2014 3396 489104 98728 4.49846 4.49846 -152.115 -4.49846 0 0 1.05005e+06 3633.38 0.32 0.15 0.20 -1 -1 0.32 0.0357652 0.0314289 78 3 128 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 8.53 vpr 55.62 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57456 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 17.2 MiB 1.71 808 11991 3810 6067 2114 56.1 MiB 0.14 0.00 3.1768 -117.392 -3.1768 3.1768 0.78 0.000855962 0.000791607 0.0563158 0.0521514 44 2611 46 6.95648e+06 332941 787024. 2723.27 2.58 0.226444 0.198757 27778 195446 -1 1560 22 1437 2242 163431 39790 3.22927 3.22927 -119.623 -3.22927 0 0 997811. 3452.63 0.33 0.09 0.19 -1 -1 0.33 0.0363761 0.0319338 81 96 25 25 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 9.39 vpr 55.68 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30368 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57424 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 17.2 MiB 0.89 845 12926 3665 7173 2088 56.1 MiB 0.16 0.00 3.1214 -116.244 -3.1214 3.1214 0.81 0.000830763 0.000768988 0.0548836 0.0508521 44 2445 25 6.95648e+06 405319 787024. 2723.27 2.11 0.187834 0.165414 27778 195446 -1 1904 21 1460 2221 211558 41287 3.20917 3.20917 -118.302 -3.20917 0 0 997811. 3452.63 0.33 0.09 0.19 -1 -1 0.33 0.0341347 0.030024 85 61 64 32 60 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 9.23 vpr 55.66 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30416 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57404 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 17.1 MiB 0.61 803 14996 4547 7782 2667 56.1 MiB 0.19 0.00 3.09676 -115.471 -3.09676 3.09676 0.79 0.000844081 0.000779235 0.0646651 0.0598177 46 2180 41 6.95648e+06 405319 828058. 2865.25 2.73 0.260648 0.228691 28066 200906 -1 1716 21 1648 2481 218899 44509 3.40477 3.40477 -118.761 -3.40477 0 0 1.01997e+06 3529.29 0.28 0.05 0.15 -1 -1 0.28 0.0178975 0.0158507 88 65 63 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.68 vpr 55.32 MiB 0.03 6992 -1 -1 1 0.04 -1 -1 30496 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 17.1 MiB 0.56 938 15617 5888 7604 2125 56.0 MiB 0.20 0.00 3.66789 -137.042 -3.66789 3.66789 0.79 0.0008042 0.000744395 0.0638518 0.0591043 46 2570 27 6.95648e+06 405319 828058. 2865.25 4.97 0.305164 0.266614 28066 200906 -1 2139 21 1787 2730 301830 54657 3.79546 3.79546 -143.738 -3.79546 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0332882 0.029281 85 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.96 vpr 55.32 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30648 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 17.1 MiB 1.05 799 12448 3955 5788 2705 56.0 MiB 0.13 0.00 3.78219 -138.337 -3.78219 3.78219 0.82 0.000840732 0.000776763 0.0516704 0.0478157 46 2443 27 6.95648e+06 434271 828058. 2865.25 4.91 0.340215 0.295364 28066 200906 -1 1841 21 1843 2632 251505 53793 4.26696 4.26696 -151.283 -4.26696 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.034467 0.0302664 88 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.05 vpr 55.65 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30452 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 17.4 MiB 1.44 822 11983 4768 6508 707 56.1 MiB 0.16 0.00 4.19045 -134.89 -4.19045 4.19045 0.78 0.000888449 0.000822115 0.057943 0.0536551 46 2766 26 6.95648e+06 361892 828058. 2865.25 1.94 0.157961 0.139216 28066 200906 -1 2132 29 1770 2714 329791 80525 3.91612 3.91612 -138.687 -3.91612 0 0 1.01997e+06 3529.29 0.34 0.13 0.20 -1 -1 0.34 0.0470633 0.0408655 84 122 0 0 122 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 11.19 vpr 55.63 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57472 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 17.5 MiB 1.12 840 10346 3694 5398 1254 56.1 MiB 0.15 0.00 3.7688 -130.649 -3.7688 3.7688 0.78 0.000898089 0.000832628 0.0601579 0.0558483 40 2666 31 6.95648e+06 188184 706193. 2443.58 3.38 0.248221 0.217835 26914 176310 -1 2271 21 1822 3115 333026 65210 4.32296 4.32296 -148.088 -4.32296 0 0 926341. 3205.33 0.28 0.11 0.18 -1 -1 0.28 0.035904 0.0315178 78 94 32 32 94 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.28 vpr 55.07 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30612 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 16.8 MiB 0.19 594 10647 4341 5910 396 55.5 MiB 0.11 0.00 3.12656 -113.614 -3.12656 3.12656 0.79 0.000691883 0.000639508 0.040944 0.0378145 50 2129 50 6.95648e+06 332941 902133. 3121.57 16.12 0.360348 0.311375 28642 213929 -1 1461 19 1344 2068 206134 44912 2.83502 2.83502 -112.09 -2.83502 0 0 1.08113e+06 3740.92 0.33 0.08 0.21 -1 -1 0.33 0.0264305 0.0231724 71 34 63 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 7.52 vpr 55.36 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 17.1 MiB 1.11 610 8444 3495 4676 273 55.8 MiB 0.10 0.00 3.0405 -112.422 -3.0405 3.0405 0.79 0.000765347 0.000706791 0.0443684 0.0410687 54 1724 27 6.95648e+06 144757 949917. 3286.91 5.16 0.294755 0.255222 29506 232905 -1 1300 19 1240 1878 157600 35553 2.94772 2.94772 -111.172 -2.94772 0 0 1.17392e+06 4061.99 0.36 0.08 0.22 -1 -1 0.36 0.0292366 0.0256701 63 94 0 0 94 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 8.11 vpr 55.89 MiB 0.05 7328 -1 -1 1 0.04 -1 -1 30776 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57344 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 17.7 MiB 0.67 1000 14152 3772 8188 2192 56.0 MiB 0.21 0.00 4.46224 -157.711 -4.46224 4.46224 0.79 0.000959767 0.000889159 0.0673099 0.0623496 52 3584 32 6.95648e+06 434271 926341. 3205.33 2.76 0.262764 0.230744 29218 227130 -1 2311 24 2463 3926 449300 84329 5.01271 5.01271 -169.61 -5.01271 0 0 1.14541e+06 3963.36 0.35 0.14 0.22 -1 -1 0.35 0.0442103 0.0387779 103 65 96 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.01 vpr 55.42 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30472 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 17.0 MiB 0.98 717 11983 4638 6220 1125 55.8 MiB 0.13 0.00 3.1457 -117.079 -3.1457 3.1457 0.83 0.000767391 0.000707008 0.0457991 0.0422299 54 1802 21 6.95648e+06 347416 949917. 3286.91 5.07 0.258793 0.225489 29506 232905 -1 1382 20 1258 1632 162958 33206 3.08582 3.08582 -115.975 -3.08582 0 0 1.17392e+06 4061.99 0.35 0.08 0.22 -1 -1 0.35 0.0319212 0.0281094 83 34 92 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.56 vpr 55.18 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30400 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 16.6 MiB 0.33 571 10581 4367 5776 438 55.5 MiB 0.12 0.00 3.0735 -108.432 -3.0735 3.0735 0.78 0.00048962 0.00044135 0.0422785 0.0391435 38 2111 32 6.95648e+06 275038 678818. 2348.85 3.65 0.193576 0.169627 26626 170182 -1 1660 20 1307 1833 192524 40300 3.39077 3.39077 -120.143 -3.39077 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0268918 0.0235904 65 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 10.63 vpr 56.07 MiB 0.05 7244 -1 -1 1 0.04 -1 -1 30968 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57488 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 17.8 MiB 2.21 1126 15215 3732 10105 1378 56.1 MiB 0.23 0.00 4.49524 -160.999 -4.49524 4.49524 0.86 0.000764442 0.00069393 0.077111 0.0714565 48 2966 44 6.95648e+06 448746 865456. 2994.66 4.23 0.314899 0.27696 28354 207349 -1 2646 42 3756 5286 1462672 640315 4.77311 4.77311 -176.647 -4.77311 0 0 1.05005e+06 3633.38 0.33 0.43 0.20 -1 -1 0.33 0.0743274 0.0645816 103 127 32 32 128 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.75 vpr 55.24 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30444 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 17.2 MiB 1.19 804 14375 4842 7223 2310 56.0 MiB 0.17 0.00 3.73321 -136.441 -3.73321 3.73321 0.78 0.000822861 0.00076097 0.0601249 0.0555733 40 2312 24 6.95648e+06 405319 706193. 2443.58 2.70 0.221624 0.19469 26914 176310 -1 2006 29 2483 3423 554964 185828 3.91306 3.91306 -150.861 -3.91306 0 0 926341. 3205.33 0.28 0.18 0.17 -1 -1 0.28 0.0433324 0.037875 86 34 96 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 11.40 vpr 54.91 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30396 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 16.8 MiB 0.33 740 12763 4452 6451 1860 55.2 MiB 0.14 0.00 3.05815 -117.559 -3.05815 3.05815 0.78 0.000670133 0.000620064 0.045937 0.0425409 44 2027 49 6.95648e+06 347416 787024. 2723.27 2.61 0.205408 0.179422 27778 195446 -1 1626 20 1397 2146 206903 38854 3.01532 3.01532 -120.584 -3.01532 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0264483 0.0231899 70 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 9.45 vpr 55.56 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30896 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57312 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 17.5 MiB 0.55 924 14567 5045 6877 2645 56.0 MiB 0.18 0.00 4.52824 -159.979 -4.52824 4.52824 0.78 0.000934353 0.000865967 0.0661866 0.0613006 56 2718 34 6.95648e+06 448746 973134. 3367.25 6.07 0.374278 0.326319 29794 239141 -1 2226 20 2344 3844 427151 85461 4.96871 4.96871 -171.187 -4.96871 0 0 1.19926e+06 4149.71 0.36 0.13 0.23 -1 -1 0.36 0.0371241 0.0326754 105 34 128 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 8.35 vpr 55.08 MiB 0.02 6808 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.4 MiB 0.35 618 10614 4475 5915 224 55.1 MiB 0.12 0.00 2.92185 -113.699 -2.92185 2.92185 0.79 0.000663276 0.000612632 0.0480554 0.0444741 42 2134 43 6.95648e+06 144757 744469. 2576.02 12.14 0.332236 0.287746 27202 183097 -1 1617 22 1435 1986 209356 43293 3.02152 3.02152 -123.743 -3.02152 0 0 949917. 3286.91 0.29 0.08 0.18 -1 -1 0.29 0.0292499 0.0256727 62 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.26 vpr 55.14 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30588 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 16.7 MiB 0.82 601 10163 2708 5873 1582 55.3 MiB 0.10 0.00 3.10776 -107.419 -3.10776 3.10776 0.78 0.000671233 0.000620721 0.0399463 0.0369903 54 1459 21 6.95648e+06 303989 949917. 3286.91 5.07 0.22451 0.195016 29506 232905 -1 1102 20 985 1434 109295 26496 3.00067 3.00067 -105.385 -3.00067 0 0 1.17392e+06 4061.99 0.35 0.07 0.22 -1 -1 0.35 0.026703 0.0233884 65 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 9.65 vpr 55.51 MiB 0.05 7304 -1 -1 1 0.03 -1 -1 30512 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 17.1 MiB 1.28 705 12856 4698 6070 2088 55.9 MiB 0.15 0.00 3.39446 -107.671 -3.39446 3.39446 0.78 0.000801013 0.000740577 0.0617884 0.0571855 46 2664 50 6.95648e+06 289514 828058. 2865.25 3.42 0.226609 0.199079 28066 200906 -1 1883 27 1843 2876 287551 57988 3.21827 3.21827 -114.538 -3.21827 0 0 1.01997e+06 3529.29 0.35 0.10 0.20 -1 -1 0.35 0.0321761 0.0284117 77 88 29 29 85 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 9.17 vpr 55.50 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30656 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 17.1 MiB 0.91 807 13117 5264 6347 1506 56.0 MiB 0.17 0.00 3.65689 -136.729 -3.65689 3.65689 0.78 0.000838603 0.000775929 0.0706573 0.0654438 38 2388 26 6.95648e+06 188184 678818. 2348.85 10.96 0.381449 0.333325 26626 170182 -1 1894 19 1818 2360 253039 50070 3.94116 3.94116 -150.09 -3.94116 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0323499 0.0285903 78 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 7.31 vpr 55.43 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30804 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 17.2 MiB 1.69 890 14345 5510 6931 1904 56.1 MiB 0.17 0.00 3.74419 -138.408 -3.74419 3.74419 0.79 0.000846389 0.000783716 0.0643648 0.0596 48 2621 24 6.95648e+06 361892 865456. 2994.66 2.87 0.235732 0.207421 28354 207349 -1 2288 23 2108 3323 458543 82724 3.96296 3.96296 -146.844 -3.96296 0 0 1.05005e+06 3633.38 0.33 0.14 0.17 -1 -1 0.33 0.0375946 0.0329892 85 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 8.49 vpr 55.13 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 17.0 MiB 1.25 685 10813 4185 5763 865 55.7 MiB 0.12 0.00 3.05815 -117.015 -3.05815 3.05815 0.78 0.000738663 0.00068214 0.0433193 0.0400871 40 2185 26 6.95648e+06 347416 706193. 2443.58 11.00 0.343988 0.297979 26914 176310 -1 1816 29 1969 3032 645063 216819 3.04652 3.04652 -125.213 -3.04652 0 0 926341. 3205.33 0.29 0.20 0.17 -1 -1 0.29 0.0403573 0.0352751 69 65 32 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.32 vpr 55.27 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30456 -1 -1 10 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 16.6 MiB 1.48 684 10105 3894 4557 1654 55.2 MiB 0.12 0.00 3.30215 -110.841 -3.30215 3.30215 0.78 0.000734286 0.000678786 0.0513341 0.0475185 34 2333 36 6.95648e+06 144757 618332. 2139.56 2.79 0.187698 0.164376 25762 151098 -1 1925 22 1346 2104 243920 46754 3.23247 3.23247 -123.267 -3.23247 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0312479 0.0272846 59 90 0 0 89 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.13 vpr 55.31 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 17.1 MiB 0.94 949 12711 4087 6844 1780 55.9 MiB 0.16 0.00 3.1285 -115.995 -3.1285 3.1285 0.79 0.000789789 0.000730506 0.0579769 0.0537256 40 2341 23 6.95648e+06 318465 706193. 2443.58 2.64 0.219215 0.193059 26914 176310 -1 2169 20 1492 2138 239753 46681 3.25017 3.25017 -126.51 -3.25017 0 0 926341. 3205.33 0.32 0.09 0.16 -1 -1 0.32 0.0317563 0.0279294 79 60 60 30 57 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.44 vpr 55.18 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30496 -1 -1 16 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 17.1 MiB 0.83 684 10156 4202 5354 600 55.6 MiB 0.12 0.00 4.24545 -126.653 -4.24545 4.24545 0.78 0.000719551 0.000665891 0.0483738 0.0448545 38 2774 46 6.95648e+06 231611 678818. 2348.85 5.72 0.222935 0.195004 26626 170182 -1 1904 20 1534 2200 211911 43949 4.35121 4.35121 -139.979 -4.35121 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0288939 0.0253661 74 34 84 28 28 28 + fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.32 vpr 55.16 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30168 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 16.7 MiB 0.85 607 9374 3879 5147 348 55.4 MiB 0.11 0.00 3.0545 -108.859 -3.0545 3.0545 0.78 0.00070222 0.000649339 0.0469718 0.0434694 38 1928 41 6.95648e+06 173708 678818. 2348.85 3.61 0.208748 0.18205 26626 170182 -1 1502 24 1389 1829 175874 36943 3.02772 3.02772 -116.322 -3.02772 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0322411 0.0281068 61 63 30 30 60 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 10.41 vpr 55.53 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30364 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 16.7 MiB 1.33 777 7669 3175 4304 190 55.6 MiB 0.11 0.00 3.0765 -113.072 -3.0765 3.0765 0.79 0.000760969 0.000703696 0.0420006 0.0388104 36 2485 23 6.95648e+06 144757 648988. 2245.63 3.72 0.195632 0.17025 26050 158493 -1 2046 21 1209 1938 215887 40957 3.41097 3.41097 -124.918 -3.41097 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0308127 0.0269786 60 91 0 0 91 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 8.02 vpr 55.34 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30232 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 17.1 MiB 0.18 795 9448 3333 4743 1372 55.9 MiB 0.12 0.00 3.89245 -136.332 -3.89245 3.89245 0.78 0.000750346 0.000694366 0.0399646 0.0370639 46 3176 48 6.95648e+06 361892 828058. 2865.25 18.65 0.374995 0.32561 28066 200906 -1 2136 22 1851 2833 343213 72146 4.28572 4.28572 -152.852 -4.28572 0 0 1.01997e+06 3529.29 0.31 0.12 0.21 -1 -1 0.31 0.032814 0.0288984 86 4 124 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 8.97 vpr 55.74 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30564 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57352 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 17.1 MiB 1.46 926 10495 2590 6894 1011 56.0 MiB 0.16 0.00 3.78219 -140.482 -3.78219 3.78219 0.78 0.000850325 0.000786576 0.0467446 0.0432853 38 3067 50 6.95648e+06 390843 678818. 2348.85 17.40 0.39707 0.344576 26626 170182 -1 2334 21 1983 3252 332775 61340 3.97396 3.97396 -151.497 -3.97396 0 0 902133. 3121.57 0.30 0.11 0.16 -1 -1 0.30 0.0302416 0.0268598 86 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 10.31 vpr 55.60 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30488 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57432 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 17.1 MiB 1.71 831 9336 3198 4890 1248 56.1 MiB 0.13 0.00 3.70819 -135.715 -3.70819 3.70819 0.79 0.000845054 0.000781237 0.0423602 0.0391933 46 2972 41 6.95648e+06 376368 828058. 2865.25 4.69 0.236275 0.20676 28066 200906 -1 2199 30 2226 3425 534270 167425 4.11646 4.11646 -151.715 -4.11646 0 0 1.01997e+06 3529.29 0.31 0.18 0.19 -1 -1 0.31 0.0464352 0.0406145 85 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.61 vpr 55.64 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30456 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57424 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 17.2 MiB 1.06 822 13351 4683 6743 1925 56.1 MiB 0.17 0.00 3.75544 -130.593 -3.75544 3.75544 0.78 0.000835201 0.000770009 0.058796 0.0543823 50 2916 25 6.95648e+06 390843 902133. 3121.57 5.59 0.335875 0.292778 28642 213929 -1 2146 24 1746 2898 447947 134755 3.96616 3.96616 -145.731 -3.96616 0 0 1.08113e+06 3740.92 0.34 0.15 0.20 -1 -1 0.34 0.0389804 0.0342131 86 65 60 30 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.84 vpr 55.09 MiB 0.05 6872 -1 -1 1 0.03 -1 -1 30368 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 16.8 MiB 0.76 551 9064 3696 4990 378 55.5 MiB 0.10 0.00 3.29416 -111.889 -3.29416 3.29416 0.78 0.000663905 0.000613984 0.0412475 0.0381962 40 2036 23 6.95648e+06 173708 706193. 2443.58 2.08 0.173762 0.151543 26914 176310 -1 1859 21 1372 2084 273262 58723 3.34052 3.34052 -122.608 -3.34052 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0277576 0.0242929 62 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 16.55 vpr 55.54 MiB 0.03 7132 -1 -1 1 0.05 -1 -1 30408 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57320 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 17.2 MiB 0.80 751 12465 5336 6622 507 56.0 MiB 0.15 0.00 4.015 -133.992 -4.015 4.015 0.79 0.000795142 0.000734995 0.0638451 0.0590669 48 1982 34 6.95648e+06 217135 865456. 2994.66 2.00 0.220556 0.193952 28354 207349 -1 1774 24 1921 2579 273407 57155 4.08956 4.08956 -139.956 -4.08956 0 0 1.05005e+06 3633.38 0.32 0.11 0.20 -1 -1 0.32 0.0368824 0.0323098 78 63 60 30 60 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 7.80 vpr 55.53 MiB 0.03 7268 -1 -1 1 0.04 -1 -1 30900 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 17.3 MiB 1.64 807 14351 4061 7900 2390 56.1 MiB 0.19 0.00 3.71619 -135.355 -3.71619 3.71619 0.79 0.000933993 0.0008641 0.0655911 0.0607033 48 2485 31 6.95648e+06 448746 865456. 2994.66 5.01 0.343863 0.29912 28354 207349 -1 2096 24 2021 3007 372571 72781 3.85966 3.85966 -144.535 -3.85966 0 0 1.05005e+06 3633.38 0.32 0.13 0.20 -1 -1 0.32 0.0413743 0.0360517 88 127 0 0 128 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 9.66 vpr 55.54 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30424 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57440 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 17.2 MiB 0.99 718 14035 5965 7479 591 56.1 MiB 0.17 0.00 3.9948 -135.983 -3.9948 3.9948 0.86 0.000825772 0.000767316 0.0645026 0.0601466 46 2469 42 6.95648e+06 318465 828058. 2865.25 4.19 0.267723 0.235114 28066 200906 -1 1716 21 1568 2319 204950 42316 3.87381 3.87381 -138.135 -3.87381 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0349535 0.030681 81 94 31 31 93 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 8.24 vpr 55.58 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 17.2 MiB 1.20 700 13668 5834 7221 613 55.8 MiB 0.17 0.00 3.27591 -109.838 -3.27591 3.27591 0.79 0.000828137 0.000765674 0.0683842 0.0632918 46 2549 39 6.95648e+06 260562 828058. 2865.25 3.03 0.239199 0.210678 28066 200906 -1 1776 26 1662 2481 314380 73518 3.15782 3.15782 -119.93 -3.15782 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0399734 0.0349118 75 92 26 26 90 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 6.79 vpr 55.66 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.1 MiB 1.70 782 12628 3922 6830 1876 55.9 MiB 0.17 0.00 3.65989 -133.508 -3.65989 3.65989 0.79 0.000847012 0.000783895 0.0687225 0.0636858 48 2703 45 6.95648e+06 188184 865456. 2994.66 3.91 0.27018 0.237803 28354 207349 -1 2210 30 2465 4179 616570 159659 3.98016 3.98016 -151.445 -3.98016 0 0 1.05005e+06 3633.38 0.33 0.19 0.21 -1 -1 0.33 0.046621 0.0410429 81 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.90 vpr 55.50 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 17.1 MiB 1.04 662 10163 3749 4795 1619 55.9 MiB 0.12 0.00 3.14182 -102.393 -3.14182 3.14182 0.78 0.000793951 0.000734552 0.0476852 0.0441684 48 1973 21 6.95648e+06 318465 865456. 2994.66 2.54 0.202556 0.17711 28354 207349 -1 1696 21 1624 2407 283316 65812 3.55817 3.55817 -118.337 -3.55817 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0328738 0.0288671 77 88 26 26 85 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.85 vpr 54.98 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30456 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 16.6 MiB 0.80 574 9219 3815 5040 364 55.2 MiB 0.10 0.00 2.94595 -112.182 -2.94595 2.94595 0.78 0.000661709 0.000611937 0.041909 0.0388526 52 1840 30 6.95648e+06 144757 926341. 3205.33 9.92 0.329808 0.285281 29218 227130 -1 1364 19 1266 1929 183032 41983 3.25632 3.25632 -121.311 -3.25632 0 0 1.14541e+06 3963.36 0.39 0.08 0.23 -1 -1 0.39 0.0258203 0.0227261 61 3 96 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 22.58 vpr 55.45 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 30416 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57420 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 17.2 MiB 3.45 749 15688 6578 8529 581 56.1 MiB 0.18 0.00 3.77419 -136.605 -3.77419 3.77419 0.79 0.000844777 0.0007808 0.0712065 0.0658534 54 2216 46 6.95648e+06 347416 949917. 3286.91 3.36 0.272154 0.239104 29506 232905 -1 1659 23 1808 2766 282099 57836 3.98196 3.98196 -141.254 -3.98196 0 0 1.17392e+06 4061.99 0.35 0.11 0.22 -1 -1 0.35 0.0373299 0.0327847 84 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.15 vpr 55.50 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57332 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 17.1 MiB 0.67 800 13117 5732 6986 399 56.0 MiB 0.17 0.00 3.79019 -142.199 -3.79019 3.79019 0.78 0.00084976 0.000785467 0.0709265 0.0656325 44 2737 44 6.95648e+06 188184 787024. 2723.27 2.54 0.267168 0.234601 27778 195446 -1 1953 21 2020 2717 286927 58517 3.99606 3.99606 -152.809 -3.99606 0 0 997811. 3452.63 0.31 0.11 0.20 -1 -1 0.31 0.034987 0.030777 81 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 9.28 vpr 55.24 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30420 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 16.8 MiB 1.13 575 11609 4562 5941 1106 55.6 MiB 0.13 0.00 3.25495 -109.238 -3.25495 3.25495 0.80 0.000687127 0.000634759 0.053293 0.0493184 42 2279 39 6.95648e+06 159232 744469. 2576.02 4.26 0.263714 0.228974 27202 183097 -1 1590 19 1210 1704 167210 37749 3.48987 3.48987 -120.589 -3.48987 0 0 949917. 3286.91 0.29 0.07 0.18 -1 -1 0.29 0.0263623 0.0231168 60 55 32 32 54 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 12.54 vpr 55.00 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30444 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.7 MiB 0.28 835 9529 3959 5371 199 55.3 MiB 0.13 0.01 3.0815 -119.168 -3.0815 3.0815 0.81 0.000488171 0.00044579 0.0340012 0.0311398 36 2313 46 6.95648e+06 159232 648988. 2245.63 2.23 0.160674 0.140117 26050 158493 -1 1902 17 1321 1851 210326 39149 3.23112 3.23112 -132.752 -3.23112 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.023016 0.0202669 63 4 93 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.43 vpr 55.52 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 17.2 MiB 1.25 782 14483 5692 6794 1997 56.0 MiB 0.18 0.00 3.70334 -129.205 -3.70334 3.70334 0.78 0.000812329 0.000751631 0.0682433 0.0631635 38 2510 20 6.95648e+06 275038 678818. 2348.85 3.67 0.22862 0.201363 26626 170182 -1 1986 20 1548 2022 200502 38894 3.84821 3.84821 -137.719 -3.84821 0 0 902133. 3121.57 0.28 0.09 0.19 -1 -1 0.28 0.0314797 0.0276756 78 59 60 32 58 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.01 vpr 55.53 MiB 0.03 7156 -1 -1 1 0.03 -1 -1 30404 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 17.1 MiB 0.72 793 11474 4768 6294 412 55.9 MiB 0.15 0.00 3.90986 -132.869 -3.90986 3.90986 0.78 0.000826852 0.000764113 0.0567545 0.0525434 40 2926 31 6.95648e+06 260562 706193. 2443.58 4.95 0.234563 0.205464 26914 176310 -1 2267 24 2014 2928 338947 71803 4.63482 4.63482 -153.925 -4.63482 0 0 926341. 3205.33 0.31 0.13 0.19 -1 -1 0.31 0.0394122 0.0345288 78 88 28 28 88 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.37 vpr 55.48 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57452 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.5 MiB 0.41 1152 4375 861 3334 180 56.1 MiB 0.08 0.01 4.48239 -161.071 -4.48239 4.48239 0.79 0.000868068 0.000803683 0.0217727 0.0202424 46 3211 43 6.95648e+06 390843 828058. 2865.25 4.65 0.229537 0.199731 28066 200906 -1 2609 22 2256 3511 404918 72276 4.83866 4.83866 -171.756 -4.83866 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.038543 0.0340995 100 3 156 32 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 6.21 vpr 55.30 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30676 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57288 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 17.1 MiB 0.98 698 14528 6104 7488 936 55.9 MiB 0.18 0.00 3.34296 -113.702 -3.34296 3.34296 0.79 0.00077955 0.000721568 0.0679865 0.0629523 44 2220 24 6.95648e+06 260562 787024. 2723.27 2.22 0.223166 0.196375 27778 195446 -1 1741 19 1523 2204 221976 44959 3.08387 3.08387 -114.275 -3.08387 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0297435 0.0261535 77 59 60 30 56 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.42 vpr 54.94 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30744 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56588 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 16.7 MiB 0.53 465 10459 4157 5359 943 55.3 MiB 0.11 0.00 3.15776 -95.8334 -3.15776 3.15776 0.79 0.000613745 0.000568294 0.0436262 0.0404387 36 1785 30 6.95648e+06 217135 648988. 2245.63 1.96 0.166601 0.145606 26050 158493 -1 1264 21 1100 1314 144780 31077 2.90352 2.90352 -101.292 -2.90352 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0254631 0.0222221 57 34 54 27 27 27 + fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 27.70 vpr 55.70 MiB 0.05 7400 -1 -1 1 0.03 -1 -1 30684 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57368 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 17.7 MiB 0.81 956 13513 4288 6425 2800 56.0 MiB 0.15 0.00 4.037 -139.704 -4.037 4.037 0.94 0.000429746 0.000392395 0.0466223 0.0427344 52 3911 46 6.95648e+06 434271 926341. 3205.33 3.84 0.285808 0.248789 29218 227130 -1 2300 21 2187 3715 368544 73427 3.95522 3.95522 -145.053 -3.95522 0 0 1.14541e+06 3963.36 0.35 0.13 0.22 -1 -1 0.35 0.0415751 0.036544 103 95 62 31 95 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 13.36 vpr 55.50 MiB 0.03 7284 -1 -1 1 0.03 -1 -1 30524 -1 -1 14 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 17.4 MiB 3.48 899 8716 2535 4990 1191 55.9 MiB 0.13 0.00 4.57784 -152.287 -4.57784 4.57784 0.78 0.000905442 0.000838497 0.0515573 0.0478326 40 2708 23 6.95648e+06 202660 706193. 2443.58 2.72 0.233155 0.203631 26914 176310 -1 2344 24 1803 2731 349724 66961 4.91091 4.91091 -165.721 -4.91091 0 0 926341. 3205.33 0.28 0.13 0.17 -1 -1 0.28 0.0447636 0.0391079 79 124 0 0 124 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 9.67 vpr 55.36 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30420 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 16.9 MiB 2.81 500 11389 4353 5738 1298 55.7 MiB 0.12 0.00 3.0346 -106.135 -3.0346 3.0346 0.83 0.00074073 0.000684159 0.0521363 0.048057 46 1833 29 6.95648e+06 144757 828058. 2865.25 4.75 0.316301 0.273959 28066 200906 -1 1205 42 1488 2346 222106 50418 2.99292 2.99292 -111.253 -2.99292 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0537231 0.0465674 58 89 0 0 89 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.82 vpr 55.35 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30396 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 17.2 MiB 0.40 819 12938 5293 7361 284 56.1 MiB 0.16 0.00 4.12326 -140.658 -4.12326 4.12326 0.79 0.000787607 0.00072826 0.0568283 0.0526282 44 2749 41 6.95648e+06 318465 787024. 2723.27 3.02 0.212462 0.186817 27778 195446 -1 1951 21 1853 2799 291011 57024 3.96922 3.96922 -146.023 -3.96922 0 0 997811. 3452.63 0.34 0.11 0.23 -1 -1 0.34 0.0334615 0.0295006 83 34 90 30 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 7.62 vpr 55.77 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30680 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57680 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 17.5 MiB 0.89 852 12560 4728 5964 1868 56.3 MiB 0.17 0.00 4.1192 -140.393 -4.1192 4.1192 0.79 0.000918227 0.000850595 0.0644898 0.0598306 44 2902 35 6.95648e+06 332941 787024. 2723.27 2.44 0.264031 0.231321 27778 195446 -1 2213 22 1895 2598 274715 53050 4.06632 4.06632 -147.269 -4.06632 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0393432 0.0345244 95 64 87 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 8.69 vpr 55.22 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30456 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 17.1 MiB 0.90 739 10762 4429 5782 551 55.9 MiB 0.13 0.00 3.27396 -108.751 -3.27396 3.27396 0.80 0.000793049 0.000728399 0.0510302 0.0473018 52 2215 36 6.95648e+06 289514 926341. 3205.33 5.17 0.308073 0.267925 29218 227130 -1 1673 17 1244 1950 170901 36553 3.43483 3.43483 -113.669 -3.43483 0 0 1.14541e+06 3963.36 0.35 0.07 0.21 -1 -1 0.35 0.0274931 0.0242492 78 61 58 30 58 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 8.73 vpr 55.60 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30600 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 17.5 MiB 0.57 907 15848 6161 8045 1642 56.1 MiB 0.18 0.00 3.79319 -139.401 -3.79319 3.79319 0.80 0.00084457 0.000780161 0.0625927 0.0578504 50 2281 28 6.95648e+06 492173 902133. 3121.57 5.14 0.320208 0.279212 28642 213929 -1 1990 18 1722 2442 281278 52538 3.72056 3.72056 -142.947 -3.72056 0 0 1.08113e+06 3740.92 0.33 0.10 0.20 -1 -1 0.33 0.0307758 0.027119 91 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 7.25 vpr 55.45 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 17.5 MiB 0.59 794 15215 5485 7366 2364 56.1 MiB 0.19 0.00 3.05335 -116.88 -3.05335 3.05335 0.79 0.00084102 0.000776383 0.0624066 0.0576574 44 2204 29 6.95648e+06 448746 787024. 2723.27 4.28 0.319621 0.278438 27778 195446 -1 1791 20 1510 1967 236570 45600 2.89922 2.89922 -119.601 -2.89922 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0333763 0.0293314 90 65 63 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.98 vpr 54.98 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30436 -1 -1 13 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56612 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 16.7 MiB 3.13 577 8599 3570 4706 323 55.3 MiB 0.09 0.00 3.17976 -103.796 -3.17976 3.17976 0.85 0.000656776 0.000605815 0.0336551 0.0309358 36 1572 28 6.95648e+06 188184 648988. 2245.63 3.60 0.21915 0.189334 26050 158493 -1 1335 20 1019 1254 132251 27005 2.99587 2.99587 -110.83 -2.99587 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0257367 0.0225463 56 34 58 29 29 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 8.82 vpr 55.34 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30044 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 16.8 MiB 0.83 584 9839 4132 5456 251 55.7 MiB 0.11 0.00 2.9814 -102.92 -2.9814 2.9814 0.78 0.000707005 0.000652987 0.0473815 0.0438323 40 1922 29 6.95648e+06 144757 706193. 2443.58 2.28 0.176943 0.15488 26914 176310 -1 1589 26 1404 1733 434983 159543 2.91832 2.91832 -112.192 -2.91832 0 0 926341. 3205.33 0.29 0.17 0.18 -1 -1 0.29 0.035151 0.0308678 58 82 0 0 82 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 8.90 vpr 55.36 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30604 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 17.1 MiB 0.48 743 12331 4128 5906 2297 55.8 MiB 0.13 0.00 4.24545 -140.476 -4.24545 4.24545 0.79 0.00078978 0.000729781 0.0504238 0.0466726 48 2419 44 6.95648e+06 405319 865456. 2994.66 16.60 0.411325 0.356879 28354 207349 -1 1892 22 1582 2283 289608 58212 3.88486 3.88486 -143.662 -3.88486 0 0 1.05005e+06 3633.38 0.33 0.10 0.20 -1 -1 0.33 0.0338688 0.0297092 86 34 93 31 31 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.40 vpr 55.11 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30452 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 16.7 MiB 1.15 494 12399 5297 6440 662 55.4 MiB 0.07 0.00 3.26295 -100.502 -3.26295 3.26295 0.73 0.0002831 0.000258102 0.0241054 0.0220634 40 2035 50 6.95648e+06 202660 706193. 2443.58 2.19 0.101428 0.0878015 26914 176310 -1 1515 21 1189 1695 204706 57767 3.44692 3.44692 -108.798 -3.44692 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0269327 0.0235115 59 56 29 29 52 26 + fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.22 vpr 55.12 MiB 0.03 6928 -1 -1 1 0.03 -1 -1 30264 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 1.14 698 10149 3910 5225 1014 55.4 MiB 0.12 0.00 3.05815 -118.306 -3.05815 3.05815 0.78 0.000700759 0.000648192 0.0487218 0.0451404 44 2023 20 6.95648e+06 144757 787024. 2723.27 4.42 0.253713 0.220742 27778 195446 -1 1549 20 1394 1924 229579 41672 2.99782 2.99782 -120.785 -2.99782 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0279108 0.0244803 61 34 64 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 6.44 vpr 55.48 MiB 0.04 7028 -1 -1 1 0.04 -1 -1 30384 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57396 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 17.2 MiB 1.00 717 11607 3761 5813 2033 56.1 MiB 0.08 0.00 3.1175 -113.433 -3.1175 3.1175 0.73 0.000351018 0.000321456 0.0236206 0.0217146 38 2211 26 6.95648e+06 347416 678818. 2348.85 6.53 0.278347 0.239875 26626 170182 -1 1635 24 1763 2255 211927 43630 3.42197 3.42197 -127.209 -3.42197 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0371879 0.0326444 82 64 58 31 62 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.13 vpr 55.02 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30332 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 16.7 MiB 2.09 682 10459 3058 6921 480 55.3 MiB 0.12 0.00 3.13575 -104.344 -3.13575 3.13575 0.78 0.000678734 0.000627147 0.0479563 0.0443884 38 1872 30 6.95648e+06 159232 678818. 2348.85 4.09 0.240561 0.20877 26626 170182 -1 1625 18 976 1436 135459 27796 2.87052 2.87052 -110.596 -2.87052 0 0 902133. 3121.57 0.27 0.06 0.16 -1 -1 0.27 0.0246601 0.0215984 57 55 31 31 53 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 7.08 vpr 55.50 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30476 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 17.1 MiB 1.56 710 12323 5117 6727 479 56.0 MiB 0.14 0.00 3.0155 -107.222 -3.0155 3.0155 0.79 0.000806772 0.000746343 0.0577401 0.0534212 48 2055 19 6.95648e+06 275038 865456. 2994.66 2.60 0.213565 0.187627 28354 207349 -1 1680 52 2051 2878 711012 341912 2.95667 2.95667 -110.45 -2.95667 0 0 1.05005e+06 3633.38 0.34 0.27 0.20 -1 -1 0.34 0.0597994 0.0521646 76 65 52 26 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.81 vpr 55.59 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30336 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57388 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 17.1 MiB 1.46 717 15298 5325 7460 2513 56.0 MiB 0.19 0.00 3.41641 -118.296 -3.41641 3.41641 0.78 0.000857518 0.000791557 0.0705896 0.0652691 42 2810 47 6.95648e+06 361892 744469. 2576.02 2.35 0.245558 0.215508 27202 183097 -1 1924 21 1793 2419 269475 55278 3.41277 3.41277 -130.193 -3.41277 0 0 949917. 3286.91 0.36 0.11 0.18 -1 -1 0.36 0.0354555 0.0311458 85 93 31 31 92 31 + fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 9.10 vpr 55.21 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30432 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 16.8 MiB 0.84 564 10149 3066 5426 1657 55.7 MiB 0.14 0.00 2.9023 -103.177 -2.9023 2.9023 0.79 0.000718183 0.000663912 0.0495574 0.0458848 40 2101 50 6.95648e+06 144757 706193. 2443.58 10.48 0.374156 0.323793 26914 176310 -1 1651 24 1337 2015 251493 53014 3.17132 3.17132 -117.428 -3.17132 0 0 926341. 3205.33 0.28 0.10 0.18 -1 -1 0.28 0.0328887 0.0286739 61 61 32 32 60 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.23 vpr 55.27 MiB 0.05 6820 -1 -1 1 0.03 -1 -1 30124 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56696 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 16.7 MiB 1.14 611 8289 3413 4626 250 55.4 MiB 0.10 0.00 3.0515 -113.367 -3.0515 3.0515 0.79 0.000729717 0.000674013 0.0419641 0.038871 50 1848 45 6.95648e+06 144757 902133. 3121.57 2.51 0.206034 0.17948 28642 213929 -1 1444 22 1459 2240 213350 47597 2.98867 2.98867 -116.822 -2.98867 0 0 1.08113e+06 3740.92 0.33 0.09 0.21 -1 -1 0.33 0.0312177 0.0273026 63 63 32 32 62 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.59 vpr 55.35 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30648 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57396 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 17.1 MiB 0.98 951 8283 1857 5834 592 56.1 MiB 0.12 0.01 3.78219 -143.123 -3.78219 3.78219 0.79 0.000849326 0.000784704 0.0360963 0.0334201 40 2468 43 6.95648e+06 419795 706193. 2443.58 3.47 0.230064 0.200529 26914 176310 -1 2327 29 2377 3467 539275 160924 4.19956 4.19956 -161.71 -4.19956 0 0 926341. 3205.33 0.28 0.18 0.17 -1 -1 0.28 0.0443355 0.0387402 88 65 64 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 6.89 vpr 55.39 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30640 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 17.1 MiB 0.97 739 8336 2662 4258 1416 55.9 MiB 0.11 0.00 3.1065 -104.923 -3.1065 3.1065 0.83 0.000774669 0.000717319 0.0403232 0.0373846 44 1954 39 6.95648e+06 275038 787024. 2723.27 4.27 0.295627 0.256365 27778 195446 -1 1325 24 1368 1972 122291 31027 3.29527 3.29527 -111.798 -3.29527 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0352172 0.0307958 77 62 56 29 58 29 + fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 22.37 vpr 55.62 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30800 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57508 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 17.5 MiB 1.71 819 16473 6066 7302 3105 56.2 MiB 0.18 0.00 3.81039 -138.347 -3.81039 3.81039 0.88 0.000930868 0.000860998 0.0765249 0.0708316 48 2611 41 6.95648e+06 419795 865456. 2994.66 5.61 0.296659 0.260029 28354 207349 -1 2023 29 2304 3495 484791 115328 4.37806 4.37806 -155.925 -4.37806 0 0 1.05005e+06 3633.38 0.33 0.16 0.20 -1 -1 0.33 0.0490667 0.0427011 89 127 0 0 128 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.53 vpr 54.90 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30284 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 16.6 MiB 1.23 588 9529 3953 5280 296 55.1 MiB 0.10 0.00 3.02776 -101.68 -3.02776 3.02776 0.79 0.000618634 0.000572498 0.0402037 0.037264 38 2131 44 6.95648e+06 159232 678818. 2348.85 2.94 0.185263 0.161573 26626 170182 -1 1536 20 1072 1591 142914 31341 3.13237 3.13237 -111.806 -3.13237 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.0250801 0.0219385 58 4 85 31 0 0 + fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 7.43 vpr 55.70 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 17.1 MiB 0.98 751 13335 4844 6817 1674 56.0 MiB 0.16 0.00 3.74945 -128.098 -3.74945 3.74945 0.79 0.000852275 0.000785717 0.0623362 0.057474 50 2338 33 6.95648e+06 332941 902133. 3121.57 3.02 0.24569 0.215181 28642 213929 -1 1646 23 1669 2164 231096 47396 3.82366 3.82366 -138.646 -3.82366 0 0 1.08113e+06 3740.92 0.33 0.10 0.20 -1 -1 0.33 0.0371394 0.0325067 81 92 28 28 92 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.30 vpr 55.45 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30152 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57024 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 16.9 MiB 2.42 613 11854 5235 6332 287 55.7 MiB 0.07 0.00 2.96105 -113.67 -2.96105 2.96105 0.63 0.000339502 0.000305861 0.027899 0.025549 44 2090 26 6.95648e+06 144757 787024. 2723.27 4.85 0.258853 0.223267 27778 195446 -1 1506 23 1524 2132 243246 49801 3.11862 3.11862 -126.977 -3.11862 0 0 997811. 3452.63 0.36 0.09 0.19 -1 -1 0.36 0.0289011 0.0255452 61 96 0 0 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.79 vpr 55.44 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30500 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57496 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 17.2 MiB 1.16 784 11983 4223 5778 1982 56.1 MiB 0.16 0.00 3.13882 -116.487 -3.13882 3.13882 0.78 0.000835086 0.000771907 0.0544219 0.050348 48 2200 27 6.95648e+06 347416 865456. 2994.66 2.42 0.226122 0.19826 28354 207349 -1 1848 22 1447 2175 233055 49045 3.64437 3.64437 -129.909 -3.64437 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0376366 0.0332042 84 65 61 32 64 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 10.73 vpr 55.86 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30860 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 17.8 MiB 1.43 961 18301 6218 9454 2629 56.2 MiB 0.23 0.00 4.52824 -160.34 -4.52824 4.52824 0.79 0.00102032 0.000945372 0.0878794 0.0815113 46 2966 28 6.95648e+06 477698 828058. 2865.25 4.52 0.298391 0.262926 28066 200906 -1 2355 22 2510 3753 383660 73024 4.96261 4.96261 -175.35 -4.96261 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0423281 0.0371419 104 96 64 32 96 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 7.28 vpr 54.87 MiB 0.02 6732 -1 -1 1 0.03 -1 -1 30332 -1 -1 10 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 16.2 MiB 0.49 395 8267 2975 4043 1249 54.8 MiB 0.08 0.00 2.20646 -76.6701 -2.20646 2.20646 0.81 0.000570316 0.000526696 0.0340817 0.0315539 38 1014 35 6.95648e+06 144757 678818. 2348.85 2.19 0.157934 0.136756 26626 170182 -1 808 18 542 640 49285 13329 2.20283 2.20283 -74.674 -2.20283 0 0 902133. 3121.57 0.28 0.05 0.18 -1 -1 0.28 0.0205239 0.0178708 45 56 0 0 53 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 13.85 vpr 55.15 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30424 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 16.5 MiB 1.57 505 9994 3801 4923 1270 55.1 MiB 0.11 0.00 3.20866 -106.336 -3.20866 3.20866 0.86 0.000659554 0.000608519 0.0453058 0.0419122 40 1599 27 6.95648e+06 173708 706193. 2443.58 1.97 0.182735 0.159535 26914 176310 -1 1426 21 1210 1755 189370 41303 3.00687 3.00687 -114.329 -3.00687 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0275717 0.0241042 58 34 60 30 30 30 + fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 8.79 vpr 55.14 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30044 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 16.7 MiB 0.26 594 9219 3126 4706 1387 55.3 MiB 0.15 0.00 2.93285 -111.664 -2.93285 2.93285 0.79 0.000671179 0.000617277 0.0438072 0.0405132 50 1586 28 6.95648e+06 144757 902133. 3121.57 2.27 0.166698 0.146482 28642 213929 -1 1439 19 1416 2281 215816 46389 2.99482 2.99482 -112.756 -2.99482 0 0 1.08113e+06 3740.92 0.33 0.09 0.20 -1 -1 0.33 0.0271733 0.0239274 65 34 64 32 32 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.50 vpr 54.84 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30580 -1 -1 15 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 16.5 MiB 0.48 415 9310 3976 4598 736 55.1 MiB 0.09 0.00 3.24096 -89.6096 -3.24096 3.24096 0.79 0.000578934 0.000536112 0.0382267 0.0354598 40 1616 44 6.95648e+06 217135 706193. 2443.58 2.16 0.171828 0.149067 26914 176310 -1 1253 23 1253 1648 153916 35930 3.06187 3.06187 -97.7737 -3.06187 0 0 926341. 3205.33 0.34 0.07 0.20 -1 -1 0.34 0.0236184 0.020583 56 34 50 25 25 25 + fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 10.90 vpr 55.50 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30500 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57524 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 17.5 MiB 1.20 849 10835 4559 6029 247 56.2 MiB 0.15 0.00 3.79924 -134.385 -3.79924 3.79924 0.80 0.0008812 0.000814552 0.0611561 0.056617 46 3184 31 6.95648e+06 188184 828058. 2865.25 2.56 0.212284 0.186593 28066 200906 -1 2502 24 2065 3666 431024 82895 4.27126 4.27126 -153.969 -4.27126 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.040107 0.035129 77 94 32 32 94 32 + fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 9.30 vpr 55.70 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30508 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57628 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 17.5 MiB 0.95 742 12512 4241 5927 2344 56.3 MiB 0.15 0.00 3.1116 -112.527 -3.1116 3.1116 0.79 0.000849585 0.000784736 0.0545678 0.0504513 40 2314 27 6.95648e+06 419795 706193. 2443.58 2.82 0.2316 0.202834 26914 176310 -1 1891 43 2995 4090 722606 253385 3.26557 3.26557 -124.08 -3.26557 0 0 926341. 3205.33 0.28 0.25 0.17 -1 -1 0.28 0.0629837 0.0546483 87 94 29 29 93 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 8.91 vpr 55.27 MiB 0.05 7136 -1 -1 1 0.04 -1 -1 30864 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 17.1 MiB 0.71 1062 15584 5717 7278 2589 55.7 MiB 0.21 0.00 4.46104 -158.567 -4.46104 4.46104 0.80 0.000883613 0.000817411 0.0764228 0.0707001 50 3112 23 6.99608e+06 323745 902133. 3121.57 2.49 0.25458 0.224244 28642 213929 -1 2334 20 2172 2554 259886 53091 4.94881 4.94881 -167.782 -4.94881 0 0 1.08113e+06 3740.92 0.33 0.10 0.22 -1 -1 0.33 0.0353156 0.0310932 130 96 32 32 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.16 vpr 55.75 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30632 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 17.3 MiB 1.29 1018 13610 5732 7207 671 56.0 MiB 0.18 0.00 4.50158 -148.332 -4.50158 4.50158 0.89 0.000824473 0.000761958 0.0662807 0.0613085 48 3345 36 6.99608e+06 294314 865456. 2994.66 18.75 0.50887 0.441344 28354 207349 -1 2686 33 2662 3779 726333 209050 4.88889 4.88889 -165.69 -4.88889 0 0 1.05005e+06 3633.38 0.33 0.22 0.20 -1 -1 0.33 0.0495323 0.0432001 117 91 30 30 89 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.15 vpr 54.96 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30412 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 16.8 MiB 0.91 1040 13610 5701 7488 421 55.7 MiB 0.18 0.00 3.59279 -128.627 -3.59279 3.59279 0.78 0.000810854 0.000749536 0.0653866 0.0605235 44 3009 38 6.99608e+06 264882 787024. 2723.27 2.47 0.228921 0.202482 27778 195446 -1 2233 22 1759 2058 212655 41848 3.75976 3.75976 -137.846 -3.75976 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.034652 0.0304284 106 65 54 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 16.62 vpr 55.16 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56788 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 16.9 MiB 0.68 806 14444 6101 7602 741 55.5 MiB 0.18 0.00 3.79615 -125.537 -3.79615 3.79615 0.78 0.000746753 0.000691117 0.0664706 0.061573 40 2587 24 6.99608e+06 264882 706193. 2443.58 2.96 0.218858 0.192649 26914 176310 -1 2236 31 2427 3542 431767 103734 4.28572 4.28572 -147.733 -4.28572 0 0 926341. 3205.33 0.28 0.15 0.17 -1 -1 0.28 0.0418492 0.0364793 89 34 87 29 29 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 10.57 vpr 55.29 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30300 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 16.9 MiB 0.56 871 12416 4669 6393 1354 55.8 MiB 0.18 0.00 4.27644 -154.345 -4.27644 4.27644 0.78 0.000818598 0.000758191 0.0628954 0.0582851 56 2640 24 6.99608e+06 220735 973134. 3367.25 3.33 0.225288 0.198057 29794 239141 -1 2041 22 2151 3328 323663 74894 4.34425 4.34425 -156.25 -4.34425 0 0 1.19926e+06 4149.71 0.36 0.12 0.23 -1 -1 0.36 0.035964 0.0317667 93 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 8.55 vpr 55.40 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30504 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 17.3 MiB 0.55 1298 16069 5589 8587 1893 55.9 MiB 0.22 0.00 3.60699 -134.626 -3.60699 3.60699 0.78 0.000833892 0.00077115 0.0662748 0.0613165 44 3440 31 6.99608e+06 441471 787024. 2723.27 21.31 0.419312 0.365214 27778 195446 -1 2748 20 2148 3100 337734 62228 3.51721 3.51721 -144.234 -3.51721 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0336633 0.029645 117 64 63 32 63 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 8.63 vpr 54.95 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30600 -1 -1 15 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56444 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 16.5 MiB 1.28 620 8289 3348 4414 527 55.1 MiB 0.09 0.00 3.30124 -103.988 -3.30124 3.30124 0.79 0.000618793 0.000572897 0.0353647 0.0328012 40 1942 39 6.99608e+06 220735 706193. 2443.58 8.46 0.315399 0.271416 26914 176310 -1 1737 21 1506 2153 256688 54350 3.32081 3.32081 -116.197 -3.32081 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.0253946 0.0221646 68 34 54 27 27 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 6.20 vpr 54.94 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 16.6 MiB 0.45 708 9368 3795 5080 493 55.3 MiB 0.10 0.00 2.88485 -101.173 -2.88485 2.88485 0.88 0.000717694 0.000662574 0.0371792 0.03428 46 2364 34 6.99608e+06 250167 828058. 2865.25 4.82 0.200264 0.174555 28066 200906 -1 1729 34 1470 2247 334782 130138 3.09392 3.09392 -114.079 -3.09392 0 0 1.01997e+06 3529.29 0.31 0.14 0.19 -1 -1 0.31 0.0444395 0.0387578 77 4 115 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.61 vpr 55.21 MiB 0.04 7156 -1 -1 1 0.03 -1 -1 30264 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 16.9 MiB 2.58 865 11366 4429 5807 1130 55.6 MiB 0.14 0.00 3.3156 -116.953 -3.3156 3.3156 0.78 0.000716204 0.000662093 0.0518035 0.0479248 44 2727 41 6.99608e+06 220735 787024. 2723.27 3.17 0.220554 0.193072 27778 195446 -1 1903 33 1749 2224 309870 96540 3.06027 3.06027 -119.616 -3.06027 0 0 997811. 3452.63 0.31 0.13 0.19 -1 -1 0.31 0.0426065 0.0370096 96 85 0 0 84 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 10.18 vpr 55.10 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 16.6 MiB 0.56 668 10346 4043 5155 1148 55.5 MiB 0.13 0.00 3.58059 -133.895 -3.58059 3.58059 0.79 0.000698466 0.000646114 0.0469519 0.0434681 42 2630 45 6.99608e+06 191304 744469. 2576.02 9.95 0.277336 0.239978 27202 183097 -1 1710 20 1619 2027 212307 43301 3.47486 3.47486 -137.882 -3.47486 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0276594 0.0242402 79 34 64 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.86 vpr 55.15 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30152 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 16.8 MiB 2.11 858 10835 4264 5113 1458 55.3 MiB 0.14 0.00 3.85932 -133.017 -3.85932 3.85932 0.79 0.000698265 0.000646062 0.0491823 0.0455265 46 2286 23 6.99608e+06 220735 828058. 2865.25 4.60 0.257069 0.223431 28066 200906 -1 1884 18 1438 1958 185223 36063 3.4143 3.4143 -128.878 -3.4143 0 0 1.01997e+06 3529.29 0.33 0.08 0.19 -1 -1 0.33 0.0259538 0.0228355 88 63 30 30 60 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.16 vpr 54.98 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30600 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 16.8 MiB 0.74 1078 12030 4277 6214 1539 55.6 MiB 0.15 0.00 3.0712 -121.401 -3.0712 3.0712 0.81 0.000709088 0.00065414 0.0541915 0.050056 40 2549 25 6.99608e+06 206020 706193. 2443.58 4.43 0.28643 0.248715 26914 176310 -1 2260 19 1422 1534 184570 35837 3.14827 3.14827 -126.647 -3.14827 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0273747 0.0240557 91 65 25 25 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.68 vpr 55.19 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 17.2 MiB 0.89 883 7132 1837 4428 867 55.9 MiB 0.12 0.00 3.50359 -126.552 -3.50359 3.50359 0.80 0.000818331 0.00075737 0.0368212 0.0341498 52 2492 28 6.99608e+06 235451 926341. 3205.33 5.28 0.316196 0.274001 29218 227130 -1 1599 23 1879 2556 241557 51204 3.27256 3.27256 -119.232 -3.27256 0 0 1.14541e+06 3963.36 0.35 0.10 0.21 -1 -1 0.35 0.036145 0.0317115 101 58 64 32 57 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 10.32 vpr 55.22 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30488 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 17.2 MiB 0.82 1134 14123 4441 7724 1958 55.8 MiB 0.18 0.00 4.28564 -153.93 -4.28564 4.28564 0.78 0.000841713 0.000777902 0.0693204 0.0641743 54 2714 33 6.99608e+06 279598 949917. 3286.91 4.95 0.336516 0.294186 29506 232905 -1 2089 26 2435 3170 300276 66640 4.76721 4.76721 -168.357 -4.76721 0 0 1.17392e+06 4061.99 0.35 0.12 0.22 -1 -1 0.35 0.0413331 0.0362217 112 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 8.61 vpr 54.89 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30632 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56364 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 16.4 MiB 2.09 572 11293 4723 5996 574 55.0 MiB 0.12 0.00 2.92195 -96.6009 -2.92195 2.92195 0.79 0.000627086 0.00058011 0.0470017 0.0435443 44 1822 40 6.99608e+06 206020 787024. 2723.27 5.05 0.29037 0.251038 27778 195446 -1 1289 23 1152 1611 122385 30022 2.78502 2.78502 -102.414 -2.78502 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0277765 0.0242217 67 29 58 29 24 24 + fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 9.37 vpr 55.52 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30412 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57184 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 17.3 MiB 1.94 1040 13324 4763 6768 1793 55.8 MiB 0.18 0.00 3.68279 -132.173 -3.68279 3.68279 0.78 0.000832379 0.00076936 0.0677301 0.062664 56 2559 23 6.99608e+06 235451 973134. 3367.25 5.52 0.344615 0.300922 29794 239141 -1 2347 19 2238 3206 414239 80518 3.72241 3.72241 -142.466 -3.72241 0 0 1.19926e+06 4149.71 0.37 0.12 0.23 -1 -1 0.37 0.0326959 0.028858 106 63 64 32 62 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 6.53 vpr 55.24 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30328 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 17.0 MiB 1.07 1122 6731 1649 4394 688 55.9 MiB 0.10 0.00 3.32994 -131.897 -3.32994 3.32994 0.78 0.000806076 0.000745858 0.033999 0.0315243 38 3068 44 6.99608e+06 250167 678818. 2348.85 4.11 0.225573 0.196458 26626 170182 -1 2561 20 2056 2574 269484 51224 3.38681 3.38681 -140.304 -3.38681 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0324532 0.0286157 99 57 64 32 56 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.87 vpr 55.14 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30196 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 17.0 MiB 0.71 871 13856 5887 7726 243 55.8 MiB 0.17 0.00 3.39034 -128.572 -3.39034 3.39034 0.78 0.000731326 0.000676258 0.0638891 0.0591494 44 3126 37 6.99608e+06 206020 787024. 2723.27 2.49 0.227435 0.199601 27778 195446 -1 2119 20 1605 1945 186185 39147 3.26246 3.26246 -131.653 -3.26246 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0296604 0.0259959 91 65 29 29 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 8.74 vpr 54.66 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30152 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 16.2 MiB 2.03 536 9041 3932 4796 313 54.8 MiB 0.09 0.00 2.34646 -88.6787 -2.34646 2.34646 0.79 0.000550523 0.000508484 0.0344638 0.03189 36 1464 23 6.99608e+06 161872 648988. 2245.63 2.29 0.144604 0.125787 26050 158493 -1 1249 21 859 941 99661 21651 2.31283 2.31283 -92.2454 -2.31283 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0224178 0.0194922 56 34 24 24 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 7.94 vpr 54.93 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30364 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 16.9 MiB 2.11 1018 11532 3380 6660 1492 55.7 MiB 0.14 0.00 3.58639 -133.629 -3.58639 3.58639 0.79 0.000716747 0.000662826 0.0525206 0.0486252 40 2554 24 6.99608e+06 220735 706193. 2443.58 2.58 0.202539 0.177844 26914 176310 -1 2340 19 1636 1976 242345 46544 3.91001 3.91001 -147.151 -3.91001 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.027486 0.0241342 91 64 31 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 6.86 vpr 55.23 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30144 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 16.9 MiB 0.45 1089 12759 4547 6573 1639 55.8 MiB 0.16 0.00 4.04748 -146.851 -4.04748 4.04748 0.84 0.000800455 0.000740068 0.0562819 0.0521585 44 2717 49 6.99608e+06 338461 787024. 2723.27 2.24 0.209932 0.18462 27778 195446 -1 2303 21 2013 2736 323338 58160 4.0578 4.0578 -154.555 -4.0578 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0328858 0.0289198 97 34 91 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 10.46 vpr 55.48 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30588 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57356 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 17.7 MiB 1.24 1280 15206 4884 7262 3060 56.0 MiB 0.21 0.00 4.01908 -141.768 -4.01908 4.01908 0.80 0.000910988 0.000843604 0.0770722 0.071437 44 3751 45 6.99608e+06 323745 787024. 2723.27 2.74 0.269675 0.236837 27778 195446 -1 2635 21 2297 2593 255916 49641 4.11066 4.11066 -145.12 -4.11066 0 0 997811. 3452.63 0.32 0.10 0.19 -1 -1 0.32 0.0383008 0.0336342 138 124 0 0 125 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 6.59 vpr 54.59 MiB 0.04 6824 -1 -1 1 0.02 -1 -1 30504 -1 -1 15 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55928 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 16.1 MiB 0.68 401 7217 2934 3827 456 54.6 MiB 0.06 0.00 2.7074 -79.2163 -2.7074 2.7074 0.78 0.000477636 0.000440903 0.0243269 0.022479 38 1353 26 6.99608e+06 220735 678818. 2348.85 3.81 0.153629 0.132466 26626 170182 -1 988 17 651 764 74091 18456 2.58187 2.58187 -84.1057 -2.58187 0 0 902133. 3121.57 0.27 0.05 0.15 -1 -1 0.27 0.0166123 0.0145338 52 30 26 26 22 22 + fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 6.24 vpr 54.96 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30336 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 16.5 MiB 0.76 698 9036 3669 4978 389 55.4 MiB 0.11 0.00 3.97238 -133.231 -3.97238 3.97238 0.79 0.000745139 0.000688106 0.0449417 0.0415626 54 2365 30 6.99608e+06 176588 949917. 3286.91 2.63 0.200697 0.176046 29506 232905 -1 1722 22 1527 2422 223470 49995 3.98506 3.98506 -136.197 -3.98506 0 0 1.17392e+06 4061.99 0.36 0.09 0.22 -1 -1 0.36 0.032347 0.0283937 75 3 122 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 6.81 vpr 54.48 MiB 0.04 6556 -1 -1 1 0.02 -1 -1 30344 -1 -1 8 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55908 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 16.1 MiB 0.27 736 9906 3603 5031 1272 54.6 MiB 0.09 0.00 2.06111 -84.6894 -2.06111 2.06111 0.78 0.000509887 0.000470739 0.035845 0.0331323 34 1720 22 6.99608e+06 117725 618332. 2139.56 1.46 0.135458 0.118299 25762 151098 -1 1528 20 763 967 113677 21734 1.77772 1.77772 -89.6008 -1.77772 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0199364 0.0174292 44 3 53 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 8.56 vpr 55.11 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 17.1 MiB 1.14 836 12681 5269 6945 467 55.9 MiB 0.16 0.00 3.87925 -141.78 -3.87925 3.87925 0.78 0.0008036 0.000743732 0.0614222 0.0569307 46 2793 28 6.99608e+06 250167 828058. 2865.25 4.97 0.309316 0.270088 28066 200906 -1 2089 23 2071 2884 285544 57782 4.31872 4.31872 -156.909 -4.31872 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0356241 0.0312759 95 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 7.74 vpr 55.08 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30124 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 16.8 MiB 0.29 1064 14375 4737 7721 1917 55.5 MiB 0.16 0.00 2.93295 -116.62 -2.93295 2.93295 0.79 0.000753641 0.000696588 0.0550225 0.050916 36 2925 47 6.99608e+06 412039 648988. 2245.63 8.69 0.333697 0.29033 26050 158493 -1 2389 18 1549 2193 247704 46357 3.02647 3.02647 -128.363 -3.02647 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.028195 0.024868 87 3 124 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 10.11 vpr 55.21 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 17.3 MiB 0.76 1077 13105 3562 8179 1364 56.0 MiB 0.19 0.00 3.82425 -139.818 -3.82425 3.82425 0.85 0.000841982 0.000778531 0.063052 0.0584115 44 3564 40 6.99608e+06 309029 787024. 2723.27 2.52 0.216633 0.190875 27778 195446 -1 2709 23 2470 3420 381459 71575 4.05842 4.05842 -153.091 -4.05842 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.037265 0.0327318 115 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 7.38 vpr 55.12 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30232 -1 -1 11 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56448 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 16.5 MiB 1.15 701 9397 3869 5271 257 55.1 MiB 0.11 0.00 2.9841 -107.493 -2.9841 2.9841 0.83 0.000680163 0.000630101 0.0423366 0.039166 38 2528 35 6.99608e+06 161872 678818. 2348.85 2.48 0.164027 0.143549 26626 170182 -1 1644 18 1357 1844 152866 33566 2.86632 2.86632 -118.389 -2.86632 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0246159 0.021614 72 34 54 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 8.50 vpr 54.89 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30248 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 16.8 MiB 7.02 650 7975 2399 4401 1175 55.4 MiB 0.10 0.00 3.55679 -118.022 -3.55679 3.55679 0.79 0.000671516 0.000621252 0.0364854 0.0338027 46 1982 32 6.99608e+06 191304 828058. 2865.25 3.69 0.183147 0.159456 28066 200906 -1 1490 20 1368 1939 167633 36693 3.59411 3.59411 -129.01 -3.59411 0 0 1.01997e+06 3529.29 0.32 0.08 0.19 -1 -1 0.32 0.0266267 0.0233336 73 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.19 vpr 54.98 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30256 -1 -1 15 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56568 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 16.5 MiB 1.07 739 7975 3247 4371 357 55.2 MiB 0.09 0.00 3.69125 -116.127 -3.69125 3.69125 0.78 0.000640376 0.000593346 0.0344748 0.0319428 36 2500 44 6.99608e+06 220735 648988. 2245.63 2.77 0.162899 0.14184 26050 158493 -1 1976 20 1288 1933 207014 41660 3.47006 3.47006 -124.036 -3.47006 0 0 828058. 2865.25 0.29 0.08 0.14 -1 -1 0.29 0.0234866 0.0208271 72 34 56 28 28 28 + fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 7.23 vpr 54.71 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 16.6 MiB 0.23 696 7204 2957 4121 126 55.1 MiB 0.09 0.00 2.86245 -113.51 -2.86245 2.86245 0.78 0.000673445 0.000623008 0.0346668 0.0321078 40 2274 37 6.99608e+06 147157 706193. 2443.58 2.32 0.178264 0.155237 26914 176310 -1 1777 22 1537 2365 274166 52976 3.23592 3.23592 -128.876 -3.23592 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0286983 0.0251354 64 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 8.00 vpr 54.88 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 16.8 MiB 0.66 709 9540 3934 5278 328 55.3 MiB 0.11 0.00 2.94395 -107.519 -2.94395 2.94395 0.79 0.000680309 0.000629017 0.0418176 0.0387363 46 2300 50 6.99608e+06 220735 828058. 2865.25 2.79 0.203949 0.177527 28066 200906 -1 1561 18 1293 1675 138709 29405 2.88352 2.88352 -107.503 -2.88352 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.0248776 0.021853 77 34 61 31 31 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 7.95 vpr 55.26 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30140 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56916 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 16.8 MiB 2.69 930 10835 4554 5858 423 55.6 MiB 0.13 0.00 2.88685 -103.645 -2.88685 2.88685 0.79 0.000681336 0.000630345 0.0478727 0.0443127 38 2426 29 6.99608e+06 235451 678818. 2348.85 4.14 0.268276 0.232363 26626 170182 -1 2038 17 1401 1714 181805 35323 2.85732 2.85732 -111.228 -2.85732 0 0 902133. 3121.57 0.27 0.07 0.17 -1 -1 0.27 0.024161 0.0212595 86 61 29 29 57 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 24.94 vpr 55.41 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30476 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 17.2 MiB 0.97 1138 15273 6065 7495 1713 56.0 MiB 0.22 0.01 3.90815 -143.373 -3.90815 3.90815 0.79 0.000904812 0.000838476 0.0789201 0.0731428 50 3328 39 6.99608e+06 294314 902133. 3121.57 5.91 0.435481 0.379897 28642 213929 -1 2677 24 2319 3429 348618 67844 3.91781 3.91781 -150.494 -3.91781 0 0 1.08113e+06 3740.92 0.33 0.13 0.21 -1 -1 0.33 0.0419549 0.0368554 106 29 128 32 27 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 9.43 vpr 55.58 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30408 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 17.2 MiB 1.00 999 10762 3395 5388 1979 55.9 MiB 0.15 0.00 4.20458 -152.083 -4.20458 4.20458 0.79 0.000847274 0.000784203 0.0544985 0.0505096 54 3187 36 6.99608e+06 264882 949917. 3286.91 3.73 0.248155 0.217918 29506 232905 -1 2168 19 2109 2856 331174 67804 4.06765 4.06765 -158.129 -4.06765 0 0 1.17392e+06 4061.99 0.35 0.11 0.22 -1 -1 0.35 0.0325117 0.0286864 110 65 62 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.67 vpr 55.05 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30520 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 16.8 MiB 0.73 1070 8867 2185 5933 749 55.5 MiB 0.11 0.00 3.49385 -125.494 -3.49385 3.49385 0.79 0.000731823 0.000677187 0.0410801 0.0380376 38 2478 46 6.99608e+06 235451 678818. 2348.85 3.22 0.214159 0.186409 26626 170182 -1 2114 21 1372 1414 141321 27540 3.57046 3.57046 -129.802 -3.57046 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0300994 0.0263746 99 90 0 0 89 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.77 vpr 55.43 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30340 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57192 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 17.3 MiB 0.65 1182 9006 2249 6265 492 55.9 MiB 0.07 0.00 3.66135 -134.693 -3.66135 3.66135 0.63 0.000350252 0.000320064 0.0202285 0.018572 40 3046 27 6.99608e+06 264882 706193. 2443.58 2.36 0.160809 0.139931 26914 176310 -1 2796 21 1957 2642 334843 63206 3.85696 3.85696 -149.597 -3.85696 0 0 926341. 3205.33 0.30 0.12 0.18 -1 -1 0.30 0.0349396 0.0308106 105 64 60 30 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 9.99 vpr 55.52 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30492 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 17.6 MiB 1.06 1281 17663 7641 9474 548 55.9 MiB 0.25 0.00 4.62587 -160.146 -4.62587 4.62587 0.78 0.000905339 0.000837927 0.0887671 0.0822045 46 3543 42 6.99608e+06 338461 828058. 2865.25 2.56 0.26307 0.23177 28066 200906 -1 2499 20 2419 2740 262029 50973 4.39645 4.39645 -157.625 -4.39645 0 0 1.01997e+06 3529.29 0.32 0.10 0.19 -1 -1 0.32 0.0320994 0.0285421 138 124 0 0 124 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 19.76 vpr 55.57 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57324 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 17.3 MiB 2.90 1159 10762 4075 5172 1515 56.0 MiB 0.16 0.00 4.92973 -159.817 -4.92973 4.92973 0.80 0.000849501 0.000786035 0.0545064 0.0505373 46 3007 22 6.99608e+06 279598 828058. 2865.25 4.82 0.301549 0.262843 28066 200906 -1 2331 20 2014 2627 247488 48142 4.4641 4.4641 -155.515 -4.4641 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0338785 0.0298284 117 90 31 31 89 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.83 vpr 55.28 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30360 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 17.1 MiB 2.06 1059 13763 5785 7510 468 55.8 MiB 0.18 0.00 3.58185 -130.714 -3.58185 3.58185 0.79 0.000819379 0.000758015 0.0654758 0.0606299 46 2851 46 6.99608e+06 294314 828058. 2865.25 3.11 0.258376 0.226813 28066 200906 -1 2234 20 2061 2771 251252 50775 3.41986 3.41986 -132.529 -3.41986 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0329851 0.0290712 107 64 60 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.36 vpr 55.07 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30424 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.3 MiB 0.81 1271 6556 1686 3783 1087 56.0 MiB 0.10 0.00 3.81927 -146.587 -3.81927 3.81927 0.78 0.000836533 0.00077453 0.034351 0.031863 40 3275 35 6.99608e+06 250167 706193. 2443.58 3.76 0.222374 0.194076 26914 176310 -1 2828 20 2191 2847 376679 72564 4.26672 4.26672 -166.291 -4.26672 0 0 926341. 3205.33 0.28 0.12 0.18 -1 -1 0.28 0.0337306 0.0297489 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 7.18 vpr 55.64 MiB 0.03 7288 -1 -1 1 0.04 -1 -1 30668 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57480 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 17.9 MiB 1.91 1530 16529 5778 8459 2292 56.1 MiB 0.25 0.00 4.81093 -174.639 -4.81093 4.81093 0.79 0.000999544 0.00092548 0.0908788 0.0842388 48 4110 30 6.99608e+06 323745 865456. 2994.66 5.40 0.424686 0.370829 28354 207349 -1 3371 19 2979 4138 453362 89116 5.0453 5.0453 -187.875 -5.0453 0 0 1.05005e+06 3633.38 0.32 0.14 0.20 -1 -1 0.32 0.0384021 0.033865 139 96 62 32 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 7.80 vpr 54.80 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30560 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 16.6 MiB 0.82 802 9996 3771 4383 1842 55.3 MiB 0.12 0.00 3.1395 -118.304 -3.1395 3.1395 0.78 0.000683792 0.000632719 0.0451872 0.0418956 36 2322 38 6.99608e+06 191304 648988. 2245.63 7.37 0.307497 0.266659 26050 158493 -1 1820 20 1439 1763 180014 35389 3.41577 3.41577 -128.916 -3.41577 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0272173 0.0238714 75 34 62 31 31 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 7.16 vpr 55.17 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30444 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 17.3 MiB 0.65 1237 14606 4845 8003 1758 55.9 MiB 0.21 0.00 4.54014 -162.571 -4.54014 4.54014 0.80 0.00083339 0.000770275 0.0729598 0.067571 44 3538 50 6.99608e+06 264882 787024. 2723.27 4.13 0.276961 0.243518 27778 195446 -1 2768 20 1790 2287 279217 49355 4.54181 4.54181 -169.774 -4.54181 0 0 997811. 3452.63 0.33 0.11 0.19 -1 -1 0.33 0.0364555 0.0324153 106 64 62 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.81 vpr 55.35 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30656 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 17.1 MiB 1.07 1279 13077 3808 7089 2180 55.8 MiB 0.18 0.00 3.54953 -133.609 -3.54953 3.54953 0.80 0.000829294 0.000766954 0.0625368 0.0579356 44 3368 31 6.99608e+06 294314 787024. 2723.27 2.84 0.240184 0.211316 27778 195446 -1 2664 19 1799 2549 251066 47859 3.65646 3.65646 -143.702 -3.65646 0 0 997811. 3452.63 0.35 0.10 0.19 -1 -1 0.35 0.0320878 0.0282413 108 63 62 32 62 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.13 vpr 55.20 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30368 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56688 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 16.9 MiB 0.78 797 9368 3826 5299 243 55.4 MiB 0.13 0.00 3.54729 -133.832 -3.54729 3.54729 0.78 0.000777077 0.000710451 0.0469891 0.043517 44 2972 48 6.99608e+06 191304 787024. 2723.27 3.46 0.208314 0.181912 27778 195446 -1 2156 20 1886 3136 314647 61290 3.89876 3.89876 -153.648 -3.89876 0 0 997811. 3452.63 0.36 0.11 0.19 -1 -1 0.36 0.031334 0.0276376 77 3 128 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.24 vpr 55.43 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30488 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 17.3 MiB 1.22 1139 10883 2905 7208 770 56.0 MiB 0.16 0.00 3.32994 -127.882 -3.32994 3.32994 0.78 0.000855465 0.000791677 0.0549646 0.0509138 44 3437 31 6.99608e+06 279598 787024. 2723.27 2.36 0.223053 0.195517 27778 195446 -1 2380 32 2331 2753 360000 92498 3.42311 3.42311 -133.503 -3.42311 0 0 997811. 3452.63 0.31 0.14 0.19 -1 -1 0.31 0.0495465 0.0432337 120 96 25 25 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.39 vpr 55.48 MiB 0.04 6968 -1 -1 1 0.04 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57212 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 17.2 MiB 0.97 1139 12528 3436 7246 1846 55.9 MiB 0.18 0.00 3.59669 -136.453 -3.59669 3.59669 0.78 0.000825144 0.000763744 0.0601064 0.0556941 40 3519 37 6.99608e+06 294314 706193. 2443.58 3.91 0.242993 0.213034 26914 176310 -1 2884 21 2193 3040 368922 71970 4.21416 4.21416 -156.411 -4.21416 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0344224 0.0302605 106 61 64 32 60 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.99 vpr 55.69 MiB 0.02 7024 -1 -1 1 0.04 -1 -1 30580 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 17.3 MiB 0.77 1314 14431 4781 7561 2089 55.9 MiB 0.21 0.00 3.61639 -141.899 -3.61639 3.61639 0.79 0.000841496 0.000777917 0.0728796 0.0674959 44 3289 26 6.99608e+06 250167 787024. 2723.27 4.97 0.358938 0.313417 27778 195446 -1 2618 32 2384 2887 424659 156961 3.60816 3.60816 -144.298 -3.60816 0 0 997811. 3452.63 0.31 0.17 0.19 -1 -1 0.31 0.0486787 0.0425946 108 65 63 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.83 vpr 55.09 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 16.9 MiB 1.01 813 11432 3614 6147 1671 55.7 MiB 0.17 0.00 3.93015 -141.517 -3.93015 3.93015 0.81 0.000801371 0.000741563 0.0646736 0.0599933 48 3075 30 6.99608e+06 235451 865456. 2994.66 3.88 0.239054 0.210352 28354 207349 -1 2415 23 2024 2864 370121 75748 4.22772 4.22772 -155.148 -4.22772 0 0 1.05005e+06 3633.38 0.33 0.12 0.20 -1 -1 0.33 0.0356123 0.0312685 94 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 9.79 vpr 55.21 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30656 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.2 MiB 0.87 930 14500 5516 6956 2028 55.8 MiB 0.19 0.00 3.81585 -138.808 -3.81585 3.81585 0.80 0.000844856 0.000782207 0.0713566 0.0660691 44 3535 46 6.99608e+06 264882 787024. 2723.27 2.92 0.267138 0.234963 27778 195446 -1 2358 22 2319 2747 298113 59116 4.26372 4.26372 -159.191 -4.26372 0 0 997811. 3452.63 0.39 0.12 0.19 -1 -1 0.39 0.0359555 0.0316938 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.03 vpr 55.50 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30420 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 17.5 MiB 1.37 1399 14035 5589 6713 1733 55.8 MiB 0.19 0.00 3.97768 -141.845 -3.97768 3.97768 0.79 0.000897227 0.000830563 0.0708138 0.0654624 44 3644 30 6.99608e+06 323745 787024. 2723.27 2.73 0.259985 0.227783 27778 195446 -1 2886 20 2066 2402 271623 49819 3.74475 3.74475 -145.215 -3.74475 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.0369284 0.0326362 132 122 0 0 122 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 7.57 vpr 55.73 MiB 0.05 7252 -1 -1 1 0.03 -1 -1 30460 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.7 MiB 1.04 1318 15273 5215 8174 1884 55.9 MiB 0.21 0.00 3.73195 -141.182 -3.73195 3.73195 0.78 0.000872344 0.000806655 0.0765692 0.0708662 40 3816 45 6.99608e+06 294314 706193. 2443.58 4.12 0.280044 0.245668 26914 176310 -1 3467 26 2915 4053 580002 121440 4.21172 4.21172 -164.592 -4.21172 0 0 926341. 3205.33 0.28 0.17 0.17 -1 -1 0.28 0.0424717 0.0371654 126 94 32 32 94 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.63 vpr 54.98 MiB 0.03 6872 -1 -1 1 0.04 -1 -1 30728 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56636 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 16.7 MiB 0.47 921 12528 4814 6023 1691 55.3 MiB 0.16 0.00 2.98795 -120.412 -2.98795 2.98795 0.81 0.000690659 0.00063882 0.0549701 0.0509235 48 2241 35 6.99608e+06 206020 865456. 2994.66 4.87 0.275598 0.240027 28354 207349 -1 1982 19 1395 1911 228326 43620 3.07962 3.07962 -125.336 -3.07962 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.02656 0.0233332 80 34 63 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 9.20 vpr 55.22 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 17.3 MiB 0.91 1095 11776 4100 5415 2261 55.9 MiB 0.15 0.00 3.80663 -140.003 -3.80663 3.80663 0.78 0.000767583 0.000709602 0.0552268 0.0511051 44 3191 47 6.99608e+06 235451 787024. 2723.27 2.77 0.211202 0.185 27778 195446 -1 2428 21 2011 2384 299055 54121 3.795 3.795 -144.367 -3.795 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0317883 0.0278683 108 94 0 0 94 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 8.20 vpr 55.45 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30788 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57248 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 17.6 MiB 0.85 1231 15273 6501 8321 451 55.9 MiB 0.22 0.00 4.57343 -162.846 -4.57343 4.57343 0.79 0.000959735 0.000887537 0.0837147 0.077519 50 3705 35 6.99608e+06 294314 902133. 3121.57 19.44 0.509264 0.443602 28642 213929 -1 2951 22 2874 3977 465898 87229 4.89726 4.89726 -180.675 -4.89726 0 0 1.08113e+06 3740.92 0.33 0.14 0.20 -1 -1 0.33 0.0413422 0.0363595 126 65 96 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.99 vpr 55.20 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.60 1100 10916 2969 6188 1759 55.7 MiB 0.16 0.00 3.58059 -138.842 -3.58059 3.58059 0.78 0.000797146 0.000736504 0.0535641 0.0495966 40 2668 48 6.99608e+06 235451 706193. 2443.58 2.57 0.236475 0.206697 26914 176310 -1 2470 23 1953 2538 327382 66029 3.79842 3.79842 -146.132 -3.79842 0 0 926341. 3205.33 0.31 0.12 0.17 -1 -1 0.31 0.0352238 0.0310399 93 34 92 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 7.91 vpr 55.06 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30264 -1 -1 24 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 16.7 MiB 0.70 716 11804 3687 5992 2125 55.1 MiB 0.13 0.00 3.75245 -123.293 -3.75245 3.75245 0.78 0.000665094 0.0006151 0.044094 0.0408436 38 2328 50 6.99608e+06 353176 678818. 2348.85 9.53 0.319761 0.276445 26626 170182 -1 1809 20 1563 2199 219517 45789 3.64546 3.64546 -134.834 -3.64546 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0266638 0.0233581 80 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.12 vpr 55.98 MiB 0.03 7464 -1 -1 1 0.04 -1 -1 30980 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57612 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 18.0 MiB 0.83 1504 15883 5797 7858 2228 56.3 MiB 0.26 0.00 5.34997 -188.353 -5.34997 5.34997 0.79 0.00104096 0.000964227 0.0883615 0.0819029 48 4382 30 6.99608e+06 353176 865456. 2994.66 4.16 0.313924 0.276556 28354 207349 -1 3343 24 3596 4389 527266 102534 6.19829 6.19829 -212.066 -6.19829 0 0 1.05005e+06 3633.38 0.35 0.16 0.20 -1 -1 0.35 0.0475126 0.0416903 159 127 32 32 128 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.96 vpr 55.31 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30468 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.66 938 15044 6550 8115 379 55.8 MiB 0.19 0.00 4.27644 -157.663 -4.27644 4.27644 0.78 0.000806083 0.000745918 0.0736145 0.0681729 46 2727 27 6.99608e+06 235451 828058. 2865.25 2.43 0.236945 0.208944 28066 200906 -1 2068 21 2208 2839 254160 49760 4.18671 4.18671 -160.824 -4.18671 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0334919 0.0294582 92 34 96 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 6.01 vpr 54.68 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30392 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56432 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 16.4 MiB 0.31 660 12763 5275 7138 350 55.1 MiB 0.14 0.00 2.98775 -114.509 -2.98775 2.98775 0.78 0.000672643 0.000622048 0.04615 0.0427428 52 1866 50 6.99608e+06 353176 926341. 3205.33 4.75 0.276925 0.240714 29218 227130 -1 1420 21 1418 2017 205194 39328 2.89002 2.89002 -115.259 -2.89002 0 0 1.14541e+06 3963.36 0.35 0.08 0.22 -1 -1 0.35 0.027169 0.0237951 70 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.04 vpr 55.32 MiB 0.06 7252 -1 -1 1 0.04 -1 -1 31000 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57540 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 17.4 MiB 0.73 1143 13432 5563 7207 662 56.2 MiB 0.20 0.00 4.46895 -161.038 -4.46895 4.46895 0.79 0.000928136 0.000860512 0.0738599 0.0685412 46 3873 37 6.99608e+06 264882 828058. 2865.25 5.17 0.287685 0.253001 28066 200906 -1 2625 23 2724 3857 379667 75631 4.76691 4.76691 -175.058 -4.76691 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0410597 0.0360165 112 34 128 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.94 vpr 54.79 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 16.6 MiB 0.29 625 10614 4416 5947 251 55.1 MiB 0.12 0.00 2.85145 -111.794 -2.85145 2.85145 0.82 0.000665259 0.00061498 0.0479333 0.0443602 40 2193 47 6.99608e+06 147157 706193. 2443.58 3.07 0.205423 0.179208 26914 176310 -1 1788 23 1506 2283 265685 53379 3.55877 3.55877 -131.907 -3.55877 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0306249 0.0268368 62 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.47 vpr 55.04 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30132 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 16.7 MiB 0.69 755 9857 4076 5498 283 55.2 MiB 0.12 0.00 3.30794 -118.735 -3.30794 3.30794 0.78 0.00066877 0.000618456 0.0427743 0.0396095 44 2282 49 6.99608e+06 220735 787024. 2723.27 2.76 0.208552 0.182013 27778 195446 -1 1673 24 1668 2164 209991 40161 3.18821 3.18821 -120.1 -3.18821 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0307652 0.0268587 74 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.99 vpr 55.42 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30308 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 17.2 MiB 1.59 1003 15481 6003 6865 2613 55.8 MiB 0.20 0.00 3.85703 -126.704 -3.85703 3.85703 0.79 0.000807511 0.000746855 0.0742916 0.0687541 46 3234 28 6.99608e+06 294314 828058. 2865.25 3.76 0.252541 0.223185 28066 200906 -1 2248 20 1778 2388 235772 48596 3.781 3.781 -129.295 -3.781 0 0 1.01997e+06 3529.29 0.31 0.10 0.18 -1 -1 0.31 0.0322989 0.0284125 113 88 29 29 85 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 8.58 vpr 55.23 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30664 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57412 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.3 MiB 0.96 1068 14144 5407 6800 1937 56.1 MiB 0.19 0.00 4.29664 -157.784 -4.29664 4.29664 0.79 0.000838788 0.000776128 0.0707372 0.0654469 46 2924 33 6.99608e+06 264882 828058. 2865.25 2.33 0.216682 0.191397 28066 200906 -1 2220 21 2376 3177 329018 65168 4.80451 4.80451 -171.198 -4.80451 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0354051 0.0312378 109 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 9.44 vpr 55.23 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30652 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 17.2 MiB 1.00 1151 6846 1472 4993 381 56.0 MiB 0.12 0.00 4.30354 -157.84 -4.30354 4.30354 0.79 0.000850647 0.000788186 0.0358888 0.0332978 46 3310 24 6.99608e+06 264882 828058. 2865.25 5.08 0.311805 0.27087 28066 200906 -1 2777 23 2721 3697 430936 81233 4.7832 4.7832 -179.954 -4.7832 0 0 1.01997e+06 3529.29 0.34 0.13 0.19 -1 -1 0.34 0.0355981 0.0316401 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 15.40 vpr 54.93 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57076 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 16.9 MiB 0.63 792 12585 5306 6906 373 55.7 MiB 0.15 0.00 3.44424 -128.433 -3.44424 3.44424 0.79 0.000745224 0.000689696 0.057736 0.0534515 46 2581 47 6.99608e+06 220735 828058. 2865.25 3.49 0.243774 0.213272 28066 200906 -1 1896 19 1587 1758 194159 42467 3.37581 3.37581 -131.824 -3.37581 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.0283804 0.0249812 92 65 32 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 9.31 vpr 55.08 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 30584 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 16.9 MiB 2.25 885 11260 4668 6241 351 55.7 MiB 0.14 0.00 3.46644 -123.995 -3.46644 3.46644 0.79 0.000739563 0.000683766 0.0513213 0.0475116 48 2570 23 6.99608e+06 250167 865456. 2994.66 4.92 0.290519 0.251508 28354 207349 -1 2043 20 1781 2203 271135 54431 3.29451 3.29451 -123.936 -3.29451 0 0 1.05005e+06 3633.38 0.32 0.10 0.20 -1 -1 0.32 0.0293387 0.0257225 102 90 0 0 89 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.10 vpr 55.16 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30488 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 16.8 MiB 1.20 904 12506 5230 6653 623 55.5 MiB 0.16 0.00 3.42074 -117.96 -3.42074 3.42074 0.86 0.000792567 0.00073317 0.0595907 0.0551865 44 3125 40 6.99608e+06 279598 787024. 2723.27 3.62 0.245102 0.215031 27778 195446 -1 2179 19 1792 2583 268019 54386 3.32347 3.32347 -122.917 -3.32347 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0304495 0.026806 101 60 60 30 57 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.06 vpr 54.95 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30376 -1 -1 18 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57060 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 16.9 MiB 0.63 824 9872 4064 5274 534 55.7 MiB 0.12 0.00 3.73195 -121.956 -3.73195 3.73195 0.79 0.000722328 0.000668637 0.0455693 0.042255 40 2601 27 6.99608e+06 264882 706193. 2443.58 10.83 0.344798 0.299088 26914 176310 -1 2027 22 1962 2845 292025 59620 4.01812 4.01812 -140.127 -4.01812 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0312121 0.0273499 87 34 84 28 28 28 + fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.78 vpr 55.16 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30232 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 16.9 MiB 1.70 814 10672 3702 5165 1805 55.6 MiB 0.13 0.00 4.51934 -148.35 -4.51934 4.51934 0.79 0.000707702 0.000654592 0.0492864 0.0456825 44 2642 48 6.99608e+06 220735 787024. 2723.27 3.42 0.217091 0.189677 27778 195446 -1 1774 20 1557 2067 185492 39180 3.92835 3.92835 -139.766 -3.92835 0 0 997811. 3452.63 0.42 0.08 0.20 -1 -1 0.42 0.0244404 0.0216739 88 63 30 30 60 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.06 vpr 55.33 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30344 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57196 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 16.9 MiB 2.57 1000 12585 4720 5647 2218 55.9 MiB 0.17 0.00 3.77345 -134.122 -3.77345 3.77345 0.79 0.00075334 0.000696391 0.058861 0.0544526 46 3137 24 6.99608e+06 220735 828058. 2865.25 3.74 0.218237 0.19194 28066 200906 -1 2294 19 1680 2057 221540 43101 3.38457 3.38457 -131.137 -3.38457 0 0 1.01997e+06 3529.29 0.32 0.08 0.21 -1 -1 0.32 0.0249734 0.0221918 104 91 0 0 91 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 8.52 vpr 55.07 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30216 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56604 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 16.8 MiB 0.17 808 15688 5217 8110 2361 55.3 MiB 0.20 0.00 3.76925 -134.079 -3.76925 3.76925 0.79 0.000754307 0.000698069 0.063489 0.0588123 46 2968 49 6.99608e+06 367892 828058. 2865.25 4.41 0.250791 0.220176 28066 200906 -1 2099 20 1737 2679 255414 50348 3.80946 3.80946 -144.206 -3.80946 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0295187 0.0259161 86 4 124 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.82 vpr 55.41 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30636 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57200 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 17.2 MiB 0.70 1209 11281 3120 7720 441 55.9 MiB 0.17 0.00 4.19534 -154.628 -4.19534 4.19534 0.86 0.00065848 0.000594235 0.0535874 0.0494163 46 3289 24 6.99608e+06 250167 828058. 2865.25 5.12 0.317197 0.276096 28066 200906 -1 2672 35 2958 3970 624693 211535 4.42125 4.42125 -170.726 -4.42125 0 0 1.01997e+06 3529.29 0.32 0.20 0.19 -1 -1 0.32 0.0524784 0.0457708 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 10.54 vpr 55.56 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30376 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57376 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 17.2 MiB 0.62 1142 12364 5175 6807 382 56.0 MiB 0.17 0.00 5.12678 -171.348 -5.12678 5.12678 0.79 0.00084755 0.000783732 0.0620433 0.0574214 56 3076 34 6.99608e+06 264882 973134. 3367.25 6.67 0.354409 0.309573 29794 239141 -1 2432 23 2020 2865 426659 81345 4.8698 4.8698 -174.457 -4.8698 0 0 1.19926e+06 4149.71 0.36 0.14 0.24 -1 -1 0.36 0.0384001 0.0337672 108 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 7.42 vpr 55.59 MiB 0.03 7016 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57300 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 17.2 MiB 0.64 1089 13788 4649 7550 1589 56.0 MiB 0.20 0.00 4.15408 -148.064 -4.15408 4.15408 0.79 0.000829003 0.000766398 0.0678028 0.0627566 48 3541 40 6.99608e+06 264882 865456. 2994.66 5.88 0.393889 0.342865 28354 207349 -1 2669 20 2197 3146 367501 69749 4.38845 4.38845 -163.645 -4.38845 0 0 1.05005e+06 3633.38 0.32 0.12 0.20 -1 -1 0.32 0.0334735 0.0295051 107 65 60 30 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 8.85 vpr 55.04 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30312 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 16.8 MiB 0.73 692 12241 5462 6300 479 55.2 MiB 0.13 0.00 3.58339 -124.571 -3.58339 3.58339 0.78 0.00066536 0.000615181 0.0540141 0.0499647 46 2487 43 6.99608e+06 191304 828058. 2865.25 2.40 0.206848 0.180683 28066 200906 -1 1730 21 1484 2023 211955 49368 3.57516 3.57516 -133.138 -3.57516 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0275455 0.0241012 76 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 9.61 vpr 55.63 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30456 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57128 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 17.1 MiB 2.14 1070 13152 5486 7187 479 55.8 MiB 0.18 0.00 4.68713 -157.481 -4.68713 4.68713 0.79 0.000801972 0.000741884 0.0644502 0.0596772 46 3443 41 6.99608e+06 264882 828058. 2865.25 3.43 0.251031 0.22039 28066 200906 -1 2674 20 2344 3355 392549 74415 4.65964 4.65964 -165.262 -4.65964 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0323148 0.028456 105 63 60 30 60 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.48 vpr 55.29 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30992 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 17.6 MiB 0.73 1372 11615 4190 5568 1857 56.0 MiB 0.17 0.00 4.17744 -155.5 -4.17744 4.17744 0.78 0.000928972 0.00086063 0.0601854 0.0558111 46 3286 26 6.99608e+06 323745 828058. 2865.25 3.26 0.248534 0.217525 28066 200906 -1 2610 23 2488 2557 260256 48862 4.17865 4.17865 -163.239 -4.17865 0 0 1.01997e+06 3529.29 0.31 0.11 0.19 -1 -1 0.31 0.0410157 0.0358997 139 127 0 0 128 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 9.50 vpr 55.30 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30488 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 17.2 MiB 1.36 1101 12733 5285 6817 631 55.7 MiB 0.17 0.00 4.35899 -150.667 -4.35899 4.35899 0.81 0.000861206 0.000796485 0.0632106 0.0585038 48 3295 46 6.99608e+06 323745 865456. 2994.66 16.87 0.502689 0.436165 28354 207349 -1 2446 23 2180 2577 357569 90356 4.90781 4.90781 -172.379 -4.90781 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0381784 0.0335675 125 94 31 31 93 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.42 vpr 55.53 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30520 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 17.2 MiB 2.51 1072 15456 6595 7994 867 55.9 MiB 0.20 0.00 4.1343 -135.415 -4.1343 4.1343 0.79 0.000827916 0.000765734 0.0727088 0.0672721 48 3642 46 6.99608e+06 323745 865456. 2994.66 4.95 0.269724 0.237491 28354 207349 -1 2744 24 2716 3910 575188 151569 4.0456 4.0456 -149.131 -4.0456 0 0 1.05005e+06 3633.38 0.33 0.18 0.20 -1 -1 0.33 0.0382796 0.0335404 114 92 26 26 90 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 8.18 vpr 55.59 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30592 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.3 MiB 0.93 1174 14500 5592 7226 1682 56.0 MiB 0.20 0.00 4.33244 -160.384 -4.33244 4.33244 0.80 0.00084842 0.000784926 0.0724127 0.0670594 48 3402 24 6.99608e+06 264882 865456. 2994.66 5.44 0.334065 0.292209 28354 207349 -1 2979 22 2650 3673 556919 103311 5.26361 5.26361 -187.949 -5.26361 0 0 1.05005e+06 3633.38 0.32 0.15 0.20 -1 -1 0.32 0.0362775 0.031909 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.21 vpr 55.54 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30352 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57284 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 17.2 MiB 1.58 1070 11106 4662 5983 461 55.9 MiB 0.16 0.00 3.53179 -119.754 -3.53179 3.53179 0.81 0.000792548 0.000732755 0.0536125 0.0496203 38 3421 42 6.99608e+06 294314 678818. 2348.85 6.62 0.247034 0.216605 26626 170182 -1 2681 22 2138 2749 328741 62893 3.80371 3.80371 -137.038 -3.80371 0 0 902133. 3121.57 0.27 0.11 0.17 -1 -1 0.27 0.0344707 0.0302614 112 88 26 26 85 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 6.57 vpr 54.77 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 16.5 MiB 0.64 592 9684 3186 4658 1840 55.1 MiB 0.11 0.00 2.86245 -110.719 -2.86245 2.86245 0.79 0.000670872 0.000620672 0.0440707 0.0408578 44 2074 30 6.99608e+06 147157 787024. 2723.27 4.76 0.251262 0.218188 27778 195446 -1 1574 22 1415 2175 199836 41901 3.23592 3.23592 -126.551 -3.23592 0 0 997811. 3452.63 0.31 0.09 0.23 -1 -1 0.31 0.0285724 0.0249917 62 3 96 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 8.81 vpr 55.79 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30580 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57328 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 17.4 MiB 0.65 999 9872 3990 5501 381 56.0 MiB 0.14 0.00 4.9054 -173.166 -4.9054 4.9054 0.79 0.000853666 0.000789631 0.0501777 0.0464725 62 2744 23 6.99608e+06 264882 1.05005e+06 3633.38 2.66 0.21913 0.1921 30946 263737 -1 2123 24 2258 3181 358169 70413 4.7445 4.7445 -170.013 -4.7445 0 0 1.30136e+06 4502.97 0.39 0.12 0.25 -1 -1 0.39 0.0391922 0.0344359 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 9.30 vpr 55.64 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30444 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57364 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 17.3 MiB 0.94 1203 7431 1958 4126 1347 56.0 MiB 0.12 0.00 4.63877 -167.295 -4.63877 4.63877 0.81 0.000850646 0.000786478 0.039891 0.0370023 46 3333 24 6.99608e+06 250167 828058. 2865.25 5.09 0.297205 0.258384 28066 200906 -1 2656 22 2804 3786 394276 74953 4.66634 4.66634 -172.162 -4.66634 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0367557 0.0323661 111 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 6.81 vpr 55.07 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56640 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 16.8 MiB 1.99 766 11324 4293 5664 1367 55.3 MiB 0.13 0.00 3.24452 -112.954 -3.24452 3.24452 0.79 0.000683624 0.000630981 0.0500642 0.046261 54 2045 29 6.99608e+06 191304 949917. 3286.91 5.23 0.254446 0.221061 29506 232905 -1 1561 25 1493 1793 269158 104756 3.30446 3.30446 -112.623 -3.30446 0 0 1.17392e+06 4061.99 0.36 0.12 0.23 -1 -1 0.36 0.0330472 0.0288734 85 55 32 32 54 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.74 vpr 54.77 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30428 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56412 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 16.5 MiB 0.24 592 7514 3020 4270 224 55.1 MiB 0.09 0.00 3.0031 -111.146 -3.0031 3.0031 0.78 0.000645652 0.000597149 0.0335617 0.031075 40 2119 31 6.99608e+06 161872 706193. 2443.58 9.92 0.32403 0.279039 26914 176310 -1 1770 20 1496 2203 239802 50434 3.31422 3.31422 -129.579 -3.31422 0 0 926341. 3205.33 0.28 0.09 0.17 -1 -1 0.28 0.025947 0.0227133 63 4 93 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.11 vpr 55.36 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57224 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 17.1 MiB 0.84 1014 12331 5131 6918 282 55.9 MiB 0.15 0.00 4.03648 -138.539 -4.03648 4.03648 0.79 0.000798352 0.000737465 0.0592318 0.0547731 48 2476 31 6.99608e+06 250167 865456. 2994.66 4.49 0.322497 0.281627 28354 207349 -1 2157 19 1888 2255 246308 47435 3.9826 3.9826 -141.448 -3.9826 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.03115 0.0274693 102 59 60 32 58 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.50 vpr 55.33 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30324 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57264 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 17.3 MiB 1.29 1077 13043 5447 7262 334 55.9 MiB 0.17 0.00 4.38874 -150.527 -4.38874 4.38874 0.78 0.000828798 0.000765839 0.0626663 0.0579337 48 2884 30 6.99608e+06 279598 865456. 2994.66 2.64 0.23617 0.207226 28354 207349 -1 2400 34 2377 2774 439804 133957 4.98181 4.98181 -163.724 -4.98181 0 0 1.05005e+06 3633.38 0.33 0.17 0.20 -1 -1 0.33 0.0513696 0.0448277 115 88 28 28 88 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 6.85 vpr 55.28 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30492 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57348 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 17.3 MiB 0.38 981 8047 1739 5489 819 56.0 MiB 0.12 0.00 4.28063 -149.977 -4.28063 4.28063 0.79 0.000868379 0.000804473 0.0373925 0.0346655 46 3547 49 6.99608e+06 397324 828058. 2865.25 2.83 0.213024 0.186603 28066 200906 -1 2387 18 2049 3293 292730 62405 4.63691 4.63691 -167.157 -4.63691 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0319773 0.0282925 100 3 156 32 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.04 vpr 55.23 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30696 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57140 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 17.0 MiB 0.94 884 14431 6074 7798 559 55.8 MiB 0.18 0.00 3.66815 -119.86 -3.66815 3.66815 0.82 0.000780024 0.000721294 0.0672381 0.0622521 44 2956 27 6.99608e+06 279598 787024. 2723.27 4.91 0.329864 0.287716 27778 195446 -1 2173 23 1887 2656 284917 57425 3.44206 3.44206 -123.302 -3.44206 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0351543 0.0308598 101 59 60 30 56 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.69 vpr 54.89 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30616 -1 -1 16 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 16.5 MiB 1.30 589 11925 5033 6263 629 55.0 MiB 0.13 0.00 3.68305 -110.555 -3.68305 3.68305 0.83 0.000619262 0.000573585 0.0491717 0.0455913 38 1894 41 6.99608e+06 235451 678818. 2348.85 2.09 0.169723 0.148616 26626 170182 -1 1319 22 1124 1631 144485 29534 3.42422 3.42422 -112.626 -3.42422 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0267404 0.0233661 67 34 54 27 27 27 + fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 9.11 vpr 55.64 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57428 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 17.7 MiB 0.81 1512 15151 5383 7381 2387 56.1 MiB 0.24 0.00 4.46404 -157.207 -4.46404 4.46404 0.89 0.000987487 0.000913956 0.0655339 0.0601362 58 3583 22 6.99608e+06 309029 997811. 3452.63 6.32 0.427127 0.371074 30370 251734 -1 3115 20 2207 3141 407814 72637 4.40551 4.40551 -158.325 -4.40551 0 0 1.25153e+06 4330.55 0.38 0.13 0.24 -1 -1 0.38 0.0405026 0.0356119 141 95 62 31 95 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 9.79 vpr 55.42 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30624 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 17.5 MiB 2.37 1389 9013 2681 4820 1512 55.9 MiB 0.14 0.00 4.97674 -167.764 -4.97674 4.97674 0.78 0.00090466 0.000837535 0.0472979 0.0438624 46 3406 27 6.99608e+06 323745 828058. 2865.25 5.91 0.360388 0.31276 28066 200906 -1 2739 21 2272 2564 313348 56923 4.49084 4.49084 -166.839 -4.49084 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0381659 0.0335456 138 124 0 0 124 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 18.03 vpr 55.34 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30324 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 17.0 MiB 2.66 1031 11233 4729 6294 210 55.6 MiB 0.14 0.00 3.87693 -140.03 -3.87693 3.87693 0.79 0.000747296 0.000690658 0.0524694 0.0485357 46 2773 28 6.99608e+06 220735 828058. 2865.25 2.68 0.209784 0.183527 28066 200906 -1 2160 19 1544 1886 207098 40355 3.49636 3.49636 -132.802 -3.49636 0 0 1.01997e+06 3529.29 0.35 0.09 0.19 -1 -1 0.35 0.029888 0.0265262 102 89 0 0 89 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.66 vpr 55.27 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57144 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.90 1034 14184 5996 7912 276 55.8 MiB 0.19 0.00 3.78975 -136.67 -3.78975 3.78975 0.78 0.00078482 0.000726007 0.0676398 0.0625902 44 3480 35 6.99608e+06 235451 787024. 2723.27 2.29 0.20793 0.183504 27778 195446 -1 2405 20 1843 2520 295523 55469 3.90876 3.90876 -146.859 -3.90876 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0312585 0.0275059 92 34 90 30 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.04 vpr 55.43 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 30644 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 17.3 MiB 1.53 1068 13943 4857 7191 1895 56.1 MiB 0.20 0.00 3.9689 -135.877 -3.9689 3.9689 0.79 0.000916691 0.000849984 0.0747317 0.0693473 42 3620 46 6.99608e+06 294314 744469. 2576.02 2.37 0.264704 0.232573 27202 183097 -1 2561 20 2277 3121 321402 63296 4.17942 4.17942 -155.272 -4.17942 0 0 949917. 3286.91 0.29 0.11 0.18 -1 -1 0.29 0.0365295 0.0320715 117 64 87 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 7.47 vpr 55.21 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30480 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57204 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 17.0 MiB 1.11 1088 13788 5313 5928 2547 55.9 MiB 0.18 0.00 3.56069 -123.887 -3.56069 3.56069 0.79 0.000778057 0.000719144 0.0632628 0.0585123 36 3956 47 6.99608e+06 294314 648988. 2245.63 7.27 0.257419 0.225644 26050 158493 -1 2798 19 1894 2674 288799 57479 4.11666 4.11666 -146.456 -4.11666 0 0 828058. 2865.25 0.23 0.06 0.10 -1 -1 0.23 0.0162098 0.0144327 101 61 58 30 58 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.59 vpr 55.33 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30496 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 17.3 MiB 0.63 1034 13906 5203 6656 2047 55.9 MiB 0.19 0.00 4.17744 -150.809 -4.17744 4.17744 0.92 0.00084323 0.000779205 0.0654641 0.0603668 46 3485 32 6.99608e+06 250167 828058. 2865.25 4.52 0.255238 0.224201 28066 200906 -1 2406 21 2327 2820 259212 52221 4.29031 4.29031 -156.162 -4.29031 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0350297 0.030808 107 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 11.28 vpr 55.64 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 17.3 MiB 0.74 1295 11830 3708 6867 1255 55.9 MiB 0.17 0.00 3.61179 -138.351 -3.61179 3.61179 0.78 0.000846771 0.000783365 0.0590702 0.0547352 44 3191 24 6.99608e+06 264882 787024. 2723.27 2.37 0.230386 0.20245 27778 195446 -1 2693 17 1923 2487 300291 52272 3.51406 3.51406 -139.097 -3.51406 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.029898 0.0264034 108 65 63 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 6.33 vpr 54.95 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30412 -1 -1 14 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 16.5 MiB 1.05 714 7817 3113 4376 328 55.2 MiB 0.09 0.00 3.29694 -113.946 -3.29694 3.29694 0.79 0.000647147 0.000598573 0.0344259 0.0318997 38 1867 23 6.99608e+06 206020 678818. 2348.85 3.86 0.220003 0.190313 26626 170182 -1 1559 20 1588 2046 190589 37091 3.19997 3.19997 -118.373 -3.19997 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0260578 0.0228302 73 34 58 29 29 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 10.24 vpr 55.10 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30164 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 16.8 MiB 2.27 796 13192 4518 6301 2373 55.4 MiB 0.15 0.00 3.75163 -124.237 -3.75163 3.75163 0.79 0.000720816 0.000667051 0.0598918 0.0554278 50 2077 25 6.99608e+06 206020 902133. 3121.57 4.98 0.282242 0.245786 28642 213929 -1 1652 22 1549 1842 186994 40726 4.09861 4.09861 -132.343 -4.09861 0 0 1.08113e+06 3740.92 0.35 0.08 0.21 -1 -1 0.35 0.0307504 0.026929 91 82 0 0 82 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.15 vpr 55.20 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30444 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 16.9 MiB 0.65 1104 8164 1792 5984 388 55.8 MiB 0.12 0.00 3.79614 -138.31 -3.79614 3.79614 0.79 0.000788745 0.000730504 0.0401959 0.0372928 38 3127 30 6.99608e+06 250167 678818. 2348.85 3.54 0.169754 0.149284 26626 170182 -1 2392 23 2190 2883 304820 62456 4.34802 4.34802 -161.484 -4.34802 0 0 902133. 3121.57 0.27 0.11 0.18 -1 -1 0.27 0.0351784 0.0308842 92 34 93 31 31 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 9.08 vpr 54.98 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30532 -1 -1 16 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 16.8 MiB 1.52 924 11813 4851 6237 725 55.2 MiB 0.13 0.00 3.23604 -112.025 -3.23604 3.23604 0.80 0.000656288 0.00060728 0.0499086 0.0462162 38 2416 22 6.99608e+06 235451 678818. 2348.85 2.82 0.182921 0.160069 26626 170182 -1 2045 19 1337 1490 175878 33922 3.28546 3.28546 -116.28 -3.28546 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0251617 0.0220603 81 56 29 29 52 26 + fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 6.83 vpr 54.92 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30308 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 16.6 MiB 0.68 800 12628 5339 6973 316 55.3 MiB 0.14 0.00 3.56959 -131.903 -3.56959 3.56959 0.89 0.000502317 0.000456996 0.0550048 0.0508138 44 2475 44 6.99608e+06 191304 787024. 2723.27 2.87 0.223646 0.195437 27778 195446 -1 1596 18 1540 1960 172553 34424 3.22926 3.22926 -129.623 -3.22926 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0258457 0.0227148 79 34 64 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.28 vpr 55.48 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30380 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 16.8 MiB 1.10 964 11296 3574 5293 2429 55.7 MiB 0.16 0.00 4.06828 -143.162 -4.06828 4.06828 0.79 0.000814183 0.000753639 0.0548521 0.0508341 40 3391 34 6.99608e+06 279598 706193. 2443.58 4.07 0.239859 0.210519 26914 176310 -1 2529 22 2362 3166 365151 78777 4.44141 4.44141 -159.612 -4.44141 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0350108 0.0307846 105 64 58 31 62 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.66 vpr 55.09 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30348 -1 -1 13 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 16.8 MiB 2.13 694 11756 4613 5996 1147 55.2 MiB 0.13 0.00 3.23724 -109.795 -3.23724 3.23724 0.78 0.000682147 0.000630621 0.052828 0.0489165 48 2170 46 6.99608e+06 191304 865456. 2994.66 3.32 0.215399 0.188079 28354 207349 -1 1618 22 1355 1700 196397 44692 3.59736 3.59736 -125.075 -3.59736 0 0 1.05005e+06 3633.38 0.33 0.09 0.20 -1 -1 0.33 0.0290568 0.0253845 81 55 31 31 53 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.40 vpr 55.27 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30460 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57240 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 17.0 MiB 1.48 911 15034 6476 7971 587 55.9 MiB 0.18 0.00 3.61105 -126.923 -3.61105 3.61105 0.79 0.000806736 0.00074674 0.0711505 0.0658841 58 2106 25 6.99608e+06 264882 997811. 3452.63 5.59 0.333467 0.291509 30370 251734 -1 1782 19 1376 1932 209105 42196 3.29596 3.29596 -122.173 -3.29596 0 0 1.25153e+06 4330.55 0.38 0.09 0.24 -1 -1 0.38 0.0313637 0.027621 103 65 52 26 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 9.69 vpr 55.59 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 17.3 MiB 0.84 1135 16081 6006 7648 2427 55.8 MiB 0.19 0.00 4.67827 -157.924 -4.67827 4.67827 0.92 0.000629293 0.000570413 0.0567978 0.0517705 44 3525 28 6.99608e+06 323745 787024. 2723.27 3.52 0.238924 0.209867 27778 195446 -1 2402 19 2339 3194 287262 58979 4.16544 4.16544 -153.745 -4.16544 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0334429 0.0294762 123 93 31 31 92 31 + fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.87 vpr 55.21 MiB 0.05 6928 -1 -1 1 0.03 -1 -1 30384 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 16.9 MiB 2.31 1185 10050 2506 6241 1303 55.6 MiB 0.10 0.00 3.59004 -135.268 -3.59004 3.59004 0.89 0.000497288 0.000451065 0.0347453 0.031792 44 2781 32 6.99608e+06 220735 787024. 2723.27 4.19 0.257551 0.222871 27778 195446 -1 2287 20 1397 1977 185089 35808 3.40501 3.40501 -132.205 -3.40501 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0288357 0.0253111 88 61 32 32 60 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 8.72 vpr 55.02 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56680 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 16.8 MiB 0.68 844 13856 5698 7170 988 55.4 MiB 0.17 0.00 3.30794 -123.058 -3.30794 3.30794 0.78 0.000725322 0.000670657 0.0634084 0.0586809 44 2742 46 6.99608e+06 206020 787024. 2723.27 2.80 0.210899 0.185755 27778 195446 -1 1902 21 1713 2093 211626 42432 3.26227 3.26227 -126.383 -3.26227 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0301523 0.0264161 91 63 32 32 62 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.02 vpr 55.05 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30716 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57160 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 17.2 MiB 0.87 1239 11118 3579 5407 2132 55.8 MiB 0.16 0.00 3.81515 -143.501 -3.81515 3.81515 0.79 0.000859504 0.000795055 0.0568451 0.0526859 44 2923 36 6.99608e+06 264882 787024. 2723.27 2.32 0.218028 0.191534 27778 195446 -1 2350 30 2551 3097 377121 94989 4.28572 4.28572 -157.815 -4.28572 0 0 997811. 3452.63 0.31 0.14 0.19 -1 -1 0.31 0.0464392 0.0406532 110 65 64 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.54 vpr 55.25 MiB 0.03 7156 -1 -1 1 0.03 -1 -1 30536 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57096 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 16.8 MiB 1.49 913 9160 3758 4976 426 55.8 MiB 0.12 0.00 3.41124 -117.262 -3.41124 3.41124 0.80 0.000787151 0.000729199 0.0434791 0.0403499 38 3183 28 6.99608e+06 309029 678818. 2348.85 4.23 0.212484 0.186042 26626 170182 -1 2328 19 1859 2511 239150 48117 3.30551 3.30551 -121.983 -3.30551 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.030046 0.0264792 101 62 56 29 58 29 + fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.47 vpr 55.39 MiB 0.04 7320 -1 -1 1 0.04 -1 -1 30816 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57260 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 17.5 MiB 0.79 1399 13316 4006 7788 1522 55.9 MiB 0.22 0.00 4.54237 -164.626 -4.54237 4.54237 0.81 0.000940267 0.000870707 0.0763084 0.0707433 40 3878 28 6.99608e+06 323745 706193. 2443.58 5.22 0.391673 0.341175 26914 176310 -1 3371 24 3368 4022 523552 98678 5.38994 5.38994 -191.987 -5.38994 0 0 926341. 3205.33 0.29 0.16 0.17 -1 -1 0.29 0.0431891 0.0378155 140 127 0 0 128 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.87 vpr 54.85 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30312 -1 -1 11 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 16.5 MiB 1.00 486 10149 3821 5138 1190 54.9 MiB 0.10 0.00 2.81885 -95.7056 -2.81885 2.81885 0.85 0.000469154 0.000427879 0.0359621 0.0330247 46 1678 22 6.99608e+06 161872 828058. 2865.25 2.19 0.14017 0.122363 28066 200906 -1 1233 37 1324 2027 189121 42335 2.78932 2.78932 -103.555 -2.78932 0 0 1.01997e+06 3529.29 0.33 0.11 0.21 -1 -1 0.33 0.0423793 0.0366144 57 4 85 31 0 0 + fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 21.71 vpr 55.77 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 17.2 MiB 2.46 1299 14303 5218 6688 2397 56.0 MiB 0.19 0.00 4.76923 -166.635 -4.76923 4.76923 0.78 0.000860809 0.000796392 0.0712814 0.0659728 44 3653 46 6.99608e+06 279598 787024. 2723.27 2.84 0.258269 0.228135 27778 195446 -1 2739 35 2977 3876 655064 246825 5.1629 5.1629 -184.634 -5.1629 0 0 997811. 3452.63 0.32 0.24 0.20 -1 -1 0.32 0.0501383 0.0440732 118 92 28 28 92 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.82 vpr 55.69 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30168 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57136 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 17.2 MiB 0.85 1244 15216 5143 8703 1370 55.8 MiB 0.20 0.00 4.66407 -173.875 -4.66407 4.66407 0.79 0.000781468 0.000722703 0.0721536 0.0667697 46 3193 24 6.99608e+06 235451 828058. 2865.25 5.20 0.294539 0.257802 28066 200906 -1 2647 18 2412 3040 357696 64281 4.53514 4.53514 -175.329 -4.53514 0 0 1.01997e+06 3529.29 0.34 0.13 0.23 -1 -1 0.34 0.0333311 0.0294987 110 96 0 0 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 7.77 vpr 55.48 MiB 0.05 7080 -1 -1 1 0.05 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 17.2 MiB 0.76 1129 13403 5326 6238 1839 55.9 MiB 0.19 0.00 3.33684 -128.417 -3.33684 3.33684 0.79 0.000832974 0.000770372 0.0652564 0.0604095 44 3178 28 6.99608e+06 279598 787024. 2723.27 4.77 0.323821 0.282992 27778 195446 -1 2462 22 2118 2760 262213 50463 3.34651 3.34651 -134.995 -3.34651 0 0 997811. 3452.63 0.31 0.13 0.19 -1 -1 0.31 0.0416811 0.0365136 106 65 61 32 64 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 8.21 vpr 55.75 MiB 0.04 7292 -1 -1 1 0.04 -1 -1 30804 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57416 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 17.8 MiB 0.76 1500 14261 4373 7976 1912 56.1 MiB 0.22 0.00 4.89654 -177.942 -4.89654 4.89654 0.81 0.000996497 0.000922792 0.0794042 0.0736218 46 3627 21 6.99608e+06 323745 828058. 2865.25 4.86 0.369257 0.322457 28066 200906 -1 3024 21 2816 3249 353150 64538 5.48635 5.48635 -193.499 -5.48635 0 0 1.01997e+06 3529.29 0.31 0.12 0.19 -1 -1 0.31 0.0412871 0.0362971 140 96 64 32 96 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 5.32 vpr 54.75 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30140 -1 -1 13 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 16.4 MiB 2.09 577 8449 3482 4728 239 54.9 MiB 0.08 0.00 2.75275 -95.2487 -2.75275 2.75275 0.79 0.000573906 0.00053038 0.0323638 0.0299362 38 1825 38 6.99608e+06 191304 678818. 2348.85 3.86 0.209753 0.180525 26626 170182 -1 1362 16 802 818 87304 19051 2.52972 2.52972 -90.4789 -2.52972 0 0 902133. 3121.57 0.27 0.05 0.17 -1 -1 0.27 0.0191955 0.0167769 65 56 0 0 53 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.25 vpr 54.89 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30356 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56408 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 16.4 MiB 2.77 870 9516 3877 5353 286 55.1 MiB 0.11 0.00 3.41559 -121.499 -3.41559 3.41559 0.79 0.000670934 0.000620589 0.0423387 0.0392411 34 2254 47 6.99608e+06 206020 618332. 2139.56 2.66 0.205589 0.179222 25762 151098 -1 1955 21 1516 2154 280411 53388 3.56046 3.56046 -133.208 -3.56046 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0275621 0.0240963 72 34 60 30 30 30 + fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 17.89 vpr 55.14 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30092 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56592 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 16.6 MiB 0.27 764 10316 3722 4683 1911 55.3 MiB 0.14 0.00 3.37904 -128.379 -3.37904 3.37904 0.79 0.000677587 0.000632656 0.0487789 0.0450839 44 2942 28 6.99608e+06 176588 787024. 2723.27 3.40 0.200394 0.175419 27778 195446 -1 2049 21 1886 2867 305927 60681 3.57511 3.57511 -140.146 -3.57511 0 0 997811. 3452.63 0.31 0.13 0.20 -1 -1 0.31 0.0321746 0.02822 80 34 64 32 32 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.65 vpr 54.68 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30436 -1 -1 18 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 16.5 MiB 0.68 497 10819 4307 4933 1579 55.1 MiB 0.11 0.00 3.31386 -89.9377 -3.31386 3.31386 0.79 0.000579607 0.000536667 0.0420671 0.0390405 36 2036 37 6.99608e+06 264882 648988. 2245.63 2.08 0.160413 0.139938 26050 158493 -1 1366 17 995 1268 119650 25504 3.57407 3.57407 -107.286 -3.57407 0 0 828058. 2865.25 0.26 0.06 0.16 -1 -1 0.26 0.0203495 0.0178064 68 34 50 25 25 25 + fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 8.51 vpr 55.50 MiB 0.04 7248 -1 -1 1 0.03 -1 -1 30508 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57168 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 17.3 MiB 0.93 1423 14358 4574 7658 2126 55.8 MiB 0.20 0.00 3.77875 -143.667 -3.77875 3.77875 0.76 0.000876671 0.00081152 0.0721069 0.0667846 46 3903 28 6.99608e+06 294314 828058. 2865.25 3.90 0.258589 0.227229 28066 200906 -1 3282 18 2502 3565 466593 78362 4.00512 4.00512 -159.031 -4.00512 0 0 1.01997e+06 3529.29 0.31 0.13 0.19 -1 -1 0.31 0.0327892 0.0289548 125 94 32 32 94 32 + fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 8.75 vpr 55.85 MiB 0.02 7312 -1 -1 1 0.04 -1 -1 30496 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57308 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 17.2 MiB 0.77 1182 13663 4698 6384 2581 56.0 MiB 0.19 0.00 4.16978 -143.827 -4.16978 4.16978 0.79 0.000852399 0.00078839 0.0658721 0.0609505 40 3354 39 6.99608e+06 323745 706193. 2443.58 3.67 0.25995 0.227981 26914 176310 -1 2889 30 3385 4412 593112 133870 4.33865 4.33865 -161.302 -4.33865 0 0 926341. 3205.33 0.28 0.18 0.17 -1 -1 0.28 0.0476169 0.0416512 121 94 29 29 93 31 + fixed_k6_frac_N8_22nm.xml mult_001.v common 10.40 vpr 55.09 MiB 0.05 6700 -1 -1 14 0.26 -1 -1 32900 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56436 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 16.5 MiB 1.87 1265 9263 2276 5364 1623 55.1 MiB 0.14 0.00 8.4853 -170.751 -8.4853 8.4853 0.78 0.00101066 0.000925991 0.0567822 0.0524128 46 3122 18 6.79088e+06 255968 828058. 2865.25 4.86 0.310779 0.271938 27406 200422 -1 2530 16 1190 3157 226839 44676 7.3039 7.3039 -158.523 -7.3039 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0352995 0.0314013 134 186 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_002.v common 8.76 vpr 54.84 MiB 0.05 6800 -1 -1 14 0.28 -1 -1 32764 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56456 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 16.5 MiB 1.51 1228 8270 2008 5297 965 55.1 MiB 0.12 0.00 7.98833 -161.421 -7.98833 7.98833 0.78 0.00098976 0.000916098 0.0498986 0.0462011 38 3404 29 6.79088e+06 269440 678818. 2348.85 3.18 0.270207 0.236748 25966 169698 -1 2588 17 1208 3291 212347 43535 6.92108 6.92108 -150.768 -6.92108 0 0 902133. 3121.57 0.31 0.09 0.17 -1 -1 0.31 0.0373002 0.0331123 132 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_003.v common 10.67 vpr 54.98 MiB 0.04 6796 -1 -1 11 0.25 -1 -1 32736 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56388 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 16.5 MiB 1.63 1125 11613 3520 5862 2231 55.1 MiB 0.17 0.00 7.03202 -141.666 -7.03202 7.03202 0.80 0.000976323 0.000901552 0.0664473 0.0614336 38 3680 41 6.79088e+06 269440 678818. 2348.85 4.52 0.291873 0.25696 25966 169698 -1 2585 16 1212 3568 231943 48515 6.12643 6.12643 -138.147 -6.12643 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0355312 0.031624 138 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_004.v common 9.05 vpr 54.94 MiB 0.04 6740 -1 -1 12 0.35 -1 -1 32740 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56528 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 16.6 MiB 1.33 1021 7643 1879 4700 1064 55.2 MiB 0.11 0.00 7.24011 -138.658 -7.24011 7.24011 0.78 0.000990304 0.000916054 0.0458612 0.0424407 30 3085 43 6.79088e+06 296384 556674. 1926.21 7.36 0.415932 0.36321 24526 138013 -1 2450 16 1319 3817 225640 49413 6.41977 6.41977 -136.967 -6.41977 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0350866 0.0311846 136 184 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_005.v common 7.69 vpr 55.19 MiB 0.05 6612 -1 -1 13 0.28 -1 -1 32928 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 16.9 MiB 2.01 1463 12568 3276 7023 2269 55.8 MiB 0.19 0.00 8.02445 -169.708 -8.02445 8.02445 0.83 0.00112934 0.00104301 0.0796573 0.0737214 38 4106 49 6.79088e+06 323328 678818. 2348.85 25.25 0.591218 0.516832 25966 169698 -1 3079 17 1569 4128 270153 55137 7.21431 7.21431 -164.027 -7.21431 0 0 902133. 3121.57 0.25 0.06 0.11 -1 -1 0.25 0.0235054 0.0213249 160 223 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_006.v common 9.34 vpr 55.23 MiB 0.05 6756 -1 -1 12 0.27 -1 -1 32700 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56620 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 16.8 MiB 2.16 1344 4768 918 3685 165 55.3 MiB 0.10 0.00 7.61832 -163.245 -7.61832 7.61832 0.79 0.00105372 0.000973662 0.0322027 0.0298965 46 3284 15 6.79088e+06 323328 828058. 2865.25 4.73 0.289105 0.251496 27406 200422 -1 2938 17 1308 3933 259145 51530 6.72076 6.72076 -156.363 -6.72076 0 0 1.01997e+06 3529.29 0.37 0.11 0.19 -1 -1 0.37 0.0408673 0.0365541 150 205 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_007.v common 7.75 vpr 54.67 MiB 0.02 6588 -1 -1 12 0.22 -1 -1 32328 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 16.1 MiB 1.33 1000 7177 1656 4753 768 54.8 MiB 0.09 0.00 7.28149 -137.47 -7.28149 7.28149 0.78 0.000770612 0.000713191 0.0357667 0.0331401 38 2671 39 6.79088e+06 269440 678818. 2348.85 4.40 0.313067 0.271441 25966 169698 -1 2285 15 988 2588 169972 35341 6.33023 6.33023 -131.211 -6.33023 0 0 902133. 3121.57 0.29 0.07 0.16 -1 -1 0.29 0.02648 0.0236199 101 131 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_008.v common 10.59 vpr 54.74 MiB 0.05 6692 -1 -1 11 0.18 -1 -1 32652 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 16.3 MiB 1.23 1129 9531 2421 6090 1020 55.1 MiB 0.13 0.00 6.82017 -140.384 -6.82017 6.82017 0.82 0.000727571 0.000652536 0.0539029 0.0496689 36 3346 46 6.79088e+06 242496 648988. 2245.63 3.06 0.245551 0.215339 25390 158009 -1 2698 37 1260 3820 745821 363415 5.90727 5.90727 -136.224 -5.90727 0 0 828058. 2865.25 0.26 0.26 0.16 -1 -1 0.26 0.0627135 0.0547511 118 173 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_009.v common 9.03 vpr 54.61 MiB 0.05 6560 -1 -1 12 0.17 -1 -1 32568 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 16.1 MiB 2.29 1115 11631 3187 7135 1309 54.8 MiB 0.13 0.00 6.73244 -139.285 -6.73244 6.73244 0.86 0.000604429 0.000549592 0.0440218 0.040158 36 3063 26 6.79088e+06 242496 648988. 2245.63 3.58 0.222698 0.19455 25390 158009 -1 2517 16 1153 2536 182283 38952 5.61753 5.61753 -132.175 -5.61753 0 0 828058. 2865.25 0.25 0.08 0.10 -1 -1 0.25 0.0294369 0.0261768 111 143 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_010.v common 9.06 vpr 54.70 MiB 0.04 6508 -1 -1 13 0.19 -1 -1 32948 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 16.3 MiB 1.39 1011 5412 1090 4064 258 54.8 MiB 0.09 0.00 7.30367 -163.797 -7.30367 7.30367 0.78 0.000898868 0.000830839 0.0321281 0.0297959 38 2820 18 6.79088e+06 215552 678818. 2348.85 4.28 0.288817 0.250473 25966 169698 -1 2266 14 1013 2548 157125 33369 6.24757 6.24757 -156.753 -6.24757 0 0 902133. 3121.57 0.28 0.07 0.16 -1 -1 0.28 0.0285796 0.0254719 107 159 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_011.v common 6.08 vpr 54.56 MiB 0.05 6584 -1 -1 12 0.17 -1 -1 32696 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 16.1 MiB 1.29 838 6386 1352 4871 163 54.8 MiB 0.08 0.00 7.31171 -145.298 -7.31171 7.31171 0.79 0.000766431 0.000707559 0.0323449 0.0298941 36 2537 49 6.79088e+06 215552 648988. 2245.63 2.32 0.184214 0.16071 25390 158009 -1 1970 16 866 2221 141030 31159 5.99697 5.99697 -136.566 -5.99697 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.0268861 0.0238429 93 129 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_012.v common 9.71 vpr 54.63 MiB 0.04 6576 -1 -1 12 0.14 -1 -1 32728 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 16.1 MiB 1.78 1055 4560 1014 3240 306 54.7 MiB 0.07 0.00 6.46989 -155.558 -6.46989 6.46989 0.78 0.000785001 0.000724197 0.0246534 0.022786 44 2615 18 6.79088e+06 188608 787024. 2723.27 4.39 0.263169 0.227942 27118 194962 -1 2143 16 904 2301 156029 32465 5.57489 5.57489 -143.498 -5.57489 0 0 997811. 3452.63 0.31 0.07 0.19 -1 -1 0.31 0.0277806 0.0246856 94 133 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_013.v common 7.31 vpr 55.15 MiB 0.04 6688 -1 -1 13 0.26 -1 -1 32840 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 16.7 MiB 1.45 1239 11431 3102 6258 2071 55.5 MiB 0.17 0.00 7.91359 -165.523 -7.91359 7.91359 0.80 0.00107476 0.000991775 0.070926 0.0655565 48 2752 19 6.79088e+06 282912 865456. 2994.66 4.41 0.372064 0.325894 27694 206865 -1 2517 15 1126 3261 235384 47905 6.72081 6.72081 -152.612 -6.72081 0 0 1.05005e+06 3633.38 0.32 0.09 0.20 -1 -1 0.32 0.0376476 0.0336468 148 212 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_014.v common 7.67 vpr 55.23 MiB 0.05 6872 -1 -1 14 0.31 -1 -1 33168 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 16.9 MiB 1.72 1366 11245 3016 6173 2056 55.6 MiB 0.17 0.00 9.12295 -182.881 -9.12295 9.12295 0.79 0.0010781 0.000995784 0.069716 0.0644798 40 3541 29 6.79088e+06 282912 706193. 2443.58 2.80 0.306072 0.268905 26254 175826 -1 3097 30 1471 4012 507506 187303 7.76595 7.76595 -174.076 -7.76595 0 0 926341. 3205.33 0.28 0.19 0.17 -1 -1 0.28 0.0613276 0.0538837 149 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_015.v common 9.56 vpr 54.60 MiB 0.04 6676 -1 -1 11 0.17 -1 -1 32412 -1 -1 20 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 16.3 MiB 1.34 857 12681 3929 6469 2283 54.7 MiB 0.15 0.00 6.92892 -133.02 -6.92892 6.92892 0.78 0.000822356 0.000758517 0.0632934 0.0585321 46 2148 18 6.79088e+06 269440 828058. 2865.25 4.39 0.283551 0.248196 27406 200422 -1 1803 15 1028 2480 155521 33104 5.98994 5.98994 -123.39 -5.98994 0 0 1.01997e+06 3529.29 0.31 0.07 0.19 -1 -1 0.31 0.027782 0.0247236 111 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_016.v common 7.88 vpr 55.48 MiB 0.02 6700 -1 -1 12 0.30 -1 -1 32820 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56868 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 16.8 MiB 2.44 1420 13992 4103 7703 2186 55.5 MiB 0.22 0.00 7.6046 -160.271 -7.6046 7.6046 0.80 0.00110568 0.00102333 0.0891885 0.0824405 48 3640 29 6.79088e+06 269440 865456. 2994.66 5.52 0.432721 0.379613 27694 206865 -1 3371 19 1538 4880 378934 74036 6.46241 6.46241 -153.75 -6.46241 0 0 1.05005e+06 3633.38 0.33 0.13 0.20 -1 -1 0.33 0.0446651 0.0396733 146 212 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_017.v common 9.73 vpr 55.02 MiB 0.05 6720 -1 -1 13 0.26 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.43 1236 10687 3174 5565 1948 55.6 MiB 0.16 0.00 8.28661 -168.45 -8.28661 8.28661 0.78 0.00109476 0.00101158 0.0672945 0.0622463 36 3961 32 6.79088e+06 282912 648988. 2245.63 17.27 0.498338 0.435387 25390 158009 -1 2894 16 1353 3870 256704 55383 7.17085 7.17085 -165.969 -7.17085 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0396534 0.0353485 144 217 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_018.v common 7.59 vpr 54.59 MiB 0.04 6608 -1 -1 12 0.15 -1 -1 32560 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55920 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 16.0 MiB 1.85 945 7992 1779 4650 1563 54.6 MiB 0.10 0.00 6.70943 -154.61 -6.70943 6.70943 0.79 0.000823763 0.000760171 0.0416411 0.0384844 36 2616 20 6.79088e+06 215552 648988. 2245.63 2.44 0.206174 0.181319 25390 158009 -1 2179 13 893 2413 159661 34187 6.24403 6.24403 -153.872 -6.24403 0 0 828058. 2865.25 0.30 0.07 0.13 -1 -1 0.30 0.0263526 0.0236737 104 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_019.v common 10.17 vpr 54.32 MiB 0.04 6380 -1 -1 10 0.10 -1 -1 32096 -1 -1 12 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55552 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 15.6 MiB 2.36 878 7049 1926 4350 773 54.2 MiB 0.08 0.00 5.18321 -124.627 -5.18321 5.18321 0.79 0.000619226 0.000572048 0.0305358 0.0282352 34 2331 47 6.79088e+06 161664 618332. 2139.56 7.75 0.262647 0.226664 25102 150614 -1 1892 17 714 1691 130311 27331 4.71101 4.71101 -125.559 -4.71101 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0223139 0.0196274 67 88 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_020.v common 7.99 vpr 54.67 MiB 0.05 6564 -1 -1 13 0.16 -1 -1 32708 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55888 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 15.9 MiB 1.77 974 6332 1469 4570 293 54.6 MiB 0.09 0.00 7.59608 -163.359 -7.59608 7.59608 0.78 0.00080403 0.00074146 0.034116 0.0315046 38 2406 16 6.79088e+06 215552 678818. 2348.85 2.23 0.189219 0.165273 25966 169698 -1 2040 14 916 2242 136287 29099 6.53742 6.53742 -149.679 -6.53742 0 0 902133. 3121.57 0.28 0.07 0.16 -1 -1 0.28 0.0262125 0.0233634 99 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_021.v common 10.49 vpr 55.10 MiB 0.03 6708 -1 -1 13 0.30 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56708 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 16.9 MiB 1.15 1254 12371 3408 7445 1518 55.4 MiB 0.18 0.00 7.46133 -157.73 -7.46133 7.46133 0.78 0.00106305 0.000981716 0.0745556 0.0689466 44 3071 18 6.79088e+06 296384 787024. 2723.27 4.33 0.366413 0.321001 27118 194962 -1 2625 17 1230 3436 247174 49122 6.74533 6.74533 -151.264 -6.74533 0 0 997811. 3452.63 0.32 0.10 0.19 -1 -1 0.32 0.0398227 0.0354943 143 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_022.v common 10.94 vpr 55.19 MiB 0.04 6824 -1 -1 13 0.29 -1 -1 33256 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56660 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 16.9 MiB 1.81 1425 10883 2960 6054 1869 55.3 MiB 0.15 0.00 8.13867 -171.504 -8.13867 8.13867 0.91 0.000833603 0.000764295 0.0555669 0.0510879 46 3164 18 6.79088e+06 255968 828058. 2865.25 5.09 0.346325 0.302889 27406 200422 -1 2703 17 1225 3470 231449 46219 7.06211 7.06211 -159.653 -7.06211 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0394764 0.0351261 141 205 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_023.v common 5.81 vpr 54.25 MiB 0.04 6568 -1 -1 9 0.10 -1 -1 32028 -1 -1 16 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55256 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 15.4 MiB 1.49 588 10149 2859 5591 1699 54.0 MiB 0.09 0.00 4.97273 -93.6629 -4.97273 4.97273 0.78 0.000540244 0.000499304 0.0374312 0.0346479 30 1755 23 6.79088e+06 215552 556674. 1926.21 1.03 0.101705 0.089745 24526 138013 -1 1376 17 628 1476 88712 19831 4.30345 4.30345 -92.6615 -4.30345 0 0 706193. 2443.58 0.25 0.05 0.14 -1 -1 0.25 0.0196638 0.0173792 64 73 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_024.v common 8.13 vpr 55.05 MiB 0.04 6676 -1 -1 13 0.30 -1 -1 32804 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 16.8 MiB 2.06 1289 7268 1575 5261 432 55.4 MiB 0.12 0.00 8.3813 -168.316 -8.3813 8.3813 0.77 0.00106318 0.000983376 0.0452071 0.0418459 38 3580 34 6.79088e+06 296384 678818. 2348.85 4.54 0.294533 0.259057 25966 169698 -1 2849 28 1382 3915 372113 120257 7.42571 7.42571 -158.613 -7.42571 0 0 902133. 3121.57 0.27 0.15 0.17 -1 -1 0.27 0.0566971 0.0498773 137 210 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_025.v common 6.62 vpr 54.07 MiB 0.04 6448 -1 -1 8 0.09 -1 -1 31120 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55432 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 15.6 MiB 2.38 737 11631 4246 5219 2166 54.1 MiB 0.10 0.00 4.77835 -104.906 -4.77835 4.77835 0.80 0.000554552 0.000511779 0.0391532 0.0361551 30 1919 23 6.79088e+06 229024 556674. 1926.21 1.14 0.108332 0.0954899 24526 138013 -1 1543 14 639 1400 84887 18827 4.0956 4.0956 -103.294 -4.0956 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0173877 0.0153449 64 61 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_026.v common 11.75 vpr 54.94 MiB 0.05 6648 -1 -1 15 0.23 -1 -1 33068 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56236 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 16.4 MiB 1.81 1155 10581 3115 6097 1369 54.9 MiB 0.15 0.00 8.86251 -178.17 -8.86251 8.86251 0.84 0.000929311 0.000859477 0.060236 0.0557303 44 2823 15 6.79088e+06 229024 787024. 2723.27 2.14 0.191209 0.169008 27118 194962 -1 2387 15 1054 2850 193895 39529 7.79833 7.79833 -165.154 -7.79833 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.031238 0.0278229 118 159 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_027.v common 12.25 vpr 54.75 MiB 0.05 6660 -1 -1 12 0.24 -1 -1 32880 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 16.8 MiB 1.60 1241 4433 817 3477 139 55.5 MiB 0.08 0.00 7.21583 -155.808 -7.21583 7.21583 0.78 0.001077 0.00099501 0.030159 0.0279877 38 3494 26 6.79088e+06 296384 678818. 2348.85 4.72 0.313382 0.27197 25966 169698 -1 2706 17 1350 4089 264321 55092 6.08302 6.08302 -143.331 -6.08302 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.040343 0.0358835 145 215 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_028.v common 9.31 vpr 55.00 MiB 0.04 6748 -1 -1 13 0.27 -1 -1 32688 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56304 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 16.4 MiB 1.31 1284 4659 748 3690 221 55.0 MiB 0.08 0.00 8.13835 -165.274 -8.13835 8.13835 0.79 0.00101635 0.00094013 0.0311361 0.0288508 44 2964 20 6.79088e+06 269440 787024. 2723.27 4.43 0.310477 0.269851 27118 194962 -1 2484 15 1163 3248 214002 43911 6.88526 6.88526 -151.223 -6.88526 0 0 997811. 3452.63 0.31 0.09 0.18 -1 -1 0.31 0.0343421 0.0306319 136 195 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_029.v common 7.47 vpr 54.63 MiB 0.04 6584 -1 -1 12 0.16 -1 -1 32296 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56128 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 16.4 MiB 1.97 1045 5303 1002 3952 349 54.8 MiB 0.08 0.00 6.60115 -147.873 -6.60115 6.60115 0.80 0.000835693 0.000771345 0.0278471 0.0257632 36 2801 18 6.79088e+06 255968 648988. 2245.63 1.98 0.144333 0.127516 25390 158009 -1 2423 27 1018 2690 333742 130702 5.90389 5.90389 -142.494 -5.90389 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.043232 0.0379822 106 145 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_030.v common 7.60 vpr 54.55 MiB 0.04 6708 -1 -1 11 0.15 -1 -1 32684 -1 -1 20 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 16.0 MiB 1.87 954 11652 3379 7115 1158 54.8 MiB 0.13 0.00 6.23714 -130.615 -6.23714 6.23714 0.78 0.000752594 0.00069463 0.0526338 0.0486826 38 2569 30 6.79088e+06 269440 678818. 2348.85 2.89 0.212724 0.186268 25966 169698 -1 2105 29 963 2521 392849 183299 5.44954 5.44954 -132.131 -5.44954 0 0 902133. 3121.57 0.27 0.15 0.16 -1 -1 0.27 0.0414613 0.0363354 97 125 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_031.v common 7.13 vpr 54.49 MiB 0.04 6496 -1 -1 11 0.16 -1 -1 32392 -1 -1 19 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 16.1 MiB 1.06 1013 7346 1810 4929 607 54.7 MiB 0.09 0.00 6.76313 -133.919 -6.76313 6.76313 0.79 0.000797768 0.000737769 0.0378016 0.0349736 34 3046 38 6.79088e+06 255968 618332. 2139.56 3.31 0.216457 0.189186 25102 150614 -1 2486 27 1330 3631 331393 103640 5.93949 5.93949 -130.293 -5.93949 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.041385 0.0362789 107 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_032.v common 10.14 vpr 54.88 MiB 0.04 6612 -1 -1 12 0.19 -1 -1 32536 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 16.4 MiB 1.89 1274 9443 2812 5690 941 55.0 MiB 0.13 0.00 6.88424 -161.28 -6.88424 6.88424 0.78 0.000943304 0.000871811 0.0532294 0.0492845 38 3319 21 6.79088e+06 255968 678818. 2348.85 2.66 0.240265 0.210417 25966 169698 -1 2704 18 1310 3289 208989 43326 6.07609 6.07609 -158.229 -6.07609 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0360824 0.0319353 119 179 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_033.v common 9.53 vpr 54.61 MiB 0.04 6600 -1 -1 11 0.17 -1 -1 32480 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56084 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 16.4 MiB 1.50 908 10056 3226 4794 2036 54.8 MiB 0.11 0.00 6.39517 -140.882 -6.39517 6.39517 0.80 0.000572835 0.000519463 0.0429405 0.0393665 38 2755 22 6.79088e+06 229024 678818. 2348.85 4.29 0.266098 0.231693 25966 169698 -1 2040 15 1034 2877 174412 37944 5.77505 5.77505 -137.161 -5.77505 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0286814 0.0255105 107 147 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_034.v common 8.03 vpr 54.55 MiB 0.04 6700 -1 -1 10 0.14 -1 -1 32644 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 16.0 MiB 1.37 870 8022 2297 4713 1012 54.6 MiB 0.10 0.00 6.19022 -129.37 -6.19022 6.19022 0.78 0.000793138 0.000731777 0.0405279 0.0374504 36 2237 37 6.79088e+06 242496 648988. 2245.63 4.11 0.271428 0.235686 25390 158009 -1 1994 14 815 2200 139304 30627 5.49212 5.49212 -124.76 -5.49212 0 0 828058. 2865.25 0.26 0.06 0.15 -1 -1 0.26 0.0253925 0.0225976 103 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_035.v common 20.63 vpr 55.23 MiB 0.05 6856 -1 -1 13 0.32 -1 -1 33292 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 16.9 MiB 1.52 1352 10103 2504 6636 963 55.4 MiB 0.17 0.00 7.85531 -169.709 -7.85531 7.85531 0.78 0.00116013 0.00107048 0.0669479 0.0618591 44 3490 24 6.79088e+06 296384 787024. 2723.27 4.57 0.390657 0.341455 27118 194962 -1 2933 18 1339 4434 291900 58564 6.88531 6.88531 -156.489 -6.88531 0 0 997811. 3452.63 0.31 0.11 0.19 -1 -1 0.31 0.0451541 0.0401684 162 239 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_036.v common 26.40 vpr 55.16 MiB 0.04 6756 -1 -1 13 0.31 -1 -1 33100 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 16.9 MiB 1.70 1274 13849 4315 6877 2657 55.6 MiB 0.22 0.00 7.85526 -169.716 -7.85526 7.85526 0.73 0.00108263 0.00100029 0.0910465 0.0837981 36 4502 45 6.79088e+06 282912 648988. 2245.63 8.35 0.36026 0.316601 25390 158009 -1 3213 17 1761 5055 363084 75955 6.78797 6.78797 -164.341 -6.78797 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.0409766 0.036387 152 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_037.v common 8.02 vpr 54.62 MiB 0.04 6660 -1 -1 12 0.15 -1 -1 32856 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56120 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 16.1 MiB 1.24 851 11631 4796 6628 207 54.8 MiB 0.14 0.00 7.11438 -152.359 -7.11438 7.11438 0.86 0.000813346 0.000749831 0.0575954 0.0531529 36 3188 46 6.79088e+06 242496 648988. 2245.63 8.16 0.259984 0.227994 25390 158009 -1 2215 16 1048 2788 204960 43952 6.29098 6.29098 -145.949 -6.29098 0 0 828058. 2865.25 0.26 0.08 0.10 -1 -1 0.26 0.0285897 0.0253736 102 143 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_038.v common 8.99 vpr 55.25 MiB 0.05 6736 -1 -1 12 0.25 -1 -1 33172 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 16.9 MiB 1.22 1154 12749 3915 6368 2466 55.6 MiB 0.19 0.00 7.84323 -159.621 -7.84323 7.84323 0.78 0.00108167 0.000998845 0.0773372 0.0714832 40 3270 35 6.79088e+06 309856 706193. 2443.58 2.51 0.318147 0.279415 26254 175826 -1 2980 64 2413 8958 1170832 550314 6.96022 6.96022 -155.612 -6.96022 0 0 926341. 3205.33 0.28 0.48 0.17 -1 -1 0.28 0.119618 0.104081 148 219 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_039.v common 9.59 vpr 55.07 MiB 0.02 6764 -1 -1 14 0.33 -1 -1 33068 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 16.8 MiB 1.09 1375 11247 2864 6672 1711 55.2 MiB 0.16 0.00 8.18012 -172.817 -8.18012 8.18012 0.78 0.00104193 0.000963996 0.0683521 0.0632878 46 3179 34 6.79088e+06 282912 828058. 2865.25 4.48 0.429307 0.374266 27406 200422 -1 2685 14 1188 3438 218507 44372 7.30047 7.30047 -161.796 -7.30047 0 0 1.01997e+06 3529.29 0.31 0.09 0.19 -1 -1 0.31 0.0339317 0.0303664 146 193 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_040.v common 8.06 vpr 55.04 MiB 0.05 6864 -1 -1 13 0.25 -1 -1 32876 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56516 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 16.7 MiB 2.15 1310 10149 2655 5632 1862 55.2 MiB 0.14 0.00 7.78561 -164.423 -7.78561 7.78561 0.78 0.000962178 0.000889359 0.057391 0.0531475 38 3481 47 6.79088e+06 282912 678818. 2348.85 14.99 0.475906 0.413212 25966 169698 -1 2783 22 1469 3916 246840 51205 7.28573 7.28573 -163.177 -7.28573 0 0 902133. 3121.57 0.27 0.13 0.17 -1 -1 0.27 0.0521397 0.0467825 126 180 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_041.v common 8.28 vpr 54.91 MiB 0.03 6780 -1 -1 12 0.24 -1 -1 32908 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 16.6 MiB 0.90 1267 10859 2857 6722 1280 55.3 MiB 0.15 0.00 7.65156 -158.395 -7.65156 7.65156 0.78 0.00100131 0.00092528 0.0617 0.0570259 40 3056 37 6.79088e+06 309856 706193. 2443.58 2.74 0.279392 0.24646 26254 175826 -1 2912 15 1223 3639 274466 56476 6.59546 6.59546 -151.828 -6.59546 0 0 926341. 3205.33 0.29 0.11 0.17 -1 -1 0.29 0.0371794 0.0333846 135 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_042.v common 9.34 vpr 54.93 MiB 0.02 6868 -1 -1 12 0.20 -1 -1 32728 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56336 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 16.5 MiB 1.08 1093 11106 3659 5731 1716 55.0 MiB 0.15 0.00 7.11863 -144.901 -7.11863 7.11863 0.78 0.000915374 0.000846525 0.061927 0.0572819 36 3155 46 6.79088e+06 229024 648988. 2245.63 4.59 0.284574 0.24952 25390 158009 -1 2478 18 1153 2944 213889 45889 6.48693 6.48693 -146.091 -6.48693 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0352709 0.0312052 113 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_043.v common 8.35 vpr 55.34 MiB 0.05 6960 -1 -1 14 0.43 -1 -1 32660 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1406 13355 3498 8147 1710 55.8 MiB 0.20 0.00 8.18038 -175.8 -8.18038 8.18038 0.78 0.00118734 0.00109569 0.0852463 0.0787945 48 3394 30 6.79088e+06 336800 865456. 2994.66 5.00 0.498263 0.436297 27694 206865 -1 3185 17 1457 4522 331889 66497 7.37233 7.37233 -166.816 -7.37233 0 0 1.05005e+06 3633.38 0.33 0.12 0.20 -1 -1 0.33 0.0444661 0.0396667 169 245 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_044.v common 7.55 vpr 54.73 MiB 0.04 6476 -1 -1 11 0.19 -1 -1 32416 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 16.3 MiB 1.64 1088 9006 2212 5478 1316 54.8 MiB 0.12 0.00 6.58747 -141.672 -6.58747 6.58747 0.78 0.00089815 0.000829384 0.0492808 0.0455933 38 3071 35 6.79088e+06 242496 678818. 2348.85 4.25 0.315107 0.274018 25966 169698 -1 2487 16 1148 3022 201368 41429 5.78197 5.78197 -135.83 -5.78197 0 0 902133. 3121.57 0.29 0.09 0.16 -1 -1 0.29 0.0326291 0.0290316 113 155 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_045.v common 9.48 vpr 55.09 MiB 0.05 6832 -1 -1 13 0.27 -1 -1 32768 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 16.5 MiB 1.50 1133 5422 1123 3954 345 55.1 MiB 0.09 0.00 7.76692 -152.212 -7.76692 7.76692 0.79 0.000983038 0.00090857 0.0338638 0.0313642 44 2770 26 6.79088e+06 255968 787024. 2723.27 4.03 0.317691 0.275765 27118 194962 -1 2298 15 853 2931 200982 39328 6.59546 6.59546 -142.598 -6.59546 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0337916 0.0301205 132 177 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_046.v common 8.08 vpr 55.15 MiB 0.05 6692 -1 -1 12 0.26 -1 -1 32728 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56796 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 16.7 MiB 1.43 1437 6967 1505 4666 796 55.5 MiB 0.12 0.00 7.30746 -159.645 -7.30746 7.30746 0.77 0.00111429 0.00102881 0.0468621 0.0433749 40 3686 38 6.79088e+06 282912 706193. 2443.58 5.51 0.446566 0.387999 26254 175826 -1 3189 17 1414 4200 334125 66331 6.50582 6.50582 -151.873 -6.50582 0 0 926341. 3205.33 0.28 0.12 0.17 -1 -1 0.28 0.0416957 0.0371465 153 224 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_047.v common 9.23 vpr 54.95 MiB 0.05 6640 -1 -1 13 0.24 -1 -1 32888 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 16.6 MiB 1.23 1157 7823 1835 4914 1074 55.3 MiB 0.12 0.00 7.47708 -158.746 -7.47708 7.47708 0.79 0.000985212 0.000910312 0.0466377 0.0431743 38 3107 27 6.79088e+06 255968 678818. 2348.85 4.64 0.336713 0.294133 25966 169698 -1 2483 16 1181 3418 209760 44377 6.58427 6.58427 -148.959 -6.58427 0 0 902133. 3121.57 0.28 0.09 0.16 -1 -1 0.28 0.0351602 0.0312895 131 179 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_048.v common 11.49 vpr 55.05 MiB 0.05 6832 -1 -1 13 0.22 -1 -1 32764 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 16.5 MiB 1.84 1097 11106 3753 5771 1582 55.3 MiB 0.15 0.00 7.69072 -162.222 -7.69072 7.69072 0.79 0.00095143 0.000878715 0.0646519 0.0597563 38 2792 27 6.79088e+06 229024 678818. 2348.85 4.59 0.38519 0.335759 25966 169698 -1 2183 16 1063 2965 165926 36303 6.50592 6.50592 -150.237 -6.50592 0 0 902133. 3121.57 0.28 0.08 0.17 -1 -1 0.28 0.0343979 0.0306117 118 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_049.v common 10.68 vpr 55.13 MiB 0.05 6792 -1 -1 12 0.26 -1 -1 32736 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 16.8 MiB 1.82 1359 8151 1869 5680 602 55.5 MiB 0.13 0.00 7.62073 -165.231 -7.62073 7.62073 0.78 0.0010651 0.000983696 0.0495924 0.0458889 44 3268 18 6.79088e+06 309856 787024. 2723.27 4.69 0.355631 0.310944 27118 194962 -1 2708 34 1126 3852 693243 368597 7.12467 7.12467 -161.248 -7.12467 0 0 997811. 3452.63 0.33 0.27 0.21 -1 -1 0.33 0.0682817 0.0599504 150 204 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_050.v common 9.40 vpr 55.23 MiB 0.05 6776 -1 -1 13 0.32 -1 -1 32752 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56484 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 16.5 MiB 2.01 1315 9051 2036 5908 1107 55.2 MiB 0.14 0.00 7.55776 -165.084 -7.55776 7.55776 0.78 0.00107031 0.000989368 0.0577316 0.0534297 40 3083 20 6.79088e+06 269440 706193. 2443.58 2.42 0.268405 0.235409 26254 175826 -1 3051 16 1443 4020 305386 63250 6.95247 6.95247 -160.51 -6.95247 0 0 926341. 3205.33 0.28 0.11 0.17 -1 -1 0.28 0.0387981 0.0345767 143 205 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_051.v common 7.45 vpr 54.93 MiB 0.05 6872 -1 -1 14 0.26 -1 -1 33072 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 16.6 MiB 2.00 1139 8270 1889 5806 575 55.1 MiB 0.12 0.00 8.36252 -172.285 -8.36252 8.36252 0.82 0.000943685 0.000872577 0.0460399 0.0426147 42 3528 44 6.79088e+06 242496 744469. 2576.02 2.35 0.209999 0.184393 26542 182613 -1 2722 15 1147 3233 231368 48389 7.46496 7.46496 -165.839 -7.46496 0 0 949917. 3286.91 0.31 0.10 0.18 -1 -1 0.31 0.0352527 0.0316737 123 165 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_052.v common 13.15 vpr 55.17 MiB 0.05 6840 -1 -1 13 0.27 -1 -1 32796 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 16.5 MiB 2.96 1159 8868 1881 6136 851 55.2 MiB 0.14 0.00 8.02321 -165.348 -8.02321 8.02321 0.78 0.00101983 0.00094307 0.0540934 0.0500571 34 4215 50 6.79088e+06 269440 618332. 2139.56 3.22 0.277832 0.243422 25102 150614 -1 3004 21 1633 4521 350617 72580 6.88182 6.88182 -161.562 -6.88182 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0403485 0.0358935 134 199 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_053.v common 9.50 vpr 55.14 MiB 0.05 6908 -1 -1 13 0.30 -1 -1 32900 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 16.7 MiB 1.17 1323 8591 2185 5991 415 55.4 MiB 0.14 0.00 8.19403 -174.315 -8.19403 8.19403 0.78 0.00109655 0.0010139 0.0544472 0.0503277 38 3671 47 6.79088e+06 309856 678818. 2348.85 14.25 0.525681 0.457069 25966 169698 -1 2911 16 1429 4237 279860 56946 7.17168 7.17168 -164.519 -7.17168 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0389532 0.0347037 154 220 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_054.v common 9.90 vpr 55.10 MiB 0.05 6720 -1 -1 12 0.31 -1 -1 32832 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 16.8 MiB 1.23 1325 11983 3288 6841 1854 55.6 MiB 0.18 0.00 7.62163 -166.383 -7.62163 7.62163 0.78 0.00111543 0.00103111 0.0736683 0.0680688 46 3445 33 6.79088e+06 323328 828058. 2865.25 5.25 0.387835 0.340593 27406 200422 -1 2655 18 1350 3864 252132 51724 6.45553 6.45553 -153.664 -6.45553 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.0429749 0.0381854 157 230 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_055.v common 7.02 vpr 54.48 MiB 0.04 6584 -1 -1 11 0.13 -1 -1 32324 -1 -1 13 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55916 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 16.1 MiB 1.31 956 7249 1855 4884 510 54.6 MiB 0.09 0.00 6.10061 -138.097 -6.10061 6.10061 0.78 0.000755211 0.000697057 0.0365468 0.0337655 46 2238 34 6.79088e+06 175136 828058. 2865.25 4.72 0.230377 0.200686 27406 200422 -1 1965 30 873 2227 360189 186259 5.5245 5.5245 -131.587 -5.5245 0 0 1.01997e+06 3529.29 0.31 0.15 0.19 -1 -1 0.31 0.0427418 0.0374489 90 122 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_056.v common 9.47 vpr 54.89 MiB 0.05 6612 -1 -1 13 0.20 -1 -1 32732 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56440 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 16.3 MiB 2.45 1073 11631 3861 5991 1779 55.1 MiB 0.15 0.00 7.81611 -170.556 -7.81611 7.81611 0.79 0.000880015 0.000812647 0.0625727 0.0578294 38 2856 21 6.79088e+06 229024 678818. 2348.85 2.82 0.245685 0.215805 25966 169698 -1 2319 14 1038 2655 165089 34827 6.70962 6.70962 -157.226 -6.70962 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0287627 0.0256554 113 151 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_057.v common 9.17 vpr 55.48 MiB 0.05 6868 -1 -1 14 0.43 -1 -1 32864 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57256 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 17.0 MiB 1.01 1399 15493 4561 8338 2594 55.9 MiB 0.25 0.00 8.67312 -179.019 -8.67312 8.67312 0.79 0.00127394 0.00117309 0.107368 0.0992013 44 4436 24 6.79088e+06 323328 787024. 2723.27 6.22 0.543522 0.480172 27118 194962 -1 3311 16 1770 5416 372153 76605 7.4684 7.4684 -168.384 -7.4684 0 0 997811. 3452.63 0.31 0.13 0.18 -1 -1 0.31 0.0465601 0.0418453 180 267 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_058.v common 9.06 vpr 55.21 MiB 0.05 6800 -1 -1 13 0.32 -1 -1 32852 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 16.8 MiB 2.22 1244 13849 3731 7364 2754 55.6 MiB 0.20 0.00 8.43396 -178.911 -8.43396 8.43396 0.79 0.00112497 0.00103805 0.08914 0.0823652 36 4571 48 6.79088e+06 282912 648988. 2245.63 16.49 0.532953 0.465565 25390 158009 -1 3087 18 1511 4155 302116 66225 7.34737 7.34737 -169.624 -7.34737 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.044327 0.0394063 154 224 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_059.v common 6.92 vpr 54.73 MiB 0.02 6684 -1 -1 11 0.18 -1 -1 32592 -1 -1 17 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56072 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 16.2 MiB 0.70 899 5994 1459 3795 740 54.8 MiB 0.08 0.00 6.69493 -140.456 -6.69493 6.69493 0.78 0.000794895 0.000734298 0.031391 0.0289703 30 2482 27 6.79088e+06 229024 556674. 1926.21 1.96 0.140124 0.122861 24526 138013 -1 1965 17 917 2589 146449 32281 5.90384 5.90384 -132.64 -5.90384 0 0 706193. 2443.58 0.23 0.07 0.13 -1 -1 0.23 0.0293949 0.0261016 99 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_060.v common 10.85 vpr 55.52 MiB 0.05 7028 -1 -1 15 0.43 -1 -1 32952 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 17.0 MiB 1.23 1572 8083 1890 5078 1115 55.6 MiB 0.14 0.00 9.61575 -193.644 -9.61575 9.61575 0.78 0.00121815 0.00112016 0.0552115 0.0509918 46 4045 27 6.79088e+06 323328 828058. 2865.25 2.71 0.259985 0.230858 27406 200422 -1 3169 18 1508 4603 318410 62168 8.1454 8.1454 -176.643 -8.1454 0 0 1.01997e+06 3529.29 0.31 0.12 0.18 -1 -1 0.31 0.0474311 0.0423009 172 241 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_061.v common 7.61 vpr 55.12 MiB 0.02 6700 -1 -1 13 0.32 -1 -1 33200 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56508 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 16.7 MiB 1.06 1447 9914 2954 6315 645 55.2 MiB 0.15 0.00 8.38843 -181.197 -8.38843 8.38843 0.79 0.00107746 0.000996494 0.0610335 0.0564854 36 3960 36 6.79088e+06 296384 648988. 2245.63 2.47 0.246876 0.217234 25390 158009 -1 3268 17 1506 4194 304675 62185 7.43336 7.43336 -178.34 -7.43336 0 0 828058. 2865.25 0.26 0.11 0.15 -1 -1 0.26 0.040113 0.0357022 149 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_062.v common 5.99 vpr 54.62 MiB 0.04 6580 -1 -1 11 0.13 -1 -1 32692 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55912 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 16.0 MiB 1.51 1043 11604 3704 5973 1927 54.6 MiB 0.14 0.00 6.83225 -151.19 -6.83225 6.83225 0.81 0.000798801 0.000735612 0.0574095 0.0529876 30 2577 19 6.79088e+06 215552 556674. 1926.21 1.55 0.15872 0.141924 24526 138013 -1 2225 18 998 2442 143990 31391 6.20139 6.20139 -147.73 -6.20139 0 0 706193. 2443.58 0.27 0.07 0.14 -1 -1 0.27 0.0307983 0.0272975 97 144 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_063.v common 7.56 vpr 55.27 MiB 0.05 7000 -1 -1 12 0.29 -1 -1 32836 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56884 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 16.9 MiB 1.50 1321 11989 3057 7272 1660 55.6 MiB 0.17 0.00 7.80487 -167.158 -7.80487 7.80487 0.80 0.000849863 0.000776298 0.0689305 0.0634125 38 3489 26 6.79088e+06 282912 678818. 2348.85 14.45 0.51014 0.443134 25966 169698 -1 2937 30 1426 4413 561061 248678 6.74877 6.74877 -154.693 -6.74877 0 0 902133. 3121.57 0.34 0.24 0.17 -1 -1 0.34 0.0682445 0.0606619 152 214 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_064.v common 9.40 vpr 54.76 MiB 0.02 6616 -1 -1 12 0.22 -1 -1 32368 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 16.4 MiB 1.67 1076 11776 3996 5804 1976 54.9 MiB 0.16 0.00 7.20737 -155.525 -7.20737 7.20737 0.78 0.000920111 0.000849905 0.0663734 0.061406 40 2876 47 6.79088e+06 215552 706193. 2443.58 4.98 0.404128 0.351633 26254 175826 -1 2657 18 1255 3284 287920 61191 6.20488 6.20488 -148.339 -6.20488 0 0 926341. 3205.33 0.28 0.10 0.17 -1 -1 0.28 0.0350268 0.0310047 115 159 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_065.v common 8.19 vpr 54.66 MiB 0.04 6584 -1 -1 12 0.18 -1 -1 32792 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56012 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 16.1 MiB 1.21 861 12331 3461 6927 1943 54.7 MiB 0.14 0.00 7.68992 -150.206 -7.68992 7.68992 0.79 0.000820799 0.000758219 0.0611111 0.056463 30 2279 22 6.79088e+06 255968 556674. 1926.21 1.26 0.163174 0.145353 24526 138013 -1 1867 13 775 2173 112780 25618 6.47016 6.47016 -140.483 -6.47016 0 0 706193. 2443.58 0.24 0.06 0.14 -1 -1 0.24 0.0252967 0.0225915 105 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_066.v common 14.11 vpr 55.08 MiB 0.05 6892 -1 -1 12 0.28 -1 -1 32812 -1 -1 24 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 16.5 MiB 1.28 1109 13105 4321 6403 2381 55.2 MiB 0.18 0.00 7.73882 -148.46 -7.73882 7.73882 0.79 0.00106196 0.000981357 0.0792506 0.0733035 44 3073 26 6.79088e+06 323328 787024. 2723.27 4.06 0.378036 0.330874 27118 194962 -1 2202 15 1010 3369 196736 41979 6.80802 6.80802 -136.104 -6.80802 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0368384 0.032903 144 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_067.v common 10.70 vpr 55.34 MiB 0.05 6788 -1 -1 14 0.31 -1 -1 32952 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56908 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 16.8 MiB 2.40 1442 8024 2021 5399 604 55.6 MiB 0.13 0.00 8.63126 -174.325 -8.63126 8.63126 0.79 0.00112734 0.00104252 0.052122 0.0482204 42 3928 32 6.79088e+06 296384 744469. 2576.02 21.76 0.532996 0.463261 26542 182613 -1 3156 20 1704 4448 351968 71204 7.64055 7.64055 -165.444 -7.64055 0 0 949917. 3286.91 0.32 0.13 0.18 -1 -1 0.32 0.0472614 0.0419612 155 222 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_068.v common 9.43 vpr 54.95 MiB 0.05 6744 -1 -1 12 0.23 -1 -1 32848 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56460 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 16.4 MiB 1.33 1323 12503 3954 6429 2120 55.1 MiB 0.18 0.00 7.68002 -164.527 -7.68002 7.68002 0.78 0.00102046 0.000943266 0.075326 0.0696208 38 3737 43 6.79088e+06 255968 678818. 2348.85 4.64 0.31781 0.279593 25966 169698 -1 2891 18 1369 3963 302432 68591 6.75652 6.75652 -158.471 -6.75652 0 0 902133. 3121.57 0.29 0.12 0.13 -1 -1 0.29 0.0408072 0.0363646 137 192 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_069.v common 8.83 vpr 54.41 MiB 0.04 6592 -1 -1 12 0.14 -1 -1 32692 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55796 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 15.9 MiB 1.22 883 6839 1546 5160 133 54.5 MiB 0.10 0.00 7.22527 -147.319 -7.22527 7.22527 0.78 0.000783787 0.000715596 0.0352025 0.0324377 36 2385 16 6.79088e+06 202080 648988. 2245.63 3.66 0.218406 0.190189 25390 158009 -1 2029 16 842 2333 154772 33320 6.16917 6.16917 -141.929 -6.16917 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0273946 0.0242842 95 127 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_070.v common 8.53 vpr 54.71 MiB 0.05 6580 -1 -1 12 0.21 -1 -1 32352 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56292 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 16.5 MiB 1.91 1016 11806 3829 5905 2072 55.0 MiB 0.15 0.00 7.21239 -153.602 -7.21239 7.21239 0.79 0.000913611 0.000842737 0.0652649 0.0603149 44 2603 19 6.79088e+06 242496 787024. 2723.27 2.14 0.226025 0.198947 27118 194962 -1 2065 15 888 2438 165954 33937 6.38057 6.38057 -142.436 -6.38057 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0315752 0.0280887 114 170 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_071.v common 8.77 vpr 54.99 MiB 0.05 6808 -1 -1 11 0.19 -1 -1 32868 -1 -1 22 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56556 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 16.5 MiB 2.64 1192 7587 1799 4901 887 55.2 MiB 0.11 0.00 6.65573 -139.172 -6.65573 6.65573 0.79 0.000991937 0.000917419 0.0443175 0.0409989 38 3146 28 6.79088e+06 296384 678818. 2348.85 3.96 0.255316 0.222726 25966 169698 -1 2651 15 1163 3604 226505 46075 5.73164 5.73164 -133.904 -5.73164 0 0 902133. 3121.57 0.27 0.09 0.18 -1 -1 0.27 0.0334304 0.0298094 129 189 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_072.v common 8.96 vpr 54.84 MiB 0.02 6784 -1 -1 11 0.20 -1 -1 32772 -1 -1 21 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 16.4 MiB 1.26 990 12156 4943 6412 801 54.9 MiB 0.16 0.00 6.59863 -125.892 -6.59863 6.59863 0.78 0.000917113 0.000847748 0.0670969 0.062059 40 2995 50 6.79088e+06 282912 706193. 2443.58 3.02 0.292396 0.255731 26254 175826 -1 2536 29 1635 4811 462729 149224 5.98983 5.98983 -123.995 -5.98983 0 0 926341. 3205.33 0.28 0.17 0.17 -1 -1 0.28 0.0508582 0.0445247 125 169 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_073.v common 8.81 vpr 54.77 MiB 0.05 6632 -1 -1 13 0.18 -1 -1 32680 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 16.1 MiB 2.62 1023 6220 1452 4481 287 54.7 MiB 0.08 0.00 7.37394 -146.255 -7.37394 7.37394 0.78 0.000791182 0.000730694 0.0327801 0.0303354 34 2942 40 6.79088e+06 215552 618332. 2139.56 2.23 0.18409 0.160812 25102 150614 -1 2408 16 989 2444 169826 36658 6.50592 6.50592 -143.367 -6.50592 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0287908 0.0256563 104 135 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_074.v common 7.60 vpr 54.89 MiB 0.04 6636 -1 -1 12 0.19 -1 -1 32460 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 16.4 MiB 1.79 1239 4476 858 3235 383 55.2 MiB 0.07 0.00 7.13568 -159.479 -7.13568 7.13568 0.84 0.000955531 0.000881215 0.0279352 0.0258823 36 2894 18 6.79088e+06 269440 648988. 2245.63 3.92 0.225821 0.198208 25390 158009 -1 2565 14 1082 2807 201948 41879 6.45548 6.45548 -154.903 -6.45548 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0307896 0.0274279 125 175 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_075.v common 8.41 vpr 54.98 MiB 0.05 6748 -1 -1 13 0.29 -1 -1 32804 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 16.4 MiB 1.67 1176 7283 1697 4959 627 55.1 MiB 0.11 0.00 7.98183 -162.706 -7.98183 7.98183 0.78 0.00101474 0.000938566 0.0451687 0.0418248 30 3060 22 6.79088e+06 269440 556674. 1926.21 10.16 0.415845 0.362167 24526 138013 -1 2446 15 1089 3242 179077 39801 6.80691 6.80691 -151.712 -6.80691 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.034407 0.0306628 137 192 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_076.v common 8.81 vpr 55.02 MiB 0.05 6848 -1 -1 14 0.30 -1 -1 32744 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 16.9 MiB 1.39 1408 9013 2325 5592 1096 55.6 MiB 0.14 0.00 8.8032 -181.521 -8.8032 8.8032 0.79 0.00109947 0.00101554 0.0578786 0.0534764 36 3716 28 6.79088e+06 282912 648988. 2245.63 3.55 0.295103 0.258744 25390 158009 -1 3017 16 1370 3693 258657 53176 7.85554 7.85554 -177.767 -7.85554 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0394893 0.0352071 149 214 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_077.v common 10.06 vpr 55.01 MiB 0.05 6788 -1 -1 14 0.26 -1 -1 32832 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 16.5 MiB 2.15 1168 12528 4001 6466 2061 55.1 MiB 0.17 0.00 8.11366 -160.164 -8.11366 8.11366 0.78 0.00100379 0.000927658 0.0730958 0.0675095 38 3416 34 6.79088e+06 269440 678818. 2348.85 4.51 0.31029 0.273975 25966 169698 -1 2722 20 1291 3804 238849 50695 7.34388 7.34388 -152.923 -7.34388 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0419018 0.0371235 136 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_078.v common 8.14 vpr 55.14 MiB 0.05 6628 -1 -1 13 0.34 -1 -1 33332 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56572 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 16.8 MiB 1.88 1266 7823 1896 4973 954 55.2 MiB 0.12 0.00 7.98865 -167.696 -7.98865 7.98865 0.78 0.00104526 0.000965179 0.0496114 0.0458829 38 3341 46 6.79088e+06 255968 678818. 2348.85 14.33 0.512687 0.445486 25966 169698 -1 2673 18 1200 3630 224806 47231 6.74882 6.74882 -156.035 -6.74882 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0406717 0.0361777 139 194 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_079.v common 8.33 vpr 54.74 MiB 0.05 6540 -1 -1 13 0.18 -1 -1 32592 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 16.2 MiB 1.45 955 5888 1275 4387 226 54.6 MiB 0.09 0.00 7.30909 -151.711 -7.30909 7.30909 0.78 0.000835116 0.000765635 0.0326631 0.0302213 38 2560 19 6.79088e+06 215552 678818. 2348.85 11.33 0.354556 0.308031 25966 169698 -1 2100 15 975 2306 140137 30240 6.20837 6.20837 -141.215 -6.20837 0 0 902133. 3121.57 0.25 0.04 0.11 -1 -1 0.25 0.0157038 0.0142732 106 142 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_080.v common 9.33 vpr 55.16 MiB 0.04 6804 -1 -1 13 0.43 -1 -1 32768 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 16.8 MiB 1.35 1281 12175 3045 7735 1395 55.2 MiB 0.18 0.00 8.2401 -167.978 -8.2401 8.2401 0.78 0.00106415 0.000984593 0.0740363 0.0684827 36 3633 23 6.79088e+06 309856 648988. 2245.63 4.71 0.304659 0.268826 25390 158009 -1 2926 15 1331 3364 242193 50003 7.30041 7.30041 -163.44 -7.30041 0 0 828058. 2865.25 0.29 0.10 0.16 -1 -1 0.29 0.0370527 0.0331446 144 206 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_081.v common 7.65 vpr 55.00 MiB 0.04 6960 -1 -1 14 0.29 -1 -1 31568 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 16.6 MiB 1.69 1252 6306 1410 4478 418 55.3 MiB 0.11 0.00 8.1933 -176.786 -8.1933 8.1933 0.78 0.000992825 0.000916527 0.0386956 0.0358347 44 3050 16 6.79088e+06 269440 787024. 2723.27 2.37 0.208137 0.18224 27118 194962 -1 2540 16 1037 3296 220504 43729 7.43347 7.43347 -167.702 -7.43347 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0357029 0.031727 133 182 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_082.v common 8.51 vpr 54.97 MiB 0.05 6864 -1 -1 12 0.25 -1 -1 32820 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56580 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 16.6 MiB 1.78 1214 6855 1626 4139 1090 55.3 MiB 0.11 0.00 7.87232 -159.238 -7.87232 7.87232 0.79 0.0010409 0.000963791 0.0435458 0.040354 38 3179 23 6.79088e+06 282912 678818. 2348.85 3.13 0.261679 0.229141 25966 169698 -1 2619 17 1191 3371 219063 45384 6.75996 6.75996 -149.97 -6.75996 0 0 902133. 3121.57 0.27 0.09 0.18 -1 -1 0.27 0.039049 0.0348967 143 202 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_083.v common 8.28 vpr 55.01 MiB 0.05 6788 -1 -1 13 0.24 -1 -1 32832 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56428 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 16.5 MiB 1.84 1166 13583 4513 7114 1956 55.1 MiB 0.18 0.00 8.05477 -151.514 -8.05477 8.05477 0.79 0.000960423 0.000887498 0.0769281 0.0710843 38 3229 19 6.79088e+06 282912 678818. 2348.85 3.55 0.270559 0.238159 25966 169698 -1 2657 23 1308 3559 283929 73986 7.08558 7.08558 -144.285 -7.08558 0 0 902133. 3121.57 0.27 0.12 0.16 -1 -1 0.27 0.044522 0.0392767 126 185 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_084.v common 8.19 vpr 55.19 MiB 0.05 6700 -1 -1 14 0.34 -1 -1 32880 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56724 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 16.9 MiB 1.46 1356 6595 1328 4700 567 55.4 MiB 0.11 0.00 8.2637 -174.994 -8.2637 8.2637 0.78 0.00111069 0.00102704 0.0438698 0.0406619 38 3944 40 6.79088e+06 282912 678818. 2348.85 4.96 0.311104 0.272677 25966 169698 -1 3101 22 1685 4745 323481 65687 7.17162 7.17162 -164.744 -7.17162 0 0 902133. 3121.57 0.27 0.13 0.16 -1 -1 0.27 0.0498721 0.044155 154 216 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_085.v common 11.30 vpr 55.09 MiB 0.05 6872 -1 -1 11 0.28 -1 -1 32968 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56416 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 16.5 MiB 1.18 1061 13403 4351 6899 2153 55.1 MiB 0.16 0.00 6.99502 -136.053 -6.99502 6.99502 0.80 0.000672719 0.000615711 0.0614445 0.0563311 44 2733 16 6.79088e+06 296384 787024. 2723.27 4.29 0.303359 0.265153 27118 194962 -1 2186 15 1017 3252 209503 43322 5.87926 5.87926 -124.096 -5.87926 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0324888 0.0289324 130 174 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_086.v common 18.15 vpr 54.60 MiB 0.04 6608 -1 -1 13 0.16 -1 -1 32584 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 16.1 MiB 2.85 995 4062 701 3272 89 54.7 MiB 0.07 0.00 6.9771 -161.617 -6.9771 6.9771 0.78 0.000805918 0.000743904 0.0228421 0.0211641 38 2669 23 6.79088e+06 188608 678818. 2348.85 4.21 0.235031 0.204267 25966 169698 -1 2317 16 1087 2615 182540 37203 6.36594 6.36594 -158.261 -6.36594 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.0286378 0.0254519 99 131 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_087.v common 9.24 vpr 54.95 MiB 0.04 6712 -1 -1 14 0.23 -1 -1 32772 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 16.5 MiB 1.58 1302 5483 1117 4002 364 55.2 MiB 0.05 0.00 8.68565 -176.783 -8.68565 8.68565 0.64 0.000423178 0.000387533 0.0163901 0.0151233 36 3251 31 6.79088e+06 255968 648988. 2245.63 4.52 0.209178 0.181822 25390 158009 -1 2857 22 1274 3475 326178 96259 7.59375 7.59375 -168.045 -7.59375 0 0 828058. 2865.25 0.26 0.13 0.15 -1 -1 0.26 0.0434788 0.0384184 129 179 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_088.v common 9.86 vpr 55.52 MiB 0.05 6788 -1 -1 15 0.36 -1 -1 33168 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 16.9 MiB 1.92 1292 9914 2574 6184 1156 55.6 MiB 0.16 0.00 9.1052 -186.475 -9.1052 9.1052 0.78 0.0011403 0.00105333 0.0658482 0.0609387 42 3852 48 6.79088e+06 296384 744469. 2576.02 4.70 0.412385 0.360554 26542 182613 -1 2971 30 1580 4351 426615 133445 7.8164 7.8164 -176.348 -7.8164 0 0 949917. 3286.91 0.29 0.18 0.18 -1 -1 0.29 0.0643216 0.05662 153 228 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_089.v common 6.81 vpr 54.61 MiB 0.04 6688 -1 -1 11 0.16 -1 -1 32428 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 16.2 MiB 1.96 829 6054 1305 4663 86 54.7 MiB 0.09 0.00 6.63906 -133.693 -6.63906 6.63906 0.78 0.000766965 0.000707213 0.0310342 0.0286514 36 2378 25 6.79088e+06 188608 648988. 2245.63 4.03 0.221332 0.192497 25390 158009 -1 1951 18 929 2412 156359 35347 5.66443 5.66443 -131.497 -5.66443 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.0291344 0.0257875 91 124 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_090.v common 9.18 vpr 54.79 MiB 0.04 6564 -1 -1 12 0.18 -1 -1 32540 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56284 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 16.5 MiB 1.45 1045 8360 2472 4444 1444 55.0 MiB 0.12 0.00 7.09988 -155.106 -7.09988 7.09988 0.79 0.000871393 0.000804359 0.0473453 0.0437763 36 2903 31 6.79088e+06 215552 648988. 2245.63 3.26 0.241682 0.211198 25390 158009 -1 2494 18 1219 3245 218949 46971 6.15449 6.15449 -148.32 -6.15449 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.0335656 0.0297119 111 153 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_091.v common 7.78 vpr 55.09 MiB 0.02 6676 -1 -1 12 0.37 -1 -1 32968 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56540 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 16.8 MiB 1.39 1231 6306 1337 4274 695 55.2 MiB 0.11 0.00 7.48442 -156.804 -7.48442 7.48442 0.79 0.00111005 0.00102786 0.04279 0.039682 36 3660 48 6.79088e+06 269440 648988. 2245.63 3.90 0.313558 0.273895 25390 158009 -1 2930 18 1374 3677 255073 54763 6.67381 6.67381 -159.977 -6.67381 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0424187 0.0377247 145 207 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_092.v common 9.82 vpr 55.02 MiB 0.01 6796 -1 -1 12 0.24 -1 -1 32864 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 16.4 MiB 1.57 1313 9443 2521 5826 1096 55.0 MiB 0.12 0.00 7.56551 -160.745 -7.56551 7.56551 0.80 0.000674199 0.000615349 0.0480604 0.0442679 36 3743 26 6.79088e+06 255968 648988. 2245.63 4.52 0.263133 0.231178 25390 158009 -1 2904 15 1243 3681 239298 50800 6.72081 6.72081 -157.76 -6.72081 0 0 828058. 2865.25 0.26 0.09 0.15 -1 -1 0.26 0.033683 0.0299799 133 184 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_093.v common 8.94 vpr 55.40 MiB 0.03 6876 -1 -1 14 0.46 -1 -1 33316 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56816 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 16.9 MiB 1.29 1284 5079 907 4069 103 55.5 MiB 0.11 0.00 8.77515 -179.37 -8.77515 8.77515 0.78 0.0012057 0.00111229 0.0385813 0.03576 44 3796 32 6.79088e+06 309856 787024. 2723.27 5.00 0.421438 0.366145 27118 194962 -1 2993 20 1472 4331 292142 60580 7.75826 7.75826 -170.084 -7.75826 0 0 997811. 3452.63 0.32 0.12 0.19 -1 -1 0.32 0.0499558 0.0444465 170 239 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_094.v common 9.86 vpr 54.80 MiB 0.05 6712 -1 -1 11 0.23 -1 -1 32412 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 16.5 MiB 1.82 1159 11963 3648 6429 1886 55.1 MiB 0.16 0.00 7.06667 -142.983 -7.06667 7.06667 0.78 0.00095265 0.00088075 0.0672745 0.0622502 36 3496 38 6.79088e+06 282912 648988. 2245.63 14.82 0.410372 0.357499 25390 158009 -1 2773 15 1239 3552 235473 50045 6.29442 6.29442 -138.561 -6.29442 0 0 828058. 2865.25 0.27 0.09 0.16 -1 -1 0.27 0.0328447 0.0292613 128 173 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_095.v common 6.35 vpr 54.79 MiB 0.02 6660 -1 -1 11 0.17 -1 -1 32420 -1 -1 19 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56016 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 16.1 MiB 1.09 770 7714 1883 5409 422 54.7 MiB 0.10 0.00 6.64923 -122.654 -6.64923 6.64923 0.78 0.000777906 0.000718773 0.0393295 0.0363467 30 2716 40 6.79088e+06 255968 556674. 1926.21 5.36 0.320575 0.277449 24526 138013 -1 1974 15 964 2526 169628 37379 5.81779 5.81779 -122.796 -5.81779 0 0 706193. 2443.58 0.24 0.07 0.13 -1 -1 0.24 0.0264801 0.0235498 101 138 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_096.v common 11.50 vpr 55.80 MiB 0.05 7048 -1 -1 13 0.46 -1 -1 32828 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56864 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 17.2 MiB 1.72 1654 14793 4090 8037 2666 55.5 MiB 0.25 0.00 8.15219 -167.23 -8.15219 8.15219 0.80 0.00133408 0.00122367 0.0992112 0.0915465 40 4854 26 6.79088e+06 390688 706193. 2443.58 4.71 0.379284 0.33456 26254 175826 -1 4216 20 2198 6707 533986 105795 7.26116 7.26116 -164.519 -7.26116 0 0 926341. 3205.33 0.28 0.17 0.17 -1 -1 0.28 0.0556289 0.0494539 191 279 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_097.v common 7.32 vpr 54.86 MiB 0.05 6780 -1 -1 14 0.26 -1 -1 33408 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 16.4 MiB 1.26 1216 6923 1704 4584 635 55.0 MiB 0.11 0.00 8.60637 -173.25 -8.60637 8.60637 0.78 0.000974969 0.000902644 0.0412734 0.0382531 30 3411 33 6.79088e+06 269440 556674. 1926.21 2.24 0.177444 0.156013 24526 138013 -1 2773 18 1384 3729 235085 50450 7.42577 7.42577 -168.834 -7.42577 0 0 706193. 2443.58 0.27 0.11 0.14 -1 -1 0.27 0.0412111 0.0364857 128 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_098.v common 7.51 vpr 54.70 MiB 0.04 6640 -1 -1 12 0.16 -1 -1 32332 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56220 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 16.4 MiB 2.11 1144 8723 2365 5890 468 54.9 MiB 0.12 0.00 7.40683 -169.316 -7.40683 7.40683 0.79 0.00082686 0.000762466 0.0433848 0.0400136 38 3028 21 6.79088e+06 255968 678818. 2348.85 13.27 0.343887 0.299163 25966 169698 -1 2585 14 1125 2806 183086 38344 6.54507 6.54507 -162.036 -6.54507 0 0 902133. 3121.57 0.27 0.08 0.17 -1 -1 0.27 0.0268127 0.0239483 109 134 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_099.v common 9.22 vpr 55.04 MiB 0.05 6648 -1 -1 13 0.29 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56368 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 16.5 MiB 2.52 1115 5066 1001 3852 213 55.0 MiB 0.08 0.00 8.33866 -169.136 -8.33866 8.33866 0.79 0.000962195 0.000889805 0.0313986 0.029103 46 2861 28 6.79088e+06 242496 828058. 2865.25 2.19 0.198114 0.173946 27406 200422 -1 2407 16 1069 3093 203685 41602 7.04987 7.04987 -155.226 -7.04987 0 0 1.01997e+06 3529.29 0.31 0.09 0.15 -1 -1 0.31 0.0343771 0.0306113 125 171 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_100.v common 8.17 vpr 55.38 MiB 0.05 6912 -1 -1 13 0.30 -1 -1 33424 -1 -1 25 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56668 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 16.8 MiB 1.97 1490 8083 1681 5214 1188 55.3 MiB 0.14 0.00 7.4732 -162.473 -7.4732 7.4732 0.79 0.00114706 0.00105953 0.0527271 0.0488242 38 4036 37 6.79088e+06 336800 678818. 2348.85 5.35 0.321221 0.28133 25966 169698 -1 3216 17 1586 4292 286233 57211 6.50587 6.50587 -152.554 -6.50587 0 0 902133. 3121.57 0.28 0.11 0.16 -1 -1 0.28 0.0424931 0.037846 159 234 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_101.v common 7.87 vpr 55.01 MiB 0.05 6712 -1 -1 11 0.23 -1 -1 32744 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56496 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 16.6 MiB 1.49 1209 11059 2877 6113 2069 55.2 MiB 0.16 0.00 7.11391 -144.84 -7.11391 7.11391 0.83 0.00103058 0.000951842 0.0657992 0.0609298 36 3831 43 6.79088e+06 309856 648988. 2245.63 20.51 0.491102 0.427922 25390 158009 -1 2979 22 1388 4671 437225 111116 6.45892 6.45892 -142.761 -6.45892 0 0 828058. 2865.25 0.26 0.15 0.15 -1 -1 0.26 0.0456188 0.0403008 140 199 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_102.v common 26.81 vpr 55.25 MiB 0.05 6840 -1 -1 15 0.32 -1 -1 33008 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 16.8 MiB 1.43 1211 12503 3460 7559 1484 55.2 MiB 0.17 0.00 9.11536 -184.558 -9.11536 9.11536 0.79 0.00105154 0.000970207 0.0774467 0.0715863 44 3043 41 6.79088e+06 255968 787024. 2723.27 2.39 0.268167 0.236505 27118 194962 -1 2494 14 1120 3101 201110 42878 7.59386 7.59386 -164.1 -7.59386 0 0 997811. 3452.63 0.31 0.08 0.19 -1 -1 0.31 0.0342807 0.0306421 142 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_103.v common 12.00 vpr 55.32 MiB 0.05 6760 -1 -1 13 0.31 -1 -1 32876 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 16.8 MiB 1.99 1357 5463 1001 4200 262 55.6 MiB 0.10 0.00 8.32676 -176.58 -8.32676 8.32676 0.80 0.0011306 0.00103961 0.0374531 0.0346418 36 4105 41 6.79088e+06 309856 648988. 2245.63 9.10 0.310589 0.270897 25390 158009 -1 3336 18 1449 4444 312347 65803 7.3039 7.3039 -168.956 -7.3039 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.0431771 0.0383112 154 217 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_104.v common 8.48 vpr 54.81 MiB 0.05 6516 -1 -1 12 0.19 -1 -1 32212 -1 -1 18 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55956 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 16.2 MiB 1.82 941 10557 3755 4946 1856 54.6 MiB 0.13 0.00 7.68137 -155.362 -7.68137 7.68137 0.78 0.000856966 0.000793144 0.0557587 0.0515874 34 2784 27 6.79088e+06 242496 618332. 2139.56 1.83 0.192893 0.170031 25102 150614 -1 2219 17 1118 2552 158377 36969 6.45897 6.45897 -146.842 -6.45897 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0309492 0.0274894 109 151 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_105.v common 8.57 vpr 54.57 MiB 0.04 6608 -1 -1 11 0.18 -1 -1 32388 -1 -1 14 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56028 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 16.1 MiB 1.41 1148 5224 1190 3763 271 54.7 MiB 0.08 0.00 6.84847 -147.97 -6.84847 6.84847 0.80 0.000806141 0.000744264 0.0287163 0.0265557 38 3149 47 6.79088e+06 188608 678818. 2348.85 17.47 0.401372 0.34674 25966 169698 -1 2462 14 1116 2832 183379 38076 6.07953 6.07953 -142.464 -6.07953 0 0 902133. 3121.57 0.27 0.07 0.16 -1 -1 0.27 0.0259096 0.0230953 98 137 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_106.v common 7.53 vpr 55.20 MiB 0.05 6656 -1 -1 13 0.30 -1 -1 32904 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56560 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 16.8 MiB 1.12 1115 8455 2194 4906 1355 55.2 MiB 0.13 0.00 7.89179 -153.02 -7.89179 7.89179 0.79 0.00106067 0.00097994 0.0526385 0.0487325 38 3284 25 6.79088e+06 296384 678818. 2348.85 3.42 0.27804 0.243377 25966 169698 -1 2440 20 1317 3733 228435 48311 6.79916 6.79916 -143.904 -6.79916 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0440216 0.0389021 144 203 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_107.v common 6.41 vpr 54.42 MiB 0.04 6632 -1 -1 10 0.17 -1 -1 32944 -1 -1 17 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 16.1 MiB 1.60 851 10204 2504 7246 454 54.7 MiB 0.12 0.00 6.11518 -125.484 -6.11518 6.11518 0.78 0.000780584 0.000720511 0.0509725 0.0471173 36 2718 44 6.79088e+06 229024 648988. 2245.63 2.06 0.198136 0.173721 25390 158009 -1 2001 18 1039 2804 174359 39570 5.36333 5.36333 -123.093 -5.36333 0 0 828058. 2865.25 0.27 0.08 0.16 -1 -1 0.27 0.0300953 0.0266299 98 136 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_108.v common 10.00 vpr 54.80 MiB 0.04 6668 -1 -1 14 0.19 -1 -1 32704 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 16.5 MiB 2.59 1049 6312 1330 4556 426 54.8 MiB 0.09 0.00 7.76918 -161.081 -7.76918 7.76918 0.79 0.000841308 0.000776244 0.033425 0.0309256 44 2770 18 6.79088e+06 242496 787024. 2723.27 3.99 0.261315 0.227029 27118 194962 -1 2297 15 1001 2657 186808 38493 6.62358 6.62358 -150.482 -6.62358 0 0 997811. 3452.63 0.32 0.08 0.18 -1 -1 0.32 0.0284431 0.025563 110 146 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_109.v common 8.53 vpr 55.20 MiB 0.04 6884 -1 -1 12 0.30 -1 -1 33040 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 16.8 MiB 1.11 1262 12919 3620 7000 2299 55.2 MiB 0.19 0.00 7.60154 -161.988 -7.60154 7.60154 0.84 0.00100717 0.000925842 0.0785828 0.0725847 36 3548 40 6.79088e+06 296384 648988. 2245.63 5.31 0.333953 0.294255 25390 158009 -1 2918 18 1293 3840 265441 54208 6.42321 6.42321 -152.443 -6.42321 0 0 828058. 2865.25 0.26 0.10 0.15 -1 -1 0.26 0.0403523 0.0358123 143 201 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_110.v common 18.23 vpr 54.47 MiB 0.03 6564 -1 -1 12 0.15 -1 -1 32444 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 16.0 MiB 2.00 992 10726 2823 7181 722 54.7 MiB 0.14 0.00 6.58069 -144.507 -6.58069 6.58069 0.81 0.000950167 0.000887658 0.0542313 0.0500613 36 2863 30 6.79088e+06 215552 648988. 2245.63 4.22 0.272441 0.239174 25390 158009 -1 2275 14 965 2262 159533 33519 6.11529 6.11529 -140.819 -6.11529 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0254089 0.0226326 101 138 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_111.v common 21.36 vpr 55.09 MiB 0.05 6800 -1 -1 12 0.19 -1 -1 32704 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56544 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 16.4 MiB 1.31 1163 7736 1889 5402 445 55.2 MiB 0.12 0.00 7.51176 -154.757 -7.51176 7.51176 0.78 0.000974881 0.000899035 0.0463535 0.0428419 38 3230 44 6.79088e+06 242496 678818. 2348.85 3.16 0.235678 0.206684 25966 169698 -1 2488 18 1146 3399 217401 44562 6.38406 6.38406 -145.229 -6.38406 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.038094 0.0337628 123 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_112.v common 9.38 vpr 55.04 MiB 0.02 6884 -1 -1 13 0.29 -1 -1 32880 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56596 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 16.6 MiB 1.40 1250 11296 2557 6849 1890 55.3 MiB 0.16 0.00 7.49717 -162.624 -7.49717 7.49717 0.78 0.000984651 0.000910048 0.0663792 0.0614362 44 3142 26 6.79088e+06 255968 787024. 2723.27 5.36 0.398522 0.347542 27118 194962 -1 2511 16 1097 3167 207050 42004 6.33367 6.33367 -147.614 -6.33367 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0350114 0.0311497 134 178 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_113.v common 8.53 vpr 54.74 MiB 0.04 6580 -1 -1 11 0.16 -1 -1 32524 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55936 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 16.2 MiB 1.27 937 7515 1724 5667 124 54.6 MiB 0.10 0.00 7.16165 -142.405 -7.16165 7.16165 0.87 0.000802394 0.000736642 0.036366 0.0334531 46 2632 18 6.79088e+06 202080 828058. 2865.25 2.55 0.194945 0.170727 27406 200422 -1 2080 16 1139 3041 211464 44102 6.16912 6.16912 -135.714 -6.16912 0 0 1.01997e+06 3529.29 0.31 0.08 0.19 -1 -1 0.31 0.029403 0.026141 105 143 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_114.v common 9.36 vpr 54.84 MiB 0.04 6464 -1 -1 13 0.19 -1 -1 32472 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 16.3 MiB 1.75 1005 13381 4639 6392 2350 54.8 MiB 0.18 0.00 7.38301 -157.601 -7.38301 7.38301 0.78 0.000931683 0.000861857 0.0752971 0.0697109 40 2519 33 6.79088e+06 229024 706193. 2443.58 4.51 0.379497 0.331247 26254 175826 -1 2305 18 1198 3223 222898 47664 6.58427 6.58427 -149.311 -6.58427 0 0 926341. 3205.33 0.36 0.10 0.19 -1 -1 0.36 0.0366475 0.0325348 116 165 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_115.v common 6.42 vpr 55.03 MiB 0.04 6788 -1 -1 13 0.25 -1 -1 32860 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56552 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 16.6 MiB 1.49 1327 8092 2018 5457 617 55.2 MiB 0.12 0.00 7.14878 -159.209 -7.14878 7.14878 0.78 0.000995173 0.000921105 0.0492867 0.0456566 46 3184 21 6.79088e+06 242496 828058. 2865.25 2.74 0.252584 0.221439 27406 200422 -1 2556 17 1275 3494 248391 48405 6.28328 6.28328 -149.085 -6.28328 0 0 1.01997e+06 3529.29 0.31 0.10 0.19 -1 -1 0.31 0.036454 0.0323846 130 183 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_116.v common 9.98 vpr 54.83 MiB 0.04 6884 -1 -1 11 0.19 -1 -1 32828 -1 -1 22 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56196 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 16.4 MiB 1.52 925 13403 4743 6446 2214 54.9 MiB 0.16 0.00 6.69836 -125.024 -6.69836 6.69836 0.86 0.000875696 0.000807816 0.0692802 0.0640157 36 2683 30 6.79088e+06 296384 648988. 2245.63 3.46 0.261095 0.229018 25390 158009 -1 2102 15 950 2757 175002 37372 5.69593 5.69593 -120.693 -5.69593 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0300321 0.0267043 115 160 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_117.v common 7.83 vpr 55.31 MiB 0.04 6776 -1 -1 14 0.31 -1 -1 33384 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 16.9 MiB 1.38 1410 8213 2036 5597 580 55.6 MiB 0.12 0.00 9.10514 -189.548 -9.10514 9.10514 0.83 0.000831601 0.00075808 0.0437847 0.0401416 44 3687 21 6.79088e+06 296384 787024. 2723.27 2.77 0.277684 0.243411 27118 194962 -1 2785 17 1255 3625 246974 50006 7.69105 7.69105 -173.768 -7.69105 0 0 997811. 3452.63 0.31 0.10 0.19 -1 -1 0.31 0.0423036 0.0377055 160 222 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_118.v common 8.87 vpr 54.59 MiB 0.04 6628 -1 -1 12 0.16 -1 -1 32468 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56108 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 16.1 MiB 2.62 1093 11281 2937 6811 1533 54.8 MiB 0.14 0.00 6.61653 -142.296 -6.61653 6.61653 0.78 0.000810568 0.000748174 0.0555478 0.0513126 40 2615 16 6.79088e+06 242496 706193. 2443.58 4.24 0.303727 0.264685 26254 175826 -1 2478 16 1026 2502 188895 39224 5.57833 5.57833 -134.227 -5.57833 0 0 926341. 3205.33 0.28 0.08 0.17 -1 -1 0.28 0.0288734 0.0256636 108 139 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_119.v common 8.41 vpr 55.14 MiB 0.05 6724 -1 -1 13 0.26 -1 -1 32876 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56300 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 16.4 MiB 1.79 1323 14123 4442 7710 1971 55.0 MiB 0.20 0.00 7.64293 -157.325 -7.64293 7.64293 0.79 0.00131292 0.00120189 0.0854367 0.0790093 46 3030 19 6.79088e+06 255968 828058. 2865.25 4.78 0.349918 0.307241 27406 200422 -1 2647 16 1175 3471 246657 48376 6.37287 6.37287 -146.251 -6.37287 0 0 1.01997e+06 3529.29 0.31 0.09 0.20 -1 -1 0.31 0.0355665 0.0316648 132 188 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_120.v common 6.45 vpr 54.78 MiB 0.04 6700 -1 -1 13 0.18 -1 -1 32836 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56020 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 16.0 MiB 1.92 1020 12120 3554 6383 2183 54.7 MiB 0.15 0.00 7.35402 -164.423 -7.35402 7.35402 0.78 0.000821267 0.000757625 0.0612002 0.0565263 34 3085 41 6.79088e+06 215552 618332. 2139.56 3.09 0.251846 0.222048 25102 150614 -1 2549 18 1134 2700 200329 42942 6.62003 6.62003 -161.17 -6.62003 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0317081 0.0280913 104 141 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_121.v common 7.55 vpr 54.99 MiB 0.05 6748 -1 -1 12 0.21 -1 -1 32708 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 16.5 MiB 1.82 1030 11783 4465 6036 1282 55.3 MiB 0.16 0.00 7.13827 -153.033 -7.13827 7.13827 0.79 0.000956866 0.000882411 0.0667005 0.0616744 46 2739 28 6.79088e+06 255968 828058. 2865.25 4.90 0.343521 0.29972 27406 200422 -1 2087 16 995 3192 193213 42234 6.16912 6.16912 -140.388 -6.16912 0 0 1.01997e+06 3529.29 0.33 0.09 0.21 -1 -1 0.33 0.0345574 0.0307341 121 171 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_122.v common 8.23 vpr 55.62 MiB 0.05 7028 -1 -1 15 0.50 -1 -1 32932 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 17.3 MiB 1.99 1457 12373 3076 6798 2499 55.8 MiB 0.20 0.00 9.48621 -188.88 -9.48621 9.48621 0.82 0.00123331 0.00113875 0.0835949 0.0772638 44 4104 47 6.79088e+06 323328 787024. 2723.27 3.90 0.326793 0.287639 27118 194962 -1 3134 16 1569 4964 350874 69772 8.1923 8.1923 -172.037 -8.1923 0 0 997811. 3452.63 0.31 0.12 0.19 -1 -1 0.31 0.0448234 0.040081 176 250 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_123.v common 5.93 vpr 54.16 MiB 0.05 6524 -1 -1 10 0.10 -1 -1 32180 -1 -1 11 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55624 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 15.7 MiB 1.67 678 9345 2965 4615 1765 54.3 MiB 0.09 0.00 5.03415 -115.492 -5.03415 5.03415 0.78 0.000604856 0.000558202 0.0398907 0.03689 36 1720 43 6.79088e+06 148192 648988. 2245.63 1.97 0.180916 0.157301 25390 158009 -1 1483 15 602 1368 88654 19495 4.56879 4.56879 -110.334 -4.56879 0 0 828058. 2865.25 0.26 0.05 0.16 -1 -1 0.26 0.0200825 0.017733 63 85 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_124.v common 8.48 vpr 54.70 MiB 0.05 6552 -1 -1 13 0.18 -1 -1 32556 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 16.4 MiB 1.69 930 9881 2975 5177 1729 54.8 MiB 0.12 0.00 7.15369 -149.901 -7.15369 7.15369 0.82 0.00082663 0.000763347 0.0501031 0.0463609 36 2740 38 6.79088e+06 255968 648988. 2245.63 2.97 0.237401 0.207732 25390 158009 -1 2157 19 1034 2498 173546 42776 6.58089 6.58089 -149.012 -6.58089 0 0 828058. 2865.25 0.28 0.09 0.15 -1 -1 0.28 0.0336711 0.0299061 105 141 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_125.v common 9.76 vpr 55.08 MiB 0.05 6576 -1 -1 12 0.21 -1 -1 32552 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 16.3 MiB 1.80 1026 12331 4984 6774 573 54.8 MiB 0.16 0.00 7.35057 -161.147 -7.35057 7.35057 0.78 0.000921296 0.000851441 0.0685117 0.0633783 44 3035 21 6.79088e+06 229024 787024. 2723.27 4.35 0.330441 0.288751 27118 194962 -1 2281 16 1182 2918 212536 44343 6.40514 6.40514 -149.51 -6.40514 0 0 997811. 3452.63 0.31 0.09 0.19 -1 -1 0.31 0.0328687 0.0292184 115 167 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_126.v common 11.95 vpr 54.32 MiB 0.04 6640 -1 -1 9 0.14 -1 -1 32444 -1 -1 20 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55664 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 15.9 MiB 1.16 772 8553 2593 4994 966 54.4 MiB 0.09 0.00 5.4216 -101.246 -5.4216 5.4216 0.78 0.000668096 0.000617576 0.0376813 0.0348736 32 2036 28 6.79088e+06 269440 586450. 2029.24 1.09 0.125356 0.110303 24814 144142 -1 1804 14 700 1830 142548 30310 5.04314 5.04314 -102.725 -5.04314 0 0 744469. 2576.02 0.25 0.06 0.14 -1 -1 0.25 0.0219441 0.0195021 86 111 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_127.v common 9.28 vpr 55.17 MiB 0.05 6896 -1 -1 12 0.26 -1 -1 32796 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 16.8 MiB 2.29 1475 10263 2607 5842 1814 55.5 MiB 0.14 0.00 7.81518 -176.908 -7.81518 7.81518 0.86 0.00105558 0.000976124 0.0534854 0.0492223 38 3938 38 6.79088e+06 309856 678818. 2348.85 5.53 0.311865 0.274556 25966 169698 -1 3175 17 1566 4094 254753 52955 6.59551 6.59551 -162.987 -6.59551 0 0 902133. 3121.57 0.27 0.10 0.17 -1 -1 0.27 0.0393885 0.0350193 146 208 -1 -1 -1 -1 + fixed_k6_frac_N8_22nm.xml mult_128.v common 9.95 vpr 55.17 MiB 0.05 6884 -1 -1 14 0.35 -1 -1 32848 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56656 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 16.9 MiB 1.19 1195 12733 3723 6434 2576 55.3 MiB 0.19 0.00 9.14434 -182.838 -9.14434 9.14434 0.78 0.00105391 0.000972349 0.0776316 0.0716959 38 3582 41 6.79088e+06 296384 678818. 2348.85 3.75 0.251372 0.22153 25966 169698 -1 2689 16 1326 3877 228775 49593 7.60495 7.60495 -163.291 -7.60495 0 0 902133. 3121.57 0.28 0.10 0.16 -1 -1 0.28 0.0382861 0.0341882 151 204 -1 -1 -1 -1 + fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.81 vpr 55.09 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30408 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57280 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 17.3 MiB 1.17 895 12321 3076 8292 953 55.9 MiB 0.21 0.01 4.3249 -144.349 -4.3249 4.3249 0.78 0.000891203 0.000825776 0.0495149 0.0458312 32 3456 32 6.87369e+06 517032 586450. 2029.24 2.05 0.225291 0.196687 25474 144626 -1 2375 21 2015 3352 376702 84002 4.165 4.165 -152.752 -4.165 0 0 744469. 2576.02 0.24 0.13 0.15 -1 -1 0.24 0.0349494 0.0305329 155 96 32 32 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 7.14 vpr 55.32 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 16.8 MiB 3.43 889 13477 4603 6656 2218 55.6 MiB 0.22 0.00 4.22285 -135.326 -4.22285 4.22285 0.79 0.000792092 0.000729921 0.0631882 0.0585166 32 3121 31 6.87369e+06 321398 586450. 2029.24 1.22 0.175126 0.154956 25474 144626 -1 2227 19 1805 2980 321736 70632 4.2653 4.2653 -148.64 -4.2653 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.0304716 0.0266746 141 91 30 30 89 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 7.24 vpr 55.02 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30352 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 16.8 MiB 1.68 953 18428 5979 9684 2765 55.5 MiB 0.27 0.01 3.74716 -129.333 -3.74716 3.74716 0.79 0.000804424 0.000742595 0.0721382 0.0665119 30 2555 24 6.87369e+06 503058 556674. 1926.21 1.14 0.171609 0.152318 25186 138497 -1 1959 20 1255 1992 157512 33342 3.4085 3.4085 -127.068 -3.4085 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0307934 0.0269379 145 65 54 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.88 vpr 55.04 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30424 -1 -1 23 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 16.8 MiB 1.20 922 15090 5352 7218 2520 55.4 MiB 0.24 0.00 4.1666 -130.205 -4.1666 4.1666 0.78 0.000750285 0.000694841 0.0638364 0.0591415 34 2535 23 6.87369e+06 321398 618332. 2139.56 1.76 0.211254 0.185585 25762 151098 -1 2037 21 1820 3125 293534 62306 3.7734 3.7734 -135.656 -3.7734 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0153382 0.0135152 136 34 87 29 29 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 8.87 vpr 55.24 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30220 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56828 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 16.7 MiB 1.57 1047 14965 5078 8038 1849 55.5 MiB 0.25 0.00 4.2175 -149.421 -4.2175 4.2175 0.78 0.000810123 0.00074894 0.0677649 0.0626571 34 3065 24 6.87369e+06 293451 618332. 2139.56 1.89 0.22954 0.20153 25762 151098 -1 2471 23 2296 4252 413327 88159 3.8924 3.8924 -153.294 -3.8924 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0351029 0.030705 147 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.53 vpr 55.22 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30264 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 16.9 MiB 1.11 1041 20588 6432 11323 2833 55.8 MiB 0.29 0.00 3.55395 -124.862 -3.55395 3.55395 0.79 0.000838985 0.000774046 0.0743184 0.0686279 32 2935 41 6.87369e+06 544980 586450. 2029.24 1.21 0.197411 0.17466 25474 144626 -1 2284 20 1589 2488 250471 54156 2.97596 2.97596 -124.287 -2.97596 0 0 744469. 2576.02 0.24 0.10 0.14 -1 -1 0.24 0.0329087 0.0288834 154 64 63 32 63 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.53 vpr 54.81 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30472 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 16.3 MiB 2.03 640 10388 2730 6621 1037 54.8 MiB 0.15 0.00 3.6994 -105.15 -3.6994 3.6994 0.79 0.000618293 0.000572417 0.0401397 0.0371826 28 1909 23 6.87369e+06 279477 531479. 1839.03 1.07 0.11507 0.101301 24610 126494 -1 1613 19 1140 1839 172281 36946 2.98231 2.98231 -107.384 -2.98231 0 0 648988. 2245.63 0.21 0.07 0.13 -1 -1 0.21 0.0227076 0.0197948 102 34 54 27 27 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.38 vpr 54.80 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30068 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 16.8 MiB 0.83 969 14273 4212 7662 2399 55.5 MiB 0.19 0.00 3.61131 -114.549 -3.61131 3.61131 0.82 0.000725904 0.000671959 0.0489844 0.0453151 30 2470 20 6.87369e+06 489084 556674. 1926.21 1.16 0.13278 0.11851 25186 138497 -1 1928 19 1100 1766 126719 28446 2.81296 2.81296 -109.061 -2.81296 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0270772 0.0237204 141 4 115 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.77 vpr 54.94 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 16.6 MiB 2.42 735 9712 2823 5738 1151 55.4 MiB 0.13 0.00 3.24697 -108.666 -3.24697 3.24697 0.78 0.000712836 0.000658398 0.0432485 0.0400182 28 1948 25 6.87369e+06 223581 531479. 1839.03 0.97 0.131088 0.115454 24610 126494 -1 1700 18 919 1439 127547 28177 2.73801 2.73801 -111.083 -2.73801 0 0 648988. 2245.63 0.24 0.06 0.13 -1 -1 0.24 0.022381 0.0195992 103 85 0 0 84 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.07 vpr 54.89 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30216 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56524 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.6 MiB 3.44 706 12808 2978 8428 1402 55.2 MiB 0.14 0.00 3.8076 -131.302 -3.8076 3.8076 0.82 0.0007023 0.000649796 0.0545311 0.0504628 36 2038 25 6.87369e+06 223581 648988. 2245.63 3.76 0.258861 0.225591 26050 158493 -1 1684 21 1391 2108 172313 39454 3.10126 3.10126 -128.062 -3.10126 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0258784 0.0225957 114 34 64 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.04 vpr 54.73 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30008 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56488 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 16.3 MiB 2.84 860 11776 3165 7564 1047 55.2 MiB 0.16 0.00 3.7375 -122.128 -3.7375 3.7375 0.78 0.000701139 0.000648292 0.0500904 0.0463208 34 1948 24 6.87369e+06 251529 618332. 2139.56 3.04 0.21292 0.185575 25762 151098 -1 1682 17 1107 1637 134273 29951 3.06651 3.06651 -119.718 -3.06651 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0238555 0.0208584 109 63 30 30 60 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.81 vpr 54.77 MiB 0.03 6920 -1 -1 1 0.03 -1 -1 30328 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56320 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 16.4 MiB 1.27 881 15207 4108 9975 1124 55.0 MiB 0.19 0.00 3.45001 -118.108 -3.45001 3.45001 0.78 0.000723274 0.000661373 0.0519733 0.0479239 34 2216 20 6.87369e+06 447163 618332. 2139.56 1.68 0.183934 0.16099 25762 151098 -1 1828 19 1165 1948 196597 39780 2.67096 2.67096 -112.436 -2.67096 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0263658 0.0229729 116 65 25 25 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.70 vpr 55.04 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30100 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 16.8 MiB 4.13 958 19935 5624 11872 2439 55.6 MiB 0.29 0.01 3.64005 -125.972 -3.64005 3.64005 0.78 0.000820277 0.000758929 0.074292 0.0685984 34 2675 21 6.87369e+06 489084 618332. 2139.56 1.80 0.233186 0.205378 25762 151098 -1 2191 19 1661 2748 238239 53745 3.16086 3.16086 -124.987 -3.16086 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0286645 0.0251853 147 58 64 32 57 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 6.41 vpr 55.07 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30308 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.8 MiB 2.01 1059 21016 6637 11817 2562 55.6 MiB 0.30 0.01 4.34584 -150.842 -4.34584 4.34584 0.78 0.000849004 0.000785701 0.0790069 0.0730165 30 2673 25 6.87369e+06 517032 556674. 1926.21 1.09 0.183377 0.162938 25186 138497 -1 2249 20 1566 2558 195970 42249 3.9034 3.9034 -150.113 -3.9034 0 0 706193. 2443.58 0.23 0.11 0.14 -1 -1 0.23 0.038608 0.0336675 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.28 vpr 54.61 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30548 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 16.4 MiB 1.70 791 11776 3380 6895 1501 54.9 MiB 0.14 0.00 3.6364 -112.843 -3.6364 3.6364 0.79 0.000625043 0.000578081 0.0447886 0.0414681 32 2063 24 6.87369e+06 265503 586450. 2029.24 1.01 0.121353 0.106993 25474 144626 -1 1804 22 1150 1893 198261 42627 3.15791 3.15791 -114.173 -3.15791 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0261368 0.0227035 102 29 58 29 24 24 + fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.69 vpr 55.10 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57056 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 16.9 MiB 2.33 930 14221 5969 7807 445 55.7 MiB 0.23 0.00 3.52575 -124.171 -3.52575 3.52575 0.92 0.000834419 0.000771004 0.06637 0.0613734 36 2588 24 6.87369e+06 293451 648988. 2245.63 1.95 0.234467 0.205934 26050 158493 -1 2019 22 1887 3285 276413 61675 3.42516 3.42516 -127.907 -3.42516 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0348228 0.0304697 145 63 64 32 62 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 8.63 vpr 55.11 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30172 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 16.7 MiB 4.08 1056 17238 4537 10962 1739 55.5 MiB 0.23 0.01 3.55695 -127.024 -3.55695 3.55695 0.79 0.000822425 0.00076167 0.0614201 0.0567115 28 2543 23 6.87369e+06 531006 531479. 1839.03 1.07 0.156291 0.138555 24610 126494 -1 2271 15 1352 1958 186271 38351 2.86466 2.86466 -124.633 -2.86466 0 0 648988. 2245.63 0.24 0.08 0.13 -1 -1 0.24 0.0253117 0.022283 148 57 64 32 56 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.92 vpr 55.00 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30056 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 16.5 MiB 2.16 836 17103 4501 10697 1905 55.4 MiB 0.22 0.00 3.09156 -112.02 -3.09156 3.09156 0.78 0.000736125 0.00068091 0.0620204 0.0573601 26 2230 36 6.87369e+06 405241 503264. 1741.40 1.48 0.164461 0.145267 24322 120374 -1 2035 25 1343 2071 218189 48579 2.56377 2.56377 -110.713 -2.56377 0 0 618332. 2139.56 0.21 0.10 0.12 -1 -1 0.21 0.0331022 0.0287403 117 65 29 29 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.50 vpr 54.55 MiB 0.04 6660 -1 -1 1 0.03 -1 -1 30000 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55920 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 16.1 MiB 0.49 560 9036 3714 4978 344 54.6 MiB 0.09 0.00 2.94056 -94.1681 -2.94056 2.94056 0.81 0.000549755 0.000508681 0.0321779 0.0297188 28 1632 30 6.87369e+06 195634 531479. 1839.03 1.04 0.104308 0.0911633 24610 126494 -1 1356 18 720 1022 89298 20607 2.29547 2.29547 -92.8103 -2.29547 0 0 648988. 2245.63 0.21 0.05 0.13 -1 -1 0.21 0.0191169 0.0165842 73 34 24 24 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 7.10 vpr 54.91 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30288 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56392 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 16.4 MiB 1.19 944 12636 3568 7641 1427 55.1 MiB 0.17 0.00 4.39847 -135.821 -4.39847 4.39847 0.79 0.00072696 0.000673372 0.0561345 0.0520114 32 2256 21 6.87369e+06 237555 586450. 2029.24 1.00 0.141547 0.125625 25474 144626 -1 1917 20 1020 1518 166618 33866 3.4178 3.4178 -128.066 -3.4178 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0278307 0.0243009 113 64 31 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.41 vpr 55.22 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30076 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56924 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 16.8 MiB 0.85 894 19124 5624 10425 3075 55.6 MiB 0.26 0.00 4.20059 -139.885 -4.20059 4.20059 0.78 0.000785126 0.000725867 0.0684513 0.0632419 34 2601 23 6.87369e+06 503058 618332. 2139.56 1.73 0.224746 0.197708 25762 151098 -1 1988 20 1674 2373 228179 49576 3.8767 3.8767 -138.505 -3.8767 0 0 787024. 2723.27 0.28 0.06 0.15 -1 -1 0.28 0.0190559 0.0169918 150 34 91 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.37 vpr 55.19 MiB 0.05 7316 -1 -1 1 0.03 -1 -1 30576 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 17.2 MiB 2.74 951 19380 5821 10599 2960 55.9 MiB 0.29 0.01 3.81248 -128.436 -3.81248 3.81248 0.78 0.000924302 0.000854212 0.0760948 0.0701951 34 2793 27 6.87369e+06 558954 618332. 2139.56 3.69 0.338967 0.295043 25762 151098 -1 2010 20 1489 2271 210689 46809 3.7314 3.7314 -130.657 -3.7314 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0345404 0.0300923 154 124 0 0 125 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.39 vpr 54.39 MiB 0.04 6772 -1 -1 1 0.02 -1 -1 30496 -1 -1 16 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 16.0 MiB 1.71 600 9219 3759 4898 562 54.5 MiB 0.09 0.00 2.91856 -82.7442 -2.91856 2.91856 0.81 0.000482295 0.000445769 0.0300661 0.0277963 28 1391 16 6.87369e+06 223581 531479. 1839.03 0.91 0.082651 0.0727941 24610 126494 -1 1274 19 709 1086 97848 21852 2.15012 2.15012 -81.0459 -2.15012 0 0 648988. 2245.63 0.22 0.05 0.13 -1 -1 0.22 0.0176397 0.0152876 69 30 26 26 22 22 + fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.06 vpr 54.92 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 29952 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56728 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 16.7 MiB 1.21 1038 9757 2635 6591 531 55.4 MiB 0.17 0.01 4.1666 -141.416 -4.1666 4.1666 0.79 0.000750463 0.000694922 0.0417406 0.0386639 34 2849 25 6.87369e+06 293451 618332. 2139.56 1.72 0.164872 0.144611 25762 151098 -1 2149 22 1877 3114 262692 60108 3.971 3.971 -146.122 -3.971 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0312551 0.0273374 141 3 122 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.16 vpr 54.39 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30224 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55712 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 15.9 MiB 0.39 506 9516 2238 6770 508 54.4 MiB 0.09 0.00 2.55523 -88.1124 -2.55523 2.55523 0.82 0.000353445 0.000319282 0.0261318 0.0238544 34 1379 23 6.87369e+06 167686 618332. 2139.56 1.37 0.113139 0.0985076 25762 151098 -1 1186 16 589 739 57202 14357 2.08317 2.08317 -88.0105 -2.08317 0 0 787024. 2723.27 0.25 0.04 0.15 -1 -1 0.25 0.0164886 0.0144948 71 3 53 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.42 vpr 55.06 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30544 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 16.6 MiB 0.72 1092 17964 4627 11625 1712 55.4 MiB 0.26 0.01 4.26205 -149.131 -4.26205 4.26205 0.79 0.000812794 0.000743292 0.0650763 0.0601334 34 2731 22 6.87369e+06 503058 618332. 2139.56 3.70 0.266811 0.234331 25762 151098 -1 2347 25 1909 2745 262335 55271 3.7953 3.7953 -146.529 -3.7953 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0369565 0.0322593 155 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.91 vpr 55.14 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 29996 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.7 MiB 0.79 964 9612 2267 6482 863 55.5 MiB 0.16 0.00 3.55269 -121.215 -3.55269 3.55269 0.81 0.000762541 0.000704503 0.034539 0.0318946 32 2790 24 6.87369e+06 503058 586450. 2029.24 1.16 0.132262 0.116287 25474 144626 -1 2159 22 1627 2614 248004 54455 2.96796 2.96796 -121.001 -2.96796 0 0 744469. 2576.02 0.24 0.10 0.14 -1 -1 0.24 0.0315028 0.0275602 151 3 124 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.77 vpr 55.22 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30416 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 16.9 MiB 0.90 1088 13358 3512 8899 947 55.7 MiB 0.22 0.01 4.2809 -148.724 -4.2809 4.2809 0.78 0.000854224 0.000790051 0.0506107 0.0467599 28 2976 28 6.87369e+06 544980 531479. 1839.03 3.53 0.272801 0.237908 24610 126494 -1 2550 20 1992 3369 314920 67275 3.8734 3.8734 -150.357 -3.8734 0 0 648988. 2245.63 0.22 0.11 0.13 -1 -1 0.22 0.0328694 0.0286624 156 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.39 vpr 54.91 MiB 0.04 6748 -1 -1 1 0.03 -1 -1 29988 -1 -1 15 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56204 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 16.3 MiB 0.87 734 6839 1724 4743 372 54.9 MiB 0.11 0.00 3.07332 -108.035 -3.07332 3.07332 0.79 0.000673627 0.000623409 0.029149 0.0269846 34 2087 23 6.87369e+06 209608 618332. 2139.56 1.53 0.161406 0.140176 25762 151098 -1 1683 18 1057 1708 149535 33389 2.73466 2.73466 -111.64 -2.73466 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.024162 0.0211474 104 34 54 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.67 vpr 54.77 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30168 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56200 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 16.3 MiB 0.98 856 11260 3834 5392 2034 54.9 MiB 0.15 0.00 3.7936 -125.971 -3.7936 3.7936 0.83 0.000667079 0.000616784 0.0463777 0.0429456 32 2219 21 6.87369e+06 251529 586450. 2029.24 1.04 0.125367 0.110702 25474 144626 -1 1733 22 1340 1951 184834 40027 3.21861 3.21861 -124.254 -3.21861 0 0 744469. 2576.02 0.25 0.10 0.15 -1 -1 0.25 0.0358157 0.0312012 109 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.90 vpr 54.64 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30108 -1 -1 19 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56248 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 16.4 MiB 0.98 743 13092 5209 6121 1762 54.9 MiB 0.16 0.00 3.48175 -108.034 -3.48175 3.48175 0.86 0.000464382 0.000422804 0.038186 0.0348349 28 2259 26 6.87369e+06 265503 531479. 1839.03 1.15 0.117346 0.102739 24610 126494 -1 1875 21 1326 2212 209433 45791 3.19356 3.19356 -120.046 -3.19356 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.0254602 0.0221398 104 34 56 28 28 28 + fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.77 vpr 54.73 MiB 0.04 6692 -1 -1 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56256 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.4 MiB 1.12 861 14700 5460 6955 2285 54.9 MiB 0.10 0.00 3.58201 -129.205 -3.58201 3.58201 0.76 0.000286959 0.000261745 0.0260109 0.0237971 34 2299 21 6.87369e+06 223581 618332. 2139.56 1.32 0.114924 0.099701 25762 151098 -1 1972 22 1561 2562 248423 51074 2.98996 2.98996 -127.676 -2.98996 0 0 787024. 2723.27 0.22 0.05 0.10 -1 -1 0.22 0.0140391 0.0122894 114 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.44 vpr 54.82 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30288 -1 -1 32 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 16.4 MiB 0.72 924 11975 3064 7554 1357 55.0 MiB 0.16 0.00 3.50375 -121.402 -3.50375 3.50375 0.78 0.000680283 0.00062849 0.039801 0.036793 32 2461 24 6.87369e+06 447163 586450. 2029.24 1.03 0.123659 0.108847 25474 144626 -1 2015 21 1378 2178 226315 48894 3.10126 3.10126 -123.592 -3.10126 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0270853 0.0235854 119 34 61 31 31 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.39 vpr 54.87 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30040 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56464 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 16.4 MiB 2.59 824 15003 4455 7859 2689 55.1 MiB 0.18 0.00 2.90021 -94.838 -2.90021 2.90021 0.79 0.000682636 0.000629169 0.050826 0.0469128 34 1790 20 6.87369e+06 447163 618332. 2139.56 1.51 0.181791 0.158993 25762 151098 -1 1473 22 1204 1983 170650 36726 2.15482 2.15482 -87.5068 -2.15482 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0283851 0.0247032 113 61 29 29 57 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.30 vpr 55.45 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30356 -1 -1 44 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57272 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 17.1 MiB 3.74 1315 20411 5511 12546 2354 55.9 MiB 0.35 0.01 4.25391 -147.758 -4.25391 4.25391 0.79 0.000905594 0.000837011 0.0751497 0.0693763 28 3519 42 6.87369e+06 614849 531479. 1839.03 2.59 0.220926 0.195731 24610 126494 -1 3002 23 2374 4134 394775 84463 3.8924 3.8924 -153.788 -3.8924 0 0 648988. 2245.63 0.21 0.14 0.13 -1 -1 0.21 0.0392605 0.0343447 184 29 128 32 27 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.96 vpr 55.50 MiB 0.05 7080 -1 -1 1 0.04 -1 -1 30300 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57132 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 17.0 MiB 2.69 1049 18419 4848 10881 2690 55.8 MiB 0.25 0.01 3.66825 -130.624 -3.66825 3.66825 0.79 0.000838414 0.000775882 0.0668025 0.061716 32 2676 20 6.87369e+06 544980 586450. 2029.24 1.06 0.16439 0.146037 25474 144626 -1 2168 20 1841 2718 280411 56383 2.90386 2.90386 -124.352 -2.90386 0 0 744469. 2576.02 0.25 0.10 0.15 -1 -1 0.25 0.0279964 0.0246718 154 65 62 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 6.91 vpr 54.96 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 16.7 MiB 3.14 881 17134 5393 9307 2434 55.4 MiB 0.23 0.00 3.56305 -119.83 -3.56305 3.56305 0.79 0.000736563 0.000680365 0.0636279 0.0586938 34 1902 21 6.87369e+06 433189 618332. 2139.56 1.62 0.205626 0.180275 25762 151098 -1 1734 22 1123 1765 160585 34701 2.76901 2.76901 -110.136 -2.76901 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0297732 0.0258815 116 90 0 0 89 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 7.20 vpr 55.19 MiB 0.04 7180 -1 -1 1 0.03 -1 -1 30240 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 16.8 MiB 1.74 1019 8641 2131 5612 898 55.6 MiB 0.17 0.00 3.59121 -120.774 -3.59121 3.59121 0.79 0.000826546 0.000763798 0.0406886 0.037664 34 2669 38 6.87369e+06 307425 618332. 2139.56 1.78 0.221205 0.192956 25762 151098 -1 2245 18 1626 2631 257169 54704 3.24216 3.24216 -123.479 -3.24216 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0290779 0.0255217 141 64 60 30 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 8.88 vpr 55.40 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30300 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 17.1 MiB 4.70 1071 16825 7101 8757 967 55.8 MiB 0.28 0.01 4.97069 -151.888 -4.97069 4.97069 0.79 0.000899842 0.000832293 0.085008 0.0787505 34 2828 30 6.87369e+06 307425 618332. 2139.56 2.12 0.274333 0.240804 25762 151098 -1 2357 21 1543 2502 259073 52983 4.35625 4.35625 -150.665 -4.35625 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0358352 0.0312239 145 124 0 0 124 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 8.25 vpr 55.18 MiB 0.04 7272 -1 -1 1 0.03 -1 -1 30244 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56984 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 16.9 MiB 1.70 980 12175 3299 8119 757 55.6 MiB 0.20 0.00 4.75154 -140.36 -4.75154 4.75154 0.78 0.000841265 0.000778578 0.0576829 0.0533963 34 2546 25 6.87369e+06 307425 618332. 2139.56 1.91 0.226493 0.198647 25762 151098 -1 2138 19 1436 2308 211264 46103 3.7011 3.7011 -139.741 -3.7011 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0319708 0.0280633 141 90 31 31 89 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.64 vpr 55.27 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 17.0 MiB 2.31 1053 19023 5653 10954 2416 55.6 MiB 0.27 0.01 3.64005 -125.414 -3.64005 3.64005 0.80 0.000815725 0.000754377 0.0716263 0.0661693 34 2438 22 6.87369e+06 503058 618332. 2139.56 1.73 0.237004 0.208214 25762 151098 -1 2015 22 1832 2978 268710 57273 2.97896 2.97896 -122.08 -2.97896 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0340209 0.0297568 148 64 60 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 7.46 vpr 54.99 MiB 0.03 7148 -1 -1 1 0.03 -1 -1 30332 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 16.9 MiB 1.71 1150 19618 5466 12522 1630 55.7 MiB 0.29 0.01 4.1996 -145.707 -4.1996 4.1996 0.81 0.000837412 0.000774678 0.0713682 0.0659064 28 3251 24 6.87369e+06 531006 531479. 1839.03 5.41 0.312115 0.273278 24610 126494 -1 2631 22 2061 3263 360463 72578 4.1633 4.1633 -153.028 -4.1633 0 0 648988. 2245.63 0.21 0.12 0.13 -1 -1 0.21 0.0345405 0.0301711 156 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 7.53 vpr 55.79 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30468 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57500 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 17.3 MiB 2.87 1303 13356 3327 8820 1209 56.2 MiB 0.24 0.01 4.31511 -149.42 -4.31511 4.31511 0.81 0.000794013 0.000726207 0.0528489 0.0485817 28 3479 42 6.87369e+06 586901 531479. 1839.03 1.65 0.203638 0.178906 24610 126494 -1 2859 21 2184 3519 341649 86796 4.068 4.068 -153.969 -4.068 0 0 648988. 2245.63 0.21 0.13 0.15 -1 -1 0.21 0.039951 0.0349379 186 96 62 32 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.60 vpr 54.77 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 16.4 MiB 1.76 908 12636 4255 7048 1333 55.0 MiB 0.18 0.00 3.7654 -130.371 -3.7654 3.7654 0.78 0.000680825 0.00063023 0.05227 0.0483858 32 2444 26 6.87369e+06 237555 586450. 2029.24 1.61 0.177582 0.155976 25474 144626 -1 1997 19 1380 2189 253007 50669 3.04031 3.04031 -127.245 -3.04031 0 0 744469. 2576.02 0.26 0.09 0.15 -1 -1 0.26 0.0229306 0.0201481 112 34 62 31 31 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.32 vpr 55.09 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30224 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56928 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 16.8 MiB 2.41 1036 19820 6398 10981 2441 55.6 MiB 0.27 0.00 4.25889 -142.345 -4.25889 4.25889 0.79 0.000500587 0.000468348 0.0685228 0.0631143 32 3074 50 6.87369e+06 517032 586450. 2029.24 1.52 0.200767 0.176964 25474 144626 -1 2324 22 1864 2990 312759 68331 4.0207 4.0207 -147.051 -4.0207 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.033843 0.0295326 152 64 62 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.99 vpr 55.21 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30488 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 16.8 MiB 1.83 1118 16515 4839 10227 1449 55.7 MiB 0.27 0.01 3.56001 -125.702 -3.56001 3.56001 0.81 0.000828174 0.00076572 0.0667847 0.0617421 28 3021 24 6.87369e+06 489084 531479. 1839.03 1.58 0.167314 0.148417 24610 126494 -1 2615 22 1771 3016 325176 70417 3.56776 3.56776 -133.37 -3.56776 0 0 648988. 2245.63 0.21 0.12 0.13 -1 -1 0.21 0.0356036 0.0311296 150 63 62 32 62 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.30 vpr 55.06 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.8 MiB 1.34 942 16081 4088 11306 687 55.5 MiB 0.25 0.00 4.1996 -144.758 -4.1996 4.1996 0.78 0.000770189 0.000713207 0.0689725 0.0638817 32 3838 45 6.87369e+06 293451 586450. 2029.24 2.22 0.211454 0.187272 25474 144626 -1 2552 22 2101 3718 392075 88502 4.3856 4.3856 -161.51 -4.3856 0 0 744469. 2576.02 0.24 0.13 0.17 -1 -1 0.24 0.032526 0.0284998 147 3 128 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.61 vpr 55.04 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30420 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 17.0 MiB 3.47 1066 20980 7180 11264 2536 55.8 MiB 0.29 0.00 3.54349 -125.696 -3.54349 3.54349 0.84 0.000739988 0.000673986 0.0736182 0.0676515 34 2382 19 6.87369e+06 503058 618332. 2139.56 1.78 0.239231 0.210236 25762 151098 -1 2059 20 1553 2377 204278 44081 3.11056 3.11056 -122.373 -3.11056 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0326235 0.0285057 148 96 25 25 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.87 vpr 55.42 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30124 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56956 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 16.8 MiB 3.40 1032 19142 4987 12020 2135 55.6 MiB 0.27 0.01 3.61805 -127.505 -3.61805 3.61805 0.79 0.000831567 0.000768543 0.0687039 0.0635399 28 2612 28 6.87369e+06 544980 531479. 1839.03 1.47 0.177225 0.157166 24610 126494 -1 2209 23 1405 2576 228128 54501 3.45816 3.45816 -130.308 -3.45816 0 0 648988. 2245.63 0.22 0.10 0.13 -1 -1 0.22 0.0358702 0.0313543 152 61 64 32 60 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 10.09 vpr 55.31 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30296 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 16.9 MiB 2.63 1111 18648 5184 11229 2235 55.6 MiB 0.26 0.01 3.58025 -126.995 -3.58025 3.58025 0.78 0.000842626 0.000779658 0.067396 0.0622108 32 2996 26 6.87369e+06 558954 586450. 2029.24 1.10 0.172336 0.152695 25474 144626 -1 2349 20 1782 2831 316070 65946 3.04626 3.04626 -125.689 -3.04626 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0322262 0.0282029 156 65 63 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.87 vpr 54.86 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56860 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 16.7 MiB 0.80 973 12876 3455 7707 1714 55.5 MiB 0.16 0.00 4.3249 -147.802 -4.3249 4.3249 0.79 0.000801766 0.000741517 0.0454763 0.0420494 34 2955 22 6.87369e+06 544980 618332. 2139.56 2.39 0.20781 0.18251 25762 151098 -1 2334 22 1977 3105 248054 59141 3.8564 3.8564 -150.074 -3.8564 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0335866 0.0293991 156 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.85 vpr 55.12 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30600 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 16.9 MiB 2.55 1087 15172 3966 9854 1352 55.8 MiB 0.24 0.01 4.1996 -143.047 -4.1996 4.1996 0.79 0.000617014 0.000562103 0.0545072 0.0503184 34 2589 26 6.87369e+06 572927 618332. 2139.56 2.19 0.230339 0.202034 25762 151098 -1 2318 20 1991 3188 306028 64645 3.9114 3.9114 -149.692 -3.9114 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0321283 0.0281589 157 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 9.59 vpr 55.20 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30332 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57152 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 17.1 MiB 3.68 988 19356 5396 10906 3054 55.8 MiB 0.30 0.01 4.16785 -135.645 -4.16785 4.16785 0.81 0.000896837 0.000825344 0.0772617 0.0713578 30 2560 23 6.87369e+06 517032 556674. 1926.21 1.25 0.184112 0.163075 25186 138497 -1 2036 20 1385 2303 176840 37835 3.7104 3.7104 -131.155 -3.7104 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0338046 0.0294351 150 122 0 0 122 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.42 vpr 55.21 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 16.9 MiB 2.63 1079 15709 4633 9421 1655 55.9 MiB 0.14 0.00 4.13359 -143.515 -4.13359 4.13359 0.79 0.000383601 0.000350582 0.0337204 0.030835 34 3091 27 6.87369e+06 293451 618332. 2139.56 1.91 0.214596 0.18644 25762 151098 -1 2493 23 2106 3878 346569 76160 3.808 3.808 -146.549 -3.808 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.037839 0.033038 145 94 32 32 94 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.59 vpr 54.74 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30348 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56652 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 16.5 MiB 0.83 919 15426 4260 9754 1412 55.3 MiB 0.18 0.00 3.51475 -125.544 -3.51475 3.51475 0.87 0.000563401 0.000516056 0.0408053 0.0372666 32 2502 23 6.87369e+06 447163 586450. 2029.24 1.04 0.125115 0.109829 25474 144626 -1 2028 21 1419 2100 231013 47999 2.89626 2.89626 -123.549 -2.89626 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0278087 0.0242524 121 34 63 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.44 vpr 55.13 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 16.6 MiB 2.89 953 12980 4579 7047 1354 55.4 MiB 0.20 0.00 3.6884 -132.193 -3.6884 3.6884 0.84 0.000551569 0.00050039 0.0589523 0.054329 32 2514 23 6.87369e+06 223581 586450. 2029.24 1.12 0.143974 0.127484 25474 144626 -1 2183 26 1558 2421 278355 57411 3.18556 3.18556 -133.388 -3.18556 0 0 744469. 2576.02 0.24 0.11 0.15 -1 -1 0.24 0.036378 0.0315702 112 94 0 0 94 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.02 vpr 55.43 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30596 -1 -1 44 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 17.1 MiB 1.84 1419 16556 4403 10830 1323 55.6 MiB 0.28 0.01 4.99284 -170.715 -4.99284 4.99284 0.78 0.000955956 0.000884694 0.0646907 0.0598137 28 3994 50 6.87369e+06 614849 531479. 1839.03 2.56 0.224852 0.197637 24610 126494 -1 3262 28 3071 5173 640962 159943 5.15175 5.15175 -184.104 -5.15175 0 0 648988. 2245.63 0.21 0.20 0.13 -1 -1 0.21 0.0487031 0.0424328 189 65 96 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 9.13 vpr 55.15 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30324 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 16.8 MiB 2.50 1069 15831 4027 10006 1798 55.6 MiB 0.24 0.01 3.59121 -127.943 -3.59121 3.59121 0.79 0.000797105 0.000735784 0.0582334 0.0537029 26 2789 27 6.87369e+06 489084 503264. 1741.40 1.29 0.161161 0.142415 24322 120374 -1 2436 34 2265 3380 289937 62279 3.25476 3.25476 -133.033 -3.25476 0 0 618332. 2139.56 0.21 0.13 0.12 -1 -1 0.21 0.0472538 0.041045 150 34 92 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.21 vpr 54.86 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30136 -1 -1 31 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56332 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 16.4 MiB 0.64 823 15633 5297 7776 2560 55.0 MiB 0.18 0.00 3.51601 -116.196 -3.51601 3.51601 0.84 0.00047624 0.000433183 0.0383161 0.0348925 28 2073 25 6.87369e+06 433189 531479. 1839.03 1.07 0.118852 0.103906 24610 126494 -1 1792 21 1273 1941 190005 41190 2.94296 2.94296 -117.741 -2.94296 0 0 648988. 2245.63 0.22 0.08 0.13 -1 -1 0.22 0.0265068 0.0230463 116 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.20 vpr 55.48 MiB 0.05 7360 -1 -1 1 0.03 -1 -1 30780 -1 -1 47 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 17.4 MiB 5.23 1193 22455 6528 13018 2909 55.9 MiB 0.34 0.01 4.91264 -167.151 -4.91264 4.91264 0.81 0.00103258 0.00095556 0.0813468 0.0747988 34 3197 25 6.87369e+06 656770 618332. 2139.56 3.83 0.34751 0.303812 25762 151098 -1 2491 18 2150 3394 330141 68182 4.40195 4.40195 -166.047 -4.40195 0 0 787024. 2723.27 0.22 0.07 0.16 -1 -1 0.22 0.0189458 0.0167958 190 127 32 32 128 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 7.05 vpr 55.19 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30412 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 16.9 MiB 2.78 975 19868 5843 10688 3337 55.6 MiB 0.25 0.00 4.28153 -144.516 -4.28153 4.28153 0.78 0.000816662 0.000756032 0.0689303 0.0637773 32 2856 45 6.87369e+06 558954 586450. 2029.24 1.43 0.193285 0.171 25474 144626 -1 2042 20 1784 2638 286672 58798 3.692 3.692 -144.147 -3.692 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0317737 0.0278976 156 34 96 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.58 vpr 54.80 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30188 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56216 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.3 MiB 0.59 857 11197 2857 7409 931 54.9 MiB 0.16 0.00 3.64005 -128.736 -3.64005 3.64005 0.79 0.000675634 0.000626185 0.0360361 0.0333777 30 2178 23 6.87369e+06 461137 556674. 1926.21 1.02 0.117917 0.103971 25186 138497 -1 1775 21 1230 1970 151074 32661 2.83966 2.83966 -121.177 -2.83966 0 0 706193. 2443.58 0.23 0.08 0.13 -1 -1 0.23 0.0265588 0.0231439 123 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 11.38 vpr 55.31 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30816 -1 -1 45 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57276 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 17.1 MiB 2.51 1249 21169 5887 12519 2763 55.9 MiB 0.33 0.01 4.9297 -168.732 -4.9297 4.9297 0.79 0.000929536 0.000861766 0.0792411 0.073446 28 3386 22 6.87369e+06 628823 531479. 1839.03 1.59 0.195608 0.174091 24610 126494 -1 2946 22 2710 4692 480536 102974 4.96875 4.96875 -181.051 -4.96875 0 0 648988. 2245.63 0.22 0.15 0.15 -1 -1 0.22 0.0387993 0.0338934 189 34 128 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.23 vpr 54.79 MiB 0.05 6776 -1 -1 1 0.03 -1 -1 30092 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56148 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 0.86 806 12292 2857 8871 564 54.8 MiB 0.16 0.00 3.7764 -134.344 -3.7764 3.7764 0.84 0.000482854 0.000439661 0.0454187 0.0418669 34 2164 21 6.87369e+06 223581 618332. 2139.56 1.63 0.176053 0.153882 25762 151098 -1 1866 19 1444 2279 206960 44293 3.24861 3.24861 -134.145 -3.24861 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0248815 0.0217718 114 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.35 vpr 54.89 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30236 -1 -1 33 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56344 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 16.6 MiB 2.11 719 10463 2628 6946 889 55.0 MiB 0.16 0.00 3.56001 -114.458 -3.56001 3.56001 0.79 0.000684468 0.000634977 0.0351102 0.0324761 28 1981 24 6.87369e+06 461137 531479. 1839.03 1.07 0.117464 0.103231 24610 126494 -1 1811 20 1338 2196 193261 43933 3.04926 3.04926 -120.3 -3.04926 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.0256956 0.0223945 118 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.73 vpr 55.40 MiB 0.05 7144 -1 -1 1 0.04 -1 -1 30356 -1 -1 35 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 16.9 MiB 3.02 1008 14550 3923 8443 2184 55.7 MiB 0.21 0.00 3.54707 -114.227 -3.54707 3.54707 0.79 0.000802264 0.000741516 0.055891 0.0516751 34 2477 22 6.87369e+06 489084 618332. 2139.56 1.85 0.215467 0.188798 25762 151098 -1 2041 18 1492 2496 220761 49447 3.06026 3.06026 -116.465 -3.06026 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0285126 0.0249773 141 88 29 29 85 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.77 vpr 55.12 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 2.03 854 12175 2685 7576 1914 55.7 MiB 0.16 0.00 4.2388 -146.065 -4.2388 4.2388 0.78 0.000839215 0.000775802 0.057552 0.0532535 34 2701 21 6.87369e+06 293451 618332. 2139.56 1.93 0.221189 0.194156 25762 151098 -1 2095 22 2113 3203 298788 67400 3.8814 3.8814 -153.436 -3.8814 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0351834 0.0307011 147 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 8.90 vpr 55.05 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30672 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.9 MiB 3.67 1100 18901 5336 11603 1962 55.8 MiB 0.27 0.01 4.27679 -150.534 -4.27679 4.27679 0.79 0.00085318 0.000782571 0.0709524 0.0655659 30 2755 22 6.87369e+06 517032 556674. 1926.21 1.19 0.17238 0.153139 25186 138497 -1 2296 22 1746 2869 238082 49702 3.7954 3.7954 -147.423 -3.7954 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.034702 0.0303194 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 9.24 vpr 54.90 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30432 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56712 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 16.6 MiB 2.77 825 17191 6233 8742 2216 55.4 MiB 0.21 0.00 3.60705 -126.657 -3.60705 3.60705 0.78 0.000747638 0.000684375 0.0600503 0.0554365 36 2015 20 6.87369e+06 461137 648988. 2245.63 1.69 0.203227 0.178419 26050 158493 -1 1687 20 1364 2004 159771 36079 2.98526 2.98526 -118.844 -2.98526 0 0 828058. 2865.25 0.29 0.07 0.15 -1 -1 0.29 0.0240534 0.0211418 123 65 32 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.06 vpr 54.94 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56384 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 16.5 MiB 3.46 738 4456 873 3135 448 55.1 MiB 0.09 0.00 3.6994 -119.902 -3.6994 3.6994 0.79 0.000731908 0.000676962 0.0207935 0.0192509 34 2166 19 6.87369e+06 251529 618332. 2139.56 1.68 0.160973 0.139233 25762 151098 -1 1843 20 1296 2275 198451 45228 2.92101 2.92101 -115.635 -2.92101 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0280947 0.024486 108 90 0 0 89 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.42 vpr 55.21 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30320 -1 -1 34 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 16.8 MiB 2.84 914 16740 4391 9932 2417 55.5 MiB 0.24 0.00 3.59605 -116.379 -3.59605 3.59605 0.78 0.000782319 0.00072389 0.0627512 0.0580763 36 1934 22 6.87369e+06 475111 648988. 2245.63 3.62 0.273718 0.238761 26050 158493 -1 1649 20 1161 1858 128532 30053 2.71266 2.71266 -105.41 -2.71266 0 0 828058. 2865.25 0.26 0.07 0.15 -1 -1 0.26 0.030142 0.0263731 143 60 60 30 57 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.96 vpr 54.86 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30320 -1 -1 35 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56844 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 16.8 MiB 1.46 905 12191 3346 7959 886 55.5 MiB 0.17 0.00 4.19891 -125.962 -4.19891 4.19891 0.78 0.000722521 0.000669031 0.0432582 0.0399975 28 2288 22 6.87369e+06 489084 531479. 1839.03 3.23 0.22889 0.199304 24610 126494 -1 2126 20 1575 2558 233066 49556 3.9657 3.9657 -131.64 -3.9657 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.0279573 0.0244394 139 34 84 28 28 28 + fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.78 vpr 54.86 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30028 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56740 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 16.6 MiB 2.23 882 11432 3518 6484 1430 55.4 MiB 0.16 0.00 3.7324 -126.153 -3.7324 3.7324 0.78 0.000710735 0.000657257 0.0493959 0.0457424 30 2122 21 6.87369e+06 251529 556674. 1926.21 1.02 0.132068 0.116768 25186 138497 -1 1811 19 1105 1746 155853 31047 2.82871 2.82871 -117.627 -2.82871 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0258524 0.0225531 110 63 30 30 60 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.29 vpr 55.07 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56472 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 16.5 MiB 2.94 904 14256 4718 7453 2085 55.1 MiB 0.20 0.00 3.6144 -123.374 -3.6144 3.6144 0.79 0.0007527 0.000695016 0.0638053 0.0589899 34 2187 23 6.87369e+06 237555 618332. 2139.56 1.55 0.212209 0.186268 25762 151098 -1 1905 19 1117 1836 170529 36037 2.94131 2.94131 -121.588 -2.94131 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0276237 0.0241042 110 91 0 0 91 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.95 vpr 55.00 MiB 0.02 6892 -1 -1 1 0.04 -1 -1 30312 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56764 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 16.9 MiB 0.80 962 16804 5215 8614 2975 55.4 MiB 0.24 0.01 4.24789 -140.354 -4.24789 4.24789 0.79 0.000751171 0.000695034 0.0574288 0.0531552 28 3244 22 6.87369e+06 517032 531479. 1839.03 1.82 0.149405 0.132559 24610 126494 -1 2364 23 2045 3247 311101 68900 4.013 4.013 -147.381 -4.013 0 0 648988. 2245.63 0.22 0.11 0.13 -1 -1 0.22 0.03262 0.0284996 151 4 124 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.15 vpr 55.25 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30484 -1 -1 38 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 16.7 MiB 3.65 1093 19380 5712 11198 2470 55.6 MiB 0.26 0.01 4.29189 -149.386 -4.29189 4.29189 0.85 0.000596925 0.000541136 0.0631552 0.0581038 28 3094 23 6.87369e+06 531006 531479. 1839.03 1.37 0.162929 0.14415 24610 126494 -1 2636 21 2017 3493 348626 74415 4.154 4.154 -157.069 -4.154 0 0 648988. 2245.63 0.22 0.12 0.13 -1 -1 0.22 0.0335637 0.0293663 156 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.93 vpr 55.21 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30204 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.9 MiB 3.40 1146 17256 4889 10338 2029 55.8 MiB 0.25 0.01 4.30289 -150.744 -4.30289 4.30289 0.78 0.000855218 0.000791648 0.0652979 0.0603901 30 2874 20 6.87369e+06 517032 556674. 1926.21 1.18 0.153408 0.136492 25186 138497 -1 2267 22 1603 2677 187101 42313 3.7751 3.7751 -150.357 -3.7751 0 0 706193. 2443.58 0.25 0.08 0.16 -1 -1 0.25 0.0282812 0.0248859 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 11.84 vpr 55.23 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30284 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56952 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 16.8 MiB 2.75 1114 16491 4519 10066 1906 55.6 MiB 0.24 0.01 4.16249 -142.489 -4.16249 4.16249 0.78 0.000832807 0.000770506 0.0598065 0.055243 28 3091 32 6.87369e+06 544980 531479. 1839.03 1.55 0.171183 0.151224 24610 126494 -1 2653 21 1907 3356 304380 67039 3.8674 3.8674 -148.199 -3.8674 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0332819 0.0290937 152 65 60 30 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.38 vpr 54.80 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30248 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56316 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 16.5 MiB 2.28 746 10406 2932 6420 1054 55.0 MiB 0.15 0.00 3.7324 -121.378 -3.7324 3.7324 0.79 0.000666004 0.000616296 0.0417302 0.0386384 32 2228 50 6.87369e+06 265503 586450. 2029.24 1.21 0.149637 0.1312 25474 144626 -1 1896 22 1397 2294 239488 52405 3.10126 3.10126 -123.581 -3.10126 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0279522 0.024358 110 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.80 vpr 55.07 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30280 -1 -1 23 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 16.7 MiB 2.93 980 15709 4819 8970 1920 55.5 MiB 0.23 0.00 4.23999 -140.261 -4.23999 4.23999 0.88 0.0011221 0.00105886 0.0674964 0.0623282 30 2267 20 6.87369e+06 321398 556674. 1926.21 1.06 0.152006 0.135269 25186 138497 -1 1881 20 1446 2277 189047 37373 3.4678 3.4678 -134.471 -3.4678 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0311545 0.0272793 140 63 60 30 60 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 7.47 vpr 55.20 MiB 0.04 7204 -1 -1 1 0.03 -1 -1 30752 -1 -1 43 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57292 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 17.2 MiB 4.74 1155 15540 3963 10188 1389 55.9 MiB 0.25 0.01 4.23385 -146.284 -4.23385 4.23385 0.79 0.00093456 0.000864349 0.0602082 0.0556164 34 2916 22 6.87369e+06 600875 618332. 2139.56 2.12 0.207647 0.182888 25762 151098 -1 2355 20 1764 2860 261155 55142 3.7781 3.7781 -148.019 -3.7781 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.035129 0.0306184 158 127 0 0 128 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 7.18 vpr 55.16 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30236 -1 -1 33 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 16.8 MiB 1.08 1029 18273 5989 9373 2911 55.7 MiB 0.27 0.00 4.26989 -143.564 -4.26989 4.26989 0.78 0.000852237 0.000788067 0.0740754 0.068466 28 2792 23 6.87369e+06 461137 531479. 1839.03 1.31 0.178729 0.158843 24610 126494 -1 2386 20 2006 3301 288453 62127 4.2433 4.2433 -152.042 -4.2433 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0329088 0.0287917 149 94 31 31 93 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.59 vpr 55.23 MiB 0.02 7188 -1 -1 1 0.04 -1 -1 30440 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57020 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 16.9 MiB 2.14 942 16921 5030 8706 3185 55.7 MiB 0.26 0.00 3.63595 -118.056 -3.63595 3.63595 0.79 0.000827655 0.000758013 0.0680528 0.0628156 30 2311 22 6.87369e+06 447163 556674. 1926.21 1.15 0.166702 0.14762 25186 138497 -1 1761 20 1271 2086 143021 32075 2.83166 2.83166 -109.296 -2.83166 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0315454 0.0275319 141 92 26 26 90 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.99 vpr 55.19 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30472 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56964 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 4.06 1087 14593 4252 9147 1194 55.6 MiB 0.25 0.00 4.1996 -148.308 -4.1996 4.1996 0.87 0.000844575 0.000780746 0.0695155 0.0643741 34 3128 22 6.87369e+06 293451 618332. 2139.56 2.31 0.240889 0.212205 25762 151098 -1 2683 21 2102 3613 377856 80987 4.1823 4.1823 -153.613 -4.1823 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0335088 0.0293121 147 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.17 vpr 55.13 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30288 -1 -1 36 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57068 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 17.0 MiB 1.99 943 12751 3363 8405 983 55.7 MiB 0.19 0.00 3.54105 -112.818 -3.54105 3.54105 0.79 0.000795506 0.000733098 0.0488845 0.0450845 26 2537 25 6.87369e+06 503058 503264. 1741.40 1.17 0.150474 0.1324 24322 120374 -1 2326 21 1581 2537 280617 59933 3.31886 3.31886 -119.89 -3.31886 0 0 618332. 2139.56 0.26 0.10 0.13 -1 -1 0.26 0.0311862 0.0272647 138 88 26 26 85 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.25 vpr 54.59 MiB 0.04 6748 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56096 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.2 MiB 0.58 862 12292 3174 7904 1214 54.8 MiB 0.17 0.00 3.7104 -131.958 -3.7104 3.7104 0.79 0.000666301 0.000616974 0.0495481 0.0458568 34 2300 22 6.87369e+06 223581 618332. 2139.56 1.62 0.180063 0.157654 25762 151098 -1 1995 22 1621 2455 234261 50963 3.06026 3.06026 -127.39 -3.06026 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0279579 0.0243802 114 3 96 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.35 vpr 55.49 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30372 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57080 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 16.9 MiB 4.15 1088 19841 5443 12522 1876 55.7 MiB 0.29 0.01 4.3249 -149.309 -4.3249 4.3249 0.79 0.000852205 0.000787582 0.0741792 0.0685508 32 2986 28 6.87369e+06 517032 586450. 2029.24 1.21 0.18358 0.162983 25474 144626 -1 2365 22 1941 3015 309765 68413 3.7811 3.7811 -149.424 -3.7811 0 0 744469. 2576.02 0.24 0.11 0.14 -1 -1 0.24 0.0348623 0.0304597 155 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.43 vpr 55.31 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57040 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 16.9 MiB 3.64 1071 15151 5130 8107 1914 55.7 MiB 0.24 0.00 4.2388 -148.068 -4.2388 4.2388 0.87 0.00084486 0.000780177 0.0693145 0.0640199 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.86 0.238679 0.209843 26050 158493 -1 2163 21 2029 3311 262893 58163 3.9224 3.9224 -150.751 -3.9224 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0338972 0.0296805 147 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.62 vpr 54.68 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30248 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56628 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 16.5 MiB 3.21 885 16708 4981 9424 2303 55.3 MiB 0.21 0.00 3.50501 -121.209 -3.50501 3.50501 0.79 0.000690316 0.00063746 0.0563913 0.0520177 34 2077 21 6.87369e+06 419215 618332. 2139.56 1.62 0.189991 0.166487 25762 151098 -1 1809 21 1176 1935 187866 40061 2.80666 2.80666 -115.637 -2.80666 0 0 787024. 2723.27 0.25 0.08 0.14 -1 -1 0.25 0.0255645 0.0222983 112 55 32 32 54 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.74 vpr 54.79 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30292 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56160 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 16.3 MiB 0.79 723 6960 1528 4773 659 54.8 MiB 0.12 0.00 3.7434 -125.643 -3.7434 3.7434 0.79 0.000663952 0.00061554 0.0288427 0.0267612 32 2169 22 6.87369e+06 237555 586450. 2029.24 1.02 0.107831 0.0947783 25474 144626 -1 1844 19 1245 1939 174718 38152 3.12161 3.12161 -123.219 -3.12161 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0244651 0.0213799 112 4 93 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 8.13 vpr 55.54 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30180 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 16.7 MiB 2.60 1023 18795 5447 10788 2560 55.5 MiB 0.26 0.00 4.30799 -144.78 -4.30799 4.30799 0.79 0.000803132 0.000742246 0.0689462 0.0636088 28 2593 22 6.87369e+06 489084 531479. 1839.03 1.08 0.166279 0.14772 24610 126494 -1 2325 19 1561 2324 213063 45266 3.9849 3.9849 -144.228 -3.9849 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.0295909 0.0259002 144 59 60 32 58 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 7.30 vpr 55.25 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30140 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57008 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 16.9 MiB 1.20 1094 18745 5603 10775 2367 55.7 MiB 0.27 0.01 4.21185 -141.009 -4.21185 4.21185 0.79 0.000832342 0.00076961 0.0731743 0.0675138 28 2800 35 6.87369e+06 461137 531479. 1839.03 1.30 0.190576 0.168727 24610 126494 -1 2381 19 1560 2367 223774 47687 4.101 4.101 -150.64 -4.101 0 0 648988. 2245.63 0.21 0.09 0.13 -1 -1 0.21 0.0306675 0.0268434 142 88 28 28 88 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 5.19 vpr 55.31 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30368 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57156 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 17.2 MiB 0.84 1329 17642 5677 9392 2573 55.8 MiB 0.31 0.01 4.98719 -165.596 -4.98719 4.98719 0.79 0.000874899 0.000809377 0.0651414 0.0602641 34 3780 46 6.87369e+06 572927 618332. 2139.56 3.64 0.277438 0.24418 25762 151098 -1 2789 24 2167 3582 392838 77584 4.73185 4.73185 -164.804 -4.73185 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0394906 0.034618 183 3 156 32 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.23 vpr 54.93 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 16.8 MiB 2.39 1005 13300 3782 8501 1017 55.6 MiB 0.20 0.00 3.59605 -120.715 -3.59605 3.59605 0.78 0.000780091 0.000720674 0.0519104 0.0479256 34 2301 19 6.87369e+06 447163 618332. 2139.56 1.56 0.201176 0.176285 25762 151098 -1 1965 19 1677 2647 218762 48155 2.81766 2.81766 -114.632 -2.81766 0 0 787024. 2723.27 0.26 0.09 0.15 -1 -1 0.26 0.0287537 0.0252496 141 59 60 30 56 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.77 vpr 54.76 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30452 -1 -1 20 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56136 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 16.4 MiB 0.71 735 12247 4571 5926 1750 54.8 MiB 0.15 0.00 3.6866 -109.378 -3.6866 3.6866 0.79 0.00062132 0.000575266 0.0470487 0.0436066 32 1716 21 6.87369e+06 279477 586450. 2029.24 0.98 0.120339 0.106437 25474 144626 -1 1503 18 1099 1582 163671 34178 2.93831 2.93831 -103.745 -2.93831 0 0 744469. 2576.02 0.24 0.07 0.15 -1 -1 0.24 0.0220886 0.0192491 102 34 54 27 27 27 + fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 9.84 vpr 55.81 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 30468 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57372 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 17.3 MiB 2.43 1290 11856 2585 8478 793 56.0 MiB 0.23 0.01 4.1886 -144.868 -4.1886 4.1886 0.81 0.000989596 0.000914252 0.0514019 0.0475382 30 3532 24 6.87369e+06 586901 556674. 1926.21 1.73 0.172533 0.151761 25186 138497 -1 2683 18 1789 3215 259275 53272 3.6951 3.6951 -143.92 -3.6951 0 0 706193. 2443.58 0.23 0.10 0.14 -1 -1 0.23 0.0352131 0.0308729 184 95 62 31 95 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.03 vpr 55.21 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30348 -1 -1 23 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 17.0 MiB 3.07 874 9914 2276 6234 1404 55.9 MiB 0.15 0.00 4.91157 -150.663 -4.91157 4.91157 0.88 0.000901917 0.000834839 0.0436159 0.0401681 34 2599 26 6.87369e+06 321398 618332. 2139.56 2.37 0.228209 0.198442 25762 151098 -1 1912 18 1301 1955 158035 37634 3.97725 3.97725 -145.293 -3.97725 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0319407 0.0278862 144 124 0 0 124 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.62 vpr 55.23 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30240 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56760 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 16.6 MiB 3.00 802 14356 5267 6628 2461 55.4 MiB 0.20 0.00 4.598 -126.496 -4.598 4.598 0.79 0.000744719 0.000688122 0.0647835 0.0598662 34 2120 26 6.87369e+06 223581 618332. 2139.56 1.59 0.214826 0.188365 25762 151098 -1 1730 13 755 1133 101933 22903 3.18321 3.18321 -119.523 -3.18321 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0198379 0.017567 107 89 0 0 89 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.46 vpr 55.09 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30256 -1 -1 34 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 16.8 MiB 0.90 1114 14723 4652 8968 1103 55.6 MiB 0.23 0.00 4.1955 -143.003 -4.1955 4.1955 0.78 0.000792613 0.000733284 0.0543076 0.0502051 28 2958 29 6.87369e+06 475111 531479. 1839.03 1.53 0.160511 0.141962 24610 126494 -1 2562 20 1646 2372 254330 54262 3.8876 3.8876 -148.132 -3.8876 0 0 648988. 2245.63 0.21 0.10 0.13 -1 -1 0.21 0.0308872 0.027059 147 34 90 30 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.91 vpr 55.25 MiB 0.02 7184 -1 -1 1 0.04 -1 -1 30500 -1 -1 40 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57208 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 17.2 MiB 1.85 1006 19865 6118 9930 3817 55.9 MiB 0.29 0.01 4.28153 -140.004 -4.28153 4.28153 0.79 0.000928639 0.000852578 0.0790482 0.0730796 34 2871 25 6.87369e+06 558954 618332. 2139.56 2.04 0.265549 0.233348 25762 151098 -1 2251 21 2065 3079 248272 57609 4.2353 4.2353 -148.418 -4.2353 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0366406 0.0320441 176 64 87 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.68 vpr 55.04 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30416 -1 -1 36 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 16.9 MiB 1.84 1085 17873 5357 10009 2507 55.8 MiB 0.25 0.00 3.50639 -115.998 -3.50639 3.50639 0.79 0.000777955 0.000718834 0.0646238 0.0596223 34 2648 21 6.87369e+06 503058 618332. 2139.56 1.82 0.217868 0.191232 25762 151098 -1 2185 20 1570 2707 253045 54396 2.91296 2.91296 -111.322 -2.91296 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0301526 0.0263646 144 61 58 30 58 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 8.97 vpr 55.31 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30376 -1 -1 46 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57004 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 17.0 MiB 2.41 1127 20887 5685 13197 2005 55.7 MiB 0.32 0.01 4.26133 -148.826 -4.26133 4.26133 0.81 0.000842881 0.000778972 0.0757801 0.069921 26 3226 36 6.87369e+06 642796 503264. 1741.40 4.74 0.303483 0.265894 24322 120374 -1 2725 23 2142 3609 374040 77757 4.3109 4.3109 -165.452 -4.3109 0 0 618332. 2139.56 0.24 0.13 0.12 -1 -1 0.24 0.0318103 0.0278575 160 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.12 vpr 55.56 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30288 -1 -1 42 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 16.9 MiB 2.63 1115 19606 5308 11826 2472 55.7 MiB 0.26 0.01 3.52575 -126.542 -3.52575 3.52575 0.79 0.000838256 0.000775248 0.0688805 0.0636323 28 2688 21 6.87369e+06 586901 531479. 1839.03 3.05 0.282724 0.247298 24610 126494 -1 2475 23 1832 2907 280173 57728 3.04926 3.04926 -129.512 -3.04926 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0360055 0.0314241 157 65 63 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.79 vpr 54.60 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30276 -1 -1 19 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56272 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 16.4 MiB 1.74 669 12808 5105 6141 1562 55.0 MiB 0.16 0.00 3.73366 -117.212 -3.73366 3.73366 0.79 0.000653408 0.000604808 0.0506625 0.0469097 34 1739 20 6.87369e+06 265503 618332. 2139.56 1.49 0.176451 0.154471 25762 151098 -1 1474 19 1114 1626 149957 30822 3.14961 3.14961 -114.451 -3.14961 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0268101 0.0233371 107 34 58 29 29 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 5.59 vpr 54.85 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 29908 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56632 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 16.5 MiB 2.15 808 7256 1653 5365 238 55.3 MiB 0.12 0.00 4.2805 -117.484 -4.2805 4.2805 0.81 0.000709641 0.000655766 0.0315815 0.0291898 34 2091 23 6.87369e+06 237555 618332. 2139.56 1.76 0.172488 0.149658 25762 151098 -1 1680 15 735 1039 89992 20316 2.95265 2.95265 -114.233 -2.95265 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0220072 0.0192881 102 82 0 0 82 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 9.16 vpr 55.18 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30464 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 16.8 MiB 1.59 1136 19618 6151 11073 2394 55.6 MiB 0.29 0.01 4.1886 -141.394 -4.1886 4.1886 0.78 0.000774374 0.000715455 0.0677242 0.0626256 34 2703 21 6.87369e+06 544980 618332. 2139.56 3.58 0.298476 0.260915 25762 151098 -1 2269 19 1662 2690 279336 55393 3.6624 3.6624 -140.179 -3.6624 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0292996 0.0256619 152 34 93 31 31 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.69 vpr 54.86 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30356 -1 -1 32 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56348 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 16.4 MiB 2.89 794 17103 5256 9538 2309 55.0 MiB 0.19 0.00 3.45975 -106.144 -3.45975 3.45975 0.81 0.000661664 0.000611763 0.0560946 0.0518457 24 2388 42 6.87369e+06 447163 470940. 1629.55 1.58 0.162363 0.143341 24034 113901 -1 1895 24 1467 2302 282666 58727 3.29516 3.29516 -114.317 -3.29516 0 0 586450. 2029.24 0.19 0.10 0.12 -1 -1 0.19 0.0289911 0.0251125 108 56 29 29 52 26 + fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.57 vpr 54.77 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30172 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56380 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.5 MiB 3.06 809 12464 3077 8852 535 55.1 MiB 0.18 0.00 3.7104 -131.395 -3.7104 3.7104 0.79 0.000695563 0.000642708 0.0526573 0.0486753 34 2325 23 6.87369e+06 223581 618332. 2139.56 1.60 0.191204 0.167363 25762 151098 -1 1861 22 1487 2386 206389 46555 3.18261 3.18261 -130.176 -3.18261 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0287874 0.0250234 114 34 64 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.52 vpr 55.23 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30336 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 16.8 MiB 2.44 1003 13598 3664 8482 1452 55.6 MiB 0.20 0.00 3.61625 -124.489 -3.61625 3.61625 0.81 0.00081816 0.000749061 0.0525019 0.0484266 34 2238 22 6.87369e+06 489084 618332. 2139.56 1.60 0.211204 0.184898 25762 151098 -1 1911 22 1954 2949 261513 54578 2.83496 2.83496 -116.926 -2.83496 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0339724 0.0296779 146 64 58 31 62 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.28 vpr 54.80 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30268 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56264 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 16.4 MiB 2.65 698 11402 3727 5924 1751 54.9 MiB 0.15 0.00 3.33623 -109.833 -3.33623 3.33623 0.79 0.00068073 0.000628922 0.0479963 0.0444496 26 2208 31 6.87369e+06 223581 503264. 1741.40 1.13 0.139208 0.122631 24322 120374 -1 1844 19 1180 1824 173955 39534 3.31721 3.31721 -122.86 -3.31721 0 0 618332. 2139.56 0.21 0.07 0.12 -1 -1 0.21 0.0249531 0.0217295 103 55 31 31 53 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 9.60 vpr 55.32 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56948 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 16.8 MiB 2.58 1019 17256 4700 9815 2741 55.6 MiB 0.23 0.00 3.59195 -122.625 -3.59195 3.59195 0.79 0.000800693 0.00074023 0.0616774 0.0570427 32 2653 23 6.87369e+06 517032 586450. 2029.24 1.06 0.158866 0.140942 25474 144626 -1 2197 24 1481 2462 240513 52081 3.06356 3.06356 -120.102 -3.06356 0 0 744469. 2576.02 0.24 0.10 0.15 -1 -1 0.24 0.036013 0.0313719 143 65 52 26 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 7.27 vpr 55.30 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30284 -1 -1 39 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 16.9 MiB 3.46 929 10336 2368 6764 1204 55.6 MiB 0.17 0.00 3.59605 -120.102 -3.59605 3.59605 0.79 0.000860675 0.000793833 0.0402314 0.0371752 32 2497 23 6.87369e+06 544980 586450. 2029.24 1.08 0.144079 0.126791 25474 144626 -1 2023 23 2079 3051 321684 70271 3.07756 3.07756 -118.737 -3.07756 0 0 744469. 2576.02 0.24 0.12 0.15 -1 -1 0.24 0.0368115 0.0320922 151 93 31 31 92 31 + fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.73 vpr 54.85 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30144 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56476 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 16.3 MiB 2.67 812 13206 3975 7418 1813 55.2 MiB 0.19 0.00 3.26897 -114.681 -3.26897 3.26897 0.79 0.000718742 0.000664607 0.0568386 0.052589 34 2125 22 6.87369e+06 237555 618332. 2139.56 1.57 0.197997 0.17362 25762 151098 -1 1871 17 1123 1746 178839 37759 2.82101 2.82101 -115.669 -2.82101 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0244309 0.0213998 110 61 32 32 60 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.55 vpr 54.98 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 29972 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 16.5 MiB 2.88 923 10056 2840 6443 773 55.4 MiB 0.17 0.00 3.6884 -128.712 -3.6884 3.6884 0.79 0.000731508 0.000676771 0.0449256 0.0415738 32 2557 20 6.87369e+06 223581 586450. 2029.24 1.05 0.129656 0.114492 25474 144626 -1 2096 20 1373 2246 235384 49493 3.16356 3.16356 -127.756 -3.16356 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0280632 0.0244927 112 63 32 32 62 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.27 vpr 55.18 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30500 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 16.9 MiB 2.60 1032 14988 3846 9829 1313 55.7 MiB 0.22 0.01 4.29009 -147.998 -4.29009 4.29009 0.79 0.000847676 0.000783958 0.0544339 0.0502678 32 2850 24 6.87369e+06 558954 586450. 2029.24 1.62 0.185593 0.163408 25474 144626 -1 2290 23 2001 3232 308913 63957 3.7811 3.7811 -148.452 -3.7811 0 0 744469. 2576.02 0.24 0.12 0.15 -1 -1 0.24 0.0358982 0.0313496 157 65 64 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.06 vpr 55.04 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30400 -1 -1 34 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56912 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 16.8 MiB 2.33 880 11759 2826 8215 718 55.6 MiB 0.18 0.00 3.59605 -112.745 -3.59605 3.59605 0.78 0.000777602 0.00071838 0.0446564 0.0412193 26 2603 46 6.87369e+06 475111 503264. 1741.40 1.84 0.169593 0.148803 24322 120374 -1 2282 23 1512 2421 250540 62847 3.17456 3.17456 -121.262 -3.17456 0 0 618332. 2139.56 0.21 0.10 0.13 -1 -1 0.21 0.0333718 0.0290953 140 62 56 29 58 29 + fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 8.00 vpr 55.47 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30524 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57048 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 17.0 MiB 4.88 930 19136 5654 10352 3130 55.7 MiB 0.28 0.01 4.25669 -144.754 -4.25669 4.25669 0.79 0.000943059 0.000864413 0.0767506 0.0708666 34 2770 22 6.87369e+06 558954 618332. 2139.56 2.33 0.265298 0.232935 25762 151098 -1 2253 20 1970 3101 280460 62199 3.7891 3.7891 -143.05 -3.7891 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0353282 0.0307777 157 127 0 0 128 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.08 vpr 54.52 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30332 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55996 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.2 MiB 0.58 801 6501 1452 4525 524 54.7 MiB 0.10 0.00 3.09052 -106.923 -3.09052 3.09052 0.78 0.000620907 0.000574553 0.0258125 0.0239356 32 2210 22 6.87369e+06 223581 586450. 2029.24 0.98 0.0996915 0.0873666 25474 144626 -1 1773 15 998 1501 159384 34551 3.12776 3.12776 -122.774 -3.12776 0 0 744469. 2576.02 0.24 0.06 0.15 -1 -1 0.24 0.0194688 0.0170858 104 4 85 31 0 0 + fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.10 vpr 55.34 MiB 0.05 7160 -1 -1 1 0.05 -1 -1 30248 -1 -1 37 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 16.8 MiB 1.51 977 17961 5555 9821 2585 55.7 MiB 0.25 0.00 4.24789 -140.827 -4.24789 4.24789 0.79 0.000851322 0.000787627 0.0675796 0.0624512 34 2364 23 6.87369e+06 517032 618332. 2139.56 1.79 0.237684 0.20858 25762 151098 -1 1896 23 1598 2273 215743 45990 3.6278 3.6278 -135.914 -3.6278 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0364916 0.0318421 147 92 28 28 92 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.60 vpr 54.98 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 29936 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56776 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 16.8 MiB 3.87 961 12808 4157 6979 1672 55.4 MiB 0.18 0.00 3.7416 -135.274 -3.7416 3.7416 0.78 0.000780314 0.000721822 0.060516 0.0560031 34 2185 20 6.87369e+06 223581 618332. 2139.56 1.57 0.209593 0.183857 25762 151098 -1 1910 19 1399 1959 184105 39513 2.94001 2.94001 -129.783 -2.94001 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.0292104 0.0256124 114 96 0 0 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.09 vpr 55.23 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30284 -1 -1 39 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57108 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 16.9 MiB 2.61 1013 13117 3136 9263 718 55.8 MiB 0.20 0.00 3.62407 -127.528 -3.62407 3.62407 0.88 0.000837879 0.000773522 0.0482215 0.0444883 34 2595 22 6.87369e+06 544980 618332. 2139.56 3.38 0.294382 0.255978 25762 151098 -1 2009 20 1553 2283 191142 42175 2.98996 2.98996 -125.379 -2.98996 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0322614 0.0282567 153 65 61 32 64 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.65 vpr 55.38 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30624 -1 -1 47 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57232 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 17.6 MiB 4.09 1138 14475 3597 10051 827 55.9 MiB 0.24 0.01 4.97494 -166.026 -4.97494 4.97494 0.78 0.000996476 0.000922982 0.0575564 0.0531279 34 3043 24 6.87369e+06 656770 618332. 2139.56 3.94 0.32727 0.285363 25762 151098 -1 2443 22 2326 3580 346884 72568 4.60055 4.60055 -167.64 -4.60055 0 0 787024. 2723.27 0.28 0.13 0.16 -1 -1 0.28 0.0419331 0.036691 190 96 64 32 96 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.08 vpr 54.58 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 30008 -1 -1 14 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55988 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 16.1 MiB 1.84 613 9036 2242 6211 583 54.7 MiB 0.10 0.00 2.94746 -92.2629 -2.94746 2.94746 0.79 0.000568216 0.000525453 0.0338317 0.0312941 32 1509 20 6.87369e+06 195634 586450. 2029.24 0.92 0.0998953 0.0876139 25474 144626 -1 1331 15 659 917 92542 21138 2.09702 2.09702 -89.9926 -2.09702 0 0 744469. 2576.02 0.24 0.05 0.15 -1 -1 0.24 0.0175076 0.0152554 72 56 0 0 53 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.76 vpr 54.71 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30240 -1 -1 18 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 16.5 MiB 0.93 764 12120 4745 5717 1658 55.0 MiB 0.16 0.00 3.7196 -120.247 -3.7196 3.7196 0.79 0.000669726 0.00061992 0.0490871 0.0454522 32 2060 22 6.87369e+06 251529 586450. 2029.24 1.03 0.128266 0.113466 25474 144626 -1 1714 19 1337 1870 198418 42606 3.15261 3.15261 -122.811 -3.15261 0 0 744469. 2576.02 0.24 0.08 0.15 -1 -1 0.24 0.0249534 0.021798 109 34 60 30 30 30 + fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.26 vpr 54.97 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 29884 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56608 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 16.5 MiB 1.25 884 12464 4265 6183 2016 55.3 MiB 0.19 0.00 3.52575 -127.584 -3.52575 3.52575 0.79 0.000701578 0.000648636 0.053616 0.0496463 34 2676 23 6.87369e+06 223581 618332. 2139.56 1.78 0.194032 0.170012 25762 151098 -1 2184 22 1777 3164 312994 68188 3.08856 3.08856 -129.648 -3.08856 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0295113 0.0257435 114 34 64 32 32 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.57 vpr 54.56 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30240 -1 -1 37 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56232 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 16.4 MiB 0.69 742 15004 4316 8330 2358 54.9 MiB 0.16 0.00 3.44875 -93.4127 -3.44875 3.44875 0.78 0.000578987 0.000536382 0.0425604 0.0394 30 1602 21 6.87369e+06 517032 556674. 1926.21 0.92 0.110356 0.0973204 25186 138497 -1 1380 16 752 1139 67557 16205 2.78766 2.78766 -95.4077 -2.78766 0 0 706193. 2443.58 0.23 0.05 0.14 -1 -1 0.23 0.0185588 0.016184 105 34 50 25 25 25 + fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.48 vpr 55.05 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30444 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 16.9 MiB 2.38 1035 11989 3061 8035 893 55.8 MiB 0.11 0.00 4.14459 -143.245 -4.14459 4.14459 0.64 0.000376964 0.000344883 0.026205 0.0239937 34 2891 27 6.87369e+06 293451 618332. 2139.56 1.76 0.195043 0.169006 25762 151098 -1 2318 23 2049 3735 335649 72247 3.8364 3.8364 -145.461 -3.8364 0 0 787024. 2723.27 0.25 0.11 0.11 -1 -1 0.25 0.0316705 0.0278676 145 94 32 32 94 32 + fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.88 vpr 55.16 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30188 -1 -1 40 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 16.8 MiB 2.38 969 12394 3038 8536 820 55.7 MiB 0.20 0.01 3.62425 -121.977 -3.62425 3.62425 0.82 0.000850538 0.000785729 0.047494 0.0437745 34 2257 22 6.87369e+06 558954 618332. 2139.56 1.68 0.213895 0.186781 25762 151098 -1 1967 23 1974 2870 267635 57824 2.97896 2.97896 -119.514 -2.97896 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0365961 0.0319351 151 94 29 29 93 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.41 vpr 55.07 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30776 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 17.1 MiB 1.64 1383 18363 6134 9531 2698 55.8 MiB 0.29 0.00 5.11247 -173.262 -5.11247 5.11247 0.79 0.000886687 0.00082104 0.0808278 0.0748591 38 2985 35 6.89349e+06 408721 678818. 2348.85 4.02 0.333652 0.291977 26626 170182 -1 2611 20 2052 2589 220032 44829 4.28005 4.28005 -163.885 -4.28005 0 0 902133. 3121.57 0.27 0.10 0.16 -1 -1 0.27 0.0343053 0.0300607 192 96 32 32 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.69 vpr 55.12 MiB 0.05 7296 -1 -1 1 0.03 -1 -1 30432 -1 -1 29 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57032 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 16.8 MiB 1.36 1338 16411 5641 8181 2589 55.7 MiB 0.26 0.00 5.22297 -160.634 -5.22297 5.22297 0.79 0.000829436 0.000767571 0.0696372 0.0644335 36 3164 26 6.89349e+06 408721 648988. 2245.63 2.32 0.237152 0.208601 26050 158493 -1 2686 19 1867 2596 255636 51478 4.51278 4.51278 -152.831 -4.51278 0 0 828058. 2865.25 0.27 0.10 0.15 -1 -1 0.27 0.0307746 0.0269672 177 91 30 30 89 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.34 vpr 54.78 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1277 15533 4267 9018 2248 55.5 MiB 0.24 0.00 4.0146 -140.879 -4.0146 4.0146 0.79 0.00081169 0.00075073 0.065943 0.0610072 36 3037 21 6.89349e+06 352346 648988. 2245.63 3.94 0.291116 0.254252 26050 158493 -1 2516 20 1540 1936 197338 38483 3.5358 3.5358 -137.598 -3.5358 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.031115 0.0272616 167 65 54 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.40 vpr 54.86 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30404 -1 -1 25 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56532 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 16.5 MiB 1.85 1071 16718 5447 9404 1867 55.2 MiB 0.26 0.00 4.53305 -141.516 -4.53305 4.53305 0.78 0.000746492 0.00069139 0.0689542 0.0639254 34 2604 24 6.89349e+06 352346 618332. 2139.56 1.76 0.217672 0.191446 25762 151098 -1 2082 20 1652 2487 184015 41746 3.99576 3.99576 -144.727 -3.99576 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0290929 0.0254653 148 34 87 29 29 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.36 vpr 55.11 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30320 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56784 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 16.7 MiB 1.78 1361 14518 4265 8140 2113 55.5 MiB 0.25 0.00 5.03124 -172.909 -5.03124 5.03124 0.79 0.000817503 0.00075683 0.063284 0.0586216 36 3204 23 6.89349e+06 338252 648988. 2245.63 2.52 0.230479 0.202559 26050 158493 -1 2708 21 2164 3702 308376 64335 4.25485 4.25485 -163.62 -4.25485 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0327698 0.0286931 163 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.69 vpr 55.09 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30280 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 16.8 MiB 1.61 1499 20359 6047 11800 2512 55.7 MiB 0.30 0.01 4.44565 -148.532 -4.44565 4.44565 0.81 0.000856776 0.000792962 0.0653931 0.0601231 34 3638 42 6.89349e+06 577847 618332. 2139.56 2.01 0.256931 0.225104 25762 151098 -1 2902 20 1840 2888 245956 51403 3.4637 3.4637 -135.971 -3.4637 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0328054 0.0287447 179 64 63 32 63 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.99 vpr 54.59 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55892 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 16.1 MiB 1.36 730 14528 4147 9388 993 54.6 MiB 0.18 0.00 3.83226 -109.129 -3.83226 3.83226 0.80 0.000621262 0.000575321 0.0544427 0.0504182 30 2001 25 6.89349e+06 295971 556674. 1926.21 1.00 0.131849 0.11683 25186 138497 -1 1566 20 1090 1583 119409 26752 3.12146 3.12146 -110.895 -3.12146 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0237903 0.0207142 112 34 54 27 27 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.99 vpr 54.62 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30156 -1 -1 35 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56584 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 16.4 MiB 0.71 921 14273 4335 7347 2591 55.3 MiB 0.19 0.00 3.53335 -112.01 -3.53335 3.53335 0.79 0.000728991 0.000672623 0.0485796 0.0448852 34 2330 17 6.89349e+06 493284 618332. 2139.56 1.65 0.184618 0.161716 25762 151098 -1 1917 19 1254 2012 156951 34298 2.77281 2.77281 -107.285 -2.77281 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0265342 0.0231369 141 4 115 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.43 vpr 54.91 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30052 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56424 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 16.6 MiB 1.41 1141 14358 3961 8348 2049 55.1 MiB 0.21 0.00 3.63141 -123.531 -3.63141 3.63141 0.79 0.00072522 0.000671566 0.059542 0.0551602 34 2823 25 6.89349e+06 295971 618332. 2139.56 1.68 0.202771 0.177641 25762 151098 -1 2192 22 1635 2026 176828 38039 3.00146 3.00146 -118.923 -3.00146 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0300623 0.0261786 140 85 0 0 84 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.67 vpr 54.75 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30144 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56260 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 16.4 MiB 1.64 873 6923 1573 5100 250 54.9 MiB 0.13 0.00 3.71245 -131.003 -3.71245 3.71245 0.79 0.00070405 0.000651263 0.0296905 0.0275282 34 2504 22 6.89349e+06 267783 618332. 2139.56 1.72 0.168541 0.146436 25762 151098 -1 1973 21 1746 2253 208153 45634 3.25976 3.25976 -129.578 -3.25976 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0292986 0.0255752 127 34 64 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.15 vpr 54.75 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30188 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56376 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 16.4 MiB 1.82 942 6923 1677 4944 302 55.1 MiB 0.12 0.00 4.3965 -138.695 -4.3965 4.3965 0.79 0.00070376 0.000651562 0.0298254 0.0276564 34 2549 23 6.89349e+06 295971 618332. 2139.56 1.70 0.179733 0.15605 25762 151098 -1 1994 17 1444 1905 163453 34945 3.53595 3.53595 -132.555 -3.53595 0 0 787024. 2723.27 0.26 0.07 0.14 -1 -1 0.26 0.0244956 0.0214751 135 63 30 30 60 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.35 vpr 54.66 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30428 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56736 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 16.5 MiB 1.44 883 15822 6326 7340 2156 55.4 MiB 0.20 0.00 3.8129 -121.35 -3.8129 3.8129 0.80 0.000719206 0.000659588 0.0640532 0.0592288 36 2268 22 6.89349e+06 281877 648988. 2245.63 2.36 0.205911 0.180848 26050 158493 -1 1772 21 1263 1439 119035 27655 2.96941 2.96941 -110.48 -2.96941 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0285271 0.0248573 135 65 25 25 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.10 vpr 54.86 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30248 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56852 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 16.8 MiB 1.14 987 17513 5731 7853 3929 55.5 MiB 0.22 0.00 4.23419 -140.25 -4.23419 4.23419 0.78 0.000811141 0.000750542 0.0744748 0.0689009 38 2680 30 6.89349e+06 352346 678818. 2348.85 4.15 0.253802 0.22327 26626 170182 -1 2093 20 1732 2323 205928 46210 3.2913 3.2913 -123.28 -3.2913 0 0 902133. 3121.57 0.27 0.09 0.16 -1 -1 0.27 0.0313068 0.027426 161 58 64 32 57 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.95 vpr 55.11 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30364 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 16.8 MiB 1.33 1162 11063 2970 6995 1098 55.7 MiB 0.20 0.01 5.02024 -166.562 -5.02024 5.02024 0.79 0.000843566 0.000780529 0.048048 0.0444465 34 3453 43 6.89349e+06 394628 618332. 2139.56 2.04 0.220769 0.19312 25762 151098 -1 2666 22 2359 3101 270233 58754 4.72305 4.72305 -173.843 -4.72305 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0178109 0.0157093 175 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 6.43 vpr 54.53 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30540 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56092 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 16.3 MiB 1.23 754 11296 2879 7697 720 54.8 MiB 0.14 0.00 3.61645 -112 -3.61645 3.61645 0.79 0.00062644 0.00058034 0.041816 0.0387204 34 1936 20 6.89349e+06 295971 618332. 2139.56 1.59 0.154318 0.134745 25762 151098 -1 1538 17 987 1359 111715 25185 2.74466 2.74466 -104.488 -2.74466 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0214086 0.0186954 112 29 58 29 24 24 + fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 7.42 vpr 55.11 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30252 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57028 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 16.9 MiB 2.07 1259 17315 5682 9212 2421 55.7 MiB 0.30 0.00 4.31019 -146.5 -4.31019 4.31019 0.81 0.000837931 0.000775032 0.0766051 0.0707717 34 3731 27 6.89349e+06 352346 618332. 2139.56 2.28 0.261405 0.230669 25762 151098 -1 2971 22 2639 4122 391062 81050 3.98685 3.98685 -151.495 -3.98685 0 0 787024. 2723.27 0.28 0.13 0.15 -1 -1 0.28 0.0342376 0.0301251 174 63 64 32 62 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.67 vpr 54.87 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30144 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56876 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 16.8 MiB 1.05 1183 12365 3291 7811 1263 55.5 MiB 0.20 0.00 3.69045 -130.871 -3.69045 3.69045 0.78 0.000809349 0.000748732 0.0527119 0.0487499 34 2818 23 6.89349e+06 352346 618332. 2139.56 1.73 0.218442 0.191258 25762 151098 -1 2268 18 1664 2099 189158 40020 2.91031 2.91031 -121.711 -2.91031 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.029366 0.0257426 160 57 64 32 56 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.94 vpr 54.90 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30064 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56600 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 16.6 MiB 1.60 1015 15395 4903 8010 2482 55.3 MiB 0.23 0.00 3.61051 -123.557 -3.61051 3.61051 0.79 0.000742549 0.000686682 0.0628489 0.0580876 40 2180 24 6.89349e+06 310065 706193. 2443.58 4.04 0.293125 0.255072 26914 176310 -1 2013 19 1525 2041 197470 41961 2.81226 2.81226 -113.173 -2.81226 0 0 926341. 3205.33 0.28 0.08 0.18 -1 -1 0.28 0.0277283 0.0242571 139 65 29 29 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.65 vpr 54.54 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30056 -1 -1 15 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55836 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 16.0 MiB 0.89 569 8227 1998 5670 559 54.5 MiB 0.09 0.00 3.06366 -95.1937 -3.06366 3.06366 0.83 0.000547902 0.000506398 0.0293862 0.0271735 34 1458 19 6.89349e+06 211408 618332. 2139.56 1.53 0.128261 0.111302 25762 151098 -1 1239 16 711 837 71164 16553 2.11917 2.11917 -84.2942 -2.11917 0 0 787024. 2723.27 0.23 0.03 0.16 -1 -1 0.23 0.00979138 0.00866054 85 34 24 24 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 9.03 vpr 54.85 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30272 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56536 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 16.4 MiB 1.21 1101 13663 4048 7780 1835 55.2 MiB 0.20 0.00 4.32835 -147.32 -4.32835 4.32835 0.83 0.000873164 0.000808088 0.0577676 0.0534047 34 2686 22 6.89349e+06 310065 618332. 2139.56 1.75 0.191248 0.168101 25762 151098 -1 2178 20 1578 2066 186237 40242 3.4358 3.4358 -138.035 -3.4358 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.028294 0.0247278 141 64 31 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.78 vpr 55.10 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 29996 -1 -1 40 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 16.8 MiB 0.85 1052 20112 6009 11047 3056 55.6 MiB 0.28 0.00 4.67003 -155.404 -4.67003 4.67003 0.79 0.000799528 0.00073894 0.068232 0.0630801 34 2788 22 6.89349e+06 563754 618332. 2139.56 1.84 0.229175 0.201708 25762 151098 -1 2140 20 1895 2615 252223 51509 3.80464 3.80464 -143.966 -3.80464 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0331405 0.0291189 166 34 91 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.00 vpr 55.11 MiB 0.04 7204 -1 -1 1 0.05 -1 -1 30516 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 17.1 MiB 1.18 1507 16511 4972 9774 1765 55.8 MiB 0.28 0.00 4.34661 -147.62 -4.34661 4.34661 0.79 0.000923245 0.000855462 0.0732611 0.0678627 36 3443 24 6.89349e+06 436909 648988. 2245.63 2.12 0.263961 0.231646 26050 158493 -1 2951 20 2192 2505 223884 47625 4.1265 4.1265 -146.678 -4.1265 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0363853 0.0318436 201 124 0 0 125 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.97 vpr 54.19 MiB 0.02 6844 -1 -1 1 0.02 -1 -1 30492 -1 -1 18 26 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55764 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 16.0 MiB 1.35 692 10476 3888 5359 1229 54.5 MiB 0.11 0.00 2.84541 -81.5212 -2.84541 2.84541 0.80 0.000473362 0.000436773 0.032914 0.0303971 30 1474 16 6.89349e+06 253689 556674. 1926.21 0.87 0.0858013 0.075608 25186 138497 -1 1249 12 461 583 45569 9801 1.92605 1.92605 -76.6152 -1.92605 0 0 706193. 2443.58 0.23 0.03 0.14 -1 -1 0.23 0.0126242 0.0111001 77 30 26 26 22 22 + fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.67 vpr 54.69 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 29972 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56184 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 16.3 MiB 1.01 1016 9571 2543 6414 614 54.9 MiB 0.17 0.00 4.12784 -139.243 -4.12784 4.12784 0.91 0.000761276 0.000704152 0.0411016 0.0380657 34 2761 33 6.89349e+06 295971 618332. 2139.56 4.01 0.290776 0.252865 25762 151098 -1 2113 17 1420 2384 197860 42885 3.69405 3.69405 -140.075 -3.69405 0 0 787024. 2723.27 0.22 0.05 0.10 -1 -1 0.22 0.0133973 0.0118806 141 3 122 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.15 vpr 54.12 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30296 -1 -1 12 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55704 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 16.0 MiB 0.30 514 9356 2285 6456 615 54.4 MiB 0.10 0.00 2.43188 -86.7872 -2.43188 2.43188 0.79 0.000509484 0.000469713 0.031298 0.028874 28 1518 34 6.89349e+06 169126 531479. 1839.03 0.96 0.101032 0.0886668 24610 126494 -1 1316 16 737 1032 84969 21628 2.01906 2.01906 -89.2091 -2.01906 0 0 648988. 2245.63 0.22 0.05 0.13 -1 -1 0.22 0.0165546 0.0144617 71 3 53 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.20 vpr 54.84 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30440 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56732 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 16.7 MiB 1.19 1097 15929 4551 10101 1277 55.4 MiB 0.28 0.01 4.62958 -159.64 -4.62958 4.62958 0.79 0.000807499 0.000748014 0.0706165 0.0654286 30 2798 23 6.89349e+06 352346 556674. 1926.21 1.08 0.169977 0.151081 25186 138497 -1 2125 22 1641 2244 170678 38588 3.89866 3.89866 -147.919 -3.89866 0 0 706193. 2443.58 0.23 0.09 0.14 -1 -1 0.23 0.0339906 0.0297726 161 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.93 vpr 54.71 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30080 -1 -1 36 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56576 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 16.4 MiB 0.66 885 10772 2583 7345 844 55.2 MiB 0.17 0.00 3.4709 -116.935 -3.4709 3.4709 0.78 0.000770261 0.000712132 0.0381205 0.0352335 32 2589 22 6.89349e+06 507378 586450. 2029.24 1.03 0.129104 0.113821 25474 144626 -1 2046 21 1493 2314 198941 46206 2.86981 2.86981 -118.592 -2.86981 0 0 744469. 2576.02 0.24 0.09 0.15 -1 -1 0.24 0.0306108 0.0267807 151 3 124 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 7.29 vpr 54.93 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 30396 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57064 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.9 MiB 1.62 1365 8130 1863 5269 998 55.7 MiB 0.17 0.00 4.69935 -162.091 -4.69935 4.69935 0.80 0.00085106 0.00078623 0.0374896 0.0347366 34 3602 24 6.89349e+06 366440 618332. 2139.56 2.17 0.212158 0.185104 25762 151098 -1 2917 21 2256 3261 289615 59329 4.17126 4.17126 -159.891 -4.17126 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0347434 0.0304635 174 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.46 vpr 54.80 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 29992 -1 -1 17 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56036 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 16.2 MiB 1.77 863 14256 5690 7135 1431 54.7 MiB 0.18 0.00 3.57625 -122.952 -3.57625 3.57625 0.80 0.000664132 0.000613459 0.0564521 0.052173 34 2829 35 6.89349e+06 239595 618332. 2139.56 2.24 0.182298 0.15999 25762 151098 -1 2035 21 1520 2215 227493 47957 3.01556 3.01556 -122.395 -3.01556 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0268183 0.0233463 118 34 54 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.37 vpr 54.67 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 29996 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 16.3 MiB 1.44 1065 12331 4460 6746 1125 54.9 MiB 0.18 0.00 4.27029 -139.911 -4.27029 4.27029 0.79 0.000673805 0.000623056 0.0495037 0.0458175 34 2593 29 6.89349e+06 267783 618332. 2139.56 1.85 0.191784 0.167559 25762 151098 -1 2233 19 1366 2106 228988 44819 3.6861 3.6861 -143.167 -3.6861 0 0 787024. 2723.27 0.27 0.09 0.15 -1 -1 0.27 0.0245356 0.0216172 121 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.55 vpr 54.61 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30092 -1 -1 21 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56132 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 16.3 MiB 1.79 839 10231 2827 6777 627 54.8 MiB 0.09 0.00 4.26535 -126.926 -4.26535 4.26535 0.65 0.000282667 0.000258889 0.017814 0.0163324 28 2398 29 6.89349e+06 295971 531479. 1839.03 2.95 0.115494 0.0989551 24610 126494 -1 2141 21 1319 2092 187747 41382 3.7956 3.7956 -134.911 -3.7956 0 0 648988. 2245.63 0.21 0.08 0.13 -1 -1 0.21 0.025422 0.0221053 115 34 56 28 28 28 + fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.03 vpr 54.52 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 0.94 860 14700 5342 7547 1811 54.8 MiB 0.20 0.00 3.60535 -129.612 -3.60535 3.60535 0.80 0.00066476 0.000614959 0.0588591 0.0544713 34 2253 23 6.89349e+06 225501 618332. 2139.56 1.65 0.192243 0.16876 25762 151098 -1 1939 19 1411 2286 225053 45416 2.93496 2.93496 -125.353 -2.93496 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0249833 0.0217766 114 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 5.59 vpr 54.65 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30080 -1 -1 19 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56080 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 16.2 MiB 1.25 985 14322 4727 7440 2155 54.8 MiB 0.20 0.00 3.69435 -127.028 -3.69435 3.69435 0.80 0.000688369 0.000637463 0.0573945 0.0531447 30 2344 17 6.89349e+06 267783 556674. 1926.21 1.02 0.13475 0.119684 25186 138497 -1 1897 15 992 1416 93539 20851 2.86686 2.86686 -117.141 -2.86686 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.021068 0.0185281 121 34 61 31 31 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.52 vpr 54.64 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30004 -1 -1 23 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56672 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 16.6 MiB 1.33 1052 14724 4760 7779 2185 55.3 MiB 0.19 0.00 3.57215 -115.596 -3.57215 3.57215 0.88 0.000517585 0.000475825 0.0456335 0.041829 34 2390 19 6.89349e+06 324158 618332. 2139.56 1.53 0.177329 0.154351 25762 151098 -1 2029 18 1059 1423 121903 26092 2.78696 2.78696 -109.841 -2.78696 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0244868 0.0214159 130 61 29 29 57 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.03 vpr 55.16 MiB 0.05 7248 -1 -1 1 0.03 -1 -1 30424 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57116 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 16.8 MiB 1.80 1199 18247 5521 9891 2835 55.8 MiB 0.31 0.00 4.73855 -160.484 -4.73855 4.73855 0.80 0.000918954 0.000850776 0.0839855 0.0777283 36 3057 20 6.89349e+06 380534 648988. 2245.63 4.21 0.346745 0.303382 26050 158493 -1 2646 18 1819 2962 256822 53587 4.09316 4.09316 -154.573 -4.09316 0 0 828058. 2865.25 0.30 0.09 0.17 -1 -1 0.30 0.0286803 0.0254742 184 29 128 32 27 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.06 vpr 55.11 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30292 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56848 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 16.7 MiB 1.52 1143 14147 4354 7296 2497 55.5 MiB 0.24 0.00 4.17974 -143.168 -4.17974 4.17974 0.79 0.000840725 0.000777784 0.062599 0.0578873 34 3558 33 6.89349e+06 352346 618332. 2139.56 2.26 0.25137 0.220495 25762 151098 -1 2715 23 2711 3700 353275 74502 4.18925 4.18925 -153.784 -4.18925 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0364376 0.0318751 173 65 62 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.83 vpr 54.70 MiB 0.03 6984 -1 -1 1 0.03 -1 -1 30316 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 16.7 MiB 0.88 1094 14965 4562 8063 2340 55.4 MiB 0.21 0.00 3.67235 -123.222 -3.67235 3.67235 0.79 0.000737024 0.000681282 0.0623112 0.0576632 34 2633 22 6.89349e+06 310065 618332. 2139.56 1.59 0.207685 0.182182 25762 151098 -1 2095 22 1337 1402 149763 31290 3.16091 3.16091 -119.072 -3.16091 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0306312 0.0266867 143 90 0 0 89 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.96 vpr 55.11 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30208 -1 -1 26 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 16.8 MiB 1.97 1244 16523 4277 10843 1403 55.5 MiB 0.16 0.00 4.45875 -146.616 -4.45875 4.45875 0.80 0.000352077 0.000322065 0.0317847 0.0290611 34 3041 49 6.89349e+06 366440 618332. 2139.56 2.02 0.232757 0.201816 25762 151098 -1 2511 19 1670 2368 218285 45586 3.6923 3.6923 -141.034 -3.6923 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0304422 0.0266699 170 64 60 30 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 8.19 vpr 55.33 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30288 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57188 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 17.0 MiB 1.72 1489 17560 4957 10293 2310 55.8 MiB 0.32 0.01 5.02254 -165.43 -5.02254 5.02254 0.81 0.000913275 0.000845488 0.0781321 0.0723725 36 3302 26 6.89349e+06 436909 648988. 2245.63 4.00 0.345618 0.301455 26050 158493 -1 2694 20 1876 2118 175285 38262 4.53904 4.53904 -162.317 -4.53904 0 0 828058. 2865.25 0.29 0.09 0.16 -1 -1 0.29 0.0317822 0.0281384 201 124 0 0 124 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.75 vpr 55.13 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 28 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56808 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 16.6 MiB 2.06 1401 11923 3470 7236 1217 55.5 MiB 0.22 0.01 5.49816 -175.294 -5.49816 5.49816 0.79 0.000841447 0.00077823 0.0518419 0.0480049 42 2926 22 6.89349e+06 394628 744469. 2576.02 3.52 0.283154 0.246755 27202 183097 -1 2527 16 1749 2356 203221 43700 4.63614 4.63614 -164.711 -4.63614 0 0 949917. 3286.91 0.29 0.09 0.18 -1 -1 0.29 0.0282742 0.024932 181 90 31 31 89 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.99 vpr 55.23 MiB 0.03 7100 -1 -1 1 0.03 -1 -1 30248 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 16.8 MiB 1.54 1340 14763 4284 8311 2168 55.6 MiB 0.26 0.00 3.76655 -130.012 -3.76655 3.76655 0.80 0.000821832 0.000759939 0.0628939 0.0581958 34 3196 35 6.89349e+06 380534 618332. 2139.56 2.02 0.246447 0.215629 25762 151098 -1 2557 21 1950 2707 248885 51843 3.05126 3.05126 -124.604 -3.05126 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0332578 0.029116 168 64 60 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.06 vpr 54.81 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30344 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 16.7 MiB 1.67 1284 16207 4365 9844 1998 55.5 MiB 0.26 0.01 4.62085 -160.706 -4.62085 4.62085 0.79 0.000852519 0.00078864 0.0694875 0.064345 40 2601 20 6.89349e+06 380534 706193. 2443.58 4.15 0.294732 0.258335 26914 176310 -1 2516 20 1939 2561 273038 55896 3.93166 3.93166 -155.11 -3.93166 0 0 926341. 3205.33 0.29 0.11 0.18 -1 -1 0.29 0.0330403 0.028957 178 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.68 vpr 55.50 MiB 0.05 7360 -1 -1 1 0.03 -1 -1 30504 -1 -1 31 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57036 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 17.1 MiB 1.91 1764 15215 4236 8627 2352 55.7 MiB 0.30 0.01 5.15348 -175.341 -5.15348 5.15348 0.81 0.00130435 0.00122881 0.0741773 0.0688022 34 4963 46 6.89349e+06 436909 618332. 2139.56 3.55 0.321757 0.282163 25762 151098 -1 3860 23 3483 4904 572738 110091 4.92129 4.92129 -185.826 -4.92129 0 0 787024. 2723.27 0.25 0.19 0.17 -1 -1 0.25 0.0499671 0.0445542 220 96 62 32 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.99 vpr 54.57 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30420 -1 -1 20 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 16.3 MiB 1.46 822 6743 1455 4759 529 54.9 MiB 0.11 0.00 3.853 -129.297 -3.853 3.853 0.79 0.000689893 0.000638759 0.0279073 0.0258709 34 2130 23 6.89349e+06 281877 618332. 2139.56 1.51 0.1637 0.142276 25762 151098 -1 1735 17 1232 1587 138246 30502 3.18261 3.18261 -125.282 -3.18261 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0235647 0.0206488 127 34 62 31 31 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.63 vpr 54.89 MiB 0.05 7120 -1 -1 1 0.04 -1 -1 30232 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56940 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 16.8 MiB 1.54 1294 17376 6419 8627 2330 55.6 MiB 0.27 0.00 5.00234 -161.335 -5.00234 5.00234 0.80 0.000632969 0.00057547 0.069058 0.0636488 34 3330 27 6.89349e+06 380534 618332. 2139.56 1.86 0.164903 0.145629 25762 151098 -1 2476 17 1626 2007 191409 39462 3.97305 3.97305 -146.178 -3.97305 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0279214 0.0245207 168 64 62 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.49 vpr 55.17 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56896 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 16.7 MiB 1.64 1356 15391 5368 7626 2397 55.6 MiB 0.26 0.00 4.39449 -148.549 -4.39449 4.39449 0.90 0.000599708 0.000542978 0.0631836 0.0583025 36 3399 20 6.89349e+06 380534 648988. 2245.63 2.30 0.239815 0.210908 26050 158493 -1 2665 18 1552 2335 195483 42653 3.4388 3.4388 -137.093 -3.4388 0 0 828058. 2865.25 0.26 0.09 0.16 -1 -1 0.26 0.0296292 0.0260092 172 63 62 32 62 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 4.73 vpr 54.68 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56360 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 16.4 MiB 1.05 953 14407 3720 10033 654 55.0 MiB 0.12 0.00 4.3344 -147.594 -4.3344 4.3344 0.65 0.000336557 0.000307883 0.0275264 0.025198 34 2905 27 6.89349e+06 295971 618332. 2139.56 1.70 0.13857 0.120441 25762 151098 -1 2232 23 1991 3487 264360 60022 4.157 4.157 -158.907 -4.157 0 0 787024. 2723.27 0.26 0.11 0.15 -1 -1 0.26 0.0332054 0.0291205 147 3 128 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.89 vpr 55.07 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30220 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56996 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 17.0 MiB 1.39 1279 18101 5797 9598 2706 55.7 MiB 0.30 0.00 4.41459 -148.068 -4.41459 4.41459 0.82 0.000859461 0.000794123 0.0778281 0.0719644 34 3391 28 6.89349e+06 394628 618332. 2139.56 2.09 0.263397 0.231007 25762 151098 -1 2463 21 1740 1984 171491 37870 3.5578 3.5578 -134.352 -3.5578 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.034019 0.0297763 184 96 25 25 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 9.19 vpr 55.27 MiB 0.02 7176 -1 -1 1 0.04 -1 -1 30120 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56804 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 16.8 MiB 2.09 1221 17635 5673 8836 3126 55.5 MiB 0.26 0.00 4.28929 -146.442 -4.28929 4.28929 0.82 0.00083479 0.000772949 0.0752869 0.0696975 38 2787 32 6.89349e+06 380534 678818. 2348.85 4.22 0.338178 0.295447 26626 170182 -1 2196 20 1647 2496 191119 42455 3.4967 3.4967 -139.433 -3.4967 0 0 902133. 3121.57 0.27 0.09 0.17 -1 -1 0.27 0.0324201 0.0284539 169 61 64 32 60 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.13 vpr 55.26 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 16.8 MiB 1.52 1303 7027 1560 5110 357 55.6 MiB 0.15 0.01 3.72045 -130.455 -3.72045 3.72045 0.80 0.000857307 0.000793369 0.0318499 0.0294959 34 3419 35 6.89349e+06 380534 618332. 2139.56 1.98 0.219573 0.191005 25762 151098 -1 2708 23 2357 3298 307090 64592 3.36316 3.36316 -133.871 -3.36316 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0370233 0.0324046 175 65 63 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.31 vpr 54.79 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 16.7 MiB 1.43 1190 14518 4171 8562 1785 55.4 MiB 0.24 0.01 4.63815 -161.109 -4.63815 4.63815 0.80 0.000813182 0.000752309 0.0627695 0.0581088 34 2823 20 6.89349e+06 338252 618332. 2139.56 1.83 0.223157 0.196177 25762 151098 -1 2319 21 1986 2951 235767 49816 3.91446 3.91446 -155.236 -3.91446 0 0 787024. 2723.27 0.27 0.10 0.15 -1 -1 0.27 0.0315529 0.0278991 161 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.85 vpr 54.91 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30504 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 16.8 MiB 1.17 1201 13351 3240 8446 1665 55.6 MiB 0.22 0.00 4.60525 -158.398 -4.60525 4.60525 0.79 0.000857894 0.000794906 0.0586842 0.0543714 34 3331 29 6.89349e+06 380534 618332. 2139.56 1.82 0.217386 0.191223 25762 151098 -1 2649 22 2149 2702 249037 53736 4.18866 4.18866 -157.463 -4.18866 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0343674 0.030066 177 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.44 vpr 55.12 MiB 0.04 7344 -1 -1 1 0.03 -1 -1 30348 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57164 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 17.1 MiB 1.16 1470 18625 5270 10765 2590 55.8 MiB 0.31 0.01 5.00359 -155.604 -5.00359 5.00359 0.80 0.000900002 0.000833729 0.0820806 0.0760815 34 3579 26 6.89349e+06 436909 618332. 2139.56 1.92 0.268265 0.235535 25762 151098 -1 2722 18 1799 2119 187648 40452 4.02335 4.02335 -144.794 -4.02335 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0316064 0.0276886 195 122 0 0 122 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.93 vpr 55.17 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30304 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57316 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 17.2 MiB 2.47 1648 15391 4130 9133 2128 56.0 MiB 0.28 0.01 4.77885 -161.828 -4.77885 4.77885 0.79 0.000880486 0.000815199 0.0692034 0.0640466 34 3960 24 6.89349e+06 380534 618332. 2139.56 1.85 0.21503 0.189769 25762 151098 -1 3178 23 2615 3790 338322 69689 4.23076 4.23076 -158.094 -4.23076 0 0 787024. 2723.27 0.27 0.12 0.18 -1 -1 0.27 0.0378451 0.033061 190 94 32 32 94 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.09 vpr 54.54 MiB 0.02 6860 -1 -1 1 0.04 -1 -1 30432 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56280 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 16.4 MiB 1.38 1067 16081 5068 9178 1835 55.0 MiB 0.22 0.00 3.68745 -131.866 -3.68745 3.68745 0.78 0.00069641 0.000644518 0.0623698 0.0577143 34 2357 23 6.89349e+06 295971 618332. 2139.56 1.73 0.202611 0.178643 25762 151098 -1 1967 17 1190 1666 131784 28869 2.87006 2.87006 -123.027 -2.87006 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0239165 0.0209531 127 34 63 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.27 vpr 55.01 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30296 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 16.8 MiB 1.34 1122 7711 1541 6020 150 55.6 MiB 0.16 0.00 4.29439 -143.523 -4.29439 4.29439 0.78 0.000783653 0.000725639 0.0387824 0.0358035 34 3377 24 6.89349e+06 295971 618332. 2139.56 2.27 0.203925 0.177792 25762 151098 -1 2389 19 1791 2103 185285 40185 3.75629 3.75629 -143.49 -3.75629 0 0 787024. 2723.27 0.27 0.09 0.15 -1 -1 0.27 0.0297284 0.026101 154 94 0 0 94 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.09 vpr 55.19 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30812 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56968 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 17.0 MiB 1.57 1537 17347 5978 9037 2332 55.6 MiB 0.35 0.01 5.35709 -181.872 -5.35709 5.35709 0.80 0.00097305 0.000901677 0.0825041 0.0765162 40 3492 28 6.89349e+06 422815 706193. 2443.58 4.39 0.363126 0.317619 26914 176310 -1 3290 22 2569 3530 394888 79275 4.8653 4.8653 -179.92 -4.8653 0 0 926341. 3205.33 0.28 0.14 0.18 -1 -1 0.28 0.0412632 0.0361217 209 65 96 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.15 vpr 54.81 MiB 0.03 6900 -1 -1 1 0.04 -1 -1 30312 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56648 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 16.6 MiB 1.60 1176 14295 4272 7910 2113 55.3 MiB 0.24 0.00 3.7808 -134.415 -3.7808 3.7808 0.79 0.000794063 0.000734627 0.0619106 0.0573085 34 2907 49 6.89349e+06 324158 618332. 2139.56 2.01 0.258159 0.225882 25762 151098 -1 2422 22 1986 2851 281439 59899 3.20196 3.20196 -131.664 -3.20196 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0335459 0.029337 156 34 92 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.30 vpr 54.67 MiB 0.05 6808 -1 -1 1 0.03 -1 -1 30160 -1 -1 32 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 16.4 MiB 0.99 932 11809 3108 7963 738 55.0 MiB 0.17 0.00 4.33203 -134.423 -4.33203 4.33203 0.79 0.000672331 0.000622753 0.0393397 0.036368 34 2068 25 6.89349e+06 451003 618332. 2139.56 1.63 0.16526 0.144255 25762 151098 -1 1701 15 905 1471 107118 24626 3.33535 3.33535 -123.792 -3.33535 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0211189 0.0185564 129 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.77 vpr 55.70 MiB 0.05 7376 -1 -1 1 0.04 -1 -1 30788 -1 -1 35 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57148 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 17.5 MiB 1.58 1787 18111 5206 10704 2201 55.8 MiB 0.36 0.01 5.73258 -193.193 -5.73258 5.73258 0.78 0.00104029 0.000964289 0.0861021 0.079796 36 4118 48 6.89349e+06 493284 648988. 2245.63 2.99 0.345049 0.303456 26050 158493 -1 3418 20 2804 3462 325135 67797 5.21313 5.21313 -189.443 -5.21313 0 0 828058. 2865.25 0.29 0.13 0.15 -1 -1 0.29 0.0428787 0.0377791 239 127 32 32 128 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.18 vpr 54.98 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30320 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56748 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 16.7 MiB 1.18 1091 13143 3864 7923 1356 55.4 MiB 0.22 0.00 4.41749 -154.465 -4.41749 4.41749 0.82 0.00080795 0.000747912 0.0583531 0.0540568 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.78 0.223408 0.195864 25762 151098 -1 2351 20 2110 2852 281849 57752 3.8948 3.8948 -150.219 -3.8948 0 0 787024. 2723.27 0.26 0.11 0.15 -1 -1 0.26 0.0323976 0.0284491 159 34 96 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.90 vpr 54.45 MiB 0.03 6800 -1 -1 1 0.03 -1 -1 30240 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56112 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 16.2 MiB 0.53 849 10087 2557 6780 750 54.8 MiB 0.15 0.00 3.73565 -131.011 -3.73565 3.73565 0.79 0.00066954 0.000619693 0.0325369 0.0301061 30 2145 37 6.89349e+06 465097 556674. 1926.21 1.10 0.12813 0.112239 25186 138497 -1 1790 17 1066 1721 123895 26365 2.88186 2.88186 -122.82 -2.88186 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0223293 0.0194869 123 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 8.76 vpr 55.07 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30664 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57092 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 17.1 MiB 1.77 1275 12273 3390 7733 1150 55.8 MiB 0.24 0.01 5.39711 -179.414 -5.39711 5.39711 0.81 0.000937253 0.000868491 0.0577126 0.0535497 36 3338 23 6.89349e+06 408721 648988. 2245.63 4.39 0.358994 0.31279 26050 158493 -1 2845 20 2352 3565 345882 68008 4.6679 4.6679 -175.907 -4.6679 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0354996 0.0310703 194 34 128 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.00 vpr 54.58 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.3 MiB 0.71 787 10056 2193 7590 273 54.8 MiB 0.15 0.00 3.8468 -135.678 -3.8468 3.8468 0.80 0.000668711 0.000618995 0.0410501 0.0379958 34 2238 23 6.89349e+06 225501 618332. 2139.56 1.67 0.178954 0.156312 25762 151098 -1 1877 18 1328 2065 190837 40411 3.36591 3.36591 -135.858 -3.36591 0 0 787024. 2723.27 0.26 0.08 0.15 -1 -1 0.26 0.0238708 0.0208721 114 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.02 vpr 54.47 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30204 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56244 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.4 MiB 1.04 801 8131 1824 5536 771 54.9 MiB 0.11 0.00 3.71635 -120.03 -3.71635 3.71635 0.79 0.000677156 0.000627384 0.03361 0.0311811 34 2364 23 6.89349e+06 267783 618332. 2139.56 1.67 0.139735 0.122112 25762 151098 -1 1782 21 1295 1784 162485 36885 3.21091 3.21091 -120.796 -3.21091 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0273438 0.0238455 121 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.70 vpr 55.13 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30224 -1 -1 31 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 16.8 MiB 1.30 1254 15203 3953 9019 2231 55.6 MiB 0.24 0.00 4.1318 -129.307 -4.1318 4.1318 0.80 0.000805323 0.000745546 0.061952 0.0573051 34 2820 23 6.89349e+06 436909 618332. 2139.56 1.73 0.225083 0.197554 25762 151098 -1 2345 20 1641 2166 182248 39607 3.39955 3.39955 -126.469 -3.39955 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0310986 0.0272204 171 88 29 29 85 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.15 vpr 55.02 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30660 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.7 MiB 1.72 1381 16974 4929 9664 2381 55.6 MiB 0.23 0.00 5.29596 -177.687 -5.29596 5.29596 0.80 0.000849466 0.000786014 0.0749039 0.0693286 36 3494 21 6.89349e+06 366440 648988. 2245.63 2.24 0.251702 0.221914 26050 158493 -1 2820 17 1901 2735 261577 53957 5.07405 5.07405 -182.909 -5.07405 0 0 828058. 2865.25 0.26 0.10 0.16 -1 -1 0.26 0.0289774 0.0255119 178 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.78 vpr 54.94 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56936 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.8 MiB 1.46 1376 18180 6112 9250 2818 55.6 MiB 0.31 0.01 5.13064 -174.448 -5.13064 5.13064 0.81 0.000844575 0.000781513 0.0782894 0.0723533 34 3613 48 6.89349e+06 366440 618332. 2139.56 2.31 0.279929 0.246247 25762 151098 -1 2866 21 2253 3201 304840 63244 4.63885 4.63885 -176.025 -4.63885 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0340216 0.0297722 175 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.98 vpr 54.67 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56616 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 16.6 MiB 0.99 1013 14221 3579 9597 1045 55.3 MiB 0.10 0.00 4.30029 -147.314 -4.30029 4.30029 0.65 0.000313192 0.000285851 0.0256207 0.0234039 34 2732 24 6.89349e+06 295971 618332. 2139.56 1.24 0.0973834 0.0843939 25762 151098 -1 2015 19 1406 1593 133316 30393 3.3494 3.3494 -133.253 -3.3494 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0271138 0.0239084 141 65 32 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.38 vpr 55.00 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30472 -1 -1 22 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 16.8 MiB 1.46 1168 10501 2617 6825 1059 55.4 MiB 0.17 0.00 4.23729 -139.76 -4.23729 4.23729 0.81 0.000741932 0.000685119 0.0442151 0.0408761 34 2803 22 6.89349e+06 310065 618332. 2139.56 1.73 0.193109 0.168383 25762 151098 -1 2315 18 1381 1746 171701 35037 3.5783 3.5783 -133.622 -3.5783 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0260931 0.0227903 146 90 0 0 89 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.81 vpr 54.94 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30208 -1 -1 29 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56744 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 16.6 MiB 1.65 1158 18043 5948 9235 2860 55.4 MiB 0.27 0.00 3.9471 -130.183 -3.9471 3.9471 0.79 0.00079211 0.000733719 0.0727873 0.067425 36 2674 16 6.89349e+06 408721 648988. 2245.63 2.04 0.227186 0.200362 26050 158493 -1 2244 18 1420 2011 166835 35003 3.21861 3.21861 -122.147 -3.21861 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0285909 0.0250509 164 60 60 30 57 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.54 vpr 54.56 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30356 -1 -1 27 28 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56452 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 16.3 MiB 1.19 970 11031 2869 6600 1562 55.1 MiB 0.17 0.00 4.51585 -132.654 -4.51585 4.51585 0.80 0.000727225 0.000673316 0.0462838 0.0428424 30 2481 29 6.89349e+06 380534 556674. 1926.21 1.25 0.144123 0.127078 25186 138497 -1 1987 20 1339 2052 152088 33944 3.78146 3.78146 -130.249 -3.78146 0 0 706193. 2443.58 0.23 0.08 0.14 -1 -1 0.23 0.0280685 0.0245258 145 34 84 28 28 28 + fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.37 vpr 54.72 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30064 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56772 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 16.5 MiB 1.69 1087 9083 2557 5800 726 55.4 MiB 0.15 0.00 4.36859 -139.508 -4.36859 4.36859 0.80 0.00071728 0.000664514 0.0379618 0.0351545 38 2342 21 6.89349e+06 295971 678818. 2348.85 4.18 0.227315 0.197126 26626 170182 -1 2087 21 1472 2123 172136 36029 3.80594 3.80594 -138.667 -3.80594 0 0 902133. 3121.57 0.27 0.08 0.16 -1 -1 0.27 0.02822 0.0246435 136 63 30 30 60 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 7.28 vpr 55.04 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56800 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 16.7 MiB 1.50 1180 8827 2269 5871 687 55.5 MiB 0.16 0.00 3.8008 -130.21 -3.8008 3.8008 0.79 0.000759615 0.000702314 0.0387448 0.0358405 36 2716 22 6.89349e+06 295971 648988. 2245.63 3.78 0.248583 0.21537 26050 158493 -1 2232 19 1513 1775 147110 31963 3.11881 3.11881 -119.74 -3.11881 0 0 828058. 2865.25 0.26 0.07 0.16 -1 -1 0.26 0.0278857 0.0244384 150 91 0 0 91 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.73 vpr 54.75 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30128 -1 -1 37 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56564 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 16.3 MiB 0.65 1032 15180 4497 8229 2454 55.2 MiB 0.22 0.01 4.35445 -144.691 -4.35445 4.35445 0.79 0.00075211 0.000695862 0.051594 0.0477368 28 3008 36 6.89349e+06 521472 531479. 1839.03 1.92 0.164051 0.14459 24610 126494 -1 2392 22 1777 2806 285610 57698 3.9346 3.9346 -143.906 -3.9346 0 0 648988. 2245.63 0.21 0.11 0.13 -1 -1 0.21 0.0315469 0.0275487 151 4 124 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.73 vpr 55.18 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30472 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56904 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 16.8 MiB 1.20 1263 12351 3110 8140 1101 55.6 MiB 0.22 0.00 4.78058 -162.367 -4.78058 4.78058 0.79 0.000846384 0.000783323 0.0551508 0.0510741 34 3399 34 6.89349e+06 366440 618332. 2139.56 1.83 0.235465 0.206152 25762 151098 -1 2706 18 1885 2496 205287 45812 4.02319 4.02319 -158.993 -4.02319 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.029901 0.0262509 173 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.34 vpr 55.03 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 16.8 MiB 1.43 1405 10743 3107 6650 986 55.6 MiB 0.19 0.01 4.9601 -169.723 -4.9601 4.9601 0.85 0.00072214 0.000662852 0.0434381 0.04006 36 3325 24 6.89349e+06 366440 648988. 2245.63 2.77 0.225541 0.197685 26050 158493 -1 2749 22 2484 3506 327366 66012 4.46955 4.46955 -169.261 -4.46955 0 0 828058. 2865.25 0.26 0.12 0.15 -1 -1 0.26 0.0366716 0.0320275 171 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.69 vpr 55.26 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30348 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 16.7 MiB 1.56 1306 10087 2279 7315 493 55.6 MiB 0.19 0.01 4.3224 -145.723 -4.3224 4.3224 0.80 0.000838243 0.000774364 0.0439133 0.0406392 34 3934 28 6.89349e+06 380534 618332. 2139.56 2.27 0.222369 0.194278 25762 151098 -1 2951 21 2029 2952 296662 60214 3.78825 3.78825 -144.975 -3.78825 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0344469 0.0301628 172 65 60 30 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.52 vpr 54.49 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56312 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 16.4 MiB 1.47 814 9181 2458 5686 1037 55.0 MiB 0.14 0.00 3.809 -121.257 -3.809 3.809 0.78 0.000668802 0.0006187 0.0371503 0.034396 34 2348 26 6.89349e+06 267783 618332. 2139.56 1.61 0.172526 0.15024 25762 151098 -1 1926 17 1215 1701 148054 32425 3.21081 3.21081 -123.009 -3.21081 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0228253 0.0199768 122 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.36 vpr 55.22 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30408 -1 -1 26 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56720 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 16.6 MiB 2.04 1287 12568 3293 7724 1551 55.4 MiB 0.21 0.00 5.05854 -160.711 -5.05854 5.05854 0.80 0.000804698 0.00074441 0.0547062 0.0506675 34 3197 46 6.89349e+06 366440 618332. 2139.56 2.14 0.247863 0.21645 25762 151098 -1 2658 21 2057 2844 305752 60544 4.59485 4.59485 -165.774 -4.59485 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0331666 0.0290587 165 63 60 30 60 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.39 vpr 54.99 MiB 0.05 7320 -1 -1 1 0.03 -1 -1 30812 -1 -1 30 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57112 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 17.0 MiB 1.10 1479 11383 3062 7492 829 55.8 MiB 0.21 0.01 4.57601 -155.587 -4.57601 4.57601 0.79 0.000940623 0.000871984 0.0534543 0.0495757 34 3886 33 6.89349e+06 422815 618332. 2139.56 2.08 0.219973 0.192644 25762 151098 -1 3027 19 1951 2004 192662 42165 4.26295 4.26295 -162.459 -4.26295 0 0 787024. 2723.27 0.25 0.09 0.16 -1 -1 0.25 0.0340486 0.0297575 204 127 0 0 128 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.55 vpr 54.82 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30252 -1 -1 29 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56972 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 17.0 MiB 1.41 1301 16445 5093 9336 2016 55.6 MiB 0.28 0.01 5.17904 -171.173 -5.17904 5.17904 0.78 0.000859857 0.000795269 0.0715531 0.0661694 34 3498 49 6.89349e+06 408721 618332. 2139.56 2.27 0.254741 0.223558 25762 151098 -1 2699 19 2082 2598 213053 46293 4.54965 4.54965 -166.671 -4.54965 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0324483 0.0285074 186 94 31 31 93 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.55 vpr 55.13 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30380 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57052 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 16.8 MiB 1.83 1252 12351 3368 8179 804 55.7 MiB 0.22 0.01 4.25135 -136.296 -4.25135 4.25135 0.80 0.000827328 0.000765293 0.0531707 0.049187 36 3049 24 6.89349e+06 394628 648988. 2245.63 4.05 0.29254 0.254391 26050 158493 -1 2522 21 1966 2807 250416 53606 3.89165 3.89165 -138.409 -3.89165 0 0 828058. 2865.25 0.27 0.10 0.16 -1 -1 0.27 0.0324896 0.028651 175 92 26 26 90 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.66 vpr 55.11 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30396 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57016 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 16.8 MiB 1.70 1349 14160 4180 8412 1568 55.7 MiB 0.25 0.01 5.11687 -171.214 -5.11687 5.11687 0.81 0.000850896 0.0007876 0.0627777 0.0580837 34 3509 33 6.89349e+06 366440 618332. 2139.56 2.53 0.253648 0.222461 25762 151098 -1 2815 22 2450 3498 334320 66324 4.55265 4.55265 -173.997 -4.55265 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0352939 0.030907 177 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.68 vpr 55.32 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30132 -1 -1 30 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56888 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 16.7 MiB 1.87 1337 17431 5595 9274 2562 55.6 MiB 0.27 0.00 4.49555 -136.793 -4.49555 4.49555 0.86 0.000797771 0.000737507 0.0706665 0.0653622 34 3084 22 6.89349e+06 422815 618332. 2139.56 1.87 0.229936 0.201978 25762 151098 -1 2573 22 1699 2439 269215 77632 3.6655 3.6655 -128.202 -3.6655 0 0 787024. 2723.27 0.25 0.11 0.16 -1 -1 0.25 0.0338844 0.0296019 170 88 26 26 85 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.46 vpr 54.39 MiB 0.05 6740 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56060 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 16.2 MiB 0.47 851 10744 3065 7267 412 54.7 MiB 0.16 0.00 3.7888 -133.854 -3.7888 3.7888 0.78 0.000664755 0.000615277 0.0437347 0.0405038 34 2303 19 6.89349e+06 225501 618332. 2139.56 1.59 0.171491 0.150032 25762 151098 -1 1875 22 1383 2259 198659 43008 3.17461 3.17461 -133.102 -3.17461 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0279266 0.0243531 114 3 96 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.00 vpr 55.11 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30260 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56880 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 16.7 MiB 1.36 1266 16411 5685 8276 2450 55.5 MiB 0.28 0.00 5.17997 -174.972 -5.17997 5.17997 0.79 0.000846753 0.000782926 0.0711891 0.0658562 34 4061 33 6.89349e+06 380534 618332. 2139.56 2.49 0.261449 0.229881 25762 151098 -1 2843 23 2561 3505 347098 72064 4.80838 4.80838 -169.412 -4.80838 0 0 787024. 2723.27 0.25 0.13 0.15 -1 -1 0.25 0.0378134 0.0331451 174 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.39 vpr 55.32 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56756 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 16.6 MiB 2.28 1294 9791 2343 6863 585 55.4 MiB 0.19 0.00 5.01095 -168.663 -5.01095 5.01095 0.79 0.00084652 0.000782738 0.044609 0.0412823 34 4015 26 6.89349e+06 352346 618332. 2139.56 2.23 0.198684 0.174046 25762 151098 -1 3070 19 2361 3295 385436 74721 4.64369 4.64369 -175.083 -4.64369 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0316261 0.0277952 176 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 8.61 vpr 54.50 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30260 -1 -1 19 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56548 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 16.4 MiB 1.42 971 13043 4021 6975 2047 55.2 MiB 0.18 0.00 3.51612 -116.281 -3.51612 3.51612 0.80 0.000689965 0.000637907 0.0522083 0.0483054 34 2444 25 6.89349e+06 267783 618332. 2139.56 1.67 0.192976 0.168789 25762 151098 -1 1981 21 1089 1354 142020 29449 2.8425 2.8425 -109.803 -2.8425 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0280572 0.02438 128 55 32 32 54 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.43 vpr 54.61 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30392 -1 -1 17 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56008 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 16.3 MiB 0.65 734 11604 2641 7381 1582 54.7 MiB 0.16 0.00 3.8218 -128.161 -3.8218 3.8218 0.81 0.000649276 0.000600688 0.0457452 0.0423632 32 2297 21 6.89349e+06 239595 586450. 2029.24 1.13 0.120701 0.107026 25474 144626 -1 1870 20 1329 2112 204763 44912 3.24681 3.24681 -128.647 -3.24681 0 0 744469. 2576.02 0.24 0.09 0.14 -1 -1 0.24 0.0257247 0.0224711 112 4 93 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.76 vpr 54.95 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30252 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56832 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 16.7 MiB 1.26 1234 14147 4178 8444 1525 55.5 MiB 0.23 0.00 4.31849 -141.833 -4.31849 4.31849 0.78 0.000806548 0.000746166 0.0601283 0.0556437 34 2949 32 6.89349e+06 352346 618332. 2139.56 1.86 0.222937 0.195605 25762 151098 -1 2362 26 1673 2115 256666 68253 3.8146 3.8146 -142.771 -3.8146 0 0 787024. 2723.27 0.26 0.11 0.15 -1 -1 0.26 0.0380105 0.033226 158 59 60 32 58 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.79 vpr 55.13 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30284 -1 -1 26 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56944 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 16.8 MiB 1.39 1314 10341 2747 6842 752 55.6 MiB 0.20 0.01 5.10864 -160.907 -5.10864 5.10864 0.80 0.000839966 0.000776352 0.0462107 0.0426921 34 3359 28 6.89349e+06 366440 618332. 2139.56 2.04 0.223558 0.195307 25762 151098 -1 2652 20 1871 2249 217061 46097 4.49045 4.49045 -159.834 -4.49045 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0325973 0.0285751 170 88 28 28 88 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 11.07 vpr 55.01 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30524 -1 -1 41 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56976 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 16.8 MiB 0.71 1292 15419 3797 10101 1521 55.6 MiB 0.25 0.01 4.85078 -164.688 -4.85078 4.85078 0.79 0.000868602 0.000804765 0.0571454 0.0528126 34 3344 31 6.89349e+06 577847 618332. 2139.56 2.41 0.250354 0.220182 25762 151098 -1 2706 22 2017 3264 290736 61788 4.57459 4.57459 -168.113 -4.57459 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.035791 0.0314082 183 3 156 32 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.26 vpr 54.92 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30416 -1 -1 27 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56780 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 16.6 MiB 1.56 1124 9395 2323 6078 994 55.4 MiB 0.16 0.00 3.8961 -125.22 -3.8961 3.8961 0.79 0.000783993 0.00072599 0.0398069 0.0368728 34 2608 30 6.89349e+06 380534 618332. 2139.56 1.70 0.205122 0.178431 25762 151098 -1 2170 18 1582 2251 195239 41667 3.15261 3.15261 -121.154 -3.15261 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0283546 0.0248763 160 59 60 30 56 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.31 vpr 54.62 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30448 -1 -1 22 27 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56176 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 16.3 MiB 1.07 915 13031 5095 6351 1585 54.9 MiB 0.16 0.00 4.34539 -126.288 -4.34539 4.34539 0.85 0.000457937 0.000415713 0.0446784 0.0412189 34 2080 22 6.89349e+06 310065 618332. 2139.56 1.61 0.169087 0.147422 25762 151098 -1 1772 16 1085 1549 150890 30808 3.6703 3.6703 -125.114 -3.6703 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0200039 0.0174762 112 34 54 27 27 27 + fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.17 vpr 55.59 MiB 0.05 7364 -1 -1 1 0.03 -1 -1 30420 -1 -1 32 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57436 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 17.2 MiB 1.55 1748 16302 4126 10044 2132 56.1 MiB 0.34 0.01 5.09354 -170.611 -5.09354 5.09354 0.80 0.000996092 0.000922751 0.0778217 0.0721254 34 4402 48 6.89349e+06 451003 618332. 2139.56 2.50 0.322039 0.281706 25762 151098 -1 3508 22 2585 3669 343037 71730 4.44325 4.44325 -166.851 -4.44325 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0226989 0.0200629 219 95 62 31 95 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.01 vpr 55.07 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 30368 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57216 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 17.1 MiB 1.89 1467 12661 2948 8528 1185 55.9 MiB 0.23 0.01 5.14784 -166.315 -5.14784 5.14784 0.80 0.00091666 0.00084851 0.0574211 0.0532073 34 3712 49 6.89349e+06 436909 618332. 2139.56 2.09 0.242241 0.211874 25762 151098 -1 2946 21 2233 2583 234439 50015 4.57455 4.57455 -167.42 -4.57455 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0365566 0.0319742 201 124 0 0 124 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.87 vpr 54.89 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56812 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 16.7 MiB 1.89 1133 9914 2313 7132 469 55.5 MiB 0.16 0.00 4.28535 -139.234 -4.28535 4.28535 0.79 0.00074922 0.000691955 0.0422017 0.0390278 34 2977 23 6.89349e+06 310065 618332. 2139.56 1.76 0.194232 0.169348 25762 151098 -1 2380 20 1560 1805 189048 39047 3.5891 3.5891 -135.452 -3.5891 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0286854 0.0250445 150 89 0 0 89 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.06 vpr 54.89 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30176 -1 -1 23 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56676 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 16.6 MiB 1.64 1114 12951 3612 7720 1619 55.3 MiB 0.24 0.00 4.53785 -150.754 -4.53785 4.53785 0.85 0.000786956 0.000728586 0.0598386 0.0553851 34 2710 25 6.89349e+06 324158 618332. 2139.56 1.75 0.226558 0.198888 25762 151098 -1 2246 21 1441 2064 174635 41141 3.97086 3.97086 -148.232 -3.97086 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0330445 0.0289521 151 34 90 30 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 6.64 vpr 55.12 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30532 -1 -1 30 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56980 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 17.0 MiB 1.38 1475 19413 5609 11709 2095 55.6 MiB 0.34 0.01 4.64537 -154.979 -4.64537 4.64537 0.79 0.000933219 0.000856129 0.0886785 0.0820322 34 3531 23 6.89349e+06 422815 618332. 2139.56 2.09 0.278261 0.244853 25762 151098 -1 2771 19 2085 2846 264065 53778 4.04596 4.04596 -152.134 -4.04596 0 0 787024. 2723.27 0.28 0.11 0.15 -1 -1 0.28 0.0391704 0.0349601 193 64 87 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.68 vpr 54.74 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30288 -1 -1 28 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56820 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 16.7 MiB 1.61 1223 16773 5429 8542 2802 55.5 MiB 0.26 0.00 4.28025 -135.791 -4.28025 4.28025 0.79 0.000782572 0.000723234 0.0681386 0.0630549 36 2785 20 6.89349e+06 394628 648988. 2245.63 1.99 0.229426 0.201903 26050 158493 -1 2364 18 1465 2272 195212 39751 3.6611 3.6611 -134.254 -3.6611 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0282352 0.0247773 162 61 58 30 58 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.78 vpr 55.05 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30360 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56992 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 16.8 MiB 1.32 1373 17066 5393 8866 2807 55.7 MiB 0.32 0.01 5.03124 -168.563 -5.03124 5.03124 0.80 0.00084608 0.000782935 0.0741536 0.0685725 34 3519 30 6.89349e+06 394628 618332. 2139.56 2.21 0.258692 0.227396 25762 151098 -1 2722 21 2081 2842 299132 59932 4.28315 4.28315 -158.84 -4.28315 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0344183 0.0301409 173 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.95 vpr 55.32 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30328 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56900 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 16.7 MiB 1.78 1418 13147 3928 7969 1250 55.6 MiB 0.23 0.00 3.78872 -134.171 -3.78872 3.78872 0.79 0.000844552 0.000780304 0.0576 0.0533144 34 3355 23 6.89349e+06 380534 618332. 2139.56 1.89 0.230702 0.202282 25762 151098 -1 2832 22 2160 2944 280190 58885 3.17981 3.17981 -133.721 -3.17981 0 0 787024. 2723.27 0.25 0.11 0.15 -1 -1 0.25 0.0358881 0.0314301 175 65 63 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.87 vpr 54.50 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56180 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 16.3 MiB 1.14 802 14322 5252 6511 2559 54.9 MiB 0.18 0.00 3.809 -119.785 -3.809 3.809 0.79 0.000653998 0.000604903 0.0552394 0.0508633 34 2039 20 6.89349e+06 295971 618332. 2139.56 1.57 0.181929 0.159228 25762 151098 -1 1734 18 1378 1799 177816 35993 3.12481 3.12481 -115.748 -3.12481 0 0 787024. 2723.27 0.29 0.07 0.12 -1 -1 0.29 0.0204627 0.0181183 118 34 58 29 29 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.28 vpr 54.80 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 29940 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56700 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 16.7 MiB 1.04 1059 7038 1561 5080 397 55.4 MiB 0.13 0.00 4.31213 -129.707 -4.31213 4.31213 0.79 0.000718023 0.000664389 0.0296983 0.0274594 34 2688 48 6.89349e+06 281877 618332. 2139.56 2.07 0.209268 0.181413 25762 151098 -1 2144 19 1351 1641 133763 30853 3.90915 3.90915 -130.083 -3.90915 0 0 787024. 2723.27 0.28 0.09 0.15 -1 -1 0.28 0.0323972 0.0283456 136 82 0 0 82 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.73 vpr 54.85 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30232 -1 -1 24 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56664 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 16.6 MiB 1.18 1144 15255 6301 7544 1410 55.3 MiB 0.23 0.00 4.60015 -151.135 -4.60015 4.60015 0.79 0.000785758 0.000727094 0.0654354 0.0606132 34 3190 33 6.89349e+06 338252 618332. 2139.56 2.05 0.210247 0.185356 25762 151098 -1 2239 19 1844 2733 251452 52853 3.97076 3.97076 -149.336 -3.97076 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.02987 0.0262116 154 34 93 31 31 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.13 vpr 54.57 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30256 -1 -1 21 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56156 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 16.2 MiB 1.08 955 13610 4945 6467 2198 54.8 MiB 0.18 0.00 3.4839 -106.878 -3.4839 3.4839 0.80 0.000652783 0.000603809 0.0529215 0.0489908 34 2268 20 6.89349e+06 295971 618332. 2139.56 1.54 0.179953 0.15735 25762 151098 -1 1919 19 1310 1518 142462 30697 2.92026 2.92026 -107.338 -2.92026 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0245668 0.0214127 123 56 29 29 52 26 + fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.63 vpr 54.68 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30172 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56288 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 16.4 MiB 1.58 1000 12186 3922 6390 1874 55.0 MiB 0.18 0.00 3.839 -135.657 -3.839 3.839 0.98 0.000774236 0.000716876 0.0502044 0.0464219 34 2640 18 6.89349e+06 253689 618332. 2139.56 1.84 0.191735 0.167863 25762 151098 -1 2213 19 1673 2318 259352 50229 3.14671 3.14671 -131.475 -3.14671 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0258503 0.0225735 127 34 64 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.35 vpr 54.90 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30236 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56920 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 16.8 MiB 1.50 1201 16773 5048 9300 2425 55.6 MiB 0.25 0.00 4.20938 -143.511 -4.20938 4.20938 0.81 0.000546546 0.000495866 0.0642467 0.0591878 36 2839 20 6.89349e+06 380534 648988. 2245.63 2.07 0.22611 0.198686 26050 158493 -1 2455 20 1991 2822 283713 57574 3.5954 3.5954 -142.131 -3.5954 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0318814 0.0279405 164 64 58 31 62 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 6.00 vpr 54.66 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30268 -1 -1 21 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56188 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 16.3 MiB 1.26 877 7953 1966 5579 408 54.9 MiB 0.12 0.00 3.31212 -108.619 -3.31212 3.31212 0.80 0.000685571 0.00063485 0.0319746 0.0296219 34 2313 21 6.89349e+06 295971 618332. 2139.56 1.61 0.165755 0.144083 25762 151098 -1 1934 14 1112 1375 116562 25693 2.88726 2.88726 -110.203 -2.88726 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0199957 0.0175619 125 55 31 31 53 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.78 vpr 54.93 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30316 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56824 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 16.7 MiB 1.44 1287 17711 6388 9306 2017 55.5 MiB 0.29 0.01 4.20729 -140.905 -4.20729 4.20729 0.79 0.000803871 0.000743985 0.0743887 0.0687333 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.72 0.239539 0.211031 25762 151098 -1 2529 17 1415 2007 217239 42638 3.6814 3.6814 -137.46 -3.6814 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0273898 0.0240658 162 65 52 26 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.31 vpr 55.02 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30332 -1 -1 31 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57088 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 17.1 MiB 1.74 1441 16921 4862 9627 2432 55.8 MiB 0.30 0.01 5.00842 -163.951 -5.00842 5.00842 0.81 0.000854459 0.0007903 0.0712186 0.0658401 36 3323 22 6.89349e+06 436909 648988. 2245.63 2.36 0.239388 0.210405 26050 158493 -1 2930 21 2238 3214 312910 63029 4.23384 4.23384 -159.107 -4.23384 0 0 828058. 2865.25 0.25 0.09 0.10 -1 -1 0.25 0.0232806 0.0205871 185 93 31 31 92 31 + fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 7.05 vpr 54.91 MiB 0.05 6816 -1 -1 1 0.03 -1 -1 30200 -1 -1 21 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56684 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 16.5 MiB 2.25 1150 11245 3095 6987 1163 55.4 MiB 0.17 0.00 3.53115 -123.245 -3.53115 3.53115 0.79 0.000727368 0.000672815 0.0462396 0.0427911 34 2954 36 6.89349e+06 295971 618332. 2139.56 2.04 0.208444 0.182013 25762 151098 -1 2384 20 1527 2113 189701 39339 2.98341 2.98341 -122.792 -2.98341 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0277135 0.0242062 137 61 32 32 60 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.04 vpr 54.78 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30048 -1 -1 20 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56624 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 16.6 MiB 1.12 1121 13443 3684 8167 1592 55.3 MiB 0.21 0.00 3.817 -131.483 -3.817 3.817 0.79 0.000736464 0.000681294 0.0564461 0.0522191 34 2918 33 6.89349e+06 281877 618332. 2139.56 1.88 0.214871 0.188095 25762 151098 -1 2375 19 1471 1757 175873 36845 3.22686 3.22686 -129.372 -3.22686 0 0 787024. 2723.27 0.25 0.08 0.15 -1 -1 0.25 0.0285112 0.0250415 139 63 32 32 62 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.39 vpr 54.90 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30576 -1 -1 27 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 16.8 MiB 1.25 1272 13147 3375 7731 2041 55.7 MiB 0.21 0.00 4.61515 -160.202 -4.61515 4.61515 0.79 0.000836462 0.00077366 0.056704 0.0524976 36 3050 22 6.89349e+06 380534 648988. 2245.63 2.04 0.226919 0.198878 26050 158493 -1 2591 15 1738 2111 219335 43653 4.15236 4.15236 -152.966 -4.15236 0 0 828058. 2865.25 0.26 0.08 0.16 -1 -1 0.26 0.0258936 0.0228266 178 65 64 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.53 vpr 54.95 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30412 -1 -1 26 29 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56704 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 16.6 MiB 1.41 1161 15639 4794 8641 2204 55.4 MiB 0.25 0.00 3.67945 -117.378 -3.67945 3.67945 0.79 0.000777653 0.000719971 0.0651358 0.0602749 30 2539 19 6.89349e+06 366440 556674. 1926.21 1.00 0.153717 0.136537 25186 138497 -1 2022 19 1469 1927 146494 31574 2.96516 2.96516 -115.184 -2.96516 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0292653 0.0256734 157 62 56 29 58 29 + fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.17 vpr 55.16 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30516 -1 -1 29 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57220 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 17.1 MiB 1.28 1517 16893 4857 9388 2648 55.9 MiB 0.29 0.00 4.97404 -168.093 -4.97404 4.97404 0.80 0.000936735 0.000868763 0.0781739 0.0724069 36 3707 47 6.89349e+06 408721 648988. 2245.63 2.40 0.306996 0.269083 26050 158493 -1 3088 21 2558 2957 322665 62271 4.54459 4.54459 -163.46 -4.54459 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0383274 0.0334944 203 127 0 0 128 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 5.04 vpr 54.43 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30136 -1 -1 16 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55900 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 16.0 MiB 0.52 803 5149 1186 3599 364 54.6 MiB 0.09 0.00 2.99217 -104.791 -2.99217 2.99217 0.86 0.000619776 0.000574109 0.0185946 0.0171891 30 1975 22 6.89349e+06 225501 556674. 1926.21 0.96 0.0777613 0.0678151 25186 138497 -1 1605 19 895 1455 108023 23403 2.76181 2.76181 -112.416 -2.76181 0 0 706193. 2443.58 0.23 0.06 0.14 -1 -1 0.23 0.0232423 0.0202756 104 4 85 31 0 0 + fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 9.09 vpr 55.35 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30184 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57012 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 16.8 MiB 1.41 1396 18101 5815 9868 2418 55.7 MiB 0.29 0.00 5.41163 -177.078 -5.41163 5.41163 0.79 0.000855024 0.000790489 0.0776034 0.0717652 34 3517 43 6.89349e+06 394628 618332. 2139.56 2.21 0.274815 0.241313 25762 151098 -1 2890 18 2143 2753 258620 53081 5.19854 5.19854 -181.308 -5.19854 0 0 787024. 2723.27 0.25 0.10 0.15 -1 -1 0.25 0.0308387 0.0271439 179 92 28 28 92 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.17 vpr 55.15 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 29940 -1 -1 24 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56792 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 16.7 MiB 1.89 1193 17248 5142 9796 2310 55.5 MiB 0.28 0.00 4.89074 -162.672 -4.89074 4.89074 0.80 0.000788181 0.000728915 0.0719334 0.0664916 34 3597 29 6.89349e+06 338252 618332. 2139.56 2.35 0.213357 0.187776 25762 151098 -1 2747 21 2521 3161 334852 68612 4.44349 4.44349 -166.285 -4.44349 0 0 787024. 2723.27 0.25 0.12 0.15 -1 -1 0.25 0.0314193 0.0274243 161 96 0 0 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.79 vpr 55.05 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30204 -1 -1 25 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56892 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 16.7 MiB 1.55 1163 10187 2742 6187 1258 55.6 MiB 0.18 0.00 3.75965 -128.904 -3.75965 3.75965 0.80 0.000852727 0.000789764 0.0459764 0.0425491 34 3023 23 6.89349e+06 352346 618332. 2139.56 1.74 0.2151 0.18816 25762 151098 -1 2468 20 1474 2042 210296 42699 3.2337 3.2337 -126.334 -3.2337 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.032481 0.0285404 170 65 61 32 64 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.79 vpr 55.22 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30696 -1 -1 33 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56960 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 17.1 MiB 1.50 1578 21409 7235 11132 3042 55.6 MiB 0.40 0.01 5.18464 -176.869 -5.18464 5.18464 0.80 0.00100632 0.000932021 0.102209 0.0947344 36 3737 27 6.89349e+06 465097 648988. 2245.63 3.38 0.319374 0.282022 26050 158493 -1 3165 21 2807 3319 366015 71035 4.79385 4.79385 -179.291 -4.79385 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0397814 0.0347679 224 96 64 32 96 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.28 vpr 54.35 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 29928 -1 -1 16 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55852 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 15.9 MiB 0.93 774 12860 4018 7384 1458 54.5 MiB 0.13 0.00 3.08706 -94.2237 -3.08706 3.08706 0.79 0.000571544 0.000528511 0.0460701 0.0426047 34 1748 21 6.89349e+06 225501 618332. 2139.56 1.39 0.157058 0.136992 25762 151098 -1 1554 14 674 692 55467 12901 2.36767 2.36767 -92.4489 -2.36767 0 0 787024. 2723.27 0.25 0.04 0.15 -1 -1 0.25 0.0166921 0.0145641 93 56 0 0 53 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.80 vpr 54.78 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30248 -1 -1 21 30 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56252 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 16.4 MiB 1.07 936 13763 4663 7110 1990 54.9 MiB 0.18 0.00 4.23979 -138.497 -4.23979 4.23979 0.78 0.000671506 0.000621367 0.0530012 0.0490822 34 2082 18 6.89349e+06 295971 618332. 2139.56 1.55 0.179793 0.157592 25762 151098 -1 1768 20 1523 2266 206901 43532 3.3262 3.3262 -130.931 -3.3262 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0262313 0.0228786 124 34 60 30 30 30 + fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.95 vpr 54.80 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 56324 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 16.4 MiB 1.93 1009 8448 2021 6048 379 55.0 MiB 0.16 0.00 4.33609 -148.866 -4.33609 4.33609 0.81 0.000713272 0.000660017 0.0360537 0.0333522 36 2700 20 6.89349e+06 253689 648988. 2245.63 2.33 0.172058 0.149903 26050 158493 -1 2281 23 1769 3110 278278 57305 3.6125 3.6125 -144.261 -3.6125 0 0 828058. 2865.25 0.26 0.11 0.16 -1 -1 0.26 0.0305995 0.0266709 129 34 64 32 32 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.61 vpr 54.28 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30236 -1 -1 24 25 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 55992 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 16.3 MiB 0.97 636 10231 2621 6138 1472 54.7 MiB 0.07 0.00 3.787 -96.2626 -3.787 3.787 0.64 0.000249119 0.000228386 0.0158162 0.0144803 34 1776 26 6.89349e+06 338252 618332. 2139.56 1.21 0.0954336 0.0819928 25762 151098 -1 1437 20 1022 1367 112324 25574 3.04631 3.04631 -94.8291 -3.04631 0 0 787024. 2723.27 0.33 0.06 0.16 -1 -1 0.33 0.0207319 0.0181139 107 34 50 25 25 25 + fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.38 vpr 55.13 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30452 -1 -1 28 32 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57000 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 16.9 MiB 2.20 1453 17273 5845 8574 2854 55.7 MiB 0.31 0.01 4.55715 -154.068 -4.55715 4.55715 0.79 0.000873846 0.00080842 0.0763702 0.0706658 36 3909 34 6.89349e+06 394628 648988. 2245.63 2.32 0.2339 0.206329 26050 158493 -1 3007 20 2568 3702 367411 72019 3.88186 3.88186 -150.304 -3.88186 0 0 828058. 2865.25 0.26 0.12 0.16 -1 -1 0.26 0.0349865 0.0306338 190 94 32 32 94 32 + fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.75 vpr 55.55 MiB 0.11 7136 -1 -1 1 0.20 -1 -1 30116 -1 -1 27 31 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57044 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 16.8 MiB 1.65 1285 13758 3623 8223 1912 55.7 MiB 0.24 0.00 4.84654 -156.987 -4.84654 4.84654 0.81 0.000855976 0.000792168 0.0614807 0.0568945 36 3253 21 6.89349e+06 380534 648988. 2245.63 4.15 0.294342 0.257181 26050 158493 -1 2736 19 2116 2884 294154 58412 4.38739 4.38739 -157.397 -4.38739 0 0 828058. 2865.25 0.23 0.06 0.10 -1 -1 0.23 0.0165076 0.0146136 183 94 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt index 233cfb38979..2578c9ce1fa 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt @@ -1,41 +1,41 @@ 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 alu4.blif common 25.09 vpr 59.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61224 14 8 1536 1544 0 1091 497 24 24 576 clb auto 22.4 MiB 0.37 14134 118517 34288 82388 1841 59.8 MiB 1.36 0.02 14.7252 -106.184 -14.7252 nan 1.34 0.00755775 0.0067613 0.475088 0.427291 28 20860 31 1.452e+07 1.425e+07 -1 -1 16.90 3.40425 3.06477 21174 279108 -1 19611 17 6817 25919 2105526 196865 17.7975 nan -125.421 -17.7975 0 0 -1 -1 0.47 0.82 0.32 -1 -1 0.47 0.275056 0.251616 -k4_n4_v7_bidir.xml apex2.blif common 27.14 vpr 63.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 38 3 1916 1919 0 1509 641 27 27 729 clb auto 25.4 MiB 0.44 19895 177409 51714 121663 4032 63.3 MiB 1.92 0.03 15.212 -44.496 -15.212 nan 1.69 0.00858756 0.00771239 0.586467 0.529247 31 29521 38 1.875e+07 1.8e+07 -1 -1 16.62 3.46973 3.13574 28210 394495 -1 27792 16 9499 32569 2852185 250451 17.714 nan -51.336 -17.714 0 0 -1 -1 0.67 1.02 0.45 -1 -1 0.67 0.32604 0.299076 -k4_n4_v7_bidir.xml apex4.blif common 24.26 vpr 57.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 59244 9 19 1271 1290 0 990 436 23 23 529 clb auto 20.1 MiB 0.32 13440 97904 26693 69991 1220 57.9 MiB 1.19 0.02 13.361 -214.609 -13.361 nan 1.22 0.00634064 0.00571439 0.403179 0.365143 32 20454 38 1.323e+07 1.224e+07 -1 -1 15.49 2.62166 2.36829 21042 297717 -1 21778 45 10017 34029 6104889 585796 24.9174 nan -345.566 -24.9174 0 0 -1 -1 0.50 2.08 0.34 -1 -1 0.50 0.557588 0.505821 -k4_n4_v7_bidir.xml bigkey.blif common 27.52 vpr 63.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65080 229 197 2152 2349 1 1587 882 29 29 841 io auto 26.0 MiB 0.38 12720 440594 137247 291517 11830 63.6 MiB 3.47 0.02 8.05109 -1841.77 -8.05109 8.05109 2.03 0.00447643 0.00400338 1.13626 1.02984 18 20694 46 2.187e+07 1.368e+07 -1 -1 14.97 4.06298 3.7066 25794 279159 -1 18007 20 8342 23483 1514225 162064 9.13231 9.13231 -2338.69 -9.13231 0 0 -1 -1 0.49 0.89 0.32 -1 -1 0.49 0.442178 0.407434 -k4_n4_v7_bidir.xml clma.blif common 165.63 vpr 197.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 202384 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 82.9 MiB 2.18 106722 1740445 686705 1039553 14187 191.8 MiB 20.37 0.21 30.8577 -1298.73 -30.8577 30.8577 8.05 0.0443279 0.0382795 4.30919 3.75928 39 138735 26 7.803e+07 7.569e+07 -1 -1 96.54 16.9275 14.9323 121914 1953961 -1 143761 29 48634 164511 37556108 3273302 37.4535 37.4535 -1791.49 -37.4535 0 0 -1 -1 4.06 12.36 2.39 -1 -1 4.06 2.69633 2.40634 -k4_n4_v7_bidir.xml des.blif common 27.25 vpr 67.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68700 256 245 1847 2092 0 1443 950 34 34 1156 io auto 24.3 MiB 0.46 15789 365054 115994 236023 13037 67.1 MiB 2.63 0.03 13.9145 -2287.58 -13.9145 nan 2.82 0.0102633 0.00941085 0.845686 0.776862 18 23642 39 3.072e+07 1.347e+07 -1 -1 12.54 3.58816 3.315 35364 387024 -1 21914 18 8915 30240 2331585 232484 15.6719 nan -2887.51 -15.6719 0 0 -1 -1 0.75 1.05 0.46 -1 -1 0.75 0.428263 0.399134 -k4_n4_v7_bidir.xml diffeq.blif common 23.46 vpr 60.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62096 64 39 1935 1974 1 1104 519 23 23 529 clb auto 23.0 MiB 0.36 9766 125559 31945 90764 2850 60.6 MiB 1.44 0.02 13.2954 -2575.73 -13.2954 13.2954 1.23 0.00878522 0.00785809 0.553021 0.494562 21 16435 48 1.323e+07 1.248e+07 -1 -1 15.60 3.51997 3.15695 17346 200431 -1 13831 22 6769 22906 1463116 150206 14.3532 14.3532 -3290.15 -14.3532 0 0 -1 -1 0.34 0.78 0.22 -1 -1 0.34 0.378326 0.343619 -k4_n4_v7_bidir.xml dsip.blif common 25.84 vpr 60.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62360 229 197 1815 2012 1 1190 816 29 29 841 io auto 23.3 MiB 0.42 11545 347617 108721 229249 9647 60.9 MiB 2.64 0.03 7.21771 -1868.83 -7.21771 7.21771 1.93 0.00929284 0.00846788 0.884819 0.804993 18 18641 50 2.187e+07 1.17e+07 -1 -1 14.31 3.62436 3.32056 25794 279159 -1 15915 19 6571 20190 1355499 141050 8.71824 8.71824 -2334.27 -8.71824 0 0 -1 -1 0.49 0.77 0.32 -1 -1 0.49 0.386269 0.356682 -k4_n4_v7_bidir.xml elliptic.blif common 59.43 vpr 85.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87172 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 43.7 MiB 0.88 31997 527855 177357 344525 5973 84.2 MiB 5.38 0.06 21.0871 -11747.2 -21.0871 21.0871 3.01 0.0192283 0.0171619 1.74014 1.52941 31 45607 28 3.072e+07 2.988e+07 -1 -1 38.53 7.80173 6.94292 44604 633776 -1 43201 18 10982 49284 4580733 382699 26.158 26.158 -14919.1 -26.158 0 0 -1 -1 1.16 2.07 0.72 -1 -1 1.16 0.824359 0.746672 -k4_n4_v7_bidir.xml ex1010.blif common 79.07 vpr 111.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114444 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 49.9 MiB 1.12 45583 717872 256462 460003 1407 111.8 MiB 8.35 0.10 26.0787 -242.703 -26.0787 nan 4.65 0.0215891 0.0193478 1.87356 1.6401 31 63369 20 4.563e+07 4.5e+07 -1 -1 48.15 9.79778 8.71003 64722 929407 -1 63127 18 23354 93631 6503582 626753 30.0004 nan -285.202 -30.0004 0 0 -1 -1 1.77 2.93 1.11 -1 -1 1.77 0.919349 0.831318 -k4_n4_v7_bidir.xml ex5p.blif common 20.82 vpr 56.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57688 8 63 1072 1135 0 907 417 21 21 441 clb auto 18.3 MiB 0.25 11951 89166 24459 62712 1995 56.3 MiB 1.01 0.02 13.0891 -597.085 -13.0891 nan 0.99 0.00572533 0.00519625 0.350613 0.319091 32 18016 36 1.083e+07 1.038e+07 -1 -1 13.49 2.33372 2.11082 17562 246361 -1 19651 31 9269 30599 5599768 541422 27.9948 nan -1124.31 -27.9948 0 0 -1 -1 0.41 1.71 0.29 -1 -1 0.41 0.366185 0.333247 -k4_n4_v7_bidir.xml frisc.blif common 61.80 vpr 87.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89440 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 43.1 MiB 1.00 37555 507189 172892 324772 9525 85.3 MiB 5.80 0.07 27.3947 -13560.1 -27.3947 27.3947 3.14 0.021935 0.0198315 1.78174 1.57292 35 53326 33 3.267e+07 3.138e+07 -1 -1 34.68 7.88156 7.03541 50922 772933 -1 56643 53 18358 81832 15709966 1481510 37.3911 37.3911 -18150.6 -37.3911 0 0 -1 -1 1.47 6.35 0.90 -1 -1 1.47 2.13465 1.92401 -k4_n4_v7_bidir.xml misex3.blif common 21.38 vpr 59.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 60428 14 14 1411 1425 0 1075 460 23 23 529 clb auto 21.4 MiB 0.37 13601 103410 29103 72449 1858 59.0 MiB 1.24 0.02 11.8752 -155.232 -11.8752 nan 1.21 0.00692988 0.00622958 0.438139 0.395015 31 20160 29 1.323e+07 1.296e+07 -1 -1 13.65 2.7408 2.47141 20514 283063 -1 19145 18 7111 25186 2153215 195816 14.7017 nan -189.66 -14.7017 0 0 -1 -1 0.47 0.87 0.34 -1 -1 0.47 0.283157 0.258128 -k4_n4_v7_bidir.xml pdc.blif common 122.33 vpr 128.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 131144 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 51.1 MiB 1.46 68954 805204 304108 495678 5418 116.2 MiB 8.78 0.09 23.054 -810.749 -23.054 nan 4.53 0.0207271 0.0184142 1.96946 1.75185 47 96888 26 4.8e+07 4.587e+07 -1 -1 87.51 11.7651 10.5368 87292 1502116 -1 92826 19 22284 92070 11390779 877364 28.7597 nan -1015.46 -28.7597 0 0 -1 -1 2.90 4.00 1.77 -1 -1 2.90 1.00483 0.913665 -k4_n4_v7_bidir.xml s298.blif common 28.35 vpr 63.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 4 6 1942 1948 1 1189 579 26 26 676 clb auto 25.6 MiB 0.38 13983 154947 45405 108575 967 63.5 MiB 1.87 0.03 21.5885 -166.526 -21.5885 21.5885 1.60 0.00997528 0.0089743 0.686205 0.617728 24 20530 33 1.728e+07 1.707e+07 -1 -1 18.24 4.05893 3.65524 23472 293888 -1 19530 19 6862 36219 2545528 226606 25.9443 25.9443 -202.845 -25.9443 0 0 -1 -1 0.51 1.15 0.34 -1 -1 0.51 0.419084 0.382195 -k4_n4_v7_bidir.xml s38417.blif common 82.48 vpr 138.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 141900 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 66.0 MiB 1.22 44815 1026794 368862 642837 15095 138.6 MiB 11.77 0.13 18.9695 -10891.3 -18.9695 18.9695 5.36 0.0300307 0.0266363 3.02346 2.66113 24 61676 33 5.292e+07 5.205e+07 -1 -1 45.25 13.1025 11.5845 66744 864380 -1 57890 22 26430 86264 5526739 549164 21.6002 21.6002 -13129.1 -21.6002 0 0 -1 -1 1.58 3.48 1.00 -1 -1 1.58 1.73769 1.55936 -k4_n4_v7_bidir.xml s38584.1.blif common 76.63 vpr 135.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 138656 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 65.1 MiB 1.52 43697 1164768 437634 705466 21668 135.2 MiB 12.42 0.15 14.1721 -8996.42 -14.1721 14.1721 4.98 0.0329151 0.0282756 3.23175 2.78781 24 57072 28 5.043e+07 4.941e+07 -1 -1 39.72 10.2643 9.05309 63762 824815 -1 53935 14 20694 62039 3956387 407391 16.3781 16.3781 -10887.7 -16.3781 0 0 -1 -1 1.84 2.42 0.96 -1 -1 1.84 1.16051 1.05298 -k4_n4_v7_bidir.xml seq.blif common 22.07 vpr 62.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63636 41 35 1791 1826 0 1383 615 26 26 676 clb auto 24.2 MiB 0.44 18081 175753 52720 118751 4282 62.1 MiB 1.91 0.03 13.9603 -390.198 -13.9603 nan 1.58 0.00890272 0.00793258 0.620849 0.557185 30 30326 50 1.728e+07 1.617e+07 -1 -1 11.47 2.69897 2.43416 26172 364912 -1 25471 16 8355 28515 2464503 219033 16.6932 nan -476.497 -16.6932 0 0 -1 -1 0.63 1.01 0.42 -1 -1 0.63 0.326513 0.29863 -k4_n4_v7_bidir.xml spla.blif common 96.74 vpr 96.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 98916 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 42.6 MiB 1.09 47739 572182 202092 366095 3995 92.8 MiB 6.40 0.08 20.3447 -666.942 -20.3447 nan 3.76 0.0190267 0.0171101 1.61619 1.42465 39 73234 38 3.888e+07 3.696e+07 -1 -1 64.43 7.67465 6.83268 62858 992060 -1 76669 43 26016 108518 28079796 2834431 40.0312 nan -1132.01 -40.0312 0 0 -1 -1 1.93 8.75 1.20 -1 -1 1.93 1.64479 1.48312 -k4_n4_v7_bidir.xml tseng.blif common 10.48 vpr 57.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58480 52 122 1483 1605 1 736 453 19 19 361 clb auto 19.3 MiB 0.24 5922 99576 25658 70281 3637 57.1 MiB 1.00 0.02 12.1965 -2407.44 -12.1965 12.1965 0.79 0.00657122 0.00593134 0.404003 0.363441 20 9854 47 8.67e+06 8.37e+06 -1 -1 4.96 1.53942 1.38756 11514 125901 -1 9836 31 5244 16737 1326994 150633 17.4688 17.4688 -3312.71 -17.4688 0 0 -1 -1 0.21 0.79 0.14 -1 -1 0.21 0.408251 0.369629 -k4_n4_v7_l1_bidir.xml alu4.blif common 23.03 vpr 59.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61228 14 8 1536 1544 0 1091 497 24 24 576 clb auto 22.4 MiB 0.37 14371 140154 44561 93688 1905 59.8 MiB 1.61 0.02 18.7901 -132.664 -18.7901 nan 1.84 0.00758444 0.0068119 0.567299 0.51143 22 16428 32 1.452e+07 1.425e+07 -1 -1 12.93 2.20323 1.98264 39160 271852 -1 14487 16 6891 27475 1838293 336802 18.6218 nan -135.809 -18.6218 0 0 -1 -1 0.54 0.97 0.30 -1 -1 0.54 0.278074 0.25404 -k4_n4_v7_l1_bidir.xml apex2.blif common 50.15 vpr 64.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66000 38 3 1916 1919 0 1509 641 27 27 729 clb auto 25.3 MiB 0.49 20167 213315 67980 140399 4936 64.1 MiB 2.40 0.03 20.4553 -59.8147 -20.4553 nan 2.44 0.00938485 0.00839128 0.763534 0.684015 25 22195 35 1.875e+07 1.8e+07 -1 -1 36.41 3.69988 3.32577 55250 396047 -1 20368 17 10043 36091 3126397 435651 20.5112 nan -59.5459 -20.5112 0 0 -1 -1 0.84 1.41 0.45 -1 -1 0.84 0.367403 0.3357 -k4_n4_v7_l1_bidir.xml apex4.blif common 58.61 vpr 58.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 59468 9 19 1271 1290 0 990 436 23 23 529 clb auto 20.3 MiB 0.26 13608 114424 34620 78213 1591 58.1 MiB 1.35 0.02 17.6358 -287.714 -17.6358 nan 1.67 0.00623878 0.00563829 0.451797 0.408913 25 15954 29 1.323e+07 1.224e+07 -1 -1 49.32 2.40536 2.16988 39522 283015 -1 13982 16 7467 26967 2776439 385118 17.7013 nan -291.198 -17.7013 0 0 -1 -1 0.56 1.06 0.32 -1 -1 0.56 0.234455 0.214937 -k4_n4_v7_l1_bidir.xml bigkey.blif common 28.02 vpr 72.02 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73752 229 197 2152 2349 1 1587 882 29 29 841 io auto 25.9 MiB 0.37 12928 449050 142972 294362 11716 72.0 MiB 3.57 0.05 10.9343 -2508.89 -10.9343 10.9343 2.92 0.0108356 0.00981268 1.18216 1.07197 13 13251 38 2.187e+07 1.368e+07 -1 -1 13.05 3.54524 3.22639 39906 235943 -1 11958 14 7356 20700 1195443 240334 11.7389 11.7389 -2706.25 -11.7389 0 0 -1 -1 0.50 0.83 0.27 -1 -1 0.50 0.346123 0.318609 -k4_n4_v7_l1_bidir.xml clma.blif common 464.90 vpr 246.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 252128 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 82.8 MiB 2.24 105715 1869854 754217 1098976 16661 246.2 MiB 21.53 0.20 39.7609 -2114 -39.7609 39.7609 11.36 0.0438494 0.0379711 4.63699 4.02888 32 106822 34 7.803e+07 7.569e+07 -1 -1 383.21 20.0981 17.5994 274482 2081397 -1 104310 17 43331 161505 25626710 4759525 40.5516 40.5516 -2296.94 -40.5516 0 0 -1 -1 5.22 10.91 2.46 -1 -1 5.22 1.81623 1.62807 -k4_n4_v7_l1_bidir.xml des.blif common 73.96 vpr 85.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87424 256 245 1847 2092 0 1443 950 34 34 1156 io auto 24.2 MiB 0.46 16479 397730 129821 254301 13608 85.3 MiB 2.95 0.04 20.2632 -3164.21 -20.2632 nan 4.42 0.0109769 0.0100202 0.97614 0.893978 14 17300 34 3.072e+07 1.347e+07 -1 -1 54.65 4.29155 3.95317 59520 369080 -1 15963 14 8088 25865 1923741 318979 19.865 nan -3228.14 -19.865 0 0 -1 -1 0.81 1.00 0.42 -1 -1 0.81 0.358931 0.334079 -k4_n4_v7_l1_bidir.xml diffeq.blif common 53.22 vpr 60.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62228 64 39 1935 1974 1 1104 519 23 23 529 clb auto 23.2 MiB 0.39 10494 150567 41898 104676 3993 60.8 MiB 1.70 0.02 12.9825 -3084.4 -12.9825 12.9825 1.69 0.00868419 0.00776859 0.654731 0.585906 17 11794 50 1.323e+07 1.248e+07 -1 -1 43.29 3.8972 3.50018 30282 197837 -1 10371 18 7391 25712 2401750 464474 13.301 13.301 -3403.44 -13.301 0 0 -1 -1 0.39 1.16 0.22 -1 -1 0.39 0.351985 0.320043 -k4_n4_v7_l1_bidir.xml dsip.blif common 25.85 vpr 70.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72028 229 197 1815 2012 1 1190 816 29 29 841 io auto 23.3 MiB 0.39 11598 374294 119751 244235 10308 70.0 MiB 2.86 0.03 10.0144 -2422.01 -10.0144 10.0144 3.02 0.00960339 0.00875124 0.978592 0.892348 13 11442 27 2.187e+07 1.17e+07 -1 -1 11.41 2.8615 2.61875 39906 235943 -1 11038 14 6322 21798 1233985 243124 9.72035 9.72035 -2465.43 -9.72035 0 0 -1 -1 0.50 0.86 0.29 -1 -1 0.50 0.344218 0.318509 -k4_n4_v7_l1_bidir.xml elliptic.blif common 284.31 vpr 103.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105792 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 43.6 MiB 0.88 32351 567851 200333 360696 6822 103.2 MiB 5.82 0.07 27.9783 -15533.9 -27.9783 27.9783 4.23 0.0212312 0.0184495 1.8959 1.66032 24 35489 32 3.072e+07 2.988e+07 -1 -1 258.74 8.90417 7.90304 89088 639360 -1 31200 13 11222 48913 4715917 727929 27.2432 27.2432 -16421.1 -27.2432 0 0 -1 -1 1.42 2.24 0.72 -1 -1 1.42 0.662089 0.600124 -k4_n4_v7_l1_bidir.xml ex1010.blif common 80.67 vpr 145.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 148960 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 50.0 MiB 1.13 45994 770288 285832 482439 2017 145.5 MiB 9.03 0.10 36.785 -358.756 -36.785 nan 6.44 0.0224082 0.019622 2.08058 1.82301 22 51270 47 4.563e+07 4.5e+07 -1 -1 42.62 7.2793 6.46474 118482 826103 -1 45555 17 25079 97271 6266946 1020432 36.0782 nan -356.064 -36.0782 0 0 -1 -1 1.94 3.46 0.95 -1 -1 1.94 0.903903 0.819041 -k4_n4_v7_l1_bidir.xml ex5p.blif common 61.73 vpr 56.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57948 8 63 1072 1135 0 907 417 21 21 441 clb auto 18.6 MiB 0.26 11883 103179 30703 70308 2168 56.6 MiB 1.15 0.02 16.0477 -701.555 -16.0477 nan 1.35 0.00557558 0.00506472 0.392427 0.357109 25 14366 40 1.083e+07 1.038e+07 -1 -1 53.70 2.43114 2.2025 32642 233591 -1 12166 17 6925 22849 2173695 354592 16.4673 nan -724.712 -16.4673 0 0 -1 -1 0.45 0.96 0.26 -1 -1 0.45 0.226343 0.207949 -k4_n4_v7_l1_bidir.xml frisc.blif common 188.78 vpr 107.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109860 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 42.8 MiB 1.01 38053 550918 195740 345730 9448 107.1 MiB 5.95 0.06 26.7708 -16079.8 -26.7708 26.7708 4.23 0.0183088 0.0163278 1.75373 1.56066 28 41141 39 3.267e+07 3.138e+07 -1 -1 161.14 8.95441 8.00533 103554 761463 -1 37904 19 14894 66085 6762837 1100377 26.4186 26.4186 -16630.5 -26.4186 0 0 -1 -1 1.80 3.32 0.87 -1 -1 1.80 0.886685 0.802483 -k4_n4_v7_l1_bidir.xml misex3.blif common 34.77 vpr 58.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 60200 14 14 1411 1425 0 1075 460 23 23 529 clb auto 21.2 MiB 0.42 13603 122935 37231 83773 1931 58.8 MiB 1.40 0.02 15.8177 -198.917 -15.8177 nan 1.65 0.0064983 0.00586433 0.475689 0.430393 24 15090 31 1.323e+07 1.296e+07 -1 -1 25.70 2.94135 2.65821 39522 283015 -1 13602 13 6397 22681 1644493 266873 16.382 nan -205.208 -16.382 0 0 -1 -1 0.55 0.74 0.31 -1 -1 0.55 0.213952 0.196178 -k4_n4_v7_l1_bidir.xml pdc.blif common 852.44 vpr 151.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 154636 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 51.3 MiB 1.47 70294 897574 354208 536835 6531 143.8 MiB 10.28 0.10 33.2797 -1125.73 -33.2797 nan 6.75 0.0240061 0.0209196 2.4392 2.13191 36 81940 46 4.8e+07 4.587e+07 -1 -1 802.37 11.4824 10.1394 183520 1412616 -1 76274 22 28137 114234 30610013 6689943 36.2145 nan -1241.57 -36.2145 0 0 -1 -1 3.37 10.58 1.68 -1 -1 3.37 1.15451 1.03691 -k4_n4_v7_l1_bidir.xml s298.blif common 33.28 vpr 63.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 4 6 1942 1948 1 1189 579 26 26 676 clb auto 25.4 MiB 0.40 13967 167007 50805 115064 1138 63.3 MiB 1.96 0.03 27.24 -211.207 -27.24 27.24 2.19 0.00970302 0.00875985 0.665042 0.593411 17 15337 50 1.728e+07 1.707e+07 -1 -1 21.09 3.136 2.82459 39072 255848 -1 14347 20 8663 41813 3610876 520557 28.073 28.073 -223.928 -28.073 0 0 -1 -1 0.52 1.46 0.29 -1 -1 0.52 0.423892 0.387337 -k4_n4_v7_l1_bidir.xml s38417.blif common 81.44 vpr 170.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 174232 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 65.7 MiB 1.43 45634 1072858 392628 664107 16123 170.1 MiB 12.37 0.14 24.4627 -13956.7 -24.4627 24.4627 7.76 0.0337966 0.0292043 3.15502 2.72402 17 42648 34 5.292e+07 5.205e+07 -1 -1 35.21 10.1632 8.93125 115248 760028 -1 40952 16 27027 85845 6572579 1304562 24.9505 24.9505 -15520 -24.9505 0 0 -1 -1 1.72 4.00 0.94 -1 -1 1.72 1.34867 1.20555 -k4_n4_v7_l1_bidir.xml s38584.1.blif common 100.80 vpr 164.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 168208 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 65.0 MiB 1.49 43403 1227283 460590 744600 22093 164.3 MiB 12.56 0.19 19.6369 -13002 -19.6369 19.6369 6.95 0.0320916 0.0277405 3.26593 2.84055 18 40282 31 5.043e+07 4.941e+07 -1 -1 58.49 10.3982 9.1874 116850 784767 -1 37340 12 19450 58891 3199854 553346 18.8099 18.8099 -13462.6 -18.8099 0 0 -1 -1 1.87 2.29 0.90 -1 -1 1.87 1.02726 0.926284 -k4_n4_v7_l1_bidir.xml seq.blif common 96.76 vpr 62.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 41 35 1791 1826 0 1383 615 26 26 676 clb auto 24.4 MiB 0.46 18096 199279 64010 129699 5570 62.4 MiB 2.07 0.03 18.8619 -564.146 -18.8619 nan 2.14 0.00795436 0.00714032 0.641004 0.57713 24 20652 40 1.728e+07 1.617e+07 -1 -1 84.57 3.80564 3.42545 51072 366016 -1 18166 15 8859 31682 2613523 386366 18.6362 nan -570.449 -18.6362 0 0 -1 -1 0.74 1.15 0.41 -1 -1 0.74 0.308923 0.281653 -k4_n4_v7_l1_bidir.xml spla.blif common 303.37 vpr 120.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 123652 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 42.4 MiB 1.13 48133 635614 236435 395101 4078 120.6 MiB 7.21 0.08 28.1256 -943.563 -28.1256 nan 5.42 0.0192494 0.0168148 1.81246 1.59236 32 54896 44 3.888e+07 3.696e+07 -1 -1 267.89 8.66975 7.69887 138672 1051752 -1 50886 18 21324 91350 14315862 2585399 31.0484 nan -1030.68 -31.0484 0 0 -1 -1 2.33 5.49 1.24 -1 -1 2.33 0.820607 0.739825 -k4_n4_v7_l1_bidir.xml tseng.blif common 17.63 vpr 57.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58436 52 122 1483 1605 1 736 453 19 19 361 clb auto 19.3 MiB 0.24 6190 104793 28563 72713 3517 57.1 MiB 1.09 0.02 11.4876 -2779.41 -11.4876 11.4876 1.11 0.00717122 0.00645293 0.448883 0.40534 16 6395 29 8.67e+06 8.37e+06 -1 -1 11.50 2.08851 1.88339 19074 119991 -1 5826 16 4189 15066 727869 140663 11.6952 11.6952 -3185.8 -11.6952 0 0 -1 -1 0.23 0.50 0.13 -1 -1 0.23 0.235276 0.214036 +k4_n4_v7_bidir.xml alu4.blif common 24.12 vpr 59.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 60788 14 8 1536 1544 0 1091 497 24 24 576 clb auto 22.0 MiB 0.36 14134 118517 34288 82388 1841 59.4 MiB 1.37 0.02 14.7252 -106.184 -14.7252 nan 1.12 0.0041338 0.00366331 0.271714 0.243387 25 22185 50 1.452e+07 1.425e+07 -1 -1 17.08 1.64315 1.42118 20024 249020 -1 19643 18 7485 28787 1856973 183253 18.2081 nan -127.242 -18.2081 0 0 -1 -1 0.39 0.58 0.17 -1 -1 0.39 0.164945 0.146989 +k4_n4_v7_bidir.xml apex2.blif common 23.04 vpr 62.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 38 3 1916 1919 0 1509 641 27 27 729 clb auto 25.0 MiB 0.48 19895 177409 51714 121663 4032 62.4 MiB 1.90 0.03 15.212 -44.496 -15.212 nan 1.32 0.00453322 0.00401383 0.319098 0.284677 31 30042 48 1.875e+07 1.8e+07 -1 -1 14.14 2.19252 1.89861 28210 394495 -1 27489 18 10423 35308 2518712 226922 17.414 nan -51.9108 -17.414 0 0 -1 -1 0.62 0.75 0.26 -1 -1 0.62 0.210891 0.187998 +k4_n4_v7_bidir.xml apex4.blif common 16.39 vpr 57.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58880 9 19 1271 1290 0 990 436 23 23 529 clb auto 19.8 MiB 0.30 13440 97904 26693 69991 1220 57.5 MiB 1.18 0.02 13.361 -214.609 -13.361 nan 0.97 0.0036159 0.0032405 0.23271 0.210102 31 21346 33 1.323e+07 1.224e+07 -1 -1 9.83 1.23442 1.07601 20514 283063 -1 19516 26 8719 31127 2617816 219969 19.5224 nan -310.816 -19.5224 0 0 -1 -1 0.44 0.79 0.19 -1 -1 0.44 0.195612 0.172638 +k4_n4_v7_bidir.xml bigkey.blif common 22.17 vpr 63.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 229 197 2152 2349 1 1587 882 29 29 841 io auto 25.4 MiB 0.37 12720 440594 137247 291517 11830 63.3 MiB 3.52 0.04 8.05109 -1841.77 -8.05109 8.05109 1.66 0.00657546 0.00601355 0.700193 0.636723 18 21074 36 2.187e+07 1.368e+07 -1 -1 10.87 2.39534 2.14906 25794 279159 -1 18163 19 8810 23773 1317205 148463 9.55894 9.55894 -2411.05 -9.55894 0 0 -1 -1 0.46 0.71 0.19 -1 -1 0.46 0.284402 0.256085 +k4_n4_v7_bidir.xml clma.blif common 129.61 vpr 192.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 197000 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 82.3 MiB 2.23 106722 1740445 686705 1039553 14187 191.1 MiB 21.68 0.22 30.8577 -1298.73 -30.8577 30.8577 7.10 0.0247379 0.0208895 2.49035 2.12513 39 139898 33 7.803e+07 7.569e+07 -1 -1 68.84 10.0806 8.47943 121914 1953961 -1 145560 31 50786 170134 24213648 2072706 43.928 43.928 -1976.14 -43.928 0 0 -1 -1 4.17 7.40 1.34 -1 -1 4.17 1.78675 1.52299 +k4_n4_v7_bidir.xml des.blif common 22.94 vpr 66.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68008 256 245 1847 2092 0 1443 950 34 34 1156 io auto 23.7 MiB 0.44 15789 365054 115994 236023 13037 66.4 MiB 2.69 0.04 13.9145 -2287.58 -13.9145 nan 2.20 0.00785787 0.00713771 0.568984 0.517011 18 24733 42 3.072e+07 1.347e+07 -1 -1 11.04 2.55725 2.32677 35364 387024 -1 21867 20 9592 31868 2033949 211824 16.4631 nan -2830.47 -16.4631 0 0 -1 -1 0.64 0.71 0.27 -1 -1 0.64 0.291194 0.269102 +k4_n4_v7_bidir.xml diffeq.blif common 15.57 vpr 60.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61704 64 39 1935 1974 1 1104 519 23 23 529 clb auto 22.6 MiB 0.35 9766 125559 31945 90764 2850 60.3 MiB 1.31 0.02 13.2954 -2575.73 -13.2954 13.2954 0.93 0.00436202 0.00388465 0.282871 0.252194 28 14026 24 1.323e+07 1.248e+07 -1 -1 9.22 2.15326 1.86482 19458 255519 -1 13722 20 6522 22136 1266841 129767 14.6911 14.6911 -3335 -14.6911 0 0 -1 -1 0.39 0.49 0.17 -1 -1 0.39 0.198128 0.175626 +k4_n4_v7_bidir.xml dsip.blif common 20.89 vpr 60.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61688 229 197 1815 2012 1 1190 816 29 29 841 io auto 22.7 MiB 0.36 11545 347617 108721 229249 9647 60.2 MiB 2.56 0.03 7.21771 -1868.83 -7.21771 7.21771 1.56 0.00549839 0.00503158 0.525958 0.481031 17 18592 40 2.187e+07 1.17e+07 -1 -1 11.27 1.9313 1.74705 24954 258369 -1 17228 27 7945 25254 1750236 186331 14.4449 14.4449 -2518.42 -14.4449 0 0 -1 -1 0.42 0.71 0.12 -1 -1 0.42 0.313435 0.284676 +k4_n4_v7_bidir.xml elliptic.blif common 48.73 vpr 84.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86248 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 43.2 MiB 0.84 31997 527855 177357 344525 5973 83.6 MiB 5.36 0.07 21.0871 -11747.2 -21.0871 21.0871 2.22 0.0132002 0.0119575 1.01139 0.884305 31 47627 41 3.072e+07 2.988e+07 -1 -1 30.54 5.05409 4.35483 44604 633776 -1 43296 17 11756 52453 4011364 345656 26.5093 26.5093 -15148.1 -26.5093 0 0 -1 -1 1.02 1.35 0.42 -1 -1 1.02 0.49038 0.436327 +k4_n4_v7_bidir.xml ex1010.blif common 123.13 vpr 111.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 114048 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 49.7 MiB 1.06 45583 717872 256462 460003 1407 111.4 MiB 9.02 0.11 26.0787 -242.703 -26.0787 nan 3.71 0.0117287 0.0104745 1.04191 0.892165 29 70551 49 4.563e+07 4.5e+07 -1 -1 93.25 6.64732 5.60795 63042 887209 -1 70960 60 34250 138695 14793693 1395129 35.349 nan -339.19 -35.349 0 0 -1 -1 1.48 4.54 0.59 -1 -1 1.48 1.2391 1.069 +k4_n4_v7_bidir.xml ex5p.blif common 15.03 vpr 56.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57408 8 63 1072 1135 0 907 417 21 21 441 clb auto 18.0 MiB 0.24 11951 89166 24459 62712 1995 56.1 MiB 1.07 0.02 13.0891 -597.085 -13.0891 nan 0.83 0.00334688 0.00303474 0.227483 0.205903 31 19422 45 1.083e+07 1.038e+07 -1 -1 9.34 1.20551 1.05284 17122 234247 -1 16999 30 8980 31532 2727851 241910 16.0792 nan -760.984 -16.0792 0 0 -1 -1 0.36 0.72 0.16 -1 -1 0.36 0.182202 0.160998 +k4_n4_v7_bidir.xml frisc.blif common 49.04 vpr 87.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 89852 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 42.6 MiB 0.95 37555 507189 172892 324772 9525 87.7 MiB 6.23 0.07 27.3947 -13560.1 -27.3947 27.3947 2.61 0.0114397 0.0102656 1.22542 1.06763 35 55302 29 3.267e+07 3.138e+07 -1 -1 27.81 4.64992 3.99845 50922 772933 -1 58157 37 18706 89345 12837859 1241478 33.1898 33.1898 -18439.4 -33.1898 0 0 -1 -1 1.26 3.23 0.51 -1 -1 1.26 0.83909 0.738063 +k4_n4_v7_bidir.xml misex3.blif common 12.16 vpr 58.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 59784 14 14 1411 1425 0 1075 460 23 23 529 clb auto 20.9 MiB 0.35 13601 103410 29103 72449 1858 58.4 MiB 1.15 0.02 11.8752 -155.232 -11.8752 nan 0.93 0.00325246 0.0029007 0.208125 0.186995 30 23155 40 1.323e+07 1.296e+07 -1 -1 5.94 1.07771 0.939134 20514 283063 -1 19391 21 7685 27926 1984263 184514 14.9423 nan -194.832 -14.9423 0 0 -1 -1 0.44 0.57 0.19 -1 -1 0.44 0.161414 0.14313 +k4_n4_v7_bidir.xml pdc.blif common 88.40 vpr 120.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 123300 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 50.8 MiB 1.38 68954 805204 304108 495678 5418 115.5 MiB 9.91 0.11 23.054 -810.749 -23.054 nan 4.19 0.0126144 0.0112343 1.24135 1.06079 47 96570 32 4.8e+07 4.587e+07 -1 -1 56.82 6.36808 5.38588 87292 1502116 -1 92933 20 24290 98186 9297624 738423 28.863 nan -1014.92 -28.863 0 0 -1 -1 2.54 2.56 1.00 -1 -1 2.54 0.57477 0.506213 +k4_n4_v7_bidir.xml s298.blif common 21.32 vpr 62.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64496 4 6 1942 1948 1 1189 579 26 26 676 clb auto 25.1 MiB 0.37 13983 154947 45405 108575 967 63.0 MiB 1.76 0.03 21.5885 -166.526 -21.5885 21.5885 1.21 0.00472969 0.00423442 0.331536 0.298699 24 20876 28 1.728e+07 1.707e+07 -1 -1 13.22 2.16004 1.87431 23472 293888 -1 19317 20 7371 37169 2301429 209178 26.2013 26.2013 -205.002 -26.2013 0 0 -1 -1 0.47 0.83 0.20 -1 -1 0.47 0.248693 0.220827 +k4_n4_v7_bidir.xml s38417.blif common 63.83 vpr 137.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 141204 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 65.4 MiB 1.43 44815 1026794 368862 642837 15095 137.9 MiB 12.07 0.15 18.9695 -10891.3 -18.9695 18.9695 4.06 0.0184072 0.016361 1.69204 1.45416 24 62326 36 5.292e+07 5.205e+07 -1 -1 31.06 7.04115 5.97137 66744 864380 -1 58764 21 28068 90938 5025139 524546 22.2754 22.2754 -13665.1 -22.2754 0 0 -1 -1 1.46 2.08 0.58 -1 -1 1.46 0.853576 0.745652 +k4_n4_v7_bidir.xml s38584.1.blif common 58.28 vpr 135.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 138240 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 64.6 MiB 1.48 43697 1164768 437634 705466 21668 134.7 MiB 12.55 0.17 14.1721 -8996.42 -14.1721 14.1721 3.97 0.0176683 0.0149126 1.74419 1.48187 24 58084 43 5.043e+07 4.941e+07 -1 -1 26.04 6.02115 5.12864 63762 824815 -1 54888 15 22010 65800 3599238 385562 16.4749 16.4749 -10997.9 -16.4749 0 0 -1 -1 1.38 1.52 0.55 -1 -1 1.38 0.654091 0.58075 +k4_n4_v7_bidir.xml seq.blif common 21.84 vpr 61.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62996 41 35 1791 1826 0 1383 615 26 26 676 clb auto 23.9 MiB 0.43 18081 175753 52720 118751 4282 61.5 MiB 1.85 0.03 13.9603 -390.198 -13.9603 nan 1.22 0.00453354 0.00402226 0.322465 0.288442 31 26551 32 1.728e+07 1.617e+07 -1 -1 13.42 1.97615 1.71735 26172 364912 -1 25111 18 9264 32012 2257554 207431 17.1038 nan -479.619 -17.1038 0 0 -1 -1 0.58 0.75 0.25 -1 -1 0.58 0.209576 0.187323 +k4_n4_v7_bidir.xml spla.blif common 65.47 vpr 95.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97436 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 42.0 MiB 1.04 47739 572182 202092 366095 3995 92.3 MiB 6.60 0.08 20.3447 -666.942 -20.3447 nan 2.94 0.00993661 0.00883702 0.884725 0.764535 40 68321 29 3.888e+07 3.696e+07 -1 -1 42.27 4.28364 3.655 64302 1028200 -1 66111 18 18691 78705 6624967 552303 24.9567 nan -835.64 -24.9567 0 0 -1 -1 1.87 2.09 0.71 -1 -1 1.87 0.477464 0.416036 +k4_n4_v7_bidir.xml tseng.blif common 8.00 vpr 56.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58076 52 122 1483 1605 1 736 453 19 19 361 clb auto 18.8 MiB 0.24 5922 99576 25658 70281 3637 56.7 MiB 1.02 0.02 12.1965 -2407.44 -12.1965 12.1965 0.64 0.00374419 0.00338162 0.257727 0.230503 20 9734 45 8.67e+06 8.37e+06 -1 -1 3.36 0.878546 0.770267 11514 125901 -1 10135 31 5454 17716 1242459 139569 20.6164 20.6164 -3440.19 -20.6164 0 0 -1 -1 0.19 0.50 0.08 -1 -1 0.19 0.224376 0.19777 +k4_n4_v7_l1_bidir.xml alu4.blif common 23.46 vpr 59.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 60688 14 8 1536 1544 0 1091 497 24 24 576 clb auto 21.9 MiB 0.40 14371 140154 44561 93688 1905 59.3 MiB 1.64 0.02 18.7901 -132.664 -18.7901 nan 1.85 0.00421434 0.0037309 0.328711 0.292193 23 17049 32 1.452e+07 1.425e+07 -1 -1 13.91 1.58419 1.37311 41184 291644 -1 14865 17 8385 30456 2006695 359438 19.0543 nan -138.715 -19.0543 0 0 -1 -1 0.56 0.79 0.27 -1 -1 0.56 0.168758 0.150717 +k4_n4_v7_l1_bidir.xml apex2.blif common 44.50 vpr 63.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65416 38 3 1916 1919 0 1509 641 27 27 729 clb auto 25.0 MiB 0.47 20167 213315 67980 140399 4936 63.8 MiB 2.36 0.03 20.4553 -59.8147 -20.4553 nan 2.19 0.00525084 0.00461175 0.417748 0.370151 25 22501 32 1.875e+07 1.8e+07 -1 -1 32.00 1.93213 1.67613 55250 396047 -1 20558 16 11107 39608 2883364 379073 20.3463 nan -59.3022 -20.3463 0 0 -1 -1 0.79 1.08 0.34 -1 -1 0.79 0.207206 0.185063 +k4_n4_v7_l1_bidir.xml apex4.blif common 47.23 vpr 57.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58832 9 19 1271 1290 0 990 436 23 23 529 clb auto 19.8 MiB 0.30 13608 114424 34620 78213 1591 57.5 MiB 1.36 0.02 17.6358 -287.714 -17.6358 nan 1.40 0.00406965 0.00366346 0.252574 0.227989 25 16613 39 1.323e+07 1.224e+07 -1 -1 39.21 1.3092 1.14024 39522 283015 -1 14065 17 8348 29725 2502780 319861 17.8415 nan -292.888 -17.8415 0 0 -1 -1 0.52 0.76 0.24 -1 -1 0.52 0.140691 0.125915 +k4_n4_v7_l1_bidir.xml bigkey.blif common 26.20 vpr 71.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73104 229 197 2152 2349 1 1587 882 29 29 841 io auto 25.4 MiB 0.36 12928 449050 142972 294362 11716 71.3 MiB 3.67 0.06 10.9343 -2508.89 -10.9343 10.9343 2.59 0.00665848 0.00604013 0.778337 0.702994 13 13046 37 2.187e+07 1.368e+07 -1 -1 12.44 2.23176 1.99987 39906 235943 -1 12168 13 8610 24058 1054488 201897 11.8565 11.8565 -2726.62 -11.8565 0 0 -1 -1 0.47 0.55 0.20 -1 -1 0.47 0.207068 0.189141 +k4_n4_v7_l1_bidir.xml clma.blif common 344.70 vpr 245.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 251372 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 82.1 MiB 2.18 105715 1869854 754217 1098976 16661 245.5 MiB 22.10 0.20 39.7609 -2114 -39.7609 39.7609 9.66 0.0231061 0.019486 2.52631 2.14516 32 109095 38 7.803e+07 7.569e+07 -1 -1 273.45 10.581 8.91006 274482 2081397 -1 106038 19 49129 180968 19975599 3211054 40.0583 40.0583 -2382.37 -40.0583 0 0 -1 -1 4.74 7.88 1.81 -1 -1 4.74 1.26561 1.08492 +k4_n4_v7_l1_bidir.xml des.blif common 29.98 vpr 84.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86760 256 245 1847 2092 0 1443 950 34 34 1156 io auto 23.9 MiB 0.47 16479 397730 129821 254301 13608 84.5 MiB 2.83 0.04 20.2632 -3164.21 -20.2632 nan 3.77 0.00659268 0.00608712 0.578659 0.536443 15 17356 26 3.072e+07 1.347e+07 -1 -1 13.57 2.32341 2.11935 63744 405936 -1 16014 19 9028 28754 1682446 255306 20.1525 nan -3188.86 -20.1525 0 0 -1 -1 0.82 0.76 0.35 -1 -1 0.82 0.288989 0.266703 +k4_n4_v7_l1_bidir.xml diffeq.blif common 18.89 vpr 60.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 61700 64 39 1935 1974 1 1104 519 23 23 529 clb auto 22.7 MiB 0.40 10494 150567 41898 104676 3993 60.3 MiB 1.60 0.02 12.9825 -3084.4 -12.9825 12.9825 1.40 0.00438185 0.00389783 0.338015 0.301275 19 12403 32 1.323e+07 1.248e+07 -1 -1 10.69 1.70679 1.48114 32130 214167 -1 9918 17 6850 22765 1212727 196379 13.1891 13.1891 -3334.61 -13.1891 0 0 -1 -1 0.41 0.55 0.18 -1 -1 0.41 0.194461 0.173692 +k4_n4_v7_l1_bidir.xml dsip.blif common 22.35 vpr 69.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70996 229 197 1815 2012 1 1190 816 29 29 841 io auto 22.6 MiB 0.40 11598 374294 119751 244235 10308 69.2 MiB 2.79 0.04 10.0144 -2422.01 -10.0144 10.0144 2.50 0.00621289 0.00567708 0.589317 0.540111 13 11519 30 2.187e+07 1.17e+07 -1 -1 9.59 1.74462 1.58052 39906 235943 -1 11066 15 7017 22252 1026574 188734 9.60753 9.60753 -2500.07 -9.60753 0 0 -1 -1 0.49 0.62 0.21 -1 -1 0.49 0.215622 0.196995 +k4_n4_v7_l1_bidir.xml elliptic.blif common 196.41 vpr 102.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105272 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 43.1 MiB 0.87 32351 567851 200333 360696 6822 102.5 MiB 5.59 0.06 27.9783 -15533.9 -27.9783 27.9783 3.56 0.01163 0.00998317 1.0096 0.87922 24 35241 35 3.072e+07 2.988e+07 -1 -1 173.54 4.8962 4.19701 89088 639360 -1 31421 15 12601 54447 4224047 573331 27.7141 27.7141 -17305.2 -27.7141 0 0 -1 -1 1.28 1.60 0.54 -1 -1 1.28 0.424701 0.375882 +k4_n4_v7_l1_bidir.xml ex1010.blif common 84.73 vpr 144.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 148472 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 49.7 MiB 1.08 45994 770288 285832 482439 2017 145.0 MiB 9.32 0.11 36.785 -358.756 -36.785 nan 5.81 0.0104211 0.00907119 1.04155 0.902983 24 49736 39 4.563e+07 4.5e+07 -1 -1 50.78 5.21663 4.44117 130962 940591 -1 44794 15 26072 99731 4928139 798848 36.2553 nan -353.763 -36.2553 0 0 -1 -1 1.96 2.18 0.81 -1 -1 1.96 0.454535 0.404035 +k4_n4_v7_l1_bidir.xml ex5p.blif common 28.08 vpr 55.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 57252 8 63 1072 1135 0 907 417 21 21 441 clb auto 17.9 MiB 0.27 11883 103179 30703 70308 2168 55.9 MiB 1.13 0.02 16.0477 -701.555 -16.0477 nan 1.17 0.00322613 0.00293011 0.229667 0.209228 25 14149 36 1.083e+07 1.038e+07 -1 -1 21.29 1.06201 0.933675 32642 233591 -1 12384 18 8145 26736 2029128 314532 16.1734 nan -734.613 -16.1734 0 0 -1 -1 0.42 0.66 0.20 -1 -1 0.42 0.133389 0.119395 +k4_n4_v7_l1_bidir.xml frisc.blif common 130.80 vpr 106.69 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 109248 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 42.5 MiB 0.98 38053 550918 195740 345730 9448 106.5 MiB 6.19 0.07 26.7708 -16079.8 -26.7708 26.7708 4.14 0.010303 0.00906163 1.05687 0.925158 28 41313 34 3.267e+07 3.138e+07 -1 -1 105.32 4.90332 4.23576 103554 761463 -1 38103 17 16253 69809 5466166 790640 27.0494 27.0494 -16977.8 -27.0494 0 0 -1 -1 1.53 2.59 0.64 -1 -1 1.53 0.579081 0.510305 +k4_n4_v7_l1_bidir.xml misex3.blif common 27.84 vpr 58.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 59620 14 14 1411 1425 0 1075 460 23 23 529 clb auto 20.7 MiB 0.35 13603 122935 37231 83773 1931 58.2 MiB 1.37 0.02 15.8177 -198.917 -15.8177 nan 1.40 0.00337935 0.0030165 0.247564 0.222449 22 16753 49 1.323e+07 1.296e+07 -1 -1 19.94 1.17632 1.02545 35826 248591 -1 14225 19 8438 30221 2058391 327987 16.1758 nan -211.579 -16.1758 0 0 -1 -1 0.46 0.71 0.21 -1 -1 0.46 0.157506 0.140457 +k4_n4_v7_l1_bidir.xml pdc.blif common 603.33 vpr 151.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 154712 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 50.8 MiB 1.41 70294 897574 354208 536835 6531 143.5 MiB 10.29 0.10 33.2797 -1125.73 -33.2797 nan 6.02 0.0116927 0.0100533 1.22432 1.05487 36 84046 43 4.8e+07 4.587e+07 -1 -1 561.13 5.75443 4.88078 183520 1412616 -1 76908 25 30856 122689 21090898 3867597 36.0293 nan -1204.73 -36.0293 0 0 -1 -1 3.18 6.27 1.31 -1 -1 3.18 0.714424 0.624352 +k4_n4_v7_l1_bidir.xml s298.blif common 28.19 vpr 62.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 4 6 1942 1948 1 1189 579 26 26 676 clb auto 25.1 MiB 0.37 13967 167007 50805 115064 1138 62.9 MiB 2.02 0.03 27.24 -211.207 -27.24 27.24 2.17 0.00631175 0.00557059 0.43389 0.387036 18 15755 42 1.728e+07 1.707e+07 -1 -1 17.49 1.82856 1.59766 41472 276960 -1 13868 17 8240 38028 2354385 275736 26.668 26.668 -214.548 -26.668 0 0 -1 -1 0.53 0.83 0.24 -1 -1 0.53 0.209484 0.187521 +k4_n4_v7_l1_bidir.xml s38417.blif common 75.01 vpr 169.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 173592 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 65.4 MiB 0.89 45634 1072858 392628 664107 16123 169.5 MiB 12.39 0.14 24.4627 -13956.7 -24.4627 24.4627 6.43 0.0181093 0.0152096 1.7278 1.48155 18 43206 32 5.292e+07 5.205e+07 -1 -1 36.33 6.10271 5.19379 122472 822684 -1 39961 14 26357 82348 3696639 651002 23.9697 23.9697 -14984.9 -23.9697 0 0 -1 -1 1.82 1.98 0.71 -1 -1 1.82 0.667964 0.592642 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 87.65 vpr 163.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 167508 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 64.5 MiB 1.38 43403 1227283 460590 744600 22093 163.6 MiB 13.53 0.27 19.6369 -13002 -19.6369 19.6369 6.45 0.01956 0.0159824 1.93289 1.63535 18 41149 45 5.043e+07 4.941e+07 -1 -1 47.51 6.54287 5.52549 116850 784767 -1 38175 12 22985 70726 3434965 574389 18.8421 18.8421 -13657.9 -18.8421 0 0 -1 -1 1.72 1.74 0.68 -1 -1 1.72 0.601099 0.533485 +k4_n4_v7_l1_bidir.xml seq.blif common 75.68 vpr 61.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62968 41 35 1791 1826 0 1383 615 26 26 676 clb auto 23.9 MiB 0.44 18096 199279 64010 129699 5570 61.5 MiB 2.21 0.03 18.8619 -564.146 -18.8619 nan 2.08 0.00480656 0.00424889 0.397476 0.347914 24 21264 32 1.728e+07 1.617e+07 -1 -1 64.06 1.84617 1.59966 51072 366016 -1 18592 19 10456 38177 2781097 387687 18.4039 nan -572.894 -18.4039 0 0 -1 -1 0.71 1.16 0.31 -1 -1 0.71 0.237137 0.210418 +k4_n4_v7_l1_bidir.xml spla.blif common 244.21 vpr 119.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 122856 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 42.2 MiB 1.06 48133 635614 236435 395101 4078 119.9 MiB 7.28 0.08 28.1256 -943.563 -28.1256 nan 4.61 0.00810392 0.00704344 0.948221 0.823163 32 55932 37 3.888e+07 3.696e+07 -1 -1 212.75 4.38503 3.75147 138672 1051752 -1 52118 23 24848 104291 12484800 1993415 32.7094 nan -1038.29 -32.7094 0 0 -1 -1 2.31 4.14 0.91 -1 -1 2.31 0.547253 0.477904 +k4_n4_v7_l1_bidir.xml tseng.blif common 13.05 vpr 56.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 58036 52 122 1483 1605 1 736 453 19 19 361 clb auto 18.7 MiB 0.23 6190 104793 28563 72713 3517 56.7 MiB 0.98 0.02 11.4876 -2779.41 -11.4876 11.4876 0.88 0.00369963 0.00329852 0.240583 0.215958 16 6705 31 8.67e+06 8.37e+06 -1 -1 8.51 1.20444 1.05415 19074 119991 -1 5911 16 4598 15971 651342 122820 12.0872 12.0872 -3139.62 -12.0872 0 0 -1 -1 0.20 0.19 0.06 -1 -1 0.20 0.0717234 0.0647546 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt index b7ba7e5a23b..6b1afeb96c3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/titan_quick_qor/config/golden_results.txt @@ -1,23 +1,23 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error num_io num_LAB num_DSP num_M9K num_M144K num_PLL 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 routed_wirelength avg_routed_wirelength routed_wiresegment avg_routed_wiresegment total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration num_rr_graph_nodes num_rr_graph_edges collapsed_nodes critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS create_rr_graph_time create_intra_cluster_rr_graph_time adding_internal_edges route_mem crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_mem tile_lookahead_computation_time router_lookahead_computation_time -stratixiv_arch.timing.xml gsm_switch_stratixiv_arch_timing.blif common 5671.62 vpr 8.58 GiB 136 21427 0 1848 0 1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 8994660 100 36 504627 490068 5 201854 23412 255 189 48195 M9K auto 5802.3 MiB 984.73 4467863 49903546 21247866 28503357 152323 8783.8 MiB 2799.40 19.63 10.1002 -1.45763e+06 -9.10021 6.41518 0.33 3.64187 2.97687 554.997 459.337 5361407 26.5619 1063277 5.26776 431719 1264696 985789835 142469759 0 0 8.91222e+08 18492.0 13 13900790 152933424 -1 10.4645 6.63121 -1.89396e+06 -9.46445 0 0 417.65 -1 -1 8783.8 MiB 383.11 675.88 566.067 8783.8 MiB -1 849.37 -stratixiv_arch.timing.xml mes_noc_stratixiv_arch_timing.blif common 8819.12 vpr 7.81 GiB 5 23732 0 800 0 8 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 8192572 3 2 577696 547568 17 345328 24545 193 143 27599 LAB auto 6235.8 MiB 2184.22 4028695 42096147 16159059 25675645 261443 7234.2 MiB 4761.40 54.93 12.2507 -3.23078e+06 -11.2507 8.67398 0.23 3.98098 3.36372 557.806 462.831 5076184 14.7005 1168401 3.38365 832411 2425582 2018149061 160050234 0 0 5.12586e+08 18572.6 46 7972190 87539386 -1 13.0553 8.63177 -3.63983e+06 -12.0553 0 0 241.90 -1 -1 8000.6 MiB 893.12 973.648 827.305 7234.2 MiB -1 478.75 -stratixiv_arch.timing.xml dart_stratixiv_arch_timing.blif common 2129.19 vpr 3.70 GiB 69 6849 0 530 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3879548 23 46 223304 202401 1 132299 7448 138 102 14076 M9K auto 2876.8 MiB 558.59 1760675 8223000 3179024 5005845 38131 3600.7 MiB 918.39 10.32 14.3975 -1.55361e+06 -13.3975 12.9059 0.10 1.72432 1.43174 204.603 170.765 2100698 15.8788 469937 3.55216 316167 781378 607803277 58375661 0 0 2.60164e+08 18482.8 18 4086206 44557676 -1 15.2532 14.2388 -1.75135e+06 -14.2532 0 0 125.26 -1 -1 3781.3 MiB 204.12 279.474 237.306 3600.7 MiB -1 222.08 -stratixiv_arch.timing.xml denoise_stratixiv_arch_timing.blif common 5064.23 vpr 5.26 GiB 852 14019 24 359 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5510452 264 588 355537 274786 1 218653 15254 150 111 16650 LAB auto 4200.0 MiB 544.98 2417820 24219158 9677849 14003222 538087 5295.7 MiB 3332.57 25.76 948.659 -966233 -947.659 948.659 0.12 2.66176 2.317 349.172 308.292 3109666 14.2464 716698 3.28343 978769 2993847 2272820980 184970433 0 0 3.08278e+08 18515.2 23 4815530 52743547 -1 862.182 862.182 -1.11298e+06 -861.182 0 0 147.23 -1 -1 5340.9 MiB 601.45 486.693 431.862 5295.7 MiB -1 261.47 -stratixiv_arch.timing.xml sparcT2_core_stratixiv_arch_timing.blif common 4914.14 vpr 4.88 GiB 451 14776 0 260 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5116568 239 212 302755 300220 1 184357 15487 153 113 17289 LAB auto 3851.6 MiB 1114.18 3832426 23169847 9506430 13556601 106816 4558.6 MiB 2253.44 18.25 10.8261 -754798 -9.82608 10.8261 0.14 2.16845 1.81072 266.975 223.651 4923480 26.7068 1084967 5.88527 586855 2204569 1878623028 207215604 0 0 3.20293e+08 18525.8 110 4998122 54793012 -1 11.3392 11.3392 -1.00872e+06 -10.3392 0 0 151.77 -1 -1 4996.6 MiB 974.89 726.925 621.728 4558.6 MiB -1 260.13 -stratixiv_arch.timing.xml cholesky_bdti_stratixiv_arch_timing.blif common 2769.24 vpr 4.73 GiB 162 9702 132 600 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4954756 94 68 331744 255478 1 158396 10596 169 125 21125 DSP auto 3622.2 MiB 394.79 1929748 14435516 5724133 8647608 63775 4807.1 MiB 1125.56 7.97 8.94582 -538494 -7.94582 8.94582 0.18 2.54701 2.2354 325.873 286.984 2551467 16.1086 532791 3.36375 357621 736976 1080208652 203393503 0 0 3.91827e+08 18548.0 50 6121200 66924827 -1 9.51824 9.51824 -807921 -8.51824 0 0 182.61 -1 -1 4813.3 MiB 553.52 580.439 521.132 4807.1 MiB -1 383.05 -stratixiv_arch.timing.xml minres_stratixiv_arch_timing.blif common 3110.98 vpr 6.41 GiB 229 7882 78 1459 0 1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 6724344 129 100 316623 257480 3 183184 9649 225 167 37575 M9K auto 3679.4 MiB 522.83 2236673 13255111 5209524 7982888 62699 6566.7 MiB 1110.58 7.95 7.76314 -359919 -6.76314 6.91932 0.32 2.49481 2.22874 330.368 292.585 2922223 15.9529 617710 3.37218 396587 778423 727243746 109039808 0 0 6.95909e+08 18520.5 21 10840348 119193881 -1 8.16739 7.26199 -530227 -7.16739 0 0 329.24 -1 -1 6566.7 MiB 293.70 451.043 403.03 6566.7 MiB -1 706.32 -stratixiv_arch.timing.xml stap_qrd_stratixiv_arch_timing.blif common 3121.65 vpr 4.31 GiB 150 15914 75 553 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4524284 68 82 284051 234177 1 145137 16692 158 117 18486 LAB auto 3339.9 MiB 369.95 2115107 36691564 14213931 22244095 233538 4332.1 MiB 1881.56 12.15 7.25014 -466711 -6.25014 7.25014 0.14 1.98166 1.6987 345.857 299.099 2601250 17.9410 533347 3.67853 297115 667725 755775940 111199101 0 0 3.42752e+08 18541.2 21 5339222 58617860 -1 7.70465 7.70465 -635061 -6.70465 0 0 161.18 -1 -1 4338.7 MiB 277.85 442.427 385.643 4332.1 MiB -1 309.08 -stratixiv_arch.timing.xml openCV_stratixiv_arch_timing.blif common 3086.88 vpr 5.59 GiB 208 7083 213 785 40 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5866672 106 102 279132 212552 1 167152 8329 209 155 32395 DSP auto 3145.6 MiB 470.03 2567027 10894768 4397409 6411672 85687 5729.2 MiB 1082.34 7.62 9.74251 -654382 -8.74251 9.74251 0.28 2.50975 2.27325 335.087 299.282 3311762 19.8145 674995 4.03855 428261 968501 1097167020 180873968 0 0 6.00287e+08 18530.2 44 9347734 102632854 -1 10.4243 10.4243 -854406 -9.42435 0 0 281.28 -1 -1 5729.2 MiB 534.98 565.875 510.975 5729.2 MiB -1 588.83 -stratixiv_arch.timing.xml bitonic_mesh_stratixiv_arch_timing.blif common 4005.13 vpr 6.64 GiB 119 7261 85 1664 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 6962640 87 32 233978 190746 1 145909 9129 242 179 43318 M9K auto 3066.6 MiB 756.37 3544456 12311472 4844213 7401987 65272 6799.5 MiB 1418.76 10.57 13.1671 -1.64499e+06 -12.1671 13.1671 0.26 3.02884 2.6924 404.182 359.144 4691969 32.1575 954929 6.54482 447890 1463107 1379671529 211965635 0 0 8.01751e+08 18508.5 19 12487288 137500901 -1 13.8718 13.8718 -1.90084e+06 -12.8718 0 0 379.01 -1 -1 6799.5 MiB 486.15 541.922 485.536 6799.5 MiB -1 821.39 -stratixiv_arch.timing.xml segmentation_stratixiv_arch_timing.blif common 2125.03 vpr 3.28 GiB 441 6914 15 481 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3440700 72 369 178312 137832 1 108244 7851 136 101 13736 M9K auto 2485.1 MiB 264.03 1297300 9913343 3878989 5831499 202855 3360.1 MiB 1163.93 9.17 947.695 -427553 -946.695 947.695 0.11 1.28994 1.13579 171.132 151.796 1749460 16.2059 399825 3.70373 385178 1147238 914878173 81125236 0 0 2.53781e+08 18475.6 23 3977116 43473905 -1 856.422 856.422 -516882 -855.422 0 0 121.44 -1 -1 3360.1 MiB 260.69 238.017 212.242 3360.1 MiB -1 218.33 -stratixiv_arch.timing.xml SLAM_spheric_stratixiv_arch_timing.blif common 1355.37 vpr 2.55 GiB 479 5392 37 0 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2671676 323 156 140638 111354 1 78035 5908 95 70 6650 LAB auto 2152.3 MiB 270.13 1287756 6091912 2300545 3707811 83556 2445.5 MiB 601.20 5.02 87.7382 -410898 -86.7382 87.7382 0.05 1.18809 1.07398 139.025 125.518 1700189 21.7881 376703 4.82748 271586 936414 879162538 104302659 0 0 1.22432e+08 18410.9 19 1937142 20983910 -1 78.9886 78.9886 -433033 -77.9887 0 0 60.42 -1 -1 2605.8 MiB 252.32 193.315 175.588 2445.5 MiB -1 99.94 -stratixiv_arch.timing.xml des90_stratixiv_arch_timing.blif common 2013.89 vpr 3.90 GiB 117 4207 44 860 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4086048 85 32 138853 110549 1 88003 5228 171 127 21717 M9K auto 2156.1 MiB 414.90 1574611 5447828 2061158 3342714 43956 3990.3 MiB 620.64 4.55 12.1408 -847363 -11.1408 12.1408 0.13 1.60769 1.42853 201.655 179.152 2217893 25.2033 465633 5.29128 261979 790097 703430605 105351896 0 0 4.02762e+08 18545.9 48 6285588 68777991 -1 12.2205 12.2205 -930880 -11.2205 0 0 185.38 -1 -1 3990.3 MiB 330.78 359.248 323.755 3990.3 MiB -1 383.69 -stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common 809.28 vpr 2.74 GiB 77 3116 89 136 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2872532 42 35 119888 86875 1 50931 3418 129 96 12384 DSP auto 1857.5 MiB 113.42 578228 3066002 1156131 1886749 23122 2805.2 MiB 235.73 1.81 7.95873 -78890.7 -6.95873 5.69401 0.07 1.03397 0.9368 127.433 115.736 750308 14.7460 159109 3.12702 103893 177168 214450061 38342039 0 0 2.28642e+08 18462.7 20 3593250 39166679 -1 8.43872 6.12839 -116509 -7.43872 0 0 107.77 -1 -1 2805.2 MiB 96.84 175.636 161.102 2805.2 MiB -1 200.92 -stratixiv_arch.timing.xml sparcT1_core_stratixiv_arch_timing.blif common 1000.85 vpr 2.14 GiB 310 4022 1 128 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2238924 173 137 92814 91975 1 60637 4461 82 61 5002 LAB auto 1829.0 MiB 356.85 919687 3932110 1445775 2431767 54568 1991.9 MiB 306.95 2.52 8.80445 -563340 -7.80445 8.80445 0.03 0.71829 0.606069 81.7974 69.0596 1271963 20.9781 285105 4.70214 209578 724517 524810705 52264363 0 0 9.19900e+07 18390.6 30 1450842 15738330 -1 8.9757 8.9757 -638876 -7.9757 0 0 45.57 -1 -1 2182.0 MiB 159.91 129.386 111.127 1991.9 MiB -1 76.75 -stratixiv_arch.timing.xml stereo_vision_stratixiv_arch_timing.blif common 710.14 vpr 2.72 GiB 506 3245 76 113 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2849280 172 334 127090 94090 3 61836 3940 129 96 12384 DSP auto 1824.8 MiB 98.46 502752 3643342 1361392 2231116 50834 2782.5 MiB 198.33 1.77 7.72675 -60005.4 -6.72675 3.43531 0.07 0.548889 0.487546 69.1957 59.3272 585974 9.47718 128986 2.08614 130363 197699 164742788 18330316 0 0 2.28642e+08 18462.7 26 3593250 39166679 -1 7.44333 3.23642 -74665.9 -6.44333 0 0 108.55 -1 -1 2782.5 MiB 68.46 103.002 89.5871 2782.5 MiB -1 183.17 -stratixiv_arch.timing.xml cholesky_mc_stratixiv_arch_timing.blif common 1023.72 vpr 2.87 GiB 262 4760 59 444 16 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3014652 111 151 140214 108592 1 66488 5541 125 93 11625 M9K auto 2151.4 MiB 153.99 790231 6425982 2521235 3836246 68501 2944.0 MiB 360.22 3.44 6.39835 -209444 -5.39835 6.39835 0.07 1.13548 0.993625 153.837 135.036 1136908 17.1005 240929 3.62386 148273 329341 494237128 102145401 0 0 2.14514e+08 18452.8 18 3364308 36746630 -1 6.98103 6.98103 -299618 -5.98103 0 0 102.75 -1 -1 2944.0 MiB 173.21 202.529 179.762 2944.0 MiB -1 163.96 -stratixiv_arch.timing.xml directrf_stratixiv_arch_timing.blif common 19275.08 vpr 17.24 GiB 319 61481 240 2535 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 18080304 62 257 1374456 930989 2 679973 64575 317 235 74495 M9K auto 12896.5 MiB 1505.99 10786792 221488713 88855580 131932545 700588 16074.0 MiB 13437.17 198.70 10.1812 -1.77125e+06 -9.18116 9.2013 0.64 7.33115 6.29698 1310.05 1132 11658347 17.1479 2322869 3.41663 1519527 2648214 3018035332 408783436 0 0 1.38708e+09 18619.7 38 21381670 236484671 -1 10.2849 9.47639 -2.39203e+06 -9.28486 0 0 648.23 -1 -1 16306.8 MiB 1598.57 1903 1665.15 16074.0 MiB -1 1567.18 -stratixiv_arch.timing.xml bitcoin_miner_stratixiv_arch_timing.blif common 16577.10 vpr 12.13 GiB 385 32503 0 1331 0 1 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 12714980 353 32 1446409 1087537 2 860254 34220 225 167 37575 LAB auto 9912.5 MiB 955.98 8576943 71667533 25910806 44936296 820431 10592.9 MiB 12062.32 74.51 6.99145 -900154 -5.99145 6.99145 0.31 6.35382 5.48042 844.523 725.996 10068208 11.7038 2319581 2.69640 2282140 3356795 2877500649 279594881 0 0 6.95909e+08 18520.5 115 10840348 119193881 -1 9.48064 9.48064 -1.31555e+06 -8.48064 0 0 323.57 -1 -1 12353.9 MiB 2098.94 2212.78 1936.14 10592.9 MiB -1 722.97 -stratixiv_arch.timing.xml LU230_stratixiv_arch_timing.blif common 12505.40 vpr 18.35 GiB 373 16564 116 5040 16 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 19239044 178 195 663067 568001 2 410212 22109 430 319 137170 M9K auto 6535.1 MiB 1559.27 16538154 52438811 22173127 30150464 115220 18788.1 MiB 4721.57 26.67 26.4612 -3.15641e+06 -25.4612 8.54802 1.47 5.96764 5.08073 1048.9 909.825 17718090 43.1940 3279064 7.99386 997283 1895070 3609928372 716097339 0 0 2.57820e+09 18795.7 23 39390806 435739863 -1 24.2185 11.4153 -5.65823e+06 -23.2185 0 0 1177.32 -1 -1 18788.1 MiB 1665.13 1365.86 1195.73 18788.1 MiB -1 3033.75 -stratixiv_arch.timing.xml sparcT1_chip2_stratixiv_arch_timing.blif common 11961.82 vpr 11.06 GiB 1891 33591 3 506 0 0 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 11592028 815 1076 764693 760412 1423 415666 35991 280 207 57960 io auto 7993.2 MiB 2347.62 6231162 79030144 33326365 45149769 554010 11002.8 MiB 6748.00 48.53 20.5331 -4.30888e+06 -19.5331 5.06794 0.51 6.04898 5.20534 769.187 653.181 7489944 18.3348 1624648 3.97702 1015372 3220851 1820201447 153051727 0 0 1.07375e+09 18525.7 31 16684552 184044228 -1 21.8877 5.09688 -5.11291e+06 -20.8877 0 0 503.20 -1 -1 11077.1 MiB 790.66 1140.72 982.502 11002.8 MiB -1 1191.24 -stratixiv_arch.timing.xml LU_Network_stratixiv_arch_timing.blif common 9108.74 vpr 9.48 GiB 399 31049 112 1175 0 2 success v8.0.0-11070-g78c89f57c-dirty release VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-20T21:10:29 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 9938824 85 185 721554 630079 28 402685 32737 220 163 35860 LAB auto 7471.4 MiB 1113.34 4668375 86924607 34042775 52241885 639947 8995.0 MiB 6085.81 35.68 9.23505 -604545 -8.23505 5.02053 0.29 5.89756 5.00908 1016.29 874.218 5790703 14.3972 1270404 3.15857 832375 1726677 1357978404 186908086 0 0 6.64235e+08 18523.0 21 10351778 113709513 -1 9.93116 5.21326 -819133 -8.93116 0 0 312.36 -1 -1 9705.9 MiB 591.98 1303.48 1132.66 8995.0 MiB -1 689.86 +stratixiv_arch.timing.xml gsm_switch_stratixiv_arch_timing.blif common 5584.97 vpr 8.58 GiB 136 21427 0 1848 0 1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 8993812 100 36 504627 490068 5 201854 23412 255 189 48195 M9K auto 5801.0 MiB 967.45 4467863 49903546 21247866 28503357 152323 8783.0 MiB 2912.28 23.52 10.1002 -1.45763e+06 -9.10021 6.41518 0.41 2.21338 1.68314 334.475 260.449 5462592 27.0632 1101805 5.45864 495342 1448771 876946479 116415390 0 0 8.91222e+08 18492.0 13 13900790 152933424 -1 10.9046 7.07843 -2.09926e+06 -9.90455 0 0 289.34 -1 -1 8783.0 MiB 239.46 417.01 330.549 8783.0 MiB -1 946.53 +stratixiv_arch.timing.xml mes_noc_stratixiv_arch_timing.blif common 9010.72 vpr 7.81 GiB 5 23732 0 800 0 8 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 8192188 3 2 577696 547568 17 345328 24545 193 143 27599 LAB auto 6234.6 MiB 2094.96 4028695 42096147 16159059 25675645 261443 7235.3 MiB 5369.83 67.48 12.2507 -3.23078e+06 -11.2507 8.67398 0.21 2.76442 2.08074 355.402 277.379 5141329 14.8891 1184570 3.43047 940553 2816716 2223815933 170502278 0 0 5.12586e+08 18572.6 48 7972190 87539386 -1 13.082 8.76402 -3.79403e+06 -12.082 0 0 170.94 -1 -1 8000.2 MiB 664.34 626.919 503.274 7235.3 MiB -1 455.21 +stratixiv_arch.timing.xml dart_stratixiv_arch_timing.blif common 2077.35 vpr 3.70 GiB 69 6849 0 530 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3881548 23 46 223304 202401 1 132299 7448 138 102 14076 M9K auto 2876.2 MiB 539.29 1760675 8223000 3179024 5005845 38131 3599.8 MiB 978.34 12.70 14.3975 -1.55361e+06 -13.3975 12.9059 0.13 1.07665 0.825749 127.768 99.128 2141418 16.1866 481068 3.63630 362770 912622 680501527 60670455 0 0 2.60164e+08 18482.8 19 4086206 44557676 -1 15.7414 14.7364 -1.84684e+06 -14.7414 0 0 81.39 -1 -1 3781.4 MiB 154.87 179.407 143.373 3599.8 MiB -1 221.22 +stratixiv_arch.timing.xml denoise_stratixiv_arch_timing.blif common 5475.85 vpr 5.25 GiB 852 14019 24 359 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5501376 264 588 355537 274786 1 218653 15254 150 111 16650 LAB auto 4212.6 MiB 530.97 2417820 24219158 9677849 14003222 538087 4936.0 MiB 3708.49 24.76 948.659 -966233 -947.659 948.659 0.15 1.47129 1.23135 206.04 174.928 3154732 14.4529 731410 3.35083 1597583 4791501 3451819063 399133582 0 0 3.08278e+08 18515.2 51 4815530 52743547 -1 866.025 866.025 -1.1269e+06 -865.025 0 0 102.30 -1 -1 5333.7 MiB 700.93 364.363 311.174 4936.0 MiB -1 259.56 +stratixiv_arch.timing.xml sparcT2_core_stratixiv_arch_timing.blif common 4630.97 vpr 4.89 GiB 451 14776 0 260 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5123164 239 212 302755 300220 1 184357 15487 153 113 17289 LAB auto 3851.1 MiB 1085.11 3832426 23169847 9506430 13556601 106816 4558.0 MiB 2558.16 18.59 10.8261 -754798 -9.82608 10.8261 0.15 1.38668 1.10621 175.159 139.751 4985204 27.0416 1106272 6.00084 709496 2681072 1828925687 151360328 0 0 3.20293e+08 18525.8 51 4998122 54793012 -1 11.4504 11.4504 -1.06837e+06 -10.4504 0 0 108.07 -1 -1 5003.1 MiB 452.34 319.306 258.578 4558.0 MiB -1 275.00 +stratixiv_arch.timing.xml cholesky_bdti_stratixiv_arch_timing.blif common 2190.14 vpr 4.73 GiB 162 9702 132 600 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4956972 94 68 331744 255478 1 158396 10596 169 125 21125 DSP auto 3621.4 MiB 379.94 1929748 14435516 5724133 8647608 63775 4806.2 MiB 979.23 9.56 8.94582 -538494 -7.94582 8.94582 0.14 1.61061 1.30937 165.741 135.874 2576229 16.2649 545231 3.44229 382362 810649 1024747533 192027368 0 0 3.91827e+08 18548.0 22 6121200 66924827 -1 9.72803 9.72803 -832606 -8.72803 0 0 132.04 -1 -1 4812.9 MiB 270.02 238.462 200.081 4806.2 MiB -1 304.63 +stratixiv_arch.timing.xml minres_stratixiv_arch_timing.blif common 2863.09 vpr 6.41 GiB 229 7882 78 1459 0 1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 6721056 129 100 316623 257480 3 183184 9649 225 167 37575 M9K auto 3676.6 MiB 504.73 2236673 13255111 5209524 7982888 62699 6563.5 MiB 1159.20 7.64 7.76314 -359919 -6.76314 6.91932 0.34 1.24968 1.05846 174.966 145.751 2966203 16.1930 624833 3.41107 410141 814777 710650285 107135238 0 0 6.95909e+08 18520.5 13 10840348 119193881 -1 10.8415 8.93887 -562374 -9.84155 0 0 230.17 -1 -1 6563.5 MiB 167.29 224.518 189.924 6563.5 MiB -1 658.34 +stratixiv_arch.timing.xml stap_qrd_stratixiv_arch_timing.blif common 3024.80 vpr 4.31 GiB 150 15914 75 553 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4521300 68 82 284051 234177 1 145137 16692 158 117 18486 LAB auto 3334.3 MiB 360.34 2115107 36691564 14213931 22244095 233538 4326.4 MiB 1975.68 13.59 7.25014 -466711 -6.25014 7.25014 0.15 1.08012 0.863518 190.808 156.058 2619263 18.0653 540504 3.72790 317308 738979 765202942 109923598 0 0 3.42752e+08 18541.2 18 5339222 58617860 -1 7.80313 7.80313 -669353 -6.80313 0 0 114.42 -1 -1 4332.1 MiB 181.51 241.722 200.093 4326.4 MiB -1 277.58 +stratixiv_arch.timing.xml openCV_stratixiv_arch_timing.blif common 2690.16 vpr 5.58 GiB 208 7083 213 785 40 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 5855924 106 102 279132 212552 1 167152 8329 209 155 32395 DSP auto 3145.0 MiB 461.51 2567027 10894768 4397409 6411672 85687 5718.7 MiB 1031.84 6.87 9.74251 -654382 -8.74251 9.74251 0.26 1.24517 1.08658 176.114 147.808 3377756 20.2094 694394 4.15461 482393 1092965 1068919569 167541047 0 0 6.00287e+08 18530.2 42 9347734 102632854 -1 10.9188 10.9188 -900696 -9.91876 0 0 198.29 -1 -1 5718.7 MiB 332.99 295.394 251.562 5718.7 MiB -1 541.94 +stratixiv_arch.timing.xml bitonic_mesh_stratixiv_arch_timing.blif common 3505.59 vpr 6.64 GiB 119 7261 85 1664 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 6962768 87 32 233978 190746 1 145909 9129 242 179 43318 M9K auto 3066.6 MiB 721.99 3544456 12311472 4844213 7401987 65272 6799.6 MiB 1339.05 11.74 13.1671 -1.64499e+06 -12.1671 13.1671 0.30 1.55997 1.29598 206.308 172.01 4770915 32.6986 980332 6.71893 525647 1700257 1435171483 219195787 0 0 8.01751e+08 18508.5 18 12487288 137500901 -1 14.0071 14.0071 -2.02789e+06 -13.0071 0 0 257.40 -1 -1 6799.6 MiB 340.70 280.542 237.458 6799.6 MiB -1 710.65 +stratixiv_arch.timing.xml segmentation_stratixiv_arch_timing.blif common 2149.79 vpr 3.31 GiB 441 6914 15 481 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3468904 72 369 178312 137832 1 108244 7851 136 101 13736 M9K auto 2493.9 MiB 258.23 1297300 9913343 3878989 5831499 202855 3387.6 MiB 1220.85 9.54 947.695 -427553 -946.695 947.695 0.09 0.755851 0.638949 101.24 86.4475 1767076 16.3691 406645 3.76691 632380 1821959 1613750709 211389659 0 0 2.53781e+08 18475.6 25 3977116 43473905 -1 859.248 859.248 -524221 -858.248 0 0 85.60 -1 -1 3387.6 MiB 286.65 143.851 123.401 3387.6 MiB -1 202.08 +stratixiv_arch.timing.xml SLAM_spheric_stratixiv_arch_timing.blif common 1246.34 vpr 2.55 GiB 479 5392 37 0 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2674004 323 156 140638 111354 1 78035 5908 95 70 6650 LAB auto 2151.9 MiB 257.63 1287756 6091912 2300545 3707811 83556 2444.9 MiB 611.34 5.64 87.7382 -410898 -86.7382 87.7382 0.06 0.60791 0.518934 72.8521 61.9047 1724654 22.1016 383694 4.91707 323369 1108646 907194364 96132899 0 0 1.22432e+08 18410.9 21 1937142 20983910 -1 78.568 78.568 -437199 -77.568 0 0 43.28 -1 -1 2608.0 MiB 184.28 105.714 90.9379 2444.9 MiB -1 80.55 +stratixiv_arch.timing.xml des90_stratixiv_arch_timing.blif common 1930.84 vpr 3.90 GiB 117 4207 44 860 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 4085608 85 32 138853 110549 1 88003 5228 171 127 21717 M9K auto 2155.6 MiB 405.22 1574611 5447828 2061158 3342714 43956 3989.9 MiB 672.49 5.09 12.1408 -847363 -11.1408 12.1408 0.16 0.861106 0.716395 108.195 90.2771 2256171 25.6383 476018 5.40930 314470 977856 773993821 114044884 0 0 4.02762e+08 18545.9 50 6285588 68777991 -1 12.5728 12.5728 -963053 -11.5728 0 0 136.72 -1 -1 3989.9 MiB 238.64 198.69 169.15 3989.9 MiB -1 397.22 +stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common 725.93 vpr 2.74 GiB 77 3116 89 136 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2874960 42 35 119888 86875 1 50931 3418 129 96 12384 DSP auto 1857.3 MiB 117.24 578228 3066002 1156131 1886749 23122 2807.6 MiB 210.57 1.54 7.95873 -78890.7 -6.95873 5.69401 0.08 0.476214 0.396919 59.6739 50.1316 764402 15.0230 163657 3.21640 112122 192327 209056041 36319805 0 0 2.28642e+08 18462.7 22 3593250 39166679 -1 8.73244 6.7618 -126029 -7.73244 0 0 77.38 -1 -1 2807.6 MiB 59.76 85.3107 73.1816 2807.6 MiB -1 208.20 +stratixiv_arch.timing.xml sparcT1_core_stratixiv_arch_timing.blif common 885.85 vpr 2.14 GiB 310 4022 1 128 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2240716 173 137 92814 91975 1 60637 4461 82 61 5002 LAB auto 1830.5 MiB 340.30 919687 3932110 1445775 2431767 54568 1993.5 MiB 290.24 2.53 8.80445 -563340 -7.80445 8.80445 0.03 0.409575 0.326884 47.5851 37.9342 1279548 21.1032 288931 4.76524 234633 789825 546672698 48334933 0 0 9.19900e+07 18390.6 30 1450842 15738330 -1 9.33037 9.33037 -663929 -8.33037 0 0 32.47 -1 -1 2183.7 MiB 114.02 78.8426 64.4166 1993.5 MiB -1 55.44 +stratixiv_arch.timing.xml stereo_vision_stratixiv_arch_timing.blif common 614.77 vpr 2.73 GiB 506 3245 76 113 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2858252 172 334 127090 94090 3 61836 3940 129 96 12384 DSP auto 1833.5 MiB 96.87 502752 3643342 1361392 2231116 50834 2791.3 MiB 166.20 1.45 7.72675 -60005.4 -6.72675 3.43531 0.09 0.290946 0.254006 39.182 31.9872 600362 9.70988 131255 2.12284 140899 219737 169141927 17725251 0 0 2.28642e+08 18462.7 40 3593250 39166679 -1 7.43398 3.25428 -75176.3 -6.43398 0 0 76.29 -1 -1 2791.3 MiB 53.56 66.7809 55.6442 2791.3 MiB -1 171.63 +stratixiv_arch.timing.xml cholesky_mc_stratixiv_arch_timing.blif common 892.28 vpr 2.88 GiB 262 4760 59 444 16 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 3019348 111 151 140214 108592 1 66488 5541 125 93 11625 M9K auto 2155.8 MiB 150.07 790231 6425982 2521235 3836246 68501 2948.6 MiB 332.79 3.23 6.39835 -209444 -5.39835 6.39835 0.08 0.584174 0.469188 80.1938 65.2897 1136972 17.1014 244271 3.67413 158297 354853 469071809 95617872 0 0 2.14514e+08 18452.8 18 3364308 36746630 -1 7.09177 7.09177 -337745 -6.09177 0 0 73.57 -1 -1 2948.6 MiB 113.64 107.121 89.0404 2948.6 MiB -1 152.91 +stratixiv_arch.timing.xml directrf_stratixiv_arch_timing.blif common 19879.54 vpr 17.26 GiB 319 61481 240 2535 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 18096984 62 257 1374456 930989 2 679973 64575 317 235 74495 M9K auto 12894.8 MiB 1525.75 10786792 221488713 88855580 131932545 700588 16471.3 MiB 14874.27 350.50 10.1812 -1.77125e+06 -9.18116 9.2013 0.68 4.40822 3.58955 790.874 650.92 11856469 17.4393 2396422 3.52482 1720875 3066525 2679623453 301199872 0 0 1.38708e+09 18619.7 39 21381670 236484671 -1 10.5218 9.50802 -2.59237e+06 -9.52179 0 0 444.87 -1 -1 16471.3 MiB 992.10 1144.76 954.68 16471.3 MiB -1 1542.33 +stratixiv_arch.timing.xml bitcoin_miner_stratixiv_arch_timing.blif common 16986.48 vpr 12.19 GiB 385 32503 0 1331 0 1 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 12787120 353 32 1446409 1087537 2 860254 34220 225 167 37575 LAB auto 9910.8 MiB 950.87 8576943 71667533 25910806 44936296 820431 10586.8 MiB 13298.67 83.72 6.99145 -900154 -5.99145 6.99145 0.35 3.86579 3.27885 526.699 441.437 10214699 11.8741 2345678 2.72674 2436884 3623409 2965683935 272448437 0 0 6.95909e+08 18520.5 112 10840348 119193881 -1 8.75556 8.75556 -1.36034e+06 -7.75556 0 0 227.25 -1 -1 12487.4 MiB 1445.49 1377.3 1160.17 10586.8 MiB -1 657.15 +stratixiv_arch.timing.xml LU230_stratixiv_arch_timing.blif common 11518.51 vpr 18.35 GiB 373 16564 116 5040 16 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 19241832 178 195 663067 568001 2 410212 22109 430 319 137170 M9K auto 6535.4 MiB 1542.97 16538154 52438811 22173127 30150464 115220 18790.9 MiB 4750.53 29.72 26.4612 -3.15641e+06 -25.4612 8.54802 0.93 3.54113 2.78955 604.304 491.64 18218165 44.4131 3402430 8.29460 1211396 2416360 2697424191 442575381 0 0 2.57820e+09 18795.7 48 39390806 435739863 -1 24.2139 10.4938 -6.4649e+06 -23.2139 0 0 821.65 -1 -1 18790.9 MiB 1032.89 953.866 786.489 18790.9 MiB -1 3026.42 +stratixiv_arch.timing.xml sparcT1_chip2_stratixiv_arch_timing.blif common 12050.64 vpr 11.04 GiB 1891 33591 3 506 0 0 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 11581344 815 1076 764693 760412 1423 415666 35991 280 207 57960 io auto 7978.9 MiB 2254.77 6231162 79030144 33326365 45149769 554010 10988.5 MiB 7281.75 48.57 20.5331 -4.30888e+06 -19.5331 5.06794 0.48 3.25803 2.63022 465.321 374.286 7571541 18.5346 1644719 4.02615 1102574 3533010 1959668404 159494299 0 0 1.07375e+09 18525.7 34 16684552 184044228 -1 21.8034 5.204 -5.29983e+06 -20.8034 0 0 348.25 -1 -1 11075.3 MiB 595.66 715.574 584.357 10988.5 MiB -1 1202.33 +stratixiv_arch.timing.xml LU_Network_stratixiv_arch_timing.blif common 8976.05 vpr 9.44 GiB 399 31049 112 1175 0 2 success v8.0.0-11107-g643811bbb release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-21T23:47:21 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 9902216 85 185 721554 630079 28 402685 32737 220 163 35860 LAB auto 7431.1 MiB 1084.42 4668375 86924607 34042775 52241885 639947 8951.3 MiB 6250.24 38.22 9.23505 -604545 -8.23505 5.02053 0.32 3.34501 2.6523 581.227 470.053 5871813 14.5989 1286976 3.19977 887168 1870107 1387707895 185419420 0 0 6.64235e+08 18523.0 32 10351778 113709513 -1 11.0495 5.37122 -864292 -10.0495 0 0 213.66 -1 -1 9670.1 MiB 485.03 823.64 677.407 8951.3 MiB -1 631.49 From deddc8a9f9e8ee5d6dc431e9be42334f79b7a1a7 Mon Sep 17 00:00:00 2001 From: Nathan Shreve Date: Wed, 28 Aug 2024 17:47:51 -0400 Subject: [PATCH 25/25] Disabled RCV support for RouterLookahead, comments --- vpr/src/base/read_options.cpp | 3 +- vpr/src/base/vpr_types.h | 5 +++ vpr/src/place/timing_place_lookup.cpp | 16 ++++++++ vpr/src/route/connection_router.cpp | 21 +++------- vpr/src/route/heap_type.h | 3 ++ vpr/src/route/lookahead_profiler.cpp | 20 +++++++++- vpr/src/route/lookahead_profiler.h | 13 +++--- vpr/src/route/route_common.h | 40 +++++++++++++------ vpr/src/route/route_path_manager.cpp | 9 ----- vpr/src/route/route_path_manager.h | 2 - vpr/src/route/route_tree.cpp | 4 +- vpr/src/route/route_tree.h | 31 +++++++++----- vpr/src/route/router_delay_profiling.cpp | 2 +- vpr/src/route/router_delay_profiling.h | 3 ++ vpr/src/route/router_lookahead.cpp | 5 ++- vpr/src/route/router_lookahead.h | 16 ++++++-- vpr/src/route/router_lookahead_extended_map.h | 5 ++- vpr/src/route/router_lookahead_map.cpp | 5 ++- vpr/src/route/router_lookahead_map.h | 5 ++- 19 files changed, 141 insertions(+), 67 deletions(-) diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 4156373bfca..5ecf53b1395 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -1677,7 +1677,8 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio .help( "For every routed sink, record the cost, delay, and congestion estimated by the router lookahead and the " "actual cost, delay, and congestion, from every node along each route to the sink. These results, along with many " - "other attributes of the node, are recorded into the file name provided. File extension must be .csv.") + "other attributes of the node, are recorded into the file name provided. Used to assist in debugging or validating " + "the router lookahead. File extension must be .csv.") .show_in(argparse::ShowIn::HELP_ONLY); file_grp.add_argument(args.read_placement_delay_lookup, "--read_placement_delay_lookup") diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index ebffa98f8f0..30d3112649b 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1400,6 +1400,8 @@ struct t_router_opts { std::string write_intra_cluster_router_lookahead; std::string read_intra_cluster_router_lookahead; + ///@brief The name of the output .csv file when PROFILE_LOOKAHEAD and --profile_router_lookahead are used. + ///If the string is empty, there will be no output. std::string lookahead_profiling_output; e_heap_type router_heap; @@ -1687,6 +1689,9 @@ struct t_rr_node_route_inf { float path_cost; float backward_path_cost; #ifdef PROFILE_LOOKAHEAD + // This data is needed for the LookaheadProfiler, when enabled. It is only conditionally + // compiled since this struct is a hot and large data structure. + ///@brief Total delay in the path up to and including this node. float backward_path_delay; ///@brief Total congestion in the path up to and including this node. diff --git a/vpr/src/place/timing_place_lookup.cpp b/vpr/src/place/timing_place_lookup.cpp index d1c99580d96..2889d0cab16 100644 --- a/vpr/src/place/timing_place_lookup.cpp +++ b/vpr/src/place/timing_place_lookup.cpp @@ -110,6 +110,22 @@ static void generic_compute_matrix_iterative_astar( const std::set& allowed_types, bool /***/); +/** + * @brief Compute delta delay matrix using Djikstra's algorithm to find shortest paths from a IPIN at the + * source location to OPINs within (start_x, start_y) to (end_x, end_y). + * + * @param route_profiler Only used to call get_net_list(), which is passed into + * calculate_all_path_delays_from_rr_node(), which is needed for the LookaheadProfiler. + * @param matrix The matrix to be filled. + * @param layer_num The layer of the source and sink nodes to be sampled. + * @param (source_x, source_y) The coordinates of the tile to sample an IPIN at. + * @param (start_x, start_y, end_x, end_y) The bounds within which OPINs should be sampled. + * @param router_opts + * @param measure_directconnect Whether to measure/include direct connects. + * @param allowed_types The allowed tile type names for the source location. If this vector is empty, all + * names are allowed. If the source tile type is not allowed, the matrix is filled with EMPTY_DELTA. + * @param is_flat Whether flat routing is being used. + */ static void generic_compute_matrix_dijkstra_expansion( RouterDelayProfiler& route_profiler, vtr::Matrix>& matrix, diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index fe23de9a2c5..735ecfb9e47 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -239,21 +239,10 @@ 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()) { -#ifdef PROFILE_LOOKAHEAD - rcv_path_manager.insert_backwards_path_into_traceback(cheapest->path_data, - cheapest->cost, - cheapest->backward_path_cost, - cheapest->backward_path_delay, - cheapest->backward_path_congestion, - route_ctx); -#else rcv_path_manager.insert_backwards_path_into_traceback(cheapest->path_data, cheapest->cost, cheapest->backward_path_cost, - /*backward_path_delay=*/0.f, - /*backward_path_congestion=*/0.f, route_ctx); -#endif } 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; @@ -947,15 +936,15 @@ 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()); -#ifdef PROFILE_LOOKAHEAD +#ifndef PROFILE_LOOKAHEAD push_back_node(&heap_, rr_node_route_inf_, inode, tot_cost, /*prev_edge=*/RREdgeId::INVALID(), backward_path_cost, - backward_path_delay, - backward_path_congestion, + /*backward_path_delay=*/0.f, + /*backward_path_congestion=*/0.f, R_upstream); #else push_back_node(&heap_, @@ -964,8 +953,8 @@ void ConnectionRouter::add_route_tree_node_to_heap( tot_cost, /*prev_edge=*/RREdgeId::INVALID(), backward_path_cost, - /*backward_path_delay=*/0.f, - /*backward_path_congestion=*/0.f, + backward_path_delay, + backward_path_congestion, R_upstream); #endif } else { diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index d184abce606..cfcc2b7c89a 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -19,6 +19,9 @@ struct t_heap { ///.cost member contains not only the known backward cost but also an expected cost to the target. float backward_path_cost = 0.; #ifdef PROFILE_LOOKAHEAD + // This data is needed for the LookaheadProfiler, when enabled. It is only conditionally + // compiled since there may be many instances of this struct and it is in hot code. + ///@brief The "known" delay in the path up to and including this node. Recorded for LookaheadProfiler during routing. float backward_path_delay = 0.; ///@brief The "known" congestion in the path up to and including this node. Recorded for LookaheadProfiler during routing. diff --git a/vpr/src/route/lookahead_profiler.cpp b/vpr/src/route/lookahead_profiler.cpp index 357ea1db8dd..327cf3d5379 100644 --- a/vpr/src/route/lookahead_profiler.cpp +++ b/vpr/src/route/lookahead_profiler.cpp @@ -55,6 +55,24 @@ void LookaheadProfiler::record(int iteration, const ParentNetId& net_id, const Netlist<>& net_list, const std::vector& branch_inodes) { + /** + * This function records data into the output file created in set_file_name(). If that file name was + * an empty string, this function returns. If the output file is not open, VPR will throw an error. + * + * First, we get the RRNodeIds of the sink and source nodes (assumed to be the beginning and end of + * branch_inodes, respectively. + * + * Next, using net_id, net_list, and target_net_pin_index, we obtain the name of the atom block, + * the name of the type of atom block, the name of the type of cluster block, and the tile dimensions + * where the sink node is located. + * + * We then iterate through all other nodes in branch_inodes and calculate the expected and actual cost, + * congestion, and delay from the current node to the sink node, as well as the current node type and + * length, and the xy-deltas to the sink node. + * + * Finally, all this information is written to the output .csv file. + */ + if (!enabled_) return; @@ -162,7 +180,7 @@ void LookaheadProfiler::record(int iteration, lookahead_verifier_csv_ << "\n"; } #else - throw vtr::VtrError("Profiler enabled, but PROFILE_LOOKAHEAD not defined.", "lookahead_profiler.cpp", 165); + throw vtr::VtrError("Profiler enabled, but PROFILE_LOOKAHEAD not defined.", "lookahead_profiler.cpp", 183); (void)iteration; (void)target_net_pin_index; (void)cost_params; diff --git a/vpr/src/route/lookahead_profiler.h b/vpr/src/route/lookahead_profiler.h index 6117a052e89..8ec445c692a 100644 --- a/vpr/src/route/lookahead_profiler.h +++ b/vpr/src/route/lookahead_profiler.h @@ -13,7 +13,7 @@ * well as the lookahead's estimation of this cost. * * @warning - * To use the LookaheadProfiler, you must build VPR with #define PROFILE_LOOKAHEAD. + * To use the LookaheadProfiler, you must build VPR with CMAKE_PARAMS="-DVPR_PROFILE_LOOKAHEAD=on". */ class LookaheadProfiler { public: @@ -38,10 +38,13 @@ class LookaheadProfiler { * * @param iteration The router iteration. * @param target_net_pin_index Target pin of this sink in the net. - * @param cost_params - * @param router_lookahead - * @param net_id - * @param net_list + * @param cost_params Passed into router_lookahead's methods to obtain expected cost, + * delay, and congestion. + * @param router_lookahead Its methods are called to obtain the expected cost, delay, + * and congestion to the node represented by target_net_pin_index from all other nodes + * in branch_inodes. + * @param net_id Used to obtain atom and cluster block IDs. + * @param net_list Used to obtain atom and cluster block IDs. * @param branch_inodes A backwards path of nodes, starting at a sink. * * @warning diff --git a/vpr/src/route/route_common.h b/vpr/src/route/route_common.h index a92e3d223d1..ef99e25ed5c 100644 --- a/vpr/src/route/route_common.h +++ b/vpr/src/route/route_common.h @@ -145,14 +145,30 @@ float get_cost_from_lookahead(const RouterLookahead& router_lookahead, 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. */ +/** + * @brief 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. + * + * @tparam T + * @tparam RouteInf + * @param heap + * @param rr_node_route_inf + * @param inode + * @param total_cost + * @param prev_edge + * @param backward_path_cost + * @param backward_path_delay The known backward path delay used to calculate + * backward_path_cost. Only used for RouterLookahead, when enabled. + * @param backward_path_congestion The known backward path congestion used to + * calculate backward_path_cost. Only used for RouterLookahead, when enabled. + * @param R_upstream + * + * @return 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, @@ -173,12 +189,12 @@ t_heap* prepare_to_add_node_to_heap( hptr->cost = total_cost; hptr->set_prev_edge(prev_edge); hptr->backward_path_cost = backward_path_cost; -#ifdef PROFILE_LOOKAHEAD - hptr->backward_path_delay = backward_path_delay; - hptr->backward_path_congestion = backward_path_congestion; -#else +#ifndef PROFILE_LOOKAHEAD (void)backward_path_delay; (void)backward_path_congestion; +#else + hptr->backward_path_delay = backward_path_delay; + hptr->backward_path_congestion = backward_path_congestion; #endif hptr->R_upstream = R_upstream; return hptr; diff --git a/vpr/src/route/route_path_manager.cpp b/vpr/src/route/route_path_manager.cpp index 9e8a6f57167..071a583f90f 100644 --- a/vpr/src/route/route_path_manager.cpp +++ b/vpr/src/route/route_path_manager.cpp @@ -42,8 +42,6 @@ void PathManager::mark_node_visited(RRNodeId node) { void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, - float backward_path_delay, - float backward_path_congestion, RoutingContext& route_ctx) { if (!is_enabled_) return; @@ -53,13 +51,6 @@ void PathManager::insert_backwards_path_into_traceback(t_heap_path* path_data, route_ctx.rr_node_route_inf[node_2].prev_edge = edge; route_ctx.rr_node_route_inf[node_2].path_cost = cost; route_ctx.rr_node_route_inf[node_2].backward_path_cost = backward_path_cost; -#ifdef PROFILE_LOOKAHEAD - route_ctx.rr_node_route_inf[node_2].backward_path_delay = backward_path_delay; - route_ctx.rr_node_route_inf[node_2].backward_path_congestion = backward_path_congestion; -#else - (void)backward_path_delay; - (void)backward_path_congestion; -#endif } } diff --git a/vpr/src/route/route_path_manager.h b/vpr/src/route/route_path_manager.h index aafaedffc06..87f16580ebe 100644 --- a/vpr/src/route/route_path_manager.h +++ b/vpr/src/route/route_path_manager.h @@ -77,8 +77,6 @@ class PathManager { void insert_backwards_path_into_traceback(t_heap_path* path_data, float cost, float backward_path_cost, - float backward_path_delay, - float backward_path_congestion, RoutingContext& route_ctx); // Dynamically create a t_heap_path structure to be used in the heap diff --git a/vpr/src/route/route_tree.cpp b/vpr/src/route/route_tree.cpp index 38f78d2200e..92fd5955b30 100644 --- a/vpr/src/route/route_tree.cpp +++ b/vpr/src/route/route_tree.cpp @@ -491,7 +491,7 @@ RouteTree::update_from_heap(t_heap* hptr, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat, const RouterLookahead& router_lookahead, - const t_conn_cost_params cost_params, + const t_conn_cost_params& cost_params, const Netlist<>& net_list, const ParentNetId& net_id, const int itry) { @@ -534,7 +534,7 @@ RouteTree::add_subtree_from_heap(t_heap* hptr, int target_net_pin_index, bool is_flat, const RouterLookahead& router_lookahead, - const t_conn_cost_params cost_params, + const t_conn_cost_params& cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id) { diff --git a/vpr/src/route/route_tree.h b/vpr/src/route/route_tree.h index 4ef2ee16f12..4e8a38b2132 100644 --- a/vpr/src/route/route_tree.h +++ b/vpr/src/route/route_tree.h @@ -350,23 +350,34 @@ class RouteTree { free_list(_root); } - /** 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 net pin index corresponding to the SINK that was reached. 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. - * Locking operation: only one thread can update_from_heap() a RouteTree at a time. */ + /** + * @brief Add the most recently finished wire segment to the routing tree, and update the + * Tdel, etc. numbers for the rest of the routing tree. + * + * @param hptr The heap pointer of the SINK that was reached. + * @param target_net_pin_index The net pin index corresponding to the SINK that was reached. + * @param spatial_rt_lookup + * @param is_flat + * @param router_lookahead Only needed for the LookaheadProfiler. + * @param cost_params Only needed for the LookaheadProfiler. + * @param net_list Only needed for the LookaheadProfiler. + * @param net_id Only needed for the LookaheadProfiler. + * @param itry Only needed for the LookaheadProfiler. If this function is called outside of + * the router loop, this argument does not need to be specified. + * + * @return 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> update_from_heap(t_heap* hptr, int target_net_pin_index, SpatialRouteTreeLookup* spatial_rt_lookup, bool is_flat, const RouterLookahead& router_lookahead, - const t_conn_cost_params cost_params, + const t_conn_cost_params& cost_params, const Netlist<>& net_list, const ParentNetId& net_id, - const int itry = -1); + int itry = -1); /** Reload timing values (R_upstream, C_downstream, Tdel). * Can take a RouteTreeNode& to do an incremental update. @@ -504,7 +515,7 @@ class RouteTree { int target_net_pin_index, bool is_flat, const RouterLookahead& router_lookahead, - const t_conn_cost_params cost_params, + const t_conn_cost_params& cost_params, const int itry, const Netlist<>& net_list, const ParentNetId& net_id); diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index c4445f32c37..d13ddf14230 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -149,11 +149,11 @@ bool RouterDelayProfiler::calculate_delay(RRNodeId source_node, float RouterDelayProfiler::get_min_delay(int physical_tile_type_idx, int from_layer, int to_layer, int dx, int dy) const { return min_delays_[physical_tile_type_idx][from_layer][to_layer][dx][dy]; } + const Netlist<>& RouterDelayProfiler::get_net_list() const { return net_list_; } -//Returns the shortest path delay from src_node to all RR nodes in the RR graph, or NaN if no path exists vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src_rr_node, const t_router_opts& router_opts, bool is_flat, diff --git a/vpr/src/route/router_delay_profiling.h b/vpr/src/route/router_delay_profiling.h index 5048f387c50..290e1067af9 100644 --- a/vpr/src/route/router_delay_profiling.h +++ b/vpr/src/route/router_delay_profiling.h @@ -56,6 +56,9 @@ class RouterDelayProfiler { bool is_flat_; }; +/** + * @brief Returns the shortest path delay from src_node to all RR nodes in the RR graph, or NaN if no path exists. + */ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src_rr_node, const t_router_opts& router_opts, bool is_flat, diff --git a/vpr/src/route/router_lookahead.cpp b/vpr/src/route/router_lookahead.cpp index a44452702d4..be3ed8f48f0 100644 --- a/vpr/src/route/router_lookahead.cpp +++ b/vpr/src/route/router_lookahead.cpp @@ -78,7 +78,10 @@ float ClassicLookahead::get_expected_cost(RRNodeId current_node, RRNodeId target return delay_cost + cong_cost; } -std::pair ClassicLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& /*params*/, float R_upstream) const { +std::pair ClassicLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId node, + RRNodeId target_node, + const t_conn_cost_params& /*params*/, + float R_upstream) const { auto& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; diff --git a/vpr/src/route/router_lookahead.h b/vpr/src/route/router_lookahead.h index d7dd3247675..52a67c0f1d9 100644 --- a/vpr/src/route/router_lookahead.h +++ b/vpr/src/route/router_lookahead.h @@ -16,7 +16,7 @@ class RouterLookahead { /** * @brief Get expected cost from node to target_node. * - * @attention Either compute or read methods must be invoked before invoking get_expected_cost. + * @attention Either compute or read methods must be invoked (to set up the lookahead data structures) before invoking get_expected_cost. * * @param node The source node from which the cost to the target node is obtained. * @param target_node The target node to which the cost is obtained. @@ -30,7 +30,8 @@ class RouterLookahead { /** * @brief Get expected (delay, congestion) from node to target_node. * - * @attention Either compute or read methods must be invoked before invoking get_expected_delay_and_cong_ignore_criticality. + * @attention Either compute or read methods must be invoked (to set up the lookahead data structures) before invoking + * get_expected_delay_and_cong_ignore_criticality. * * @param node The source node from which the cost to the target node is obtained. * @param target_node The target node to which the cost is obtained. @@ -43,7 +44,11 @@ class RouterLookahead { * scale_delay_and_cong_by_criticality should be called after this function before adding these to calculate the * expected total cost. */ - virtual std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const = 0; + virtual std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId node, + RRNodeId target_node, + const t_conn_cost_params& params, + float R_upstream) const + = 0; /** * @brief Multiply delay by params.criticality and cong by (1. - params.criticality). Used in conjunction with @@ -169,7 +174,10 @@ const RouterLookahead* get_cached_router_lookahead(const t_det_routing_arch& det class ClassicLookahead : public RouterLookahead { public: float get_expected_cost(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId node, + RRNodeId target_node, + const t_conn_cost_params& params, + float R_upstream) const override; void compute(const std::vector& /*segment_inf*/) override { } diff --git a/vpr/src/route/router_lookahead_extended_map.h b/vpr/src/route/router_lookahead_extended_map.h index c6cefc9af68..98adafb7055 100644 --- a/vpr/src/route/router_lookahead_extended_map.h +++ b/vpr/src/route/router_lookahead_extended_map.h @@ -69,7 +69,10 @@ class ExtendedMapLookahead : public RouterLookahead { /** * @brief Returns a pair of expected delay and congestion */ - std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId inode, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId inode, + RRNodeId target_node, + const t_conn_cost_params& params, + float R_upstream) const override; /** * @brief Computes the extended lookahead map diff --git a/vpr/src/route/router_lookahead_map.cpp b/vpr/src/route/router_lookahead_map.cpp index d3b0cc08758..f1803fa00fe 100644 --- a/vpr/src/route/router_lookahead_map.cpp +++ b/vpr/src/route/router_lookahead_map.cpp @@ -381,7 +381,10 @@ std::pair MapLookahead::get_expected_delay_and_cong_default(RRNode /******** Function Definitions ********/ /* queries the lookahead_map (should have been computed prior to routing) to get the expected cost * from the specified source to the specified target */ -std::pair MapLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& /*params*/, float /*R_upstream*/) const { +std::pair MapLookahead::get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, + RRNodeId to_node, + const t_conn_cost_params& /*params*/, + float /*R_upstream*/) const { return (is_flat_) ? get_expected_delay_and_cong_flat_router(from_node, to_node) : get_expected_delay_and_cong_default(from_node, to_node); } diff --git a/vpr/src/route/router_lookahead_map.h b/vpr/src/route/router_lookahead_map.h index be7a62efa81..d620538f353 100644 --- a/vpr/src/route/router_lookahead_map.h +++ b/vpr/src/route/router_lookahead_map.h @@ -31,7 +31,10 @@ class MapLookahead : public RouterLookahead { protected: float get_expected_cost(RRNodeId current_node, RRNodeId target_node, const t_conn_cost_params& params, float R_upstream) const override; - std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, RRNodeId to_node, const t_conn_cost_params& params, float R_upstream) const override; + std::pair get_expected_delay_and_cong_ignore_criticality(RRNodeId from_node, + RRNodeId to_node, + const t_conn_cost_params& params, + float R_upstream) const override; void compute(const std::vector& segment_inf) override; void compute_intra_tile() override;